From a47557526b70e01f6c2728a2ccf283eaa47036d0 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Fri, 10 May 2024 16:02:27 -0700 Subject: [PATCH 01/28] Fix flaky golden test (#4221) SV scores from sv detector can change a little between each run (after 6 decimal digits). So sort variables by truncating their score to 6 decimal digits and if variables have the same truncated score, sort alphabetically --- server/integration_tests/explore_test.py | 14 ++++++++++++++ .../detection_api_bugs/chart_config.json | 6 +++--- .../comparewithnevada/chart_config.json | 18 +++++++++--------- .../chart_config.json | 4 ++-- 4 files changed, 28 insertions(+), 14 deletions(-) diff --git a/server/integration_tests/explore_test.py b/server/integration_tests/explore_test.py index c47f106b30..7f1382b727 100644 --- a/server/integration_tests/explore_test.py +++ b/server/integration_tests/explore_test.py @@ -111,6 +111,20 @@ def handle_response(self, check_detection=False, detector=None): dbg = resp['debug'] + + # sort variables in the response because variable scores can change between + # runs. Sort by scores cut off after 6 digits after the decimal and for + # variables with the same truncated score, sort alphabetically + # TODO: Proper fix should be to make NL server more deterministic + if 'variables' in resp: + resp_var_to_score = {} + for i, sv in enumerate(dbg['sv_matching']['SV']): + score = dbg['sv_matching']['CosineScore'][i] + resp_var_to_score[sv] = float("{:.6f}".format(score)) + sorted_variables = sorted(resp['variables'], + key=lambda x: (-resp_var_to_score.get(x, 0), x)) + resp['variables'] = sorted_variables + resp['debug'] = {} resp['context'] = {} for category in resp.get('config', {}).get('categories', []): diff --git a/server/integration_tests/test_data/detection_api_bugs/chart_config.json b/server/integration_tests/test_data/detection_api_bugs/chart_config.json index 45377a4d70..cbaf4b1337 100644 --- a/server/integration_tests/test_data/detection_api_bugs/chart_config.json +++ b/server/integration_tests/test_data/detection_api_bugs/chart_config.json @@ -45,11 +45,11 @@ "sessionId": "007_999999999", "variables": [ "Count_HousingUnit", - "Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit", + "Count_HousingUnit_WithRent_1250To1499USDollar", "Count_HousingUnit_WithRent_2000To2499USDollar", "Count_HousingUnit_WithRent_350To399USDollar", "Count_HousingUnit_WithRent_800To899USDollar", - "dc/topic/Housing", - "Count_HousingUnit_WithRent_1250To1499USDollar" + "Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit", + "dc/topic/Housing" ] } \ No newline at end of file diff --git a/server/integration_tests/test_data/detection_api_context/comparewithnevada/chart_config.json b/server/integration_tests/test_data/detection_api_context/comparewithnevada/chart_config.json index f0fa3d5394..2886d4da9f 100644 --- a/server/integration_tests/test_data/detection_api_context/comparewithnevada/chart_config.json +++ b/server/integration_tests/test_data/detection_api_context/comparewithnevada/chart_config.json @@ -20,17 +20,17 @@ "properties": [], "sessionId": "007_999999999", "variables": [ - "dc/topic/CommuteTime", - "dc/topic/WorkCommute", - "dc/topic/CommuteModeByOccupation", - "dc/topic/CommuteMode", - "dc/vgwx3kjjzz8wf", - "dc/62gn48xpbqew9", + "Count_Household_With1AvailableVehicles", + "Count_Household_With2AvailableVehicles", + "Count_Household_With3AvailableVehicles", "dc/1fw0t5m6459gb", + "dc/62gn48xpbqew9", "dc/kt900ezddrf79", "dc/slp5hywj7b9c1", - "Count_Household_With2AvailableVehicles", - "Count_Household_With3AvailableVehicles", - "Count_Household_With1AvailableVehicles" + "dc/topic/CommuteMode", + "dc/topic/CommuteModeByOccupation", + "dc/topic/CommuteTime", + "dc/topic/WorkCommute", + "dc/vgwx3kjjzz8wf" ] } \ No newline at end of file diff --git a/server/integration_tests/test_data/detection_api_statvars/correlatewithgdpofcalifornia/chart_config.json b/server/integration_tests/test_data/detection_api_statvars/correlatewithgdpofcalifornia/chart_config.json index fb261cb33a..44defef3be 100644 --- a/server/integration_tests/test_data/detection_api_statvars/correlatewithgdpofcalifornia/chart_config.json +++ b/server/integration_tests/test_data/detection_api_statvars/correlatewithgdpofcalifornia/chart_config.json @@ -43,7 +43,7 @@ "dc/topic/Economy", "dc/topic/sdg_17.1.1", "dc/topic/EconomicEquity", - "dc/topic/GDP", - "Amount_EconomicActivity_GrossDomesticProduction_RealValue" + "Amount_EconomicActivity_GrossDomesticProduction_RealValue", + "dc/topic/GDP" ] } \ No newline at end of file From c552d63c5d7a9ef8f9b0f7c52332860b57aff078 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Fri, 10 May 2024 16:13:39 -0700 Subject: [PATCH 02/28] update embeddings tool to generate updated embeddings.yaml structure (#4216) Update build_custom_dc_embeddings to work with the new structure of the embeddings.yaml file in this PR: https://github.com/datacommonsorg/website/pull/4212 --- shared/lib/gcs.py | 3 +- .../embeddings/build_custom_dc_embeddings.py | 56 +++++++++------ .../build_custom_dc_embeddings_test.py | 8 ++- .../custom_dc/expected/custom_embeddings.yaml | 16 +++-- .../testdata/custom_dc/input/embeddings.yaml | 49 +++++++------ tools/nl/embeddings/utils.py | 70 +++++++++++++------ tools/nl/embeddings/utils_test.py | 12 ++-- 7 files changed, 140 insertions(+), 74 deletions(-) diff --git a/shared/lib/gcs.py b/shared/lib/gcs.py index 03a309c2f5..857f488c15 100644 --- a/shared/lib/gcs.py +++ b/shared/lib/gcs.py @@ -17,6 +17,7 @@ import logging import os from pathlib import Path +from typing import Tuple from google.cloud import storage @@ -33,7 +34,7 @@ def join_gcs_path(base_path: str, sub_path: str) -> str: return f'{base_path}/{sub_path}' -def get_gcs_parts(gcs_path: str) -> tuple[str, str]: +def get_gcs_parts(gcs_path: str) -> Tuple[str, str]: return gcs_path[len(_GCS_PATH_PREFIX):].split('/', 1) diff --git a/tools/nl/embeddings/build_custom_dc_embeddings.py b/tools/nl/embeddings/build_custom_dc_embeddings.py index a5c4b1d8ff..09aae69593 100644 --- a/tools/nl/embeddings/build_custom_dc_embeddings.py +++ b/tools/nl/embeddings/build_custom_dc_embeddings.py @@ -74,13 +74,14 @@ def download(embeddings_yaml_path: str): default_ft_embeddings_info = utils.get_default_ft_embeddings_info() # Download model. - model_version = default_ft_embeddings_info["model"] - print(f"Downloading default model: {model_version}") - local_model_path = utils.get_or_download_model_from_gcs(ctx, model_version) + model_info = default_ft_embeddings_info.model_config + print(f"Downloading default model: {model_info.name}") + local_model_path = utils.get_or_download_model_from_gcs( + ctx, model_info.info['gcs_folder']) print(f"Downloaded default model to: {local_model_path}") # Download embeddings. - embeddings_file_name = default_ft_embeddings_info["embeddings"] + embeddings_file_name = default_ft_embeddings_info.index_config['embeddings'] print(f"Downloading default embeddings: {embeddings_file_name}") local_embeddings_path = gcs.download_gcs_file(embeddings_file_name, use_anonymous_client=True) @@ -95,9 +96,10 @@ def download(embeddings_yaml_path: str): embeddings_yaml_path, default_ft_embeddings_info) -def build(model_version: str, sv_sentences_csv_path: str, output_dir: str): - print(f"Downloading model: {model_version}") - ctx = _download_model(model_version) +def build(model_info: utils.ModelConfig, sv_sentences_csv_path: str, + output_dir: str): + print(f"Downloading model: {model_info.name}") + ctx = _download_model(model_info.info['gcs_folder']) print( f"Generating embeddings dataframe from SV sentences CSV: {sv_sentences_csv_path}" @@ -111,7 +113,7 @@ def build(model_version: str, sv_sentences_csv_path: str, output_dir: str): output_dir_handler = create_file_handler(output_dir) embeddings_csv_handler = create_file_handler( output_dir_handler.join( - f"{EMBEDDINGS_CSV_FILENAME_PREFIX}.{model_version}.csv")) + f"{EMBEDDINGS_CSV_FILENAME_PREFIX}.{model_info.name}.csv")) embeddings_yaml_handler = create_file_handler( output_dir_handler.join(EMBEDDINGS_YAML_FILE_NAME)) @@ -120,7 +122,7 @@ def build(model_version: str, sv_sentences_csv_path: str, output_dir: str): embeddings_csv_handler.write_string(embeddings_csv) print(f"Saving embeddings yaml: {embeddings_yaml_handler.path}") - generate_embeddings_yaml(model_version, embeddings_csv_handler, + generate_embeddings_yaml(model_info, embeddings_csv_handler, embeddings_yaml_handler) print("Done building custom DC embeddings.") @@ -137,15 +139,24 @@ def _build_embeddings_dataframe( return utils.build_embeddings(ctx, text2sv_dict) -def generate_embeddings_yaml(model_version: str, +def generate_embeddings_yaml(model_info: utils.ModelConfig, embeddings_csv_handler: FileHandler, embeddings_yaml_handler: FileHandler): data = { - "custom_ft": { - "embeddings": embeddings_csv_handler.abspath(), - "model": model_version, - "store": "MEMORY", - "model_type": "LOCAL" + "version": 1, + "indexes": { + "custom_ft": { + "embeddings": embeddings_csv_handler.abspath(), + "model": model_info.name, + "store": "MEMORY", + } + }, + "models": { + model_info.name: { + "type": "LOCAL", + "usage": "EMBEDDINGS", + "gcs_folder": model_info.info['gcs_folder'] + } } } embeddings_yaml_handler.write_string(yaml.dump(data)) @@ -172,12 +183,17 @@ def main(_): assert FLAGS.sv_sentences_csv_path assert FLAGS.output_dir - model_version = FLAGS.model_version - if not model_version: - model_version = utils.get_default_ft_model_version() - print(f"Using model version {model_version} from embeddings.yaml.") + if FLAGS.model_version: + model_info = utils.ModelConfig(name=FLAGS.model_version, + info={ + 'type': 'LOCAL', + 'gcs_folder': FLAGS.model_version + }) + else: + model_info = utils.get_default_ft_model() + print(f"Using model {model_info.name} from embeddings.yaml.") - build(model_version, FLAGS.sv_sentences_csv_path, FLAGS.output_dir) + build(model_info, FLAGS.sv_sentences_csv_path, FLAGS.output_dir) if __name__ == "__main__": diff --git a/tools/nl/embeddings/build_custom_dc_embeddings_test.py b/tools/nl/embeddings/build_custom_dc_embeddings_test.py index 6c58157f34..4fd98c68ba 100644 --- a/tools/nl/embeddings/build_custom_dc_embeddings_test.py +++ b/tools/nl/embeddings/build_custom_dc_embeddings_test.py @@ -89,8 +89,14 @@ def test_generate_yaml(self): actual_embeddings_yaml_path = os.path.join(temp_dir, EMBEDDINGS_YAML_FILE_NAME) + model_info = utils.ModelConfig(name='FooModel', + info={ + 'type': 'LOCAL', + 'gcs_folder': 'fooModelFolder', + 'usage': 'EMBEDDINGS' + }) builder.generate_embeddings_yaml( - 'FooModel', create_file_handler(fake_embeddings_csv_path), + model_info, create_file_handler(fake_embeddings_csv_path), create_file_handler(actual_embeddings_yaml_path)) _compare_files(self, actual_embeddings_yaml_path, diff --git a/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml b/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml index f464cdb125..37139e929c 100644 --- a/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml +++ b/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml @@ -1,5 +1,11 @@ -custom_ft: - embeddings: /fake/path/to/custom_embeddings.csv - model: FooModel - model_type: LOCAL - store: MEMORY +indexes: + custom_ft: + embeddings: /fake/path/to/custom_embeddings.csv + model: FooModel + store: MEMORY +models: + FooModel: + gcs_folder: fooModelFolder + type: LOCAL + usage: EMBEDDINGS +version: 1 diff --git a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml index 5b0d6df5b9..a6dcd065c0 100644 --- a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml +++ b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml @@ -1,20 +1,29 @@ -medium_ft: - store: MEMORY - embeddings: gs://datcom-nl-models/embeddings_medium_2024_03_14_16_38_53.ft_final_v20230717230459.all-MiniLM-L6-v2.csv - model: ft_final_v20230717230459.all-MiniLM-L6-v2 -sdg_ft: - store: MEMORY - embeddings: gs://datcom-nl-models/embeddings_sdg_2023_12_26_10_03_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv - model: ft_final_v20230717230459.all-MiniLM-L6-v2 -undata_ft: - store: MEMORY - embeddings: gs://datcom-nl-models/embeddings_undata_2024_03_20_11_01_12.ft_final_v20230717230459.all-MiniLM-L6-v2.csv - model: ft_final_v20230717230459.all-MiniLM-L6-v2 -bio_ft: - store: MEMORY - embeddings: gs://datcom-nl-models/embeddings_bio_2024_03_19_16_39_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv - model: ft_final_v20230717230459.all-MiniLM-L6-v2 -medium_lance_ft: - store: LANCEDB - embeddings: gs://datcom-nl-models-dev/lancedb/lancedb_embeddings_medium_2024_04_09_07_22_21.ft_final_v20230717230459.all-MiniLM-L6-v2 - model: ft_final_v20230717230459.all-MiniLM-L6-v2 \ No newline at end of file +version: 1 + +indexes: + medium_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_medium_2024_03_14_16_38_53.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft_final_v20230717230459 + sdg_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_sdg_2023_12_26_10_03_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft_final_v20230717230459 + undata_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_undata_2024_03_20_11_01_12.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft_final_v20230717230459 + bio_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_bio_2024_03_19_16_39_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft_final_v20230717230459 + medium_lance_ft: + store: LANCEDB + embeddings: gs://datcom-nl-models-dev/lancedb/lancedb_embeddings_medium_2024_04_09_07_22_21.ft_final_v20230717230459.all-MiniLM-L6-v2 + model: ft_final_v20230717230459 + +models: + ft_final_v20230717230459: + type: LOCAL + usage: EMBEDDINGS + gcs_folder: gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2 \ No newline at end of file diff --git a/tools/nl/embeddings/utils.py b/tools/nl/embeddings/utils.py index 946f9d0085..a02ac5bb18 100644 --- a/tools/nl/embeddings/utils.py +++ b/tools/nl/embeddings/utils.py @@ -18,12 +18,10 @@ import logging import os from pathlib import Path -import re from typing import Any, Dict, List, Tuple from file_util import create_file_handler from google.cloud import aiplatform -from google.cloud import storage import pandas as pd from sentence_transformers import SentenceTransformer import yaml @@ -55,10 +53,25 @@ def _is_gcs_path(path: str) -> bool: return path.strip().startswith(_GCS_PATH_PREFIX) -def _get_gcs_parts(gcs_path: str) -> tuple[str, str]: +def _get_gcs_parts(gcs_path: str) -> Tuple[str, str]: return gcs_path[len(_GCS_PATH_PREFIX):].split('/', 1) +@dataclass +class ModelConfig: + name: str + # the model info as it would come from embeddings.yaml + info: Dict[str, str] + + +@dataclass +# The info for a single embeddings index +class EmbeddingConfig: + # the index info as it would come from embeddings.yaml + index_config: Dict[str, str] + model_config: ModelConfig + + @dataclass class Context: # Model @@ -233,17 +246,22 @@ def get_or_download_model_from_gcs(ctx: Context, model_version: str) -> str: If the model is already downloaded, it returns the model path. Otherwise, it downloads the model to the local file system and returns that path. """ + if _is_gcs_path(model_version): + _, folder_name = _get_gcs_parts(model_version) + else: + folder_name = model_version + tuned_model_path: str = os.path.join(ctx.tmp, DEFAULT_MODELS_BUCKET, - model_version) + folder_name) # Check if this model is already downloaded locally. if os.path.exists(tuned_model_path): print(f"Model already downloaded at path: {tuned_model_path}") else: print( - f"Model not previously downloaded locally. Downloading from GCS: {model_version}" + f"Model not previously downloaded locally. Downloading from GCS: {folder_name}" ) - tuned_model_path = _download_model_from_gcs(ctx, model_version) + tuned_model_path = _download_model_from_gcs(ctx, folder_name) print(f"Model downloaded locally to: {tuned_model_path}") return tuned_model_path @@ -255,40 +273,48 @@ def get_ft_model_from_gcs(ctx: Context, return SentenceTransformer(model_path) -def _get_default_ft_model_version(embeddings_yaml_file_path: str) -> str: +def _get_default_ft_model(embeddings_yaml_file_path: str) -> ModelConfig: """Gets the default index's (i.e. 'medium_ft') model version from embeddings.yaml. """ - return _get_default_ft_embeddings_info(embeddings_yaml_file_path)["model"] + return _get_default_ft_embeddings_info(embeddings_yaml_file_path).model_config -def get_default_ft_model_version() -> str: +def get_default_ft_model() -> ModelConfig: """Gets the default index's (i.e. 'medium_ft') model version from embeddings.yaml. """ - return _get_default_ft_model_version(_EMBEDDINGS_YAML_PATH) - - -def get_default_ft_embeddings_file_name() -> str: - """Gets the default index's (i.e. 'medium_ft') embeddings file name from embeddings.yaml. - """ - return get_default_ft_embeddings_info()["embeddings"] + return _get_default_ft_model(_EMBEDDINGS_YAML_PATH) -def get_default_ft_embeddings_info() -> dict[str, str]: +def get_default_ft_embeddings_info() -> EmbeddingConfig: return _get_default_ft_embeddings_info(_EMBEDDINGS_YAML_PATH) def _get_default_ft_embeddings_info( - embeddings_yaml_file_path: str) -> dict[str, str]: + embeddings_yaml_file_path: str) -> EmbeddingConfig: with open(embeddings_yaml_file_path, "r") as f: data = yaml.full_load(f) - if _DEFAULT_EMBEDDINGS_INDEX_TYPE not in data: + if _DEFAULT_EMBEDDINGS_INDEX_TYPE not in data['indexes']: raise ValueError(f"{_DEFAULT_EMBEDDINGS_INDEX_TYPE} not found.") - return data[_DEFAULT_EMBEDDINGS_INDEX_TYPE] + index_info = data['indexes'][_DEFAULT_EMBEDDINGS_INDEX_TYPE] + model_name = index_info['model'] + model_info = ModelConfig(name=model_name, info=data['models'][model_name]) + return EmbeddingConfig(index_config=index_info, model_config=model_info) def save_embeddings_yaml_with_only_default_ft_embeddings( - embeddings_yaml_file_path: str, default_ft_embeddings_info: dict[str, str]): - data = {_DEFAULT_EMBEDDINGS_INDEX_TYPE: default_ft_embeddings_info} + embeddings_yaml_file_path: str, + default_ft_embeddings_info: EmbeddingConfig): + model_info = default_ft_embeddings_info.model_config + data = { + 'version': 1, + 'indexes': { + _DEFAULT_EMBEDDINGS_INDEX_TYPE: + default_ft_embeddings_info.index_config + }, + 'models': { + model_info.name: model_info.info + } + } with open(embeddings_yaml_file_path, "w") as f: yaml.dump(data, f) diff --git a/tools/nl/embeddings/utils_test.py b/tools/nl/embeddings/utils_test.py index d33445dd2b..80d246243b 100644 --- a/tools/nl/embeddings/utils_test.py +++ b/tools/nl/embeddings/utils_test.py @@ -21,16 +21,18 @@ class TestUtils(unittest.TestCase): - def test_get_default_ft_model_version(self): + def test_get_default_ft_model(self): embeddings_file_path = f"{INPUT_DIR}/embeddings.yaml" - expected = "ft_final_v20230717230459.all-MiniLM-L6-v2" + expected_model_name = "ft_final_v20230717230459" + expected_gcs_folder = "gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2" - result = utils._get_default_ft_model_version(embeddings_file_path) + result = utils._get_default_ft_model(embeddings_file_path) - self.assertEqual(result, expected) + self.assertEqual(result.name, expected_model_name) + self.assertEqual(result.info['gcs_folder'], expected_gcs_folder) def test_get_default_ft_model_version_failure(self): embeddings_file_path = f"{INPUT_DIR}/bad_embeddings.yaml" with self.assertRaises(Exception): - utils._get_default_ft_model_version(embeddings_file_path) + utils._get_default_ft_model(embeddings_file_path) From 48a629ed02d8ed2d5c1187269a6bf8a7f187410a Mon Sep 17 00:00:00 2001 From: Dan Noble Date: Fri, 10 May 2024 20:07:04 -0400 Subject: [PATCH 03/28] Added option "website.enableMixer" to enable exposing mixer /v1/ and /v2/ endpoints from the website ingress (#4213) - Added /v1/ and /v2/ handlers to website ingress if ingress.enableMixer is set to true - Added corresponding k8s service and BackendConfig definitions - Reduced unsdg staging capacity (i was hitting some memory limits with the previous capacity) - Added ILO bigtable `ilo_2024_05_06_15_04_35` - Deployed to UNSDG staging environment: https://staging.unsdg.datacommons.org/v2/node?nodes=country/USA&property=%3C-containedInPlace+{typeOf:AdministrativeArea1} This will help with building topic configuration using https://github.com/datacommonsorg/website/tree/master/tools/sdg/topics, as well as general un testing and data validation in staging --- .../dc_website/templates/single_cluster.yaml | 54 +++++++++++++++++++ deploy/helm_charts/envs/unsdg_staging.yaml | 17 +++--- 2 files changed, 64 insertions(+), 7 deletions(-) diff --git a/deploy/helm_charts/dc_website/templates/single_cluster.yaml b/deploy/helm_charts/dc_website/templates/single_cluster.yaml index e5aad523d3..f4d188d930 100644 --- a/deploy/helm_charts/dc_website/templates/single_cluster.yaml +++ b/deploy/helm_charts/dc_website/templates/single_cluster.yaml @@ -84,6 +84,42 @@ spec: {{- end }} +{{- if .Values.ingress.enableMixer }} +--- + +apiVersion: v1 +kind: Service +metadata: + name: website-mixer-service + namespace: {{ .Values.namespace.name }} + annotations: + # This is to get longer timeout for the Cloud Load Balancer. + cloud.google.com/backend-config: '{"ports": {"80":"website-mixer-backendconfig"}}' +spec: + type: NodePort + ports: + - port: 80 + targetPort: 8081 + protocol: TCP + name: http + selector: + service: dc-mixer-default + +--- + +apiVersion: cloud.google.com/v1 +kind: BackendConfig +metadata: + name: website-mixer-backendconfig + namespace: {{ .Values.namespace.name }} +spec: + # Timeout for load balancer and the GKE pod connection + timeoutSec: 300 + connectionDraining: + drainingTimeoutSec: 300 + +{{- end }} + --- # Note: @@ -125,6 +161,24 @@ spec: port: number: 8080 {{- end }} + {{- if .Values.ingress.enableMixer }} + - http: + paths: + - path: /v2/* + pathType: ImplementationSpecific + backend: + service: + name: website-mixer-service + port: + number: 80 + - path: /v1/* + pathType: ImplementationSpecific + backend: + service: + name: website-mixer-service + port: + number: 80 + {{- end }} {{- end }} diff --git a/deploy/helm_charts/envs/unsdg_staging.yaml b/deploy/helm_charts/envs/unsdg_staging.yaml index c3981fcef9..1739517e7e 100644 --- a/deploy/helm_charts/envs/unsdg_staging.yaml +++ b/deploy/helm_charts/envs/unsdg_staging.yaml @@ -21,7 +21,7 @@ namespace: website: flaskEnv: unsdg_staging - replicas: 4 + replicas: 2 redis: enabled: false @@ -30,6 +30,7 @@ serviceAccount: ingress: enabled: true + enableMixer: true mixer: useCustomBigtable: true @@ -39,20 +40,22 @@ nl: serviceGroups: recon: null - svg: - replicas: 2 - node: - replicas: 5 - observation: - replicas: 5 + svg: null + node: null + observation: null default: replicas: 3 + cacheSVG: true # No svg service, this needs to use search + resources: + memoryRequest: "8G" + memoryLimit: "8G" kgStoreConfig: customBigtableInfo: | project: datcom-un-staging instance: dc-graph tables: + - ilo_2024_05_06_15_04_35 svg: blocklistFile: ["dc/g/Uncategorized", "oecd/g/OECD"] From 44289f3ff1db387d42499060262e863f817a5254 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Mon, 13 May 2024 09:28:16 -0700 Subject: [PATCH 04/28] Remove more nl screenshot tests (#4223) when I was deleting the /nl screenshot tests last week, missed some urls that were in a different part of the page. --- server/webdriver/screenshot/local/page.json | 40 --------------------- 1 file changed, 40 deletions(-) diff --git a/server/webdriver/screenshot/local/page.json b/server/webdriver/screenshot/local/page.json index 5e6c4fb4d9..c33467d9c5 100644 --- a/server/webdriver/screenshot/local/page.json +++ b/server/webdriver/screenshot/local/page.json @@ -99,46 +99,6 @@ "height": 1200, "async": true }, - { - "url": "/nl/#q=What+are+the+projected+temperature+extremes+across+california&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=family+earnings+in+california&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=top+jobs+in+santa+clara+county&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=counties+in+california+with+highest+obesity&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=obesity+vs.+poverty+in+counties+of+california&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=fires+in+california&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=counties+in+california+with+highest+obesity&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, - { - "url": "/nl/#q=Prevalence+of+Asthma+in+California+cities+with+hispanic+population+over+10000&a=True&d=True&mb=3&test=screenshot", - "height": 3000, - "async": true - }, { "url": "/tools/map#%26sv%3DDifferenceRelativeToBaseDate2006_Max_Temperature_RCP45%26pc%3D0%26denom%3DCount_Person%26pd%3Dcountry%2FUSA%26ept%3DCounty", "height": 1200, From 0cd362bf06b865dcb16d4404df663edad71777cb Mon Sep 17 00:00:00 2001 From: kmoscoe <165203920+kmoscoe@users.noreply.github.com> Date: Mon, 13 May 2024 10:05:19 -0700 Subject: [PATCH 05/28] add documentation inline to env vars files (#4195) Instead of making users go back and forth from doc to env vars files, put the doc inline to make editing more convenient. I've tested that this works with local and remote DBs. --- custom_dc/cloudsql_env.list | 27 +++++++++++++++++++++------ custom_dc/sqlite_env.list | 14 ++++++++++---- 2 files changed, 31 insertions(+), 10 deletions(-) diff --git a/custom_dc/cloudsql_env.list b/custom_dc/cloudsql_env.list index 0f914189fd..9b25913ed4 100644 --- a/custom_dc/cloudsql_env.list +++ b/custom_dc/cloudsql_env.list @@ -1,12 +1,27 @@ -FLASK_ENV=custom -USE_CLOUDSQL=true -ENABLE_MODEL=true -GOOGLE_CLOUD_PROJECT= + +# API key for accessing the base Data Commons API. DC_API_KEY= +# API key for accessing Maps and Places APIs for exploration tools. MAPS_API_KEY= -GCS_DATA_PATH= +# Use Google Cloud SQL as the database. +USE_CLOUDSQL=true +# The project ID of the Google Cloud Platform project for the custom Data Commons. +GOOGLE_CLOUD_PROJECT= +# The name of the Cloud SQL instance, in the form ::. CLOUDSQL_INSTANCE= +# The name of the Google Cloud SQL database. +DB_NAME=datacommons +# The name of a database user configured to access the Cloud SQL instance. It may be root or another user you have configured. DB_USER= +# The password of the user specified in DB_USER. DB_PASS= -ADMIN_SECRET= +# (Optional) If used, the Redis Memorystore instance IP address. REDIS_HOST= +# The data path of the files stored in Google Cloud Storage, in the form gs:////. +GCS_DATA_PATH= +# (Optional) Secret token to authorize users to perform /admin page operations. +ADMIN_SECRET= +# Enable embeddings generation and natural language querying. +ENABLE_MODEL=true +# The name of the parent directory for custom CSS, JS, HTML and image files. +FLASK_ENV=custom \ No newline at end of file diff --git a/custom_dc/sqlite_env.list b/custom_dc/sqlite_env.list index 9dec0d18ed..8e6b359e01 100644 --- a/custom_dc/sqlite_env.list +++ b/custom_dc/sqlite_env.list @@ -1,6 +1,12 @@ -FLASK_ENV=custom -USE_SQLITE=true -ENABLE_MODEL=true +# API key for accessing the base Data Commons API. DC_API_KEY= +# API key for accessing Maps and Places APIs for exploration tools. MAPS_API_KEY= -ADMIN_SECRET= \ No newline at end of file +# Use local SQLite as the database. +USE_SQLITE=true +# (Optional) Secret token to authorize users to perform /admin page operations. +ADMIN_SECRET= +# Enable embeddings generation and natural language querying. +ENABLE_MODEL=true +# The name of the parent directory for custom CSS, JS, HTML and image files. +FLASK_ENV=custom \ No newline at end of file From a2f72bd4a699f3190f583704cd01c38b4cb3719d Mon Sep 17 00:00:00 2001 From: Julia Wu Date: Mon, 13 May 2024 13:34:16 -0700 Subject: [PATCH 06/28] Fix stat var explorer for custom DC data (#4225) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes a bug in the stat var explorer on custom DC, where clicking on a custom stat var seems to do nothing. The root cause turned out to be because custom loaded stat vars don't provide a provenance, and the stat var explorer doesn't update state if no provenances were found. This PR adds a state update even if no provenances are provided. Screenshot: ![Screenshot 2024-05-13 at 12 10 31 PM](https://github.com/datacommonsorg/website/assets/4034366/d66468c9-1f81-4c71-9622-9e74fba2f67a) --- static/js/tools/stat_var/page.tsx | 64 ++++++++++++++++--------------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/static/js/tools/stat_var/page.tsx b/static/js/tools/stat_var/page.tsx index ba7f624102..913e8435e7 100644 --- a/static/js/tools/stat_var/page.tsx +++ b/static/js/tools/stat_var/page.tsx @@ -59,6 +59,9 @@ interface PageStateType { showSvHierarchyModal: boolean; } +// TODO: Add webdriver tests for the stat var explorer, including when +// various stat var properties are missing as could be possible in +// custom DC. class Page extends Component { constructor(props: unknown) { super(props); @@ -331,42 +334,41 @@ class Page extends Component { .then((resp) => resp.data); Promise.all([descriptionPromise, displayNamePromise, summaryPromise]) .then(([descriptionResult, displayNameResult, summaryResult]) => { + const description = + descriptionResult[sv].length > 0 + ? descriptionResult[sv][0].value + : ""; + let displayName = + displayNameResult[sv].length > 0 + ? displayNameResult[sv][0].value + : ""; + displayName = displayName || description; + const urlMap = {}; const provIds = []; for (const provId in summaryResult[sv]?.provenanceSummary) { provIds.push(provId); } - if (provIds.length === 0) { - return; - } - axios - .get("/api/node/propvals/out", { - params: { dcids: provIds, prop: "url" }, - paramsSerializer: stringifyFn, - }) - .then((resp) => { - const urlMap = {}; - for (const dcid in resp.data) { - urlMap[dcid] = - resp.data[dcid].length > 0 ? resp.data[dcid][0].value : ""; - } - const description = - descriptionResult[sv].length > 0 - ? descriptionResult[sv][0].value - : ""; - let displayName = - displayNameResult[sv].length > 0 - ? displayNameResult[sv][0].value - : ""; - displayName = displayName || description; - this.setState({ - description, - displayName, - error: false, - statVar: sv, - summary: summaryResult[sv], - urls: urlMap, + if (provIds.length > 0) { + axios + .get("/api/node/propvals/out", { + params: { dcids: provIds, prop: "url" }, + paramsSerializer: stringifyFn, + }) + .then((resp) => { + for (const dcid in resp.data) { + urlMap[dcid] = + resp.data[dcid].length > 0 ? resp.data[dcid][0].value : ""; + } }); - }); + } + this.setState({ + description, + displayName, + error: false, + statVar: sv, + summary: summaryResult[sv], + urls: urlMap, + }); }) .catch(() => { this.setState({ From 8c4b86eae1625000cc60f426c91f190788e61b30 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Mon, 13 May 2024 16:38:26 -0700 Subject: [PATCH 07/28] move vertex ai model info to deployment values (#4222) We want each environment to be able to use different project/location/endpoints for each vertex ai model so move the specification of those values to the deployment yamls. When running locally, read from autopush values --- .../dc_website/templates/config_maps.yaml | 2 +- deploy/helm_charts/dc_website/values.yaml | 2 + deploy/helm_charts/envs/autopush.yaml | 21 +++++++++ deploy/helm_charts/envs/dev.yaml | 21 +++++++++ deploy/nl/embeddings.yaml | 15 ------- nl_server/config.py | 43 ++++++++++++++++--- 6 files changed, 82 insertions(+), 22 deletions(-) diff --git a/deploy/helm_charts/dc_website/templates/config_maps.yaml b/deploy/helm_charts/dc_website/templates/config_maps.yaml index 047826b208..1b0e825f66 100644 --- a/deploy/helm_charts/dc_website/templates/config_maps.yaml +++ b/deploy/helm_charts/dc_website/templates/config_maps.yaml @@ -81,9 +81,9 @@ metadata: data: embeddings.yaml: {{ required "NL embeddings file is required" .Values.nl.embeddings | quote }} models.yaml: {{ required "NL models file is required" .Values.nl.models | quote }} + vertex_ai_models.json: {{ .Values.nl.vertex_ai_models | toJson | quote }} {{- end }} - {{- if .Values.website.redis.enabled }} --- kind: ConfigMap diff --git a/deploy/helm_charts/dc_website/values.yaml b/deploy/helm_charts/dc_website/values.yaml index 6f51ad6e68..e37336295c 100644 --- a/deploy/helm_charts/dc_website/values.yaml +++ b/deploy/helm_charts/dc_website/values.yaml @@ -136,6 +136,8 @@ nl: models: memory: "2G" workers: 1 + vertex_ai_models: + ############################################################################### # Config for Stat Var Groups which is shared between Website and Mixer diff --git a/deploy/helm_charts/envs/autopush.yaml b/deploy/helm_charts/envs/autopush.yaml index 618f7a4918..e1d671a184 100644 --- a/deploy/helm_charts/envs/autopush.yaml +++ b/deploy/helm_charts/envs/autopush.yaml @@ -44,6 +44,27 @@ serviceAccount: nl: enabled: true + vertex_ai_models: + dc-all-minilm-l6-v2-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "8518340991868993536" + uae-large-v1-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "4910007712298827776" + sfr-embedding-mistral-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "224012300019826688" + cross-encoder-ms-marco-miniilm-l6-v2: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "3977846152316846080" + cross-encoder-mxbai-rerank-base-v1: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "284894457873039360" serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/dev.yaml b/deploy/helm_charts/envs/dev.yaml index 5c7a500bb3..0814867c48 100644 --- a/deploy/helm_charts/envs/dev.yaml +++ b/deploy/helm_charts/envs/dev.yaml @@ -41,6 +41,27 @@ serviceGroups: nl: enabled: true + vertex_ai_models: + dc-all-minilm-l6-v2-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "8518340991868993536" + uae-large-v1-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "4910007712298827776" + sfr-embedding-mistral-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "224012300019826688" + cross-encoder-ms-marco-miniilm-l6-v2: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "3977846152316846080" + cross-encoder-mxbai-rerank-base-v1: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "284894457873039360" nodejs: enabled: true diff --git a/deploy/nl/embeddings.yaml b/deploy/nl/embeddings.yaml index e091ef721e..f6cbdc2acf 100644 --- a/deploy/nl/embeddings.yaml +++ b/deploy/nl/embeddings.yaml @@ -64,33 +64,18 @@ models: dc-all-minilm-l6-v2-model: type: VERTEXAI usage: EMBEDDINGS - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "8518340991868993536" uae-large-v1-model: type: VERTEXAI usage: EMBEDDINGS - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "4910007712298827776" sfr-embedding-mistral-model: type: VERTEXAI usage: EMBEDDINGS - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "224012300019826688" cross-encoder-ms-marco-miniilm-l6-v2: type: VERTEXAI usage: RERANKING - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "3977846152316846080" cross-encoder-mxbai-rerank-base-v1: type: VERTEXAI usage: RERANKING - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "284894457873039360" ft-final-v20230717230459-all-MiniLM-L6-v2: type: LOCAL usage: EMBEDDINGS diff --git a/nl_server/config.py b/nl_server/config.py index ecb892fe15..d07462d111 100644 --- a/nl_server/config.py +++ b/nl_server/config.py @@ -15,10 +15,14 @@ from abc import ABC from dataclasses import dataclass from enum import Enum +import json import logging import os +from pathlib import Path from typing import Dict +import yaml + # Index constants. Passed in `url=` CUSTOM_DC_INDEX: str = 'custom_ft' DEFAULT_INDEX_TYPE: str = 'medium_ft' @@ -32,6 +36,8 @@ NL_EMBEDDINGS_VERSION_KEY: str = 'NL_EMBEDDINGS_VERSION_MAP' VERTEX_AI_MODELS_KEY: str = 'VERTEX_AI_MODELS' +_VERTEX_AI_MODEL_CONFIG_PATH: str = '/datacommons/nl/vertex_ai_models.json' + class StoreType(str, Enum): MEMORY = 'MEMORY' @@ -99,13 +105,32 @@ class EmbeddingsConfig: models: Dict[str, ModelConfig] +# +# Get Dict of vertex ai model to its info +# +def _get_vertex_ai_model_info() -> Dict[str, any]: + # This is the path to model info when deployed in gke. + if os.path.exists(_VERTEX_AI_MODEL_CONFIG_PATH): + with open(_VERTEX_AI_MODEL_CONFIG_PATH) as f: + return json.load(f) or {} + # If that path doesn't exist, assume we are running locally and use the values + # from autopush. + else: + current_file_path = Path(__file__) + autopush_env_values = f'{current_file_path.parent.parent}/deploy/helm_charts/envs/autopush.yaml' + with open(autopush_env_values) as f: + autopush_env = yaml.full_load(f) + return autopush_env['nl']['vertex_ai_models'] + + # # Parse the input `embeddings.yaml` dict representation into EmbeddingsInfo # object. # def parse(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: + get_vertex_ai_model_info = _get_vertex_ai_model_info() if embeddings_map['version'] == 1: - return parse_v1(embeddings_map) + return parse_v1(embeddings_map, get_vertex_ai_model_info) else: raise AssertionError('Could not parse embeddings map: unsupported version.') @@ -114,7 +139,8 @@ def parse(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: # Parses the v1 version of the `embeddings.yaml` dict representation into # EmbeddingsInfo object. # -def parse_v1(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: +def parse_v1(embeddings_map: Dict[str, any], + vertex_ai_model_info: Dict[str, any]) -> EmbeddingsConfig: # parse the models models = {} for model_name, model_info in embeddings_map.get('models', {}).items(): @@ -124,12 +150,17 @@ def parse_v1(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: usage=model_info['usage'], gcs_folder=model_info['gcs_folder']) elif model_type == ModelType.VERTEXAI: + if model_name not in vertex_ai_model_info: + logging.error( + f'Could not find vertex ai model information for {model_name}') + continue models[model_name] = VertexAIModelConfig( type=model_type, usage=model_info['usage'], - project_id=model_info['project_id'], - location=model_info['location'], - prediction_endpoint_id=model_info['prediction_endpoint_id']) + project_id=vertex_ai_model_info[model_name]['project_id'], + prediction_endpoint_id=vertex_ai_model_info[model_name] + ['prediction_endpoint_id'], + location=vertex_ai_model_info[model_name]['location']) else: raise AssertionError( 'Error parsing information for model {model_name}: unsupported type {model_type}' @@ -169,5 +200,5 @@ def parse_v1(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: # Returns true if VERTEXAI type models and VERTEXAI type stores are allowed def allow_vertex_ai() -> bool: return os.environ.get('FLASK_ENV') in [ - 'local', 'test', 'integration_test', 'autopush' + 'local', 'test', 'integration_test', 'autopush', 'dev' ] From 336de4f5858ba48fb18d7f2247747491f53ea0cd Mon Sep 17 00:00:00 2001 From: Bo Xu Date: Tue, 14 May 2024 00:37:20 +0000 Subject: [PATCH 08/28] Update embedding tools to match yaml changes; Some golden tests update (#4228) --- static/js/apps/explore_landing/topics.json | 6 +----- tools/nl/embeddings/build_embeddings.py | 2 ++ tools/nl/embeddings/run.sh | 2 +- tools/nl/loadtest/queryset.csv | 1 - tools/nl/svindex_differ/differ.py | 14 ++++++-------- tools/nl/svindex_differ/queryset_vars.csv | 8 ++++---- tools/nl/svindex_differ/run.sh | 1 + tools/nl/translate_compare/gen_ai.py | 1 - 8 files changed, 15 insertions(+), 20 deletions(-) diff --git a/static/js/apps/explore_landing/topics.json b/static/js/apps/explore_landing/topics.json index ed15dc1184..4649b311ac 100644 --- a/static/js/apps/explore_landing/topics.json +++ b/static/js/apps/explore_landing/topics.json @@ -53,10 +53,6 @@ "title": "Which counties in the US have the highest rates of uninsured", "url": "q=Which+counties+in+the+US+have+the+highest+rates+of+uninsured" }, - { - "title": "What is the breakdown of incarceration rates by race in the US", - "url": "q=What+is+the+breakdown+of+incarceration+rates+by+race+in+the+US" - }, { "title": "Which countries have the lowest Gini index", "url": "q=Which+countries+have+the+lowest+Gini+index" @@ -162,7 +158,7 @@ }, { "title": "What is the GDP of Iran", - "url": "q=What+is+then+GDP+of+Iran" + "url": "q=What+is+the+GDP+of+Iran" } ], "comparison": [ diff --git a/tools/nl/embeddings/build_embeddings.py b/tools/nl/embeddings/build_embeddings.py index aa0a0b4004..40887aff02 100644 --- a/tools/nl/embeddings/build_embeddings.py +++ b/tools/nl/embeddings/build_embeddings.py @@ -135,6 +135,8 @@ def get_embeddings(ctx, df_svs: pd.DataFrame, local_merged_filepath: str, utils.CURATED_ALTERNATIVES_COL, utils.ALTERNATIVES_COL, ]: + if col_name not in row: + continue # In order of preference, traverse the various alternative descriptions. alternatives += utils.split_alt_string(row[col_name]) diff --git a/tools/nl/embeddings/run.sh b/tools/nl/embeddings/run.sh index 12f218ac53..4151591236 100755 --- a/tools/nl/embeddings/run.sh +++ b/tools/nl/embeddings/run.sh @@ -103,7 +103,7 @@ pip3 install torch==2.2.2 --extra-index-url https://download.pytorch.org/whl/cpu pip3 install -r requirements.txt if [[ "$MODEL_ENDPOINT_ID" != "" ]];then - python3 build_embeddings.py --embeddings_size=$2 --vertex_ai_prediction_endpoint_id=$MODEL_ENDPOINT_ID --dry_run=True + python3 build_embeddings.py --embeddings_size=$2 --vertex_ai_prediction_endpoint_id=$MODEL_ENDPOINT_ID elif [[ "$CURATED_INPUT_DIRS" != "" ]]; then python3 build_embeddings.py --embeddings_size=$2 --finetuned_model_gcs=$FINETUNED_MODEL --curated_input_dirs=$CURATED_INPUT_DIRS --alternatives_filepattern=$ALTERNATIVES_FILE_PATTERN elif [[ "$LANCEDB_OUTPUT_PATH" != "" ]]; then diff --git a/tools/nl/loadtest/queryset.csv b/tools/nl/loadtest/queryset.csv index d5fbc83601..cf1507045b 100644 --- a/tools/nl/loadtest/queryset.csv +++ b/tools/nl/loadtest/queryset.csv @@ -48,7 +48,6 @@ What about health equity in Santa Clara County What is the number of poor hispanic women in Santa Clara County Which counties in the US have the highest unemployment rate Which counties in the US have the highest rates of uninsured -What is the breakdown of incarceration rates by race in the US Which countries have the lowest Gini index What is the correlation between diabetes and poverty across US counties What are the most common jobs in Texas diff --git a/tools/nl/svindex_differ/differ.py b/tools/nl/svindex_differ/differ.py index 027555a58c..d1b90c208d 100644 --- a/tools/nl/svindex_differ/differ.py +++ b/tools/nl/svindex_differ/differ.py @@ -58,15 +58,13 @@ assert AUTOPUSH_KEY -def _load_yaml(path: str, idx: str): +def _load_yaml(path: str): if path.startswith('https://'): embeddings_dict = yaml.safe_load(requests.get(path).text) else: with open(path) as fp: embeddings_dict = yaml.full_load(fp) - assert idx in embeddings_dict - # Return just this index - return {idx: embeddings_dict[idx]} + return embeddings_dict def _get_sv_names(sv_dcids): @@ -199,8 +197,8 @@ def run_diff(base_idx: str, test_idx: str, base_dict: dict[str, dict[str, str]], # Render the html with the diffs with open(output_file, 'w') as f: f.write( - template.render(base_file=base_dict[base_idx], - test_file=test_dict[test_idx], + template.render(base_file=base_dict['indexes'][base_idx], + test_file=test_dict['indexes'][test_idx], diffs=diffs)) print('') print(f'Saving locally to {output_file}') @@ -221,8 +219,8 @@ def run_diff(base_idx: str, test_idx: str, base_dict: dict[str, dict[str, str]], def main(_): assert FLAGS.base_index and FLAGS.test_index and FLAGS.queryset - base_dict = _load_yaml(_PROD_EMBEDDINGS_YAML, FLAGS.base_index) - test_dict = _load_yaml(_LOCAL_EMBEDDINGS_YAML, FLAGS.test_index) + base_dict = _load_yaml(_PROD_EMBEDDINGS_YAML) + test_dict = _load_yaml(_LOCAL_EMBEDDINGS_YAML) run_diff(FLAGS.base_index, FLAGS.test_index, base_dict, test_dict, FLAGS.queryset, _REPORT) diff --git a/tools/nl/svindex_differ/queryset_vars.csv b/tools/nl/svindex_differ/queryset_vars.csv index 626932a32a..78a9e0d1a4 100644 --- a/tools/nl/svindex_differ/queryset_vars.csv +++ b/tools/nl/svindex_differ/queryset_vars.csv @@ -41,7 +41,7 @@ What are the most common jobs the largest gender pay gap economies have grown the most the fastest growing GDP per capita -How has the GINI index changed +How has the GINI index changed wage earnings for construction industry the highest average income Total earnings for employees in the information industry @@ -85,7 +85,7 @@ Tell me about the population What’s the average age of the population Racial breakdown of population How has population density changed this century -What percent of the population is divorced +What percent of the population is divorced the population What’s the female population Immigration over time @@ -141,10 +141,10 @@ many people less 9th grade education gambling prevalent inflation male civilians institutionalized -max_concentration_airpollutant_ozone +max concentration air pollutant ozone people agriculture population -q female life expectancy +female life expectancy recent disasters sdg poverty show sources co2 emissions diff --git a/tools/nl/svindex_differ/run.sh b/tools/nl/svindex_differ/run.sh index e1d7e68985..38921c8225 100755 --- a/tools/nl/svindex_differ/run.sh +++ b/tools/nl/svindex_differ/run.sh @@ -38,6 +38,7 @@ pip3 install -r tools/nl/svindex_differ/requirements.txt export TOKENIZERS_PARALLELISM=false # Diff production embeddings against test. +export FLASK_ENV=local python3 -m tools.nl.svindex_differ.differ \ --base_index="$BASE" --test_index="$TEST" \ --queryset=tools/nl/svindex_differ/queryset_vars.csv diff --git a/tools/nl/translate_compare/gen_ai.py b/tools/nl/translate_compare/gen_ai.py index abda699fa9..762df042c7 100644 --- a/tools/nl/translate_compare/gen_ai.py +++ b/tools/nl/translate_compare/gen_ai.py @@ -79,7 +79,6 @@ def fetch_alt_query(query, variation="more casually"): def main(_): queries = [ - "What is the breakdown of incarceration rates by race in the US", "What is the correlation between obesity and poverty across counties in the US" ] variations = [ From f205ddfbe6b42f6215adb44a33a319460e9c21fb Mon Sep 17 00:00:00 2001 From: Bo Xu Date: Tue, 14 May 2024 01:46:55 +0000 Subject: [PATCH 09/28] Update topic cache from topic schema change (#4229) --- server/config/nl_page/topic_cache.json | 36 +++++++++++++++++-- .../debug_info.json | 32 ++++++++--------- 2 files changed, 50 insertions(+), 18 deletions(-) diff --git a/server/config/nl_page/topic_cache.json b/server/config/nl_page/topic_cache.json index 70890e84ec..50287c49ae 100644 --- a/server/config/nl_page/topic_cache.json +++ b/server/config/nl_page/topic_cache.json @@ -6499,6 +6499,24 @@ "StatVarPeerGroup" ] }, + { + "dcid": [ + "dc/svpg/dc/topic/CollegeEducation_Attainment" + ], + "memberList": [ + "Count_Person_EducationalAttainmentAssociatesDegree", + "Count_Person_EducationalAttainmentBachelorsDegree", + "Count_Person_EducationalAttainmentMastersDegree", + "Count_Person_EducationalAttainmentProfessionalSchoolDegree", + "Count_Person_EducationalAttainmentDoctorateDegree" + ], + "name": [ + "College Education Attainment" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, { "dcid": [ "dc/svpg/dc/topic/CommuteModeByOccupation_ManagementBusinessScienceandArtsOccupations" @@ -7626,8 +7644,8 @@ "dc/svpg/dc/topic/Immigration_NativeVsForeign" ], "memberList": [ - "Count_Person_Native", - "Count_Person_ForeignBorn" + "Count_Person_ForeignBorn", + "Count_Person_Native" ], "name": [ "Population by Nativity" @@ -10158,6 +10176,20 @@ "Topic" ] }, + { + "dcid": [ + "dc/topic/CollegeEducationAttainment" + ], + "name": [ + "College Education" + ], + "relevantVariableList": [ + "dc/svpg/dc/topic/CollegeEducation_Attainment" + ], + "typeOf": [ + "Topic" + ] + }, { "dcid": [ "dc/topic/CollegeOrUniversityStudentHousingResidents" diff --git a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json index 036d69cf2b..4edec902e5 100644 --- a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json @@ -27,16 +27,16 @@ "Parts": [ { "CosineScore": [ - 0.8638870120048523, - 0.861319363117218, - 0.8523017168045044, - 0.8326529860496521, - 0.8307947516441345, - 0.8306547999382019, - 0.8281034827232361, - 0.8209193348884583, - 0.8201779127120972, - 0.8199417591094971, + 0.8638870716094971, + 0.8613194227218628, + 0.8523018956184387, + 0.8326529264450073, + 0.8307949304580688, + 0.8306548595428467, + 0.8281034231185913, + 0.820919394493103, + 0.8201780319213867, + 0.8199418187141418, 0.8179653882980347 ], "QueryPart": "number poor hispanic", @@ -56,7 +56,7 @@ }, { "CosineScore": [ - 0.9458004236221313 + 0.9458003640174866 ], "QueryPart": "women phd", "SV": [ @@ -82,7 +82,7 @@ }, { "CosineScore": [ - 0.8309069871902466 + 0.8309072256088257 ], "QueryPart": "phd", "SV": [ @@ -97,11 +97,11 @@ "Parts": [ { "CosineScore": [ - 0.6569581031799316, + 0.656958281993866, 0.6552729606628418, - 0.6206240653991699, - 0.6172623634338379, - 0.6135539412498474 + 0.6206241250038147, + 0.6172623038291931, + 0.6135541200637817 ], "QueryPart": "number poor", "SV": [ From b9c4a0861d6462533375c93ef530ff6ae3061e53 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Mon, 13 May 2024 19:25:40 -0700 Subject: [PATCH 10/28] update nodejs golden (#4227) --- .../nl/nodejs_query_differ/goldens/autopush/bar.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/nl/nodejs_query_differ/goldens/autopush/bar.json b/tools/nl/nodejs_query_differ/goldens/autopush/bar.json index 95c662ee31..962fe79893 100644 --- a/tools/nl/nodejs_query_differ/goldens/autopush/bar.json +++ b/tools/nl/nodejs_query_differ/goldens/autopush/bar.json @@ -1,7 +1,7 @@ { "charts": [ { - "data_csv": "label,Santa Clara County\r\nAccomodation/Food Industry,82881\r\nAdmin / Waste Management Service Industry,60538\r\n\"Agriculture, Forestry, Fishing, Hunting\",2960\r\nConstruction Industry,53031\r\nEducational Services Industry,81663\r\nHealth Care and Social Assistance Industry,156124\r\nManufacturing,176811\r\nFinance and Insurance Industry,20831\r\nInformation Industry,96168\r\n\"Arts, Entertainment, Recreation Industry\",20764\r\n\"Mining, Quarrying, Oil and Gas Extraction Industry\",142\r\nOther Services (except Public Admin),25214\r\nTransportation And Warehousing,20846\r\nUtilities,3527\r\nRetail Trade,72215\r\nReal Estate and Rental and Leasing,15648\r\nPublic Administration,27668\r\nWholesale Trade,28183\r\n\"Professional, Scientific, and Technical Services\",161223", + "data_csv": "label,Santa Clara County\r\nAccommodation/Food Industry,82881\r\nAdmin / Waste Management Service Industry,60538\r\n\"Agriculture, Forestry, Fishing, Hunting\",2960\r\nConstruction Industry,53031\r\nEducational Services Industry,81663\r\nHealth Care and Social Assistance Industry,156124\r\nManufacturing,176811\r\nFinance and Insurance Industry,20831\r\nInformation Industry,96168\r\n\"Arts, Entertainment, Recreation Industry\",20764\r\n\"Mining, Quarrying, Oil and Gas Extraction Industry\",142\r\nOther Services (except Public Admin),25214\r\nTransportation And Warehousing,20846\r\nUtilities,3527\r\nRetail Trade,72215\r\nReal Estate and Rental and Leasing,15648\r\nPublic Administration,27668\r\nWholesale Trade,28183\r\n\"Professional, Scientific, and Technical Services\",161223\r\nManagement of Companies and Enterprises Industry,13729\r\nUnclassified,959", "placeType": "", "places": [ "geoId/06085" @@ -13,7 +13,7 @@ } ], "legend": [ - "Accomodation/Food Industry", + "Accommodation/Food Industry", "Admin / Waste Management Service Industry", "Agriculture, Forestry, Fishing, Hunting", "Construction Industry", @@ -31,7 +31,9 @@ "Real Estate and Rental and Leasing", "Public Administration", "Wholesale Trade", - "Professional, Scientific, and Technical Services" + "Professional, Scientific, and Technical Services", + "Management of Companies and Enterprises Industry", + "Unclassified" ], "title": "Categories of Jobs in Santa Clara County (Jun, 2023)", "type": "BAR", @@ -55,7 +57,9 @@ "Count_Worker_NAICSRealEstateRentalLeasing", "Count_Worker_NAICSPublicAdministration", "Count_Worker_NAICSWholesaleTrade", - "Count_Worker_NAICSProfessionalScientificTechnicalServices" + "Count_Worker_NAICSProfessionalScientificTechnicalServices", + "Count_Worker_NAICSManagementOfCompaniesEnterprises", + "Count_Worker_NAICSNonclassifiable" ], "chartUrl": "", "dcUrl": "https://datacommons.org/explore#q=top%20jobs%20in%20santa%20clara%20county" From 13de684962cecac0662242cac74eaa3649070747 Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Mon, 13 May 2024 22:25:00 -0700 Subject: [PATCH 11/28] Fallback to LLM for real (instead for safety) and fully (#4191) We used `hybridsafety` before launch worrying what LLM would hallucinate/do. But since then Gemini happened, and our own heuristics have proven not very good, so lets try `hybrid` as a step towards `LLM` for real perhaps. As well, do not distinguish whether we use just place or sv detected by LLM, when we fallback. Its hard to reason, and simpler to just use what the LLM detected fully. TODO: Run adversarial tests for sanity! (Although, for real, the QPS to LLM should be the same, the only difference is whether we only use LLM result for safety check or fulfill) --- server/integration_tests/nl_test.py | 6 +- .../debug_info.json | 69 ++++++++++--------- server/lib/nl/detection/detector.py | 10 --- server/lib/nl/detection/llm_fallback.py | 12 +--- server/lib/nl/detection/types.py | 6 +- server/routes/explore/helpers.py | 7 +- .../lib/nl/detection/llm_fallback_test.py | 8 +-- 7 files changed, 49 insertions(+), 69 deletions(-) diff --git a/server/integration_tests/nl_test.py b/server/integration_tests/nl_test.py index e0c7d711cf..7887f5c7c1 100644 --- a/server/integration_tests/nl_test.py +++ b/server/integration_tests/nl_test.py @@ -36,7 +36,7 @@ def run_sequence(self, test_dir, queries, idx='medium_ft', - detector='hybridsafety', + detector='hybrid', check_place_detection=False, expected_detectors=[], failure='', @@ -225,9 +225,9 @@ def test_demo_fallback(self): # instead we would pick contained-in from context (County). 'GDP of countries in the US', ], - detector='hybridsafety', + detector='hybrid', expected_detectors=[ - 'Hybrid - LLM Safety', + 'Hybrid - LLM Fallback', 'Hybrid - Heuristic Based', 'Hybrid - Heuristic Based', 'Hybrid - Heuristic Based', diff --git a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json index 4edec902e5..b547d65b4a 100644 --- a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json @@ -10,14 +10,14 @@ "CosineScore": [ 0.8903406858444214, 0.8845490217208862, - 0.8456564545631409, - 0.8409274816513062, - 0.8346197605133057, - 0.830601692199707, - 0.830077052116394, - 0.829837441444397, - 0.825484573841095, - 0.825312614440918 + 0.845656156539917, + 0.8409276008605957, + 0.8346197009086609, + 0.8306021094322205, + 0.8300771713256836, + 0.8298372626304626, + 0.8254846930503845, + 0.8253124356269836 ], "MultiSV": { "Candidates": [ @@ -27,17 +27,17 @@ "Parts": [ { "CosineScore": [ - 0.8638870716094971, - 0.8613194227218628, - 0.8523018956184387, - 0.8326529264450073, - 0.8307949304580688, - 0.8306548595428467, - 0.8281034231185913, - 0.820919394493103, + 0.8638868927955627, + 0.8613189458847046, + 0.852301836013794, + 0.8326531052589417, + 0.8307946920394897, + 0.8306549787521362, + 0.8281030654907227, + 0.8209190368652344, 0.8201780319213867, - 0.8199418187141418, - 0.8179653882980347 + 0.8199412226676941, + 0.817965567111969 ], "QueryPart": "number poor hispanic", "SV": [ @@ -56,7 +56,7 @@ }, { "CosineScore": [ - 0.9458003640174866 + 0.9458003044128418 ], "QueryPart": "women phd", "SV": [ @@ -71,8 +71,8 @@ "Parts": [ { "CosineScore": [ - 0.947663426399231, - 0.9369953870773315 + 0.9476636052131653, + 0.9369949698448181 ], "QueryPart": "number poor hispanic women", "SV": [ @@ -82,7 +82,7 @@ }, { "CosineScore": [ - 0.8309072256088257 + 0.8309073448181152 ], "QueryPart": "phd", "SV": [ @@ -97,10 +97,10 @@ "Parts": [ { "CosineScore": [ - 0.656958281993866, - 0.6552729606628418, - 0.6206241250038147, - 0.6172623038291931, + 0.6569583415985107, + 0.6552730798721313, + 0.6206246614456177, + 0.6172628402709961, 0.6135541200637817 ], "QueryPart": "number poor", @@ -114,9 +114,9 @@ }, { "CosineScore": [ - 0.9240200519561768, - 0.9144761562347412, - 0.8951907753944397 + 0.9240201711654663, + 0.914476215839386, + 0.8951904773712158 ], "QueryPart": "hispanic women phd", "SV": [ @@ -149,17 +149,18 @@ }, "query_detection_debug_logs": { "dc_recognize_places": {}, + "llm_response": { + "METRICS": [ + "number of poor hispanic women with phd" + ] + }, "main_place_inferred": null, "original_query": "number of poor hispanic women with phd", "place_dcid_inference": "Place DCID Inference did not trigger (no place strings found).", "place_resolution": "Place resolution did not trigger (no place dcids found).", "places_found_str": [], "query_transformations": { - "place_detection_input": "number of poor hispanic women with phd", - "place_detection_with_places_removed": "number of poor hispanic women with phd", - "sv_detection_query_index_type": "", - "sv_detection_query_input": "number of poor hispanic women with phd", - "sv_detection_query_stop_words_removal": "number poor hispanic women phd" + "sv_detection_query_index_type": "" } } } \ No newline at end of file diff --git a/server/lib/nl/detection/detector.py b/server/lib/nl/detection/detector.py index ab7783a60c..e33da427f9 100644 --- a/server/lib/nl/detection/detector.py +++ b/server/lib/nl/detection/detector.py @@ -140,16 +140,6 @@ def detect(detector_type: str, # Completely use LLM's detections. detection = llm_detection detection.detector = ActualDetectorType.HybridLLMFull - elif llm_type == llm_fallback.NeedLLM.ForVar: - # Use place stuff from heuristics - detection = llm_detection - detection.places_detected = heuristic_detection.places_detected - detection.detector = ActualDetectorType.HybridLLMVar - elif llm_type == llm_fallback.NeedLLM.ForPlace: - # Use place stuff from LLM - detection = heuristic_detection - detection.places_detected = llm_detection.places_detected - detection.detector = ActualDetectorType.HybridLLMPlace return detection diff --git a/server/lib/nl/detection/llm_fallback.py b/server/lib/nl/detection/llm_fallback.py index ed4b0c0a65..520b7bb51b 100644 --- a/server/lib/nl/detection/llm_fallback.py +++ b/server/lib/nl/detection/llm_fallback.py @@ -31,10 +31,8 @@ class NeedLLM(Enum): No = 1 - ForPlace = 2 - ForVar = 3 - ForSafety = 4 - Fully = 5 + ForSafety = 2 + Fully = 3 # Any score below this value does not qualify for fallback. This @@ -100,12 +98,8 @@ def need_llm(heuristic: Detection, prev_uttr: Utterance, need_sv = True llm_type = NeedLLM.No - if need_sv and need_place: + if need_sv or need_place: llm_type = NeedLLM.Fully - elif need_sv: - llm_type = NeedLLM.ForVar - elif need_place: - llm_type = NeedLLM.ForPlace return llm_type diff --git a/server/lib/nl/detection/types.py b/server/lib/nl/detection/types.py index f8eaa09175..318fb2c4c7 100644 --- a/server/lib/nl/detection/types.py +++ b/server/lib/nl/detection/types.py @@ -396,11 +396,7 @@ class ActualDetectorType(str, Enum): # No fallback HybridHeuristic = "Hybrid - Heuristic Based" # Fallback to LLM fully - HybridLLMFull = "Hybrid - LLM Fallback (Full)" - # Fallback to LLM for place detection only - HybridLLMPlace = "Hybrid - LLM Fallback (Place)" - # Fallback to LLM for variable detection only - HybridLLMVar = "Hybrid - LLM Fallback (Variable)" + HybridLLMFull = "Hybrid - LLM Fallback" # LLM for safety check only HybridLLMSafety = "Hybrid - LLM Safety Check" # The case of no detector involved. diff --git a/server/routes/explore/helpers.py b/server/routes/explore/helpers.py index a2cb5074c1..fb11713005 100644 --- a/server/routes/explore/helpers.py +++ b/server/routes/explore/helpers.py @@ -111,10 +111,9 @@ def parse_query_and_detect(request: Dict, backend: str, client: str, dc = request.get_json().get('dc', '') embeddings_index_type = params.dc_to_embedding_type(dc, embeddings_index_type) - detector_type = request.args.get( - 'detector', - default=RequestedDetectorType.HybridSafetyCheck.value, - type=str) + detector_type = request.args.get('detector', + default=RequestedDetectorType.Hybrid.value, + type=str) # mode param use_default_place = True diff --git a/server/tests/lib/nl/detection/llm_fallback_test.py b/server/tests/lib/nl/detection/llm_fallback_test.py index 7b6adda4f5..f4aca2b2e0 100644 --- a/server/tests/lib/nl/detection/llm_fallback_test.py +++ b/server/tests/lib/nl/detection/llm_fallback_test.py @@ -92,7 +92,7 @@ class TestLLMFallback(unittest.TestCase): places_detected=_place(), svs_detected=_sv(), classifications=[]), - NeedLLM.ForVar, + NeedLLM.Fully, 'info_fallback_no_sv_found'), ( # Same as above, but since its OVERVIEW, we ignore @@ -121,7 +121,7 @@ class TestLLMFallback(unittest.TestCase): places_detected=None, svs_detected=_sv(['Count_Person_Hispanic']), classifications=_nlcl(ClassificationType.OVERVIEW)), - NeedLLM.ForPlace, + NeedLLM.Fully, 'info_fallback_no_place_found'), ( # No place found, but Country type, so Earth is assumed. @@ -162,7 +162,7 @@ class TestLLMFallback(unittest.TestCase): delim=True, above_thres=True), classifications=[]), - NeedLLM.ForVar, + NeedLLM.Fully, 'info_fallback_multi_sv_delimiter'), ( # Same as above, but with comparison classification, don't fallback. @@ -192,7 +192,7 @@ class TestLLMFallback(unittest.TestCase): places_detected=_place(), svs_detected=_sv(['hispanic', 'asian'], above_thres=True), classifications=[]), - NeedLLM.ForVar, + NeedLLM.Fully, 'info_fallback_place_within_multi_sv'), ]) def test_main(self, heuristic, fallback, counter): From 98731bf18aeedfdff1755c7fc3d86c3cf52d5321 Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Mon, 13 May 2024 23:44:56 -0700 Subject: [PATCH 12/28] Disable filter queries unless LLM infers things (#4189) This change is safe to disable because neither our landing page queries, nor our demo queries rely on filter. --- server/integration_tests/explore_test.py | 13 +- server/integration_tests/nl_test.py | 3 +- .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../filter_query_disabled/chart_config.json | 1357 +++++++++++++++++ .../multisv/query_1/chart_config.json | 1 + .../multisv/query_2/chart_config.json | 1 + .../multisv/query_3/chart_config.json | 1 + .../multisv/query_4/chart_config.json | 1 + server/lib/nl/detection/utils.py | 7 + server/lib/nl/fulfillment/fulfiller.py | 13 +- server/lib/nl/fulfillment/handlers.py | 15 + 21 files changed, 1409 insertions(+), 14 deletions(-) create mode 100644 server/integration_tests/test_data/filter_query_disabled/chart_config.json diff --git a/server/integration_tests/explore_test.py b/server/integration_tests/explore_test.py index 7f1382b727..9a2a0968d8 100644 --- a/server/integration_tests/explore_test.py +++ b/server/integration_tests/explore_test.py @@ -473,6 +473,16 @@ def test_e2e_answer_places(self): 'How about the uninsured population?', 'Which counties in california have median age over 40?', 'What is the emissions in these counties?' + ], + test='filter_test') + + # This is the same as the query in `e2e_answer_places`, but + # without "filter_test", so filter query should not work. + # Specifically, the answer would have MAP and RANKING + # chart instead of a single BAR chart. + def test_filter_query_disabled(self): + self.run_detect_and_fulfill('filter_query_disabled', [ + 'Which counties in california have median age over 40?', ]) def test_e2e_electrification_demo(self): @@ -533,7 +543,8 @@ def test_e2e_edge_cases2(self): # not have both the topics. Instead, the title has the topic # corresponding to the SV in the very first chart. 'Poverty vs. unemployment rate in districts of Tamil Nadu', - ]) + ], + test='filter_test') def test_e2e_correlation_bugs(self): self.run_detect_and_fulfill('e2e_correlation_bugs', diff --git a/server/integration_tests/nl_test.py b/server/integration_tests/nl_test.py index 7887f5c7c1..158ce4fa8c 100644 --- a/server/integration_tests/nl_test.py +++ b/server/integration_tests/nl_test.py @@ -249,7 +249,8 @@ def test_demo_multisv(self): "Prevalence of Asthma in California cities with hispanic population over 10000", ], # Use heuristic because LLM fallback is not very deterministic. - detector='heuristic') + detector='heuristic', + test='filter_test') def test_demo_climatetrace(self): self.run_sequence('demo_climatetrace', diff --git a/server/integration_tests/test_data/e2e_answer_places/californiacountieswiththehighestasthmalevels/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/californiacountieswiththehighestasthmalevels/chart_config.json index 26a5953e75..a62e29ebc5 100644 --- a/server/integration_tests/test_data/e2e_answer_places/californiacountieswiththehighestasthmalevels/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/californiacountieswiththehighestasthmalevels/chart_config.json @@ -1046,6 +1046,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/e2e_answer_places/howabouttheuninsuredpopulation/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/howabouttheuninsuredpopulation/chart_config.json index 01ec9bf491..f32950a02a 100644 --- a/server/integration_tests/test_data/e2e_answer_places/howabouttheuninsuredpopulation/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/howabouttheuninsuredpopulation/chart_config.json @@ -866,6 +866,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "See relevant statistics based on the previous query.", "userMessages": [ "See relevant statistics based on the previous query." diff --git a/server/integration_tests/test_data/e2e_answer_places/whatistheemissionsinthesecounties/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/whatistheemissionsinthesecounties/chart_config.json index 8420f6f1f4..2121c9a86d 100644 --- a/server/integration_tests/test_data/e2e_answer_places/whatistheemissionsinthesecounties/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/whatistheemissionsinthesecounties/chart_config.json @@ -924,6 +924,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "See comparison based on places in the previous answer.", "userMessages": [ "See comparison based on places in the previous answer." diff --git a/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json index e6ca349624..d66d15425c 100644 --- a/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json @@ -271,6 +271,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "See comparison based on places in the previous answer.", "userMessages": [ "See comparison based on places in the previous answer." diff --git a/server/integration_tests/test_data/e2e_answer_places/whichcountiesincaliforniahavemedianageover40/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/whichcountiesincaliforniahavemedianageover40/chart_config.json index 31586a934e..f3662f2def 100644 --- a/server/integration_tests/test_data/e2e_answer_places/whichcountiesincaliforniahavemedianageover40/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/whichcountiesincaliforniahavemedianageover40/chart_config.json @@ -813,6 +813,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/e2e_edge_cases2/californiacountieswiththebiggestincreaseinincomelevels/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/californiacountieswiththebiggestincreaseinincomelevels/chart_config.json index acd20562e0..97a839ebe9 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/californiacountieswiththebiggestincreaseinincomelevels/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/californiacountieswiththebiggestincreaseinincomelevels/chart_config.json @@ -1126,6 +1126,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/e2e_edge_cases2/countiesincaliforniawhereincomeisover50000/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/countiesincaliforniawhereincomeisover50000/chart_config.json index e5c14c326f..3b396383a0 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/countiesincaliforniawhereincomeisover50000/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/countiesincaliforniawhereincomeisover50000/chart_config.json @@ -870,6 +870,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/e2e_edge_cases2/howdoesschoolsizeofurbanschoolscomparetoruralschoolsincolorado/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/howdoesschoolsizeofurbanschoolscomparetoruralschoolsincolorado/chart_config.json index 99ef2ad732..6e6600e69e 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/howdoesschoolsizeofurbanschoolscomparetoruralschoolsincolorado/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/howdoesschoolsizeofurbanschoolscomparetoruralschoolsincolorado/chart_config.json @@ -586,6 +586,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "Low confidence in understanding your query. Displaying the closest results.", "userMessages": [ "Low confidence in understanding your query. Displaying the closest results." diff --git a/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json index c4077f171b..9af6fd1c7c 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json @@ -210,6 +210,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "Sorry, there were no relevant statistics for administrative area 2 places in Tamil Nadu. See results for Tamil Nadu.", "userMessages": [ "Sorry, there were no relevant statistics for administrative area 2 places in Tamil Nadu. See results for Tamil Nadu." diff --git a/server/integration_tests/test_data/e2e_edge_cases2/whatcrimesareconsideredfeloniesvs.misdemeanorsintheus/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/whatcrimesareconsideredfeloniesvs.misdemeanorsintheus/chart_config.json index 86777e5dcd..3b51c427a1 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/whatcrimesareconsideredfeloniesvs.misdemeanorsintheus/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/whatcrimesareconsideredfeloniesvs.misdemeanorsintheus/chart_config.json @@ -885,6 +885,7 @@ "peerTopics": [] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "Low confidence in understanding your query. Displaying the closest results.", "userMessages": [ "Low confidence in understanding your query. Displaying the closest results." diff --git a/server/integration_tests/test_data/e2e_edge_cases2/whatistherelationshipbetweenhousingsizeandhomepricesincalifornia/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/whatistherelationshipbetweenhousingsizeandhomepricesincalifornia/chart_config.json index 48d910a25f..e0d1b06937 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/whatistherelationshipbetweenhousingsizeandhomepricesincalifornia/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/whatistherelationshipbetweenhousingsizeandhomepricesincalifornia/chart_config.json @@ -1268,6 +1268,7 @@ ] }, "svSource": "PARTIAL_PAST_QUERY", + "test": "filter_test", "userMessage": "Low confidence in understanding your query. Displaying the closest results.", "userMessages": [ "Low confidence in understanding your query. Displaying the closest results." diff --git a/server/integration_tests/test_data/filter_query_disabled/chart_config.json b/server/integration_tests/test_data/filter_query_disabled/chart_config.json new file mode 100644 index 0000000000..3a1f89c8a9 --- /dev/null +++ b/server/integration_tests/test_data/filter_query_disabled/chart_config.json @@ -0,0 +1,1357 @@ +{ + "client": "test_detect-and-fulfill", + "config": { + "categories": [ + { + "blocks": [ + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person" + ], + "title": "Median Age of Population in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person" + ], + "title": "Median Age of Population in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Median Age of Population in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person" + ], + "title": "Median Age of Population in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age of Population in California", + "statVarKey": [ + "Median_Age_Person" + ], + "title": "Median Age of Population in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age of Population" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Female" + ], + "title": "Women's Median Age in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_Female" + ], + "title": "Women's Median Age in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Women's Median Age in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Male" + ], + "title": "Men's Median Age in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_Male" + ], + "title": "Men's Median Age in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Men's Median Age in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Female", + "Median_Age_Person_Male" + ], + "title": "Median Age by Gender in California", + "type": "LINE" + } + ] + } + ], + "title": "Median Age by Gender" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_1OrMoreYears" + ], + "title": "Median Age: 1 Years or More in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_1OrMoreYears" + ], + "title": "Median Age: 1 Years or More in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Median Age: 1 Years or More in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_1OrMoreYears" + ], + "title": "Median Age: 1 Years or More in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age: 1 Years or More in California", + "statVarKey": [ + "Median_Age_Person_1OrMoreYears" + ], + "title": "Median Age: 1 Years or More in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age: 1 Years or More" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_ResidesInGroupQuarters" + ], + "title": "Median Age: Group Quarters in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age: Group Quarters in California", + "statVarKey": [ + "Median_Age_Person_ResidesInGroupQuarters" + ], + "title": "Median Age: Group Quarters in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age: Group Quarters" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_SomeOtherRaceAlone" + ], + "title": "Median Age of Population of Some Other Race in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_SomeOtherRaceAlone" + ], + "title": "Median Age of Population of Some Other Race in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Median Age of Population of Some Other Race in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_SomeOtherRaceAlone" + ], + "title": "Median Age of Population of Some Other Race in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age of Population of Some Other Race in California", + "statVarKey": [ + "Median_Age_Person_SomeOtherRaceAlone" + ], + "title": "Median Age of Population of Some Other Race in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age of Population of Some Other Race" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years" + ], + "title": "Population: 25-64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Population: 25-64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "statVarKey": [ + "Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years" + ], + "title": "Population: 25-64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Population: 25-64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 to 64 Years)" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState" + ], + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState" + ], + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "denom": "Count_Person", + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState" + ], + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in California", + "statVarKey": [ + "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState" + ], + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "denom": "Count_Person", + "title": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Male_SomeOtherRaceAlone" + ], + "title": "Median Age of Men of Some Other Race in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_Male_SomeOtherRaceAlone" + ], + "title": "Median Age of Men of Some Other Race in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Median Age of Men of Some Other Race in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Male_SomeOtherRaceAlone" + ], + "title": "Median Age of Men of Some Other Race in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age of Men of Some Other Race in California", + "statVarKey": [ + "Median_Age_Person_Male_SomeOtherRaceAlone" + ], + "title": "Median Age of Men of Some Other Race in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age of Men of Some Other Race" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years" + ], + "title": "Population: 25-64 Years, Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Population: 25-64 Years, Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "statVarKey": [ + "Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years" + ], + "title": "Population: 25-64 Years, Tertiary Education (As Fraction of Count Person 25 to 64 Years) in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Population: 25-64 Years, Tertiary Education (As Fraction of Count Person 25 to 64 Years)" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Native" + ], + "title": "Median Age: Native in Counties of California (${date})", + "type": "MAP" + } + ] + }, + { + "tiles": [ + { + "rankingTileSpec": { + "rankingCount": 5, + "showHighestLowest": true + }, + "statVarKey": [ + "Median_Age_Person_Native" + ], + "title": "Median Age: Native in Counties of California (${date})", + "type": "RANKING" + } + ] + } + ], + "title": "Median Age: Native in Counties of California" + }, + { + "columns": [ + { + "tiles": [ + { + "statVarKey": [ + "Median_Age_Person_Native" + ], + "title": "Median Age: Native in California", + "type": "LINE" + } + ] + }, + { + "tiles": [ + { + "description": "Median Age: Native in California", + "statVarKey": [ + "Median_Age_Person_Native" + ], + "title": "Median Age: Native in California", + "type": "HIGHLIGHT" + } + ] + } + ], + "title": "Median Age: Native" + } + ], + "statVarSpec": { + "Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years": { + "name": "Population: 25 - 64 Years, Tertiary Education (As Fraction of Count Person 25 To 64 Years)", + "statVar": "Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years" + }, + "Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years": { + "name": "Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 To 64 Years)", + "statVar": "Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years" + }, + "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState": { + "name": "Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State", + "statVar": "Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState" + }, + "Median_Age_Person": { + "name": "Median Age of Population", + "statVar": "Median_Age_Person" + }, + "Median_Age_Person_1OrMoreYears": { + "name": "Median Age: 1 Years or More", + "statVar": "Median_Age_Person_1OrMoreYears" + }, + "Median_Age_Person_Female": { + "name": "Women's Median Age", + "statVar": "Median_Age_Person_Female" + }, + "Median_Age_Person_Male": { + "name": "Men's Median Age", + "statVar": "Median_Age_Person_Male" + }, + "Median_Age_Person_Male_SomeOtherRaceAlone": { + "name": "Median Age of Men of Some Other Race", + "statVar": "Median_Age_Person_Male_SomeOtherRaceAlone" + }, + "Median_Age_Person_Native": { + "name": "Median Age: Native", + "statVar": "Median_Age_Person_Native" + }, + "Median_Age_Person_ResidesInGroupQuarters": { + "name": "Median Age: Group Quarters", + "statVar": "Median_Age_Person_ResidesInGroupQuarters" + }, + "Median_Age_Person_SomeOtherRaceAlone": { + "name": "Median Age of Population of Some Other Race", + "statVar": "Median_Age_Person_SomeOtherRaceAlone" + } + } + } + ], + "metadata": { + "containedPlaceTypes": { + "State": "County" + }, + "placeDcid": [ + "geoId/06" + ] + } + }, + "context": {}, + "debug": {}, + "entities": [], + "pastSourceContext": "", + "place": { + "dcid": "geoId/06", + "name": "California", + "place_type": "State" + }, + "placeFallback": {}, + "placeSource": "CURRENT_QUERY", + "places": [ + { + "dcid": "geoId/06", + "name": "California", + "place_type": "State" + } + ], + "relatedThings": { + "childPlaces": { + "County": [ + { + "dcid": "geoId/06001", + "name": "Alameda", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06003", + "name": "Alpine", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06005", + "name": "Amador", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06007", + "name": "Butte", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06009", + "name": "Calaveras", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06011", + "name": "Colusa", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06013", + "name": "Contra Costa", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06015", + "name": "Del Norte", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06017", + "name": "El Dorado", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06019", + "name": "Fresno", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06021", + "name": "Glenn", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06023", + "name": "Humboldt", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06025", + "name": "Imperial", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06027", + "name": "Inyo", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06029", + "name": "Kern", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06031", + "name": "Kings", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06033", + "name": "Lake", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06035", + "name": "Lassen", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06037", + "name": "Los Angeles", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06039", + "name": "Madera", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06041", + "name": "Marin", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06043", + "name": "Mariposa", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06045", + "name": "Mendocino", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06047", + "name": "Merced", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06049", + "name": "Modoc", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06051", + "name": "Mono", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06053", + "name": "Monterey", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06055", + "name": "Napa", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06057", + "name": "Nevada", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06059", + "name": "Orange", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06061", + "name": "Placer", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06063", + "name": "Plumas", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06065", + "name": "Riverside", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06067", + "name": "Sacramento", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06069", + "name": "San Benito", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06071", + "name": "San Bernardino", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06073", + "name": "San Diego", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06075", + "name": "San Francisco", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06077", + "name": "San Joaquin", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06079", + "name": "San Luis Obispo", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06081", + "name": "San Mateo", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06083", + "name": "Santa Barbara", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06085", + "name": "Santa Clara", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06087", + "name": "Santa Cruz", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06089", + "name": "Shasta", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06091", + "name": "Sierra", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06093", + "name": "Siskiyou", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06095", + "name": "Solano", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06097", + "name": "Sonoma", + "types": [ + "County" + ] + }, + { + "dcid": "geoId/06099", + "name": "Stanislaus", + "types": [ + "County" + ] + } + ] + }, + "childTopics": [], + "exploreMore": { + "Median_Age_Person": { + "gender": [ + "Median_Age_Person_Female", + "Median_Age_Person_Male" + ] + } + }, + "mainTopics": [ + { + "dcid": "dc/topic/AgeMedians", + "name": "Age Medians", + "types": [ + "Topic" + ] + } + ], + "parentPlaces": [], + "parentTopics": [ + { + "dcid": "dc/topic/Age", + "name": "Age", + "types": [ + "Topic" + ] + } + ], + "peerPlaces": [ + { + "dcid": "geoId/01", + "name": "Alabama", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/02", + "name": "Alaska", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/04", + "name": "Arizona", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/05", + "name": "Arkansas", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/08", + "name": "Colorado", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/09", + "name": "Connecticut", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/10", + "name": "Delaware", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/11", + "name": "District of Columbia", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/12", + "name": "Florida", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/13", + "name": "Georgia", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/15", + "name": "Hawaii", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/16", + "name": "Idaho", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/17", + "name": "Illinois", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/18", + "name": "Indiana", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/19", + "name": "Iowa", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/20", + "name": "Kansas", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/21", + "name": "Kentucky", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/22", + "name": "Louisiana", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/23", + "name": "Maine", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/24", + "name": "Maryland", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/25", + "name": "Massachusetts", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/26", + "name": "Michigan", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/27", + "name": "Minnesota", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/28", + "name": "Mississippi", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/29", + "name": "Missouri", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/30", + "name": "Montana", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/31", + "name": "Nebraska", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/32", + "name": "Nevada", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/33", + "name": "New Hampshire", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/34", + "name": "New Jersey", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/35", + "name": "New Mexico", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/36", + "name": "New York", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/37", + "name": "North Carolina", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/38", + "name": "North Dakota", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/39", + "name": "Ohio", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/40", + "name": "Oklahoma", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/41", + "name": "Oregon", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/42", + "name": "Pennsylvania", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/72", + "name": "Puerto Rico", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/44", + "name": "Rhode Island", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/45", + "name": "South Carolina", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/46", + "name": "South Dakota", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/47", + "name": "Tennessee", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/48", + "name": "Texas", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/49", + "name": "Utah", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/50", + "name": "Vermont", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/51", + "name": "Virginia", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/53", + "name": "Washington", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/54", + "name": "West Virginia", + "types": [ + "AdministrativeArea1" + ] + }, + { + "dcid": "geoId/55", + "name": "Wisconsin", + "types": [ + "AdministrativeArea1" + ] + } + ], + "peerTopics": [ + { + "dcid": "dc/topic/AgeDistribution", + "name": "Age Distribution", + "types": [ + "Topic" + ] + }, + { + "dcid": "dc/topic/VeryOldAndVeryYoungPopulation", + "name": "Very Old and Very Young Population", + "types": [ + "Topic" + ] + } + ] + }, + "svSource": "CURRENT_QUERY", + "userMessage": "", + "userMessages": [] +} \ No newline at end of file diff --git a/server/integration_tests/test_data/multisv/query_1/chart_config.json b/server/integration_tests/test_data/multisv/query_1/chart_config.json index 420fa80e6a..b94a211a4c 100644 --- a/server/integration_tests/test_data/multisv/query_1/chart_config.json +++ b/server/integration_tests/test_data/multisv/query_1/chart_config.json @@ -1166,6 +1166,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/multisv/query_2/chart_config.json b/server/integration_tests/test_data/multisv/query_2/chart_config.json index 6996284511..7b53ebd99f 100644 --- a/server/integration_tests/test_data/multisv/query_2/chart_config.json +++ b/server/integration_tests/test_data/multisv/query_2/chart_config.json @@ -593,6 +593,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/multisv/query_3/chart_config.json b/server/integration_tests/test_data/multisv/query_3/chart_config.json index e8b24be0dd..22f5765750 100644 --- a/server/integration_tests/test_data/multisv/query_3/chart_config.json +++ b/server/integration_tests/test_data/multisv/query_3/chart_config.json @@ -915,6 +915,7 @@ ] }, "svSource": "CURRENT_QUERY", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/integration_tests/test_data/multisv/query_4/chart_config.json b/server/integration_tests/test_data/multisv/query_4/chart_config.json index 699832b836..d7a9b9605a 100644 --- a/server/integration_tests/test_data/multisv/query_4/chart_config.json +++ b/server/integration_tests/test_data/multisv/query_4/chart_config.json @@ -842,6 +842,7 @@ ] }, "svSource": "UNKNOWN", + "test": "filter_test", "userMessage": "", "userMessages": [] } \ No newline at end of file diff --git a/server/lib/nl/detection/utils.py b/server/lib/nl/detection/utils.py index 55e08aa83d..f1e3348ebc 100644 --- a/server/lib/nl/detection/utils.py +++ b/server/lib/nl/detection/utils.py @@ -22,6 +22,7 @@ from server.lib.nl.common import counters as ctr from server.lib.nl.common.utterance import QueryType from server.lib.nl.common.utterance import Utterance +from server.lib.nl.detection.types import ActualDetectorType from server.lib.nl.detection.types import ClassificationType from server.lib.nl.detection.types import Detection from server.lib.nl.detection.types import NLClassifier @@ -280,3 +281,9 @@ def remove_date_from_query(query: str, date_trigger = cl.attributes.date_trigger_strings[0] processed_query = processed_query.replace(date_trigger, "", 1) return processed_query + + +def is_llm_detection(d: Detection) -> bool: + return d.detector in [ + ActualDetectorType.LLM, ActualDetectorType.HybridLLMFull + ] diff --git a/server/lib/nl/fulfillment/fulfiller.py b/server/lib/nl/fulfillment/fulfiller.py index 2a80e1307f..ff587a6fcf 100644 --- a/server/lib/nl/fulfillment/fulfiller.py +++ b/server/lib/nl/fulfillment/fulfiller.py @@ -176,22 +176,11 @@ def _produce_query_types(uttr: Utterance) -> List[QueryType]: # The remaining query types require places to be set if not uttr.places: return query_types + query_types.append(handlers.first_query_type(uttr)) while query_types[-1] != None: query_types.append(handlers.next_query_type(query_types)) - if params.is_special_dc(uttr.insight_ctx): - # Prune out query_types that aren't relevant. - pruned_types = [] - for qt in query_types: - # Superlative introduces custom SVs not relevant for SDG. - # And we don't do event maps for SDG. - if qt not in [QueryType.EVENT, QueryType.SUPERLATIVE]: - pruned_types.append(qt) - if not pruned_types: - pruned_types.append(QueryType.BASIC) - query_types = pruned_types - return query_types diff --git a/server/lib/nl/fulfillment/handlers.py b/server/lib/nl/fulfillment/handlers.py index 810920c7bb..cca78e9a9d 100644 --- a/server/lib/nl/fulfillment/handlers.py +++ b/server/lib/nl/fulfillment/handlers.py @@ -26,6 +26,7 @@ from server.lib.nl.detection.types import ContainedInClassificationAttributes from server.lib.nl.detection.types import ContainedInPlaceType from server.lib.nl.detection.types import NLClassifier +import server.lib.nl.explore.params as params from server.lib.nl.fulfillment import basic from server.lib.nl.fulfillment import comparison from server.lib.nl.fulfillment import correlation @@ -201,6 +202,20 @@ def _classification_to_query_type(cl: NLClassifier, if query_type == QueryType.BASIC: query_type = _maybe_remap_basic(uttr) + if (params.is_special_dc(uttr.insight_ctx) and + query_type in [QueryType.EVENT, QueryType.SUPERLATIVE]): + # Superlative introduces custom SVs not relevant for SDG. + # And we don't do event maps for SDG. + query_type = QueryType.BASIC + + if (not detection_utils.is_llm_detection(uttr.detection) and + uttr.test != 'filter_test' and query_type + in [QueryType.FILTER_WITH_SINGLE_VAR, QueryType.FILTER_WITH_DUAL_VARS]): + # Filter queries are hard to interpret correctly using + # just heuristics. So unless this was LLM that did detection, + # do not fulfill it. + query_type = QueryType.BASIC + return query_type From ec75f3c337d92ff3d81b59702cff2ce242f6d6cc Mon Sep 17 00:00:00 2001 From: Bo Xu Date: Tue, 14 May 2024 16:34:39 +0000 Subject: [PATCH 13/28] Add rate(s) to per capita detection (#4231) --- .../debug_info.json | 58 +++++++++---------- .../debug_info.json | 4 +- .../chart_config.json | 3 + .../chart_config.json | 1 + .../chart_config.json | 1 + .../chart_config.json | 6 ++ .../chart_config.json | 8 +++ shared/lib/constants.py | 6 +- 8 files changed, 54 insertions(+), 33 deletions(-) diff --git a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json index b547d65b4a..8dce6df293 100644 --- a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json @@ -10,14 +10,14 @@ "CosineScore": [ 0.8903406858444214, 0.8845490217208862, - 0.845656156539917, - 0.8409276008605957, - 0.8346197009086609, - 0.8306021094322205, - 0.8300771713256836, - 0.8298372626304626, - 0.8254846930503845, - 0.8253124356269836 + 0.8456564545631409, + 0.8409274816513062, + 0.8346197605133057, + 0.830601692199707, + 0.830077052116394, + 0.829837441444397, + 0.825484573841095, + 0.825312614440918 ], "MultiSV": { "Candidates": [ @@ -27,17 +27,17 @@ "Parts": [ { "CosineScore": [ - 0.8638868927955627, - 0.8613189458847046, - 0.852301836013794, - 0.8326531052589417, - 0.8307946920394897, - 0.8306549787521362, - 0.8281030654907227, - 0.8209190368652344, - 0.8201780319213867, - 0.8199412226676941, - 0.817965567111969 + 0.8638870120048523, + 0.861319363117218, + 0.8523017168045044, + 0.8326529860496521, + 0.8307947516441345, + 0.8306547999382019, + 0.8281034827232361, + 0.8209193348884583, + 0.8201779127120972, + 0.8199417591094971, + 0.8179653882980347 ], "QueryPart": "number poor hispanic", "SV": [ @@ -56,7 +56,7 @@ }, { "CosineScore": [ - 0.9458003044128418 + 0.9458004236221313 ], "QueryPart": "women phd", "SV": [ @@ -72,7 +72,7 @@ { "CosineScore": [ 0.9476636052131653, - 0.9369949698448181 + 0.9369950890541077 ], "QueryPart": "number poor hispanic women", "SV": [ @@ -82,7 +82,7 @@ }, { "CosineScore": [ - 0.8309073448181152 + 0.8309072256088257 ], "QueryPart": "phd", "SV": [ @@ -97,10 +97,10 @@ "Parts": [ { "CosineScore": [ - 0.6569583415985107, - 0.6552730798721313, - 0.6206246614456177, - 0.6172628402709961, + 0.656958281993866, + 0.6552729606628418, + 0.6206241250038147, + 0.6172623038291931, 0.6135541200637817 ], "QueryPart": "number poor", @@ -114,9 +114,9 @@ }, { "CosineScore": [ - 0.9240201711654663, - 0.914476215839386, - 0.8951904773712158 + 0.9240199327468872, + 0.9144760966300964, + 0.8951905965805054 ], "QueryPart": "hispanic women phd", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json index ded760d8db..ce28732a1b 100644 --- a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json @@ -60,7 +60,7 @@ }, { "CosineScore": [ - 0.9125531315803528, + 0.9125533103942871, 0.8689355850219727 ], "QueryPart": "change drought", @@ -77,7 +77,7 @@ "Parts": [ { "CosineScore": [ - 0.5150814652442932 + 0.5150814056396484 ], "QueryPart": "show", "SV": [ diff --git a/server/integration_tests/test_data/detection_translate_chinese/chart_config.json b/server/integration_tests/test_data/detection_translate_chinese/chart_config.json index d7eda7e953..c647e8e3d3 100644 --- a/server/integration_tests/test_data/detection_translate_chinese/chart_config.json +++ b/server/integration_tests/test_data/detection_translate_chinese/chart_config.json @@ -11,6 +11,9 @@ "contained_in_place_type": "City", "had_default_type": false, "type": 4 + }, + { + "type": 14 } ], "client": "test_detect", diff --git a/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json b/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json index d66d15425c..a11bbae015 100644 --- a/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json +++ b/server/integration_tests/test_data/e2e_answer_places/whatistheobesityrateinthesecounties/chart_config.json @@ -69,6 +69,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Prevalence: Male, Obesity" }, { diff --git a/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json b/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json index 9af6fd1c7c..b053c625e5 100644 --- a/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json +++ b/server/integration_tests/test_data/e2e_edge_cases2/povertyvs.unemploymentrateindistrictsoftamilnadu/chart_config.json @@ -31,6 +31,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population Below Poverty Line" }, { diff --git a/server/integration_tests/test_data/e2e_india_demo/howdoesliteracyratecomparetopovertyinindia/chart_config.json b/server/integration_tests/test_data/e2e_india_demo/howdoesliteracyratecomparetopovertyinindia/chart_config.json index 6ba39fcad5..977e7d8205 100644 --- a/server/integration_tests/test_data/e2e_india_demo/howdoesliteracyratecomparetopovertyinindia/chart_config.json +++ b/server/integration_tests/test_data/e2e_india_demo/howdoesliteracyratecomparetopovertyinindia/chart_config.json @@ -23,6 +23,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate vs. Population Below poverty line" }, { @@ -55,6 +56,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate in Administrative Area 1 Places of India" }, { @@ -87,6 +89,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population Below Poverty Line in Administrative Area 1 Places of India" }, { @@ -108,6 +111,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Illiterate vs. Population Below poverty line (Per Capita)" }, { @@ -191,6 +195,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate vs. Population Below poverty line (Per Capita)" }, { @@ -212,6 +217,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Illiterate vs. Population Below poverty line" } ], diff --git a/server/integration_tests/test_data/e2e_india_demo/howdoestheliteracyratecompare/chart_config.json b/server/integration_tests/test_data/e2e_india_demo/howdoestheliteracyratecompare/chart_config.json index a90fd3e9fc..8adcb3f43d 100644 --- a/server/integration_tests/test_data/e2e_india_demo/howdoestheliteracyratecompare/chart_config.json +++ b/server/integration_tests/test_data/e2e_india_demo/howdoestheliteracyratecompare/chart_config.json @@ -36,6 +36,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate" }, { @@ -70,6 +71,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Illiterate" }, { @@ -104,6 +106,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Female, Literate" }, { @@ -138,6 +141,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate, Rural" }, { @@ -172,6 +176,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Literate, Urban" }, { @@ -239,6 +244,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Houseless, Literate" }, { @@ -273,6 +279,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Illiterate, Rural" }, { @@ -307,6 +314,7 @@ } ], "denom": "Count_Person", + "startWithDenom": true, "title": "Population: Illiterate, Urban" } ], diff --git a/shared/lib/constants.py b/shared/lib/constants.py index 9ac3ff1c30..4d3887b746 100644 --- a/shared/lib/constants.py +++ b/shared/lib/constants.py @@ -273,7 +273,8 @@ # together with ContainedInPlace. "AnswerPlacesReference": ["these", "those"], "PerCapita": [ - "fraction", "percent", "percentage", "per capita", "percapita" + "fraction", "percent", "percentage", "per capita", "percapita", + "rate", "rates" ], "Temporal": [ # Day of week @@ -311,7 +312,8 @@ # We do not want to strip words from events / superlatives / temporal # since we want those to match SVs too! -HEURISTIC_TYPES_IN_VARIABLES = frozenset(["Event", "Superlative", "Temporal"]) +HEURISTIC_TYPES_IN_VARIABLES = frozenset( + ["Event", "Superlative", "Temporal", "PerCapita"]) PLACE_TYPE_TO_PLURALS: Dict[str, str] = { "place": "places", From b57c0da60a7e5d152ddde33b9a8b303bfff96b7e Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 09:47:54 -0700 Subject: [PATCH 14/28] NL: Make score threshold a configurable parameter per model (#4230) Every model config now specifies a `score_threshold` parameter which gets used in place of the hard-coded `0.5`. If a model doesn't set it, the value defaults to `0.5` (so backward compatible for custom DC). This PR intends to make NO real functional change, except when using the `uae-large-v1-model` model. And this is seen by the only "real" diff being in `detection_api_uae_idx/chart_config.json` file. Also, when looking at empty variables return empty. As validation, the [which are the richest counties in California] query has [empty SV match table](https://screenshot.googleplex.com/DtEGSwnhKsngUYy). --- deploy/nl/embeddings.yaml | 5 ++ nl_server/config.py | 7 +++ nl_server/embeddings.py | 3 +- nl_server/model/sentence_transformer.py | 2 +- nl_server/model/vertexai.py | 2 +- nl_server/routes.py | 14 ++++- .../whatisthephylumofvolvox/debug_info.json | 58 +++++++++---------- .../debug_info.json | 40 ++++++------- .../debug_info.json | 30 +++++----- .../compareobesityvs.poverty/debug_info.json | 28 ++++----- .../debug_info.json | 52 ++++++++--------- .../debug_info.json | 58 +++++++++---------- .../debug_info.json | 34 +++++------ .../detection_api_reranking/debug_info.json | 32 +++++----- .../detection_api_uae_idx/chart_config.json | 10 +--- server/lib/nl/common/commentary.py | 15 +++-- server/lib/nl/detection/detector.py | 19 ++++-- server/lib/nl/detection/heuristic_detector.py | 8 +-- server/lib/nl/detection/llm_detector.py | 1 + server/lib/nl/detection/types.py | 9 ++- server/lib/nl/detection/utils.py | 24 +++++--- server/lib/nl/detection/variable.py | 19 ++++-- server/lib/nl/explore/params.py | 10 ++-- server/routes/explore/helpers.py | 1 - .../lib/nl/detection/llm_detector_test.py | 2 +- .../lib/nl/detection/llm_fallback_test.py | 12 +++- server/tests/lib/nl/fulfiller_test.py | 4 +- shared/lib/constants.py | 25 +++++--- shared/lib/detected_variables.py | 14 +++-- .../embeddings/build_custom_dc_embeddings.py | 14 +++-- .../build_custom_dc_embeddings_test.py | 3 +- .../custom_dc/expected/custom_embeddings.yaml | 1 + .../testdata/custom_dc/input/embeddings.yaml | 3 +- tools/nl/svindex_differ/differ.py | 11 ++-- 34 files changed, 326 insertions(+), 244 deletions(-) diff --git a/deploy/nl/embeddings.yaml b/deploy/nl/embeddings.yaml index f6cbdc2acf..7492e9d730 100644 --- a/deploy/nl/embeddings.yaml +++ b/deploy/nl/embeddings.yaml @@ -64,12 +64,16 @@ models: dc-all-minilm-l6-v2-model: type: VERTEXAI usage: EMBEDDINGS + score_threshold: 0.5 uae-large-v1-model: type: VERTEXAI usage: EMBEDDINGS + # These models use a higher threshold. + score_threshold: 0.7 sfr-embedding-mistral-model: type: VERTEXAI usage: EMBEDDINGS + score_threshold: 0.5 cross-encoder-ms-marco-miniilm-l6-v2: type: VERTEXAI usage: RERANKING @@ -80,3 +84,4 @@ models: type: LOCAL usage: EMBEDDINGS gcs_folder: gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2 + score_threshold: 0.5 diff --git a/nl_server/config.py b/nl_server/config.py index d07462d111..402dfc85b5 100644 --- a/nl_server/config.py +++ b/nl_server/config.py @@ -23,6 +23,8 @@ import yaml +from shared.lib import constants + # Index constants. Passed in `url=` CUSTOM_DC_INDEX: str = 'custom_ft' DEFAULT_INDEX_TYPE: str = 'medium_ft' @@ -58,6 +60,7 @@ class ModelUsage(str, Enum): @dataclass class ModelConfig(ABC): type: str + score_threshold: float usage: str @@ -145,8 +148,11 @@ def parse_v1(embeddings_map: Dict[str, any], models = {} for model_name, model_info in embeddings_map.get('models', {}).items(): model_type = model_info['type'] + score_threshold = model_info.get('score_threshold', + constants.SV_SCORE_DEFAULT_THRESHOLD) if model_type == ModelType.LOCAL: models[model_name] = LocalModelConfig(type=model_type, + score_threshold=score_threshold, usage=model_info['usage'], gcs_folder=model_info['gcs_folder']) elif model_type == ModelType.VERTEXAI: @@ -156,6 +162,7 @@ def parse_v1(embeddings_map: Dict[str, any], continue models[model_name] = VertexAIModelConfig( type=model_type, + score_threshold=score_threshold, usage=model_info['usage'], project_id=vertex_ai_model_info[model_name]['project_id'], prediction_endpoint_id=vertex_ai_model_info[model_name] diff --git a/nl_server/embeddings.py b/nl_server/embeddings.py index b94f03ef61..81a1aab72f 100644 --- a/nl_server/embeddings.py +++ b/nl_server/embeddings.py @@ -42,7 +42,8 @@ class EmbeddingsMatch: # class EmbeddingsModel(ABC): - def __init__(self, returns_tensor=False): + def __init__(self, score_threshold: float, returns_tensor: bool = False): + self.score_threshold = score_threshold self.returns_tensor = returns_tensor @abstractmethod diff --git a/nl_server/model/sentence_transformer.py b/nl_server/model/sentence_transformer.py index c73ce84f89..16d39359bd 100644 --- a/nl_server/model/sentence_transformer.py +++ b/nl_server/model/sentence_transformer.py @@ -28,7 +28,7 @@ class LocalSentenceTransformerModel(embeddings.EmbeddingsModel): def __init__(self, model_info: LocalModelConfig): - super().__init__(returns_tensor=True) + super().__init__(model_info.score_threshold, returns_tensor=True) # Download model from gcs if there is a gcs folder specified model_path = '' diff --git a/nl_server/model/vertexai.py b/nl_server/model/vertexai.py index 44e50ee8b2..6bc0df2e64 100644 --- a/nl_server/model/vertexai.py +++ b/nl_server/model/vertexai.py @@ -24,7 +24,7 @@ class VertexAIModel(embeddings.EmbeddingsModel): def __init__(self, model_info: VertexAIModelConfig): - super().__init__() + super().__init__(model_info.score_threshold) aiplatform.init(project=model_info.project_id, location=model_info.location) self.prediction_client = aiplatform.Endpoint( diff --git a/nl_server/routes.py b/nl_server/routes.py index e686f5c3b5..75454bb356 100644 --- a/nl_server/routes.py +++ b/nl_server/routes.py @@ -24,6 +24,7 @@ from nl_server import loader from nl_server import search from nl_server.embeddings import Embeddings +from shared.lib import constants from shared.lib.custom_dc_util import is_custom_dc from shared.lib.detected_variables import var_candidates_to_dict from shared.lib.detected_variables import VarCandidates @@ -70,7 +71,10 @@ def search_vars(): json_result = { q: var_candidates_to_dict(result) for q, result in results.items() } - return json.dumps(json_result) + return json.dumps({ + 'queryResults': json_result, + 'scoreThreshold': _get_threshold(nl_embeddings) + }) @bp.route('/api/detect_verbs/', methods=['GET']) @@ -112,3 +116,11 @@ def _get_indexes(idx: str) -> List[Embeddings]: nl_embeddings.append(emb) return nl_embeddings + + +# NOTE: Custom DC embeddings addition needs to ensures that the +# base vs. custom models do not use different thresholds +def _get_threshold(embeddings: List[Embeddings]) -> float: + if embeddings: + return embeddings[0].model.score_threshold + return constants.SV_SCORE_DEFAULT_THRESHOLD diff --git a/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json b/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json index 01942671a7..83c4ac197c 100644 --- a/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json +++ b/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json @@ -10,18 +10,18 @@ "query_with_places_removed": "what is the phylum of", "sv_matching": { "CosineScore": [ - 0.35510891675949097, - 0.31262922286987305, - 0.2790031135082245, - 0.27285584807395935, + 0.3551090359687805, + 0.3126291334629059, + 0.2790032923221588, + 0.2728559970855713, 0.2712491452693939, - 0.2656203806400299, - 0.2628048360347748, - 0.25592708587646484, - 0.2552153766155243, - 0.2551816999912262, - 0.25338709354400635, - 0.252902626991272 + 0.26562047004699707, + 0.2628049850463867, + 0.25592702627182007, + 0.25521552562713623, + 0.2551817297935486, + 0.2533870041370392, + 0.2529027760028839 ], "MultiSV": {}, "Query": "what is the phylum of", @@ -42,25 +42,25 @@ }, "props_matching": { "CosineScore": [ - 1.0000001192092896, - 0.47528398036956787, - 0.36154165863990784, - 0.34200987219810486, - 0.329330712556839, - 0.3184516131877899, - 0.3146699070930481, + 1.0, + 0.4752839207649231, + 0.3615417182445526, + 0.342009961605072, + 0.32933083176612854, + 0.31845176219940186, + 0.3146698772907257, 0.3083952069282532, - 0.3079405426979065, - 0.3046301007270813, - 0.2827085852622986, - 0.281875342130661, - 0.2808275818824768, - 0.28045281767845154, - 0.27429816126823425, - 0.27150505781173706, - 0.27071818709373474, - 0.2695465087890625, - 0.25990065932273865 + 0.30794063210487366, + 0.3046300709247589, + 0.28270867466926575, + 0.28187552094459534, + 0.2808277904987335, + 0.2804529666900635, + 0.2742983400821686, + 0.27150508761405945, + 0.2707182466983795, + 0.26954683661460876, + 0.2599007785320282 ], "PROP": [ "phylum", diff --git a/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json b/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json index e9e7bedf1d..68e03743cd 100644 --- a/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json +++ b/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json @@ -12,9 +12,9 @@ "query_with_places_removed": "what types of genes are and", "sv_matching": { "CosineScore": [ - 0.5237792134284973, + 0.5237789154052734, 0.4192213714122772, - 0.4010191857814789 + 0.40101927518844604 ], "MultiSV": {}, "Query": "what types of genes are and", @@ -27,27 +27,27 @@ "props_matching": { "CosineScore": [ 0.9086108803749084, - 0.7445294260978699, - 0.7330226302146912, - 0.7175889015197754, - 0.6834691762924194, - 0.6590197086334229, - 0.6340402364730835, - 0.5988123416900635, - 0.5958786010742188, - 0.5850145816802979, - 0.5810792446136475, - 0.5432420969009399, - 0.5399730801582336, - 0.5320467352867126, + 0.7445293068885803, + 0.7330226898193359, + 0.7175890207290649, + 0.6834694147109985, + 0.6590197682380676, + 0.6340397596359253, + 0.5988120436668396, + 0.5958784818649292, + 0.5850148797035217, + 0.581078827381134, + 0.5432419776916504, + 0.5399730205535889, + 0.5320466756820679, 0.5309585928916931, - 0.5142703056335449, + 0.5142701864242554, 0.5125278234481812, - 0.46105992794036865, + 0.4610598683357239, 0.4441080093383789, - 0.39822936058044434, - 0.3944428861141205, - 0.3922898471355438 + 0.3982292115688324, + 0.3944430351257324, + 0.3922899067401886 ], "PROP": [ "typeOfGene", diff --git a/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json index ae3ddedea1..9753904073 100644 --- a/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json @@ -9,19 +9,19 @@ "sv_matching": { "CosineScore": [ 0.9213768243789673, - 0.8895533680915833, - 0.839394211769104, - 0.8070412874221802, - 0.8066006302833557, + 0.8895530104637146, + 0.8393946290016174, + 0.807041347026825, + 0.8066001534461975, 0.8025591373443604, - 0.7949635982513428, - 0.7862057685852051, - 0.7849380373954773, - 0.782071590423584, + 0.7949637174606323, + 0.7862058877944946, + 0.7849376797676086, + 0.7820712327957153, 0.7803113460540771, - 0.778078019618988, - 0.7691034078598022, - 0.7682781219482422 + 0.7780777812004089, + 0.7691033482551575, + 0.7682780027389526 ], "MultiSV": { "Candidates": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.0 + 1.000000238418579 ], "QueryPart": "female population", "SV": [ @@ -55,7 +55,7 @@ "Parts": [ { "CosineScore": [ - 0.8629987239837646 + 0.8629987835884094 ], "QueryPart": "male", "SV": [ @@ -64,7 +64,7 @@ }, { "CosineScore": [ - 0.975785493850708 + 0.9757855534553528 ], "QueryPart": "population female population", "SV": [ @@ -79,7 +79,7 @@ "Parts": [ { "CosineScore": [ - 0.9318187236785889 + 0.9318190217018127 ], "QueryPart": "male population female", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json index 5afd2c29c9..9740ff917d 100644 --- a/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json @@ -8,20 +8,20 @@ "query_with_places_removed": "compare obesity vs poverty", "sv_matching": { "CosineScore": [ - 0.8119863867759705, - 0.7225801944732666, - 0.7164520025253296, - 0.6980432271957397, - 0.6908258199691772, - 0.685155987739563, - 0.6847795248031616, + 0.8119862079620361, + 0.7225804924964905, + 0.71645188331604, + 0.6980435252189636, + 0.6908259987831116, + 0.6851561665534973, + 0.6847792267799377, 0.6683323383331299, - 0.665703535079956, - 0.6602827310562134, + 0.6657034158706665, + 0.6602826118469238, 0.6422475576400757, - 0.634555459022522, - 0.6318431496620178, - 0.6279779076576233 + 0.6345550417900085, + 0.6318432092666626, + 0.627977728843689 ], "MultiSV": { "Candidates": [ @@ -31,7 +31,7 @@ "Parts": [ { "CosineScore": [ - 0.906023383140564 + 0.9060240983963013 ], "QueryPart": "obesity", "SV": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.0 + 1.0000003576278687 ], "QueryPart": "poverty", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json index 2c1880b78d..e29b0e8453 100644 --- a/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json @@ -8,20 +8,20 @@ "query_with_places_removed": "how are factors like obesity , blood pressure and asthma impacted by climate change", "sv_matching": { "CosineScore": [ - 0.582633376121521, - 0.5660893321037292, - 0.55907142162323, - 0.5521887540817261, - 0.5492846965789795, - 0.5472482442855835, - 0.523527979850769, - 0.5221829414367676, - 0.5152206420898438, - 0.5129308700561523, - 0.5124291181564331, + 0.5826337337493896, + 0.5660892724990845, + 0.5590713620185852, + 0.5521885752677917, + 0.5492845177650452, + 0.547248363494873, + 0.5235278606414795, + 0.5221830010414124, + 0.515220582485199, + 0.5129307508468628, + 0.5124291777610779, 0.5115020871162415, - 0.5106164216995239, - 0.5048959851264954 + 0.5106161236763, + 0.504896342754364 ], "MultiSV": { "Candidates": [ @@ -31,7 +31,7 @@ "Parts": [ { "CosineScore": [ - 0.7528940439224243 + 0.7528942823410034 ], "QueryPart": "factors like obesity blood pressure asthma impacted", "SV": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.0000001192092896 + 1.0000003576278687 ], "QueryPart": "climate change", "SV": [ @@ -55,8 +55,8 @@ "Parts": [ { "CosineScore": [ - 0.7753188014030457, - 0.7271100282669067 + 0.7753192186355591, + 0.7271102070808411 ], "QueryPart": "factors like obesity blood pressure asthma", "SV": [ @@ -81,8 +81,8 @@ "Parts": [ { "CosineScore": [ - 0.7908685207366943, - 0.7453003525733948 + 0.7908685803413391, + 0.7452999949455261 ], "QueryPart": "factors like obesity", "SV": [ @@ -92,7 +92,7 @@ }, { "CosineScore": [ - 1.0000004768371582 + 1.0 ], "QueryPart": "blood pressure", "SV": [ @@ -101,8 +101,8 @@ }, { "CosineScore": [ - 0.6855659484863281, - 0.6576032042503357 + 0.6855661273002625, + 0.6576030850410461 ], "QueryPart": "asthma impacted climate change", "SV": [ @@ -118,8 +118,8 @@ "Parts": [ { "CosineScore": [ - 0.7555330991744995, - 0.7211811542510986 + 0.7555328607559204, + 0.721181333065033 ], "QueryPart": "factors like obesity blood pressure", "SV": [ @@ -129,8 +129,8 @@ }, { "CosineScore": [ - 0.6855659484863281, - 0.6576032042503357 + 0.6855661273002625, + 0.6576030850410461 ], "QueryPart": "asthma impacted climate change", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json index 8dce6df293..b547d65b4a 100644 --- a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json @@ -10,14 +10,14 @@ "CosineScore": [ 0.8903406858444214, 0.8845490217208862, - 0.8456564545631409, - 0.8409274816513062, - 0.8346197605133057, - 0.830601692199707, - 0.830077052116394, - 0.829837441444397, - 0.825484573841095, - 0.825312614440918 + 0.845656156539917, + 0.8409276008605957, + 0.8346197009086609, + 0.8306021094322205, + 0.8300771713256836, + 0.8298372626304626, + 0.8254846930503845, + 0.8253124356269836 ], "MultiSV": { "Candidates": [ @@ -27,17 +27,17 @@ "Parts": [ { "CosineScore": [ - 0.8638870120048523, - 0.861319363117218, - 0.8523017168045044, - 0.8326529860496521, - 0.8307947516441345, - 0.8306547999382019, - 0.8281034827232361, - 0.8209193348884583, - 0.8201779127120972, - 0.8199417591094971, - 0.8179653882980347 + 0.8638868927955627, + 0.8613189458847046, + 0.852301836013794, + 0.8326531052589417, + 0.8307946920394897, + 0.8306549787521362, + 0.8281030654907227, + 0.8209190368652344, + 0.8201780319213867, + 0.8199412226676941, + 0.817965567111969 ], "QueryPart": "number poor hispanic", "SV": [ @@ -56,7 +56,7 @@ }, { "CosineScore": [ - 0.9458004236221313 + 0.9458003044128418 ], "QueryPart": "women phd", "SV": [ @@ -72,7 +72,7 @@ { "CosineScore": [ 0.9476636052131653, - 0.9369950890541077 + 0.9369949698448181 ], "QueryPart": "number poor hispanic women", "SV": [ @@ -82,7 +82,7 @@ }, { "CosineScore": [ - 0.8309072256088257 + 0.8309073448181152 ], "QueryPart": "phd", "SV": [ @@ -97,10 +97,10 @@ "Parts": [ { "CosineScore": [ - 0.656958281993866, - 0.6552729606628418, - 0.6206241250038147, - 0.6172623038291931, + 0.6569583415985107, + 0.6552730798721313, + 0.6206246614456177, + 0.6172628402709961, 0.6135541200637817 ], "QueryPart": "number poor", @@ -114,9 +114,9 @@ }, { "CosineScore": [ - 0.9240199327468872, - 0.9144760966300964, - 0.8951905965805054 + 0.9240201711654663, + 0.914476215839386, + 0.8951904773712158 ], "QueryPart": "hispanic women phd", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json index ce28732a1b..3db5536cc7 100644 --- a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json @@ -9,15 +9,15 @@ "sv_matching": { "CosineScore": [ 0.8618602752685547, - 0.8366554975509644, - 0.820466160774231, - 0.7946640849113464, + 0.8366554379463196, + 0.8204663395881653, + 0.7946637272834778, 0.7720614671707153, - 0.7232214212417603, - 0.6951402425765991, - 0.6518923044204712, - 0.6400114297866821, - 0.6347748041152954 + 0.7232210636138916, + 0.6951401829719543, + 0.6518917083740234, + 0.6400111317634583, + 0.6347747445106506 ], "MultiSV": { "Candidates": [ @@ -27,7 +27,7 @@ "Parts": [ { "CosineScore": [ - 0.8647744655609131 + 0.8647744059562683 ], "QueryPart": "show climate change", "SV": [ @@ -36,7 +36,7 @@ }, { "CosineScore": [ - 1.000000238418579 + 0.9999999403953552 ], "QueryPart": "drought", "SV": [ @@ -51,7 +51,7 @@ "Parts": [ { "CosineScore": [ - 0.7687957882881165 + 0.7687962055206299 ], "QueryPart": "show climate", "SV": [ @@ -60,8 +60,8 @@ }, { "CosineScore": [ - 0.9125533103942871, - 0.8689355850219727 + 0.9125531315803528, + 0.8689354658126831 ], "QueryPart": "change drought", "SV": [ @@ -77,7 +77,7 @@ "Parts": [ { "CosineScore": [ - 0.5150814056396484 + 0.5150812864303589 ], "QueryPart": "show", "SV": [ @@ -86,9 +86,9 @@ }, { "CosineScore": [ - 0.9151014089584351, - 0.8943068981170654, - 0.8703451156616211 + 0.9151012301445007, + 0.8943073749542236, + 0.8703457117080688 ], "QueryPart": "climate change drought", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_reranking/debug_info.json b/server/integration_tests/test_data/detection_api_reranking/debug_info.json index 6e120efc57..ab4f1e4e8f 100644 --- a/server/integration_tests/test_data/detection_api_reranking/debug_info.json +++ b/server/integration_tests/test_data/detection_api_reranking/debug_info.json @@ -10,20 +10,20 @@ "query_with_places_removed": "population that is rich in", "sv_matching": { "CosineScore": [ - 0.730574369430542, - 0.7251524925231934, - 0.7115401029586792, - 0.7670482397079468, - 0.7392961978912354, - 0.8287838697433472, - 0.7240197658538818, - 0.7594513893127441, - 0.7549045085906982, - 0.7497623562812805, - 0.7769770622253418, - 0.7229084372520447, - 0.7306228876113892, - 0.7177798748016357, + 0.7305744290351868, + 0.725152313709259, + 0.711540162563324, + 0.7670480608940125, + 0.7392959594726562, + 0.8287845253944397, + 0.7240196466445923, + 0.7594515085220337, + 0.7549043297767639, + 0.7497627139091492, + 0.7769769430160522, + 0.722908616065979, + 0.7306227087974548, + 0.717779815196991, 0.7594659328460693 ], "MultiSV": { @@ -34,7 +34,7 @@ "Parts": [ { "CosineScore": [ - 0.9012580513954163 + 0.9012579917907715 ], "QueryPart": "population", "SV": [ @@ -43,7 +43,7 @@ }, { "CosineScore": [ - 0.8562444448471069 + 0.8562442064285278 ], "QueryPart": "rich", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json b/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json index 009fa25ce0..2c9118336c 100644 --- a/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json +++ b/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json @@ -26,14 +26,6 @@ "dc/1fw0t5m6459gb", "dc/62gn48xpbqew9", "dc/nvrxn11yxlen2", - "dc/hbkh95kc7pkb6", - "dc/j7lkt2ww5qsn5", - "dc/2hhr4qp4b4r0b", - "dc/4xklqxfc27w1f", - "dc/slp5hywj7b9c1", - "dc/kt900ezddrf79", - "dc/n2vhkpw0slkv5", - "dc/bwr1l8y9we9k7", - "dc/dj7khl7q78412" + "dc/hbkh95kc7pkb6" ] } \ No newline at end of file diff --git a/server/lib/nl/common/commentary.py b/server/lib/nl/common/commentary.py index 21c3cde060..e739dd03b7 100644 --- a/server/lib/nl/common/commentary.py +++ b/server/lib/nl/common/commentary.py @@ -18,17 +18,15 @@ from server.lib.nl.common import constants from server.lib.nl.common.utterance import FulfillmentResult from server.lib.nl.common.utterance import Utterance +from server.lib.nl.detection.utils import compute_final_threshold from server.lib.nl.detection.utils import get_top_sv_score from server.lib.nl.explore import params -from shared.lib.constants import SV_SCORE_HIGH_CONFIDENCE_THRESHOLD +from shared.lib.constants import SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP # # List of user messages! # -# If the score is below this, then we report low confidence -# (we reuse the threshold we use for determining something is "high confidence") -LOW_CONFIDENCE_SCORE_REPORT_THRESHOLD = SV_SCORE_HIGH_CONFIDENCE_THRESHOLD LOW_CONFIDENCE_SCORE_MESSAGE = \ 'Low confidence in understanding your query. Displaying the closest results.' # Message when there are missing places when showing comparison charts @@ -161,11 +159,18 @@ def user_message(uttr: Utterance) -> UserMessage: # NOTE: Showing multiple messages can be confusing. So if the SV score is low # prefer showing that, since we say our confidence is low... + # If the score is below this, then we report low confidence + # (we reuse the threshold bump we use for determining something + # is "high confidence") + low_confidence_score_report_threshold = compute_final_threshold( + uttr.detection.svs_detected.model_threshold, + SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP) + if (uttr.rankedCharts and (uttr.sv_source == FulfillmentResult.CURRENT_QUERY or uttr.sv_source == FulfillmentResult.PARTIAL_PAST_QUERY) and get_top_sv_score(uttr.detection, uttr.rankedCharts[0]) - < LOW_CONFIDENCE_SCORE_REPORT_THRESHOLD): + < low_confidence_score_report_threshold): # We're showing charts for SVs in the current user query and the # top-score is below the threshold, so report message. msg_list.append(LOW_CONFIDENCE_SCORE_MESSAGE) diff --git a/server/lib/nl/detection/detector.py b/server/lib/nl/detection/detector.py index e33da427f9..d4e2dea48d 100644 --- a/server/lib/nl/detection/detector.py +++ b/server/lib/nl/detection/detector.py @@ -29,11 +29,11 @@ from server.lib.nl.detection import types from server.lib.nl.detection.place_utils import get_similar from server.lib.nl.detection.types import ActualDetectorType -from server.lib.nl.detection.types import LlmApiType from server.lib.nl.detection.types import PlaceDetection from server.lib.nl.detection.types import RequestedDetectorType from server.lib.nl.detection.utils import empty_var_candidates from server.lib.nl.detection.utils import get_multi_sv +from shared.lib import constants import shared.lib.detected_variables as dutils _LLM_API_DETECTORS = [ @@ -220,23 +220,32 @@ def construct_for_explore(entities: List[str], vars: List[str], child_type: str, entities_found=[], query_entities_mentioned=[]) add_child_and_peer_places(places, child_type, counters, place_detection) + threshold = constants.SV_SCORE_DEFAULT_THRESHOLD if not cmp_entities and cmp_vars: # Multi SV case. + # Just matters that score > threshold here. + score = threshold + 0.1 sv_detection = types.SVDetection(query='', single_sv=dutils.VarCandidates( svs=vars, - scores=[0.51] * len(vars), + scores=[score] * len(vars), sv2sentences={}), prop=empty_var_candidates(), - multi_sv=get_multi_sv(vars, cmp_vars, 1.0)) + multi_sv=get_multi_sv(vars, cmp_vars, 1.0), + sv_threshold=threshold, + model_threshold=threshold) else: + # Thresholds don't matter here since the score is 1.0. + score = 1.0 sv_detection = types.SVDetection(query='', single_sv=dutils.VarCandidates( svs=vars, - scores=[1.0] * len(vars), + scores=[score] * len(vars), sv2sentences={}), prop=empty_var_candidates(), - multi_sv=None) + multi_sv=None, + sv_threshold=threshold, + model_threshold=threshold) return types.Detection(original_query=query, cleaned_query=query, places_detected=place_detection, diff --git a/server/lib/nl/detection/heuristic_detector.py b/server/lib/nl/detection/heuristic_detector.py index 4a33c0399e..10edbad942 100644 --- a/server/lib/nl/detection/heuristic_detector.py +++ b/server/lib/nl/detection/heuristic_detector.py @@ -80,14 +80,14 @@ def detect(orig_query: str, attributes=SimpleClassificationAttributes())) # Step 4: Identify the SV matched based on the query. - sv_threshold = params.sv_threshold(mode) + sv_threshold_bump = params.sv_threshold_bump(mode) sv_detection_query = dutils.remove_date_from_query(query, classifications) skip_topics = mode == params.QueryMode.TOOLFORMER sv_detection_result = dutils.empty_var_detection_result() try: sv_detection_result = variable.detect_vars( sv_detection_query, index_type, counters, - query_detection_debug_logs["query_transformations"], sv_threshold, + query_detection_debug_logs["query_transformations"], sv_threshold_bump, rerank_fn, skip_topics) except ValueError as e: counters.err('detect_vars_value_error', { @@ -96,8 +96,8 @@ def detect(orig_query: str, }) # Set the SVDetection. sv_detection = dutils.create_sv_detection(sv_detection_query, - sv_detection_result, sv_threshold, - allow_triples) + sv_detection_result, + sv_threshold_bump, allow_triples) return Detection(original_query=orig_query, cleaned_query=cleaned_query, diff --git a/server/lib/nl/detection/llm_detector.py b/server/lib/nl/detection/llm_detector.py index 299fb2c9d7..788f57df2a 100644 --- a/server/lib/nl/detection/llm_detector.py +++ b/server/lib/nl/detection/llm_detector.py @@ -164,6 +164,7 @@ def detect(query: str, skip_topics = mode == params.QueryMode.TOOLFORMER for sv in sv_list: try: + # TODO: Consider if we should apply threshold bump var_detection_results.append( variable.detect_vars(sv, index_type, diff --git a/server/lib/nl/detection/types.py b/server/lib/nl/detection/types.py index 318fb2c4c7..2187a0109c 100644 --- a/server/lib/nl/detection/types.py +++ b/server/lib/nl/detection/types.py @@ -21,7 +21,6 @@ from typing import Dict, List, Optional from shared.lib import detected_variables as dvars -from shared.lib.constants import SV_SCORE_DEFAULT_THRESHOLD @dataclass @@ -74,8 +73,12 @@ class SVDetection: prop: dvars.VarCandidates # Multi SV detection. multi_sv: dvars.MultiVarCandidates - # Input SV Threshold - sv_threshold: float = SV_SCORE_DEFAULT_THRESHOLD + # SV Threshold + sv_threshold: float + # The original model threshold. This will be + # less than `sv_threshold` only when there is + # a threshold bump (from special mode). + model_threshold: float class RankingType(IntEnum): diff --git a/server/lib/nl/detection/utils.py b/server/lib/nl/detection/utils.py index f1e3348ebc..14e184f7c4 100644 --- a/server/lib/nl/detection/utils.py +++ b/server/lib/nl/detection/utils.py @@ -131,10 +131,11 @@ def get_top_sv_score(detection: Detection, cspec: ChartSpec) -> float: return 0 -def empty_var_detection_result(): +def empty_var_detection_result() -> dvars.VarDetectionResult: return dvars.VarDetectionResult( single_var=empty_var_candidates(), - multi_var=dvars.MultiVarCandidates(candidates=[])) + multi_var=dvars.MultiVarCandidates(candidates=[]), + model_threshold=shared_constants.SV_SCORE_DEFAULT_THRESHOLD) def empty_var_candidates(): @@ -180,19 +181,26 @@ def _get_sv_and_prop_candidates( return sv_candidates, prop_candidates -def create_sv_detection( - query: str, - var_detection_result: dvars.VarDetectionResult, - sv_threshold: float = shared_constants.SV_SCORE_DEFAULT_THRESHOLD, - allow_triples: bool = False) -> SVDetection: +def compute_final_threshold(model_threshold: float, + threshold_bump: float) -> float: + return model_threshold + abs((1 - model_threshold) * threshold_bump) + + +def create_sv_detection(query: str, + var_detection_result: dvars.VarDetectionResult, + sv_threshold_bump: float = 0, + allow_triples: bool = False) -> SVDetection: sv_candidates, prop_candidates = _get_sv_and_prop_candidates( var_detection_result, allow_triples) + sv_threshold = compute_final_threshold(var_detection_result.model_threshold, + sv_threshold_bump) return SVDetection(query=query, single_sv=sv_candidates, multi_sv=var_detection_result.multi_var, prop=prop_candidates, - sv_threshold=sv_threshold) + sv_threshold=sv_threshold, + model_threshold=var_detection_result.model_threshold) def empty_place_detection() -> PlaceDetection: diff --git a/server/lib/nl/detection/variable.py b/server/lib/nl/detection/variable.py index 2641048e5e..29ed23a681 100644 --- a/server/lib/nl/detection/variable.py +++ b/server/lib/nl/detection/variable.py @@ -21,6 +21,7 @@ import server.lib.nl.common.counters as ctr from server.lib.nl.detection import query_util from server.lib.nl.detection import rerank +import server.lib.nl.detection.utils as dutils from server.services import datacommons as dc from shared.lib import constants import shared.lib.detected_variables as vars @@ -50,7 +51,7 @@ def detect_vars(orig_query: str, index_type: str, counters: ctr.Counters, debug_logs: Dict, - threshold: float = constants.SV_SCORE_DEFAULT_THRESHOLD, + threshold_bump: float = 0, rerank_fn: rerank.RerankCallable = None, skip_topics: bool = False) -> vars.VarDetectionResult: # @@ -63,6 +64,9 @@ def detect_vars(orig_query: str, # plurals and any other query attribution/classification trigger words. query_monovar = shared_utils.remove_stop_words(orig_query, query_util.ALL_STOP_WORDS) + if not query_monovar.strip(): + # Empty user query! Return empty results + return dutils.empty_var_detection_result() all_queries = [query_monovar] # Try to detect multiple SVs. Use the original query so that @@ -75,17 +79,21 @@ def detect_vars(orig_query: str, # 2. Lookup embeddings with both single-var and multi-var queries. # # Make API call to the NL models/embeddings server. - query2results = dc.nl_search_vars(all_queries, index_type, skip_topics) + resp = dc.nl_search_vars(all_queries, index_type, skip_topics) query2results = { - q: vars.dict_to_var_candidates(r) for q, r in query2results.items() + q: vars.dict_to_var_candidates(r) for q, r in resp['queryResults'].items() } + model_threshold = resp['scoreThreshold'] # # 3. Prepare result candidates. # + # If caller had an overriden threshold bump, apply that. + multi_var_threshold = dutils.compute_final_threshold(model_threshold, + threshold_bump) result_monovar = query2results[query_monovar] result_multivar = _prepare_multivar_candidates(multi_querysets, query2results, - threshold) + multi_var_threshold) # # 4. Maybe, rerank @@ -101,7 +109,8 @@ def detect_vars(orig_query: str, debug_logs["sv_detection_query_input"] = orig_query debug_logs["sv_detection_query_stop_words_removal"] = query_monovar return vars.VarDetectionResult(single_var=result_monovar, - multi_var=result_multivar) + multi_var=result_multivar, + model_threshold=model_threshold) # diff --git a/server/lib/nl/explore/params.py b/server/lib/nl/explore/params.py index 95964e2fe4..b70db14047 100644 --- a/server/lib/nl/explore/params.py +++ b/server/lib/nl/explore/params.py @@ -71,13 +71,13 @@ class Clients(str, Enum): # Get the SV score threshold for the given mode. -def sv_threshold(mode: str) -> bool: +def sv_threshold_bump(mode: str) -> bool | None: if mode == QueryMode.STRICT: - return constants.SV_SCORE_HIGH_CONFIDENCE_THRESHOLD + return constants.SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP elif mode == QueryMode.TOOLFORMER: - return constants.SV_SCORE_TOOLFORMER_THRESHOLD - else: - return constants.SV_SCORE_DEFAULT_THRESHOLD + return constants.SV_SCORE_TOOLFORMER_THRESHOLD_BUMP + # By default no bump. + return 0.0 # diff --git a/server/routes/explore/helpers.py b/server/routes/explore/helpers.py index fb11713005..bb76cb5232 100644 --- a/server/routes/explore/helpers.py +++ b/server/routes/explore/helpers.py @@ -39,7 +39,6 @@ import server.lib.nl.detection.detector as detector from server.lib.nl.detection.place import get_place_from_dcids from server.lib.nl.detection.types import Detection -from server.lib.nl.detection.types import LlmApiType from server.lib.nl.detection.types import Place from server.lib.nl.detection.types import RequestedDetectorType from server.lib.nl.detection.utils import create_utterance diff --git a/server/tests/lib/nl/detection/llm_detector_test.py b/server/tests/lib/nl/detection/llm_detector_test.py index 2f96b290f8..82fbfa8fa9 100644 --- a/server/tests/lib/nl/detection/llm_detector_test.py +++ b/server/tests/lib/nl/detection/llm_detector_test.py @@ -85,7 +85,7 @@ class TestMergeSV(unittest.TestCase): ]) def test_main(self, sv, sv_scores, want): self.maxDiff = None - inputs = [dvars.dict_to_var_detection_result(i) for i in sv_scores] + inputs = [dvars.test_dict_to_var_detection_result(i) for i in sv_scores] got = llm_detector._merge_sv_dicts(sv, inputs) self.assertEqual(dvars.var_detection_result_to_dict(got), want) diff --git a/server/tests/lib/nl/detection/llm_fallback_test.py b/server/tests/lib/nl/detection/llm_fallback_test.py index f4aca2b2e0..5ed9504448 100644 --- a/server/tests/lib/nl/detection/llm_fallback_test.py +++ b/server/tests/lib/nl/detection/llm_fallback_test.py @@ -46,7 +46,9 @@ def _sv(v=[], delim=False, above_thres=False): return SVDetection(query='', single_sv=dvars.VarCandidates(v, [1.0], {}), multi_sv=None, - prop=empty_var_candidates()) + prop=empty_var_candidates(), + sv_threshold=0.5, + model_threshold=0.5) if len(v) == 2: if above_thres: scores = [0.9] @@ -64,11 +66,15 @@ def _sv(v=[], delim=False, above_thres=False): aggregate_score=0.7, delim_based=delim) ]), - prop=empty_var_candidates()) + prop=empty_var_candidates(), + sv_threshold=0.5, + model_threshold=0.5) return SVDetection(query='', single_sv=empty_var_candidates(), prop=empty_var_candidates(), - multi_sv=None) + multi_sv=None, + sv_threshold=0.5, + model_threshold=0.5) def _nlcl(t, pt=None): diff --git a/server/tests/lib/nl/fulfiller_test.py b/server/tests/lib/nl/fulfiller_test.py index 9a0630758f..437037da8f 100644 --- a/server/tests/lib/nl/fulfiller_test.py +++ b/server/tests/lib/nl/fulfiller_test.py @@ -570,7 +570,9 @@ def _detection(place: str, svs=svs, scores=scores, sv2sentences={}), - multi_sv=None)) + multi_sv=None, + sv_threshold=0.5, + model_threshold=0.5)) if query_type == ClassificationType.COMPARISON: # Set comparison classifier detection.classifications = [ diff --git a/shared/lib/constants.py b/shared/lib/constants.py index 4d3887b746..33d4a66924 100644 --- a/shared/lib/constants.py +++ b/shared/lib/constants.py @@ -377,18 +377,29 @@ # are considered as a match. SV_SCORE_DEFAULT_THRESHOLD = 0.5 -# The default Cosine score threshold beyond which Stat Vars -# are considered a high confidence match. -SV_SCORE_HIGH_CONFIDENCE_THRESHOLD = 0.7 - -# The default Cosine score threshold beyond which Stat Vars -# are considered a match in toolformer mode. -SV_SCORE_TOOLFORMER_THRESHOLD = 0.8 +# +# The Cosine score "bump" is the increase over default model-threshold +# that is applied as follows: +# +# model-threshold + (1 - model-threshold) * bump +# +# That is, we increase the threshold by this fraction of the +# (1 - model-threshold) window that the scores are valid in. +# +# Bump value for high-confidence threshold. +# bump of 0.4 => a threshold of 0.7 if default is 0.5 +# => a threshold of 0.82 if default is 0.7 +SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP = 0.4 +# Bump value for when running in mode=toolformer. +# bump of 0.6 => a threshold of 0.8 if default is 0.5 +# => a threshold of 0.88 if default is 0.7 +SV_SCORE_TOOLFORMER_THRESHOLD_BUMP = 0.6 # A cosine score differential we use to indicate if scores # that differ by up to this amount are "near" SVs. # In Multi-SV detection, if the difference between successive scores exceeds # this threshold, then SVs at the lower score and below are ignored. +# TODO: Maybe keep an eye on this for new model. MULTI_SV_SCORE_DIFFERENTIAL = 0.05 # English language code. diff --git a/shared/lib/detected_variables.py b/shared/lib/detected_variables.py index b36a7f756c..6a86c87008 100644 --- a/shared/lib/detected_variables.py +++ b/shared/lib/detected_variables.py @@ -16,6 +16,8 @@ from dataclasses import dataclass from typing import Dict, List +from shared.lib import constants + @dataclass class SentenceScore: @@ -79,6 +81,8 @@ class MultiVarCandidates: class VarDetectionResult: single_var: VarCandidates multi_var: MultiVarCandidates + # This is the default score threshold prescribed by the model. + model_threshold: float def dict_to_var_candidates(nlresp: Dict) -> VarCandidates: @@ -109,10 +113,12 @@ def var_detection_result_to_dict(res: VarDetectionResult) -> Dict: return result -def dict_to_var_detection_result(input: Dict) -> VarDetectionResult: - return VarDetectionResult(single_var=dict_to_var_candidates(input), - multi_var=dict_to_multivar_candidates( - input.get('MultiSV', {}))) +# Only used in test +def test_dict_to_var_detection_result(input: Dict) -> VarDetectionResult: + return VarDetectionResult( + single_var=dict_to_var_candidates(input), + multi_var=dict_to_multivar_candidates(input.get('MultiSV', {})), + model_threshold=constants.SV_SCORE_DEFAULT_THRESHOLD) def multivar_candidates_to_dict(candidates: MultiVarCandidates) -> Dict: diff --git a/tools/nl/embeddings/build_custom_dc_embeddings.py b/tools/nl/embeddings/build_custom_dc_embeddings.py index 09aae69593..9a91802e9c 100644 --- a/tools/nl/embeddings/build_custom_dc_embeddings.py +++ b/tools/nl/embeddings/build_custom_dc_embeddings.py @@ -142,6 +142,11 @@ def _build_embeddings_dataframe( def generate_embeddings_yaml(model_info: utils.ModelConfig, embeddings_csv_handler: FileHandler, embeddings_yaml_handler: FileHandler): + # + # Right now Custom DC only supports LOCAL mode. + # + assert model_info.info['type'] == 'LOCAL' + data = { "version": 1, "indexes": { @@ -152,11 +157,7 @@ def generate_embeddings_yaml(model_info: utils.ModelConfig, } }, "models": { - model_info.name: { - "type": "LOCAL", - "usage": "EMBEDDINGS", - "gcs_folder": model_info.info['gcs_folder'] - } + model_info.name: model_info.info, } } embeddings_yaml_handler.write_string(yaml.dump(data)) @@ -187,7 +188,8 @@ def main(_): model_info = utils.ModelConfig(name=FLAGS.model_version, info={ 'type': 'LOCAL', - 'gcs_folder': FLAGS.model_version + 'gcs_folder': FLAGS.model_version, + 'score_threshold': 0.5 }) else: model_info = utils.get_default_ft_model() diff --git a/tools/nl/embeddings/build_custom_dc_embeddings_test.py b/tools/nl/embeddings/build_custom_dc_embeddings_test.py index 4fd98c68ba..19efbc0a31 100644 --- a/tools/nl/embeddings/build_custom_dc_embeddings_test.py +++ b/tools/nl/embeddings/build_custom_dc_embeddings_test.py @@ -93,7 +93,8 @@ def test_generate_yaml(self): info={ 'type': 'LOCAL', 'gcs_folder': 'fooModelFolder', - 'usage': 'EMBEDDINGS' + 'usage': 'EMBEDDINGS', + 'score_threshold': 0.5, }) builder.generate_embeddings_yaml( model_info, create_file_handler(fake_embeddings_csv_path), diff --git a/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml b/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml index 37139e929c..e376b3e4f6 100644 --- a/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml +++ b/tools/nl/embeddings/testdata/custom_dc/expected/custom_embeddings.yaml @@ -6,6 +6,7 @@ indexes: models: FooModel: gcs_folder: fooModelFolder + score_threshold: 0.5 type: LOCAL usage: EMBEDDINGS version: 1 diff --git a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml index a6dcd065c0..b22b172ce4 100644 --- a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml +++ b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml @@ -26,4 +26,5 @@ models: ft_final_v20230717230459: type: LOCAL usage: EMBEDDINGS - gcs_folder: gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2 \ No newline at end of file + gcs_folder: gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2 + score_threshold: 0.5 \ No newline at end of file diff --git a/tools/nl/svindex_differ/differ.py b/tools/nl/svindex_differ/differ.py index d1b90c208d..70ea5228f3 100644 --- a/tools/nl/svindex_differ/differ.py +++ b/tools/nl/svindex_differ/differ.py @@ -33,7 +33,6 @@ from nl_server.search import search_vars from shared.lib.detected_variables import VarCandidates -_SV_THRESHOLD = 0.5 _NUM_SVS = 10 _SUB_COLOR = '#ffaaaa' _ADD_COLOR = '#aaffaa' @@ -86,12 +85,12 @@ def _get_sv_names(sv_dcids): return result -def _prune(res: VarCandidates): +def _prune(res: VarCandidates, score_threshold: float): svs = [] sv_info = {} for i, var in enumerate(res.svs): score = res.scores[i] - if i < _NUM_SVS and score >= _SV_THRESHOLD: + if i < _NUM_SVS and score >= score_threshold: svs.append(var) sv_info[var] = { 'sv': var, @@ -178,8 +177,10 @@ def run_diff(base_idx: str, test_idx: str, base_dict: dict[str, dict[str, str]], if not query or query.startswith('#') or query.startswith('//'): continue assert ';' not in query, 'Multiple query not yet supported' - base_svs, base_sv_info = _prune(search_vars([base], [query])[query]) - test_svs, test_sv_info = _prune(search_vars([test], [query])[query]) + base_svs, base_sv_info = _prune( + search_vars([base], [query])[query], base.model.score_threshold) + test_svs, test_sv_info = _prune( + search_vars([test], [query])[query], test.model.score_threshold) for sv in base_svs + test_svs: all_svs.add(sv) if base_svs != test_svs: From e6f63fecc60e2cc5b5752ed6d7a171a7b5e5684f Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Tue, 14 May 2024 10:03:16 -0700 Subject: [PATCH 15/28] Enable cron testing on dev (#4226) --- deploy/helm_charts/dc_website/values.yaml | 4 +- deploy/helm_charts/envs/autopush.yaml | 1 + deploy/helm_charts/envs/bard.yaml | 1 + deploy/helm_charts/envs/dev.yaml | 6 + gke/README.md | 6 +- gke/cron_testing_job.yaml.tpl | 2 +- gke/setup_cron_testing.sh | 2 + .../nodejs_query_differ/goldens/dev/bar.json | 68 ++ .../goldens/dev/map_rank.json | 73 ++ .../goldens/dev/scatter.json | 71 ++ .../goldens/dev/scatter_non_bard.json | 71 ++ .../goldens/dev/timeline.json | 79 ++ .../goldens/dev/timeline_all.json | 827 ++++++++++++++++++ 13 files changed, 1207 insertions(+), 4 deletions(-) create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/bar.json create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/map_rank.json create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/scatter.json create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/scatter_non_bard.json create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/timeline.json create mode 100644 tools/nl/nodejs_query_differ/goldens/dev/timeline_all.json diff --git a/deploy/helm_charts/dc_website/values.yaml b/deploy/helm_charts/dc_website/values.yaml index e37336295c..ffe2caf537 100644 --- a/deploy/helm_charts/dc_website/values.yaml +++ b/deploy/helm_charts/dc_website/values.yaml @@ -159,7 +159,7 @@ nodejs: nodePool: ############################################################################### -# Config for Periodic Testing CronJob +# Config for Cron Testing Job ############################################################################### cronTesting: enabled: false @@ -176,3 +176,5 @@ cronTesting: enableAdversarial: true # node pool to use nodePool: + # schedule to run the cron tests on + schedule: diff --git a/deploy/helm_charts/envs/autopush.yaml b/deploy/helm_charts/envs/autopush.yaml index e1d671a184..c2f9d2879d 100644 --- a/deploy/helm_charts/envs/autopush.yaml +++ b/deploy/helm_charts/envs/autopush.yaml @@ -85,3 +85,4 @@ cronTesting: enabled: true screenshotDomain: "autopush.datacommons.org" nodePool: "pool-1" + schedule: "0 */4 * * *" diff --git a/deploy/helm_charts/envs/bard.yaml b/deploy/helm_charts/envs/bard.yaml index a62ff83668..36513bdb44 100644 --- a/deploy/helm_charts/envs/bard.yaml +++ b/deploy/helm_charts/envs/bard.yaml @@ -73,3 +73,4 @@ cronTesting: enabled: true enableSanity: false enableAdversarial: false + schedule: "0 */4 * * *" diff --git a/deploy/helm_charts/envs/dev.yaml b/deploy/helm_charts/envs/dev.yaml index 0814867c48..505d530ef0 100644 --- a/deploy/helm_charts/envs/dev.yaml +++ b/deploy/helm_charts/envs/dev.yaml @@ -66,3 +66,9 @@ nl: nodejs: enabled: true replicas: 5 + +cronTesting: + enabled: true + screenshotDomain: "dev.datacommons.org" + nodePool: "default-pool" + schedule: "* * 31 2 *" diff --git a/gke/README.md b/gke/README.md index 3415e60d89..03c70643e7 100644 --- a/gke/README.md +++ b/gke/README.md @@ -130,9 +130,11 @@ gcloud config set project where `` refers to the name of the instance and `` is the region of the cluster. -## Add a periodic testing job +## Add a cron testing job -To add a cronjob to run periodic testing against a cluster, run: +Note: By default, the added cron testing job will run every 4 hours. If you want the job to run on a different schedule, update the `schedule` field in [cron_testing_job.yaml.tpl](./cron_testing_job.yaml.tpl) before setting up the job. + +To set up cron testing for a cluster, run: ```bash ./setup_cron_testing.sh -e -l diff --git a/gke/cron_testing_job.yaml.tpl b/gke/cron_testing_job.yaml.tpl index e036646f14..2f9eb88da3 100644 --- a/gke/cron_testing_job.yaml.tpl +++ b/gke/cron_testing_job.yaml.tpl @@ -20,7 +20,7 @@ metadata: namespace: website spec: # Run every 4 hours - schedule: "0 */4 * * *" + schedule: successfulJobsHistoryLimit: 100 failedJobsHistoryLimit: 100 jobTemplate: diff --git a/gke/setup_cron_testing.sh b/gke/setup_cron_testing.sh index e2f6512b98..a7f4d228b4 100755 --- a/gke/setup_cron_testing.sh +++ b/gke/setup_cron_testing.sh @@ -60,8 +60,10 @@ cp cron_testing_job.yaml.tpl cron_testing_job.yaml yq eval -i '.spec.jobTemplate.spec.template.spec.containers[0].env += [{"name": "TESTING_ENV", "value": "'"$ENV"'"}]' cron_testing_job.yaml export SERVICE_ACCOUNT_NAME=$(yq eval '.serviceAccount.name' ../deploy/helm_charts/envs/$ENV.yaml) export NODE_POOL=$(yq eval '.cronTesting.nodePool' ../deploy/helm_charts/envs/$ENV.yaml) +export SCHEDULE=$(yq eval '.cronTesting.schedule' ../deploy/helm_charts/envs/$ENV.yaml) yq eval -i '.spec.jobTemplate.spec.template.spec.serviceAccountName = env(SERVICE_ACCOUNT_NAME)' cron_testing_job.yaml yq eval -i '.spec.jobTemplate.spec.template.spec.nodeSelector."cloud.google.com/gke-nodepool" = env(NODE_POOL)' cron_testing_job.yaml +yq eval -i '.spec.schedule = strenv(SCHEDULE)' cron_testing_job.yaml # Apply config kubectl apply -f cron_testing_job.yaml diff --git a/tools/nl/nodejs_query_differ/goldens/dev/bar.json b/tools/nl/nodejs_query_differ/goldens/dev/bar.json new file mode 100644 index 0000000000..962fe79893 --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/bar.json @@ -0,0 +1,68 @@ +{ + "charts": [ + { + "data_csv": "label,Santa Clara County\r\nAccommodation/Food Industry,82881\r\nAdmin / Waste Management Service Industry,60538\r\n\"Agriculture, Forestry, Fishing, Hunting\",2960\r\nConstruction Industry,53031\r\nEducational Services Industry,81663\r\nHealth Care and Social Assistance Industry,156124\r\nManufacturing,176811\r\nFinance and Insurance Industry,20831\r\nInformation Industry,96168\r\n\"Arts, Entertainment, Recreation Industry\",20764\r\n\"Mining, Quarrying, Oil and Gas Extraction Industry\",142\r\nOther Services (except Public Admin),25214\r\nTransportation And Warehousing,20846\r\nUtilities,3527\r\nRetail Trade,72215\r\nReal Estate and Rental and Leasing,15648\r\nPublic Administration,27668\r\nWholesale Trade,28183\r\n\"Professional, Scientific, and Technical Services\",161223\r\nManagement of Companies and Enterprises Industry,13729\r\nUnclassified,959", + "placeType": "", + "places": [ + "geoId/06085" + ], + "srcs": [ + { + "name": "bls.gov", + "url": "https://www.bls.gov/qcew/" + } + ], + "legend": [ + "Accommodation/Food Industry", + "Admin / Waste Management Service Industry", + "Agriculture, Forestry, Fishing, Hunting", + "Construction Industry", + "Educational Services Industry", + "Health Care and Social Assistance Industry", + "Manufacturing", + "Finance and Insurance Industry", + "Information Industry", + "Arts, Entertainment, Recreation Industry", + "Mining, Quarrying, Oil and Gas Extraction Industry", + "Other Services (except Public Admin)", + "Transportation And Warehousing", + "Utilities", + "Retail Trade", + "Real Estate and Rental and Leasing", + "Public Administration", + "Wholesale Trade", + "Professional, Scientific, and Technical Services", + "Management of Companies and Enterprises Industry", + "Unclassified" + ], + "title": "Categories of Jobs in Santa Clara County (Jun, 2023)", + "type": "BAR", + "unit": "", + "vars": [ + "Count_Worker_NAICSAccommodationFoodServices", + "Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices", + "Count_Worker_NAICSAgricultureForestryFishingHunting", + "Count_Worker_NAICSConstruction", + "Count_Worker_NAICSEducationalServices", + "Count_Worker_NAICSHealthCareSocialAssistance", + "dc/ndg1xk1e9frc2", + "Count_Worker_NAICSFinanceInsurance", + "Count_Worker_NAICSInformation", + "Count_Worker_NAICSArtsEntertainmentRecreation", + "Count_Worker_NAICSMiningQuarryingOilGasExtraction", + "Count_Worker_NAICSOtherServices", + "dc/8p97n7l96lgg8", + "Count_Worker_NAICSUtilities", + "dc/p69tpsldf99h7", + "Count_Worker_NAICSRealEstateRentalLeasing", + "Count_Worker_NAICSPublicAdministration", + "Count_Worker_NAICSWholesaleTrade", + "Count_Worker_NAICSProfessionalScientificTechnicalServices", + "Count_Worker_NAICSManagementOfCompaniesEnterprises", + "Count_Worker_NAICSNonclassifiable" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=top%20jobs%20in%20santa%20clara%20county" + } + ] +} \ No newline at end of file diff --git a/tools/nl/nodejs_query_differ/goldens/dev/map_rank.json b/tools/nl/nodejs_query_differ/goldens/dev/map_rank.json new file mode 100644 index 0000000000..2320c638e3 --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/map_rank.json @@ -0,0 +1,73 @@ +{ + "charts": [ + { + "data_csv": "rank,place,Prevalence of Obesity\r\n1,San Bernardino County,38.1\r\n2,Imperial County,38\r\n3,Fresno County,36.8\r\n4,Kern County,36.6\r\n5,Riverside County,36.2\r\n6,Madera County,35.9\r\n7,Tulare County,35.5\r\n8,Kings County,35.1\r\n9,Stanislaus County,34.8\r\n10,Tehama County,34.2", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity in Counties of California (2021)", + "type": "TABLE", + "unit": "%", + "vars": [ + "Percent_Person_Obesity" + ], + "dcUrl": "https://datacommons.org/explore#q=counties%20in%20california%20with%20highest%20obesity", + "chartUrl": "" + }, + { + "data_csv": "label,Prevalence of Obesity\r\n2021,28.7630009388167\r\n2020,29.0011697264701\r\n2018,26.5610266256205\r\n2017,24.7490113165035\r\n2016,24.8973586521783\r\n2015,24.3597558272971\r\n2014,24.7177574137183", + "legend": [ + "Prevalence of Obesity" + ], + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity in California", + "type": "LINE", + "unit": "%", + "vars": [ + "Percent_Person_Obesity" + ], + "highlight": { + "date": "2021", + "value": 28.7630009388167 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=counties%20in%20california%20with%20highest%20obesity" + }, + { + "data_csv": "rank,place,\"Prevalence: Female, Obesity\"\r\n1,San Bernardino County,39\r\n2,Fresno County,37\r\n3,Stanislaus County,34.8\r\n4,San Joaquin County,34.8\r\n5,Riverside County,33.9\r\n6,Madera County,33.8\r\n7,Kern County,33.6\r\n8,Tulare County,33.2\r\n9,Imperial County,33\r\n10,Sacramento County,31.5", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "gis.cdc.gov", + "url": "https://gis.cdc.gov/grasp/diabetes/DiabetesAtlas.html" + } + ], + "title": "Prevalence: Female, Obesity in Counties of California (2021)", + "type": "TABLE", + "unit": "", + "vars": [ + "dc/4lvmzr1h1ylk1" + ], + "dcUrl": "https://datacommons.org/explore#q=counties%20in%20california%20with%20highest%20obesity", + "chartUrl": "" + } + ] +} \ No newline at end of file diff --git a/tools/nl/nodejs_query_differ/goldens/dev/scatter.json b/tools/nl/nodejs_query_differ/goldens/dev/scatter.json new file mode 100644 index 0000000000..b54c2c3360 --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/scatter.json @@ -0,0 +1,71 @@ +{ + "charts": [ + { + "data_csv": "placeName,placeDcid,xDate,xValue-Count_Person_BelowPovertyLevelInThePast12Months,yDate,yValue-Percent_Person_Obesity\r\n\"Alameda County, CA\",geoId/06001,2022,149843,2021,24.8\r\n\"Alpine County, CA\",geoId/06003,2022,208,2021,29.1\r\n\"Amador County, CA\",geoId/06005,2022,2945,2021,29.6\r\n\"Butte County, CA\",geoId/06007,2022,38015,2021,31\r\n\"Calaveras County, CA\",geoId/06009,2022,5915,2021,30.6\r\n\"Colusa County, CA\",geoId/06011,2022,2364,2021,33.4\r\n\"Contra Costa County, CA\",geoId/06013,2022,95255,2021,24.3\r\n\"Del Norte County, CA\",geoId/06015,2022,3585,2021,32.7\r\n\"El Dorado County, CA\",geoId/06017,2022,16364,2021,28.1\r\n\"Fresno County, CA\",geoId/06019,2022,193675,2021,36.8\r\n\"Glenn County, CA\",geoId/06021,2022,4335,2021,31.8\r\n\"Humboldt County, CA\",geoId/06023,2022,26394,2021,33.2\r\n\"Imperial County, CA\",geoId/06025,2022,36092,2021,38\r\n\"Inyo County, CA\",geoId/06027,2022,2199,2021,29.4\r\n\"Kern County, CA\",geoId/06029,2022,170013,2021,36.6\r\n\"Kings County, CA\",geoId/06031,2022,22634,2021,35.1\r\n\"Lake County, CA\",geoId/06033,2022,11065,2021,33.7\r\n\"Lassen County, CA\",geoId/06035,2022,3645,2021,32.1\r\n\"Los Angeles County, CA\",geoId/06037,2022,1343978,2021,28.5\r\n\"Madera County, CA\",geoId/06039,2022,30154,2021,35.9\r\n\"Marin County, CA\",geoId/06041,2022,17809,2021,22.9\r\n\"Mariposa County, CA\",geoId/06043,2022,2712,2021,30\r\n\"Mendocino County, CA\",geoId/06045,2022,14483,2021,31.5\r\n\"Merced County, CA\",geoId/06047,2022,51272,2021,33\r\n\"Modoc County, CA\",geoId/06049,2022,1430,2021,33.1\r\n\"Mono County, CA\",geoId/06051,2022,1478,2021,29.6\r\n\"Monterey County, CA\",geoId/06053,2022,51913,2021,27.5\r\n\"Napa County, CA\",geoId/06055,2022,10620,2021,28\r\n\"Nevada County, CA\",geoId/06057,2022,10505,2021,27.5\r\n\"Orange County, CA\",geoId/06059,2022,303810,2021,25.3\r\n\"Placer County, CA\",geoId/06061,2022,27446,2021,26.3\r\n\"Plumas County, CA\",geoId/06063,2022,2101,2021,29.5\r\n\"Riverside County, CA\",geoId/06065,2022,272432,2021,36.2\r\n\"Sacramento County, CA\",geoId/06067,2022,204388,2021,31.7\r\n\"San Benito County, CA\",geoId/06069,2022,4832,2021,31\r\n\"San Bernardino County, CA\",geoId/06071,2022,294246,2021,38.1\r\n\"San Diego County, CA\",geoId/06073,2022,338752,2021,23.9\r\n\"San Francisco County, CA\",geoId/06075,2022,87849,2021,18.7\r\n\"San Joaquin County, CA\",geoId/06077,2022,98352,2021,33.3\r\n\"San Luis Obispo County, CA\",geoId/06079,2022,33728,2021,30.5\r\n\"San Mateo County, CA\",geoId/06081,2022,48137,2021,21\r\n\"Santa Barbara County, CA\",geoId/06083,2022,57513,2021,30.1\r\n\"Santa Clara County, CA\",geoId/06085,2022,129834,2021,18.5\r\n\"Santa Cruz County, CA\",geoId/06087,2022,29302,2021,25.2\r\n\"Shasta County, CA\",geoId/06089,2022,23753,2021,30.9\r\n\"Sierra County, CA\",geoId/06091,2022,359,2021,29.8\r\n\"Siskiyou County, CA\",geoId/06093,2022,7289,2021,32.8\r\n\"Solano County, CA\",geoId/06095,2022,39705,2021,29.9\r\n\"Sonoma County, CA\",geoId/06097,2022,42925,2021,28.6\r\n\"Stanislaus County, CA\",geoId/06099,2022,75125,2021,34.8\r\n\"Sutter County, CA\",geoId/06101,2022,13065,2021,31.6\r\n\"Tehama County, CA\",geoId/06103,2022,10483,2021,34.2\r\n\"Trinity County, CA\",geoId/06105,2022,3457,2021,33\r\n\"Tulare County, CA\",geoId/06107,2022,86391,2021,35.5\r\n\"Tuolumne County, CA\",geoId/06109,2022,5887,2021,29.5\r\n\"Ventura County, CA\",geoId/06111,2022,74315,2021,27\r\n\"Yolo County, CA\",geoId/06113,2022,36521,2021,27.8\r\n\"Yuba County, CA\",geoId/06115,2022,12375,2021,33.9", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + }, + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity (2021) Vs. Population Below Poverty Line (2022) in Counties of California", + "type": "SCATTER", + "vars": [ + "Percent_Person_Obesity", + "Count_Person_BelowPovertyLevelInThePast12Months" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california" + }, + { + "data_csv": "rank,place,Prevalence of Obesity\r\n1,San Bernardino County,38.1\r\n2,Imperial County,38\r\n3,Fresno County,36.8\r\n4,Kern County,36.6\r\n5,Riverside County,36.2\r\n54,San Diego County,23.9\r\n55,Marin County,22.9\r\n56,San Mateo County,21\r\n57,San Francisco County,18.7\r\n58,Santa Clara County,18.5", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity in Counties of California (2021)", + "type": "TABLE", + "unit": "%", + "vars": [ + "Percent_Person_Obesity" + ], + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california", + "chartUrl": "" + }, + { + "data_csv": "rank,place,Population Below poverty line\r\n1,Los Angeles County,1343978\r\n2,San Diego County,338752\r\n3,Orange County,303810\r\n4,San Bernardino County,294246\r\n5,Riverside County,272432\r\n54,Plumas County,2101\r\n55,Mono County,1478\r\n56,Modoc County,1430\r\n57,Sierra County,359\r\n58,Alpine County,208", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Population Below Poverty Line in Counties of California (2022)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Person_BelowPovertyLevelInThePast12Months" + ], + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california", + "chartUrl": "" + } + ] +} \ No newline at end of file diff --git a/tools/nl/nodejs_query_differ/goldens/dev/scatter_non_bard.json b/tools/nl/nodejs_query_differ/goldens/dev/scatter_non_bard.json new file mode 100644 index 0000000000..79152b468d --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/scatter_non_bard.json @@ -0,0 +1,71 @@ +{ + "charts": [ + { + "data_csv": "placeName,placeDcid,xDate,xValue-Count_Person_BelowPovertyLevelInThePast12Months,yDate,yValue-Percent_Person_Obesity\r\n\"Alameda County, CA\",geoId/06001,2022,149843,2021,24.8\r\n\"Alpine County, CA\",geoId/06003,2022,208,2021,29.1\r\n\"Amador County, CA\",geoId/06005,2022,2945,2021,29.6\r\n\"Butte County, CA\",geoId/06007,2022,38015,2021,31\r\n\"Calaveras County, CA\",geoId/06009,2022,5915,2021,30.6\r\n\"Colusa County, CA\",geoId/06011,2022,2364,2021,33.4\r\n\"Contra Costa County, CA\",geoId/06013,2022,95255,2021,24.3\r\n\"Del Norte County, CA\",geoId/06015,2022,3585,2021,32.7\r\n\"El Dorado County, CA\",geoId/06017,2022,16364,2021,28.1\r\n\"Fresno County, CA\",geoId/06019,2022,193675,2021,36.8\r\n\"Glenn County, CA\",geoId/06021,2022,4335,2021,31.8\r\n\"Humboldt County, CA\",geoId/06023,2022,26394,2021,33.2\r\n\"Imperial County, CA\",geoId/06025,2022,36092,2021,38\r\n\"Inyo County, CA\",geoId/06027,2022,2199,2021,29.4\r\n\"Kern County, CA\",geoId/06029,2022,170013,2021,36.6\r\n\"Kings County, CA\",geoId/06031,2022,22634,2021,35.1\r\n\"Lake County, CA\",geoId/06033,2022,11065,2021,33.7\r\n\"Lassen County, CA\",geoId/06035,2022,3645,2021,32.1\r\n\"Los Angeles County, CA\",geoId/06037,2022,1343978,2021,28.5\r\n\"Madera County, CA\",geoId/06039,2022,30154,2021,35.9\r\n\"Marin County, CA\",geoId/06041,2022,17809,2021,22.9\r\n\"Mariposa County, CA\",geoId/06043,2022,2712,2021,30\r\n\"Mendocino County, CA\",geoId/06045,2022,14483,2021,31.5\r\n\"Merced County, CA\",geoId/06047,2022,51272,2021,33\r\n\"Modoc County, CA\",geoId/06049,2022,1430,2021,33.1\r\n\"Mono County, CA\",geoId/06051,2022,1478,2021,29.6\r\n\"Monterey County, CA\",geoId/06053,2022,51913,2021,27.5\r\n\"Napa County, CA\",geoId/06055,2022,10620,2021,28\r\n\"Nevada County, CA\",geoId/06057,2022,10505,2021,27.5\r\n\"Orange County, CA\",geoId/06059,2022,303810,2021,25.3\r\n\"Placer County, CA\",geoId/06061,2022,27446,2021,26.3\r\n\"Plumas County, CA\",geoId/06063,2022,2101,2021,29.5\r\n\"Riverside County, CA\",geoId/06065,2022,272432,2021,36.2\r\n\"Sacramento County, CA\",geoId/06067,2022,204388,2021,31.7\r\n\"San Benito County, CA\",geoId/06069,2022,4832,2021,31\r\n\"San Bernardino County, CA\",geoId/06071,2022,294246,2021,38.1\r\n\"San Diego County, CA\",geoId/06073,2022,338752,2021,23.9\r\n\"San Francisco County, CA\",geoId/06075,2022,87849,2021,18.7\r\n\"San Joaquin County, CA\",geoId/06077,2022,98352,2021,33.3\r\n\"San Luis Obispo County, CA\",geoId/06079,2022,33728,2021,30.5\r\n\"San Mateo County, CA\",geoId/06081,2022,48137,2021,21\r\n\"Santa Barbara County, CA\",geoId/06083,2022,57513,2021,30.1\r\n\"Santa Clara County, CA\",geoId/06085,2022,129834,2021,18.5\r\n\"Santa Cruz County, CA\",geoId/06087,2022,29302,2021,25.2\r\n\"Shasta County, CA\",geoId/06089,2022,23753,2021,30.9\r\n\"Sierra County, CA\",geoId/06091,2022,359,2021,29.8\r\n\"Siskiyou County, CA\",geoId/06093,2022,7289,2021,32.8\r\n\"Solano County, CA\",geoId/06095,2022,39705,2021,29.9\r\n\"Sonoma County, CA\",geoId/06097,2022,42925,2021,28.6\r\n\"Stanislaus County, CA\",geoId/06099,2022,75125,2021,34.8\r\n\"Sutter County, CA\",geoId/06101,2022,13065,2021,31.6\r\n\"Tehama County, CA\",geoId/06103,2022,10483,2021,34.2\r\n\"Trinity County, CA\",geoId/06105,2022,3457,2021,33\r\n\"Tulare County, CA\",geoId/06107,2022,86391,2021,35.5\r\n\"Tuolumne County, CA\",geoId/06109,2022,5887,2021,29.5\r\n\"Ventura County, CA\",geoId/06111,2022,74315,2021,27\r\n\"Yolo County, CA\",geoId/06113,2022,36521,2021,27.8\r\n\"Yuba County, CA\",geoId/06115,2022,12375,2021,33.9", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + }, + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity (2021) Vs. Population Below Poverty Line (2022) in Counties of California", + "type": "SCATTER", + "vars": [ + "Percent_Person_Obesity", + "Count_Person_BelowPovertyLevelInThePast12Months" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california" + }, + { + "data_csv": "label,variable,data\r\n\"Alameda County, CA\",Prevalence of Obesity,24.8\r\n\"Alpine County, CA\",Prevalence of Obesity,29.1\r\n\"Amador County, CA\",Prevalence of Obesity,29.6\r\n\"Butte County, CA\",Prevalence of Obesity,31\r\n\"Calaveras County, CA\",Prevalence of Obesity,30.6\r\n\"Colusa County, CA\",Prevalence of Obesity,33.4\r\n\"Contra Costa County, CA\",Prevalence of Obesity,24.3\r\n\"Del Norte County, CA\",Prevalence of Obesity,32.7\r\n\"El Dorado County, CA\",Prevalence of Obesity,28.1\r\n\"Fresno County, CA\",Prevalence of Obesity,36.8\r\n\"Glenn County, CA\",Prevalence of Obesity,31.8\r\n\"Humboldt County, CA\",Prevalence of Obesity,33.2\r\n\"Imperial County, CA\",Prevalence of Obesity,38\r\n\"Inyo County, CA\",Prevalence of Obesity,29.4\r\n\"Kern County, CA\",Prevalence of Obesity,36.6\r\n\"Kings County, CA\",Prevalence of Obesity,35.1\r\n\"Lake County, CA\",Prevalence of Obesity,33.7\r\n\"Lassen County, CA\",Prevalence of Obesity,32.1\r\n\"Los Angeles County, CA\",Prevalence of Obesity,28.5\r\n\"Madera County, CA\",Prevalence of Obesity,35.9\r\n\"Marin County, CA\",Prevalence of Obesity,22.9\r\n\"Mariposa County, CA\",Prevalence of Obesity,30\r\n\"Mendocino County, CA\",Prevalence of Obesity,31.5\r\n\"Merced County, CA\",Prevalence of Obesity,33\r\n\"Modoc County, CA\",Prevalence of Obesity,33.1\r\n\"Mono County, CA\",Prevalence of Obesity,29.6\r\n\"Monterey County, CA\",Prevalence of Obesity,27.5\r\n\"Napa County, CA\",Prevalence of Obesity,28\r\n\"Nevada County, CA\",Prevalence of Obesity,27.5\r\n\"Orange County, CA\",Prevalence of Obesity,25.3\r\n\"Placer County, CA\",Prevalence of Obesity,26.3\r\n\"Plumas County, CA\",Prevalence of Obesity,29.5\r\n\"Riverside County, CA\",Prevalence of Obesity,36.2\r\n\"Sacramento County, CA\",Prevalence of Obesity,31.7\r\n\"San Benito County, CA\",Prevalence of Obesity,31\r\n\"San Bernardino County, CA\",Prevalence of Obesity,38.1\r\n\"San Diego County, CA\",Prevalence of Obesity,23.9\r\n\"San Francisco County, CA\",Prevalence of Obesity,18.7\r\n\"San Joaquin County, CA\",Prevalence of Obesity,33.3\r\n\"San Luis Obispo County, CA\",Prevalence of Obesity,30.5\r\n\"San Mateo County, CA\",Prevalence of Obesity,21\r\n\"Santa Barbara County, CA\",Prevalence of Obesity,30.1\r\n\"Santa Clara County, CA\",Prevalence of Obesity,18.5\r\n\"Santa Cruz County, CA\",Prevalence of Obesity,25.2\r\n\"Shasta County, CA\",Prevalence of Obesity,30.9\r\n\"Sierra County, CA\",Prevalence of Obesity,29.8\r\n\"Siskiyou County, CA\",Prevalence of Obesity,32.8\r\n\"Solano County, CA\",Prevalence of Obesity,29.9\r\n\"Sonoma County, CA\",Prevalence of Obesity,28.6\r\n\"Stanislaus County, CA\",Prevalence of Obesity,34.8\r\n\"Sutter County, CA\",Prevalence of Obesity,31.6\r\n\"Tehama County, CA\",Prevalence of Obesity,34.2\r\n\"Trinity County, CA\",Prevalence of Obesity,33\r\n\"Tulare County, CA\",Prevalence of Obesity,35.5\r\n\"Tuolumne County, CA\",Prevalence of Obesity,29.5\r\n\"Ventura County, CA\",Prevalence of Obesity,27\r\n\"Yolo County, CA\",Prevalence of Obesity,27.8\r\n\"Yuba County, CA\",Prevalence of Obesity,33.9", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity in Counties of California (2021)", + "type": "MAP", + "unit": "%", + "vars": [ + "Percent_Person_Obesity" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california" + }, + { + "data_csv": "rank,place,Prevalence of Obesity\r\n1,San Bernardino County,38.1\r\n2,Imperial County,38\r\n3,Fresno County,36.8\r\n4,Kern County,36.6\r\n5,Riverside County,36.2\r\n54,San Diego County,23.9\r\n55,Marin County,22.9\r\n56,San Mateo County,21\r\n57,San Francisco County,18.7\r\n58,Santa Clara County,18.5", + "placeType": "County", + "places": [ + "geoId/06" + ], + "srcs": [ + { + "name": "cdc.gov", + "url": "https://www.cdc.gov/places/index.html" + } + ], + "title": "Prevalence of Obesity in Counties of California (2021)", + "type": "TABLE", + "unit": "%", + "vars": [ + "Percent_Person_Obesity" + ], + "dcUrl": "https://datacommons.org/explore#q=obesity%20vs.%20poverty%20in%20counties%20of%20california", + "chartUrl": "" + } + ] +} \ No newline at end of file diff --git a/tools/nl/nodejs_query_differ/goldens/dev/timeline.json b/tools/nl/nodejs_query_differ/goldens/dev/timeline.json new file mode 100644 index 0000000000..3812e71fdd --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/timeline.json @@ -0,0 +1,79 @@ +{ + "charts": [ + { + "data_csv": "label,Average Income for Family Households\r\n2019,105819\r\n2018,103731\r\n2017,99878\r\n2016,96309\r\n2015,93044\r\n2014,90140\r\n2013,86449\r\n2012,83141\r\n2011,79594\r\n2010,75645", + "legend": [ + "Average Income for Family Households" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Family Households in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_FamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 105819 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Average Income for Family Households\r\n1,Williams County,126095\r\n2,Dunn County,122699\r\n3,Divide County,118649\r\n4,Mountrail County,118316\r\n5,McKenzie County,117604\r\n49,Pierce County,76245\r\n50,McIntosh County,75949\r\n51,Rolette County,72908\r\n52,Benson County,69206\r\n53,Sioux County,56872", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Family Households in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_FamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Median Family Household Income\r\n2019,86249\r\n2018,83272\r\n2017,80091\r\n2016,77277\r\n2015,74708\r\n2014,72770\r\n2013,70767\r\n2012,68293\r\n2011,65871\r\n2010,62920", + "legend": [ + "Median Family Household Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Family Household Income in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_FamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 86249 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + } + ] +} \ No newline at end of file diff --git a/tools/nl/nodejs_query_differ/goldens/dev/timeline_all.json b/tools/nl/nodejs_query_differ/goldens/dev/timeline_all.json new file mode 100644 index 0000000000..08aebc8f75 --- /dev/null +++ b/tools/nl/nodejs_query_differ/goldens/dev/timeline_all.json @@ -0,0 +1,827 @@ +{ + "charts": [ + { + "data_csv": "label,Average Income for Family Households\r\n2019,105819\r\n2018,103731\r\n2017,99878\r\n2016,96309\r\n2015,93044\r\n2014,90140\r\n2013,86449\r\n2012,83141\r\n2011,79594\r\n2010,75645", + "legend": [ + "Average Income for Family Households" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Family Households in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_FamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 105819 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Average Income for Family Households\r\n1,Williams County,126095\r\n2,Dunn County,122699\r\n3,Divide County,118649\r\n4,Mountrail County,118316\r\n5,McKenzie County,117604\r\n49,Pierce County,76245\r\n50,McIntosh County,75949\r\n51,Rolette County,72908\r\n52,Benson County,69206\r\n53,Sioux County,56872", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Family Households in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_FamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Median Family Household Income\r\n2019,86249\r\n2018,83272\r\n2017,80091\r\n2016,77277\r\n2015,74708\r\n2014,72770\r\n2013,70767\r\n2012,68293\r\n2011,65871\r\n2010,62920", + "legend": [ + "Median Family Household Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Family Household Income in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_FamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 86249 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Median Family Household Income\r\n1,Dunn County,107625\r\n2,Williams County,100650\r\n3,Mercer County,97866\r\n4,Stark County,96087\r\n5,Burleigh County,95104\r\n49,Sheridan County,64000\r\n50,Kidder County,63716\r\n51,Benson County,54962\r\n52,Rolette County,53285\r\n53,Sioux County,42619", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Family Household Income in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_FamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Median Married Couple Family Household Income\r\n2019,96825\r\n2018,93643\r\n2017,89787\r\n2016,86919\r\n2015,84437\r\n2014,82236\r\n2013,79820\r\n2012,76946\r\n2011,73585\r\n2010,69952", + "legend": [ + "Median Married Couple Family Household Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Married Couple Family Household Income in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_MarriedCoupleFamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 96825 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Median Married Couple Family Household Income\r\n1,Williams County,114939\r\n2,Dunn County,110000\r\n3,McKenzie County,109798\r\n4,Burleigh County,108658\r\n5,Stark County,105861\r\n49,Logan County,69342\r\n50,McIntosh County,69010\r\n51,Sheridan County,69000\r\n52,Kidder County,65625\r\n53,Sioux County,63375", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Married Couple Family Household Income in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_MarriedCoupleFamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Average Income for Married Couple Family Households\r\n2019,117934\r\n2018,115706\r\n2017,111105\r\n2016,107344\r\n2015,103913\r\n2014,100467\r\n2013,95868\r\n2012,92261\r\n2011,88071\r\n2010,83619", + "legend": [ + "Average Income for Married Couple Family Households" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Married Couple Family Households in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_MarriedCoupleFamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 117934 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Average Income for Married Couple Family Households\r\n1,Burleigh County,129824\r\n2,Cass County,129532\r\n3,Grand Forks County,111270\r\n4,Ward County,110209\r\n3,Grand Forks County,111270\r\n4,Ward County,110209", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Married Couple Family Households in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_MarriedCoupleFamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Average Income for Nonfamily Households\r\n2019,52462\r\n2018,51729\r\n2017,50416\r\n2016,49357\r\n2015,47072\r\n2014,44346\r\n2013,42235\r\n2012,40393\r\n2011,37461\r\n2010,34769", + "legend": [ + "Average Income for Nonfamily Households" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Nonfamily Households in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_NonfamilyHousehold" + ], + "highlight": { + "date": "2019", + "value": 52462 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Average Income for Nonfamily Households\r\n1,McKenzie County,83059\r\n2,Williams County,80472\r\n3,Cavalier County,77149\r\n4,Dunn County,73967\r\n5,Mercer County,68320\r\n49,Divide County,39224\r\n50,Sioux County,38695\r\n51,Griggs County,37770\r\n52,Nelson County,36831\r\n53,Rolette County,31345", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Nonfamily Households in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household_NonfamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Household Median Income\r\n2022,73959\r\n2021,68131\r\n2020,65315\r\n2019,64894\r\n2018,63473\r\n2017,61285\r\n2016,59114\r\n2015,57181\r\n2014,55579\r\n2013,53741\r\n2012,51641\r\n2011,49415", + "legend": [ + "Household Median Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Household Median Income in North Dakota", + "type": "LINE", + "unit": "USD", + "vars": [ + "Median_Income_Household" + ], + "highlight": { + "date": "2022", + "value": 73959 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Household Median Income\r\n1,Divide County,95938\r\n2,Burke County,94583\r\n3,Dunn County,91758\r\n4,Williams County,86139\r\n5,Steele County,85750\r\n49,Kidder County,57240\r\n50,Grant County,57069\r\n51,Rolette County,53806\r\n52,Eddy County,50375\r\n53,Sioux County,41201", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Household Median Income in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "Median_Income_Household" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Individual Median Income\r\n2022,41128\r\n2021,37861\r\n2020,36316\r\n2019,35499\r\n2018,34036\r\n2017,32336\r\n2016,31273\r\n2015,30422\r\n2014,29391\r\n2013,28157\r\n2012,27090\r\n2011,25925", + "legend": [ + "Individual Median Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Individual Median Income in North Dakota", + "type": "LINE", + "unit": "USD", + "vars": [ + "Median_Income_Person" + ], + "highlight": { + "date": "2022", + "value": 41128 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Individual Median Income\r\n1,Burke County,50841\r\n2,McKenzie County,49086\r\n3,Sargent County,46367\r\n4,Stark County,45838\r\n5,Burleigh County,45812\r\n49,Slope County,33088\r\n50,Kidder County,32436\r\n51,Eddy County,32143\r\n52,Logan County,32069\r\n53,Sioux County,22860", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Individual Median Income in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "Median_Income_Person" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,North Dakota\r\n\"People Earning Up to $9,999\",78582\r\n\"People Earning $10,000 and $14,999\",42620\r\n\"People Earning $25,000 and $34,999\",61544\r\n\"People Earning $35,000 and $49,999\",89194\r\n\"People Earning Between $50,000 and $64,999\",75899\r\n\"People Earning Between $65,000 and $74,999\",35093\r\n\"People Earning $75,000 or More\",122253", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "legend": [ + "People Earning Up to $9,999", + "People Earning $10,000 and $14,999", + "People Earning $25,000 and $34,999", + "People Earning $35,000 and $49,999", + "People Earning Between $50,000 and $64,999", + "People Earning Between $65,000 and $74,999", + "People Earning $75,000 or More" + ], + "title": "Population by Income Level in North Dakota (2022)", + "type": "BAR", + "unit": "", + "vars": [ + "Count_Person_IncomeOfUpto9999USDollar", + "Count_Person_IncomeOf10000To14999USDollar", + "Count_Person_IncomeOf25000To34999USDollar", + "Count_Person_IncomeOf35000To49999USDollar", + "Count_Person_IncomeOf50000To64999USDollar", + "Count_Person_IncomeOf65000To74999USDollar", + "Count_Person_IncomeOf75000OrMoreUSDollar" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,\"People Earning Up to $9,999\"\r\n1,Cass County,19302\r\n2,Grand Forks County,9219\r\n3,Burleigh County,8390\r\n4,Ward County,6851\r\n5,Stark County,3233\r\n49,Towner County,149\r\n50,Burke County,138\r\n51,Slope County,112\r\n52,Billings County,109\r\n53,Sheridan County,100", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "People Earning Up to $9,999 in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Person_IncomeOfUpto9999USDollar" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "rank,place,\"People Earning $10,000 and $14,999\"\r\n1,Cass County,9817\r\n2,Burleigh County,5097\r\n3,Grand Forks County,4124\r\n4,Ward County,3774\r\n5,Morton County,1744\r\n49,Burke County,97\r\n50,Slope County,77\r\n51,Steele County,63\r\n52,Oliver County,60\r\n53,Billings County,48", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "People Earning $10,000 and $14,999 in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Person_IncomeOf10000To14999USDollar" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,North Dakota\r\nMedian Incomes in Real Estate And Rental And Leasing,49452\r\nMedian Incomes in Health Care And Social Assistance,42212\r\nMedian Income of Manufacturing,51134\r\nMedian Incomes in Administrative And Support And Waste Management Services,33747\r\nMedian Incomes in Retail Trade,29893\r\nMedian Incomes in Public Administration,60643\r\nMedian Incomes in Accommodation And Food Services,19695\r\n\"Median Incomes in Mining, Quarrying, And Oil And Gas Extraction\",91728\r\nMedian Incomes in Educational Services,45357\r\n\"Median Incomes in Other Services, Except Public Administration\",38355\r\nMedian Incomes in Construction,55838\r\nMedian Incomes in Management of Companies And Enterprises,58576\r\nMedian Incomes in Information industry,52721\r\n\"Median Incomes in Agriculture, Forestry, Fishing And Hunting\",48991\r\nMedian Incomes in Transportation And Warehousing,54343", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "legend": [ + "Median Incomes in Real Estate And Rental And Leasing", + "Median Incomes in Health Care And Social Assistance", + "Median Income of Manufacturing", + "Median Incomes in Administrative And Support And Waste Management Services", + "Median Incomes in Retail Trade", + "Median Incomes in Public Administration", + "Median Incomes in Accommodation And Food Services", + "Median Incomes in Mining, Quarrying, And Oil And Gas Extraction", + "Median Incomes in Educational Services", + "Median Incomes in Other Services, Except Public Administration", + "Median Incomes in Construction", + "Median Incomes in Management of Companies And Enterprises", + "Median Incomes in Information industry", + "Median Incomes in Agriculture, Forestry, Fishing And Hunting", + "Median Incomes in Transportation And Warehousing" + ], + "title": "Individual Income by Industry Type in North Dakota (2022)", + "type": "BAR", + "unit": "USD", + "vars": [ + "dc/015d58s9xh8kd", + "dc/2wgh04kx6es88", + "dc/3ex11eg2q9hp6", + "dc/4z9xy6wn8xns1", + "dc/5f3gkej4mrq24", + "dc/7jqw95h5wbelb", + "dc/9pmyhk89dj3pf", + "dc/b4dj4sbgqybh7", + "dc/jefhcs9qxc971", + "dc/knhvyxwsd3y6h", + "dc/m07n4w3ywjzs3", + "dc/t6m99mqmqxjbc", + "dc/xj2nk2bg60fg", + "dc/yw52qqrrb2w11", + "dc/zbpsz8dg01nh2" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Median Incomes in Real Estate And Rental And Leasing\r\n1,Emmons County,128393\r\n2,McKenzie County,123816\r\n3,Dunn County,100655\r\n4,Walsh County,92188\r\n5,Traill County,66000\r\n37,Stark County,12167\r\n38,Bottineau County,11667\r\n39,McLean County,10833\r\n40,Steele County,4167\r\n41,Dickey County,3125", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Median Incomes in Real Estate and Rental and Leasing in Counties of North Dakota (2011 to 2022)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "dc/015d58s9xh8kd" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "rank,place,Median Incomes in Health Care And Social Assistance\r\n1,Burke County,77594\r\n2,Morton County,54282\r\n3,Slope County,51000\r\n4,Oliver County,51000\r\n5,Adams County,48854\r\n49,LaMoure County,29303\r\n50,Dickey County,28819\r\n51,Kidder County,25909\r\n52,Towner County,25357\r\n53,Divide County,24648", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Median Incomes in Health Care and Social Assistance in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "dc/2wgh04kx6es88" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Median Family Household Income,Median Married Couple Family Household Income,Nonfamily Household Median Income\r\n2019,86249,96825,38642\r\n2018,83272,93643,37577\r\n2017,80091,89787,35907\r\n2016,77277,86919,35176\r\n2015,74708,84437,33751\r\n2014,72770,82236,32577\r\n2013,70767,79820,31330\r\n2012,68293,76946,30195\r\n2011,65871,73585,27555\r\n2010,62920,69952,26089", + "legend": [ + "Median Family Household Income", + "Median Married Couple Family Household Income", + "Nonfamily Household Median Income" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Median Income by Household Type in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Median_Income_Household_FamilyHousehold", + "Median_Income_Household_MarriedCoupleFamilyHousehold", + "Median_Income_Household_NonfamilyHousehold" + ], + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "label,Mean Income Deficit of Household: Family Household\r\n2021,11145\r\n2020,10436\r\n2019,10311\r\n2018,10095\r\n2017,9868\r\n2016,9703\r\n2015,9487\r\n2014,9353\r\n2013,8959\r\n2012,8746\r\n2011,8539\r\n2010,8376", + "legend": [ + "Mean Income Deficit of Household: Family Household" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Mean Income Deficit of Household: Family Household in North Dakota", + "type": "LINE", + "unit": "USD", + "vars": [ + "Mean_IncomeDeficit_Household_FamilyHousehold" + ], + "highlight": { + "date": "2021", + "value": 11145 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Mean Income Deficit of Household: Family Household\r\n1,Steele County,25719\r\n2,Ransom County,25146\r\n3,Sioux County,19446\r\n4,Benson County,18693\r\n5,Rolette County,16013\r\n46,Burke County,5400\r\n47,Logan County,5108\r\n48,Renville County,4256\r\n49,Slope County,4069\r\n50,Griggs County,1966", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Mean Income Deficit of Household: Family Household in Counties of North Dakota (2010 to 2021)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "Mean_IncomeDeficit_Household_FamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,\"Count of Household: Family Household, Owner Occupied\"\r\n2021,143535\r\n2020,144543\r\n2019,143675\r\n2018,143491\r\n2017,143265\r\n2016,141039\r\n2015,140246", + "legend": [ + "Count of Household: Family Household, Owner Occupied" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Count of Household: Family Household, Owner Occupied in North Dakota", + "type": "LINE", + "unit": "", + "vars": [ + "Count_Household_FamilyHousehold_OwnerOccupied" + ], + "highlight": { + "date": "2021", + "value": 143535 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,\"Count of Household: Family Household, Owner Occupied\"\r\n1,Cass County,31049\r\n2,Burleigh County,20308\r\n3,Ward County,12168\r\n4,Grand Forks County,10604\r\n5,Morton County,7392\r\n49,Logan County,438\r\n50,Sioux County,346\r\n51,Sheridan County,334\r\n52,Slope County,213\r\n53,Billings County,185", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Count of Household: Family Household, Owner Occupied in Counties of North Dakota (2021)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Household_FamilyHousehold_OwnerOccupied" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Count of Household: Family Household\r\n2022,188317\r\n2021,187742\r\n2020,189465\r\n2019,189400\r\n2018,188288\r\n2017,187057\r\n2016,183466\r\n2015,181864\r\n2014,178003\r\n2013,175638\r\n2012,173196\r\n2011,171622", + "legend": [ + "Count of Household: Family Household" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Count of Household: Family Household in North Dakota", + "type": "LINE", + "unit": "", + "vars": [ + "Count_Household_FamilyHousehold" + ], + "highlight": { + "date": "2022", + "value": 188317 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Count of Household: Family Household\r\n1,Cass County,43738\r\n2,Burleigh County,24714\r\n3,Ward County,16729\r\n4,Grand Forks County,15628\r\n5,Williams County,9538\r\n49,Logan County,494\r\n50,Steele County,457\r\n51,Sheridan County,384\r\n52,Slope County,253\r\n53,Billings County,229", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Count of Household: Family Household in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Household_FamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Average Income for Households\r\n2019,85476\r\n2018,84043\r\n2017,81334\r\n2016,78828\r\n2015,76185\r\n2014,73272\r\n2013,70235\r\n2012,67426\r\n2011,64106\r\n2010,60581", + "legend": [ + "Average Income for Households" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Households in North Dakota", + "type": "LINE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household" + ], + "highlight": { + "date": "2019", + "value": 85476 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Average Income for Households\r\n1,Williams County,112921\r\n2,Dunn County,106893\r\n3,McKenzie County,105700\r\n4,Mountrail County,100606\r\n5,Billings County,98764\r\n49,Pierce County,65582\r\n50,Benson County,65093\r\n51,Sheridan County,64388\r\n52,Rolette County,61600\r\n53,Sioux County,53928", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1901&tid=ACSST5Y2019.S1901" + } + ], + "title": "Average Income for Households in Counties of North Dakota (2019)", + "type": "TABLE", + "unit": "Infl. adj. USD (CY)", + "vars": [ + "Mean_Income_Household" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Count of Household: Other Family Household\r\n2022,36750\r\n2021,37394\r\n2020,36814\r\n2019,37493\r\n2018,37074\r\n2017,36572\r\n2016,36463\r\n2015,36097\r\n2014,34454\r\n2013,33338\r\n2012,32370\r\n2011,30908", + "legend": [ + "Count of Household: Other Family Household" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Count of Household: Other Family Household in North Dakota", + "type": "LINE", + "unit": "", + "vars": [ + "Count_Household_OtherFamilyHousehold" + ], + "highlight": { + "date": "2022", + "value": 36750 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Count of Household: Other Family Household\r\n1,Cass County,8677\r\n2,Burleigh County,4470\r\n3,Grand Forks County,3697\r\n4,Ward County,3106\r\n5,Williams County,2525\r\n49,Burke County,52\r\n50,Steele County,45\r\n51,Logan County,31\r\n52,Billings County,23\r\n53,Slope County,14", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "census.gov", + "url": "https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html" + } + ], + "title": "Count of Household: Other Family Household in Counties of North Dakota (2022)", + "type": "TABLE", + "unit": "", + "vars": [ + "Count_Household_OtherFamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + }, + { + "data_csv": "label,Mean Income Deficit of Household: Married Couple Family Household\r\n2021,9392\r\n2020,8665\r\n2019,8812\r\n2018,8920\r\n2017,8599\r\n2016,8639\r\n2015,8711\r\n2014,8645\r\n2013,8072\r\n2012,8075\r\n2011,7641\r\n2010,7201", + "legend": [ + "Mean Income Deficit of Household: Married Couple Family Household" + ], + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Mean Income Deficit of Household: Married Couple Family Household in North Dakota", + "type": "LINE", + "unit": "USD", + "vars": [ + "Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold" + ], + "highlight": { + "date": "2021", + "value": 9392 + }, + "chartUrl": "", + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota" + }, + { + "data_csv": "rank,place,Mean Income Deficit of Household: Married Couple Family Household\r\n1,Steele County,25719\r\n2,Ransom County,22740\r\n3,Sioux County,21443\r\n4,Williams County,17531\r\n5,Benson County,17245\r\n46,Slope County,4069\r\n47,Bottineau County,3847\r\n48,Burke County,3700\r\n49,Griggs County,2550\r\n50,Renville County,2026", + "placeType": "County", + "places": [ + "geoId/38" + ], + "srcs": [ + { + "name": "data.census.gov", + "url": "https://data.census.gov/cedsci/table?q=S1702&tid=ACSST5Y2019.S1702" + } + ], + "title": "Mean Income Deficit of Household: Married Couple Family Household in Counties of North Dakota (2010 to 2021)", + "type": "TABLE", + "unit": "USD", + "vars": [ + "Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold" + ], + "dcUrl": "https://datacommons.org/explore#q=family%20earnings%20in%20north%20dakota", + "chartUrl": "" + } + ] +} \ No newline at end of file From 63b5002f1c1a0b9dbbdca0ad1a0bb3c66801136e Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 10:14:45 -0700 Subject: [PATCH 16/28] Move reranking to NL Server (#4188) This is so that all Vertex AI calls go through NL Server. Additionally, the multi-var case also gets reranking support (if enabled). --- nl_server/embeddings_map.py | 33 ++-- nl_server/model/vertexai.py | 23 ++- nl_server/ranking.py | 29 ++++ nl_server/rerank.py | 93 +++++++++++ nl_server/routes.py | 32 ++-- nl_server/search.py | 12 +- nl_server/tests/custom_embeddings_test.py | 21 ++- .../tests}/rerank_test.py | 26 ++- server/integration_tests/explore_test.py | 27 ++- .../detection_api_reranking/debug_info.json | 155 +++++++++++++----- server/lib/nl/detection/detector.py | 9 +- server/lib/nl/detection/heuristic_detector.py | 5 +- server/lib/nl/detection/llm_detector.py | 5 +- server/lib/nl/detection/rerank.py | 80 --------- server/lib/nl/detection/variable.py | 16 +- server/routes/explore/helpers.py | 17 +- server/services/datacommons.py | 4 +- 17 files changed, 374 insertions(+), 213 deletions(-) create mode 100644 nl_server/ranking.py create mode 100644 nl_server/rerank.py rename {server/tests/lib/nl/detection => nl_server/tests}/rerank_test.py (90%) delete mode 100644 server/lib/nl/detection/rerank.py diff --git a/nl_server/embeddings_map.py b/nl_server/embeddings_map.py index 36f5c8ab7f..035312c3b8 100644 --- a/nl_server/embeddings_map.py +++ b/nl_server/embeddings_map.py @@ -21,12 +21,15 @@ from nl_server.config import IndexConfig from nl_server.config import ModelConfig from nl_server.config import ModelType +from nl_server.config import ModelUsage from nl_server.config import parse from nl_server.config import StoreType from nl_server.embeddings import Embeddings from nl_server.embeddings import EmbeddingsModel from nl_server.model.sentence_transformer import LocalSentenceTransformerModel -from nl_server.model.vertexai import VertexAIModel +from nl_server.model.vertexai import VertexAIEmbeddingsModel +from nl_server.model.vertexai import VertexAIRerankingModel +from nl_server.ranking import RerankingModel from nl_server.store.memory import MemoryEmbeddingsStore from nl_server.store.vertexai import VertexAIStore from shared.lib.custom_dc_util import is_custom_dc @@ -40,15 +43,19 @@ class EmbeddingsMap: # Input is the in-memory representation of `embeddings.yaml` structure. def __init__(self, embeddings_dict: dict[str, dict[str, str]]): self.embeddings_map: dict[str, Embeddings] = {} - self.name2model: Dict[str, EmbeddingsModel] = {} + self.name_to_emb_model: Dict[str, EmbeddingsModel] = {} + self.name_to_rank_model: Dict[str, RerankingModel] = {} embeddings_info = parse(embeddings_dict) self.reset_index(embeddings_info) # Note: The caller takes care of exceptions. - def get(self, index_type: str = DEFAULT_INDEX_TYPE) -> Embeddings: + def get_index(self, index_type: str = DEFAULT_INDEX_TYPE) -> Embeddings: return self.embeddings_map.get(index_type) + def get_reranking_model(self, model_name: str) -> RerankingModel: + return self.name_to_rank_model.get(model_name) + # Adds the new models and indexes in a embeddings_info object to the # embeddings def reset_index(self, embeddings_info: EmbeddingsConfig): @@ -60,24 +67,26 @@ def reset_index(self, embeddings_info: EmbeddingsConfig): def _load_models(self, models: dict[str, ModelConfig]): for model_name, model_info in models.items(): # if model has already been loaded, continue - if model_name in self.name2model: + if (model_name in self.name_to_emb_model or + model_name in self.name_to_rank_model): continue # try creating a model object from the model info - model = None try: - if model_info.type == ModelType.VERTEXAI and allow_vertex_ai(): - model = VertexAIModel(model_info) + if (allow_vertex_ai() and model_info.type == ModelType.VERTEXAI): + if model_info.usage == ModelUsage.EMBEDDINGS: + model = VertexAIEmbeddingsModel(model_info) + self.name_to_emb_model[model_name] = model + elif model_info.usage == ModelUsage.RERANKING: + model = VertexAIRerankingModel(model_info) + self.name_to_rank_model[model_name] = model elif model_info.type == ModelType.LOCAL: model = LocalSentenceTransformerModel(model_info) + self.name_to_emb_model[model_name] = model except Exception as e: logging.error(f'error loading model {model_name}: {str(e)} ') raise e - # if model successfully created, set it in name2model - if model: - self.name2model[model_name] = model - # Sets an index to the embeddings map def _set_embeddings(self, idx_name: str, idx_info: IndexConfig): # try creating a store object from the index info @@ -105,4 +114,4 @@ def _set_embeddings(self, idx_name: str, idx_info: IndexConfig): # if store successfully created, set it in embeddings_map if store: self.embeddings_map[idx_name] = Embeddings( - model=self.name2model[idx_info.model], store=store) + model=self.name_to_emb_model[idx_info.model], store=store) diff --git a/nl_server/model/vertexai.py b/nl_server/model/vertexai.py index 6bc0df2e64..b16f61b3cd 100644 --- a/nl_server/model/vertexai.py +++ b/nl_server/model/vertexai.py @@ -18,17 +18,30 @@ from google.cloud import aiplatform from nl_server import embeddings +from nl_server import ranking from nl_server.config import VertexAIModelConfig -class VertexAIModel(embeddings.EmbeddingsModel): +class VertexAIEmbeddingsModel(embeddings.EmbeddingsModel): def __init__(self, model_info: VertexAIModelConfig): super().__init__(model_info.score_threshold) - - aiplatform.init(project=model_info.project_id, location=model_info.location) - self.prediction_client = aiplatform.Endpoint( - model_info.prediction_endpoint_id) + self.prediction_client = _init_client(model_info) def encode(self, queries: List[str]) -> List[List[float]]: return self.prediction_client.predict(instances=queries).predictions + + +class VertexAIRerankingModel(ranking.RerankingModel): + + def __init__(self, model_info: VertexAIModelConfig): + self.prediction_client = _init_client(model_info) + + def predict(self, query_sentence_pairs: List[tuple[str, str]]) -> List[float]: + return self.prediction_client.predict( + instances=query_sentence_pairs).predictions + + +def _init_client(model_info: VertexAIModelConfig): + aiplatform.init(project=model_info.project_id, location=model_info.location) + return aiplatform.Endpoint(model_info.prediction_endpoint_id) diff --git a/nl_server/ranking.py b/nl_server/ranking.py new file mode 100644 index 0000000000..6b4d42f1c3 --- /dev/null +++ b/nl_server/ranking.py @@ -0,0 +1,29 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Abstract classes for Ranking model.""" + +from abc import ABC +from abc import abstractmethod +from typing import List + + +# +# Abstract class for a Reranking model which takes a list of +# sentence pairs and returns a parallel list of scores. +# +class RerankingModel(ABC): + + @abstractmethod + def predict(self, query_sentence_pairs: List[tuple[str, str]]) -> List[float]: + pass \ No newline at end of file diff --git a/nl_server/rerank.py b/nl_server/rerank.py new file mode 100644 index 0000000000..6598616d65 --- /dev/null +++ b/nl_server/rerank.py @@ -0,0 +1,93 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import Callable, Dict, List + +from nl_server.ranking import RerankingModel +import shared.lib.detected_variables as vars + +# Given a list of query <-> candidates pairs as input, returns +# a corresponding list of scores. +RerankCallable = Callable[[List[tuple[str, str]]], List[float]] + + +def rerank(rerank_model: RerankingModel, + query2candidates: Dict[str, vars.VarCandidates], + debug_logs: Dict) -> Dict[str, vars.VarCandidates]: + # 1. Prepare indexes and inputs + + # List of query-sentence pairs. + qs_pairs: List[tuple[str, str]] = [] + # Sentence to index into var_candidates.svs. + query2sentence2idx: Dict[str, Dict[str, int]] = {} + for query, var_candidates in query2candidates.items(): + sentence2idx = query2sentence2idx.setdefault(query, {}) + for idx, sv in enumerate(var_candidates.svs): + for s in var_candidates.sv2sentences.get(sv, []): + if s.sentence not in sentence2idx: + sentence2idx[s.sentence] = idx + qs_pairs.append([query, s.sentence]) + + # 2. Perform the re-ranking + scores = rerank_model.predict(qs_pairs) + + # 3. Group Sentence-Score pairs by query. + query2sentence2score: Dict[str, Dict[str, float]] = {} + for qs, score in zip(qs_pairs, scores): + query2sentence2score.setdefault(qs[0], {}).setdefault(qs[1], score) + + # TODO: Consider factoring this into a different function + query2rerankedcandidates: Dict[str, vars.VarCandidates] = {} + for query, sentence2score in query2sentence2score.items(): + # 4. Per query, sort the Sentence-Score pairs based on scores. + reranked_ss_pairs = sorted(sentence2score.items(), + key=lambda ss: ss[1], + reverse=True) + + # 5. Given sorted Sentence-Score pairs, sort the var_candidates. + # Along the way, also put in the rerank-score. + # NOTE: The earliest ranked sentence determines the order of the SV. + reranked_var_candidates = vars.VarCandidates(svs=[], + scores=[], + sv2sentences={}) + + added_idxs = set() + sentence2idx = query2sentence2idx[query] + var_candidates = query2candidates[query] + for sentence, _ in reranked_ss_pairs: + idx = sentence2idx[sentence] + if idx in added_idxs: + # We've already processed the SV. + continue + added_idxs.add(idx) + + sv = var_candidates.svs[idx] + reranked_var_candidates.svs.append(sv) + reranked_var_candidates.scores.append(var_candidates.scores[idx]) + sentences_with_rerank_score: List[vars.SentenceScore] = [] + for s in var_candidates.sv2sentences[sv]: + sentences_with_rerank_score.append( + vars.SentenceScore(sentence=s.sentence, + score=s.score, + rerank_score=sentence2score[s.sentence])) + sentences_with_rerank_score.sort(key=lambda s: s.rerank_score, + reverse=True) + reranked_var_candidates.sv2sentences[sv] = sentences_with_rerank_score + + query_log = debug_logs.setdefault("reranking", {}).setdefault(query, {}) + query_log['pre_reranking'] = var_candidates.svs + query_log['post_reranking'] = reranked_var_candidates.svs + query2rerankedcandidates[query] = reranked_var_candidates + + return query2rerankedcandidates diff --git a/nl_server/routes.py b/nl_server/routes.py index 75454bb356..0625cb8cda 100644 --- a/nl_server/routes.py +++ b/nl_server/routes.py @@ -24,6 +24,7 @@ from nl_server import loader from nl_server import search from nl_server.embeddings import Embeddings +from nl_server.embeddings_map import EmbeddingsMap from shared.lib import constants from shared.lib.custom_dc_util import is_custom_dc from shared.lib.detected_variables import var_candidates_to_dict @@ -34,7 +35,7 @@ @bp.route('/healthz') def healthz(): - nl_embeddings = current_app.config[config.NL_EMBEDDINGS_KEY].get( + nl_embeddings = current_app.config[config.NL_EMBEDDINGS_KEY].get_index( config.DEFAULT_INDEX_TYPE) result: VarCandidates = search.search_vars( [nl_embeddings], ['life expectancy'])['life expectancy'] @@ -60,20 +61,27 @@ def search_vars(): if not idx: idx = config.DEFAULT_INDEX_TYPE + emb_map: EmbeddingsMap = current_app.config[config.NL_EMBEDDINGS_KEY] + skip_topics = False if request.args.get('skip_topics'): skip_topics = True - nl_embeddings = _get_indexes(idx) + reranker_name = str(escape(request.args.get('reranker', ''))) + reranker_model = emb_map.get_reranking_model( + reranker_name) if reranker_name else None + + nl_embeddings = _get_indexes(emb_map, idx) + debug_logs = {} results: Dict[str, VarCandidates] = search.search_vars(nl_embeddings, queries, - skip_topics) - json_result = { - q: var_candidates_to_dict(result) for q, result in results.items() - } + skip_topics, reranker_model, + debug_logs) + q2result = {q: var_candidates_to_dict(result) for q, result in results.items()} return json.dumps({ - 'queryResults': json_result, - 'scoreThreshold': _get_threshold(nl_embeddings) + 'queryResults': q2result, + 'scoreThreshold': _get_threshold(nl_embeddings), + 'debugLogs': debug_logs }) @@ -99,19 +107,17 @@ def load(): return json.dumps(current_app.config[config.NL_EMBEDDINGS_VERSION_KEY]) -def _get_indexes(idx: str) -> List[Embeddings]: +def _get_indexes(emb_map: EmbeddingsMap, idx: str) -> List[Embeddings]: nl_embeddings: List[Embeddings] = [] - emb_map = current_app.config[config.NL_EMBEDDINGS_KEY] - if is_custom_dc() and idx != config.CUSTOM_DC_INDEX: # Order custom index first, so that when the score is the same # Custom DC will be preferred. - emb = emb_map.get(config.CUSTOM_DC_INDEX) + emb = emb_map.get_index(config.CUSTOM_DC_INDEX) if emb: nl_embeddings.append(emb) - emb = emb_map.get(idx) + emb = emb_map.get_index(idx) if emb: nl_embeddings.append(emb) diff --git a/nl_server/search.py b/nl_server/search.py index 24da7d9eb4..db0f7e76c2 100644 --- a/nl_server/search.py +++ b/nl_server/search.py @@ -13,8 +13,11 @@ # limitations under the License. """Library that exposes search_vars""" +import time from typing import Dict, List +from nl_server import ranking +from nl_server import rerank from nl_server.embeddings import Embeddings from nl_server.embeddings import EmbeddingsResult from nl_server.merge import merge_search_results @@ -36,7 +39,9 @@ # def search_vars(embeddings_list: List[Embeddings], queries: List[str], - skip_topics: bool = False) -> Dict[str, dvars.VarCandidates]: + skip_topics: bool = False, + rerank_model: ranking.RerankingModel = None, + debug_logs: dict = {}) -> Dict[str, dvars.VarCandidates]: if not embeddings_list: return {} @@ -55,6 +60,11 @@ def search_vars(embeddings_list: List[Embeddings], for query, candidates in query2candidates.items(): results[query] = _rank_vars(candidates, skip_topics) + if rerank_model: + start = time.time() + results = rerank.rerank(rerank_model, results, debug_logs) + debug_logs['time_var_reranking'] = time.time() - start + return results diff --git a/nl_server/tests/custom_embeddings_test.py b/nl_server/tests/custom_embeddings_test.py index c67f7f3275..170292a8f6 100644 --- a/nl_server/tests/custom_embeddings_test.py +++ b/nl_server/tests/custom_embeddings_test.py @@ -88,8 +88,8 @@ def setUpClass(cls) -> None: }) def test_entries(self): - self.assertEqual(1, len(self.custom.get('medium_ft').store.dcids)) - self.assertEqual(1, len(self.custom.get('custom_ft').store.dcids)) + self.assertEqual(1, len(self.custom.get_index('medium_ft').store.dcids)) + self.assertEqual(1, len(self.custom.get_index('custom_ft').store.dcids)) # # * default index: dc/topic/sdg_1 @@ -103,9 +103,12 @@ def test_entries(self): ]) def test_queries(self, query: str, index: str, expected: str): if index == 'medium_ft': - indexes = [self.custom.get('custom_ft'), self.custom.get('medium_ft')] + indexes = [ + self.custom.get_index('custom_ft'), + self.custom.get_index('medium_ft') + ] else: - indexes = [self.custom.get('custom_ft')] + indexes = [self.custom.get_index('custom_ft')] _test_query(self, indexes, query, expected) @@ -128,8 +131,9 @@ def test_merge_custom_embeddings(self): } }) - _test_query(self, [embeddings.get("medium_ft")], "money", "dc/topic/sdg_1") - _test_query(self, [embeddings.get("medium_ft")], "food", "") + _test_query(self, [embeddings.get_index("medium_ft")], "money", + "dc/topic/sdg_1") + _test_query(self, [embeddings.get_index("medium_ft")], "food", "") embeddings.reset_index( parse({ @@ -150,6 +154,9 @@ def test_merge_custom_embeddings(self): } })) - emb_list = [embeddings.get("custom_ft"), embeddings.get("medium_ft")] + emb_list = [ + embeddings.get_index("custom_ft"), + embeddings.get_index("medium_ft") + ] _test_query(self, emb_list, "money", "dc/topic/sdg_1") _test_query(self, emb_list, "food", "dc/topic/sdg_2") diff --git a/server/tests/lib/nl/detection/rerank_test.py b/nl_server/tests/rerank_test.py similarity index 90% rename from server/tests/lib/nl/detection/rerank_test.py rename to nl_server/tests/rerank_test.py index 18762174a5..902b18c8f9 100644 --- a/server/tests/lib/nl/detection/rerank_test.py +++ b/nl_server/tests/rerank_test.py @@ -19,16 +19,11 @@ from parameterized import parameterized -from server.lib.nl.detection import rerank +from nl_server import rerank from shared.lib.detected_variables import dict_to_var_candidates from shared.lib.detected_variables import var_candidates_to_dict -@dataclass -class RerankerResult: - predictions: List[float] - - class TestReank(unittest.TestCase): @parameterized.expand([ @@ -128,18 +123,19 @@ class TestReank(unittest.TestCase): ], ]) def test_main(self, query, input_candidates, want_api_input, api_return, - want_candidates): + want): dummy_logs = {} self.maxDiff = None - def _fn(got_api_input): - self.assertEqual(want_api_input, got_api_input) - return RerankerResult(predictions=api_return) + class RerankModel: + + def predict(local_self, got_api_input): + self.assertEqual(want_api_input, got_api_input) + return api_return - got_candidates = rerank.rerank( - rerank_fn=_fn, - query=query, - var_candidates=dict_to_var_candidates(input_candidates), + got = rerank.rerank( + rerank_model=RerankModel(), + query2candidates={query: dict_to_var_candidates(input_candidates)}, debug_logs=dummy_logs) - self.assertEqual(want_candidates, var_candidates_to_dict(got_candidates)) + self.assertEqual(want, var_candidates_to_dict(got[query])) diff --git a/server/integration_tests/explore_test.py b/server/integration_tests/explore_test.py index 9a2a0968d8..49e1e3e802 100644 --- a/server/integration_tests/explore_test.py +++ b/server/integration_tests/explore_test.py @@ -142,8 +142,8 @@ def handle_response(self, if check_detection: dbg_file = os.path.join(json_dir, 'debug_info.json') with open(dbg_file, 'w') as infile: - del dbg["sv_matching"]["SV_to_Sentences"] - del dbg["props_matching"]["PROP_to_Sentences"] + _del_field(dbg, "sv_matching.SV_to_Sentences") + _del_field(dbg, "props_matching.PROP_to_Sentences") dbg_to_write = { "places_detected": dbg["places_detected"], "places_resolved": dbg["places_resolved"], @@ -186,6 +186,16 @@ def handle_response(self, 'debug_info.json') with open(dbg_file, 'r') as infile: expected = json.load(infile) + # Delete time value. + _del_field( + dbg, + "query_detection_debug_logs.query_transformations.time_var_reranking" + ) + _del_field( + expected, + "query_detection_debug_logs.query_transformations.time_var_reranking" + ) + self.assertEqual(dbg["places_detected"], expected["places_detected"]) self.assertEqual(dbg["places_resolved"], expected["places_resolved"]) self.assertEqual(dbg["main_place_dcid"], expected["main_place_dcid"]) @@ -720,3 +730,16 @@ def test_e2e_triple(self): 'tell me about heart disease' ], dc='bio') + + +# Helper function to delete x.y.z path in a dict. +def _del_field(d: dict, path: str): + tmp = d + parts = path.split('.') + for i, p in enumerate(parts): + if p in tmp: + if i == len(parts) - 1: + # Leaf entry + del tmp[p] + else: + tmp = tmp[p] diff --git a/server/integration_tests/test_data/detection_api_reranking/debug_info.json b/server/integration_tests/test_data/detection_api_reranking/debug_info.json index ab4f1e4e8f..311c766f2c 100644 --- a/server/integration_tests/test_data/detection_api_reranking/debug_info.json +++ b/server/integration_tests/test_data/detection_api_reranking/debug_info.json @@ -29,7 +29,7 @@ "MultiSV": { "Candidates": [ { - "AggCosineScore": 0.8788, + "AggCosineScore": 0.8418, "DelimBased": false, "Parts": [ { @@ -43,11 +43,17 @@ }, { "CosineScore": [ - 0.8562442064285278 + 0.7822709679603577, + 0.8562442064285278, + 0.7393685579299927, + 0.7447097301483154 ], "QueryPart": "rich", "SV": [ - "dc/topic/Income" + "dc/topic/IncomeEquity", + "dc/topic/Income", + "dc/topic/EconomicEquity", + "Median_Income_Person" ] } ] @@ -112,43 +118,116 @@ "query_transformations": { "place_detection_input": "population that is rich in california", "place_detection_with_places_removed": "population that is rich in", - "post_reranking": [ - "Count_Person_IncomeOf75000OrMoreUSDollar", - "Count_Person_IncomeOf50000To64999USDollar", - "Count_Person_IncomeOf10000To14999USDollar", - "Count_Person_BelowPovertyLevelInThePast12Months", - "Count_Person_IncomeOfUpto9999USDollar", - "Median_Income_Person", - "Count_Person_AbovePovertyLevelInThePast12Months", - "dc/topic/IncomeEquity", - "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", - "Count_Person_15OrMoreYears_NoIncome", - "dc/topic/Income", - "dc/topic/EconomicEquity", - "dc/topic/PovertyLevels", - "dc/topic/Poverty", - "Median_Income_Person_18OrMoreYears_Civilian_WithIncome" - ], - "pre_reranking": [ - "Median_Income_Person", - "dc/topic/Income", - "Count_Person_BelowPovertyLevelInThePast12Months", - "Median_Income_Person_18OrMoreYears_Civilian_WithIncome", - "dc/topic/IncomeEquity", - "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", - "Count_Person_15OrMoreYears_NoIncome", - "Count_Person_IncomeOfUpto9999USDollar", - "dc/topic/PovertyLevels", - "Count_Person_IncomeOf75000OrMoreUSDollar", - "Count_Person_IncomeOf50000To64999USDollar", - "Count_Person_AbovePovertyLevelInThePast12Months", - "dc/topic/EconomicEquity", - "dc/topic/Poverty", - "Count_Person_IncomeOf10000To14999USDollar" - ], + "reranking": { + "population": { + "post_reranking": [ + "Count_Person", + "Count_Person_PerArea", + "GrowthRate_Count_Person", + "IncrementalCount_Person", + "Count_Person_Employed_NACE/F", + "dc/topic/SeparatedPopulationByAge", + "dc/topic/AgeDistribution", + "dc/v78t45118s0bb", + "dc/gvnh5cpl9h1rf", + "dc/topic/DivorcedPopulationByDemographic" + ], + "pre_reranking": [ + "Count_Person", + "Count_Person_PerArea", + "Count_Person_Employed_NACE/F", + "IncrementalCount_Person", + "GrowthRate_Count_Person", + "dc/topic/AgeDistribution", + "dc/gvnh5cpl9h1rf", + "dc/v78t45118s0bb", + "dc/topic/SeparatedPopulationByAge", + "dc/topic/DivorcedPopulationByDemographic" + ] + }, + "population rich": { + "post_reranking": [ + "Count_Person_IncomeOf75000OrMoreUSDollar", + "Count_Person_IncomeOf50000To64999USDollar", + "Count_Person_IncomeOf10000To14999USDollar", + "Count_Person_BelowPovertyLevelInThePast12Months", + "Count_Person_IncomeOfUpto9999USDollar", + "Median_Income_Person", + "Count_Person_AbovePovertyLevelInThePast12Months", + "dc/topic/IncomeEquity", + "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", + "Count_Person_15OrMoreYears_NoIncome", + "dc/topic/Income", + "dc/topic/EconomicEquity", + "dc/topic/PovertyLevels", + "dc/topic/Poverty", + "Median_Income_Person_18OrMoreYears_Civilian_WithIncome" + ], + "pre_reranking": [ + "Median_Income_Person", + "dc/topic/Income", + "Count_Person_BelowPovertyLevelInThePast12Months", + "Median_Income_Person_18OrMoreYears_Civilian_WithIncome", + "dc/topic/IncomeEquity", + "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", + "Count_Person_15OrMoreYears_NoIncome", + "Count_Person_IncomeOfUpto9999USDollar", + "dc/topic/PovertyLevels", + "Count_Person_IncomeOf75000OrMoreUSDollar", + "Count_Person_IncomeOf50000To64999USDollar", + "Count_Person_AbovePovertyLevelInThePast12Months", + "dc/topic/EconomicEquity", + "dc/topic/Poverty", + "Count_Person_IncomeOf10000To14999USDollar" + ] + }, + "rich": { + "post_reranking": [ + "dc/topic/IncomeEquity", + "dc/topic/Income", + "dc/topic/EconomicEquity", + "Median_Income_Person", + "GiniIndex_EconomicActivity", + "dc/topic/SDG_1", + "Median_Income_Household", + "dc/topic/Poverty", + "dc/topic/Economy", + "dc/topic/PovertyLevels", + "Median_Income_Household_NonfamilyHousehold", + "Median_Income_Household_FamilyHousehold", + "Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome", + "Median_Earnings_Person", + "Mean_Income_Household", + "dc/topic/sdg_1.2", + "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", + "Median_Income_Person_18OrMoreYears_Civilian_WithIncome" + ], + "pre_reranking": [ + "dc/topic/Income", + "dc/topic/IncomeEquity", + "dc/topic/Poverty", + "Median_Income_Person", + "dc/topic/EconomicEquity", + "Mean_Income_Household", + "dc/topic/PovertyLevels", + "GiniIndex_EconomicActivity", + "Median_Income_Person_18OrMoreYears_Civilian_WithIncome", + "Median_Income_Household", + "Median_Income_Household_FamilyHousehold", + "dc/topic/SDG_1", + "Median_Earnings_Person", + "dc/topic/Economy", + "Median_Income_Household_NonfamilyHousehold", + "dc/topic/sdg_1.2", + "Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person", + "Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome" + ] + } + }, "sv_detection_query_index_type": "", "sv_detection_query_input": "population that is rich in", - "sv_detection_query_stop_words_removal": "population rich" + "sv_detection_query_stop_words_removal": "population rich", + "time_var_reranking": 3.320080041885376 } } } \ No newline at end of file diff --git a/server/lib/nl/detection/detector.py b/server/lib/nl/detection/detector.py index d4e2dea48d..1416299ed3 100644 --- a/server/lib/nl/detection/detector.py +++ b/server/lib/nl/detection/detector.py @@ -25,7 +25,6 @@ from server.lib.nl.detection import llm_detector from server.lib.nl.detection import llm_fallback from server.lib.nl.detection import place -from server.lib.nl.detection import rerank from server.lib.nl.detection import types from server.lib.nl.detection.place_utils import get_similar from server.lib.nl.detection.types import ActualDetectorType @@ -59,7 +58,7 @@ def detect(detector_type: str, query_detection_debug_logs: Dict, mode: str, counters: Counters, - rerank_fn: rerank.RerankCallable = None, + reranker: str = '', allow_triples: bool = False) -> types.Detection: # # In the absence of the PALM API key, fallback to heuristic. @@ -85,7 +84,7 @@ def detect(detector_type: str, query_detection_debug_logs=query_detection_debug_logs, mode=mode, ctr=counters, - rerank_fn=rerank_fn, + reranker=reranker, allow_triples=allow_triples) return llm_detection @@ -99,7 +98,7 @@ def detect(detector_type: str, query_detection_debug_logs=query_detection_debug_logs, mode=mode, counters=counters, - rerank_fn=rerank_fn, + reranker=reranker, allow_triples=allow_triples) if detector_type == RequestedDetectorType.Heuristic.value: return heuristic_detection @@ -130,7 +129,7 @@ def detect(detector_type: str, query_detection_debug_logs=query_detection_debug_logs, mode=mode, ctr=counters, - rerank_fn=rerank_fn, + reranker=reranker, allow_triples=allow_triples) if not llm_detection: counters.err('info_llm_blocked', '') diff --git a/server/lib/nl/detection/heuristic_detector.py b/server/lib/nl/detection/heuristic_detector.py index 10edbad942..93475a8358 100644 --- a/server/lib/nl/detection/heuristic_detector.py +++ b/server/lib/nl/detection/heuristic_detector.py @@ -18,7 +18,6 @@ import server.lib.nl.common.counters as ctr from server.lib.nl.detection import heuristic_classifiers from server.lib.nl.detection import place -from server.lib.nl.detection import rerank from server.lib.nl.detection import utils as dutils from server.lib.nl.detection import variable from server.lib.nl.detection.types import ActualDetectorType @@ -36,7 +35,7 @@ def detect(orig_query: str, query_detection_debug_logs: Dict, mode: str, counters: ctr.Counters, - rerank_fn: rerank.RerankCallable = None, + reranker: str = '', allow_triples: bool = False) -> Detection: place_detection = place.detect_from_query_dc(orig_query, query_detection_debug_logs, @@ -88,7 +87,7 @@ def detect(orig_query: str, sv_detection_result = variable.detect_vars( sv_detection_query, index_type, counters, query_detection_debug_logs["query_transformations"], sv_threshold_bump, - rerank_fn, skip_topics) + reranker, skip_topics) except ValueError as e: counters.err('detect_vars_value_error', { 'q': sv_detection_query, diff --git a/server/lib/nl/detection/llm_detector.py b/server/lib/nl/detection/llm_detector.py index 788f57df2a..edb2791970 100644 --- a/server/lib/nl/detection/llm_detector.py +++ b/server/lib/nl/detection/llm_detector.py @@ -22,7 +22,6 @@ from server.lib.nl.common import utterance from server.lib.nl.detection import llm_api from server.lib.nl.detection import place -from server.lib.nl.detection import rerank from server.lib.nl.detection import types from server.lib.nl.detection import utils as dutils from server.lib.nl.detection import variable @@ -114,7 +113,7 @@ def detect(query: str, query_detection_debug_logs: Dict, mode: str, ctr: counters.Counters, - rerank_fn: rerank.RerankCallable = None, + reranker: str = '', allow_triples: bool = False) -> Detection: # History history = [] @@ -170,7 +169,7 @@ def detect(query: str, index_type, ctr, dummy_dict, - rerank_fn=rerank_fn, + reranker=reranker, skip_topics=skip_topics)) except ValueError as e: ctr.err('llm_detect_vars_value_error', {'q': sv, 'err': str(e)}) diff --git a/server/lib/nl/detection/rerank.py b/server/lib/nl/detection/rerank.py deleted file mode 100644 index 42e4eb64dd..0000000000 --- a/server/lib/nl/detection/rerank.py +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 2024 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from typing import Callable, Dict, List - -import shared.lib.detected_variables as vars - -# Given a list of query <-> candidates pairs as input, returns -# a corresponding list of scores. -RerankCallable = Callable[[List[tuple[str, str]]], List[float]] - - -def rerank(rerank_fn: RerankCallable, query: str, - var_candidates: vars.VarCandidates, - debug_logs: Dict) -> vars.VarCandidates: - # 1. Prepare indexes and inputs - - # List of query-sentence pairs. - qs_pairs: List[List[str, str]] = [] - # Sentence to index into var_candidates.svs. - sentence2idx: Dict[str, int] = {} - for idx, sv in enumerate(var_candidates.svs): - for s in var_candidates.sv2sentences.get(sv, []): - if s.sentence not in sentence2idx: - sentence2idx[s.sentence] = idx - qs_pairs.append([query, s.sentence]) - - # 2. Perform the re-ranking - scores = rerank_fn(qs_pairs).predictions - - # 3. Sort the Query-Sentence pairs based on scores. - sentence2score: Dict[str, float] = { - qs[1]: s for qs, s in zip(qs_pairs, scores) - } - reranked_qs_pairs = sorted(qs_pairs, - key=lambda qs: sentence2score[qs[1]], - reverse=True) - - # 4. Given sorted Query-Sentence pairs, sort the var_candidates - # next. Along the way, also put in the rerank-score. - # NOTE: The earliest ranked sentence determines the order of the - # SV. - reranked_var_candidates = vars.VarCandidates(svs=[], - scores=[], - sv2sentences={}) - added_idxs = set() - for qs_pair in reranked_qs_pairs: - idx = sentence2idx[qs_pair[1]] - if idx in added_idxs: - # We've already processed the SV. - continue - added_idxs.add(idx) - - sv = var_candidates.svs[idx] - reranked_var_candidates.svs.append(sv) - reranked_var_candidates.scores.append(var_candidates.scores[idx]) - sentences_with_rerank_score: List[vars.SentenceScore] = [] - for s in var_candidates.sv2sentences[sv]: - sentences_with_rerank_score.append( - vars.SentenceScore(sentence=s.sentence, - score=s.score, - rerank_score=sentence2score[s.sentence])) - sentences_with_rerank_score.sort(key=lambda s: s.rerank_score, reverse=True) - reranked_var_candidates.sv2sentences[sv] = sentences_with_rerank_score - - debug_logs['pre_reranking'] = var_candidates.svs - debug_logs['post_reranking'] = reranked_var_candidates.svs - - return reranked_var_candidates diff --git a/server/lib/nl/detection/variable.py b/server/lib/nl/detection/variable.py index 29ed23a681..97560485f1 100644 --- a/server/lib/nl/detection/variable.py +++ b/server/lib/nl/detection/variable.py @@ -20,7 +20,6 @@ import server.lib.nl.common.counters as ctr from server.lib.nl.detection import query_util -from server.lib.nl.detection import rerank import server.lib.nl.detection.utils as dutils from server.services import datacommons as dc from shared.lib import constants @@ -52,7 +51,7 @@ def detect_vars(orig_query: str, counters: ctr.Counters, debug_logs: Dict, threshold_bump: float = 0, - rerank_fn: rerank.RerankCallable = None, + reranker: str = '', skip_topics: bool = False) -> vars.VarDetectionResult: # # 1. Prepare all the queries for embeddings lookup, both mono-var and multi-var. @@ -79,10 +78,11 @@ def detect_vars(orig_query: str, # 2. Lookup embeddings with both single-var and multi-var queries. # # Make API call to the NL models/embeddings server. - resp = dc.nl_search_vars(all_queries, index_type, skip_topics) + resp = dc.nl_search_vars(all_queries, index_type, skip_topics, reranker) query2results = { q: vars.dict_to_var_candidates(r) for q, r in resp['queryResults'].items() } + debug_logs.update(resp.get('debugLogs', {})) model_threshold = resp['scoreThreshold'] # @@ -95,16 +95,6 @@ def detect_vars(orig_query: str, result_multivar = _prepare_multivar_candidates(multi_querysets, query2results, multi_var_threshold) - # - # 4. Maybe, rerank - # TODO: Consider reranking for multi-var too. - # - if rerank_fn: - start = time.time() - result_monovar = rerank.rerank(rerank_fn, query_monovar, result_monovar, - debug_logs) - counters.timeit('var_reranking', start) - debug_logs["sv_detection_query_index_type"] = index_type debug_logs["sv_detection_query_input"] = orig_query debug_logs["sv_detection_query_stop_words_removal"] = query_monovar diff --git a/server/routes/explore/helpers.py b/server/routes/explore/helpers.py index bb76cb5232..a06243e0a5 100644 --- a/server/routes/explore/helpers.py +++ b/server/routes/explore/helpers.py @@ -173,19 +173,6 @@ def parse_query_and_detect(request: Dict, backend: str, client: str, # See if we have a variable reranker model specified. reranker = request.args.get('reranker') - rerank_fn = None - if reranker: - if not current_app.config.get('VERTEX_AI_MODELS'): - counters.err('unconfigured_vertex_ai_models', 1) - elif not current_app.config['VERTEX_AI_MODELS'].get(reranker): - counters.err('nonexistent_reranker_model', reranker) - elif not current_app.config['VERTEX_AI_MODELS'][reranker].get( - 'prediction_client'): - counters.err('reranker_without_prediction_client', reranker) - else: - minfo = current_app.config['VERTEX_AI_MODELS'][reranker][ - 'prediction_client'] - rerank_fn = minfo.predict # Query detection routine: # Returns detection for Place, SVs and Query Classifications. @@ -198,7 +185,7 @@ def parse_query_and_detect(request: Dict, backend: str, client: str, query_detection_debug_logs=debug_logs, mode=mode, counters=counters, - rerank_fn=rerank_fn, + reranker=reranker, allow_triples=allow_triples) if not query_detection: err_json = helpers.abort('Sorry, could not complete your request.', @@ -463,4 +450,4 @@ def abort(error_message: str, def _set_blocked(err_json: Dict): err_json['blocked'] = True if err_json.get('debug'): - err_json['debug']['blocked'] = True + err_json['debug']['blocked'] = True \ No newline at end of file diff --git a/server/services/datacommons.py b/server/services/datacommons.py index 67370ccaa6..ced162b8fd 100644 --- a/server/services/datacommons.py +++ b/server/services/datacommons.py @@ -336,11 +336,13 @@ def resolve(nodes, prop): return post(url, {'nodes': nodes, 'property': prop}) -def nl_search_vars(queries, index_type, skip_topics=False): +def nl_search_vars(queries, index_type, skip_topics=False, reranker=''): """Search sv from NL server.""" url = f'{current_app.config["NL_ROOT"]}/api/search_vars?idx={index_type}' if skip_topics: url = f'{url}&skip_topics={skip_topics}' + if reranker: + url = f'{url}&reranker={reranker}' return post(url, {'queries': queries}) From 2930634d075abd10b4ebb32ff11de6d801e430f5 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Tue, 14 May 2024 12:12:36 -0700 Subject: [PATCH 17/28] [nl server] don't try to read vertex ai model info if custom dc (#4233) --- nl_server/config.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nl_server/config.py b/nl_server/config.py index 402dfc85b5..372ea6fc33 100644 --- a/nl_server/config.py +++ b/nl_server/config.py @@ -24,6 +24,7 @@ import yaml from shared.lib import constants +from shared.lib.custom_dc_util import is_custom_dc # Index constants. Passed in `url=` CUSTOM_DC_INDEX: str = 'custom_ft' @@ -112,6 +113,12 @@ class EmbeddingsConfig: # Get Dict of vertex ai model to its info # def _get_vertex_ai_model_info() -> Dict[str, any]: + # Custom DC doesn't use vertex ai so just return an empty dict + # TODO: if we want to use vertex ai for custom dc, can add a file with the + # config to the custom dc docker image here: https://github.com/datacommonsorg/website/blob/master/build/web_compose/Dockerfile#L67 + if is_custom_dc(): + return {} + # This is the path to model info when deployed in gke. if os.path.exists(_VERTEX_AI_MODEL_CONFIG_PATH): with open(_VERTEX_AI_MODEL_CONFIG_PATH) as f: From d7c0048df408f0cb5dd9ca50bd6129de1574b90d Mon Sep 17 00:00:00 2001 From: Bo Xu Date: Tue, 14 May 2024 19:39:38 +0000 Subject: [PATCH 18/28] Update uae vertex endpoints and embedding name (#4232) --- deploy/helm_charts/envs/autopush.yaml | 4 +- deploy/helm_charts/envs/dev.yaml | 4 +- deploy/nl/embeddings.yaml | 10 +-- server/integration_tests/explore_test.py | 2 +- .../whatisthephylumofvolvox/debug_info.json | 58 ++++++++--------- .../debug_info.json | 40 ++++++------ .../debug_info.json | 30 ++++----- .../compareobesityvs.poverty/debug_info.json | 28 ++++----- .../debug_info.json | 52 ++++++++-------- .../debug_info.json | 62 +++++++++---------- .../debug_info.json | 34 +++++----- .../detection_api_reranking/debug_info.json | 38 ++++++------ .../detection_api_uae_idx/chart_config.json | 6 +- 13 files changed, 181 insertions(+), 187 deletions(-) diff --git a/deploy/helm_charts/envs/autopush.yaml b/deploy/helm_charts/envs/autopush.yaml index c2f9d2879d..ea15278681 100644 --- a/deploy/helm_charts/envs/autopush.yaml +++ b/deploy/helm_charts/envs/autopush.yaml @@ -50,9 +50,9 @@ nl: location: us-central1 prediction_endpoint_id: "8518340991868993536" uae-large-v1-model: - project_id: datcom-website-dev + project_id: datcom-nl location: us-central1 - prediction_endpoint_id: "4910007712298827776" + prediction_endpoint_id: "8110162693219942400" sfr-embedding-mistral-model: project_id: datcom-website-dev location: us-central1 diff --git a/deploy/helm_charts/envs/dev.yaml b/deploy/helm_charts/envs/dev.yaml index 505d530ef0..cbd16ee4e1 100644 --- a/deploy/helm_charts/envs/dev.yaml +++ b/deploy/helm_charts/envs/dev.yaml @@ -47,9 +47,9 @@ nl: location: us-central1 prediction_endpoint_id: "8518340991868993536" uae-large-v1-model: - project_id: datcom-website-dev + project_id: datcom-nl location: us-central1 - prediction_endpoint_id: "4910007712298827776" + prediction_endpoint_id: "1400502935879680000" sfr-embedding-mistral-model: project_id: datcom-website-dev location: us-central1 diff --git a/deploy/nl/embeddings.yaml b/deploy/nl/embeddings.yaml index 7492e9d730..5ccf818d6f 100644 --- a/deploy/nl/embeddings.yaml +++ b/deploy/nl/embeddings.yaml @@ -43,13 +43,9 @@ indexes: index_endpoint: projects/496370955550/locations/us-central1/indexEndpoints/8500794985312944128 index_id: dc_all_minilm_l6_v2_ft_1709655496660 model: dc-all-minilm-l6-v2-model - medium_vertex_uae: - store: VERTEXAI - project_id: datcom-website-dev - location: us-central1 - index_endpoint_root: 302175072.us-central1-496370955550.vdb.vertexai.goog - index_endpoint: projects/496370955550/locations/us-central1/indexEndpoints/8500794985312944128 - index_id: uae_large_v1_1709655438364 + base_uae_mem: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_medium_2024_05_13_22_58_40.4910007712298827776.csv model: uae-large-v1-model medium_vertex_mistral: store: VERTEXAI diff --git a/server/integration_tests/explore_test.py b/server/integration_tests/explore_test.py index 49e1e3e802..21c57f7c11 100644 --- a/server/integration_tests/explore_test.py +++ b/server/integration_tests/explore_test.py @@ -293,7 +293,7 @@ def test_detection_basic_vertex(self): def test_detection_basic_uae(self): self.run_detection('detection_api_uae_idx', ['Commute in California'], test='unittest', - idx='medium_vertex_uae') + idx='base_uae_mem') def test_detection_basic_sfr(self): self.run_detection('detection_api_sfr_idx', ['Commute in California'], diff --git a/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json b/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json index 83c4ac197c..01942671a7 100644 --- a/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json +++ b/server/integration_tests/test_data/detection_api_bio/whatisthephylumofvolvox/debug_info.json @@ -10,18 +10,18 @@ "query_with_places_removed": "what is the phylum of", "sv_matching": { "CosineScore": [ - 0.3551090359687805, - 0.3126291334629059, - 0.2790032923221588, - 0.2728559970855713, + 0.35510891675949097, + 0.31262922286987305, + 0.2790031135082245, + 0.27285584807395935, 0.2712491452693939, - 0.26562047004699707, - 0.2628049850463867, - 0.25592702627182007, - 0.25521552562713623, - 0.2551817297935486, - 0.2533870041370392, - 0.2529027760028839 + 0.2656203806400299, + 0.2628048360347748, + 0.25592708587646484, + 0.2552153766155243, + 0.2551816999912262, + 0.25338709354400635, + 0.252902626991272 ], "MultiSV": {}, "Query": "what is the phylum of", @@ -42,25 +42,25 @@ }, "props_matching": { "CosineScore": [ - 1.0, - 0.4752839207649231, - 0.3615417182445526, - 0.342009961605072, - 0.32933083176612854, - 0.31845176219940186, - 0.3146698772907257, + 1.0000001192092896, + 0.47528398036956787, + 0.36154165863990784, + 0.34200987219810486, + 0.329330712556839, + 0.3184516131877899, + 0.3146699070930481, 0.3083952069282532, - 0.30794063210487366, - 0.3046300709247589, - 0.28270867466926575, - 0.28187552094459534, - 0.2808277904987335, - 0.2804529666900635, - 0.2742983400821686, - 0.27150508761405945, - 0.2707182466983795, - 0.26954683661460876, - 0.2599007785320282 + 0.3079405426979065, + 0.3046301007270813, + 0.2827085852622986, + 0.281875342130661, + 0.2808275818824768, + 0.28045281767845154, + 0.27429816126823425, + 0.27150505781173706, + 0.27071818709373474, + 0.2695465087890625, + 0.25990065932273865 ], "PROP": [ "phylum", diff --git a/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json b/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json index 68e03743cd..e9e7bedf1d 100644 --- a/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json +++ b/server/integration_tests/test_data/detection_api_bio/whattypesofgenesarefgfr1,apoe,andache/debug_info.json @@ -12,9 +12,9 @@ "query_with_places_removed": "what types of genes are and", "sv_matching": { "CosineScore": [ - 0.5237789154052734, + 0.5237792134284973, 0.4192213714122772, - 0.40101927518844604 + 0.4010191857814789 ], "MultiSV": {}, "Query": "what types of genes are and", @@ -27,27 +27,27 @@ "props_matching": { "CosineScore": [ 0.9086108803749084, - 0.7445293068885803, - 0.7330226898193359, - 0.7175890207290649, - 0.6834694147109985, - 0.6590197682380676, - 0.6340397596359253, - 0.5988120436668396, - 0.5958784818649292, - 0.5850148797035217, - 0.581078827381134, - 0.5432419776916504, - 0.5399730205535889, - 0.5320466756820679, + 0.7445294260978699, + 0.7330226302146912, + 0.7175889015197754, + 0.6834691762924194, + 0.6590197086334229, + 0.6340402364730835, + 0.5988123416900635, + 0.5958786010742188, + 0.5850145816802979, + 0.5810792446136475, + 0.5432420969009399, + 0.5399730801582336, + 0.5320467352867126, 0.5309585928916931, - 0.5142701864242554, + 0.5142703056335449, 0.5125278234481812, - 0.4610598683357239, + 0.46105992794036865, 0.4441080093383789, - 0.3982292115688324, - 0.3944430351257324, - 0.3922899067401886 + 0.39822936058044434, + 0.3944428861141205, + 0.3922898471355438 ], "PROP": [ "typeOfGene", diff --git a/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json index 9753904073..ae3ddedea1 100644 --- a/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/comparemalepopulationwithfemalepopulation/debug_info.json @@ -9,19 +9,19 @@ "sv_matching": { "CosineScore": [ 0.9213768243789673, - 0.8895530104637146, - 0.8393946290016174, - 0.807041347026825, - 0.8066001534461975, + 0.8895533680915833, + 0.839394211769104, + 0.8070412874221802, + 0.8066006302833557, 0.8025591373443604, - 0.7949637174606323, - 0.7862058877944946, - 0.7849376797676086, - 0.7820712327957153, + 0.7949635982513428, + 0.7862057685852051, + 0.7849380373954773, + 0.782071590423584, 0.7803113460540771, - 0.7780777812004089, - 0.7691033482551575, - 0.7682780027389526 + 0.778078019618988, + 0.7691034078598022, + 0.7682781219482422 ], "MultiSV": { "Candidates": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.000000238418579 + 1.0 ], "QueryPart": "female population", "SV": [ @@ -55,7 +55,7 @@ "Parts": [ { "CosineScore": [ - 0.8629987835884094 + 0.8629987239837646 ], "QueryPart": "male", "SV": [ @@ -64,7 +64,7 @@ }, { "CosineScore": [ - 0.9757855534553528 + 0.975785493850708 ], "QueryPart": "population female population", "SV": [ @@ -79,7 +79,7 @@ "Parts": [ { "CosineScore": [ - 0.9318190217018127 + 0.9318187236785889 ], "QueryPart": "male population female", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json index 9740ff917d..5afd2c29c9 100644 --- a/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/compareobesityvs.poverty/debug_info.json @@ -8,20 +8,20 @@ "query_with_places_removed": "compare obesity vs poverty", "sv_matching": { "CosineScore": [ - 0.8119862079620361, - 0.7225804924964905, - 0.71645188331604, - 0.6980435252189636, - 0.6908259987831116, - 0.6851561665534973, - 0.6847792267799377, + 0.8119863867759705, + 0.7225801944732666, + 0.7164520025253296, + 0.6980432271957397, + 0.6908258199691772, + 0.685155987739563, + 0.6847795248031616, 0.6683323383331299, - 0.6657034158706665, - 0.6602826118469238, + 0.665703535079956, + 0.6602827310562134, 0.6422475576400757, - 0.6345550417900085, - 0.6318432092666626, - 0.627977728843689 + 0.634555459022522, + 0.6318431496620178, + 0.6279779076576233 ], "MultiSV": { "Candidates": [ @@ -31,7 +31,7 @@ "Parts": [ { "CosineScore": [ - 0.9060240983963013 + 0.906023383140564 ], "QueryPart": "obesity", "SV": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.0000003576278687 + 1.0 ], "QueryPart": "poverty", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json index e29b0e8453..2c1880b78d 100644 --- a/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/howarefactorslikeobesity,bloodpressureandasthmaimpactedbyclimatechange/debug_info.json @@ -8,20 +8,20 @@ "query_with_places_removed": "how are factors like obesity , blood pressure and asthma impacted by climate change", "sv_matching": { "CosineScore": [ - 0.5826337337493896, - 0.5660892724990845, - 0.5590713620185852, - 0.5521885752677917, - 0.5492845177650452, - 0.547248363494873, - 0.5235278606414795, - 0.5221830010414124, - 0.515220582485199, - 0.5129307508468628, - 0.5124291777610779, + 0.582633376121521, + 0.5660893321037292, + 0.55907142162323, + 0.5521887540817261, + 0.5492846965789795, + 0.5472482442855835, + 0.523527979850769, + 0.5221829414367676, + 0.5152206420898438, + 0.5129308700561523, + 0.5124291181564331, 0.5115020871162415, - 0.5106161236763, - 0.504896342754364 + 0.5106164216995239, + 0.5048959851264954 ], "MultiSV": { "Candidates": [ @@ -31,7 +31,7 @@ "Parts": [ { "CosineScore": [ - 0.7528942823410034 + 0.7528940439224243 ], "QueryPart": "factors like obesity blood pressure asthma impacted", "SV": [ @@ -40,7 +40,7 @@ }, { "CosineScore": [ - 1.0000003576278687 + 1.0000001192092896 ], "QueryPart": "climate change", "SV": [ @@ -55,8 +55,8 @@ "Parts": [ { "CosineScore": [ - 0.7753192186355591, - 0.7271102070808411 + 0.7753188014030457, + 0.7271100282669067 ], "QueryPart": "factors like obesity blood pressure asthma", "SV": [ @@ -81,8 +81,8 @@ "Parts": [ { "CosineScore": [ - 0.7908685803413391, - 0.7452999949455261 + 0.7908685207366943, + 0.7453003525733948 ], "QueryPart": "factors like obesity", "SV": [ @@ -92,7 +92,7 @@ }, { "CosineScore": [ - 1.0 + 1.0000004768371582 ], "QueryPart": "blood pressure", "SV": [ @@ -101,8 +101,8 @@ }, { "CosineScore": [ - 0.6855661273002625, - 0.6576030850410461 + 0.6855659484863281, + 0.6576032042503357 ], "QueryPart": "asthma impacted climate change", "SV": [ @@ -118,8 +118,8 @@ "Parts": [ { "CosineScore": [ - 0.7555328607559204, - 0.721181333065033 + 0.7555330991744995, + 0.7211811542510986 ], "QueryPart": "factors like obesity blood pressure", "SV": [ @@ -129,8 +129,8 @@ }, { "CosineScore": [ - 0.6855661273002625, - 0.6576030850410461 + 0.6855659484863281, + 0.6576032042503357 ], "QueryPart": "asthma impacted climate change", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json index b547d65b4a..b877a40de8 100644 --- a/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/numberofpoorhispanicwomenwithphd/debug_info.json @@ -10,14 +10,14 @@ "CosineScore": [ 0.8903406858444214, 0.8845490217208862, - 0.845656156539917, - 0.8409276008605957, - 0.8346197009086609, - 0.8306021094322205, - 0.8300771713256836, - 0.8298372626304626, - 0.8254846930503845, - 0.8253124356269836 + 0.8456564545631409, + 0.8409274816513062, + 0.8346197605133057, + 0.830601692199707, + 0.830077052116394, + 0.829837441444397, + 0.825484573841095, + 0.825312614440918 ], "MultiSV": { "Candidates": [ @@ -27,17 +27,17 @@ "Parts": [ { "CosineScore": [ - 0.8638868927955627, - 0.8613189458847046, - 0.852301836013794, - 0.8326531052589417, - 0.8307946920394897, - 0.8306549787521362, - 0.8281030654907227, - 0.8209190368652344, - 0.8201780319213867, - 0.8199412226676941, - 0.817965567111969 + 0.8638870120048523, + 0.861319363117218, + 0.8523017168045044, + 0.8326529860496521, + 0.8307947516441345, + 0.8306547999382019, + 0.8281034827232361, + 0.8209193348884583, + 0.8201779127120972, + 0.8199417591094971, + 0.8179653882980347 ], "QueryPart": "number poor hispanic", "SV": [ @@ -56,7 +56,7 @@ }, { "CosineScore": [ - 0.9458003044128418 + 0.9458004236221313 ], "QueryPart": "women phd", "SV": [ @@ -71,8 +71,8 @@ "Parts": [ { "CosineScore": [ - 0.9476636052131653, - 0.9369949698448181 + 0.947663426399231, + 0.9369953870773315 ], "QueryPart": "number poor hispanic women", "SV": [ @@ -82,7 +82,7 @@ }, { "CosineScore": [ - 0.8309073448181152 + 0.8309072256088257 ], "QueryPart": "phd", "SV": [ @@ -97,11 +97,11 @@ "Parts": [ { "CosineScore": [ - 0.6569583415985107, - 0.6552730798721313, - 0.6206246614456177, - 0.6172628402709961, - 0.6135541200637817 + 0.6569581031799316, + 0.6552729606628418, + 0.6206240653991699, + 0.6172623634338379, + 0.6135539412498474 ], "QueryPart": "number poor", "SV": [ @@ -114,9 +114,9 @@ }, { "CosineScore": [ - 0.9240201711654663, - 0.914476215839386, - 0.8951904773712158 + 0.9240200519561768, + 0.9144761562347412, + 0.8951907753944397 ], "QueryPart": "hispanic women phd", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json index 3db5536cc7..ce28732a1b 100644 --- a/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json +++ b/server/integration_tests/test_data/detection_api_multivar/showmetheimpactofclimatechangeondrought/debug_info.json @@ -9,15 +9,15 @@ "sv_matching": { "CosineScore": [ 0.8618602752685547, - 0.8366554379463196, - 0.8204663395881653, - 0.7946637272834778, + 0.8366554975509644, + 0.820466160774231, + 0.7946640849113464, 0.7720614671707153, - 0.7232210636138916, - 0.6951401829719543, - 0.6518917083740234, - 0.6400111317634583, - 0.6347747445106506 + 0.7232214212417603, + 0.6951402425765991, + 0.6518923044204712, + 0.6400114297866821, + 0.6347748041152954 ], "MultiSV": { "Candidates": [ @@ -27,7 +27,7 @@ "Parts": [ { "CosineScore": [ - 0.8647744059562683 + 0.8647744655609131 ], "QueryPart": "show climate change", "SV": [ @@ -36,7 +36,7 @@ }, { "CosineScore": [ - 0.9999999403953552 + 1.000000238418579 ], "QueryPart": "drought", "SV": [ @@ -51,7 +51,7 @@ "Parts": [ { "CosineScore": [ - 0.7687962055206299 + 0.7687957882881165 ], "QueryPart": "show climate", "SV": [ @@ -60,8 +60,8 @@ }, { "CosineScore": [ - 0.9125531315803528, - 0.8689354658126831 + 0.9125533103942871, + 0.8689355850219727 ], "QueryPart": "change drought", "SV": [ @@ -77,7 +77,7 @@ "Parts": [ { "CosineScore": [ - 0.5150812864303589 + 0.5150814056396484 ], "QueryPart": "show", "SV": [ @@ -86,9 +86,9 @@ }, { "CosineScore": [ - 0.9151012301445007, - 0.8943073749542236, - 0.8703457117080688 + 0.9151014089584351, + 0.8943068981170654, + 0.8703451156616211 ], "QueryPart": "climate change drought", "SV": [ diff --git a/server/integration_tests/test_data/detection_api_reranking/debug_info.json b/server/integration_tests/test_data/detection_api_reranking/debug_info.json index 311c766f2c..25ff803980 100644 --- a/server/integration_tests/test_data/detection_api_reranking/debug_info.json +++ b/server/integration_tests/test_data/detection_api_reranking/debug_info.json @@ -10,20 +10,20 @@ "query_with_places_removed": "population that is rich in", "sv_matching": { "CosineScore": [ - 0.7305744290351868, - 0.725152313709259, - 0.711540162563324, - 0.7670480608940125, - 0.7392959594726562, - 0.8287845253944397, - 0.7240196466445923, - 0.7594515085220337, - 0.7549043297767639, - 0.7497627139091492, - 0.7769769430160522, - 0.722908616065979, - 0.7306227087974548, - 0.717779815196991, + 0.730574369430542, + 0.7251524925231934, + 0.7115401029586792, + 0.7670482397079468, + 0.7392961978912354, + 0.8287838697433472, + 0.7240197658538818, + 0.7594513893127441, + 0.7549045085906982, + 0.7497623562812805, + 0.7769770622253418, + 0.7229084372520447, + 0.7306228876113892, + 0.7177798748016357, 0.7594659328460693 ], "MultiSV": { @@ -34,7 +34,7 @@ "Parts": [ { "CosineScore": [ - 0.9012579917907715 + 0.9012580513954163 ], "QueryPart": "population", "SV": [ @@ -43,9 +43,9 @@ }, { "CosineScore": [ - 0.7822709679603577, - 0.8562442064285278, - 0.7393685579299927, + 0.7822712659835815, + 0.8562444448471069, + 0.7393684387207031, 0.7447097301483154 ], "QueryPart": "rich", @@ -227,7 +227,7 @@ "sv_detection_query_index_type": "", "sv_detection_query_input": "population that is rich in", "sv_detection_query_stop_words_removal": "population rich", - "time_var_reranking": 3.320080041885376 + "time_var_reranking": 3.1498451232910156 } } } \ No newline at end of file diff --git a/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json b/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json index 2c9118336c..e58de2c630 100644 --- a/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json +++ b/server/integration_tests/test_data/detection_api_uae_idx/chart_config.json @@ -22,10 +22,8 @@ "dc/topic/WorkCommute", "dc/topic/CommuteMode", "dc/topic/CommuteModeByOccupation", - "dc/vgwx3kjjzz8wf", - "dc/1fw0t5m6459gb", - "dc/62gn48xpbqew9", - "dc/nvrxn11yxlen2", + "dc/h7ft916g93ys2", + "dc/fyc3yvjy0xw6g", "dc/hbkh95kc7pkb6" ] } \ No newline at end of file From 40c44a69f3fa296e995f947c230159222783c4e0 Mon Sep 17 00:00:00 2001 From: Prem Ramaswami Date: Tue, 14 May 2024 17:18:25 -0400 Subject: [PATCH 19/28] Update README.md (#4236) Adding where the redirects go to for future users. --- server/routes/redirects/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/routes/redirects/README.md b/server/routes/redirects/README.md index 3bc15b5a68..a8ac71387b 100644 --- a/server/routes/redirects/README.md +++ b/server/routes/redirects/README.md @@ -2,6 +2,8 @@ The `redirects.json` file in this directory is stored in a GCS bucket and read by the production Flask server on each redirection call (to achieve immediate update without rollout/restart). +Redirects can be used at datacommons.org/link/ + Make changes to this file **very carefully**, and then copy it over as: ```bash From f47084d055df915da9103b7cacca65ffb8928f12 Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 14:40:28 -0700 Subject: [PATCH 20/28] NL: Check before accessing model (#4237) --- nl_server/embeddings_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nl_server/embeddings_map.py b/nl_server/embeddings_map.py index 035312c3b8..ae084085d6 100644 --- a/nl_server/embeddings_map.py +++ b/nl_server/embeddings_map.py @@ -112,6 +112,6 @@ def _set_embeddings(self, idx_name: str, idx_info: IndexConfig): raise e # if store successfully created, set it in embeddings_map - if store: + if store and idx_info.model in self.name_to_emb_model: self.embeddings_map[idx_name] = Embeddings( model=self.name_to_emb_model[idx_info.model], store=store) From d8a5c9d7350bfc23f337ad72109a276fb30e6464 Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 16:46:01 -0700 Subject: [PATCH 21/28] NL: Use fixed higher thresholds (#4238) Reason: turns out that the bigger models have a shorter range of scores, and having a % based higher confidence threshold makes "Low confidence" message more common, and could hurt Bard recall. --- server/lib/nl/common/commentary.py | 6 ++--- server/lib/nl/detection/heuristic_detector.py | 9 ++++---- server/lib/nl/detection/utils.py | 9 ++++---- server/lib/nl/detection/variable.py | 4 ++-- server/lib/nl/explore/params.py | 8 +++---- shared/lib/constants.py | 23 ++++++------------- 6 files changed, 26 insertions(+), 33 deletions(-) diff --git a/server/lib/nl/common/commentary.py b/server/lib/nl/common/commentary.py index e739dd03b7..527c6f59f0 100644 --- a/server/lib/nl/common/commentary.py +++ b/server/lib/nl/common/commentary.py @@ -21,7 +21,7 @@ from server.lib.nl.detection.utils import compute_final_threshold from server.lib.nl.detection.utils import get_top_sv_score from server.lib.nl.explore import params -from shared.lib.constants import SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP +from shared.lib.constants import SV_SCORE_HIGH_CONFIDENCE_THRESHOLD # # List of user messages! @@ -160,11 +160,11 @@ def user_message(uttr: Utterance) -> UserMessage: # prefer showing that, since we say our confidence is low... # If the score is below this, then we report low confidence - # (we reuse the threshold bump we use for determining something + # (we reuse the threshold we use for determining something # is "high confidence") low_confidence_score_report_threshold = compute_final_threshold( uttr.detection.svs_detected.model_threshold, - SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP) + SV_SCORE_HIGH_CONFIDENCE_THRESHOLD) if (uttr.rankedCharts and (uttr.sv_source == FulfillmentResult.CURRENT_QUERY or diff --git a/server/lib/nl/detection/heuristic_detector.py b/server/lib/nl/detection/heuristic_detector.py index 93475a8358..a354451669 100644 --- a/server/lib/nl/detection/heuristic_detector.py +++ b/server/lib/nl/detection/heuristic_detector.py @@ -79,15 +79,15 @@ def detect(orig_query: str, attributes=SimpleClassificationAttributes())) # Step 4: Identify the SV matched based on the query. - sv_threshold_bump = params.sv_threshold_bump(mode) + sv_threshold_override = params.sv_threshold_override(mode) sv_detection_query = dutils.remove_date_from_query(query, classifications) skip_topics = mode == params.QueryMode.TOOLFORMER sv_detection_result = dutils.empty_var_detection_result() try: sv_detection_result = variable.detect_vars( sv_detection_query, index_type, counters, - query_detection_debug_logs["query_transformations"], sv_threshold_bump, - reranker, skip_topics) + query_detection_debug_logs["query_transformations"], + sv_threshold_override, reranker, skip_topics) except ValueError as e: counters.err('detect_vars_value_error', { 'q': sv_detection_query, @@ -96,7 +96,8 @@ def detect(orig_query: str, # Set the SVDetection. sv_detection = dutils.create_sv_detection(sv_detection_query, sv_detection_result, - sv_threshold_bump, allow_triples) + sv_threshold_override, + allow_triples) return Detection(original_query=orig_query, cleaned_query=cleaned_query, diff --git a/server/lib/nl/detection/utils.py b/server/lib/nl/detection/utils.py index 14e184f7c4..0177aa9de3 100644 --- a/server/lib/nl/detection/utils.py +++ b/server/lib/nl/detection/utils.py @@ -182,19 +182,20 @@ def _get_sv_and_prop_candidates( def compute_final_threshold(model_threshold: float, - threshold_bump: float) -> float: - return model_threshold + abs((1 - model_threshold) * threshold_bump) + threshold_override: float) -> float: + # Pick the higher of the two. + return max(model_threshold, threshold_override) def create_sv_detection(query: str, var_detection_result: dvars.VarDetectionResult, - sv_threshold_bump: float = 0, + sv_threshold_override: float = 0, allow_triples: bool = False) -> SVDetection: sv_candidates, prop_candidates = _get_sv_and_prop_candidates( var_detection_result, allow_triples) sv_threshold = compute_final_threshold(var_detection_result.model_threshold, - sv_threshold_bump) + sv_threshold_override) return SVDetection(query=query, single_sv=sv_candidates, multi_sv=var_detection_result.multi_var, diff --git a/server/lib/nl/detection/variable.py b/server/lib/nl/detection/variable.py index 97560485f1..e8ee864956 100644 --- a/server/lib/nl/detection/variable.py +++ b/server/lib/nl/detection/variable.py @@ -50,7 +50,7 @@ def detect_vars(orig_query: str, index_type: str, counters: ctr.Counters, debug_logs: Dict, - threshold_bump: float = 0, + threshold_override: float = 0, reranker: str = '', skip_topics: bool = False) -> vars.VarDetectionResult: # @@ -90,7 +90,7 @@ def detect_vars(orig_query: str, # # If caller had an overriden threshold bump, apply that. multi_var_threshold = dutils.compute_final_threshold(model_threshold, - threshold_bump) + threshold_override) result_monovar = query2results[query_monovar] result_multivar = _prepare_multivar_candidates(multi_querysets, query2results, multi_var_threshold) diff --git a/server/lib/nl/explore/params.py b/server/lib/nl/explore/params.py index b70db14047..526b63ffe9 100644 --- a/server/lib/nl/explore/params.py +++ b/server/lib/nl/explore/params.py @@ -71,12 +71,12 @@ class Clients(str, Enum): # Get the SV score threshold for the given mode. -def sv_threshold_bump(mode: str) -> bool | None: +def sv_threshold_override(mode: str) -> bool | None: if mode == QueryMode.STRICT: - return constants.SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP + return constants.SV_SCORE_HIGH_CONFIDENCE_THRESHOLD elif mode == QueryMode.TOOLFORMER: - return constants.SV_SCORE_TOOLFORMER_THRESHOLD_BUMP - # By default no bump. + return constants.SV_SCORE_TOOLFORMER_THRESHOLD + # The default is 0, so model-score will be used. return 0.0 diff --git a/shared/lib/constants.py b/shared/lib/constants.py index 33d4a66924..6f86f2f415 100644 --- a/shared/lib/constants.py +++ b/shared/lib/constants.py @@ -378,22 +378,13 @@ SV_SCORE_DEFAULT_THRESHOLD = 0.5 # -# The Cosine score "bump" is the increase over default model-threshold -# that is applied as follows: -# -# model-threshold + (1 - model-threshold) * bump -# -# That is, we increase the threshold by this fraction of the -# (1 - model-threshold) window that the scores are valid in. -# -# Bump value for high-confidence threshold. -# bump of 0.4 => a threshold of 0.7 if default is 0.5 -# => a threshold of 0.82 if default is 0.7 -SV_SCORE_HIGH_CONFIDENCE_THRESHOLD_BUMP = 0.4 -# Bump value for when running in mode=toolformer. -# bump of 0.6 => a threshold of 0.8 if default is 0.5 -# => a threshold of 0.88 if default is 0.7 -SV_SCORE_TOOLFORMER_THRESHOLD_BUMP = 0.6 +# The Cosine high-confidence score threshold override. +# NOTE: Used only when the model-threshold is lower than this. +SV_SCORE_HIGH_CONFIDENCE_THRESHOLD = 0.7 + +# The Cosine score threshold for mode=toolformer. +# NOTE: Used only when the model-threshold is lower than this. +SV_SCORE_TOOLFORMER_THRESHOLD = 0.8 # A cosine score differential we use to indicate if scores # that differ by up to this amount are "near" SVs. From e8571096cb87b06ad6f5839a501f9fa1f9bc2f50 Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 17:04:34 -0700 Subject: [PATCH 22/28] Make redirects relative paths (#4239) --- server/routes/redirects/redirects.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/routes/redirects/redirects.json b/server/routes/redirects/redirects.json index 7daf3b9cfa..5ef6f3e55c 100644 --- a/server/routes/redirects/redirects.json +++ b/server/routes/redirects/redirects.json @@ -1,5 +1,5 @@ { - "tech-soup-cemefi": "https://datacommons.org/tools/visualization#visType%3Dtimeline%26place%3Dcountry%2FMEX%26placeType%3DAdministrativeArea1%26sv%3D%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS.AGE--Y_GE15__SEX--F%22%7D___%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS.AGE--Y_GE15__SEX--M%22%7D___%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS%22%7D", + "tech-soup-cemefi": "/tools/visualization#visType%3Dtimeline%26place%3Dcountry%2FMEX%26placeType%3DAdministrativeArea1%26sv%3D%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS.AGE--Y_GE15__SEX--F%22%7D___%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS.AGE--Y_GE15__SEX--M%22%7D___%7B%22dcid%22%3A%22sdg%2FAG_PRD_FIESMS%22%7D", "demo": "/explore/#aq=Which+countries+in+Africa+have+had+the+greatest+increase+in+electricity+access?___How+has+poverty+changed+over+time+in+these+places?___How+has+life+expectency+increased+in+these+countries?___How+has+the+GDP+grown?___What+is+the+greenhouse+gas+emissions+from+these+places?___How+do+these+places+compare+with+the+US+and+Germany?&ae=1", "demo-africa-elec": "/explore/#aq=Which+countries+in+Africa+have+had+the+greatest+increase+in+electricity+access?___How+has+poverty+changed+over+time+in+these+places?___How+has+life+expectency+increased+in+these+countries?___How+has+the+GDP+grown?___What+is+the+greenhouse+gas+emissions+from+these+places?___How+do+these+places+compare+with+the+US+and+Germany?&ae=1", "demo-india": "/explore/#aq=Which+states+in+India+have+the+highest+poverty+levels+per+capita?___How+much+has+infant+mortality+changed+over+time+in+these+states?___How+does+the+literacy+rate+compare?___How+does+literacy+rate+compare+to+poverty+in+India?&ae=1", @@ -8,7 +8,7 @@ "demo-sustainability": "/explore/#aq=Tell+me+about+greenhouse+gas+emissions+in+Europe___What+are+the+top+greenhouse+gas+emitting+countries+in+Europe?___Show+me+a+plot+of+greenhouse+gas+emissions+by+country+in+Europe+vs+their+GDP___Show+me+a+plot+of+greenhouse+gas+emissions+per+capita+by+country+in+Europe+vs+their+GDP+per+capita&ae=1", "demo-california": "/explore/#aq=What+are+the+projected+temperature+extremes+across+California?___Where+were+the+major+fires+in+the+last+year+in+California?___Tell+me+more+about+Placer+County___What+were+the+most+common+jobs+there?&ae=1", "demo5": "/explore/#aq=Which+countries+in+Asia+spend+the+most+on+education___How+do+these+countries+compare+with+France___Which+countries+have+the+most+inward+remittances___How+does+that+correlate+with+debt&ae=1", - "dc-coverage-country": "https://datacommons.org/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_Country%22%7D", - "dc-coverage-aa1": "https://datacommons.org/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_AdministrativeArea1%22%7D", - "dc-coverage-aa2": "https://datacommons.org/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_AdministrativeArea2%22%7D" + "dc-coverage-country": "/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_Country%22%7D", + "dc-coverage-aa1": "/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_AdministrativeArea1%22%7D", + "dc-coverage-aa2": "/tools/visualization#visType%3Dmap%26place%3DEarth%26placeType%3DCountry%26sv%3D%7B%22dcid%22%3A%22Count_Variable_AdministrativeArea2%22%7D" } From cba18d1341bc2d7b7193fba0001a8b8840e5c93f Mon Sep 17 00:00:00 2001 From: Prashanth R Date: Tue, 14 May 2024 19:07:12 -0700 Subject: [PATCH 23/28] NL: avoid NULL access in healthz (#4240) Custom DC crashes here. This likely won't fix it, but we might know more... --- nl_server/loader.py | 1 + nl_server/routes.py | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/nl_server/loader.py b/nl_server/loader.py index d991c03a8e..e019a5455c 100644 --- a/nl_server/loader.py +++ b/nl_server/loader.py @@ -103,6 +103,7 @@ def _load_yaml(flask_env: str) -> Dict[str, any]: embeddings_map['indexes'].update(custom_map.get('indexes', {})) embeddings_map['models'].update(custom_map.get('models', {})) + logging.info(f'Attempting to load NL YAML: {embeddings_map}') return embeddings_map diff --git a/nl_server/routes.py b/nl_server/routes.py index 0625cb8cda..1b90a0f089 100644 --- a/nl_server/routes.py +++ b/nl_server/routes.py @@ -37,10 +37,11 @@ def healthz(): nl_embeddings = current_app.config[config.NL_EMBEDDINGS_KEY].get_index( config.DEFAULT_INDEX_TYPE) - result: VarCandidates = search.search_vars( - [nl_embeddings], ['life expectancy'])['life expectancy'] - if result.svs and 'Expectancy' in result.svs[0]: - return 'OK', 200 + if nl_embeddings: + result: VarCandidates = search.search_vars( + [nl_embeddings], ['life expectancy'])['life expectancy'] + if result.svs and 'Expectancy' in result.svs[0]: + return 'OK', 200 return 'Service Unavailable', 500 From bca78d6b99daabc7c2e591a1973f4adff9589c93 Mon Sep 17 00:00:00 2001 From: Bo Xu Date: Wed, 15 May 2024 03:12:52 +0000 Subject: [PATCH 24/28] Major update of base embedding descriptions (#4234) This is a major effort to improve base DC variable and topic descriptions. * Keep only 1 well curated description for each stat var. * Use consistent descriptions across similar stat vars. * Removed a bunch of multi PV variables which mostly adds noise. * Remove variables for "other" that needs context to represent. As a result. There is no need for various alternative csv files for the base DC embeddings. --- deploy/nl/embeddings.yaml | 2 +- nl_server/config.py | 5 +- nl_server/model/sentence_transformer.py | 17 +- tools/nl/embeddings/build_embeddings.py | 2 +- .../alternatives/main/other_alternatives.csv | 1185 -- .../alternatives/main/palm_alternatives.csv | 1100 -- .../main/palm_batch13k_alternatives.csv | 14189 ---------------- .../data/autogen_input/medium/autogen_svs.csv | 4978 ------ .../data/curated_input/main/main_topics.csv | 28 +- .../data/curated_input/main/sheets_svs.csv | 4808 ++++-- .../data/preindex/medium/duplicate_names.csv | 196 +- .../data/preindex/medium/sv_descriptions.csv | 9694 ++++------- 12 files changed, 7320 insertions(+), 28884 deletions(-) delete mode 100644 tools/nl/embeddings/data/alternatives/main/other_alternatives.csv delete mode 100644 tools/nl/embeddings/data/alternatives/main/palm_alternatives.csv delete mode 100644 tools/nl/embeddings/data/alternatives/main/palm_batch13k_alternatives.csv delete mode 100644 tools/nl/embeddings/data/autogen_input/medium/autogen_svs.csv diff --git a/deploy/nl/embeddings.yaml b/deploy/nl/embeddings.yaml index 5ccf818d6f..3d4b520dab 100644 --- a/deploy/nl/embeddings.yaml +++ b/deploy/nl/embeddings.yaml @@ -45,7 +45,7 @@ indexes: model: dc-all-minilm-l6-v2-model base_uae_mem: store: MEMORY - embeddings: gs://datcom-nl-models/embeddings_medium_2024_05_13_22_58_40.4910007712298827776.csv + embeddings: gs://datcom-nl-models/embeddings_medium_2024_05_14_17_00_30.4910007712298827776.csv model: uae-large-v1-model medium_vertex_mistral: store: VERTEXAI diff --git a/nl_server/config.py b/nl_server/config.py index 372ea6fc33..3e09114691 100644 --- a/nl_server/config.py +++ b/nl_server/config.py @@ -1,4 +1,4 @@ -# Copyright 2023 Google LLC +# Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -30,9 +30,6 @@ CUSTOM_DC_INDEX: str = 'custom_ft' DEFAULT_INDEX_TYPE: str = 'medium_ft' -# The default base model we use. -EMBEDDINGS_BASE_MODEL_NAME: str = 'all-MiniLM-L6-v2' - # App Config constants. ATTRIBUTE_MODEL_KEY: str = 'ATTRIBUTE_MODEL' NL_EMBEDDINGS_KEY: str = 'NL_EMBEDDINGS' diff --git a/nl_server/model/sentence_transformer.py b/nl_server/model/sentence_transformer.py index 16d39359bd..c585ac9c1d 100644 --- a/nl_server/model/sentence_transformer.py +++ b/nl_server/model/sentence_transformer.py @@ -19,7 +19,6 @@ from sentence_transformers import SentenceTransformer import torch -from nl_server import config from nl_server import embeddings from nl_server import gcs from nl_server.config import LocalModelConfig @@ -31,18 +30,10 @@ def __init__(self, model_info: LocalModelConfig): super().__init__(model_info.score_threshold, returns_tensor=True) # Download model from gcs if there is a gcs folder specified - model_path = '' - if model_info.gcs_folder: - logging.info(f'Downloading tuned model from: {model_info.gcs_folder}') - model_path = gcs.download_folder(model_info.gcs_folder) - - # If model was downloaded, load that model. Otherwise, load base model. - if model_path: - logging.info(f'Loading tuned model from: {model_path}') - self.model = SentenceTransformer(model_path) - else: - logging.info(f'Loading base model {config.EMBEDDINGS_BASE_MODEL_NAME}') - self.model = SentenceTransformer(config.EMBEDDINGS_BASE_MODEL_NAME) + logging.info(f'Downloading tuned model from: {model_info.gcs_folder}') + model_path = gcs.download_folder(model_info.gcs_folder) + logging.info(f'Loading tuned model from: {model_path}') + self.model = SentenceTransformer(model_path) def encode(self, queries: List[str]) -> torch.Tensor: return self.model.encode(queries, show_progress_bar=False) diff --git a/tools/nl/embeddings/build_embeddings.py b/tools/nl/embeddings/build_embeddings.py index 40887aff02..88c0e39c80 100644 --- a/tools/nl/embeddings/build_embeddings.py +++ b/tools/nl/embeddings/build_embeddings.py @@ -33,7 +33,7 @@ from sentence_transformers import SentenceTransformer import utils -VERTEX_AI_PROJECT = 'datcom-website-dev' +VERTEX_AI_PROJECT = 'datcom-nl' VERTEX_AI_PROJECT_LOCATION = 'us-central1' FLAGS = flags.FLAGS diff --git a/tools/nl/embeddings/data/alternatives/main/other_alternatives.csv b/tools/nl/embeddings/data/alternatives/main/other_alternatives.csv deleted file mode 100644 index 5e7c283bd8..0000000000 --- a/tools/nl/embeddings/data/alternatives/main/other_alternatives.csv +++ /dev/null @@ -1,1185 +0,0 @@ -dcid,Alternatives -AmountFarmInventory_WinterWheatForGrain,Amount of winter wheat for grain in farm inventory -Amount_FarmInventory_BarleyForGrain,Amount of barley for grain in farm inventory -Amount_FarmInventory_CornForSilageOrGreenchop,Amount of corn for silage or greenchop in farm inventory -Amount_FarmInventory_Cotton,Amount of cotton in farm inventory -Amount_FarmInventory_DryEdibleBeans,Amount of dry edible beans in farm inventory -Amount_FarmInventory_DurumWheatForGrain,Amount of durum wheat for grain in farm inventory -Amount_FarmInventory_Forage,Amount of forage in farm inventory -Amount_FarmInventory_OatsForGrain,Amount of oats for grain in farm inventory -Amount_FarmInventory_OtherSpringWheatForGrain,Amount of other spring wheat for grain in farm inventory -Amount_FarmInventory_PeanutsForNuts,Amount of peanuts for nuts in farm inventory -Amount_FarmInventory_PimaCotton,Amount of pima cotton in farm inventory -Amount_FarmInventory_Rice,Amount of rice in farm inventory -Amount_FarmInventory_SorghumForGrain,Amount of sorghum for grain in farm inventory -Amount_FarmInventory_SorghumForSilageOrGreenchop,Amount of sorghum for silage or greenchop in farm inventory -Amount_FarmInventory_SugarbeetsForSugar,Amount of sugarbeets for sugar in farm inventory -Amount_FarmInventory_SunflowerSeed,Amount of sunflower seed in farm inventory -Amount_FarmInventory_UplandCotton,Amount of upland cotton in farm inventory -Amount_FarmInventory_WheatForGrain,Amount of wheat for grain in farm inventory -Amout_FarmInventory_CornForGrain,Amount of corn for grain in farm inventory -Count_CriminalActivities_AggravatedAssault,Number of aggravated assault crimes -Count_CriminalActivities_Arson,Number of arson crimes -Count_CriminalActivities_Burglary,Number of burglary crimes -Count_CriminalActivities_ForcibleRape,Number of forcible rape crimes -Count_CriminalActivities_LarcenyTheft,Number of larceny theft crimes -Count_CriminalActivities_MotorVehicleTheft,Number of motor vehicle theft crimes -Count_CriminalActivities_MurderAndNonNegligentManslaughter,Number of murder and non-negligent manslaughter crimes -Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,Number of murder and non-negligent manslaughter crimes per person -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,Number of murder and non-negligent manslaughter crimes committed per capita for the female population -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,Number of murder and non-negligent manslaughter crimes committed per capita for the male population -Count_CriminalActivities_PropertyCrime,Number of property crimes -Count_CriminalActivities_Robbery,Number of robbery crimes -Count_CriminalActivities_ViolentCrime,Number of violent crimes -Count_FarmInventory_BeefCows,Number of beef cows on a farm -Count_FarmInventory_Broilers,Number of broiler chickens on a farm -Count_FarmInventory_CattleAndCalves,Number of cattle and calves on a farm -Count_FarmInventory_HogsAndPigs,Number of hogs and pigs on a farm -Count_FarmInventory_Layers,Number of laying hens on a farm -Count_FarmInventory_MilkCows,Number of milk cows on a farm -Count_FarmInventory_SheepAndLambs,Number of sheep and lambs on a farm -Count_Household,Total number of households -Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family households below the poverty level in the past 12 months -Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of married couple family households below poverty level in the past 12 months -Count_Household_NoHealthInsurance,Number of households with no health insurance -Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of single mother family households below poverty level in the past 12 months -Count_Household_WithFoodStampsInThePast12Months,Number of households with food stamps in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,Number of households with food stamps in the past 12 months and above poverty level in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of households with food stamps in the past 12 months and American Indian or Alaska Native Alone as the race of the household member -Count_Household_WithFoodStampsInThePast12Months_AsianAlone,Number of households with food stamps in the past 12 months and Asian Alone as the race of the household member -Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,Number of households with food stamps in the past 12 months and below poverty level in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of households with food stamps in the past 12 months and Black or African American Alone as the race of the household member -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,Number of household with food stamps in the past 12 months and a family household structure -Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,Number of households that received food stamps in the past 12 months and are Hispanic or Latino -Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,"Number of households that received food stamps in the past 12 months, are married couples, and are family households" -Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of households that received food stamps in the past 12 months, are native Hawaiian or other Pacific Islander alone" -Count_Household_WithFoodStampsInThePast12Months_NoDisability,Number of households that received food stamps in the past 12 months and do not have any disability -Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,Number of households that received food stamps in the past 12 months and are nonfamily households -Count_Household_WithFoodStampsInThePast12Months_OtherFamilyHousehold,Number of households that received food stamps in the past 12 months and are other family households -Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,"Number of households that received food stamps in the past 12 months, are single fathers, and are family households" -Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,"Number of households that received food stamps in the past 12 months, are single mothers, and are family households" -Count_Household_WithFoodStampsInThePast12Months_SomeOtherRaceAlone,Number of households that received food stamps in the past 12 months and are some other race alone -Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,Number of households that received food stamps in the past 12 months and are two or more races -Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,Number of households that received food stamps in the past 12 months and are white alone -Count_Household_WithFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of households that received food stamps in the past 12 months, are white alone, and are not Hispanic or Latino" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,Number of households that received food stamps in the past 12 months and have children under 18 -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,"Number of households that received food stamps in the past 12 months, are married couples, are family households, and have children under 18" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"Number of households that received food stamps in the past 12 months, are nonfamily households, and have children under 18" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"Number of households that received food stamps in the past 12 months, are other family households, and have children under 18" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,"Number of households that received food stamps in the past 12 months, are single fathers, are family households, and have children under 18" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,"Number of households that received food stamps in the past 12 months, are single mothers, are family households, and have children under 18" -Count_Household_WithFoodStampsInThePast12Months_WithDisability, -Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months, -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold, -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope, -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia, -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold, -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months, -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,Number of households with social security income in the past 12 months where the household is a single mother family household -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of households with social security income in the past 12 months where the household is a single mother family household and also below poverty level in the past 12 months. -Count_Household_WithoutFoodStampsInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone, -Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino, -Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Household_WithoutFoodStampsInThePast12Months_NoDisability, -Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_OtherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_SomeOtherRaceAlone, -Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces, -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone, -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithDisability, -Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60, -Count_HousingUnit,Total number of housing units -Count_Person,Total number of people in a population -Count_Person_AbovePovertyLevelInThePast12Months, -Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone, -Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone, -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_AmbulatoryDifficulty, -Count_Person_AmericanIndianAndAlaskaNativeAlone, -Count_Person_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_AmericanIndianOrAlaskaNativeAlone, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities, -Count_Person_AsianAlone, -Count_Person_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_AsianAlone_ResidesInGroupQuarters, -Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_AsianAlone_ResidesInJuvenileFacilities, -Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_AsianAlone_ResidesInNursingFacilities, -Count_Person_AsianOrPacificIslander, -Count_Person_BelowPovertyLevelInThePast12Months, -Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone, -Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone, -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_BlackOrAfricanAmericanAlone,"Black Population Alone,Population who are Black or African American Alone; Population who are Black or African American only;black people;Monoracial black population; how much of the population is black; african american population in; number of people who are black; count of black people in population; black and african american demographic" -Count_Person_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities, -Count_Person_Civilian_Female_NonInstitutionalized, -Count_Person_Civilian_Male_NonInstitutionalized, -Count_Person_Civilian_NoDisability_NonInstitutionalized, -Count_Person_Civilian_WithDisability_NonInstitutionalized, -Count_Person_CognitiveDifficulty, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months, -Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma, -Count_Person_EducationalAttainment_LessThan9ThGrade, -Count_Person_EducationalAttainment_LessThanHighSchoolDiploma, -Count_Person_EducationalAttainment_SomeCollegeNoDegree, -Count_Person_Female,number of women; how many women are there; count of women and girls; female population; -Count_Person_Female_AbovePovertyLevelInThePast12Months, -Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Female_AsianAlone, -Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_AsianOrPacificIslander, -Count_Person_Female_BelowPovertyLevelInThePast12Months, -Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone, -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_Female_BlackOrAfricanAmericanAlone, -Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined, -Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold, -Count_Person_Female_ForeignBorn, -Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica, -Count_Person_Female_ForeignBorn_PlaceOfBirthAsia, -Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean, -Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico, -Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia, -Count_Person_Female_ForeignBorn_PlaceOfBirthEurope, -Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica, -Count_Person_Female_ForeignBorn_PlaceOfBirthMexico, -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica, -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope, -Count_Person_Female_ForeignBorn_PlaceOfBirthOceania, -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia, -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia, -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica, -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope, -Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia, -Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities, -Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Female_ForeignBorn_ResidesInGroupQuarters, -Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities, -Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Female_ForeignBorn_ResidesInNursingFacilities, -Count_Person_Female_HispanicOrLatino, -Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Female_HispanicOrLatino_AsianAlone, -Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander, -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces, -Count_Person_Female_HispanicOrLatino_WhiteAlone, -Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined, -Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold, -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone, -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_NonWhite, -Count_Person_Female_NotHispanicOrLatino, -Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Female_NotHispanicOrLatino_AsianAlone, -Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander, -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces, -Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_ResidesInAdultCorrectionalFacilities, -Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Female_ResidesInGroupQuarters, -Count_Person_Female_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Female_ResidesInJuvenileFacilities, -Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Female_ResidesInNursingFacilities, -Count_Person_Female_SomeOtherRaceAlone, -Count_Person_Female_TwoOrMoreRaces, -Count_Person_Female_WhiteAlone, -Count_Person_Female_WhiteAloneNotHispanicOrLatino, -Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Female_WithEarnings, -Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities, -Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Female_WithEarnings_ResidesInGroupQuarters, -Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities, -Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Female_WithEarnings_ResidesInNursingFacilities, -Count_Person_HearingDifficulty, -Count_Person_HispanicOrLatino, -Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_HispanicOrLatino_AsianAlone, -Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_HispanicOrLatino_AsianOrPacificIslander, -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities, -Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_HispanicOrLatino_ResidesInGroupQuarters, -Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters, -Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities, -Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_HispanicOrLatino_ResidesInNursingFacilities, -Count_Person_HispanicOrLatino_TwoOrMoreRaces, -Count_Person_HispanicOrLatino_WhiteAlone, -Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_InLaborForce_Female_DivorcedInThePast12Months, -Count_Person_InLaborForce_Female_MarriedInThePast12Months, -Count_Person_InLaborForce_Male_DivorcedInThePast12Months, -Count_Person_InLaborForce_Male_MarriedInThePast12Months, -Count_Person_IndependentLivingDifficulty, -Count_Person_Male, -Count_Person_Male_AbovePovertyLevelInThePast12Months, -Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Male_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_AsianAlone, -Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_AsianOrPacificIslander, -Count_Person_Male_BelowPovertyLevelInThePast12Months, -Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_Male_BlackOrAfricanAmericanAlone, -Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Person_Male_DivorcedInThePast12Months_PovertyStatusDetermined, -Count_Person_Male_DivorcedInThePast12Months_ResidesInHousehold, -Count_Person_Male_ForeignBorn, -Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica, -Count_Person_Male_ForeignBorn_PlaceOfBirthAsia, -Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean, -Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico, -Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia, -Count_Person_Male_ForeignBorn_PlaceOfBirthEurope, -Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica, -Count_Person_Male_ForeignBorn_PlaceOfBirthMexico, -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica, -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope, -Count_Person_Male_ForeignBorn_PlaceOfBirthOceania, -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia, -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia, -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica, -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope, -Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia, -Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities, -Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Male_ForeignBorn_ResidesInGroupQuarters, -Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities, -Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Male_ForeignBorn_ResidesInNursingFacilities, -Count_Person_Male_HispanicOrLatino, -Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_HispanicOrLatino_AsianAlone, -Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander, -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces, -Count_Person_Male_HispanicOrLatino_WhiteAlone, -Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Person_Male_MarriedInThePast12Months_PovertyStatusDetermined, -Count_Person_Male_MarriedInThePast12Months_ResidesInHousehold, -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone, -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_NonWhite, -Count_Person_Male_NotHispanicOrLatino, -Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_NotHispanicOrLatino_AsianAlone, -Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander, -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces, -Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_ResidesInAdultCorrectionalFacilities, -Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Male_ResidesInGroupQuarters, -Count_Person_Male_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Male_ResidesInJuvenileFacilities, -Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Male_ResidesInNursingFacilities, -Count_Person_Male_SomeOtherRaceAlone, -Count_Person_Male_TwoOrMoreRaces, -Count_Person_Male_WhiteAlone, -Count_Person_Male_WhiteAloneNotHispanicOrLatino, -Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_WithEarnings, -Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities, -Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Male_WithEarnings_ResidesInGroupQuarters, -Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities, -Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Male_WithEarnings_ResidesInNursingFacilities, -Count_Person_NativeHawaiianAndOtherPacificIslanderAlone, -Count_Person_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities, -Count_Person_NoDisability, -Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities, -Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_NoDisability_ResidesInGroupQuarters, -Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters, -Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_NoDisability_ResidesInNursingFacilities, -Count_Person_NoHealthInsurance, -Count_Person_NonWhite, -Count_Person_NotHispanicOrLatino, -Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_NotHispanicOrLatino_AsianAlone, -Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NotHispanicOrLatino_AsianOrPacificIslander, -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_NotHispanicOrLatino_ResidesInGroupQuarters, -Count_Person_NotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters, -Count_Person_NotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_NotHispanicOrLatino_TwoOrMoreRaces, -Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_NotInLaborForce_Female_DivorcedInThePast12Months, -Count_Person_NotInLaborForce_Female_MarriedInThePast12Months, -Count_Person_NotInLaborForce_Male_DivorcedInThePast12Months, -Count_Person_NotInLaborForce_Male_MarriedInThePast12Months, -Count_Person_OneRace, -Count_Person_OneRace_ResidesInAdultCorrectionalFacilities, -Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_OneRace_ResidesInGroupQuarters, -Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters, -Count_Person_OneRace_ResidesInJuvenileFacilities, -Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_OneRace_ResidesInNursingFacilities, -Count_Person_PerArea, -Count_Person_PovertyStatusDetermined_ResidesInGroupQuarters, -Count_Person_PovertyStatusDetermined_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Producer_AsianAlone, -Count_Person_Producer_BlackOrAfricanAmericanAlone, -Count_Person_Producer_HispanicOrLatino, -Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Producer_TwoOrMoreRaces, -Count_Person_Producer_WhiteAlone, -Count_Person_SelfCareDifficulty, -Count_Person_SomeOtherRaceAlone, -Count_Person_SomeOtherRaceAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_SomeOtherRaceAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_SomeOtherRaceAlone_ResidesInGroupQuarters, -Count_Person_SomeOtherRaceAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_SomeOtherRaceAlone_ResidesInJuvenileFacilities, -Count_Person_SomeOtherRaceAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_SomeOtherRaceAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_SomeOtherRaceAlone_ResidesInNursingFacilities, -Count_Person_TwoOrMoreRaces, -Count_Person_TwoOrMoreRaces_ResidesInAdultCorrectionalFacilities, -Count_Person_TwoOrMoreRaces_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_TwoOrMoreRaces_ResidesInGroupQuarters, -Count_Person_TwoOrMoreRaces_ResidesInInstitutionalizedGroupQuarters, -Count_Person_TwoOrMoreRaces_ResidesInJuvenileFacilities, -Count_Person_TwoOrMoreRaces_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_TwoOrMoreRaces_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_TwoOrMoreRaces_ResidesInNursingFacilities, -Count_Person_VisionDifficulty, -Count_Person_WhiteAlone, -Count_Person_WhiteAloneNotHispanicOrLatino, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInAdultCorrectionalFacilities, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInGroupQuarters, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInJuvenileFacilities, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNursingFacilities, -Count_Person_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_WhiteAlone_ResidesInAdultCorrectionalFacilities, -Count_Person_WhiteAlone_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_WhiteAlone_ResidesInGroupQuarters, -Count_Person_WhiteAlone_ResidesInInstitutionalizedGroupQuarters, -Count_Person_WhiteAlone_ResidesInJuvenileFacilities, -Count_Person_WhiteAlone_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_WhiteAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WhiteAlone_ResidesInNursingFacilities, -Count_Person_WithDirectPurchaseHealthInsurance, -Count_Person_WithDirectPurchaseHealthInsuranceOnly, -Count_Person_WithDisability,Number of people with disabilities -Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people with disabilities -Count_Person_WithDisability_AsianAlone,Number of Asian people with disabilities -Count_Person_WithDisability_BlackOrAfricanAmericanAlone,Number of Black or African American people with disabilities -Count_Person_WithDisability_Female,Number of female people with disabilities -Count_Person_WithDisability_HispanicOrLatino,Number of Hispanic or Latino people with disabilities -Count_Person_WithDisability_Male,Number of male people with disabilities -Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people with disabilities -Count_Person_WithDisability_OneRace,Number of people with disabilities of a single race -Count_Person_WithDisability_ResidesInAdultCorrectionalFacilities,Number of people with disabilities living in adult correctional facilities -Count_Person_WithDisability_ResidesInCollegeOrUniversityStudentHousing,Number of people with disabilities living in college or university student housing -Count_Person_WithDisability_ResidesInGroupQuarters,Number of people with disabilities living in group quarters -Count_Person_WithDisability_ResidesInInstitutionalizedGroupQuarters,Number of people with disabilities living in institutionalized group quarters -Count_Person_WithDisability_ResidesInJuvenileFacilities,Number of people with disabilities living in juvenile facilities -Count_Person_WithDisability_ResidesInMilitaryQuartersOrMilitaryShips,Number of people with disabilities living in military quarters or ships -Count_Person_WithDisability_ResidesInNoninstitutionalizedGroupQuarters,Number of people with disabilities living in noninstitutionalized group quarters -Count_Person_WithDisability_ResidesInNursingFacilities,Number of people with disabilities living in nursing facilities -Count_Person_WithDisability_SomeOtherRaceAlone,Number of people with disabilities of some other race -Count_Person_WithDisability_TwoOrMoreRaces,Number of people with disabilities of two or more races -Count_Person_WithDisability_WhiteAlone,Number of White people with disabilities -Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,Number of non hispanic or Latino White people with disabilities -Count_Person_WithEmployerBasedHealthInsurance,Number of people with employer-based health insurance -Count_Person_WithEmployerBasedHealthInsuranceOnly,Number of people with only employer-based health insurance -Count_Person_WithFoodStampsInThePast12Months_ResidesInAdultCorrectionalFacilities,Number of people who received food stamps in the past 12 months and lived in adult correctional facilities -Count_Person_WithFoodStampsInThePast12Months_ResidesInCollegeOrUniversityStudentHousing,Number of people who received food stamps in the past 12 months and lived in college or university student housing -Count_Person_WithFoodStampsInThePast12Months_ResidesInGroupQuarters,Number of people who received food stamps in the past 12 months and lived in group quarters -Count_Person_WithFoodStampsInThePast12Months_ResidesInInstitutionalizedGroupQuarters,Number of people who received food stamps in the past 12 months and lived in institutionalized group quarters -Count_Person_WithFoodStampsInThePast12Months_ResidesInJuvenileFacilities,Number of people who received food stamps in the past 12 months and lived in juvenile facilities -Count_Person_WithFoodStampsInThePast12Months_ResidesInNoninstitutionalizedGroupQuarters,Number of people who received food stamps in the past 12 months and lived in noninstitutionalized group quarters -Count_Person_WithFoodStampsInThePast12Months_ResidesInNursingFacilities,Number of people who received food stamps in the past 12 months and lived in nursing facilities -Count_Person_WithHealthInsurance,Number of people with health insurance -Count_Person_WithMedicaidOrMeansTestedPublicCoverage,Number of people with Medicaid or means-tested public coverage -Count_Person_WithMedicaidOrMeansTestedPublicCoverageOnly,Number of people with only Medicaid or means-tested public coverage -Count_Person_WithMedicareCoverage,Number of people with Medicare coverage -Count_Person_WithMedicareCoverageOnly,Number of people with only Medicare coverage -Count_Person_WithPrivateHealthInsurance,Number of people with private health insurance -Count_Person_WithPrivateHealthInsuranceOnly,Number of people with only private health insurance -Count_Person_WithPublicHealthInsurance,Number of people with public health insurance -Count_Person_WithPublicHealthInsuranceOnly,Number of people with only public health insurance -Count_Person_WithTricareMilitaryHealthCoverage,Number of people with TRICARE military health coverage -Count_Person_WithTricareMilitaryHealthCoverageOnly,Number of people with only TRICARE military health coverage -Count_Person_WithVAHealthCare,Number of people with VA health care -Count_Person_WithVAHealthCareOnly,Number of people with only VA health care -FertilityRate_Person_Female,Birth rate per woman -GrowthRate_Count_Person,Rate of population growth -LifeExpectancy_Person,Average lifespan of a population -LifeExpectancy_Person_Female,Female life expectancy -LifeExpectancy_Person_Male,Male life expectancy -Mean_Earnings_Person_Female,Average earnings per person for females -Mean_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,Average earnings per person for females living in adult correctional facilities -Mean_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,Average earnings per person for females living in college or university student housing -Mean_Earnings_Person_Female_ResidesInGroupQuarters,Average earnings per person for females living in group quarters -Mean_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,Average earnings per person for females living in institutionalized group quarters -Mean_Earnings_Person_Female_ResidesInJuvenileFacilities,Average earnings per person for females living in juvenile facilities -Mean_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Average earnings per person for females living in military quarters or ships -Mean_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,Average earnings per person for females living in noninstitutionalized group quarters -Mean_Earnings_Person_Female_ResidesInNursingFacilities,Average earnings per person for females living in nursing facilities -Mean_Earnings_Person_Male,Average earnings per person for males -Mean_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,Average earnings per person for males living in adult correctional facilities -Mean_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,Average earnings per person for males living in college or university student housing -Mean_Earnings_Person_Male_ResidesInGroupQuarters,Average earnings per person for males living in group quarters -Mean_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,Average earnings per person for males living in institutionalized group quarters -Mean_Earnings_Person_Male_ResidesInJuvenileFacilities,Average earnings per person for males living in juvenile facilities -Mean_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,Average earnings per person for males living in military quarters or ships -Mean_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,Average earnings per person for males living in noninstitutionalized group quarters -Mean_Earnings_Person_Male_ResidesInNursingFacilities,Average earnings per person for males living in nursing facilities -Mean_Income_Household,Average income for households; Mean Income of Household: With Income;Average income for households;Average Income for Households;Average income of households in the area; Mean income of homes in the area; Median income of households in the region; Average income of homes in the region; Mean income of households in the area; how much money does an average household make; mean household wealth; money made per household; average neighborhood income per household -Mean_Income_Household_FamilyHousehold,Average income for family households -Mean_Income_Household_MarriedCoupleFamilyHousehold,Average income for married couple family households -Mean_Income_Household_NonfamilyHousehold,Average income for nonfamily households -Median_Age_Person,Median age of people -Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,Median age of American Indian or Alaska Native people; What is the median age of American Indian or Alaska Native population in -Median_Age_Person_AsianAlone,Median age of Asian people -Median_Age_Person_BlackOrAfricanAmericanAlone,Median age of Black or African American people -Median_Age_Person_Female,Median age of females -Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,Median age of American Indian or Alaska Native Female Population -Median_Age_Person_Female_AsianAlone,Median age of Asian Female Population -Median_Age_Person_Female_BlackOrAfricanAmericanAlone,Median age of Black or African American females -Median_Age_Person_Female_DivorcedInThePast12Months,Median Age of Divorced Females in the Past 12 Months -Median_Age_Person_Female_ForeignBorn,Median age of foreign-born females -Median_Age_Person_Female_HispanicOrLatino,Median age of Hispanic or Latino females -Median_Age_Person_Female_MarriedInThePast12Months,Median age of females married in the past year -Median_Age_Person_Female_Native,Median age of females born in the United States -Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,Median age of Native Hawaiian or Other Pacific Islander females -Median_Age_Person_Female_SomeOtherRaceAlone,Median age of females of some other race -Median_Age_Person_Female_TwoOrMoreRaces,Median age of females of two or more races -Median_Age_Person_Female_WhiteAlone,Median age of White females -Median_Age_Person_Female_WhiteAloneNotHispanicOrLatino,Median age of non hispanic or Latino White females -Median_Age_Person_HispanicOrLatino,Median age of Hispanic or Latino people -Median_Age_Person_Male,Median age of males -Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,Median age of American Indian or Alaska Native males -Median_Age_Person_Male_AsianAlone,Median age of Asian males -Median_Age_Person_Male_BlackOrAfricanAmericanAlone,Median age of Black or African American males -Median_Age_Person_Male_DivorcedInThePast12Months,Median age of divorced males in the past 12 months -Median_Age_Person_Male_ForeignBorn,Median age of foreign-born males -Median_Age_Person_Male_HispanicOrLatino,Median age of Hispanic or Latino males -Median_Age_Person_Male_MarriedInThePast12Months,Median age of married males in the past 12 months -Median_Age_Person_Male_Native,Median age of males born in the United States -Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,Median age of Native Hawaiian or Other Pacific Islander males -Median_Age_Person_Male_SomeOtherRaceAlone,Median age of males of some other race -Median_Age_Person_Male_TwoOrMoreRaces,Median age of males of two or more races -Median_Age_Person_Male_WhiteAlone,Median age of White males -Median_Age_Person_Male_WhiteAloneNotHispanicOrLatino,Median age of non hispanic or Latino White males -Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,Median age of Native Hawaiian or Other Pacific Islander people -Median_Age_Person_NoHealthInsurance,Median age of people with no health insurance -Median_Age_Person_NotAUSCitizen_Female_ForeignBorn,Median age of foreign-born females who are not US citizens -Median_Age_Person_NotAUSCitizen_Male_ForeignBorn,Median age of foreign-born males who are not US citizens -Median_Age_Person_SomeOtherRaceAlone,Median age of people of some other race -Median_Age_Person_TwoOrMoreRaces,Median age of people of two or more races -Median_Age_Person_USCitizenByNaturalization_Female_ForeignBorn,Median age of foreign-born females who are US citizens by naturalization -Median_Age_Person_USCitizenByNaturalization_Male_ForeignBorn,Median age of foreign-born males who are US citizens by naturalization -Median_Age_Person_WhiteAlone,Median age of White people -Median_Age_Person_WhiteAloneNotHispanicOrLatino,Median age of non hispanic or Latino White people -Median_Earnings_Person,Median earnings for all people -Median_Earnings_Person_Female,Median earnings for females -Median_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,Median earnings for females living in adult correctional facilities -Median_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,Median earnings for females living in college or university student housing -Median_Earnings_Person_Female_ResidesInGroupQuarters,Median earnings for females living in group quarters -Median_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,Median earnings for females living in institutionalized group quarters -Median_Earnings_Person_Female_ResidesInJuvenileFacilities,Median earnings for females living in juvenile facilities -Median_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Median earnings for females living in military quarters or military ships -Median_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,Median earnings for females living in noninstitutionalized group quarters -Median_Earnings_Person_Female_ResidesInNursingFacilities,Median earnings for females living in nursing facilities -Median_Earnings_Person_Male,Median earnings for males -Median_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,Median earnings for males living in adult correctional facilities -Median_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,Median earnings for males living in college or university student housing -Median_Earnings_Person_Male_ResidesInGroupQuarters,Median earnings for males living in group quarters -Median_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,Median earnings for males living in institutionalized group quarters -Median_Earnings_Person_Male_ResidesInJuvenileFacilities,Median earnings for males living in juvenile facilities -Median_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,Median earnings for males living in military quarters or military ships -Median_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,Median earnings for males living in noninstitutionalized group quarters -Median_Earnings_Person_Male_ResidesInNursingFacilities,Median earnings for males living in nursing facilities -Median_Income_Household,Median income for all households -Median_Income_Household_FamilyHousehold,Median income for family households -Median_Income_Household_MarriedCoupleFamilyHousehold,Median income for married couple family households -Median_Income_Household_NoHealthInsurance,Median income for households without health insurance -Median_Income_Household_NonfamilyHousehold,Median income for nonfamily households -Median_Income_Household_WithFoodStampsInThePast12Months,Median income for households with food stamps in the past 12 months -Median_Income_Household_WithoutFoodStampsInThePast12Months,Median income for households without food stamps in the past 12 months -QuantitySold_FarmInventory_CattleAndCalves,Quantity sold of cattle and calves from farms -QuantitySold_FarmInventory_HogsAndPigs,Quantity sold of hogs and pigs from farms -UnemploymentRate_Person,Percentage of labor force that is unemployed -UnemploymentRate_Person_Female, -UnemploymentRate_Person_Male, -Area_Farm,Total area of land on a farm -Count_Farm,Total number of farms -Expenses_Farm,Total expenses incurred by a farm -Income_Farm,Total income earned by a farm -NetMeasure_Income_Farm,Net income earned by a farm after subtracting expenses -Mean_Area_Farm,Average area of land on a farm -Mean_Expenses_Farm,Average expenses incurred by a farm -Mean_NetMeasure_Income_Farm,Average net income earned by a farm -Median_Area_Farm,Middle value for the area of land on a farm -Count_Farm_BeefCows,Number of Farms With Beef Cows -Count_Farm_Broilers,Number of Farms With Broilers (Young Chickens) -Count_Farm_Layers,Number of Farms With Layers (Chickens Used for Egg Production) -Count_Farm_MilkCows,Number of Farms With Milk Cows -Count_Farm_SheepAndLambs,Number of Farms With Sheep and Lambs -MarketValue_Farm_Crops,Market value of crops produced on a farm -MarketValue_Farm_LivestockAndPoultry,Market value of livestock and poultry on a farm -Mean_MarketValue_Farm_LandAndBuildings,Average market value of land and buildings on a farm -MarketValue_Farm_AgriculturalProducts,Market value of agricultural products produced on farm -Mean_MarketValue_Farm_AgriculturalProducts,Mean market value of agricultural products produced on farm -Area_Farm_BarleyForGrain,Farms growing barley for grain -Count_Farm_BarleyForGrain,Number of farms growing barley for grain -Count_Farm_CattleAndCalves,Farms with cattle and calves -Count_Farm_InventorySold_CattleAndCalves,Number of farms with inventory sold of cattle and calves -Area_Farm_CornForGrain,Farms growing corn for grain -Count_Farm_CornForGrain,Number of farms growing corn for grain -Area_Farm_CornForSilageOrGreenchop,Farms growing corn for silage or greenchop -Count_Farm_CornForSilageOrGreenchop,Number of farms growing corn for silage or greenchop -Area_Farm_Cotton,Farms growing cotton -Count_Farm_Cotton,Number of farms growing cotton -Area_Farm_DryEdibleBeans,Farms growing dry edible beans -Count_Farm_DryEdibleBeans,Number of farms growing dry edible beans -Area_Farm_DurumWheatForGrain,Farms growing durum wheat for grain -Count_Farm_DurumWheatForGrain,Number of farms growing durum wheat for grain -Count_Farm_HogsAndPigs,Farms with hogs and pigs -Count_Farm_InventorySold_HogsAndPigs,Number of farms with hogs and pigs -MarketValue_Farm_MachineryAndEquipment,Market value of machinery and equipment on farm -Mean_MarketValue_Farm_MachineryAndEquipment,Mean market value of machinery and equipment on farm -Area_Farm_OatsForGrain,Farms growing oats for grain -Count_Farm_OatsForGrain,Number of farms growing oats for grain -Area_Farm_Orchards,Farms with orchards -Count_Farm_Orchards,Number of farms with orchards -Area_Farm_PeanutsForNuts,Farms growing peanuts for nuts -Count_Farm_PeanutsForNuts,Number of farms growing peanuts for nuts -Area_Farm_PimaCotton,Farms growing Pima cotton -Count_Farm_PimaCotton,Number of farms growing Pima cotton -Area_Farm_Potatoes,Farms growing potatoes -Count_Farm_Potatoes,Number of farms growing potatoes -Area_Farm_Rice,Farms growing rice -Count_Farm_Rice,Number of farms growing rice -Area_Farm_SorghumForGrain,Farms growing sorghum for grain -Count_Farm_SorghumForGrain,Number of farms growing sorghum for grain -Area_Farm_SugarbeetsForSugar,Farms growing sugarbeets for sugar -Count_Farm_SugarbeetsForSugar,Number of farms growing sugarbeets for sugar -Area_Farm_SunflowerSeed,Farms growing sunflower seed -Count_Farm_SunflowerSeed,Number of farms growing sunflower seed -Area_Farm_SweetPotatoes,Farms growing sweet potatoes -Count_Farm_SweetPotatoes,Number of farms growing sweet potatoes -Area_Farm_UplandCotton,Farms growing upland cotton -Count_Farm_UplandCotton,Number of farms growing upland cotton -Area_Farm_VegetablesHarvestedForSale,Farms growing vegetables for sale -Count_Farm_VegetablesHarvestedForSale,Number of farms growing vegetables for sale -Area_Farm_WheatForGrain,Farms growing wheat for grain -Count_Farm_WheatForGrain,Number of farms growing wheat for grain -Area_Farm_WinterWheatForGrain,Farms growing winter wheat for grain -Count_Farm_WinterWheatForGrain,Number of farms growing winter wheat for grain -Area_Farm_Cropland,Farms with cropland -Count_Farm_Cropland,Number of farms with cropland -Area_Farm_HarvestedCropland,Farms with harvested cropland -Count_Farm_HarvestedCropland,Number of farms with harvested cropland -Area_Farm_IrrigatedLand,Farms with irrigated land -Count_Farm_IrrigatedLand,Number of farms with irrigated land -Count_Farm_ReceivedGovernmentPayment,Number of farms receiving government payments -MonetaryValue_Farm_GovernmentPayment,Monetary value of government payments received by farm -dc/9pmyhk89dj3pf,Number of people working in wood product manufacturing -Count_Worker_NAICSAccommodationFoodServices,Population of people working in the accommodation and food services industry -WagesTotal_Worker_NAICSAccommodationFoodServices,Total wages earned by people working in the accommodation and food services industry -dc/4z9xy6wn8xns1,Median income of people working in the administrative and support and waste management services industry -Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Population of people working in the administrative and support and waste management services industry -WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Total wages earned by people working in the administrative and support and waste management services industry -dc/yw52qqrrb2w11,"Median income of people working in the agriculture, forestry, fishing, and hunting industry" -Count_Worker_NAICSAgricultureForestryFishingHunting,"Population of people working in the agriculture, forestry, fishing, and hunting industry" -WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"Total wages earned by people working in the agriculture, forestry, fishing, and hunting industry" -dc/8lqwvg8m9x7z8,Total wages earned by people working in cattle ranching and farming -dc/63gkdt13bmsv8,Population of people working in the air transportation industry -dc/4ky4sj05bw4nd,Total wages earned by people working in the air transportation industry -dc/z27q5dymqyrnf,Population of people working in the apparel manufacturing industry -dc/lygznlxpkj318,Total wages earned by people working in the apparel manufacturing industry -dc/mfz54y2skbpeh,"Median income for people working in the arts, entertainment, and recreation industry" -Count_Worker_NAICSArtsEntertainmentRecreation,"Population of people working in the arts, entertainment, and recreation industry" -WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"Total wages for people working in the arts, entertainment, and recreation industry" -dc/rlk1yxmkk1qqg,Population of people working in the beverage and tobacco product manufacturing industry -dc/9kk3vkzn5v0fb,Total wages for people working in the beverage and tobacco product manufacturing industry -dc/eh7s78v8s14l9,Population of people working in the chemical manufacturing industry -dc/rfdrfdc164y3b,Total wages for people working in the chemical manufacturing industry -dc/m07n4w3ywjzs3,Median income for people working in the construction industry -Count_Worker_NAICSConstruction,Population of people working in the construction industry -WagesTotal_Worker_NAICSConstruction,Total wages for people working in the construction industry -dc/n87t9dkckzxc8,Population of people working as couriers and messengers -dc/95gev5g99r7nc,Total wages for people working as couriers and messengers -dc/jefhcs9qxc971,Median income for people working in the educational services industry -Count_Worker_NAICSEducationalServices,Population of people working in the educational services industry -WagesTotal_Worker_NAICSEducationalServices,Total wages for people working in the educational services industry -dc/x3gghqtglpr59,Median income for people working in the finance and insurance industry -Count_Worker_NAICSFinanceInsurance,Population of people working in the finance and insurance industry -WagesTotal_Worker_NAICSFinanceInsurance,Total wages for people working in the finance and insurance industry -dc/107jnwnsh17xb,Population of people working in the food manufacturing industry -dc/jngmh68j9z4q,Total wages for people working in the food manufacturing industry -dc/c0wxmt45gffxc,Population of people working in general merchandise stores -dc/dchdrg93spxkf,Total wages for people working in general merchandise stores -dc/2wgh04kx6es88,Median income for people working in the health care and social assistance industry -Count_Worker_NAICSHealthCareSocialAssistance,Population of people working in the health care and social assistance industry -WagesTotal_Worker_NAICSHealthCareSocialAssistance,Total wages for people working in the health care and social assistance industry -dc/xj2nk2bg60fg,Median income for people working in the information industry -Count_Worker_NAICSInformation,Population of people working in the information industry -WagesTotal_Worker_NAICSInformation,Total wages for people working in the information industry -dc/7bck6xpkc205c,Population of people working in the leather and allied product manufacturing industry -dc/fetj39pqls2df,Total wages for people working in the leather and allied product manufacturing industry -dc/t6m99mqmqxjbc,Median income for people working in the management of companies and enterprises industry -Count_Worker_NAICSManagementOfCompaniesEnterprises,Population of people working in the management of companies and enterprises industry -WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,Total wages for people working in the management of companies and enterprises industry -dc/b4dj4sbgqybh7,"Median income for people working in the mining, quarrying, and oil and gas extraction industry" -Count_Worker_NAICSMiningQuarryingOilGasExtraction,"Population of people working in the mining, quarrying, and oil and gas extraction industry" -WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"Total wages for people working in the mining, quarrying, and oil and gas extraction industry" -dc/4mm2p1rxr5wz4,Population of people working in miscellaneous store retailers -dc/6ets5evke9mw5,Total wages for people working in miscellaneous store retailers -dc/90nswpkp8wlw5,Population of people working in the nonmetallic mineral product manufacturing industry -dc/yxxs3hh2g2shd,Total wages for people working in the nonmetallic mineral product manufacturing industry -dc/2etwgx6vecreh,Population of people working in nonstore retailers -dc/8pxklrk2q6453,Total wages for people working in nonstore retailers -dc/knhvyxwsd3y6h,"Median income for people working in other services, except public administration" -Count_Worker_NAICSOtherServices,"Population of people working in other services, except public administration" -WagesTotal_Worker_NAICSOtherServices,"Total wages for people working in other services, except public administration" -dc/6n6l2wrzv7473,Population of people working in the paper manufacturing industry -dc/kl7t3p3de7tlh,Total wages for people working in the paper manufacturing industry -dc/34t2kjrwbjd31,Population of people working in the petroleum and coal products manufacturing industry -dc/8cssekvykhys5,Total wages for people working in the petroleum and coal products manufacturing industry -dc/yn0h4nw4k23f1,Population of people working in pipeline transportation -dc/n0m3e2r3pxb21,Total wages for people working in pipeline transportation -dc/qnz3rlypmfvw6,Population of people working in the plastics and rubber products manufacturing industry -dc/9yj0bdp6s4ml5,Total wages for people working in the plastics and rubber products manufacturing industry -dc/8j8w7pf73ekn,Number of postal service workers -dc/ntpwcslsbjfc8,Total wages paid to postal service workers -dc/vp4cplffwv86g,Number of printing and related support activities workers -dc/wv0mr2t2f5rj9,Total wages paid to printing and related support activities workers -dc/5hv2p802zmh03,"Median income of professional, scientific, and technical services workers" -Count_Worker_NAICSProfessionalScientificTechnicalServices,"Number of professional, scientific, and technical services workers" -WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"Total wages paid to professional, scientific, and technical services workers" -dc/7jqw95h5wbelb,Median income of public administration workers -Count_Worker_NAICSPublicAdministration,Number of public administration workers -WagesTotal_Worker_NAICSPublicAdministration,Total wages paid to public administration workers -dc/3kwcvm428wpq4,Number of rail transportation workers -dc/ksynl8pj8w5t5,Total wages paid to rail transportation workers -dc/015d58s9xh8kd,Median income of real estate and rental and leasing workers -Count_Worker_NAICSRealEstateRentalLeasing,Number of real estate and rental and leasing workers -WagesTotal_Worker_NAICSRealEstateRentalLeasing,Total wages paid to real estate and rental and leasing workers -dc/5f3gkej4mrq24,Median income of retail trade workers -dc/p69tpsldf99h7,Number of retail trade workers -dc/dxcbt2knrsgg9,Total wages paid to retail trade workers -dc/v3qgyhwx13m44,Number of scenic and sightseeing transportation workers -dc/qgpqqfzwz03d,Total wages paid to scenic and sightseeing transportation workers -dc/e2zdnwjjhyj36,"Number of sports, hobby, music instrument, and book stores workers" -dc/k4grzkjq201xh,"Total wages paid to sports, hobby, music instrument, and book stores workers" -dc/bb4peddkgmqe7,Number of support activities for transportation workers -dc/bceet4dh33ev,Total wages paid to support activities for transportation workers -dc/3ex11eg2q9hp6,Median income of manufacturing workers -dc/ndg1xk1e9frc2,Number of manufacturing workers -dc/tqgf8zv96r5t8,Number of textile and fabric finishing mills workers -dc/wzz9t818m1gk8,Total wages paid to manufacturing workers -dc/1jqm2g7cm9m75,Total wages paid to textile and fabric finishing mills workers -dc/8b3gpw1zyr7bf,Number of textile mills workers -dc/7w0e0p0dzj82g,Total wages paid to textile mills workers -dc/dy2k68mmhenfd,Number of textile product mills workers -dc/1q3ker7zf14hf,Total wages paid to textile product mills workers -Count_Worker_NAICSTotalAllIndustries,Number of workers in all industries -WagesTotal_Worker_NAICSTotalAllIndustries,Total wages paid to workers in all industries -dc/bwr1l8y9we9k7,Number of transit and ground passenger transportation workers -dc/9t5n4mk2fxzdg,Total wages paid to transit and ground passenger transportation workers -dc/zbpsz8dg01nh2,Median income of transportation and warehousing workers -dc/8p97n7l96lgg8,Number of transportation and warehousing workers -dc/84czmnc1b6sp5,Total wages paid to transportation and warehousing workers -dc/k3hehk50ch012,Number of truck transportation workers -dc/h77bt8rxcjve3,Total wages paid to truck transportation workers -Count_Worker_NAICSNonclassifiable,Number of unclassified workers -WagesTotal_Worker_NAICSNonclassifiable,Total wages paid to unclassified workers -dc/x95kmng969n42,Median income of utilities workers -Count_Worker_NAICSUtilities,Number of utilities workers -WagesTotal_Worker_NAICSUtilities,Total wages paid to utilities workers -dc/w1tfjz3h6138,Number of warehousing and storage workers -dc/fcn7wgvcwtsj2,Total wages paid to warehousing and storage workers -dc/h1jy2glt2m7e6,Number of water transportation workers -dc/0hq9z5mspf73f,Total wages paid to water transportation workers -dc/8hy0p1ex5s2cb,Median income of wholesale trade workers -Count_Worker_NAICSWholesaleTrade,Number of wholesale trade workers -WagesTotal_Worker_NAICSWholesaleTrade,Total wages paid to wholesale trade workers -dc/ws19bm1hl105b,Number of wood product manufacturing workers -dc/nesnbmrncfjrb,Total wages paid to wood product manufacturing workers -Percent_Person_WithAllTeethLoss, -Percent_Person_WithArthritis,Percentage of population with arthritis -Percent_Person_WithAsthma, -Percent_Person_WithCancerExcludingSkinCancer, -Percent_Person_WithChronicKidneyDisease, -Percent_Person_WithChronicObstructivePulmonaryDisease, -Percent_Person_WithCoronaryHeartDisease,Percentage of population with coronary heart disease -Percent_Person_WithDiabetes,Percentage of population with diabetes -Percent_Person_WithHighBloodPressure,Percentage of population with high blood pressure -Percent_Person_WithHighCholesterol, -Percent_Person_WithMentalHealthNotGood,Percentage of population with poor mental health -Percent_Person_WithPhysicalHealthNotGood,Percentage of population with poor physical health -Percent_Person_WithStroke,Percentage of population that has had a stroke -Percent_Person_Children_WithAsthma, -Percent_Person_20OrMoreYears_WithDiabetes, -dc/nh3s4skee5483, -dc/xmpy89x1nh8cg, -Percent_Person_65OrMoreYears_WithAllTeethLoss, -Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication, -GenderIncomeInequality_Person_15OrMoreYears_WithIncome,Income inequality between men and women -Median_Income_Person,Middle income in a population -Count_Person_Divorced,Number of divorced people in a population -Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Number of mobile phone subscriptions per person in a population -Count_Death,Number of deaths in a population -Count_Death_AsAFractionOfCount_Person,Number of deaths per person in a population -Count_Person_EnrolledInSchool,Number of people enrolled in school -Count_Person_NotEnrolledInSchool,Number of people not enrolled in school -AirQualityIndex_AirPollutant,Air quality index -Count_MedicalConditionIncident_COVID_19_PatientInICU,Number of COVID-19 patients in the intensive care unit -CumulativeCount_Vaccine_COVID_19_Administered,Total number of COVID-19 vaccines administered -IncrementalCount_Vaccine_COVID_19_Administered,Number of COVID-19 vaccines administered in a given time period -Percent_Person_SleepLessThan7Hours,Percentage of population that sleeps less than 7 hours per night -Percent_Person_Obesity,Percentage of population that is obese -Percent_Person_Smoking,Percentage of population that smokes -Percent_Person_18To64Years_ReceivedNoHealthInsurance,Percentage of population aged 18-64 with no health insurance -Percent_Person_ReceivedAnnualCheckup,Percentage of population that has an annual checkup -Count_HousingUnit_VacantHousingUnit,Number of vacant housing units -Count_Household_MarriedCoupleFamilyHousehold,Number of married couple family households -Count_Household_NonfamilyHousehold,Number of nonfamily households -GiniIndex_EconomicActivity,Gini index of economic activity in a population -Count_Person_15OrMoreYears_NoIncome,Number of people aged 15 or older with no income -Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,Healthcare expenditure per person -Count_CriminalActivities_CombinedCrime,Number of criminal activities; crime in; how safe is; how safe is it in; how dangerous is; how much crime happens in -Count_CriminalIncidents_IsHateCrime,Number of hate crime incidents -WithdrawalRate_Water,Rate of water withdrawal -Count_CoastalFloodEvent,Number of coastal flood events -Count_DroughtEvent,Number of drought events -Count_HeatEvent,Number of heat events -Count_HeavyRainEvent,Number of heavy rain events -Count_HeavySnowEvent,Number of heavy snow events -Count_WildfireEvent,Number of wildfire events -Count_EarthquakeEvent,Number of earthquake events -Count_FloodEvent,Number of flood events -Annual_ExpectedLoss_NaturalHazardImpact,Estimated annual loss from natural hazard impacts -ConsecutiveDryDays,Number of consecutive dry days -Count_Household_InternetWithoutSubscription,Number of households without an internet subscription -Annual_Generation_Energy_Coal,Annual energy generation from coal -Annual_Count_ElectricityConsumer,Number of customer accounts (all sectors) per year -Monthly_Count_ElectricityConsumer,Number of customer accounts (all sectors) per month -Annual_Consumption_Electricity,Annual electricity consumption -Annual_Generation_Electricity,"Annual energy generation (all fuels, all sectors)" -Annual_Generation_Fuel_Nuclear,Annual energy generation from nuclear fuel -Annual_Generation_Fuel_CrudeOil,Annual energy generation from crude oil -Annual_Generation_Fuel_DieselOil,Annual energy generation from diesel oil -Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,Percentage of people 15 years or older who consume alcohol in relation to total number of people 15 years or older -Amount_Consumption_Electricity_PerCapita,Average consumption of electricity per person -Amount_Consumption_Energy_PerCapita,Average consumption of energy per person -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,Government expenditure on education as a percentage of total government expenditure -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Government expenditure on education as a percentage of nominal gross domestic production -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,Government expenditure on military activities -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Government expenditure on military activities as a percentage of nominal gross domestic production -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,Average nominal gross domestic production per person -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,Gross national income based on purchasing power parity -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,Gross national income based on purchasing power parity per person -Amount_Remittance_InwardRemittance,Total amount of inward remittances -Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Inward remittances as a percentage of nominal gross domestic production -Amount_Remittance_OutwardRemittance,Total amount of outward remittances -Amount_Stock,Total stock value -Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Stock value as a percentage of nominal gross domestic production -Count_CycloneEvent,Number of cyclone events -Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,Infant mortality rate (number of deaths of infants under 1 year old as a percentage of live births) -Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,Infant mortality rate for female infants (number of deaths of female infants under 1 year old as a percentage of live births of female infants) -Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,Infant mortality rate for male infants (number of deaths of male infants under 1 year old as a percentage of live births of male infants) -Count_Death_DiseasesOfTheCirculatorySystem,Number of deaths due to diseases of the circulatory system -Count_Death_DiseasesOfTheNervousSystem,Number of deaths due to diseases of the nervous system -Count_Death_DiseasesOfTheRespiratorySystem,Number of deaths due to diseases of the respiratory system -Count_Death_ExternalCauses,Number of deaths due to external causes -Count_Death_Neoplasms,Number of deaths due to neoplasms (tumors or abnormal growths) -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of homes where the householder identifies as American Indian or Alaska Native alone -Count_HousingUnit_HouseholderRaceAsianAlone,Number of homes where the householder identifies as Asian alone -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,Number of homes where the householder identifies as Black or African American alone -Count_HousingUnit_HouseholderRaceHispanicOrLatino,Number of homes where the householder identifies as Hispanic or Latino -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of homes where the householder identifies as Native Hawaiian or Other Pacific Islander alone -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone,Number of homes where the householder identifies as some other race alone -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,Number of homes where the householder identifies as two or more races -Count_HousingUnit_HouseholderRaceWhiteAlone,Number of homes where the householder identifies as White alone -Count_HousingUnit_OwnerOccupied,Number of owner-occupied homes -Count_HousingUnit_RenterOccupied,Number of renter-occupied homes -Count_Person_EducationalAttainmentMastersDegree,Number of people with a master's degree -Count_Person_EducationalAttainmentNoSchoolingCompleted,Number of people who completed no schooling -Count_Person_EducationalAttainmentRegularHighSchoolDiploma,Number of people with a regular high school diploma -Count_Person_Employed,Number of employed people -Count_Person_InLaborForce,Number of people in the labor force -Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,Number of people in the labor force (ages 15 to 64) as a fraction of the total number of people (ages 15 to 64) -Count_Person_MarriedAndNotSeparated,Number of married people who are not separated -Count_Person_NeverMarried,Number of people who have never been married -Count_Person_NotAUSCitizen,Number of people who are not US citizens -Count_Person_Rural,Number of people living in rural areas -Count_Person_Separated,Number of separated people -Count_Person_USCitizenBornInTheUnitedStates,Number of US citizens born in the United States -Count_Person_USCitizenBornAbroadOfAmericanParents,Number of US citizens born abroad to American parents -Count_Person_USCitizenByNaturalization,Number of US citizens by naturalization -Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,Number of children (up to 4 years old) with severe wasting as a fraction of the total number of children (up to 4 years old) -Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,Number of children (up to 4 years old) with wasting as a fraction of the total number of children (up to 4 years old) -Count_Person_Urban,Number of people living in urban areas -Count_Person_Widowed,Number of widowed people -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,Number of state unemployment insurance claims for unemployment insurance -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,Cumulative count of confirmed or probable COVID-19 cases -CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,Cumulative count of COVID-19 patient deaths -GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,Growth rate of gross domestic production (economic activity) -Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Median income of households with an American Indian or Alaska Native householder -Median_Income_Household_HouseholderRaceAsianAlone,Median income of households with an Asian householder -Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Median income of households with a Black or African American householder -Median_Income_Household_HouseholderRaceHispanicOrLatino,Median income of households with a Hispanic or Latino householder -Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Median income of households with a Native Hawaiian or other Pacific Islander householder -Median_Income_Household_HouseholderRaceWhiteAlone,Median income of households with a White householder -Median_Income_Person_15OrMoreYears_Female_WithIncome,Median income of women (15 years or older) with income -Median_Income_Person_15OrMoreYears_Male_WithIncome,Median income of men (15 years or older) with income -Percent_Person_18To64Years_Female_NoHealthInsurance,Percentage of women (18 to 64 years old) without health insurance -Percent_Person_18To64Years_Male_NoHealthInsurance,Percentage of men (18 to 64 years old) without health insurance -Percent_Person_18To64Years_NoHealthInsurance_BlackOrAfricanAmericanAlone,Percentage of Black or African American (18 to 64 years old) without health insurance -Percent_Person_18To64Years_NoHealthInsurance_HispanicOrLatino,Percentage of Hispanic or Latino (18 to 64 years old) without health insurance -Percent_Person_18To64Years_NoHealthInsurance_WhiteAlone,Percentage of White (18 to 64 years old) without health insurance -Percent_Person_BingeDrinking,Percentage of people who engage in binge drinking -Percent_Person_PhysicalInactivity,Percentage of people who are physically inactive -RetailDrugDistribution_DrugDistribution_Amphetamine,Amount of amphetamine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Codeine,Amount of codeine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Hydrocodone,Amount of hydrocodone distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Morphine,Amount of morphine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Oxycodone,Amount of oxycodone distributed through retail drug channels -Mean_Concentration_AirPollutant_PM2.5,Mean concentration of PM2.5 air pollutant; PM2.5 air pollution level; air pollution concentration -PalmerDroughtSeverityIndex_Atmosphere,Palmer Drought Severity Index for the atmosphere -Annual_Emissions_GreenhouseGas_NonBiogenic,Annual emissions of non-biogenic greenhouse gases -AirPollutant_Cancer_Risk,Cancer risk from air pollutants -Annual_Average_RetailPrice_Electricity,Annual average retail price of electricity -Annual_Emissions_Methane_NonBiogenic,Annual emissions of non-biogenic methane -Mean_Concentration_AirPollutant_Ozone,Mean concentration of ozone air pollutant; ozone air pollution; air pollution level for ozone -Annual_Emissions_NitrousOxide_NonBiogenic,Annual emissions of non-biogenic nitrous oxide -Annual_Emissions_CarbonDioxide_NonBiogenic,Annual emissions of non-biogenic carbon dioxide -Mean_Concentration_AirPollutant_DieselPM,Mean concentration of diesel PM air pollutant; how much diesel is in the air; air pollution from deisel; concentration of diesel air pollution -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,"Number of criminal incidents motivated by bias against gender, classified as hate crimes" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,"Number of criminal incidents motivated by bias against race, classified as hate crimes" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,"Number of criminal incidents motivated by bias against religion, classified as hate crimes" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,"Number of criminal incidents motivated by bias against ethnicity, classified as hate crimes" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,"Number of criminal incidents motivated by bias against sexual orientation, classified as hate crimes" -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,"Number of criminal incidents motivated by bias against disability status, classified as hate crimes" -Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,Amount of economic activity in the accommodation and food services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,Amount of economic activity in the administrative and support and waste management services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"Amount of economic activity in the agriculture, forestry, fishing and hunting industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"Amount of economic activity in the arts, entertainment, and recreation industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,Amount of economic activity in the construction industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,Amount of economic activity in the educational services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,Amount of economic activity in the finance and insurance industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,Amount of economic activity in the health care and social assistance industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,Amount of economic activity in the information industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,Amount of economic activity in the management of companies and enterprises industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"Amount of economic activity in the mining, quarrying, and oil and gas extraction industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue,"Amount of economic activity in other services, except public administration industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"Amount of economic activity in the professional, scientific, and technical services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,Amount of economic activity in the real estate and rental and leasing industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,Amount of economic activity in the utilities industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,Amount of economic activity in the wholesale trade industry -Amount_EconomicActivity_GrossDomesticProduction_Nominal,Nominal gross domestic production -Count_Person_EducationalAttainmentDoctorateDegree,population with PhD; population with phd; number of people with doctorates; number of people with doctoral degrees; people who are PhDs; people who are doctors of philosophy -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,female population with PhD; population female with phd; number of women with doctorates; number of females with doctoral degrees; people women are PhDs; women who are doctors of philosophy; girls with PhDs; -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,male population with PhD; population male with phd; number of men with doctorates; number of males with doctoral degrees; people men are PhDs; men who are doctors of philosophy; boys with PhDs; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,population with bachelors degrees or more; population with at least bachelors degrees; number of people with bachelors degrees or higher; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,population of women with bachelors degrees or more; female population with at least bachelors degrees; number of females with bachelors degrees or higher; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,population of men with bachelors degrees or more; male population with at least bachelors degrees; number of males with bachelors degrees or higher; -Count_Person_EducationalAttainmentBachelorsDegree,population with bachelors degrees; number of people with bachelors degrees; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,population of women with bachelors degrees; number of females with bachelors degrees; girls with bachelors degrees; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,population of men with bachelors degrees; number of males with bachelors degrees; boys with bachelors degrees; -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,population with less than high school graduation; population with education level less than high school; number of people with lower than high school graduation; -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,population with college degrees; population with college or associates degree; number of people with college degrees; number of people with associated degrees; people who have college degrees; -Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,population of women with college degrees; female population with college or associates degree; number of women with college degrees; number of females with associated degrees; females who have college degrees; -Percent_TreeCanopy,percent of land with tree cover; tree cover; tree canopy; tree cover of land; tree canopy over land; percentage of land covered by trees; -dc/topic/SolarPotential,solar potential; ability to support solar panels; amount of solar potential; potential for solar energy -dc/topic/ProjectedClimateExtremes,What are the projected temperature extremes across; tell me about projecte temperature extremes for; how crazy is the climate supposed to get in the future; what are predicted extreme temperatures for; projected temperature extremes; projected temperature -Percent_Student_AsAFractionOf_Count_Teacher ,"students per teacher; number of students per teacher, how many students per teacher, each teacher has on average how many students" -Count_Teacher,number of teachers; how many teachers are there; educational instructors; count of educators -dc/c58mvty4nhxdb,average student achievement; student test performance; student educational output measurement; how good are students doing on their education; best schools in; best school performance; highest quality education -Count_SolarInstallation,solar panel installations; solar energy installations; number of solar installations in the area; how much solar is here; which place has the most solar installations in -Count_Person_DetailedPrimarySchool,primary school students; students in elementary school; population of kids enrolled in primary school; counties with highest number children in elementary school; number of children in elementary school -Count_Person_DetailedMiddleSchool,middle school students; students in middle school; population of kids enrolled in middle school; -Count_Person_DetailedHighSchool,high school students; students in high school; population of kids enrolled in high school; highest number children in high school -dc/3jr0p7yjw06z9,number of gambling establishments; how many gambling establishments are there; count of gambling facilities; casinos -dc/5br285q68be6,people working in gambling; people with jobs in the gambling industry; how many people work in the gambling industry; count of gambling workers -Count_VolcanicAshEvent,volcanic eruptions; volcanic ash events; volcanic outbursts; volcanic activity; how many times has a volcano exploded -dc/topic/Literacy,population's ability to read and write; literacy rate; how many people can read or not; how well read is the population; level of literacy; how many people cannot read or write; where can i find the most well read population in -dc/topic/RacialBreakdown,racial breakdown of a population; tell me about the demographics; ethnicity; demographic breakdown; population race; i want to know about the racial makeup; racial diversity of population; ethnic breakdown; how diverse are the demographics; demographic distribution -Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person, -dc/topic/WetBulbTemperature,for this area what is the temperature at which the human body can't cool itself anymore; what is the wet bulb temperature; how high or low is the wet bulb temperature predicted to be; give me the degree of the wetbulb temperature; wet bulb temperature prediction range -dc/topic/Temperature,what's the temperature like; what's the climate here; tell me about the weather; -Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,African Languages Speakers -Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,Amharic Somali Or Other Afro Asiatic Languages Speakers -Count_Person_5OrMoreYears_ArabicSpokenAtHome,Arabic Speakers -Count_Person_5OrMoreYears_ArmenianSpokenAtHome,Armenian Speakers -Count_Person_5OrMoreYears_BengaliSpokenAtHome,Bengali Speakers -Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,Chinese Incl Mandarin Cantonese Speakers -Count_Person_5OrMoreYears_ChineseSpokenAtHome,Chinese Speakers -Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,French Creole Speakers -Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome,French Incl Cajun Speakers -Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,French Incl Patois Cajun Speakers -Count_Person_5OrMoreYears_GermanSpokenAtHome,German Speakers -Count_Person_5OrMoreYears_GreekSpokenAtHome,Greek Speakers -Count_Person_5OrMoreYears_GujaratiSpokenAtHome,Gujarati Speakers -Count_Person_5OrMoreYears_HaitianSpokenAtHome,Haitian Speakers -Count_Person_5OrMoreYears_HebrewSpokenAtHome,Hebrew Speakers -Count_Person_5OrMoreYears_HindiSpokenAtHome,Hindi Speakers -Count_Person_5OrMoreYears_HmongSpokenAtHome,Hmong Speakers -Count_Person_5OrMoreYears_HungarianSpokenAtHome,Hungarian Speakers -Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,Ilocano Samoan Hawaiian Or Other Austronesian Languages Speakers -Count_Person_5OrMoreYears_ItalianSpokenAtHome,Italian Speakers -Count_Person_5OrMoreYears_JapaneseSpokenAtHome,Japanese Speakers -Count_Person_5OrMoreYears_KhmerSpokenAtHome,Khmer Speakers -Count_Person_5OrMoreYears_KoreanSpokenAtHome,Korean Speakers -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Language Other Than English Speakers -Count_Person_5OrMoreYears_LaotianSpokenAtHome,Laotian Speakers -Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,Malayalam Kannada Or Other Dravidian Languages Speakers -Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,Mon Khmer Cambodian Speakers -Count_Person_5OrMoreYears_NavajoSpokenAtHome,Navajo Speakers -Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,Nepali Marathi Or Other Indic Languages Speakers -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome,English Speakers -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,English Speakers Above Poverty Line -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,Only English Speakers Below Poverty Line -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ForeignBorn,Only English Speakers Foreign Born -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_Native,Only Native English Speakers -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_PovertyStatusDetermined,Only English Spakers Poverty Status Determined -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,Only English Speakers Resides In Adult Correctional Facilities -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,Only English Speakers Resides In College Or University Student Housing -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInGroupQuarters,Only English Speakers Resides In Group Quarters -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,Only English Speakers Resides In Institutionalized Group Quarters -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,Only English Speakers Resides In Noninstitutionalized Group Quarters -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNursingFacilities,Only English Speakers Resides In Nursing Facilities -Count_Person_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,Unspecified Languages Speakers -Count_Person_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,Other Asian Languages Speakers -Count_Person_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,Other Indic Languages Speakers -Count_Person_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,Other Languages Of Asia Speakers -Count_Person_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,Other Native Languages Of North America Speakers -Count_Person_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,Other Native North American Languages Speakers -Count_Person_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,Other Pacific Island Languages Speakers -Count_Person_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,Other Slavic Languages Speakers -Count_Person_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,Other West Germanic Languages Speakers -Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,Persian Incl Farsi Dari Speakers -Count_Person_5OrMoreYears_PersianSpokenAtHome,Persian Speakers -Count_Person_5OrMoreYears_PolishSpokenAtHome,Polish Speakers -Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,Portuguese Or Portuguese Creole Speakers -Count_Person_5OrMoreYears_PortugueseSpokenAtHome,Portuguese Speakers -Count_Person_5OrMoreYears_PunjabiSpokenAtHome,Punjabi Speakers -Count_Person_5OrMoreYears_ResidesInHousehold,Resides In HouseholdSpeakers -Count_Person_5OrMoreYears_RussianSpokenAtHome,Russian Speakers -Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,Scandinavian Languages Speakers -Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,Serbo Croatian Speakers -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_AbovePovertyLevelInThePast12Months,Spanish Or Spanish Creole Speakers Above Poverty Line -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_BelowPovertyLevelInThePast12Months,Spanish Or Spanish Creole Speakers Below Poverty Line -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,Spanish Or Spanish Creole Speakers Foreign Born -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_Native,Spanish Or Spanish Creole Speakers Native -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_PovertyStatusDetermined,Spanish Or Spanish Creole Speakers Poverty Status Determined -Count_Person_5OrMoreYears_SpanishSpokenAtHome,Spanish Speakers -Count_Person_5OrMoreYears_SpanishSpokenAtHome_AbovePovertyLevelInThePast12Months,Spanish Speakers Above Poverty Line -Count_Person_5OrMoreYears_SpanishSpokenAtHome_BelowPovertyLevelInThePast12Months,Spanish Speakers Below Poverty Line -Count_Person_5OrMoreYears_SpanishSpokenAtHome_ForeignBorn,Spanish Speakers Foreign Born -Count_Person_5OrMoreYears_SpanishSpokenAtHome_Native,Spanish Speakers Native -Count_Person_5OrMoreYears_SpanishSpokenAtHome_PovertyStatusDetermined,Spanish Speakers Poverty Status Determined -Count_Person_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,Swahili Or Other Languages Speakers Of Central Eastern And Southern Africa -Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,Tagalog Incl Filipino Speakers -Count_Person_5OrMoreYears_TagalogSpokenAtHome,Tagalog Speakers -Count_Person_5OrMoreYears_TamilSpokenAtHome,Tamil Speakers -Count_Person_5OrMoreYears_TeluguSpokenAtHome,Telugu Speakers -Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,Thai Lao Or Other Tai Kadai Languages Speakers -Count_Person_5OrMoreYears_ThaiSpokenAtHome,Thai Speakers -Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,Ukrainian Or Other Slavic Languages Speakers -Count_Person_5OrMoreYears_UrduSpokenAtHome,Urdu Speakers -Count_Person_5OrMoreYears_VietnameseSpokenAtHome,Vietnamese Speakers -Count_Person_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,Yiddish Pennsylvania Dutch Or Other West Germanic Languages Speakers -Count_Person_5OrMoreYears_YiddishSpokenAtHome,Yiddish Speakers -Count_Person_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,Yoruba Twi Igbo Or Other Languages Of Western Africa Speakers \ No newline at end of file diff --git a/tools/nl/embeddings/data/alternatives/main/palm_alternatives.csv b/tools/nl/embeddings/data/alternatives/main/palm_alternatives.csv deleted file mode 100644 index a84a48f725..0000000000 --- a/tools/nl/embeddings/data/alternatives/main/palm_alternatives.csv +++ /dev/null @@ -1,1100 +0,0 @@ -dcid,Alternatives -AmountFarmInventory_WinterWheatForGrain,The amount of winter wheat that farmers have on hand;The total amount of winter wheat that farmers have stored;The total amount of winter wheat that farmers have available for sale;The total amount of winter wheat that farmers have not yet sold;The total amount of winter wheat that farmers have on hand for grain -Amount_FarmInventory_BarleyForGrain,barley yield;barley production;amount of barley grown;barley harvest -Amount_FarmInventory_CornForSilageOrGreenchop,the amount of corn grown for silage or greenchop;the quantity of corn grown for silage or greenchop;the number of corn plants grown for silage or greenchop;the acreage of corn grown for silage or greenchop -Amount_FarmInventory_Cotton,Cotton production;The amount of cotton grown;Cotton yield;Cotton harvest;Cotton production -Amount_FarmInventory_DryEdibleBeans,The number of beans grown;The quantity of beans grown;The amount of beans produced;The volume of beans harvested;The yield of beans -Amount_FarmInventory_DurumWheatForGrain,how much durum wheat is grown for grain in the united states?;what is the amount of durum wheat grown for grain in the united states?;what is the quantity of durum wheat grown for grain in the united states?;how much durum wheat is produced for grain in the united states? -Amount_FarmInventory_Forage,Quantity of forage produced;Amount of forage grown;Total forage yield;Forage production;Forage output -Amount_FarmInventory_OatsForGrain,Oat production;Oat yield;Amount of oats grown;Oat harvest;Oat yield -Amount_FarmInventory_OtherSpringWheatForGrain,the amount of other spring wheat grown in the united states;the quantity of other spring wheat grown in the united states;the number of other spring wheat plants grown in the united states;the total number of other spring wheat plants grown in the united states -Amount_FarmInventory_PeanutsForNuts,peanut production in the united states;the amount of peanuts grown in the united states;the number of peanuts grown in the united states;the quantity of peanuts grown in the united states -Amount_FarmInventory_PimaCotton,Pima cotton production;Amount of Pima cotton grown;Pima cotton yield;Pima cotton production;Pima cotton production -Amount_FarmInventory_Rice,How much rice is grown;How much rice is produced;The amount of rice grown;The amount of rice produced;The amount of rice grown -Amount_FarmInventory_SorghumForGrain,Sorghum production;Sorghum production;Sorghum yield;Sorghum harvest;Amount of sorghum grown -Amount_FarmInventory_SorghumForSilageOrGreenchop,1 sorghum grown for silage or greenchop;2 sorghum production for silage or greenchop;3 sorghum acreage for silage or greenchop;4 sorghum yield for silage or greenchop -Amount_FarmInventory_SugarbeetsForSugar,The quantity of sugarbeets grown;The number of sugarbeets grown;The quantity of sugarbeets cultivated;The quantity of sugarbeets grown;The quantity of sugarbeets cultivated -Amount_FarmInventory_SunflowerSeed,sunflower seed production;sunflower seed yield;sunflower seed harvest;the amount of sunflower seeds grown -Amount_FarmInventory_UplandCotton,The total amount of upland cotton that is currently stored on farms;The total amount of upland cotton that is stored on farms;Upland cotton inventory;Upland cotton stock;Total amount of upland cotton in storage -Amount_FarmInventory_WheatForGrain,wheat production;wheat yield;wheat harvest;wheat production in the united states -Amout_FarmInventory_CornForGrain,the amount of corn grown for grain;the amount of corn grown for human consumption;the amount of corn grown for animal feed;the amount of corn grown for ethanol production -Count_CriminalActivities_AggravatedAssault,The number of aggravated assaults;Number of aggravated assaults;Number of cases of aggravated assault;Number of incidents of aggravated assault;Number of aggravated assault offenses -Count_CriminalActivities_Arson,the number of arson cases in the united states;the number of arsons in the us;the number of arson incidents in the united states;the number of arsons reported in the us -Count_CriminalActivities_Burglary,Burglary count;Number of burglaries;Burglary statistics;How many burglaries happen;How often does burglary occur -Count_CriminalActivities_ForcibleRape,Number of forcible rapes;Number of rapes;Number of reported rapes;Number of rapes reported to the police;Number of rapes reported to law enforcement -Count_CriminalActivities_LarcenyTheft,Larceny theft count;The number of larceny theft crimes;The number of larceny theft crimes;The number of larceny thefts;The number of larceny theft crimes -Count_CriminalActivities_MotorVehicleTheft,Number of car thefts;Number of car thefts;Number of car thefts;Number of motor vehicle thefts;How many motor vehicles were stolen? -Count_CriminalActivities_MurderAndNonNegligentManslaughter,Number of murders and non-negligent manslaughters;Number of murders and non-negligent manslaughters;Number of murders and non-negligent manslaughters;Number of murders and non-negligent manslaughters;Number of murders and non-negligent manslaughters -Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,Murder and non-negligent manslaughter rate per capita;Murder and non-negligent manslaughter rate per capita;Number of murders per capita;Murder rate;Homicide rate -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,"Female murder and non-negligent manslaughter rate;Female murder rate;The number of murders and non-negligent manslaughters committed by females per capita;The number of murders and non-negligent manslaughters committed by women per capita;The number of murders and non-negligent manslaughters committed by females per 100,000 people" -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,Number of murder and non-negligent manslaughter crimes committed by males per capita;Male murder rate;Male homicide rate;Number of murders committed by males per capita;Number of homicides committed by males per capita -Count_CriminalActivities_PropertyCrime,Property crimes;Crimes against property;Crimes involving property;Crimes that target property;Crimes that involve the theft or damage of property -Count_CriminalActivities_Robbery,How many robberies were there?;Number of robberies;Number of holdups;The number of robberies that were committed;Robberies -Count_CriminalActivities_ViolentCrime,Count of violent crimes;Number of violent crimes;Number of violent offenses;Number of violent acts;Number of violent incidents -Count_FarmInventory_BeefCows,Number of beef cows on farms;Number of beef cattle on farms;Number of beef cows in inventory;Number of beef cattle in inventory;Number of beef cows on hand -Count_FarmInventory_Broilers,Number of broilers on a farm;1 Chicken count on the farm -Count_FarmInventory_CattleAndCalves,Number of cattle and calves on a farm;Number of cattle and calves on hand;Cattle and calf count;Number of cattle and calves in the herd;How many cattle and calves are on the farm? -Count_FarmInventory_HogsAndPigs,Number of pigs and hogs kept on farms -Count_FarmInventory_Layers, -Count_FarmInventory_MilkCows,How many milk cows are on the farm?;How many milk cows are on the farm?;How many milk cows are on the farm?;How many dairy cows are on the farm?;Number of dairy cows on a farm -Count_FarmInventory_SheepAndLambs,How many sheep and lambs are on the farm?;How many sheep and lambs are on the farm?;How many sheep and lambs are there on the farm?;How many sheep and lambs are on the farm?;How many sheep and lambs are on the farm? -Count_Household,Number of households;number of households;Number of households;the number of households;Number of households with housing -Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,The number of family households below the poverty line in the last year;The number of family households living in poverty in the last year;The number of family households with an income below the poverty line in the last year;The number of family households with a low income in the last year;The number of family households living below the poverty line in the past year -Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of married-couple families living in poverty over the last year;How many married-couple families were living below the poverty line in the last year?;Number of married-couple households with incomes below the poverty line in the past year;The number of married couple family households that were below the poverty level last year;The number of married-couple families living below the poverty line in the last year -Count_Household_NoHealthInsurance,How many households don't have health insurance;What's the number of households without health insurance;How many households lack health insurance;What's the number of households without health care;How many households don't have health coverage -Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Single Mother Family Household with an income of Below Poverty Level in The Past 12 Months"" in a colloquial way;Number of single-mother households living below the poverty line in the past 12 months;Number of single-mother families living in poverty in the past 12 months;Number of households headed by single mothers living in poverty in the past 12 months;Number of single-mother households with incomes below the poverty line in the past 12 months" -Count_Household_WithFoodStampsInThePast12Months,How many households have received food stamps in the last 12 months?;How many households received food stamps in the past 12 months?;Number of households receiving SNAP benefits in the past 12 months;Number of households receiving food stamps in the past 12 months;Number of households receiving Supplemental Nutrition Assistance Program (SNAP) benefits in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,How many households received Food Stamps over the last year and were above the poverty level in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native Alone households receiving Food Stamps over the last year;Number of households with American Indian or Alaska Native Alone members receiving Food Stamps over the last year;Number of households headed by American Indian or Alaska Native Alone individuals receiving Food Stamps over the last year;Number of households with American Indian or Alaska Native Alone as the primary race receiving Food Stamps over the last year;How many households of American Indian or Alaska Native Alone ethnicity received Food Stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_AsianAlone,The number of Asian-alone households that received SNAP benefits in the last year -Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,How many households received food stamps in the last year and were below the poverty line in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black or African American households who received SNAP benefits in the last year;The number of Black or African American Alone households receiving Food Stamps in the last year;The number of Black or African American Alone households that received Food Stamps in the last year;The number of Black or African American Alone households that have received Food Stamps in the last year;The number of Black or African American Alone households that were receiving Food Stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,How many Hispanic or Latino households received Food Stamps in the last year?;What is the number of Hispanic or Latino households that received Food Stamps in the last year;How many Hispanic or Latino households received Food Stamps in the last year;How many households that received Food Stamps in the last year were Hispanic or Latino;What percentage of households that received Food Stamps in the last year were Hispanic or Latino -Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couples receiving food stamps over the last year;Number of married couples who received food stamps over the last year;The number of married couples receiving food stamps in the last year;How many married couples received food stamps in the last year?;How many married couples received food stamps in the last year? -Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,How many Native Hawaiian or Other Pacific Islander Alone households received Food Stamps over the last year?;How many Native Hawaiian or Other Pacific Islander Alone households received Food Stamps over the last year?;How many Native Hawaiian or Other Pacific Islander Alone households received Food Stamps in the last year?;How many Native Hawaiian or Other Pacific Islander Alone households received SNAP benefits over the last year;How many Native Hawaiian or Other Pacific Islander Alone households received Supplemental Nutrition Assistance Program benefits over the last year -Count_Household_WithFoodStampsInThePast12Months_NoDisability,The number of households receiving Food Stamps over the last year who have no disabilities;The number of households receiving SNAP benefits over the last year who have no disabilities;The number of households receiving food stamps over the last year who do not have disabilities;Number of households receiving Food Stamps with no disabilities in the last year;How many households without disabilities received Food Stamps last year? -Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,How many non-family households received food stamps last year?;Number of non-family households receiving food stamps over the last year;1 Number of nonfamily households receiving Food Stamps in the last year;Number of nonfamily households receiving Food Stamps in the last year;How many non-family households received food stamps in the past year? -Count_Household_WithFoodStampsInThePast12Months_OtherFamilyHousehold,The number of households receiving food stamps over the last year who are other family households;The number of other family households receiving food stamps over the last year;The number of households receiving food stamps who are not nuclear families over the last year;How many Other Family Households received Food Stamps last year?;How many households received Food Stamps in the last year that were not a nuclear family? -Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,The number of single father households receiving food stamps in the last year;Number of single father households receiving Food Stamps in the last year;Number of single-father households receiving food stamps in the past year;Number of single-father families receiving food stamps in the past year;Number of households headed by a single father receiving food stamps in the past year -Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,The number of single-mother households receiving food stamps in the last year;Number of single-mother households receiving food stamps last year;Number of food stamp-receiving single-mother households last year;Number of single-mother households receiving food stamps in the past year;Number of food stamp-receiving single-mother households in the past year -Count_Household_WithFoodStampsInThePast12Months_SomeOtherRaceAlone,"Number of households receiving Food Stamps in the last year who identify as ""Some Other Race Alone"";How many households that identify as Some Other Race Alone received Food Stamps in the last year?;How many households that identify as Some Other Race Alone received Food Stamps over the last year?;Number of households that identify as Some Other Race Alone and received Food Stamps in the last year;Number of households that received Food Stamps in the last year and identify as Some Other Race Alone" -Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,How many households receiving Food Stamps over the last year identify as Two or More Races;How many households receiving Food Stamps in the last year identify as more than one race;How many households receiving Food Stamps last year identified as Two or More Races?;The number of households that identify as two or more races who received food stamps in the last year;The number of households that received food stamps in the last year and identify as two or more races -Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,How many households receiving Food Stamps in the last year identified as White Alone?;Number of households receiving Food Stamps who identify as White Alone in the last year;Number of White Alone households receiving Food Stamps in the last year;Number of households receiving Food Stamps who identify as White Alone in the past year;Number of White Alone households receiving Food Stamps in the past year -Count_Household_WithFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,- How many households receiving Food Stamps over the last year identify as White Alone Not Hispanic or Latino?;Number of households receiving Food Stamps in the last year who identify as White Alone Not Hispanic or Latino;Number of households who identify as White Alone Not Hispanic or Latino who received Food Stamps over the last year;How many White Alone Not Hispanic or Latino households received Food Stamps over the last year;How many households identifying as White Alone Not Hispanic or Latino received Food Stamps over the last year -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,How many households with children under 18 received food stamps in the last year?;Number of households with children under 18 receiving food stamps in the last year;Number of households with children under 18 who received food stamps in the last year;Number of households who received food stamps in the last year and have children under 18;Number of households who have children under 18 and received food stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,How many married couples with children under 18 received food stamps in the last year?;How many married couples with children under 18 received food stamps last year?;Number of households receiving Food Stamps last year that were married couples with children under 18;How many married couples with children under 18 received Food Stamps in the last year?;How many married couples with children under 18 received food stamps in the last year? -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"How many non-family households with children under 18 received food stamps in the last year?;How many nonfamily households with children under 18 received Food Stamps in the last year?;How many non-family households with children under 18 received food stamps in the past year?;Number of households receiving Food Stamps over the last year who identify as Nonfamily Household, With Children Under 18;How many non-family households with children under 18 received food stamps in the past year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"How many households receiving food stamps over the last year identify as ""Other"" in a family household with children under 18;How many families receiving food stamps over the last year identify as ""Other"" with children under 18;How many families with children under 18 received food stamps over the last year and identify as ""Other"";How many families with children under 18 who identify as ""Other"" received food stamps over the last year;How many households with children under 18 who identify as ""Other"" received food stamps over the last year" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,How many single-father households with children under 18 received food stamps in the last year;How many households headed by a single father with children under 18 received food stamps in the last year;How many households with children under 18 headed by a single father received food stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,Number of single mothers with children under 18 who received food stamps in the last year;Number of households headed by single mothers with children under 18 who received food stamps in the last year;Number of households headed by single mothers with children under 18 who received food assistance in the last year;Number of single mothers with children under 18 who received SNAP benefits in the last year;Number of households headed by single mothers with children under 18 who received SNAP benefits in the last year -Count_Household_WithFoodStampsInThePast12Months_WithDisability,Number of households with disabilities receiving food stamps;Number of food stamp households with disabilities;Number of households with disabilities receiving SNAP;Number of SNAP households with disabilities;Number of households with disabilities receiving Supplemental Nutrition Assistance Program benefits -Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,Number of households with people over 60 receiving Food Stamps in the last year;Number of households receiving Food Stamps over the last year with people over 60 years old;The number of households that received food stamps in the last year and have people over 60;The number of households that received food stamps in the last year and have members over 60;The number of households that received food stamps in the last year and have people over the age of 60 -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households receiving Food Stamps without children in the last year;1 Number of households without children receiving Food Stamps in the last year;Number of households without children who received Food Stamps in the last year;1 How many households without children received food stamps last year? -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,Number of married couples without children under 18 who received food stamps last year;How many married couples without children under 18 received Food Stamps in the last year?;Number of married couples receiving Food Stamps over the last year without children under 18 -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,Number of non-family households without children under 18 who received food stamps in the last year;Number of non-family households without children under 18 who received food stamps in the past year -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,"Number of households receiving Food Stamps over the last year who are a Other Family Household, Without Children Under 18;Number of Other Family Households, Without Children Under 18 who received Food Stamps in the last year" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold, -Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,Number of households receiving food stamps in the last year that do not have any people over 60;Number of households receiving Food Stamps in the last year that do not have any members over the age of 60;Number of households receiving food stamps in the last year without people over 60;Number of households receiving Food Stamps in the last year that do not have any members over 60 years old;How many households received food stamps in the last year that didn't have anyone over 60? -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,How many households received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months?;How many households received SSI and/or cash assistance in the past year while living below the poverty line?;How many households received SSI and/or cash assistance in the last year while living below the poverty line?;How many households received SSI and/or cash assistance in the last year and were below the poverty line in the past 12 months?;How many households received SSI and/or cash assistance in the past year that were below the poverty line in the past 12 months? -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold, -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,The number of married couples who received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months;How many married couples living in poverty received SSI or cash assistance in the past year?;How many married couples received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months?;How many married couples received SSI and/or cash assistance in the past year while living in a household with below poverty level status? -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold,Number of single mothers receiving SSI and/or Cash Assistance in the last year;The number of single mothers who received SSI and/or cash assistance in the last year;The number of single-mother households receiving SSI and/or cash assistance in the last year;The number of households headed by single mothers who received SSI and/or cash assistance in the last year;The number of households with a single mother as head of household who received SSI and/or cash assistance in the last year -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,How many single mothers with below poverty level status received SSI and/or cash assistance in the last 12 months?;How many single mothers living below the poverty line received SSI or cash assistance in the past year?;How many households with a single mother below the poverty line received SSI or cash assistance in the last year?;How many single mothers with below poverty level status received SSI and/or cash assistance in the past year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,How many households received Social Security Income over the last year that were family households?;Number of households that received Social Security Income in the last year and are family households;How many family households received Social Security Income over the last year?;How many households received Social Security Income over the last year that were family households?;The number of households that received Social Security Income in the last year and are family households -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,How many households received Social Security Income in the last year and were below the poverty line in the past 12 months?;How many households received Social Security Income last year and were below the poverty line in the past 12 months;How many households received Social Security Income in the last year and were below the poverty line in the past 12 months?;The number of households that received Social Security Income in the past year and were below the poverty line in the past 12 months -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,How many households received Social Security Income over the last year whose members were born in Africa?;How many households in the US received Social Security Income in the last year whose members were born in Africa;How many African-born people received Social Security Income in the US in the last year;What is the number of households in the US that received Social Security Income in the last year and whose members were born in Africa;How many households in the US received Social Security Income in the last year that were headed by someone born in Africa -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,The number of households receiving Social Security Income in the last year that are Asian-born;How many households that are Asian-born received Social Security Income in the last year;1 How many households received Social Security Income in the last year that were headed by someone born in Asia?;How many Asian-born households received Social Security Income last year?;Number of Asian-born households receiving Social Security Income over the last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of households born in the Caribbean receiving Social Security Income over the last year;Number of Caribbean-born households receiving Social Security Income over the last year;Number of households with Caribbean-born members receiving Social Security Income over the last year;Number of households with at least one Caribbean-born member receiving Social Security Income over the last year;Number of households with at least one member born in the Caribbean receiving Social Security Income over the last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of households receiving Social Security Income over the last year who were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose residents were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose heads of household were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose primary earners were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose primary income earners were born in Central America but not Mexico -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,How many households in Eastern Asia received Social Security Income last year?;Number of households receiving Social Security Income over the last year who were born in Eastern Asia;Number of households receiving Social Security Income in the last year where the head of household was born in Eastern Asia;Number of households receiving Social Security Income in the last year where at least one member of the household was born in Eastern Asia;Number of households receiving Social Security Income in the last year where the majority of the household was born in Eastern Asia -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of European-born households receiving Social Security Income in the last year;How many households born in Europe received Social Security Income in the last year;How many European-born households received Social Security Income last year;What is the number of households born in Europe that received Social Security Income last year;How many households born in Europe received Social Security Income in the past year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of households receiving Social Security Income who were born in Latin America in the last year;Number of households receiving Social Security Income in the last year whose members were born in Latin America;Number of households receiving Social Security Income in the last year that were headed by someone born in Latin America;Number of households receiving Social Security Income in the last year that had at least one member born in Latin America;How many households received Social Security Income last year that were headed by someone born in Latin America? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of households receiving Social Security Income in the last year who were born in Mexico;Number of Mexican households receiving Social Security Income in the last year;Number of households receiving Social Security Income in the last year whose head of household was born in Mexico;Number of Mexican-born households receiving Social Security Income in the last year;Number of households receiving Social Security Income in the last year whose head of household was born in Mexico and is currently living in the United States -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of North American households receiving Social Security Income in the last year;Number of households receiving Social Security Income over the last year who were born in North America;Number of households receiving Social Security Income over the last year with North American-born members;Number of households receiving Social Security Income over the last year with at least one North American-born member;Number of households receiving Social Security Income over the last year with North American-born residents -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,How many households in Northern Western Europe received Social Security Income in the last year?;Number of households receiving Social Security Income over the last year who were born in Northern Western Europe;Number of households receiving Social Security Income over the last year who were born in Scandinavia;How many households in Northern Western Europe received Social Security Income last year?;Number of households receiving Social Security Income over the last year who were born in Northern Western Europe -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,How many households received Social Security Income in the last year and were born in Oceania?;How many households in Oceania received Social Security Income last year?;How many households in Oceania received Social Security Income last year;How many households in Oceania received Social Security Income in the past year;What is the number of households in Oceania that received Social Security Income in the last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of households receiving Social Security Income who were born in South Central Asia in the last year;Number of households receiving Social Security Income in the last year whose members were born in South Central Asia;Number of households receiving Social Security Income in the last year with members born in South Central Asia;Number of households receiving Social Security Income in the last year with at least one member born in South Central Asia;Number of households receiving Social Security Income in the last year with at least one member who was born in South Central Asia -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,How many households in South East Asia received Social Security Income last year?;The number of households receiving Social Security Income in the last year who were born in South East Asia;The number of households receiving Social Security Income in the last year whose members were born in South East Asia;The number of households receiving Social Security Income in the last year that had at least one member who was born in one of the countries of South East Asia;How many Southeast Asian households received Social Security income last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,How many households in the US received Social Security Income last year and were born in South America?;South American recipients of Social Security Income in the last year;How many households received Social Security Income in the last year whose members were born in South America;How many households in the last year received Social Security Income from members born in South America;Number of households in the last year with members born in South America who received Social Security Income -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,How many households in Southern Eastern Europe received Social Security Income last year?;1 Number of households receiving Social Security Income over the last year who were born in Southern Eastern Europe;How many households received Social Security Income in the last year if their head of household was born in Southern Eastern Europe?;How many households in Southern Eastern Europe received Social Security Income in the last year?;How many households in Southern Eastern Europe received Social Security Income last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,How many households in Western Asia received Social Security Income over the last year;How many Western Asian households received Social Security Income over the last year;How many households in Western Asia received Social Security Income in the last year;How many Western Asian households received Social Security Income in the past year;How many Western Asian households received Social Security Income in the 12 months to last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,Number of Married Couples in family households receiving Social Security Income over the last year;The number of married couples who received Social Security Income over the last year;How many married couples received Social Security Income over the last year?;How many married couples received Social Security Income in the last year?;The number of married couples who received Social Security Income last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,How many married couples living below the poverty line received Social Security Income in the past year?;How many married couples living below the poverty line received Social Security Income in the past year?;How many married couples living below the poverty line received Social Security Income in the past year?;How many married couples living below the poverty line received Social Security Income in the past year?;How many married couples living below the poverty line received Social Security Income in the past year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,Number of single mothers receiving Social Security Income over the last year;Number of single-mother households receiving Social Security Income over the last year;Number of households headed by single mothers receiving Social Security Income over the last year;Number of single mothers and their children receiving Social Security Income over the last year;Number of families headed by single mothers receiving Social Security Income over the last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,How many single mothers have received Social Security Income in the past year and are living below the poverty line?;How many single mothers living in poverty received Social Security Income in the past year?;How many single mothers in family households with below poverty level status received Social Security Income in the past year?;How many single mothers living below the poverty line received Social Security Income in the past year?;How many single mothers living in poverty received Social Security Income in the past year? -Count_Household_WithoutFoodStampsInThePast12Months,The number of households that did not receive food stamps in the past 12 months;The number of households that did not receive food stamps in the past 12 months;The number of households that did not receive food stamps in the past 12 months;Number of households not receiving food stamps in the past year;Number of households not receiving food stamps in the past 365 days -Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,How many households were above the poverty line in the past 12 months and did not receive food stamps?;The number of households who were above the poverty line in the past 12 months and did not receive food stamps;The number of households who were not below the poverty line in the past 12 months and did not receive food stamps;The number of households who were not food stamp recipients in the past 12 months and were above the poverty line;The number of households who were not food stamp recipients in the past 12 months and were not below the poverty line -Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native Alone households not receiving Food Stamps in the last year;Number of households who are American Indian or Alaska Native Alone and did not receive Food Stamps in the last year;The number of American Indian or Alaska Native Alone households that did not receive Food Stamps in the past year;How many households headed by American Indian or Alaska Native Alone did not receive Food Stamps in the last year?;The number of American Indian or Alaska Native Alone households that did not receive Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,Number of Asian-alone households not receiving Food Stamps over the last year;Number of Asian-alone households who did not receive Food Stamps over the last year;Number of Asian-alone households that did not receive Food Stamps over the last year;Number of Asian-alone households that were not receiving Food Stamps over the last year;Number of Asian-alone households that were not on Food Stamps over the last year -Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months, -Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,How many Black or African American households did not receive food stamps in the past year;How many Black or African American households did not receive SNAP benefits in the past year;What is the number of Black or African American households that did not receive food stamps in the past year;What is the number of Black or African American households that did not receive SNAP benefits in the past year;How many Black or African American households did not receive food assistance in the past year -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,The number of households that were not receiving Food Stamps in the last year and are family households -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,Number of households not receiving Food Stamps in the past year that have no workers -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,Number of households with one worker who did not receive food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,How many households with two or more workers in the past 12 months did not receive Food Stamps over the last year?;Number of households not receiving Food Stamps in the past year that have two or more workers;The number of households with two or more workers who did not receive food stamps in the past year;Number of households with two or more workers who did not receive food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,Number of Hispanic or Latino households not receiving Food Stamps over the last year;Number of Hispanic or Latino households not receiving Food Stamps in the last year;Number of Hispanic or Latino households that did not receive Food Stamps in the last year;Number of Hispanic or Latino households that were not receiving Food Stamps in the last year;Number of Hispanic or Latino households that have not received Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couples in family households who did not receive food stamps in the last year;Number of married couples in family households not receiving Food Stamps in the last year;Number of married couples in family households who did not receive Food Stamps in the last year;Number of married couples in family households who were not food stamp recipients in the last year;Number of married couples in family households who did not use Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander Alone households that did not receive Food Stamps in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that were not food stamp recipients in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that did not receive SNAP benefits in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that were not SNAP recipients in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households not receiving Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,Number of households who did not receive Food Stamps in the last year and have no disability;Number of households who have no disability and did not receive Food Stamps in the last year;Number of households who did not receive Food Stamps in the last year and do not have a disability;Number of households who have no disability and did not receive Food Stamps in the last 12 months;Number of households who did not receive Food Stamps in the last 12 months and do not have a disability -Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,Number of non-family households not receiving Food Stamps in the last year;Number of nonfamily households not receiving Food Stamps over the last year;The number of nonfamily households that did not receive Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_OtherFamilyHousehold,Number of households not receiving Food Stamps in the last year who are Other in a family household -Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,Number of single fathers in family households who did not receive Food Stamps in the last year;1 Number of single fathers who did not receive food stamps in the past year;Number of single fathers not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,Number of single-mother households not receiving Food Stamps in the last year;Number of single-mother households not receiving Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_SomeOtherRaceAlone,the number of households of solely other race that did not receive food stamps in the last year;the number of households of solely other race that did not receive food stamp benefits in the last year;the number of households of solely other race that were not food stamp recipients in the last year;the number of households of solely other race that did not use food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces, -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,Number of White Alone households not receiving Food Stamps in the last year;Number of White Alone households that were not receiving Food Stamps in the last year;Number of White Alone households not receiving Food Stamps in the last 12 months;The number of white households that did not receive food stamps in the last year;The number of white-only households that did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,Number of households not receiving Food Stamps over the last year who are White Alone Not Hispanic or Latino;Number of White Alone Not Hispanic or Latino households that did not receive Food Stamps in the last 12 months;Number of White Alone Not Hispanic or Latino households not receiving Food Stamps over the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,Number of households with children who did not receive Food Stamps in the last year;Number of households with children who did not receive food stamps in the last year;Number of households with children who did not receive any food stamps in the last year;Number of households with children who were not on food stamps in the last year;Number of households with children who did not use food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,Number of households with children headed by a married couple who did not receive food stamps in the past year;Number of married couples with children who did not receive food stamps last year;Number of households with children headed by a married couple who did not receive food stamps last year;Number of married couples with children who were not food stamp recipients last year;Number of households with children headed by a married couple who were not food stamp recipients last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,The number of nonfamily households with children who did not receive food stamps in the last year;Number of non-family households with children who did not receive Food Stamps last year;How many non-family households with children did not receive food stamps in the last year;What is the number of non-family households with children who did not receive food stamps in the last year;What is the number of non-family households with children who were not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold, -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,Number of single fathers with children who did not receive food stamps in the last year;How many single-father households with children did not receive food stamps in the last year?;number of single father households with children who did not receive food stamps in the last year;number of single father households with children who were not food stamp recipients in the last year;number of single father households with children who did not use food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,The number of single-mother households with children who did not receive food stamps in the last year;Number of single-mother households with children who did not receive food stamps in the last year;Number of households with children headed by a single mother who did not receive food stamps in the last year;Number of single mother households with children who did not receive food stamps in the last year;Number of households headed by a single mother with children who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithDisability, -Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60, -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households without children who did not receive Food Stamps in the last year;Number of households without children who did not receive food stamps last year;Number of households who do not receive Food Stamps and do not have children;The number of households that did not receive Food Stamps in the last year and do not have children -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,Number of households with no children and a married couple as the head of household that did not receive food stamps in the last year;Number of households with no children and a married couple as the head of household that did not receive food stamps in the last 12 months -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,Number of nonfamily households without children who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,Number of households in Other family households without Children who did not receive Food Stamps over the last year;Number of households in Other family households without Children who did not receive Food Stamps in the last year;Number of households in an Other family household without Children who did not receive Food Stamps in the last year;Number of households not receiving Food Stamps in the last year who are Other family households without Children;Number of households in an Other family household without Children who did not receive Food Stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,Number of single-father households without children who did not receive food stamps in the last year;Number of single-father households without children who were not food stamp recipients in the last year;Number of single-father households without children who did not use food stamps in the last year;Number of single-father households without children who were not on food stamps in the last year;Number of single-father households without children who were not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,Number of single-mother households without children who did not receive food stamps in the last year;Number of single-mother households without children who were not food stamp recipients in the last year;Number of single-mother households without children who did not use food stamps in the last year;Number of single-mother households without children who were not on food stamps in the last year;Number of single-mother households without children who were not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,how many households in the united states did not receive food stamps over the last year and do not have any members over 60;how many households in the us did not receive food stamps over the last year and do not have any members who are 60 years old or older;how many households in the us did not receive food stamps over the last year and do not have any members who are elderly;how many households in the us did not receive food stamps over the last year and do not have any members who are senior citizens -Count_HousingUnit,Number of housing units;Number of housing units;Number of housing units;Number of housing units -Count_Person,number of people;total number of inhabitants;The number of people in a place;The total number of people living in a particular area;The number of inhabitants of a place -Count_Person_AbovePovertyLevelInThePast12Months,The number of people who were not poor in the past 12 months;How many people were above the poverty line in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,The number of Asian people who were above the poverty level in the past 12 months;The number of Asian people who were above the poverty level in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,The number of Black or African Americans who were above the poverty line in the past 12 months;The number of Black or African Americans who were not poor in the past 12 months;The number of Black or African Americans who were not experiencing financial hardship in the past 12 months;The number of Black or African Americans who were not struggling to make ends meet in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,how many hispanics were not living in poverty last year?;what percentage of hispanics were not living in poverty last year?;what was the poverty rate for hispanics last year?;how many hispanics were above the poverty line last year? -Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,The number of Native Hawaiian or Other Pacific Islander Alone people who were above poverty level status in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not below the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not poor in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not living in poverty in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,The number of people who are above the poverty level and are multiracial in the past 12 months;Number of people who are above the poverty level in the past year and who are of multiple races;How many people are above the poverty line and identify as two or more races;How many people are above the poverty line and are multiracial;What is the number of people who are above the poverty line and identify as more than one race -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,The number of white people who are above the poverty level in the past 12 months;The number of white people who are not below the poverty level in the past 12 months;The number of people who are white and not poor in the past 12 months;The number of white people who are not poor in the past 12 months;Number of white people above poverty level in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,The number of white people who are not Hispanic or Latino and who were not below the poverty line in the past 12 months;The number of white people who are not Hispanic or Latino and who were above the poverty level in the past 12 months;The number of white people who are not Hispanic or Latino and who were not poor in the past 12 months -Count_Person_AmbulatoryDifficulty,The number of people who have difficulty walking;Number of people with difficulty walking;Number of people with difficulty walking;Number of people who have trouble walking;Number of people who have difficulty getting around -Count_Person_AmericanIndianAndAlaskaNativeAlone, -Count_Person_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,American Indian and Alaska Native population;Number of people who are American Indian or Alaska Native alone or in combination with one or more other races;The number of people who are American Indian and Alaska Native alone or in combination with one or more other races;The number of American Indians and Alaska Natives;The number of people who are American Indian or Alaska Native -Count_Person_AmericanIndianOrAlaskaNativeAlone, -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,The number of American Indian or Alaska Native people in adult correctional facilities;How many American Indian or Alaska Native people are in adult correctional facilities?;The number of American Indian and Alaska Native people in adult correctional facilities;Number of American Indian or Alaska Native Alone people in adult correctional facilities;Number of American Indian or Alaska Native Alone people incarcerated -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,Number of American Indian or Alaska Native students living in college or university student housing;Number of American Indian or Alaska Native students living in college or university student housing;Number of American Indian or Alaska Native students in college or university dorms;Number of American Indian or Alaska Native students in college or university residence halls;Number of American Indian or Alaska Native students living on campus -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,The number of American Indian or Alaska Native people living in group quarters;How many American Indians or Alaska Natives are living in group quarters?;The number of American Indian or Alaska Native people living in group quarters;The number of American Indian or Alaska Native people living in group quarters;Number of American Indians and Alaska Natives in group quarters -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,Number of American Indian or Alaska Native Alone people institutionalized in group quarters;The number of American Indian or Alaska Native Alone people who are institutionalized in group quarters;Number of American Indian or Alaska Native Alone people in Institutionalized Group Quarters;Number of American Indian or Alaska Native Alone people institutionalized in group quarters;Number of American Indian or Alaska Native Alone people in group quarters who are institutionalized -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,The number of American Indian or Alaska Natives in juvenile facilities;Number of American Indian or Alaska Native youth in juvenile facilities;Number of American Indian or Alaska Native youth in juvenile facilities;Number of American Indian or Alaska Natives in juvenile facilities;Number of American Indian or Alaska Native youth in juvenile detention centers -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,How many American Indians or Alaska Natives are living in military quarters or on military ships;How many American Indian or Alaska Natives are living in military housing;How many American Indian or Alaska Natives are living in military barracks;How many American Indian or Alaska Natives are living in military dormitories;How many American Indian or Alaska Natives are living in military vessels -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of American Indians or Alaska Natives living in group quarters that are not nursing homes, hospitals, or prisons;Number of American Indians or Alaska Natives living in group quarters that are not residential treatment centers;Number of American Indians or Alaska Natives living in group quarters that are not correctional facilities" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,How many American Indian or Alaska Native Alone people are in Nursing Facilities?;The number of American Indian or Alaska Native Alone people in nursing facilities;How many American Indian or Alaska Native people are in nursing facilities?;How many American Indian or Alaska Native people are in nursing facilities?;The number of American Indian or Alaska Native Alone people in nursing facilities -Count_Person_AsianAlone,The number of Asian-alone people in the United States;Asian alone population;Population of people who are Asian alone;Asian population -Count_Person_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people in the United States identify as Asian, alone or in combination with one or more other races?;How many people identify as Asian alone or in combination with one or more other races?;How many people identify as Asian alone or in combination with one or more other races?;The number of people who are Asian alone or in combination with one or more other races;The total number of people who are Asian" -Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,The number of Asian Americans in adult correctional facilities;The number of Asian Americans incarcerated in the United States;The number of Asian Americans in prison;The number of Asian Americans in jail;Number of Asian people in adult correctional facilities -Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,The number of Asian students living in college or university student housing;Number of Asian students living in college or university housing;Number of Asian college students living in dorms;Number of Asian students living in on-campus housing;Number of Asian students living in university housing -Count_Person_AsianAlone_ResidesInGroupQuarters,Number of Asian people living in group quarters;Number of Asian people in group housing;Number of people who are Asian and in group quarters;Number of Asians in group quarters;Number of people who are Asian and living in group quarters -Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,Number of Asian Alone people in Institutionalized Group Quarters;Number of Asian Alone people institutionalized;Number of Asian Alone people institutionalized in group quarters;The number of Asian Alone people institutionalized in group quarters;The number of Asian Alone people institutionalized in group quarters -Count_Person_AsianAlone_ResidesInJuvenileFacilities,Number of Asian youth in juvenile facilities;Number of Asian American youth in juvenile detention centers;Number of Asian American and Pacific Islander youth in juvenile detention centers;Number of Asian youth in juvenile detention;Number of Asian American youth in detention centers -Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Asian people in military quarters or military ships;Number of Asian people in the military;Number of Asian people in military housing;Number of Asian people on military bases;Number of Asian people in the armed forces -Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of Asian people in noninstitutionalized group quarters;Number of Asians living in group quarters who are not in nursing homes, hospitals, or correctional facilities;1 Number of Asian Alone people in Noninstitutionalized Group Quarters;Number of Asian-alone people in noninstitutionalized group quarters;Number of Asian Alone people in noninstitutionalized group quarters" -Count_Person_AsianAlone_ResidesInNursingFacilities,The number of Asian Americans in nursing homes;The number of Asian Americans who live in nursing homes;The number of Asian Americans who are residents of nursing homes;The number of Asian Americans who are institutionalized in nursing homes;The number of Asian Americans who are in long-term care facilities -Count_Person_AsianOrPacificIslander,How many people are Asian or Pacific Islander;The number of Asian or Pacific Islander people;The population of Asian or Pacific Islanders;The number of people who identify as Asian or Pacific Islander;The number of people who are of Asian or Pacific Islander descent -Count_Person_BelowPovertyLevelInThePast12Months,The number of people who are poor;The number of people who are below the poverty line;The number of people living below the poverty line in the past year;The population of people living in poverty in the past year;The population living in poverty -Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,The number of American Indian or Alaska Native people living below the poverty line in the past 12 months;The number of American Indian or Alaska Native people who were poor in the past 12 months;The number of American Indian or Alaska Native people with incomes below the poverty line in the past 12 months;The number of American Indian or Alaska Native people who were living in poverty in the past 12 months;The number of American Indian or Alaska Natives living below the poverty line in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone,The number of people who are Asian and below the poverty line in the past 12 months;The number of Asian people who are struggling financially in the past 12 months;Number of Asian Alone people who were below the poverty level in the past 12 months;Number of Asian Alone people who were below the poverty line in the past 12 months;Number of Asian Alone people who were living in poverty in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,The number of black or African Americans living below the poverty line in the last 12 months;The number of black or African Americans who are living in poverty in the last 12 months;The number of Black or African American people who were below the poverty line in the past 12 months;The number of Black or African Americans living in poverty in the past 12 months;The number of Black or African Americans who were living in low-income households in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino,The number of Hispanic or Latino people who were below the poverty line in the past 12 months;The number of Hispanic or Latino people who were below the poverty line in the past 12 months;The number of Hispanic or Latino people who were living in poverty in the past 12 months;The number of Hispanic or Latino people who were poor in the past 12 months;The number of Hispanic or Latino people who were experiencing economic hardship in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,The number of Native Hawaiians and Other Pacific Islanders living below the poverty line in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders living below the poverty line in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders who were living in poverty in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders who were experiencing economic hardship in the past 12 months;The number of Native Hawaiian or Other Pacific Islanders Alone who were living in poverty in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,The number of people who are below the poverty level in the past 12 months and who identify as some other race alone;The number of people who are below the poverty line in the past 12 months and who identify as some other race alone;The number of people who are below the poverty level and who are of some other race alone in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of people who are below the poverty level and are two or more races;How many people are below the poverty line and are of two or more races?;The number of people who are below the poverty line in the past 12 months and who identify as two or more races;Number of people who are below the poverty line in the past 12 months and who identify as two or more races -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,The number of White Alone people living below the poverty line in the past 12 months;Number of people who are below the poverty level in the past 12 months and who are white alone;Number of people who are white and below the poverty level in the past 12 months;Number of people who are white and living in poverty in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,Number of White Alone Not Hispanic or Latino people living below the poverty line in the past 12 months;Number of White Alone Not Hispanic or Latino people below poverty level in the past 12 months;The number of White Alone Not Hispanic or Latino people who were below the poverty level in the past 12 months;The number of White Alone Not Hispanic or Latino people who were living in poverty in the past 12 months;Number of White Alone Not Hispanic or Latino people living in poverty in the past 12 months -Count_Person_BlackOrAfricanAmericanAlone,The number of people who are Black or African American alone;The number of people who are Black or African American alone -Count_Person_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Black or African American population;Black or African American population;Number of people who are Black or African American alone or in combination with one or more other races;Black or African American population;Number of people who are Black or African American alone or in combination with one or more other races -Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,The number of Black or African American people in adult correctional facilities;The number of Black or African American people in adult correctional facilities;Number of Black or African American people in adult correctional facilities;Number of Black or African Americans in adult prisons;Number of Black or African Americans in adult jails -Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,The number of Black or African American students living in college or university housing;The number of Black or African American students living in college or university student housing;The number of Black or African American students living in college or university dormitories;Number of Black or African American students living in college or university dormitories;Number of Black or African American students in college housing -Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,The number of Black or African American people living in group quarters;The number of Black or African American people who are in group quarters;The number of Black or African Americans living in group quarters;Number of Black or African American people in group quarters;Number of Black or African American people living in group quarters -Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,The number of Black or African American people who are institutionalized in group quarters;Number of Black or African American people institutionalized in group quarters;Number of Black or African American people institutionalized in group quarters;Number of Black or African American people institutionalized in group quarters;Number of Black or African American people institutionalized -Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,Number of Black or African American youth in juvenile facilities;Number of Black or African American juveniles in detention centers;Number of Black or African American children in juvenile detention;Number of Black or African American minors in juvenile justice facilities;Number of Black or African American kids in juvenile correctional facilities -Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Black or African Americans in Military Quarters or Military Ships;How many Black or African American people are in military quarters or military ships?;Number of Black or African American Alone people in Military Quarters or Military Ships;Number of Black or African American people in military quarters or on military ships;Number of Black or African American people living in military quarters or on military ships -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of Black or African American people living in non-institutional group quarters;Number of Black or African American people living in group quarters that are not institutions;Number of Black or African American people living in group quarters that are not hospitals, nursing homes, or prisons;Number of Black or African American people living in group quarters that are not jails, prisons, or other correctional facilities;Number of Black or African American people living in group quarters that are not mental health facilities, substance abuse treatment facilities, or other residential treatment facilities" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,The number of Black or African American people in nursing facilities;The number of Black or African American nursing home residents;The number of Black or African American people living in nursing homes;The number of Black or African American people who are institutionalized in nursing homes;The number of Black or African American people who are receiving long-term care in nursing homes -Count_Person_Civilian_Female_NonInstitutionalized,The number of civilians who are female and not institutionalized;Number of female non-institutionalized civilians;Number of civilians who are female and not institutionalized;Number of non-institutionalized civilians who are female;Number of females who are civilians and not institutionalized -Count_Person_Civilian_Male_NonInstitutionalized,Number of civilian males;Number of non-institutionalized males;Number of males who are not institutionalized;Number of males who are not institutionalized and are civilians;Number of civilian males who are not institutionalized -Count_Person_Civilian_NoDisability_NonInstitutionalized,Number of civilians without disabilities who are not institutionalized;Number of non-institutionalized civilians without disabilities;Number of non-institutionalized people without disabilities who are civilians;Number of people without disabilities who are civilians and are not institutionalized;Number of non-institutionalized civilians without disabilities -Count_Person_Civilian_WithDisability_NonInstitutionalized,Number of civilians with disabilities who are not institutionalized;Number of non-institutionalized civilians with disabilities;Number of civilians with disabilities who are not institutionalized;Number of non-institutionalized people with disabilities who are civilians;Number of people with disabilities who are civilians and not institutionalized -Count_Person_CognitiveDifficulty,How many people have cognitive difficulties?;How many people have cognitive difficulties;What is the number of people with cognitive impairment;How many people have trouble thinking or remembering things;What is the prevalence of cognitive impairment -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,The number of women with a bachelor's degree or higher who have been divorced in the past 12 months;The number of divorced women with a bachelor's degree or higher in the past 12 months;The number of women who have been divorced in the past 12 months and have a bachelor's degree or higher;The number of women with a bachelor's degree or higher who have been divorced in the past year;The number of divorced women with a bachelor's degree or higher in the past year -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,"The number of people who are female, have a bachelor's degree, and have been married in the past 12 months;The number of females with a bachelor's degree who have been married in the past 12 months;The number of people who are female, have a bachelor's degree, and were married in the past 12 months;The number of females with a bachelor's degree who were married in the past 12 months;The number of people who are female, have a bachelor's degree, and have been married in the last 12 months" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,"The number of people who are male, have a bachelor's degree or higher, and have been divorced in the past 12 months;How many men with a bachelor's degree or higher got divorced in the past 12 months?;The number of people who are male, have a bachelor's degree or higher, and were divorced in the past 12 months;The number of people who are male, have a bachelor's degree or higher, and have been divorced in the past year;The number of people who are male, have a bachelor's degree or higher, and have gone through a divorce in the past 12 months" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,"How many people have a Bachelor's degree or higher, are male, and got married in the past 12 months?;Number of people who have a Bachelor's degree or higher and are male and have been married in the past 12 months;Number of people who are married and have a bachelor's degree and are male in the past 12 months;Number of married men with a bachelor's degree in the past 12 months;Number of men with a bachelor's degree who are married in the past 12 months" -Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma, -Count_Person_EducationalAttainment_LessThan9ThGrade,The number of people who are younger than 9th grade;The number of people who are younger than 9th grade;The number of people who are in kindergarten through 8th grade;The number of people who are not in 9th grade or higher;The number of people who are younger than 9th grade -Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,Number of people who did not complete high school;Number of people who have not graduated from high school;Number of people who have not earned a high school diploma;Number of people who did not complete high school;Number of people who have not graduated from high school -Count_Person_EducationalAttainment_SomeCollegeNoDegree,Number of people who have some college but no degree;Number of people who have taken some college courses but do not have a degree;Number of people who have attended college but have not completed a degree;Number of people who have some college education but no degree;Number of people who have some college experience but no degree -Count_Person_Female,The number of females;The female population;The number of women;The number of people who identify as female;Female population -Count_Person_Female_AbovePovertyLevelInThePast12Months,The number of women who were above the poverty line in the past 12 months;The number of women who were above the poverty line in the past 12 months;The number of females who were above the poverty line in the past 12 months;The number of people who were female and above the poverty line in the past 12 months;The number of people who were female and not in poverty in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,The number of American Indian or Alaska Native women who were above the poverty level in the past 12 months;The number of American Indian or Alaska Native females who were above the poverty level in the past 12 months;The number of American Indian or Alaska Native females who were not poor in the past 12 months;The number of American Indian or Alaska Native women who were not living in poverty in the past 12 months;The number of American Indian or Alaska Native females who were not experiencing financial hardship in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,The number of Asian women who were above the poverty level in the past 12 months;Number of Asian women who were above the poverty level in the past 12 months;The number of Asian women who were above the poverty level in the past 12 months;The number of Asian females who were above the poverty level in the past 12 months;The number of Asian women who were above the poverty level in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,The number of Black or African American women who are above the poverty level in the past 12 months;The number of Black or African American women who were above the poverty level in the past 12 months;The number of Black or African American females who were not below the poverty level in the past 12 months;The number of Black or African American women who were not poor in the past 12 months;The number of Black or African American females who were not living in poverty in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,How many Hispanic or Latino women were above the poverty level in the past 12 months?;The number of Hispanic or Latino females who were above the poverty level in the past 12 months;The number of Hispanic or Latino females who were above the poverty level in the past 12 months;The number of Hispanic or Latino females who were above the poverty level in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone, -Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces, -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of White Alone females above poverty level in the past 12 months;Number of White Alone females above poverty level in the past 12 months;Number of White Alone women above poverty level in the past 12 months;Number of White Alone females not in poverty in the past 12 months;Number of White Alone women not in poverty in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"The number of White Alone, Not Hispanic or Latino females who were above the poverty level in the past 12 months;Number of White Alone Non-Hispanic or Latino females who are above poverty level in the past 12 months;Number of White Alone Non-Hispanic or Latino females who are not poor in the past 12 months;Number of White Alone Non-Hispanic or Latino females who have an income above the poverty line in the past 12 months;The number of White Alone Not Hispanic or Latino females who were above the poverty level in the past 12 months" -Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,Number of American Indian and Alaska Native females;Number of American Indian and Alaska Native women;The number of females who are American Indian and Alaska Native alone or in combination with one or more other races;Number of Female American Indian and Alaska Natives;The number of American Indian and Alaska Native women -Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,The number of females who are American Indian or Alaska Native Alone;Number of Female American Indian or Alaska Natives;Number of American Indian or Alaska Native females;Number of Female American Indians or Alaska Natives -Count_Person_Female_AsianAlone,Female Asian Alone population -Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of females who are Asian;Number of Asian women;Number of females who are Asian alone or in combination with one or more other races;Number of women who are Asian alone or in combination with one or more other races;The number of Asian women in the United States -Count_Person_Female_AsianOrPacificIslander,The number of Asian or Pacific Islander females;The number of Asian or Pacific Islander females;The number of females who are Asian or Pacific Islander;The number of people who are both Asian or Pacific Islander and female;The number of people who are female and Asian or Pacific Islander -Count_Person_Female_BelowPovertyLevelInThePast12Months,Number of females below the poverty line in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native Alone females below the poverty level in the past 12 months;Number of American Indian or Alaska Native Alone females with incomes below the poverty line in the past 12 months;The number of American Indian or Alaska Native women living below the poverty line in the past 12 months;The number of American Indian or Alaska Native Alone females living below the poverty level in the past 12 months;The number of American Indian or Alaska Native women living below the poverty line in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,Number of Asian females below the poverty line in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,The number of Black or African American women who are poor;The number of Black or African American women who are living in poverty;The number of Black or African American women who are poor;The number of Black or African American women who are living in poverty -Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,Number of Hispanic or Latino women who are poor;Number of Hispanic or Latino women with low income;Number of Hispanic or Latino women who are living in poverty -Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander Alone women who are poor;Number of Native Hawaiian or Other Pacific Islander Alone women who are living in poverty;Number of Native Hawaiian or Other Pacific Islander Alone women who are experiencing economic hardship -Count_Person_Female_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,The number of females below the poverty level in the past 12 months who are some other race alone;The number of females who were below the poverty line in the past 12 months and who are some other race alone;The number of females who are below the poverty level in the past 12 months and who are some other race alone;Number of females below the poverty line in the past 12 months who are of some other race alone -Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"The number of people who are female, below the poverty line in the past 12 months, and who identify as two or more races;The number of people who are female, below the poverty line in the past 12 months, and identify as two or more races;The number of people who are female, below the poverty level in the past 12 months, and identify as two or more races;The number of people who are female, identify as two or more races, and were below the poverty level in the past 12 months;The number of people who were below the poverty level in the past 12 months, identify as two or more races, and are female" -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,The number of white women living below the poverty line in the past 12 months;Number of White Alone females below the poverty level in the past 12 months;The number of white females living below the poverty line in the past 12 months;The number of white women living below the poverty line in the past 12 months;The number of White Alone females who were below the poverty level in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"The number of females who were below the poverty level in the past 12 months and who are white alone, not Hispanic or Latino;The number of White Alone, Not Hispanic or Latino females living below the poverty level in the past 12 months;The number of White Alone, Not Hispanic or Latino women living below the poverty level in the past 12 months;The number of female White Alone Not Hispanic or Latino people who were below the poverty level in the past 12 months;The number of female White Alone Not Hispanic or Latino people who lived in poverty in the past 12 months" -Count_Person_Female_BlackOrAfricanAmericanAlone, -Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,The number of Black or African American women;How many Black or African American women are there in the United States?;The number of Black or African American women in the US;The number of Black or African American women;The number of Black or African American females -Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,The number of women who have been divorced in the past 12 months and are below the poverty line;Number of female divorcees below poverty level in the past 12 months;Number of women who have been divorced in the past 12 months and are below the poverty line;The number of women who have been divorced in the past 12 months and are below the poverty line;The number of women who have been divorced in the past 12 months and are below the poverty line -Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,Number of women who have been divorced in the past 12 months and have been determined to be in poverty;Number of female divorcees who have been determined to be in poverty in the past 12 months;Number of women who have been divorced in the past 12 months and have been determined to be living in poverty;Number of female divorcees who have been determined to be living in poverty in the past 12 months;Number of female divorcees in the past 12 months who have been determined to be in poverty -Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,The number of women who have been divorced in the past 12 months and who are heads of household;The number of female heads of household who have been divorced in the past 12 months;The number of women who are divorced and who are heads of household in the past 12 months;The number of female heads of household who have been divorced in the past year;The number of women who are divorced and who are heads of household in the past year -Count_Person_Female_ForeignBorn,Number of foreign-born females;Number of females who are foreign-born;Female foreign-born population;Number of foreign-born women;Number of foreign-born females -Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,Number of female foreign-born Africans;Number of African female immigrants;Number of African-born female immigrants;Number of female immigrants from Africa;Number of foreign-born African women -Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,Number of female foreign-born Asians;Number of Female foreign-born Asian people;Number of Asian foreign-born females;Number of foreign-born Asian females;Number of females who are Asian and foreign-born -Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean, -Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,The number of Central American women who were born outside of the United States;Number of Central American women who are foreign born;Number of foreign-born Central American women;Number of women who are foreign born from Central America;Number of Central American women who are not from Mexico -Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,The number of Eastern Asian female foreign-born people;The number of female foreign-born people from Eastern Asia;The number of foreign-born Eastern Asian women;The number of Eastern Asian female immigrants;The number of female immigrants from Eastern Asia -Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,Number of European female foreign-born residents;Number of foreign-born European females;Number of European females who were born outside the US;Number of foreign-born females who are from Europe;Number of females who are European and were born outside the US -Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,Number of female foreign-born Latin Americans;Number of Latin American female immigrants;Number of foreign-born Latin American women;Number of Latin American women who are foreign-born;Number of female Latin American immigrants -Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,Number of Mexican-born females;Number of foreign-born women from Mexico;Number of Mexican female immigrants;Number of females born in Mexico who are living in the US;Number of Mexican-born females living in the US -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,The number of female foreign-born North Americans;The number of female North Americans who were born outside of North America;The number of foreign-born North American women;The number of North American women who were born outside of North America;Number of female foreign-born people in North America -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"How many people are female, foreign-born, and from Northern Western Europe?;Number of female foreign-born people from Northern Western Europe;Number of female immigrants from Northern Western Europe;Number of women who were born in Northern Western Europe and who now live in the United States;Number of female foreign nationals from Northern Western Europe" -Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,Number of female foreign-born people from Oceania;Number of foreign-born women from Oceania;Number of female Oceanian immigrants;Number of Oceanian female immigrants;Number of female immigrants from Oceania -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,The number of South Central Asian foreign-born females;How many South Central Asian women are foreign-born?;The number of South Central Asian foreign-born females;1 Number of South Central Asian female foreign-born people -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of South East Asian foreign-born females;Number of foreign-born females from South East Asia;Number of females born outside the US who are from South East Asia;Number of females who are foreign-born and South East Asian;Number of South East Asian foreign-born women -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,Number of South American females who are foreign-born;Number of South American female foreign born people;Number of female foreign born people from South America;Number of South American foreign born women;Number of women from South America who are foreign born -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of female foreign-born people from Southern Eastern Europe;Number of Southern Eastern European female foreign-born people;Number of female foreign-born people from Southern Eastern Europe;Number of Southern Eastern European foreign-born females;Number of foreign-born females from Southern Eastern Europe -Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,Number of Western Asian females who are foreign born;Number of foreign born Western Asian females;Number of females who are foreign born and Western Asian;Number of Western Asian foreign born females;Number of females who are foreign born and from Western Asia -Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,The number of female foreign-born people in adult correctional facilities;The number of females in adult correctional facilities who are foreign-born;1 Number of female foreign-born prisoners;The number of female foreign-born people in adult correctional facilities;Number of female foreign-born prisoners -Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,The number of female foreign-born college students living in student housing;Number of female foreign-born students living in college or university student housing;Number of female college or university student housing residents who are foreign-born;Number of foreign-born female students living in college or university student housing;Number of foreign-born students living in college or university student housing who are female -Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,"Number of females who are foreign born and live in group quarters;Number of foreign-born people who are female and live in group quarters;Number of people who are foreign born, female, and live in group quarters;Number of foreign-born females living in group quarters;1 The number of female foreign-born people living in group quarters" -Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number of foreign-born females institutionalized in group quarters;Number of institutionalized foreign-born females in group quarters;Number of females institutionalized in group quarters who are foreign-born;Number of foreign-born females who are institutionalized in group quarters;Number of females who are foreign-born and institutionalized in group quarters -Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,The number of female foreign-born juveniles in facilities;The number of females in juvenile facilities who are foreign-born;Number of female foreign-born juveniles in facilities;Number of female foreign-born children in juvenile detention;Number of female foreign-born kids in juvenile correctional facilities -Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number of foreign-born females in noninstitutionalized group quarters;Number of foreign-born women in noninstitutionalized group quarters;Number of female foreign-born people in noninstitutionalized group quarters;Number of women who are foreign-born and in noninstitutionalized group quarters;Number of female foreign-born residents of noninstitutionalized group quarters -Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,Number of female foreign-born nursing home residents;Number of female nursing home residents who are foreign-born;Number of foreign-born nursing home residents who are female;Number of female nursing home residents who were born outside the United States;Number of foreign-born nursing home residents who are women -Count_Person_Female_HispanicOrLatino,The number of Hispanic or Latino females;The number of females who are Hispanic or Latino;The number of people who are Hispanic or Latino and female;The number of Hispanic or Latino women;The number of female Hispanic or Latinos -Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,The number of females who are Hispanic or Latino and American Indian or Alaska Native -Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,Number of females who identify as Hispanic or Latino & American Indian or Alaska Native Alone -Count_Person_Female_HispanicOrLatino_AsianAlone,Number of females who identify as Hispanic or Latino & Asian Alone -Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,The number of women who are Hispanic or Latino and Asian;Number of Asian women who are also Hispanic or Latino;Number of Hispanic or Latino women who are also Asian;Number of women who are Hispanic or Latino and Asian;The number of females who are of Hispanic or Latino and Asian descent -Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,The number of females who are Hispanic or Latino and Asian or Pacific Islander;The number of Hispanic or Latino and Asian or Pacific Islander females;The number of females who identify as Hispanic or Latino and Asian or Pacific Islander;The number of females who are of Hispanic or Latino and Asian or Pacific Islander descent;The number of females who are Hispanic or Latino and Asian or Pacific Islander by ethnicity -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Number of females who are Hispanic or Latino & Black or African American;Number of women who are Hispanic or Latino & Black or African American;Number of women who identify as Hispanic or Latino and Black or African American -Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,The number of Native Hawaiian and Other Pacific Islander women who are also Hispanic or Latino;The number of women who identify as Hispanic or Latino and Native Hawaiian and Other Pacific Islander -Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,Number of females who identify as Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone -Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,The number of Hispanic or Latino women who are multiracial -Count_Person_Female_HispanicOrLatino_WhiteAlone, -Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Hispanic or Latino females who are White or White in combination with one or more other races -Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,Number of female married people living below the poverty line in the past 12 months;Number of married female people living below the poverty line in the past 12 months;Number of married women living below the poverty line in the past 12 months;Number of female married people who have lived below the poverty line in the past 12 months;Number of female married people who are below poverty level in the past 12 months -Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,Number of married females in the past 12 months with poverty status determined;Number of females who are married and have had their poverty status determined in the past 12 months;Number of females who are married and have had their poverty status determined in the last year;Number of females who are married and have had their poverty status determined in the last 12 months;Number of females who are married and have had their poverty status determined in the last 365 days -Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,The number of female households who have been married in the past 12 months;Number of female household members who were married in the last 12 months;Number of females who are household members and were married in the last 12 months;Number of married female household members in the last 12 months;Number of female household members who were married in the past 12 months -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone, -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Number of women who identify as Native Hawaiian and Other Pacific Islander;Number of women who are Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races;Number of women who identify as Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races -Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Female_NonWhite,Number of non-white females;Number of females who are not white;Number of people who are female and non-white;Number of non-white people who are female;Number of people who are not white and female -Count_Person_Female_NotHispanicOrLatino,"Female, Not Hispanic or Latino population;Number of females who are not Hispanic or Latino;Number of people who identify as female and not Hispanic or Latino;Number of people who are female and not of Hispanic or Latino descent;Number of people who are female and not of Hispanic or Latino origin" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"The number of American Indian and Alaska Native women who are not Hispanic or Latino;Number of American Indian and Alaska Native women who are not Hispanic or Latino;How many people are female, not Hispanic or Latino, and American Indian or Alaska Native alone or in combination with one or more other races?" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"The number of people who are female, not Hispanic or Latino, and American Indian or Alaska Native alone;Number of females who are not Hispanic or Latino and American Indian or Alaska Native alone;The number of people who are female, not Hispanic or Latino, and American Indian or Alaska Native alone" -Count_Person_Female_NotHispanicOrLatino_AsianAlone,"Female, Not Hispanic or Latino & Asian Alone population;Female, Not Hispanic or Latino & Asian Alone population" -Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of females who are Asian or Asian-American, not Hispanic or Latino;Number of females who are Asian or Asian-American, not of Hispanic, Latino, or Spanish origin, alone or in combination with one or more other races;Number of women who are not Hispanic or Latino and Asian alone or in combination with one or more other races;Number of Asian women who are not Hispanic or Latino;Number of women who are Asian and not Hispanic or Latino" -Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,"Number of females who are not Hispanic or Latino and Asian or Pacific Islander;Number of people who are female, not Hispanic or Latino, and Asian or Pacific Islander;The number of Asian or Pacific Islander females who are not Hispanic or Latino;The number of Asian or Pacific Islander women who are not Hispanic or Latino;The number of Asian or Pacific Islander females who are not of Hispanic descent" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Female, Not Hispanic or Latino & Black or African American Alone population" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Black or African American females who are not Hispanic or Latino;Number of Black or African American women who are not Hispanic or Latino;Number of Black or African American females who are not Hispanic or Latino;Number of Black or African American women who are not Hispanic or Latino;Number of Black or African American females who are not Hispanic or Latino and who are Black or African American alone or in combination with one or more other races -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are female, not Hispanic or Latino, and Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races?;How many females are not Hispanic or Latino and are Native Hawaiian or other Pacific Islander alone or in combination with one or more other races?;The number of people who are female, not Hispanic or Latino, and Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races;Number of people who are female, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;Number of people who are female, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"How many people are Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone?;The number of people who are female, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;The number of people who are female and not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone" -Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,"The number of people who are female, not Hispanic or Latino, and are multiracial" -Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of females who are not Hispanic or Latino and white alone or in combination with one or more other races -Count_Person_Female_ResidesInAdultCorrectionalFacilities,Number of females in adult correctional facilities;Number of women in adult correctional facilities;Number of incarcerated females;Number of incarcerated women;Number of female prisoners -Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,Number of female college students living in dorms;Number of female college students living in on-campus housing;Number of female college students living in university housing;Number of female college students living in student housing;Number of female college students living in residence halls -Count_Person_Female_ResidesInGroupQuarters,Number of females in group quarters -Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,Number of females institutionalized in group quarters;Number of females institutionalized in group quarters;Number of women institutionalized in group quarters;Number of females institutionalized in group quarters;Number of female institutionalized group quarters residents -Count_Person_Female_ResidesInJuvenileFacilities,The number of females in juvenile facilities;Number of female juvenile offenders;Number of girls in juvenile detention centers;Number of females in juvenile facilities;Number of female juvenile offenders -Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Number of females in military quarters or military ships;Number of women in military quarters or military ships;Number of female personnel in military quarters or military ships;Number of female service members in military quarters or military ships;Number of female soldiers in military quarters or military ships -Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,Number of females in non-institutional group quarters;Number of females in non-institutional group quarters;Number of females in non-institutionalized group quarters;Number of females in non-institutionalized group quarters;Number of women in non-institutionalized group quarters -Count_Person_Female_ResidesInNursingFacilities, -Count_Person_Female_SomeOtherRaceAlone,"Female population of Some Other Race Alone;Number of females who are some other race alone;Number of females who identify as some other race only;The number of people who identify as female and some other race alone;Female, Some Other Race Alone population" -Count_Person_Female_TwoOrMoreRaces,Number of people who are female and multiracial;Number of people who are female and biracial;Number of people who are female and multiethnic;The number of people who are female and multiracial;Number of people who are female and multiracial -Count_Person_Female_WhiteAlone,"Count of people who are Female, White Alone;Number of White-alone females;Number of females who are white alone;Female White Alone population" -Count_Person_Female_WhiteAloneNotHispanicOrLatino,Number of women who are white and not Hispanic or Latino;Number of females who are white and not Hispanic;Number of females who are white and not Hispanic or Latino;Number of White females who are not Hispanic or Latino;Number of females who are white alone and not Hispanic or Latino -Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of females who are white alone or in combination with one or more other races;Number of white females alone or in combination with one or more other races;Number of women who are white alone or in combination with one or more other races;Number of white women alone or in combination with one or more other races;Number of people who are female and white alone or in combination with one or more other races -Count_Person_Female_WithEarnings,Number of females with earnings;Number of women with earnings;Number of female earners;Number of women who earn money;Number of females who make money -Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,Number of female inmates with earnings in adult correctional facilities;Number of female inmates with earnings;Number of females in adult correctional facilities with earnings;The number of females with earnings in adult correctional facilities;Number of female inmates with earnings in adult correctional facilities -Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,The number of females with earnings who live in college or university student housing;Number of female students with earnings who live in college or university student housing;Number of female students with earnings living in college or university student housing;Number of females with earnings living in college or university student housing;Number of female students in college or university student housing who have earnings -Count_Person_Female_WithEarnings_ResidesInGroupQuarters,The number of women who are employed and live in group quarters;Number of females with earnings in group quarters;Count of females with earnings in group quarters;Number of females in group quarters with earnings;Count of females in group quarters with earnings -Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,Number of females with earnings in institutionalized group quarters;Number of females with earnings who are institutionalized in group quarters;Number of females with earnings institutionalized in group quarters;Number of female people who are institutionalized in group quarters and have earnings;Number of women with earnings who are institutionalized in group quarters -Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,Number of female juvenile offenders with earnings;Number of female juvenile offenders with earnings;Number of female juvenile inmates with earnings;Number of female juvenile inmates who have earnings;Number of female juvenile inmates who are earning money -Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,Number of female earners in military quarters or military ships;Number of female earners in military quarters or military ships;Number of female military personnel with earnings;Number of female military personnel who earn money;Number of female military personnel who are paid -Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,Number of women with earnings in non-institutional group quarters;Number of females with earnings in non-institutional group quarters who are not living in private households -Count_Person_Female_WithEarnings_ResidesInNursingFacilities, -Count_Person_HearingDifficulty,How many people have hearing loss?;How many people have hearing loss?;How many people have hearing loss?;How many people have hearing loss?;How many people have hearing loss? -Count_Person_HispanicOrLatino,Hispanic population;Latino population;number of Hispanics;number of Latinos;Hispanic and Latino population -Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_HispanicOrLatino_AsianAlone, -Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,The number of people who identify as Hispanic or Latino and Asian alone or in combination with one or more other races;The number of people who identify as both Hispanic or Latino and Asian;The number of people who identify as Hispanic or Latino and Asian American;How many people identify as Hispanic or Latino and Asian?;How many people are Hispanic or Latino and Asian? -Count_Person_HispanicOrLatino_AsianOrPacificIslander,The number of Hispanic or Latino people and Asian or Pacific Islander people;The number of people who are Hispanic or Latino and Asian or Pacific Islander;The number of people who identify as Hispanic or Latino and Asian or Pacific Islander;The number of people who are of Hispanic or Latino and Asian or Pacific Islander descent;The number of people who are Hispanic or Latino and Asian or Pacific Islander ethnicity -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"The number of people who identify as Hispanic or Latino and Black or African American, either alone or in combination with one or more other races;How many people are Hispanic or Latino and Black or African American?;The number of people who are of Hispanic or Latino ethnicity and Black or African American race;The number of people who identify as Hispanic or Latino and Black or African American alone or in combination with one or more other races;The number of people who are Hispanic or Latino and Black or African American, or both" -Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;The number of people who identify as Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander ethnicity;Population of Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races -Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;Hispanic or Latino and Native Hawaiian or Other Pacific Islander Alone population -Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,The number of Hispanic or Latino people in adult correctional facilities;The number of Hispanic or Latino people in jails and prisons;The number of Hispanic or Latino people incarcerated in the United States;The number of Hispanic or Latino people who are serving time in prison;How many Hispanic or Latino people are in adult correctional facilities? -Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,The number of Hispanic or Latino students living in college or university housing;The number of Hispanic or Latino students in college or university dorms;The number of Hispanic or Latino students in college or university residence halls;The number of Hispanic or Latino students in college or university student housing facilities;The number of Hispanic or Latino students in college or university student housing units -Count_Person_HispanicOrLatino_ResidesInGroupQuarters,The number of Hispanic or Latino people in group quarters;Number of Hispanics or Latinos in group quarters;Number of Hispanics or Latinos in Group Quarters -Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,Number of Hispanic or Latino people institutionalized in group quarters;The number of Hispanic or Latino people institutionalized in group quarters;The number of Hispanic or Latino people institutionalized;number of Hispanic or Latino people institutionalized in group quarters;number of Hispanic or Latino people institutionalized -Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,How many Hispanic or Latino people are in juvenile facilities?;The number of Hispanic or Latino people in juvenile facilities;The number of Hispanic or Latino people in juvenile facilities;Hispanic or Latino juvenile population;Hispanic or Latino juvenile population -Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,How many Hispanic or Latino people are in military quarters or military ships?;The number of Hispanic or Latino people in military quarters or military ships;How many Hispanic or Latino people are in military quarters or on military ships?;Number of Hispanic or Latino people in military housing or on military ships;Number of Hispanics or Latinos living in military housing or on military ships -Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,Number of Hispanic or Latino people in non-institutional group quarters;Number of Hispanic or Latino people in non-institutional group quarters;Number of Hispanics or Latinos in non-institutional group quarters -Count_Person_HispanicOrLatino_ResidesInNursingFacilities,The number of Hispanic or Latino people in nursing facilities;How many Hispanic or Latino people are in nursing facilities;The percentage of Hispanic or Latino people in nursing facilities;The proportion of Hispanic or Latino people in nursing facilities;The number of Hispanic or Latino nursing home residents -Count_Person_HispanicOrLatino_TwoOrMoreRaces, -Count_Person_HispanicOrLatino_WhiteAlone,The number of people who are of Hispanic or Latino origin and White race;The number of people who are Hispanic or Latino and White on the census;The number of people who are Hispanic or Latino and White in the United States;Number of Hispanic or Latino people who are also White;Number of White Hispanic or Latino people -Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic or Latino people who are white alone or in combination with one or more other races;Number of people who are Hispanic or Latino and White alone or in combination with one or more other races;Number of people who identify as Hispanic or Latino and White alone or in combination with one or more other races on the 2020 Census;Number of people who are Hispanic or Latino and identify as White alone or in combination with one or more other races;Number of people who identify as Hispanic or Latino and White, alone or in combination with one or more other races" -Count_Person_InLaborForce_Female_DivorcedInThePast12Months,Number of divorced females in the labor force in the past 12 months;Number of divorced women in the labor force in the past 12 months;Number of female divorcees in the labor force in the past 12 months;Number of women in the labor force who have been divorced in the past 12 months;Number of female labor force participants who have been divorced in the past 12 months -Count_Person_InLaborForce_Female_MarriedInThePast12Months,Number of married females in the labor force in the past 12 months;Number of females in the labor force who were married in the past 12 months;Number of females in the labor force who were married in the past year;Number of females who were married in the past year and are in the labor force;Number of female workers who got married in the past 12 months -Count_Person_InLaborForce_Male_DivorcedInThePast12Months,The number of divorced males in the labor force in the past 12 months;Number of divorced men in the labor force in the past 12 months;Number of divorced men in the workforce in the past 12 months;Number of men who have been divorced in the past year and are currently in the labor force;Number of divorced men in the workforce in the past 12 months -Count_Person_InLaborForce_Male_MarriedInThePast12Months,The number of men in the labor force who have been married in the past 12 months;Number of married males in the labor force in the past 12 months;Number of males in the labor force who were married in the past 12 months;Number of married men in the labor force in the past 12 months;Number of men in the labor force who have been married in the past 12 months -Count_Person_IndependentLivingDifficulty,"The number of people who have difficulty living independently;The number of people who have difficulty doing errands alone because of a physical, mental, or emotional problem;The number of people who have difficulty doing everyday tasks on their own;The number of people who need help with daily living activities;The number of people who are dependent on others for assistance with activities of daily living" -Count_Person_Male,The number of males;The male population;The number of people who are male;The number of men;Number of males -Count_Person_Male_AbovePovertyLevelInThePast12Months,The number of males above the poverty level in the past 12 months;The number of males who were not poor in the past 12 months;The number of men who were above the poverty line in the past 12 months;Number of males above the poverty line in the past 12 months;Number of males above the poverty line in the past 12 months -Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,The number of American Indian or Alaska Native Alone males who were above the poverty level in the last year;Number of American Indian or Alaska Native Alone males who were above the poverty level in the last year;Number of American Indian or Alaska Native Alone males who were above the poverty level last year;The number of American Indian or Alaska Native Alone males who were above the poverty level in the last year;The number of American Indian or Alaska Native Alone males who were above the poverty level in the past year -Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,How many Asian males were above the poverty line last year?;The number of Asian males above the poverty line last year;The number of Asian males who were above the poverty line last year;The number of Asian males who were above the poverty line in the last year;Number of Asian males above the poverty line in the past year -Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black or African American men who were above the poverty line last year;Number of Black or African American men above poverty level in the last year;The number of Black or African American men who were above the poverty level in the last year;The number of Black or African American males who were not in poverty in the last year;The number of Black or African American men who were not poor in the last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,How many Hispanic or Latino males were above the poverty line last year?;The number of Hispanic or Latino males who were above the poverty line in the past year;The number of Hispanic or Latino males who were above the poverty line last year;The number of Hispanic or Latino men who were not in poverty last year;The number of Hispanic or Latino males who had an income above the poverty line last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone, -Count_Person_Male_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,Number of males above poverty level who are some other race alone in the last year;Number of males who are some other race alone and above poverty level in the last year;Number of males who are above poverty level and some other race alone in the last year;Number of males who are some other race alone and above poverty level in the last 12 months;Number of males who are above poverty level and some other race alone in the last 12 months -Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"The number of people who are male, above the poverty level, and multiracial in the last year;Number of people who are male and above the poverty line and identify as multiracial" -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of white males above the poverty line in the last year;The number of white males who were above the poverty line last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,The number of White Alone Not Hispanic or Latino males who were above the poverty level last year;The number of White Alone Not Hispanic or Latino males who were above the poverty level in the last year;The number of White Alone Not Hispanic or Latino males who had an income above the poverty line in the last year;The total number of White Alone Not Hispanic or Latino males who were not poor in the last year;The number of White Alone Not Hispanic or Latino males who were above the poverty level last year -Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,How many people are male and American Indian or Alaska Native?;Number of people who are male and American Indian or Alaska Native;Number of people who are male and American Indian or Alaska Native alone or in combination with one or more other races;Number of males who are American Indian or Alaska Native alone or in combination with one or more other races;Number of American Indian and Alaska Native males -Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,Male American Indian or Alaska Native Alone population;The number of males who are American Indian or Alaska Native Alone;The population of American Indian or Alaska Native Alone males;The number of American Indian or Alaska Native Alone males;The number of males who identify as American Indian or Alaska Native Alone -Count_Person_Male_AsianAlone,The number of males who are Asian alone;Number of Asian-alone males;Number of males who are Asian alone;Number of people who are male and Asian alone;Male Asian Alone population -Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Asian males;Number of males who are Asian;Number of males who identify as Asian;Number of males who are of Asian descent;Number of males who are Asian -Count_Person_Male_AsianOrPacificIslander,The number of male Asian or Pacific Islanders;The number of Asian or Pacific Islander males;The number of people who are Asian or Pacific Islander and male;The number of males who are Asian or Pacific Islander;The number of Asian or Pacific Islander people who are male -Count_Person_Male_BelowPovertyLevelInThePast12Months,The number of men who were below the poverty line in the past 12 months;The number of men who were poor in the past 12 months;Number of males below the poverty line in the past 12 months;Number of males below the poverty line in the past 12 months;Number of males below the poverty line in the past 12 months -Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone,Number of Asian males with an income that is insufficient to meet basic needs in the last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,The number of Black or African American males living below the poverty line in the last year;The number of Black or African American males living below the poverty line in the last year;The number of Black or African American males living below the poverty line in the last year;The number of Black or African American males living below the poverty line in the last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,The number of Native Hawaiian or Other Pacific Islander Alone males living below the poverty level in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are poor in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are living in poverty in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are experiencing poverty in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are struggling financially in the last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,Number of males below poverty level in the last year who are some other race alone;The number of males below the poverty level who are some other race alone in the last year;Number of males in poverty who are some other race alone;Number of males in poverty who are of some other race;Number of males in poverty who are of a race other than white or black -Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of males who are below the poverty line and are multiracial in the last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,Number of White Alone males below the poverty line in the last year;Number of White Alone males below the poverty line in the last year;Number of White Alone males below the poverty line in the past year -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,The number of White Alone Not Hispanic or Latino males who were living in poverty in the last year;The number of White Alone Not Hispanic or Latino males who were living in economic hardship in the last year;The number of White Alone Not Hispanic or Latino males who were living in poverty in the last year;Number of White Alone Not Hispanic or Latino males living below the poverty line in the last year;Count of White Alone Not Hispanic or Latino males living below the poverty line in the last year -Count_Person_Male_BlackOrAfricanAmericanAlone,Number of males who are Black or African American alone;Number of Black or African American males alone -Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Number of males who are Black or African American;Number of Black or African American males;Number of males who are of Black or African American descent;Number of males who are Black or African American;Number of Black or African American males -Count_Person_Male_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,How many men have been divorced in the past year and are below the poverty line?;How many men have been divorced in the last year and are now living below the poverty line?;The number of divorced men living below the poverty line in the past year;The number of men who are divorced and below the poverty line in the past year;The number of men who are divorced and living in poverty in the past year -Count_Person_Male_DivorcedInThePast12Months_PovertyStatusDetermined,Number of male divorcees determined to be in poverty in the last year;Number of male divorcees determined to be living in poverty in the last year;Number of male divorcees determined to be below the poverty line in the last year;The number of males who have been divorced in the past year and have been determined to be in poverty;The number of males who have been divorced in the past year and have been determined to be living in poverty -Count_Person_Male_DivorcedInThePast12Months_ResidesInHousehold,The number of male householders who have been divorced in the past year;Number of divorced males in households in the last year;Number of divorced men who are heads of household in the last year;Number of male household heads who have been divorced in the last year;Number of men who are heads of household and have been divorced in the last year -Count_Person_Male_ForeignBorn,Number of foreign-born males;Number of foreign-born males;Number of males who are foreign-born;The number of male foreign-born people;Number of foreign-born males -Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,Number of males born in Africa;Number of males born in Africa;Number of male Africans;Number of males born in Africa;Number of males born in Africa -Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,Number of males born in Asia;Number of males born in the Asian continent;Number of male people born in Asia;The number of men born in Asia;The number of males born in Asia -Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,Male population born in the Caribbean;Number of Caribbean-born males;Number of males born in the Caribbean;Population of males born in the Caribbean;Number of males born in the Caribbean region -Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of people who are male and were born in Central America but not Mexico;Count of males born in Central America but not Mexico;Number of Central American males born outside of Mexico;Number of males born in Central America but not in Mexico;Count of males born in Central America excluding Mexico -Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,Number of males born in Eastern Asia;Number of people born in Eastern Asia who are male;Number of people who are male and were born in Eastern Asia;Number of people born in Eastern Asia who identify as male;Number of people who were born in Eastern Asia and identify as male -Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,The number of males born in Europe;Number of male Europeans;Number of European males;Number of males born in Europe;Number of people born in Europe who are male -Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,Number of male Latin Americans;The number of people who are male and were born in Latin America;Male population in Latin America;Male population of Latin America;Male population of Latin America -Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,Number of people who are Male and born in Mexico;Number of males born in Mexico;Number of people born in Mexico who are male;Number of people who are male and were born in Mexico;Number of males who were born in Mexico -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,The number of males born in North America;Number of males born in North America;Number of people born in North America who are male;Number of male North Americans;Number of North Americans who are male -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,The number of males born in Northern Western Europe;The number of males born in Northern Western Europe;Number of male Northern Western Europeans;Count of male Northern Western Europeans;How many male Northern Western Europeans are there? -Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,The number of Oceanian males;The number of males born in Oceania;The number of people born in Oceania who are male;The number of male Oceanians;The number of Oceanian males -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,The number of males born in South Central Asia;The number of males born in South Central Asia;The number of people who are male and were born in South Central Asia;The number of male births in South Central Asia;The number of males who were born in South Central Asia -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Southeast Asian males born -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,number of males born in south america;number of people born in south america who are male;number of people who are male and were born in south america;number of south american males;number of males in south america -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of males born in Southern Eastern Europe;Number of people born in Southern Eastern Europe who are male;Number of people born in the Balkans who are male;The number of males born in Southern Eastern Europe;The number of people born in Southern Eastern Europe who are male -Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,The number of males born in Western Asia;The number of people who are male and were born in Western Asia;The number of male births in Western Asia;The number of males who were born in Western Asia;The number of people who are male and were born in the Western Asian region -Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,Number of male foreign-born inmates in adult correctional facilities;Number of male foreign-born inmates in adult correctional facilities;Number of male foreign-born inmates in adult correctional facilities;Number of male foreign-born prisoners;Number of male prisoners who were born outside the United States -Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,The number of male foreign-born students living in college or university student housing;1 Number of foreign-born male students living in college or university student housing;Number of male foreign-born students living in college or university student housing;The number of male foreign-born students living in college or university student housing;Number of male foreign-born college students living in student housing -Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,Number of male foreign-born residents of group quarters;Number of male foreign-born residents of group quarters;Count of foreign-born males living in group quarters;Number of foreign-born males residing in group quarters;Number of foreign-born males living in group quarters -Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,Number of male foreign-born juveniles in facilities;Number of foreign-born male juveniles in facilities;Number of male juveniles in facilities who are foreign-born;Number of foreign-born juveniles in facilities who are male;Number of juveniles in facilities who are male and foreign-born -Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,Number of foreign-born males living in military quarters or military ships;Number of foreign-born males living in military quarters or military ships;Number of males living in military quarters or military ships who were born outside the United States;Number of males living in military quarters or military ships who were not born in the United States;Number of males living in military quarters or military ships who are foreign nationals -Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Number of male foreign-born people living in non-institutional group quarters;Number of male foreign-born people living in non-institutional group quarters;The number of people who are male, foreign born, and living in non-family households;The number of people who are male, foreign born, and living in group living arrangements" -Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,Number of male foreign-born nursing home residents;Number of male foreign-born nursing home residents;Number of male foreign-born residents in nursing homes;Number of male foreign-born nursing home residents;Number of male foreign-born residents of nursing homes -Count_Person_Male_HispanicOrLatino,The number of Hispanic or Latino males;The number of males who are Hispanic or Latino;The number of Hispanic or Latino people who are male;The number of males who identify as Hispanic or Latino;The number of males who are of Hispanic or Latino descent -Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_HispanicOrLatino_AsianAlone,"How many people are male, Hispanic or Latino, and Asian alone?;What is the number of people who are male, Hispanic or Latino, and Asian alone?;What is the population of people who are male, Hispanic or Latino, and Asian alone?;How many people are male, Hispanic or Latino, and Asian alone;The number of males who are Hispanic or Latino and Asian Alone" -Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of people who are male and Hispanic or Latino and Asian;Number of people who are male and identify as Hispanic or Latino and Asian;Number of people who are male and identify as Asian and Hispanic or Latino;Number of males who are Hispanic or Latino and Asian;Number of males who are Asian and Hispanic or Latino -Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,Number of Hispanic or Latino males who are also Asian or Pacific Islander;Number of Asian or Pacific Islander males who are also Hispanic or Latino;Number of males who are both Hispanic or Latino and Asian or Pacific Islander;Number of males who identify as Hispanic or Latino and Asian or Pacific Islander;Number of males who are of Hispanic or Latino and Asian or Pacific Islander descent -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,Number of people who are male and Hispanic or Latino and Black or African American alone -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are male, Hispanic or Latino, and black or African American?;Number of males who are Hispanic or Latino and Black or African American;Number of Hispanic or Latino males who are Black or African American;Number of Black or African American males who are Hispanic or Latino;How many people are male, Hispanic or Latino, and black or African American?" -Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander?;How many people are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander?;The number of people who are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander" -Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Number of people who are male and Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;Number of people who are Male, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Number of Hispanic or Latino males who are Native Hawaiian or Other Pacific Islander Alone" -Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces, -Count_Person_Male_HispanicOrLatino_WhiteAlone,How many males are Hispanic or Latino and White Alone? -Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of white males who are Hispanic or Latino;Number of Hispanic or Latino males who are white;Number of white males who are Hispanic;Number of males who are Hispanic or Latino and white;Number of Hispanic or Latino males who are white -Count_Person_Male_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,The number of married males living below the poverty line in the past 12 months;How many married men were below the poverty line in the past 12 months?;The number of married men who were below the poverty line in the past 12 months;How many married men were below the poverty line in the past 12 months?;The number of married men who were below the poverty line in the past 12 months -Count_Person_Male_MarriedInThePast12Months_PovertyStatusDetermined,The number of married men who were determined to be low-income last year;The number of married men who were determined to be poor last year;The number of married males who were determined to be impoverished last year;The number of married males who were determined to be low-income last year;The number of married males who were determined to be living in low-income households last year -Count_Person_Male_MarriedInThePast12Months_ResidesInHousehold,Number of married male households in the last year;Number of male-headed households in the last year;Number of married male-headed households in the last year;Number of male-headed households with a married couple in the last year;Number of households with a married male head in the last year -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,Number of people who are male and Native Hawaiian and Other Pacific Islander alone;How many people are male and Native Hawaiian and Other Pacific Islander Alone;What is the number of people who are male and Native Hawaiian and Other Pacific Islander Alone;What is the population of people who are male and Native Hawaiian and Other Pacific Islander Alone -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Native Hawaiian and Other Pacific Islander males;Number of males who are Native Hawaiian and Other Pacific Islander;Number of people who are male and Native Hawaiian and Other Pacific Islander;Number of Native Hawaiian and Other Pacific Islander males -Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,The number of people who are male and Native Hawaiian or Other Pacific Islander alone -Count_Person_Male_NonWhite,Number of non-white males;Number of males who are not white;Number of people who are male and not white;Number of non-white men;Number of men who are not white -Count_Person_Male_NotHispanicOrLatino,Number of males who are not Hispanic or Latino;Number of people who are male and not Hispanic or Latino;Number of males who are not of Hispanic or Latino origin;Number of people who are male and not of Hispanic or Latino origin;Number of males who are not of Hispanic or Latino descent -Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,Number of males who identify as not Hispanic or Latino and American Indian and Alaska Native alone or in combination with one or more other races;Number of males who identify as American Indian and Alaska Native alone or in combination with one or more other races and not Hispanic or Latino -Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,The number of American Indian or Alaska Native males who are not Hispanic or Latino;The number of male American Indian or Alaska Native people who are not Hispanic or Latino -Count_Person_Male_NotHispanicOrLatino_AsianAlone, -Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Asian males who are not Hispanic or Latino;Number of Asian males who are not Hispanic or Latino;Number of Asian males who are not Hispanic or Latino -Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,Number of males who identify as Asian or Pacific Islander and do not identify as Hispanic or Latino;Number of men who identify as Asian or Pacific Islander and do not identify as Hispanic or Latino;Number of Asian or Pacific Islander men who are not of Hispanic or Latino origin;The number of males who identify as Asian or Pacific Islander and not Hispanic or Latino -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"The number of people who identify as male, not Hispanic or Latino, and black or African American alone" -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Number of males who identify as Black or African American -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces, -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"The number of people who identify as male, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;Number of males who are not Hispanic or Latino and identify as Native Hawaiian or Other Pacific Islander Alone" -Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,"The number of people who are male, not Hispanic or Latino, and identify with two or more races;Number of males who are not Hispanic or Latino and identify as two or more races;Number of males who are not Hispanic or Latino and are multiracial;Number of males who are not Hispanic or Latino and identify with two or more racial groups;Number of males who are not Hispanic or Latino and are of multiple races" -Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,The number of males who are not Hispanic or Latino and identify as White alone or in combination with one or more other races -Count_Person_Male_ResidesInAdultCorrectionalFacilities,Number of males in adult correctional facilities;Number of males in adult correctional facilities;Number of men in adult correctional facilities;Number of male inmates in adult correctional facilities;Number of incarcerated men -Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,The number of male college students living in university housing;The number of male college students living in student housing;Number of male college or university students living in student housing;The number of male college or university students living in student housing;Number of male college students living in student housing -Count_Person_Male_ResidesInGroupQuarters,Male population in group quarters;Number of males in group quarters;Male residents in group quarters;Number of male residents in group quarters;Number of males living in group quarters -Count_Person_Male_ResidesInInstitutionalizedGroupQuarters, -Count_Person_Male_ResidesInJuvenileFacilities,Number of males in juvenile facilities;Number of males in juvenile detention centers;Number of male juvenile offenders;Number of male juvenile inmates;Number of boys in juvenile detention -Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,Number of males in military quarters or military ships;Number of men in military quarters or military ships;Number of male military personnel in quarters or ships;Number of male soldiers in quarters or ships;Number of male sailors in quarters or ships -Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,Number of males in non-institutional group quarters;Number of males in non-institutional group quarters;Number of males in non-institutional group quarters;Number of males in non-institutional group quarters -Count_Person_Male_ResidesInNursingFacilities,Male nursing home population;Male population in nursing homes;Number of men in nursing homes;Number of males in nursing homes;Male nursing home residents -Count_Person_Male_SomeOtherRaceAlone,Number of males who are some other race;Number of males who identify as some other race;Number of males who are of some other race;Number of males who are some other race alone;Number of males who identify as some other race alone -Count_Person_Male_TwoOrMoreRaces,Number of males who are multiracial;Number of males identifying as multiracial;Number of people identifying as male and multiracial -Count_Person_Male_WhiteAlone,Number of males who are white alone;Male White Alone population;Male White Alone count;Male White Alone total;Male White Alone number -Count_Person_Male_WhiteAloneNotHispanicOrLatino,"Male, White Alone Not Hispanic or Latino count;Number of Male, White Alone Not Hispanic or Latino people;Male, White Alone Not Hispanic or Latino headcount;Male, White Alone Not Hispanic or Latino tally;Male, White Alone, Not Hispanic or Latino population" -Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of males who are white alone or in combination with one or more other races;Number of white males alone or in combination with one or more other races;Number of males who are white alone or in combination with one or more other races;Number of males who are white alone or in combination with one or more other races;Number of males who identify as white alone or in combination with one or more other races -Count_Person_Male_WithEarnings,The number of males with earnings;The number of people who are male and have earnings;The number of males who earn money;The number of males who are paid;The number of males who have income -Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,1 The number of men in adult correctional facilities who have earnings;Number of males in adult correctional facilities with earnings;Male inmates with earnings in adult correctional facilities;Number of male prisoners who have earnings;Male inmates in adult correctional facilities with earnings -Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,The number of male college students with earnings who live in student housing;The number of male students in college or university housing who have earnings;Number of male students with earnings living in college or university student housing;The number of male students living in college or university student housing who have earnings;Number of male students with earnings living in college or university student housing -Count_Person_Male_WithEarnings_ResidesInGroupQuarters,"Number of males with earnings in group quarters;Number of people who are male, have earnings, and live in group quarters;Number of male earners in group quarters;Number of males with earnings who live in group quarters;Number of males who have earnings and live in group quarters" -Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,1 The number of males with earnings who are institutionalized in group quarters;Number of males institutionalized in group quarters with earnings;Number of males institutionalized in group quarters with earnings;Number of men with earnings who are institutionalized in group quarters;The number of males with earnings who are institutionalized in group quarters -Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,Number of males in juvenile facilities with earnings;How many males are in juvenile facilities with earnings;Count of males with earnings in juvenile facilities;Number of juvenile facility inmates who are male and have earnings;Number of male juvenile facility inmates with earnings -Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,The number of males with earnings in military quarters or military ships;Number of males with earnings in military quarters or military ships;Number of male earners in military quarters or military ships;Number of male military personnel with earnings;Number of male military personnel in military quarters or ships who are earning money -Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,"Number of males with earnings in noninstitutionalized group quarters;Number of males with earnings who are living in group quarters, not institutionalized;Number of males with earnings in noninstitutionalized group quarters;Number of males with earnings in noninstitutionalized group quarters;Number of males with earnings in group quarters who are not institutionalized" -Count_Person_Male_WithEarnings_ResidesInNursingFacilities,The number of men in nursing homes who have earnings;The number of male nursing home residents with earnings;Number of male nursing home residents with earnings;Number of male earners in nursing facilities;Number of males in nursing homes with earnings -Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,Population of Native Hawaiians and Other Pacific Islanders;Number of Native Hawaiian or Other Pacific Islanders;Native Hawaiian or Other Pacific Islander population size;Number of Native Hawaiian or Other Pacific Islanders in the United States -Count_Person_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Population of Native Hawaiian and Other Pacific Islander Alone or In Combination With One or More Other Races;How many people identify as Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races?;Number of Native Hawaiians and Other Pacific Islanders alone or in combination with one or more other races;Number of people who identify as Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Native Hawaiian or Other Pacific Islander Alone population;Population of Native Hawaiian or Other Pacific Islander Alone;Number of people who are Native Hawaiian or Other Pacific Islander only -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,Number of Native Hawaiian or Other Pacific Islander Alone people in adult correctional facilities;Number of Native Hawaiian or Other Pacific Islander Alone people incarcerated in adult correctional facilities;Number of Native Hawaiian or Other Pacific Islander Alone people in jails and prisons;Number of Native Hawaiian or Other Pacific Islander Alone people in state and federal prisons;Number of Native Hawaiian or Other Pacific Islander Alone people in local jails -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,Number of Native Hawaiian or Other Pacific Islander students living in college or university student housing;Number of Native Hawaiian or Other Pacific Islander students living in college or university student housing;Number of Native Hawaiian or Other Pacific Islander Alone students living in college or university student housing;Number of Native Hawaiian or Other Pacific Islander Alone students in college or university housing;Number of Native Hawaiian or Other Pacific Islander Alone students living in college or university dorms -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,Number of Native Hawaiian or Other Pacific Islander Alone people in group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people in group quarters;How many Native Hawaiian or Other Pacific Islander Alone people are in group quarters?;The number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,How many Native Hawaiian or Other Pacific Islander Alone people are institutionalized in group quarters?;Number of Native Hawaiian or Other Pacific Islander Alone people institutionalized in group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group care settings;The number of Native Hawaiian or Other Pacific Islander Alone people in institutionalized group quarters;The number of Native Hawaiian or Other Pacific Islander Alone people who are institutionalized in group quarters -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities;Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities;Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities;Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities;Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,How many Native Hawaiian or Other Pacific Islander Alone people are in military quarters or military ships?;Number of Native Hawaiian or Other Pacific Islander Alone in Military Quarters or Military Ships;Number of Native Hawaiian or Other Pacific Islander Alone in Military Housing;Number of Native Hawaiian or Other Pacific Islander Alone in Military Bases;Number of Native Hawaiian or Other Pacific Islander Alone in Military Vessels -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,"Count of Native Hawaiian or Other Pacific Islander Alone living in noninstitutional group quarters;Number of Native Hawaiian or Other Pacific Islander Alone living in group quarters, not institutionalized;The number of Native Hawaiian or Other Pacific Islander Alone people living in noninstitutionalized group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in Noninstitutionalized Group Quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters that are not institutions" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,The number of Native Hawaiian or Other Pacific Islander Alone residents in nursing facilities;The number of Native Hawaiian or Other Pacific Islander Alone people in nursing facilities;The number of Native Hawaiian or Other Pacific Islander Alone people in nursing facilities;The number of Native Hawaiian or Other Pacific Islander Alone people living in nursing homes;The number of Native Hawaiian or Other Pacific Islander Alone people who are nursing home residents -Count_Person_NoDisability,Number of people with no disability;Number of people with no disabilities;Number of people who are not disabled;Number of people with no physical or mental impairments;No disability -Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,Number of people in adult correctional facilities with no disability;Number of people with no disability in adult correctional facilities;Number of people in adult correctional facilities who do not have a disability;Number of people with no disabilities in adult correctional facilities;Number of people in adult correctional facilities who are not disabled -Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,Number of people who are not disabled and live in college or university student housing -Count_Person_NoDisability_ResidesInGroupQuarters,Number of people who are not disabled and live in group quarters;Number of people with no disability living in group quarters;Number of people who are not disabled and live in group quarters;Number of people with no disability living in group quarters -Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,Number of people with no disability institutionalized in group quarters;Number of people who are not disabled and are institutionalized in group quarters;Number of people with no disability who are institutionalized in group quarters -Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,Number of people without disabilities living in non-institutional group quarters;The number of people with no disability living in non-institutional group quarters;The number of people living in non-institutional group quarters without a disability;The number of people living in non-institutional group quarters who do not have a disability;Number of people without disabilities living in non-institutional group quarters -Count_Person_NoDisability_ResidesInNursingFacilities,Number of people in nursing homes without disabilities;Number of people in nursing homes who are not disabled;Number of people in nursing homes without any disabilities;Number of people in nursing homes who are not disabled at all;Number of people in nursing homes who are not physically or mentally disabled -Count_Person_NoHealthInsurance,Number of people who do not have health insurance;Number of people without health insurance coverage;Number of people who lack health insurance;Number of people without health insurance;Number of people without health insurance -Count_Person_NonWhite,The number of non-white people;The proportion of the population that is non-white;The percentage of people who are not white;The number of people who are not white;The percentage of people who are not white -Count_Person_NotHispanicOrLatino,Non-Hispanic or Latino population;Non-Hispanic or Latino population;Non-Hispanic or Latino population;Non-Hispanic or Latino population;Non-Hispanic or Latino population -Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of people who are Not Hispanic or Latino and American Indian or Alaska Native;Number of people who are American Indian or Alaska Native alone or in combination with one or more other races, but not Hispanic or Latino;Number of people who are not Hispanic or Latino and American Indian and Alaska Native alone or in combination with one or more other races;Number of people who are American Indian or Alaska Native, not Hispanic or Latino" -Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Number of people who identify as American Indian or Alaska Native only;Number of people who are not Hispanic or Latino and American Indian or Alaska Native alone;Number of people who are American Indian or Alaska Native and not of Hispanic, Latino, or Spanish origin alone;American Indian or Alaska Native alone, not Hispanic or Latino;Number of people who are American Indian or Alaska Native, not of Hispanic, Latino, or Spanish origin alone" -Count_Person_NotHispanicOrLatino_AsianAlone,Number of people who are not Hispanic or Latino and Asian alone;Number of people who are not of Hispanic or Latino origin and Asian alone;Number of people who are Not Hispanic or Latino and Asian Alone;Number of people who are not Hispanic or Latino and Asian alone;Number of people who are not Hispanic or Latino and Asian alone -Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of people who are Asian but not Hispanic or Latino;Number of people who are not Hispanic or Latino and Asian;Number of people who are Asian and not Hispanic or Latino -Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,"Number of people who are not Hispanic or Latino and Asian or Pacific Islander;Number of people who are not Hispanic or Latino and not Asian or Pacific Islander;Number of people who are not Hispanic or Latino or Asian or Pacific Islander;Number of people who are neither Hispanic or Latino nor Asian or Pacific Islander;Number of people who are not of Hispanic, Latino, Asian, or Pacific Islander descent" -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"The number of people who are Black or African American, regardless of Hispanic origin;The number of people who are Black or African American, not Hispanic;The number of people who are Black or African American, not Latino;Number of people who are Black or African American, not Hispanic or Latino" -Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,The number of people who are not Hispanic or Latino and Native Hawaiian and Other Pacific Islander -Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,The number of people who are not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who are not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who are not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who identify as not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who identify as Not Hispanic or Latino and Native Hawaiian or Other Pacific Islander Alone -Count_Person_NotHispanicOrLatino_ResidesInGroupQuarters,"The number of people who are not Hispanic or Latino living in group quarters;The number of people who are not Hispanic or Latino living in other types of group quarters, such as homeless shelters or halfway houses;Number of people who are not Hispanic or Latino living in group quarters;Number of non-Hispanic or Latino people in group quarters;Number of people who are not Hispanic or Latino living in group quarters" -Count_Person_NotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,Number of people who are not Hispanic or Latino and are institutionalized in group quarters;Number of people who are not Hispanic or Latino and are institutionalized in group quarters;Number of people who are not Hispanic or Latino and are institutionalized in group quarters -Count_Person_NotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,Number of people who are not Hispanic or Latino living in non-institutional group quarters -Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,Number of people who are Not Hispanic or Latino and identify as multiracial;Number of people who are Not Hispanic or Latino and identify as biracial -Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of people who are not Hispanic or Latino and identify as White alone or in combination with one or more other races;Number of people who are not Hispanic or Latino and identify as white alone or in combination with one or more other races in the United States;Number of people who are not Hispanic or Latino and identify as white alone or in combination with one or more other races in the United States as of 2020 -Count_Person_NotInLaborForce_Female_DivorcedInThePast12Months,Number of female divorcees who are not in the labor force in the past 12 months;Number of females who are not in the labor force and have been divorced in the past 12 months;Number of divorced females not in the labor force in the past 12 months;Number of women who are not in the labor force and have been divorced in the past 12 months;Number of women who are not working and have been divorced in the past year -Count_Person_NotInLaborForce_Female_MarriedInThePast12Months,Number of females who are not in the labor force and have been married in the past 12 months;Number of women not in the labor force who were married in the past 12 months;Number of women not in the workforce who were married in the past year;Number of women not working who were married in the past 12 months;Number of women not employed who were married in the past year -Count_Person_NotInLaborForce_Male_DivorcedInThePast12Months,Number of males divorced in the past 12 months who are not in the labor force;Number of males who are not in the labor force and were divorced in the past 12 months;Number of males who were divorced in the past 12 months and are not in the labor force;Number of males who are not in the labor force and have been divorced in the past 12 months;Number of males who have been divorced in the past 12 months and are not in the labor force -Count_Person_NotInLaborForce_Male_MarriedInThePast12Months,Number of men who are not in the labor force and were married in the past 12 months;The number of men who have been married in the past 12 months and are not in the labor force;The number of men who are married and not in the labor force;The number of men who are not in the labor force and have been married in the past 12 months;The number of men who have been married in the past 12 months and are not working -Count_Person_OneRace,Population of people who are one race -Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,Number of people in adult correctional facilities by race;Number of people in prison by race;Number of people in jail by race;Number of incarcerated people by race;Number of people in correctional facilities by race -Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,The number of people of one race living in college or university student housing;The number of students in college or university student housing who are only one race;How many people of one race live in college or university student housing?;The number of college students who live in on-campus housing and identify as only one race;The number of college or university students who are of one race -Count_Person_OneRace_ResidesInGroupQuarters,Number of people of one race living in group quarters;Number of people of one race living in group quarters;Number of people of one race living in other group quarters;Number of people of one race living in group quarters;Number of people in group quarters who are of one race -Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,Institutionalized people by race;Number of people who are institutionalized in group quarters by race;Number of people of one race institutionalized in group quarters;Number of people of one race institutionalized in group quarters;Number of people of one race institutionalized in group quarters -Count_Person_OneRace_ResidesInJuvenileFacilities,Number of people in juvenile facilities by race;Number of people in juvenile facilities by race;Number of people in juvenile facilities by race;Number of juveniles in detention centers by race;Number of youth in juvenile detention by race -Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,Number of people of one race in military quarters or military ships;The number of people who are of one race in military quarters or military ships;The number of people of one race in military quarters or military ships;The number of people in military quarters or military ships who are of one race;The number of people who are of one race and are in military quarters or military ships -Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,"Number of people who are one race and live in noninstitutionalized group quarters;Number of people who are one race and live in group quarters that are not prisons, hospitals, or other institutions;Number of people who are one race and live in group quarters that are not nursing homes, assisted living facilities, or other long-term care facilities;Number of people who are one race and live in group quarters that are not homeless shelters or other temporary housing facilities;Number of people of one race living in non-institutional group quarters" -Count_Person_OneRace_ResidesInNursingFacilities,The number of people of one race in nursing facilities;Number of people of one race in nursing homes;The number of people of one race in nursing facilities;Number of nursing home residents by race;How many people of one race are in nursing homes? -Count_Person_PerArea,population density;Population density;Density of population;Population density -Count_Person_PovertyStatusDetermined_ResidesInGroupQuarters,"People living in group quarters who are determined to be in poverty;The number of people in group quarters who have been determined to be in poverty;1 Number of people determined to be in poverty, living in group quarters;Number of people living in poverty in group quarters;Number of people living in group quarters who are determined to be in poverty" -Count_Person_PovertyStatusDetermined_ResidesInNoninstitutionalizedGroupQuarters,The number of people who are in non-institutional group quarters and have been determined to be in poverty;The number of people who are living in non-institutional group quarters and have been determined to be poor;The number of people who are living in non-institutional group quarters and have been determined to have low income -Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,How many American Indian and Native American farmers are there?;Number of American Indian and Alaska Native farmers;Number of Native American farmers;Number of Native farmers;Number of American Indian farmers -Count_Person_Producer_AsianAlone,How many farmers are there in Asia?;How many farmers are there in Asia?;How many farmers are there in Asia;What is the population of farmers in Asia;What is the number of people who farm in Asia -Count_Person_Producer_BlackOrAfricanAmericanAlone,Number of African American people who farm;The number of African American farmers;Number of black farmers;The number of black farmers in the United States;Number of African American agricultural producers -Count_Person_Producer_HispanicOrLatino,How many Hispanic farmers are there?;How many Hispanic farmers are there?;Number of Hispanic farmers in the United States;Hispanic farmers;Number of farmers who are Hispanic -Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,How many Native Hawaiian farmers are there?;What is the number of Native Hawaiian farmers?;How many Native Hawaiians are farmers?;What is the number of Native Hawaiians who are farmers?;How many people of Native Hawaiian descent are farmers? -Count_Person_Producer_TwoOrMoreRaces,number of farmers who are mixed race;number of mixed-race farmers;number of farmers who identify as mixed race;number of farmers who are of mixed race -Count_Person_Producer_WhiteAlone,How many white farmers are there?;the number of white farmers;how many white farmers are there;how many farmers are white;what is the percentage of white farmers -Count_Person_SelfCareDifficulty,How many people have difficulty with self-care?;How many people have difficulty with self-care?;How many people have difficulty with self-care?;The number of people who have difficulty with self-care;How many people have difficulty with self-care? -Count_Person_SomeOtherRaceAlone,Population of people who identify as Some Other Race Alone;Number of people who are Some Other Race Alone;Number of people who identify as Some Other Race Alone;Number of people who are of Some Other Race Alone;Number of people who self-identify as Some Other Race Alone -Count_Person_SomeOtherRaceAlone_ResidesInAdultCorrectionalFacilities,"Population of adults in correctional facilities who identify as ""Some Other Race Alone"";Number of people who are incarcerated in adult correctional facilities who identify as ""Some Other Race Alone"";The number of people in adult correctional facilities who identify as ""Some Other Race Alone"";Number of people in adult correctional facilities who are of some other race alone" -Count_Person_SomeOtherRaceAlone_ResidesInCollegeOrUniversityStudentHousing,Number of people who are Some Other Race and live alone in college or university student housing;The number of people who identify as Some Other Race and live alone in college or university student housing;The number of people who are Some Other Race and live alone in college or university student housing;Number of people who are Some Other Race and live alone in college or university student housing -Count_Person_SomeOtherRaceAlone_ResidesInGroupQuarters,"Number of people who identify as Some Other Race Alone and live in group quarters;Population of people who are Some Other Race Alone in Group Quarters;Number of people who are Some Other Race Alone, living in group quarters;How many people identify as Some Other Race Alone and live in group quarters?;The number of people who are Some Other Race Alone and living in group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInInstitutionalizedGroupQuarters,"Number of people who are Some Other Race Alone, in Institutionalized Group Quarters;Number of people who identify as Some Other Race Alone and are living in institutionalized group quarters;Number of people who identify as Some Other Race Alone and are living in group quarters that are institutional in nature;The number of people who identify as Some Other Race Alone and are living in institutionalized group quarters;Number of people who identify as ""Some Other Race Alone"" and live in institutionalized group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInJuvenileFacilities,"The number of people in juvenile facilities who identify as ""Some Other Race Alone"";Number of people in juvenile facilities who identify as ""Some Other Race Alone"";Number of people in juvenile facilities who identify as a race other than Black, White, or Hispanic;Number of people in juvenile facilities who identify as a race other than Black, White, or Hispanic or Latino origin;Number of people in juvenile facilities who identify as ""some other race""" -Count_Person_SomeOtherRaceAlone_ResidesInMilitaryQuartersOrMilitaryShips,"The number of people who identify as Some Other Race Alone in Military Quarters or Military Ships;The number of people who identify as Some Other Race and live in military quarters or on military ships;The number of people in military quarters or military ships who identify as a race that is not listed;The number of people in military quarters or military ships who identify as a race that is not one of the listed races;Number of people who are Some Other Race Alone, in Military Quarters or Military Ships" -Count_Person_SomeOtherRaceAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of people who identify as Some Other Race Alone and live in non-institutional group quarters;Count of people who identify as Some Other Race Alone and live in non-institutional group quarters;Count of people who are Some Other Race Alone and live in group quarters that are not institutions;Number of people who identify as Some Other Race Alone and live in group quarters that are not hospitals, prisons, or nursing homes;Population of people identifying as Some Other Race Alone, living in non-institutional group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInNursingFacilities,Number of people in nursing facilities who are Some Other Race Alone -Count_Person_TwoOrMoreRaces,Number of people who identify as multiracial;Number of people who identify as multiracial -Count_Person_TwoOrMoreRaces_ResidesInAdultCorrectionalFacilities, -Count_Person_TwoOrMoreRaces_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_TwoOrMoreRaces_ResidesInGroupQuarters,The number of people in group quarters who are multiracial -Count_Person_TwoOrMoreRaces_ResidesInInstitutionalizedGroupQuarters,The number of people institutionalized in group quarters who identify as multiracial;The number of people institutionalized in group quarters who identify as biracial -Count_Person_TwoOrMoreRaces_ResidesInJuvenileFacilities, -Count_Person_TwoOrMoreRaces_ResidesInMilitaryQuartersOrMilitaryShips,Number of people who are multiracial in military quarters or military ships;Number of people who are biracial or multiethnic in military quarters or military ships -Count_Person_TwoOrMoreRaces_ResidesInNoninstitutionalizedGroupQuarters,Number of people who are multiracial in non-institutional group quarters;Number of people who are multi-racial in non-institutional group quarters -Count_Person_TwoOrMoreRaces_ResidesInNursingFacilities,The number of people in nursing facilities who are multiracial -Count_Person_VisionDifficulty,1 How many people have vision problems?;How many people have vision problems?;How many people have vision problems?;How many people have vision problems?;How many people have vision problems? -Count_Person_WhiteAlone,The number of people who identify as White alone;White Alone population;The number of people who identify as White Alone;The number of White Alone people -Count_Person_WhiteAloneNotHispanicOrLatino,The number of people who identify as White Alone and not Hispanic or Latino;White Alone Not Hispanic or Latino population;White Alone Not Hispanic or Latino population;White Alone Not Hispanic or Latino Population;How many people are White Alone Not Hispanic or Latino -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInAdultCorrectionalFacilities,Number of White Alone Not Hispanic or Latino people in adult correctional facilities;How many White Alone Not Hispanic or Latino people are in adult correctional facilities?;Number of White Alone Not Hispanic or Latino people in adult correctional facilities;The number of White Alone Not Hispanic or Latino people in adult correctional facilities;The number of White Alone Not Hispanic or Latino people in adult correctional facilities -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,Number of White Alone Not Hispanic or Latino people in college or university student housing;Number of White Alone Not Hispanic or Latino college or university students living in student housing;Number of White Alone Not Hispanic or Latino students living in college or university housing;Number of White Alone Not Hispanic or Latino students living in college or university dorms;Number of White Alone Not Hispanic or Latino students living in college or university residence halls -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInGroupQuarters,Number of White Alone Not Hispanic or Latino people in group quarters;Number of people who are White Alone Not Hispanic or Latino living in group quarters;Number of White Alone Not Hispanic or Latino people in group quarters;The number of people who are White Alone Not Hispanic or Latino living in group quarters;The number of White Alone Not Hispanic or Latino people in group quarters -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,The number of people who are White Alone Not Hispanic or Latino and live in institutionalized group quarters -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInJuvenileFacilities,Number of White Alone Not Hispanic or Latino people in juvenile facilities;Number of White Alone Not Hispanic or Latino juveniles in detention centers;Number of White Alone Not Hispanic or Latino people in juvenile facilities;Number of White Alone Not Hispanic or Latino juveniles in detention centers;Number of White Alone Not Hispanic or Latino kids in juvenile detention -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,Number of White Alone Not Hispanic or Latino people in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are living in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are residing in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are staying in military quarters or military ships -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,The number of White Alone Not Hispanic or Latino people in Noninstitutionalized Group Quarters;The number of White Alone Not Hispanic or Latino people in noninstitutionalized group quarters;The number of White Alone Not Hispanic or Latino people in noninstitutionalized group quarters;Number of White Alone Not Hispanic or Latino people in noninstitutionalized group quarters -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNursingFacilities,The number of White Alone Not Hispanic or Latino people in nursing facilities;The number of White Alone Not Hispanic or Latino people living in nursing facilities;The number of White Alone Not Hispanic or Latino people who are residents of nursing facilities;The number of White Alone Not Hispanic or Latino people who are in nursing homes;The number of White Alone Not Hispanic or Latino people in nursing facilities -Count_Person_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,The number of people who identify as White alone or in combination with one or more other races;The number of people who are White or mixed race;The number of people who are White or of mixed racial origin;The number of people who identify as White alone or in combination with one or more other races;The number of people who identify as White only or White in combination with another race -Count_Person_WhiteAlone_ResidesInAdultCorrectionalFacilities,Number of white people in adult correctional facilities;Number of white adults in prison;Number of white inmates;Number of white prisoners;Number of white people incarcerated -Count_Person_WhiteAlone_ResidesInCollegeOrUniversityStudentHousing,Number of White Alone college students living in student housing;The number of White Alone people in college or university student housing;Number of White Alone college students living in university housing;Number of White Alone people in College or University Student Housing;The number of White Alone people living in college or university student housing -Count_Person_WhiteAlone_ResidesInGroupQuarters,Number of White people living in group quarters;Number of White Alone people living in group quarters;The number of white people living in group quarters;The number of White Alone people living in group quarters;The number of people who are white and live in group quarters -Count_Person_WhiteAlone_ResidesInInstitutionalizedGroupQuarters,The number of White Alone people who are institutionalized in group quarters;Number of White Alone people in Institutionalized Group Quarters;White Alone population in Institutionalized Group Quarters;Number of White Alone people living in Institutionalized Group Quarters;White Alone population living in Institutionalized Group Quarters -Count_Person_WhiteAlone_ResidesInJuvenileFacilities,Number of White Alone people in juvenile facilities;The number of White Alone people in juvenile facilities;Number of White Alone juveniles in facilities;Number of White Alone youth in juvenile facilities;Number of White Alone people in juvenile detention centers -Count_Person_WhiteAlone_ResidesInMilitaryQuartersOrMilitaryShips,The number of people who are white and live in military quarters or on military ships;The number of white people who are in the military;The number of white people who live on military bases;The number of white people who live on military ships;The number of white people who are in the military and live on military bases or ships -Count_Person_WhiteAlone_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WhiteAlone_ResidesInNursingFacilities,The number of White Alone people in nursing facilities;The number of White Alone nursing facility residents;The number of White Alone individuals living in nursing homes;The number of White Alone people residing in nursing homes;The number of White Alone nursing home residents -Count_Person_WithDirectPurchaseHealthInsurance,How many people have direct purchase health insurance?;How many people have direct purchase health insurance?;How many people have direct purchase health insurance?;How many people have direct purchase health insurance?;How many people have Direct Purchase Health Insurance? -Count_Person_WithDirectPurchaseHealthInsuranceOnly,How many people have Direct Purchase Health Insurance Only?;The number of people with direct purchase health insurance only;The number of people with direct purchase health insurance only;Number of people who have Direct Purchase Health Insurance Only;The number of people with direct purchase health insurance only -Count_Person_WithDisability,Number of people with disabilities;Number of people with disabilities;Number of people who have disabilities;Number of people who are disabled;Number of people with special needs -Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,American Indian or Alaska Native people with disabilities;The number of American Indian or Alaska Native people with disabilities;Number of American Indian or Alaska Native people with disabilities;American Indian or Alaska Native people with disabilities;Number of American Indian or Alaska Native people with a disability -Count_Person_WithDisability_AsianAlone,The number of people with a disability who are Asian;The number of Asian people with a disability;The number of people with a disability who identify as Asian;The number of people who are Asian and have a disability;The number of Asian people with disabilities -Count_Person_WithDisability_BlackOrAfricanAmericanAlone,The number of Black or African American people with disabilities;The number of people with disabilities who are Black or African American;The number of Black or African American people with a disability;The number of people with a disability who are Black or African American;The number of people who are Black or African American and have a disability -Count_Person_WithDisability_Female,Number of females with disabilities;Number of disabled females;Number of women with disabilities;Number of disabled women;Number of females who are disabled -Count_Person_WithDisability_HispanicOrLatino,The number of Hispanic or Latino people with disabilities;The number of people with disabilities who are Hispanic or Latino;The number of Hispanic or Latino people with disabilities;The number of people who are both Hispanic or Latino and have disabilities;The number of people who are Hispanic or Latino and have a disability -Count_Person_WithDisability_Male,Number of males with disabilities;Number of disabled males;Number of males who have disabilities;Number of males who are disabled;Number of males with a disability -Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,How many people are Native Hawaiian or Other Pacific Islander Alone with a disability?;Number of Native Hawaiian or Other Pacific Islander Alone people with a disability;The number of people who are Native Hawaiian or Other Pacific Islander Alone with a disability;The number of people who identify as Native Hawaiian or Other Pacific Islander Alone and have a disability;The number of people who are Native Hawaiian or Other Pacific Islander Alone and report having a disability -Count_Person_WithDisability_OneRace,The number of people with a disability and one race;The number of people who are disabled and belong to one race;The number of people who have a disability and identify as one race;The number of people who are disabled and are members of one race;The number of people who have a disability and are of one race -Count_Person_WithDisability_ResidesInAdultCorrectionalFacilities,Number of people with disabilities in adult correctional facilities;Number of people with disabilities in adult correctional facilities;1 Number of people with disabilities in adult correctional facilities;Number of people in adult correctional facilities with disabilities;Number of people with disabilities in adult correctional facilities -Count_Person_WithDisability_ResidesInCollegeOrUniversityStudentHousing,How many college students with disabilities live in on-campus housing?;Number of students with disabilities in college housing;Number of people with disabilities living in college or university student housing;Number of college or university students with disabilities living in student housing;Number of students with disabilities living in college or university housing -Count_Person_WithDisability_ResidesInGroupQuarters,People with disabilities in group quarters;Number of people with disabilities living in group quarters;Number of people with disabilities in group quarters;Number of people with disabilities living in group quarters;Number of people with disabilities in group living arrangements -Count_Person_WithDisability_ResidesInInstitutionalizedGroupQuarters,Number of people with disabilities institutionalized in group quarters;Number of people with disabilities living in group settings;Number of people with disabilities institutionalized in group homes;Number of people with disabilities living in institutionalized group quarters;Number of people with disabilities living in group living settings -Count_Person_WithDisability_ResidesInJuvenileFacilities,Number of people with disabilities in juvenile detention centers;The number of people with disabilities in juvenile facilities;How many people with disabilities are in juvenile facilities;The number of people in juvenile facilities who have disabilities;The number of people with disabilities who are in juvenile detention centers -Count_Person_WithDisability_ResidesInMilitaryQuartersOrMilitaryShips,Number of people with disabilities in military quarters or military ships;Number of people with disabilities in military quarters or military ships;Number of people with disabilities in military quarters or military ships;Number of people with disabilities in the military;Number of people with disabilities in military housing -Count_Person_WithDisability_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WithDisability_ResidesInNursingFacilities,Number of people living in nursing facilities with disabilities;The number of people with disabilities in nursing homes;The number of people with disabilities in nursing homes;Number of people with disabilities in nursing facilities;Number of people in nursing facilities with disabilities -Count_Person_WithDisability_SomeOtherRaceAlone,"People with disabilities who identify as some other race;Population of people with disabilities who identify as some other race;People with disabilities who identify as a race other than white, black, or Asian;Number of people with disabilities who identify as some other race;Number of people with a disability who identify as some other race" -Count_Person_WithDisability_TwoOrMoreRaces,Number of people with a disability and two or more races;People with disabilities who identify as two or more races;The number of people who have a disability and identify as two or more races;Number of people with disabilities who identify as two or more races;Number of people with disabilities who identify as two or more races -Count_Person_WithDisability_WhiteAlone,White people with disabilities;Number of White Alone people with disabilities;Number of people with disabilities who are White Alone;Number of people who are White Alone and have disabilities;Number of people with disabilities who identify as White Alone -Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,Population of people with a disability who are white alone and not Hispanic or Latino;Number of White Alone Not Hispanic or Latino people with disabilities;Number of people with disabilities who are white and not Hispanic or Latino;The number of white people with disabilities who are not Hispanic or Latino;The number of people with disabilities who identify as white and not Hispanic or Latino -Count_Person_WithEmployerBasedHealthInsurance,Number of people with employer-sponsored health insurance;How many people have employer-based health insurance?;Number of people with employer-sponsored health insurance;Number of people with employer-based health insurance;Number of people with employer-sponsored health insurance -Count_Person_WithEmployerBasedHealthInsuranceOnly,The number of people with employer-based health insurance only;The number of people who only have employer-based health insurance;The number of people with employer-sponsored health insurance only;The number of people who only have employer-sponsored health insurance;The number of people who rely solely on employer-sponsored health insurance -Count_Person_WithFoodStampsInThePast12Months_ResidesInAdultCorrectionalFacilities,How many people who received food stamps last year are currently in adult correctional facilities?;How many people receiving food stamps were in adult correctional facilities in the last year?;How many people in adult correctional facilities received food stamps last year?;How many people on food stamps are in adult correctional facilities?;How many people on food stamps are in prison? -Count_Person_WithFoodStampsInThePast12Months_ResidesInCollegeOrUniversityStudentHousing,Number of college students on food stamps in the past year;Number of students in college or university student housing who receive food stamps;Number of students in college or university student housing who use food stamps;Number of students in college or university student housing who are eligible for food stamps;Number of students in college or university student housing who receive assistance from the Supplemental Nutrition Assistance Program (SNAP) -Count_Person_WithFoodStampsInThePast12Months_ResidesInGroupQuarters,Number of people who received food stamps in the last year and live in group quarters;The number of people who received food stamps in group quarters over the last year;Number of people who received food stamps in group quarters in the last year;Number of people who were in group quarters and received food stamps in the last year;Number of people who received food stamps while living in group quarters in the last year -Count_Person_WithFoodStampsInThePast12Months_ResidesInInstitutionalizedGroupQuarters,Number of people with food stamps in institutionalized group quarters in the last year;Number of people in institutionalized group quarters with food stamps in the last year;Number of people who received food stamps in the last year while living in institutionalized group quarters;Number of people who lived in institutionalized group quarters in the last year while receiving food stamps;Number of people who were in institutionalized group quarters and received food stamps in the last year -Count_Person_WithFoodStampsInThePast12Months_ResidesInJuvenileFacilities,How many people have been in juvenile facilities while receiving food stamps in the past year?;Number of juvenile facility residents who received food stamps in the last year;Number of food stamp recipients in juvenile facilities in the last year;Number of people in juvenile facilities who received food stamps in the last year;Number of people who received food stamps while in juvenile facilities in the last year -Count_Person_WithFoodStampsInThePast12Months_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WithFoodStampsInThePast12Months_ResidesInNursingFacilities,How many people on food stamps are in nursing homes?;How many people are on food stamps and in nursing homes?;Number of people in nursing homes with food stamps in the last year;Number of food stamp recipients in nursing homes in the last year;Number of nursing home residents receiving food stamps in the last year -Count_Person_WithHealthInsurance,Number of people with health insurance;Number of people who have health insurance;Number of people who are covered by health insurance;Number of people who are insured;Number of people who have health coverage -Count_Person_WithMedicaidOrMeansTestedPublicCoverage,The number of people with Medicaid or means-tested public coverage;Number of people with Medicaid or means-tested public coverage;The number of people covered by Medicaid or means-tested public coverage;Number of people with Medicaid or means-tested public coverage;Number of people with Medicaid or means-tested public coverage -Count_Person_WithMedicaidOrMeansTestedPublicCoverageOnly,Number of people with Medicaid or means-tested public coverage only;Number of people with Medicaid or means-tested public coverage as their only source of health insurance;Number of people with Medicaid or means-tested public coverage as their only health insurance;The number of people with Medicaid or means-tested public coverage only;Number of people with Medicaid or means-tested public coverage only -Count_Person_WithMedicareCoverage,Number of people with Medicare;Number of people covered by Medicare;Number of people enrolled in Medicare;Number of Medicare beneficiaries;Number of people with Medicare coverage -Count_Person_WithMedicareCoverageOnly,Number of people with Medicare only;Number of people with Medicare only;Number of people with Medicare only;Number of people with Medicare only;Number of people with Medicare only -Count_Person_WithPrivateHealthInsurance,Number of people with private health insurance;Number of people with private health insurance;1 Number of people with private health insurance;Number of people with private health insurance;Number of people with private health insurance -Count_Person_WithPrivateHealthInsuranceOnly,The number of people with private health insurance only;The number of people with private health insurance only;The number of people with private health insurance only;Number of people with private health insurance only;The number of people with private health insurance only -Count_Person_WithPublicHealthInsurance,How many people have public health insurance?;The number of people with public health insurance;How many people have public health insurance;The percentage of people with public health insurance;The number of people covered by public health insurance -Count_Person_WithPublicHealthInsuranceOnly,The number of people with only public health insurance;Number of people with public health insurance only;Number of people covered by public health insurance only;Number of people with public health insurance and no private health insurance;Number of people with public health insurance as their only source of health insurance -Count_Person_WithTricareMilitaryHealthCoverage,Tricare beneficiaries;Tricare enrollees;number of people with Tricare;number of people covered by Tricare;number of people enrolled in Tricare -Count_Person_WithTricareMilitaryHealthCoverageOnly,Number of people with Tricare Military Health Coverage Only;Number of people with Tricare Military Health Coverage Only;Number of people with Tricare Military Health Coverage Only;Number of people with Tricare Military Health Coverage Only;Number of people covered by Tricare Military Health Coverage Only -Count_Person_WithVAHealthCare,The number of people who have VA health care;The number of people who are enrolled in VA health care;The number of people who are covered by VA health care;The number of people who receive VA health care;The number of people who are beneficiaries of VA health care -Count_Person_WithVAHealthCareOnly,Number of people with VA health care only;Number of people with VA Health Care Only;Number of people who only have VA Health Care;Number of people who use VA Health Care exclusively;The number of people who only have VA health care -FertilityRate_Person_Female,Rate of reproduction;Childbearing rate;Rate of reproduction;Rate of fertility;Total fertility rate -GrowthRate_Count_Person,How fast is the population growing?;Population growth rate;rate of population growth;rate at which a population increases;rate of increase in population -LifeExpectancy_Person,lifespan;how long people live;how long do people live on average;average lifespan;lifespan -LifeExpectancy_Person_Female,How long do women live;Life expectancy of women;Female life expectancy;Lifespan of women;The average lifespan of women -LifeExpectancy_Person_Male,How long do men live;Life expectancy of men;Male life expectancy;How long do males live;life expectancy of men -Mean_Earnings_Person_Female,How much money do women earn on average?;The average amount of money that women make;The average amount of money that women make;The average amount of money that women make;The average amount of money that women earn -Mean_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,The average amount of money that female inmates in adult correctional facilities make;How much money do female inmates make in adult correctional facilities?;What is the average income for women in adult correctional facilities?;How much money do women make in adult correctional facilities?;The average amount of money that women earn in adult correctional facilities -Mean_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,How much money do female students in college or university student housing typically earn?;Average income for female students in college or university housing;How much money do female students in college or university student housing typically earn?;How much money do female students in college or university student housing earn on average?;How much money do female students in college or university student housing typically earn? -Mean_Earnings_Person_Female_ResidesInGroupQuarters,"The average income of women who have earnings, in group quarters;The average amount of money that females earn in group quarters;The average amount of money that females earn in group quarters;Average earnings for women in group quarters;Average income for women in group quarters with earnings" -Mean_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,The average amount of money that females who are institutionalized in group quarters earn;Average income for females institutionalized in group quarters;Average income for women with earnings who are institutionalized in group quarters;How much money do women who are institutionalized in group quarters typically earn? -Mean_Earnings_Person_Female_ResidesInJuvenileFacilities,Income of females with earnings in juvenile facilities;Average earnings of females in juvenile facilities;How much money do girls in juvenile facilities make on average?;How much money do females in juvenile facilities make on average?;What is the average income for girls in juvenile facilities who have earnings? -Mean_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Average income for females who are employed in the military and live in military quarters or on military ships;The average salary for women in military housing or on military ships;What is the average income for women who live in military quarters or on military ships?;How much money do women who live in military quarters or on military ships make on average? -Mean_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,The average income for women who are employed and not living in institutions or group quarters -Mean_Earnings_Person_Female_ResidesInNursingFacilities,The average salary for women working in nursing homes;The average salary for women working in nursing homes;What is the average salary for women working in nursing homes?;The average salary for women working in nursing homes;1 Average salary for female nurses in nursing homes -Mean_Earnings_Person_Male,The average salary for men who are employed;The average amount of money that males earn;The average salary for men who are paid;How much money do males with earnings make on average?;The average salary for men who have jobs -Mean_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,How much money do men in adult correctional facilities earn on average?;How much money do males in adult correctional facilities make on average?;Average earnings of male prisoners;How much money do male prisoners make;Annual income of male inmates -Mean_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,The average income for male students living in college or university student housing;Average income of male students living in college or university housing;How much money do male college students in student housing make on average;What is the average income for male college students living in student housing;What is the average salary for male college students in student housing -Mean_Earnings_Person_Male_ResidesInGroupQuarters,"The average amount of money that men earn in group quarters;Income of males with earnings in group quarters;The average income for men who have earnings, in group quarters;The average income for men who have earnings, in group quarters;How much money do men make in group quarters?" -Mean_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,The average amount of money that men institutionalized in group quarters earn;Average income of males who are institutionalized and live in group quarters;How much money do men institutionalized in group quarters make on average?;The average amount of money that men who are institutionalized in group quarters earn -Mean_Earnings_Person_Male_ResidesInJuvenileFacilities,How much money do males in juvenile facilities earn on average?;How much money do males in juvenile facilities make on average?;1 The average amount of money that males in juvenile facilities earn;Average earnings of males in juvenile facilities;How much money do male juveniles make in detention centers? -Mean_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,How much money do men make who live in military quarters or on military ships?;The average income for males who live in military quarters or on military ships;The average salary for men who live in military quarters or on military ships;The average income for men who live in military quarters or on military ships;The average salary for men who live in military quarters or on military ships -Mean_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters, -Mean_Earnings_Person_Male_ResidesInNursingFacilities,The average salary for males in nursing homes;How much money do males working in nursing facilities make?;What is the average salary for males working in nursing facilities?;What is the typical income for males working in nursing facilities?;What is the average pay for males working in nursing facilities? -Mean_Income_Household,The average household income;The average amount of money a household makes;The typical amount of money a household makes;Average household income -Mean_Income_Household_FamilyHousehold,The average household income in a family household with income -Mean_Income_Household_MarriedCoupleFamilyHousehold,How much money does the average married couple make in the US;What is the average income of a married couple in the US;What is the typical income of a married couple in the US;What is the usual income of a married couple in the US;How much money does the average married couple make in the US? -Mean_Income_Household_NonfamilyHousehold,"a Nonfamily Household, With Income"" without repeating the reformulations or answering the question;a Nonfamily Household, With Income"" in a colloquial way;a Nonfamily Household, With Income"" in a colloquial way;a Nonfamily Household, With Income"" in a colloquial way;The average income of a non-family household with income" -Median_Age_Person,"The age at which half the population is older and half the population is younger;half the population is older than this age, and half is younger;the age at which half the population is older and half is younger;The age at which half the population is older and half is younger" -Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,What is the median age of American Indian or Alaska Natives in the United States?;What is the median age of American Indian or Alaska Natives in the United States?;What is the median age of American Indian or Alaska Natives in the United States? -Median_Age_Person_AsianAlone,"The age at which half of the population identifying as Asian Alone is older and half is younger;The age that divides the population identifying as Asian Alone into two equal groups, half older and half younger;The age at which 50% of people identifying as Asian Alone are older and 50% are younger;The age at which the median of the population identifying as Asian Alone falls" -Median_Age_Person_BlackOrAfricanAmericanAlone,"The median age of the Black or African American population;the median age of people who identify as Black or African American;the age that divides the population of Black or African American people into two equal groups, half younger and half older;the age at which half of the Black or African American population is older and half is younger;the age that is exactly in the middle of the age distribution of Black or African American people" -Median_Age_Person_Female,The median age of the female population;Average age of females;The age at which half of the female population is older and half is younger;The age at which the female population is split 50/50;The age at which the female population is at its midpoint -Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone, -Median_Age_Person_Female_AsianAlone, -Median_Age_Person_Female_BlackOrAfricanAmericanAlone, -Median_Age_Person_Female_DivorcedInThePast12Months,average age of women who got divorced in the past 12 months in the united states;the typical age of women who got divorced in the past 12 months in the us;the middle age of women who got divorced in the past 12 months in the us;the age at which most women got divorced in the past 12 months in the us -Median_Age_Person_Female_ForeignBorn,The middle age of women who were born outside the United States;The age at which half of all women who were born outside the US are older and half are younger;The average age of women who were born outside the United States;The median age of females born outside the United States;The half-way point in the age range of women who were born outside the United States -Median_Age_Person_Female_HispanicOrLatino, -Median_Age_Person_Female_MarriedInThePast12Months, -Median_Age_Person_Female_Native,"The age at which half of the female Native population is older and half is younger;The age at which the female Native population is evenly divided between those who are older and those who are younger;The age at which the female Native population is split into two equal groups, with half of the population being older and half being younger;The age that divides the population of Native American women into two equal groups, half older and half younger" -Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone, -Median_Age_Person_Female_SomeOtherRaceAlone, -Median_Age_Person_Female_TwoOrMoreRaces, -Median_Age_Person_Female_WhiteAlone, -Median_Age_Person_Female_WhiteAloneNotHispanicOrLatino, -Median_Age_Person_HispanicOrLatino, -Median_Age_Person_Male, -Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,The median age of the male American Indian or Alaska Native population;The middle age of the male American Indian or Alaska Native population;The age at which half of the male American Indian or Alaska Native population is older and half is younger;The age at which the male American Indian or Alaska Native population is evenly divided between those who are older and those who are younger;The age at which the male American Indian or Alaska Native population is split down the middle -Median_Age_Person_Male_AsianAlone,The average age of people who identify as male and Asian;The average age of people who identify as male and Asian alone;The average age of people who identify as male and Asian alone;The average age of people who identify as male and Asian in the US;The average age of people who identify as male and Asian alone -Median_Age_Person_Male_BlackOrAfricanAmericanAlone,The average age of a Black or African American male in the United States is;The average age of a Black or African American male in the United States;The midpoint of the age range for Black or African American males in the United States;The middle point of the age distribution for Black or African American males in the United States;The age at which half of all Black or African American males are older and half are younger -Median_Age_Person_Male_DivorcedInThePast12Months,Average age of men who divorced in the past 12 months;The age at which most men get divorced;The median age of men who have been divorced in the past 12 months;The age at which half of all men have been divorced;The age at which half of all men have gotten divorced in the past 12 months -Median_Age_Person_Male_ForeignBorn,"The age at which half of all foreign-born males in the US are older and half are younger;The age that divides the foreign-born male population in the US into two equal groups, with half older and half younger;The average age of foreign-born males;The age at which half of all foreign-born males are older and half are younger;The average age of foreign-born males" -Median_Age_Person_Male_HispanicOrLatino,"The average age of a Hispanic or Latino male;The age in the middle of the range of ages for people who identify as Hispanic or Latino males;The age that divides the population of Hispanic or Latino males into two equal groups, half younger and half older;The age at which half of the Hispanic or Latino males are younger and half are older;The age at which 50% of Hispanic or Latino males are younger and 50% are older" -Median_Age_Person_Male_MarriedInThePast12Months,The average age of men who got married in the past 12 months;The average age of a man who got married in the last 12 months;The median age of a male who got married in the last 12 months;The midpoint of the age range of men who got married in the last 12 months;The age at which half of the men who got married in the last 12 months were younger than and half were older than -Median_Age_Person_Male_Native, -Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,The average age of a male Native Hawaiian or Other Pacific Islander;The average age of a male Native Hawaiian or Other Pacific Islander;The average age of people who identify as male and Native Hawaiian or Other Pacific Islander Alone;The average age of a male Native Hawaiian or Other Pacific Islander;The midpoint of the age range for males who identify as Native Hawaiian or Other Pacific Islander -Median_Age_Person_Male_SomeOtherRaceAlone,The average age of people who identify as male and some other race alone;The middle age of people who identify as male and some other race alone;The age at which the median of the population who identify as male and some other race alone occurs;The median age of people identifying as male and some other race alone;The midpoint of the age distribution for people identifying as male and some other race alone -Median_Age_Person_Male_TwoOrMoreRaces,Average age of people identifying as male and two or more races;The age at which half of the population identifying as male and two or more races is older and half is younger;The age at which the population identifying as male and two or more races is evenly divided between those who are older and those who are younger;The age at which the median of the population identifying as male and two or more races falls;The age at which the population identifying as male and two or more races is split 50/50 -Median_Age_Person_Male_WhiteAlone,"The average age of a male, white person in the United States;The middle age of a male, white person in the United States;The age at which half of all male, white people in the United States are older and half are younger;The age at which a male, white person is as likely to be older as younger in the United States;The age at which a male, white person is in the middle of the age distribution in the United States" -Median_Age_Person_Male_WhiteAloneNotHispanicOrLatino,"1 The median age of the male, white alone, not Hispanic or Latino population;The average age of a male, white, non-Hispanic or Latino person;The middle age of a male, white, non-Hispanic or Latino person;The age at which half of all male, white, non-Hispanic or Latino people are older and half are younger;The age at which the number of male, white, non-Hispanic or Latino people who are older equals the number who are younger" -Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,The average age of people who identify as Native Hawaiian or Other Pacific Islander Alone;The average age of people identifying as Native Hawaiian or Other Pacific Islander Alone;Average age of Native Hawaiian or Other Pacific Islander Alone population;Halfway point in the age range of Native Hawaiian or Other Pacific Islander Alone population;The age at which half of the Native Hawaiian or Other Pacific Islander Alone population is younger and half is older -Median_Age_Person_NoHealthInsurance,"Average age of people who are civilians, have no health insurance, and are not institutionalized;The average age of people who are civilians, do not have health insurance, and are not institutionalized;The average age of people who are civilians, do not have health insurance, and are not institutionalized;Average age of people who are civilians, have no health insurance, and are not institutionalized;Halfway point in the age range of people who are civilians, have no health insurance, and are not institutionalized" -Median_Age_Person_NotAUSCitizen_Female_ForeignBorn,"The average age of people who are not US citizens, female, and foreign-born;The average age of people who are not US citizens, female, and foreign born;The middle age of people who are not US citizens, female, and foreign born;The age at which half of the people who are not US citizens, female, and foreign born are younger and half are older;The age at which half of the people who identify as not US citizens, female, and foreign born are younger and half are older" -Median_Age_Person_NotAUSCitizen_Male_ForeignBorn,"The average age of people who are not US citizens, male, and foreign-born;The average age of people who are not US citizens, male, and foreign-born;The average age of people who are not US citizens, male, and foreign-born;The average age of a non-US citizen male foreign born person;The average age of people who are not US citizens, male, and foreign born" -Median_Age_Person_SomeOtherRaceAlone,"The age at which half of the people who identify as Some Other Race Alone are older and half are younger;The age that divides the population of people who identify as Some Other Race Alone into two equal groups;The median age of people identifying as Some Other Race Alone;The age at which half of the population identifying as Some Other Race Alone is younger and half is older;The age that divides the population identifying as Some Other Race Alone into two equal groups, half younger and half older" -Median_Age_Person_TwoOrMoreRaces, -Median_Age_Person_USCitizenByNaturalization_Female_ForeignBorn,The average age of a female foreign-born US citizen by naturalization;The average age of a female foreign-born US citizen by naturalization;The median age of female foreign-born US citizens who have become naturalized citizens;The middle age of female foreign-born US citizens who have become naturalized citizens;The age at which half of female foreign-born US citizens have become naturalized citizens -Median_Age_Person_USCitizenByNaturalization_Male_ForeignBorn,The average age of a male foreign-born US citizen by naturalization;The average age of a male foreign-born US citizen by naturalization;The middle age of a male foreign-born US citizen by naturalization;The age at which half of all male foreign-born US citizens have completed the process of naturalization;The average age of a male foreign-born US citizen by naturalization -Median_Age_Person_WhiteAlone,The age at which half of the population who identify as White Alone are older and half are younger;The age at which 50% of people who identify as White Alone are older and 50% are younger -Median_Age_Person_WhiteAloneNotHispanicOrLatino,The age at which half of the population who identify as White Alone Not Hispanic or Latino are older and half are younger;The age at which 50% of the population who identify as White Alone Not Hispanic or Latino are older and 50% are younger;The age at which the population who identify as White Alone Not Hispanic or Latino is evenly divided between those who are older and those who are younger;The median age of the White Alone Not Hispanic or Latino population;The middle age of the White Alone Not Hispanic or Latino population -Median_Earnings_Person,average income of people who report having earnings;middle value of income reported by people who report having earnings;How much money does the average person with earnings make?;The average amount of money earned by people who identify as With Earnings;Average income for people who identify as With Earnings -Median_Earnings_Person_Female,The median income of females with earnings;The median income for females with earnings;The median income for females -Median_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,What is the median income for females in adult correctional facilities? -Median_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"The median income for females living in college or university student housing who have earnings;What is the median income for female students in college or university student housing?;What is the middle income for female students in college or university student housing?;The middle amount of money that women with earnings make living in college or university student housing;The amount of money that half of women with earnings living in college or university student housing make more than, and the other half make less than" -Median_Earnings_Person_Female_ResidesInGroupQuarters,The median income for women who are employed and live in group quarters;The median income for females with earnings in group quarters -Median_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,The median income for women who are institutionalized in group quarters and have earnings;The middle 50% of women institutionalized in group quarters and have earnings make between this amount and this amount;What is the median income for women institutionalized in group quarters? -Median_Earnings_Person_Female_ResidesInJuvenileFacilities,The median income for females in juvenile facilities who have earnings;The median income of females in juvenile facilities;The middle value of the earnings of females in juvenile facilities -Median_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,What is the median income for women in the military;What is the median income for women who live in military quarters or on military ships -Median_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters, -Median_Earnings_Person_Female_ResidesInNursingFacilities,The median income for women working in nursing facilities;The middle income for women working in nursing facilities;The median income for females working in nursing facilities;The amount of money earned by the middle 50% of females working in nursing facilities -Median_Earnings_Person_Male,The median income for males with earnings -Median_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities, -Median_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"The median income for males with earnings living in college or university student housing;The middle value of the income distribution for males with earnings living in college or university student housing;The amount of money that half of males with earnings living in college or university student housing make more than, and the other half make less than" -Median_Earnings_Person_Male_ResidesInGroupQuarters,"The median income of males with earnings in group quarters;The amount of money that half of all males with earnings in group quarters make more than, and the other half make less than;The middle value in the range of incomes for males with earnings in group quarters;The amount of money that divides the population of males with earnings in group quarters into two equal groups, half with incomes above the median and half with incomes below the median" -Median_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,1 The median income for men in institutionalized group quarters with earnings;The middle value of the earnings of men in institutionalized group quarters -Median_Earnings_Person_Male_ResidesInJuvenileFacilities, -Median_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,The median income for males living in military quarters or military ships;The median income for males living in military quarters or military ships -Median_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters, -Median_Earnings_Person_Male_ResidesInNursingFacilities,The median income for males working in nursing facilities;The median income for males working in nursing facilities;What is the median income for males working in nursing facilities?;What is the median income for males working in nursing facilities? -Median_Income_Household, -Median_Income_Household_FamilyHousehold,"in a family household with Income"" without repeating the reformulations or answering the question;The middle income of a household with income;The income that divides households into two equal groups, half with higher incomes and half with lower incomes;The amount of money that half of all families in the United States make, with the other half making more or less;The middle value of household income in the United States" -Median_Income_Household_MarriedCoupleFamilyHousehold,What is the median household income for a married couple in a family?;What is the median income for a married couple in a family household?;The middle value of money made by married couples in family households with income;The median income of married couples in family households with income -Median_Income_Household_NoHealthInsurance,The average amount of money a household without health insurance makes;The middle amount of money a household without health insurance makes;The amount of money that half of households without health insurance make more than and half make less than -Median_Income_Household_NonfamilyHousehold,"The median income of a nonfamily household with income;The amount of money that half of nonfamily households with income make more than, and the other half make less than;The middle value of the incomes of nonfamily households with income;The income that divides the nonfamily households with income into two equal groups, half with incomes above it and half with incomes below it;The median income of a nonfamily household with income" -Median_Income_Household_WithFoodStampsInThePast12Months,Average income of households that received food stamps in the past 12 months;The typical household income of those who received food stamps in the past year;The middle-income of households that received food stamps in the past year;The median household income of those who received food stamps in the past 12 months -Median_Income_Household_WithoutFoodStampsInThePast12Months,"Without Food Stamps in The Past 12 Months"" in a colloquial way;Without Food Stamps in The Past 12 Months"";Without Food Stamps in The Past 12 Months"" in a colloquial way;Without Food Stamps in The Past 12 Months"";Without Food Stamps in The Past 12 Months"" in a colloquial way" -QuantitySold_FarmInventory_CattleAndCalves,Number of cattle and calves sold as farm inventory;Number of cattle and calves sold as farm inventory;Number of cattle and calves sold as farm inventory;The number of cattle and calves sold as farm inventory;The number of cattle and calves that were sold as farm inventory -QuantitySold_FarmInventory_HogsAndPigs,Number of hogs and pigs sold as farm inventory;Number of hogs and pigs sold by farmers;Number of hogs and pigs sold from agricultural operations;Number of hogs and pigs sold from livestock operations;The number of hogs and pigs sold as farm inventory -UnemploymentRate_Person,Unemployment rate;The number of unemployed people as a percentage of the total labor force;The percentage of people who are unemployed;Unemployment rate;Rate of unemployment -UnemploymentRate_Person_Female,The unemployment rate for women;The percentage of women who are unemployed;The number of unemployed women as a percentage of the female labor force;The proportion of women who are not employed;The percentage of women who are looking for work but have not been able to find a job -UnemploymentRate_Person_Male,What percentage of men are unemployed?;What percentage of men are unemployed?;What's the unemployment rate for men?;1 The percentage of men who are unemployed;What percentage of men are unemployed? -Area_Farm,total area of farms -Count_Farm,Number of farms;Number of farms;Number of farms;Number of agricultural properties;Number of farming operations -Expenses_Farm,The total cost of running a farm;Farm expenses;total cost of farming;the total amount of money spent on farming;the total cost of running a farm -Income_Farm,Total income from farming;Total income from farming;The total amount of money earned from farming;1 The total amount of money that farmers make from their crops and livestock -NetMeasure_Income_Farm,"Total farm income, net measure" -Mean_Area_Farm,Mean area of agricultural land;Mean area of a farm;average area of a farm -Mean_Expenses_Farm,the expenses of a farm;the costs of farming;the overhead costs of a farm;the costs of running a farm business -Mean_NetMeasure_Income_Farm,1 The average amount of money that farmers make;The average amount of money earned by farmers;The average amount of money that farmers make;The typical income of a farmer;The amount of money that farmers make on average -Median_Area_Farm,median farm size;size of a farm that half are smaller than and half are larger than -Count_Farm_BeefCows,number of beef cattle farms;number of farms raising beef cattle;The number of farms with beef cattle;Number of beef cattle farms;Number of farms that raise beef cattle -Count_Farm_Broilers,Number of broiler farms;How many farms raise broilers?;number of broiler farms;number of farms raising broilers;number of farms that grow broilers -Count_Farm_Layers,number of layer farms;number of layer-producing farms;number of farms that produce layers;number of farms that raise layers;The number of layer-producing farms -Count_Farm_MilkCows,number of dairy farms;number of farms with dairy cows;number of farms that produce milk;number of farms that raise dairy cows;number of farms that milk cows -Count_Farm_SheepAndLambs,How many farms have sheep and lambs?;Number of farms with sheep and lambs;number of sheep farms;number of farms with sheep;number of farms that raise sheep -MarketValue_Farm_Crops,The worth of farms that cultivate crops;The monetary worth of farms that grow crops;The value of farms that grow crops;The monetary worth of farms that grow crops -MarketValue_Farm_LivestockAndPoultry,The total worth of farms that raise livestock and poultry;The value of farms that raise livestock and poultry;The monetary worth of farms that raise livestock and poultry;The value of farms that raise livestock and poultry;The value of farms that raise livestock and poultry -Mean_MarketValue_Farm_LandAndBuildings,The value of farmland and farm buildings;the average value of land and buildings on farms;The value of land and buildings used for farming;The average value of farmland and farm buildings;The average price of farmland -MarketValue_Farm_AgriculturalProducts,The total worth of all agricultural farms;The total worth of agricultural farms;The total worth of agricultural land;The total value of agricultural property;The total value of agricultural assets -Mean_MarketValue_Farm_AgriculturalProducts, -Area_Farm_BarleyForGrain,Barley farm acreage;Total area of land used for barley farming;Acreage of barley fields;Total area of barley cultivation;The total area of land used for barley farming -Count_Farm_BarleyForGrain,number of barley farms;number of barley-growing farms;number of farms that grow barley;number of farms that produce barley;number of farms that cultivate barley -Count_Farm_CattleAndCalves,Number of cattle operations;Number of cattle-producing facilities;Number of cattle-raising operations;number of cattle farms;number of cattle operations -Count_Farm_InventorySold_CattleAndCalves,Number of cattle and calf businesses;Number of farms that sell cattle and calves -Area_Farm_CornForGrain,the total acreage of farms that grow corn;the total acreage of corn farms;the total area of land used to grow corn;the total acreage of land cultivated for corn;the total acreage of land planted with corn -Count_Farm_CornForGrain,Number of corn farms;How many corn farms are there;How many farms grow corn;How many farms are dedicated to corn;How many farms produce corn -Area_Farm_CornForSilageOrGreenchop,The total area of farms used for silage;The total area of farms used for silage;The total area of farms used for silage production;The total area of farmland used for silage;How much land is used for silage on farms? -Count_Farm_CornForSilageOrGreenchop,How many farms produce silage?;number of silage farms;Number of farms producing silage;Number of silage farms;Number of farms that produce silage -Area_Farm_Cotton,The amount of land used for cotton farming;The amount of land used for cotton farming;Cotton acreage;Cotton acreage;Cotton farming area -Count_Farm_Cotton,How many farms grow cotton?;Number of cotton farms;Number of farms that grow cotton;Number of farms that produce cotton;Number of farms that cultivate cotton -Area_Farm_DryEdibleBeans,Bean acreage;Bean-growing area;Area of land used to grow beans;Land area used to cultivate beans;Bean-growing land -Count_Farm_DryEdibleBeans,Number of farms that grow beans;How many farms grow beans?;The number of farms growing beans;How many farms grow beans;The total number of farms that grow beans -Area_Farm_DurumWheatForGrain,Area of land used to grow durum wheat;The area of farms growing durum wheat;The amount of land used for durum wheat farming;The extent of durum wheat cultivation;The amount of land that is used to grow durum wheat -Count_Farm_DurumWheatForGrain,Number of durum wheat farms;The number of farms that grow durum wheat;The number of farms that grow durum wheat;How many farms grow durum wheat?;The number of farms that grow durum wheat -Count_Farm_HogsAndPigs,Number of farms with hogs;Number of farms with pigs;Number of hog farms;Number of pig farms;Number of farms that raise hogs or pigs -Count_Farm_InventorySold_HogsAndPigs,Number of farms that sold pigs and hogs;Number of farms that sold hogs;Number of farms that sold pigs;Number of farms that sold swine;number of farms that sold hogs and pigs -MarketValue_Farm_MachineryAndEquipment,The worth of farm machinery and equipment on the open market;The value of farm machinery and equipment on the open market;The worth of farm machinery and equipment on the open market;The value of farm machinery and equipment on the open market;1 The current worth of farm machinery and equipment -Mean_MarketValue_Farm_MachineryAndEquipment, -Area_Farm_OatsForGrain,The amount of land used to grow oats;Oat acreage;Oat farming area;Oat growing area;Area of land used to grow oats -Count_Farm_OatsForGrain, -Area_Farm_Orchards,land area of farms with orchards;acreage of farms with orchards;area of farms with fruit trees;land area of farms with fruit trees;The combined area of all farms that have orchards -Count_Farm_Orchards,number of farms with orchards;number of orchards on farms;number of farms that have orchards;number of farms that grow fruit;number of farms that grow fruit trees -Area_Farm_PeanutsForNuts,Peanut farm acreage;Peanut growing acreage;Acreage of land used to grow peanuts;Peanut farm land;Land used to grow peanuts -Count_Farm_PeanutsForNuts, -Area_Farm_PimaCotton,The amount of land used for pima cotton farming;The area of land dedicated to pima cotton cultivation;The acreage of pima cotton farms;The land area used for pima cotton production;Land area used for pima cotton farming -Count_Farm_PimaCotton,How many farms grow pima cotton;What is the number of farms that grow pima cotton;How many pima cotton farms are there;How many farms produce pima cotton;How many farms cultivate pima cotton -Area_Farm_Potatoes,The amount of land that is used to grow potatoes;The amount of land used for potato farming;The land area devoted to potato cultivation;The acreage of potato farms;The amount of land used for potato farming -Count_Farm_Potatoes,the number of farms that grow potatoes;Number of potato farms;Number of farms that grow potatoes;Number of farms that produce potatoes;Number of farms that cultivate potatoes -Area_Farm_Rice,Rice-growing land;area of land used to grow rice;land area used for rice cultivation;rice farming area;rice-growing land -Count_Farm_Rice,number of rice farms;number of rice-growing farms;number of farms that grow rice;number of rice-producing farms;number of rice farms -Area_Farm_SorghumForGrain,The amount of land used for growing sorghum;Sorghum acreage;The amount of land used for sorghum cultivation;The amount of land used for sorghum cultivation;The amount of land that is used for sorghum farming -Count_Farm_SorghumForGrain,How many farms grow sorghum?;The number of farms growing sorghum;The number of sorghum farms;The number of farms that grow sorghum;The number of farms that produce sorghum -Area_Farm_SugarbeetsForSugar,Area of land used for growing sugarbeets for sugar production;Land area used for sugarbeet production;Amount of land used for growing sugarbeets for sugar production;Size of land used for sugarbeet production;Acreage of land used for sugarbeet production -Count_Farm_SugarbeetsForSugar,How many farms grow sugarbeets for sugar production?;How many farms grow sugarbeets for sugar production?;The number of farms that grow sugarbeets for sugar production;The number of sugarbeet farms;The number of farms that produce sugar from sugarbeets -Area_Farm_SunflowerSeed,The amount of land used to grow sunflower seeds;area of land used to grow sunflower seeds;acreage of sunflower farms;land area devoted to sunflower cultivation;sunflower seed farm acreage -Count_Farm_SunflowerSeed,number of farms growing sunflower seeds;number of sunflower seed farms;number of farms that grow sunflower seeds;number of farms producing sunflower seeds;number of farms that cultivate sunflower seeds -Area_Farm_SweetPotatoes,The amount of land used for sweet potato farming;The amount of land used for sweet potato farming;The amount of land used for sweet potato farming;the amount of land used for sweet potato farming;The amount of land used for sweet potato farming -Count_Farm_SweetPotatoes,Count of sweet potato farms;Total number of sweet potato farms;How many sweet potato farms are there;How many farms grow sweet potatoes;Number of farms that grow sweet potatoes -Area_Farm_UplandCotton,The amount of land used for upland cotton farming;The amount of land used for upland cotton farming -Count_Farm_UplandCotton,How many farms grow upland cotton?;How many farms grow upland cotton?;Number of upland cotton farms;How many farms grow upland cotton?;How many farms grow upland cotton? -Area_Farm_VegetablesHarvestedForSale,The area of land used for growing vegetables to be sold;The amount of land used for growing vegetables to be sold;Farmland used to grow vegetables for sale;Vegetable farming area -Count_Farm_VegetablesHarvestedForSale,The number of farms that grow vegetables to sell;the number of farms that grow vegetables to sell;How many farms grow vegetables for sale?;The number of farms that grow vegetables to sell;number of vegetable farms -Area_Farm_WheatForGrain,The amount of land used for wheat farming;Wheat acreage;Wheat-growing farmland -Count_Farm_WheatForGrain,The number of farms that grow wheat;The number of farms that grow wheat;number of wheat farms;number of farms that grow wheat;number of farms that produce wheat -Area_Farm_WinterWheatForGrain,The amount of land that is used for growing winter wheat;Winter wheat acreage;The area of farmland used for winter wheat cultivation;Winter wheat acreage;Area of land used to grow winter wheat -Count_Farm_WinterWheatForGrain,How many farms grow winter wheat?;number of farms growing winter wheat;number of winter wheat farms;number of farms that grow winter wheat;number of farms that cultivate winter wheat -Area_Farm_Cropland,Farmland used for crops -Count_Farm_Cropland,Number of farms that cultivate crops;number of farms with crop cultivation;number of crop-cultivating farms;number of farms that cultivate crops;number of farms that grow crops -Area_Farm_HarvestedCropland,Cultivated land;Land under crop production;Cropland area;Harvested cropland area;Cropland on farms -Count_Farm_HarvestedCropland,Number of farms with harvested cropland;number of farms with harvested crops;the number of farms that have harvested cropland;number of farms with harvested cropland;number of farms with harvested land -Area_Farm_IrrigatedLand,Farmland under irrigation;Farmland area under irrigation;Farmland area under irrigation;Farmland that is irrigated;Farmland under irrigation -Count_Farm_IrrigatedLand,Number of farms with irrigated land;Number of farms with irrigated land;Number of farms with irrigated areas;Number of farms with irrigated fields;Number of farms with irrigated plots -Count_Farm_ReceivedGovernmentPayment,Number of farms that receive government payments;The number of farms that receive government payments;The number of farms that receive government payments;Number of farms that receive government payments;The number of farms receiving government payments -MonetaryValue_Farm_GovernmentPayment,The amount of money that the government gives to farms;The amount of money that the government pays to farms;How much money does the government give to farmers?;The amount of money that the government gives to farms;The amount of money the government gives to farms -dc/9pmyhk89dj3pf,The average wage for accommodation and food services workers;How much do accommodation and food services workers make on average?;How much money do accommodation and food services workers make on average? -Count_Worker_NAICSAccommodationFoodServices,How many people work in accommodation and food services?;Number of people working in the accommodation and food services industry;How many people work in accommodation and food services?;Number of people who work in accommodation and food services;Number of people who work in accommodation and food services -WagesTotal_Worker_NAICSAccommodationFoodServices,"The total amount of money paid to accommodation and food services workers;the amount of money earned by people who work in accommodation and food services;the total amount of money paid to people who work in the hospitality industry;the total earnings of people who work in hotels, restaurants, and other food service establishments;the total compensation of people who work in the accommodation and food services sector" -dc/4z9xy6wn8xns1,What is the median income for administrative and support and waste management services workers;What is the typical income for administrative and support and waste management services workers;what is the median income for administrative and support and waste management services workers -Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,How many people work in administrative and support and waste management services?;The number of people who work in administrative and support and waste management services;administrative and support and waste management services workers;administrative and support workers in waste management services;waste management services workers -WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,"The total amount of money paid to administrative and support and waste management services workers;The total amount of money paid to administrative, support, and waste management services workers;Administrative and support and waste management services workers' total wages;The total wages of administrative and support and waste management services workers;The total amount of money paid to administrative and support and waste management services workers" -dc/yw52qqrrb2w11,"the average yearly income of workers in the agriculture, forestry, fishing, and hunting industries;The middle income of workers in agriculture, forestry, fishing, and hunting;The mid-point income of workers in agriculture, forestry, fishing, and hunting;The median income of workers in agriculture, forestry, fishing, and hunting;what is the median salary for workers in agriculture, forestry, fishing, and hunting" -Count_Worker_NAICSAgricultureForestryFishingHunting,"How many people work in agriculture, forestry, fishing, and hunting?;Number of people working in agriculture, forestry, fishing and hunting;How many people work in agriculture, forestry, fishing, and hunting?;How many people work in agriculture, forestry, fishing, and hunting?;How many people work in agriculture, forestry, fishing, and hunting?" -WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"The total amount of money earned by workers in the agriculture, forestry, fishing, and hunting industries;The total amount of money earned by workers in agriculture, forestry, fishing, and hunting;The total amount of money earned by people who work in agriculture, forestry, fishing, and hunting;The total amount of money earned by people who work in agriculture, forestry, fishing, and hunting;The total amount of money paid to workers in the agriculture, forestry, fishing, and hunting industries" -dc/8lqwvg8m9x7z8,The total amount of money that cattle ranching and farming workers earn;The total amount of money paid to cattle ranching and farming workers;The total amount of money paid to cattle ranching and farming workers;Cattle ranching and farming workers' total wages;The total amount of money paid to cattle ranching and farming workers -dc/63gkdt13bmsv8,how many people work in air transportation;the number of employees in air transportation;the number of people employed in air transportation;the number of people working in the air transportation industry;the number of air transportation workers -dc/4ky4sj05bw4nd,The total amount of money paid to air transportation workers;The total amount of money paid to air transportation workers;The total amount of money paid to air transportation workers;The total amount of money paid to air transportation workers;The total amount of money paid to air transportation workers -dc/z27q5dymqyrnf,The number of people who make clothes;How many people work in the apparel manufacturing industry?;The number of people who work in the apparel manufacturing industry;How many people work in the apparel manufacturing industry?;How many people work in the apparel manufacturing industry? -dc/lygznlxpkj318,The amount of money that apparel manufacturing workers earn in total;The total amount of money paid to apparel manufacturing workers;The amount of money that apparel manufacturing workers earn in total;The total amount of money paid to apparel manufacturing workers;The total amount of money paid to apparel manufacturing workers -dc/mfz54y2skbpeh,"The average income of people who work in the arts, entertainment, and recreation industries;The average salary of people who work in arts, entertainment, and recreation;The average salary of people who work in arts, entertainment, and recreation;The average yearly income of people who work in the arts, entertainment, and recreation industries" -Count_Worker_NAICSArtsEntertainmentRecreation,"How many people work in the arts, entertainment, and recreation industries?;The number of people who work in the arts, entertainment, and recreation industries;How many people work in the arts, entertainment, and recreation industry?;How many people work in the arts, entertainment, and recreation industries?;Number of people employed in the arts, entertainment, and recreation sector" -WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"The total amount of money paid to arts, entertainment, and recreation workers;1 The total amount of money earned by workers in the arts, entertainment, and recreation industries;The total amount of money paid to arts, entertainment, and recreation workers;The total amount of money earned by workers in the arts, entertainment, and recreation industries;The total amount of money earned by workers in the arts, entertainment, and recreation industries" -dc/rlk1yxmkk1qqg,Number of people who work in the manufacturing of beverages and tobacco products;1 The number of people who work in the manufacturing of beverages and tobacco products;How many people work in the beverage and tobacco product manufacturing industry?;How many people work in the beverage and tobacco product manufacturing industry?;number of people who work in the beverage and tobacco product manufacturing industry -dc/9kk3vkzn5v0fb,The total amount of money paid to beverage and tobacco product manufacturing workers;The total amount of money paid to beverage and tobacco product manufacturing workers;The total amount of money earned by beverage and tobacco product manufacturing workers;The total amount of money earned by beverage and tobacco product manufacturing workers;The total amount of money paid to beverage and tobacco product manufacturing workers -dc/eh7s78v8s14l9,the number of people who work in the chemical manufacturing industry;the number of people who are employed in the chemical manufacturing sector;the number of people who work in chemical manufacturing;the number of people who are employed in chemical manufacturing;the number of chemical manufacturing workers -dc/rfdrfdc164y3b,The total amount of money earned by chemical manufacturing workers;The total amount of money paid to chemical manufacturing workers;The total amount of money earned by chemical manufacturing workers;The total amount of money that chemical manufacturing workers earn;The total amount of money earned by chemical manufacturing workers -dc/m07n4w3ywjzs3,how much money do construction workers make on average;what's the median income for a construction worker;how much money do construction workers make on average;what is the median income for a construction worker -Count_Worker_NAICSConstruction,How many construction workers are there?;How many people work in construction?;How many people work in construction?;How many construction workers are there?;How many people work in construction? -WagesTotal_Worker_NAICSConstruction,The total amount of money that construction workers earn;The total amount of money that construction workers earn;The total amount of money construction workers earn;The total amount of money that construction workers earn;The total amount of money that construction workers earn -dc/n87t9dkckzxc8,Number of couriers and messengers;number of couriers and messengers;number of people who work as couriers or messengers;number of people who deliver packages or messages for a living;number of people who are employed as couriers or messengers -dc/95gev5g99r7nc,The total amount of money that couriers and messengers workers earn;The total amount of money that couriers and messengers workers earn;The total amount of money that couriers and messengers workers are paid;The total amount of money that couriers and messengers workers are paid;The total amount of money that couriers and messengers workers earn -dc/jefhcs9qxc971,what is the median income for educational services workers;what is the median income for educational services workers;what is the median income for educational services workers -Count_Worker_NAICSEducationalServices,Number of people who work in education;The number of people who work in education;The number of people who are employed in the education sector;The number of people who are employed in the field of education;The number of people who work in the educational services industry -WagesTotal_Worker_NAICSEducationalServices,The total amount of money paid to educational services workers;The total amount of money paid to educational services workers;The total amount of money that educational services workers earn;The total amount of money paid to educational services workers;The total amount of money paid to educational services workers -dc/x3gghqtglpr59,The middle income of finance and insurance workers;The median wage of finance and insurance workers;what is the median income for finance and insurance workers;the median salary for finance and insurance workers -Count_Worker_NAICSFinanceInsurance,the number of people who work in finance and insurance;How many people work in finance and insurance?;The number of people who work in finance and insurance;Number of people working in finance and insurance;The number of people employed in finance and insurance -WagesTotal_Worker_NAICSFinanceInsurance,The total amount of money paid to finance and insurance workers;The total amount of money paid to finance and insurance workers;The total amount of money paid to finance and insurance workers;The total amount of money paid to finance and insurance workers;The total amount of money paid to finance and insurance workers -dc/107jnwnsh17xb,How many people work in food manufacturing?;How many people work in the food manufacturing industry?;how many people work in food manufacturing;how many people are employed in the food manufacturing industry;how many people are employed in the food processing industry -dc/jngmh68j9z4q,The total amount of money that food manufacturing workers earn;The total amount of money that food manufacturing workers earn;The total amount of money earned by food manufacturing workers;The total amount of money paid to food manufacturing workers;The total amount of money paid to food manufacturing workers -dc/c0wxmt45gffxc,Number of workers in general merchandise stores;Number of people employed in general merchandise stores;Number of general merchandise store employees;Number of workers in the general merchandise store industry;Number of people who work in general merchandise stores -dc/dchdrg93spxkf,The sum of the earnings of all general merchandise store workers;How much money do general merchandise store workers make?;The total amount of money earned by workers in general merchandise stores;The total amount of money paid to general merchandise store workers;The total amount of money paid to general merchandise store workers -dc/2wgh04kx6es88,the average amount of money that health care and social assistance workers make;The average salary of people who work in health care and social assistance -Count_Worker_NAICSHealthCareSocialAssistance,the number of people who work in healthcare and social assistance;the number of healthcare and social assistance employees;the number of people employed in healthcare and social assistance;the number of people who work in the healthcare and social assistance industry;the number of people who work in the healthcare and social assistance sector -WagesTotal_Worker_NAICSHealthCareSocialAssistance,The total amount of money paid to health care and social assistance workers;The total amount of money paid to health care and social assistance workers;The total amount of money paid to health care and social assistance workers;The total amount of money paid to health care and social assistance workers;The total amount of money paid to health care and social assistance workers -dc/xj2nk2bg60fg,the typical income of information workers;what is the median income for information workers;the typical income of information workers;the middle ground of income for information workers;the median salary for information workers -Count_Worker_NAICSInformation,number of people who work with information;number of people who work in the information sector;number of people who work in information technology;number of people who work in the knowledge economy;number of people who work in the digital economy -WagesTotal_Worker_NAICSInformation,The total amount of money paid to information workers;The total amount of money paid to information workers;The total amount of money paid to information workers;The total amount of money paid to information workers;The total amount of money that information workers are paid -dc/7bck6xpkc205c,Number of workers in the leather and allied product manufacturing industry;Number of people employed in the leather and allied product manufacturing sector;Number of people working in the leather and allied product manufacturing field;Number of leather and allied product manufacturing employees;Number of leather and allied product manufacturing workers -dc/fetj39pqls2df,The total amount of money earned by leather and allied product manufacturing workers;The total amount of money paid to leather and allied product manufacturing workers;The total amount of money paid to workers in the leather and allied product manufacturing industry;The total amount of money earned by leather and allied product manufacturing workers;The total amount of money paid to leather and allied product manufacturing workers -dc/t6m99mqmqxjbc,The median income of management in companies and enterprises;The median compensation of management in companies and enterprises -Count_Worker_NAICSManagementOfCompaniesEnterprises,Number of people who manage companies and enterprises;number of people who manage companies and enterprises;number of managers in companies and enterprises;number of people who work in management positions in companies and enterprises;number of people who are in charge of companies and enterprises -WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,The total amount of money paid to managers of companies and enterprises;The total amount of money paid to managers of companies and enterprises;The total amount of money paid to managers of companies and enterprises workers;The total amount of money paid to managers of companies and enterprises;The total amount of money paid to managers of companies and enterprises -dc/b4dj4sbgqybh7,"The typical income for mining, quarrying, and oil and gas extraction workers;The middle income for mining, quarrying, and oil and gas extraction workers;The mid-point income for mining, quarrying, and oil and gas extraction workers;The median pay for mining, quarrying, and oil and gas extraction workers;How much money do mining, quarrying, and oil and gas extraction workers make on average" -Count_Worker_NAICSMiningQuarryingOilGasExtraction,"the number of people who work in the mining, quarrying, and oil and gas extraction industries;the number of people who are employed in the mining, quarrying, and oil and gas extraction sectors;the number of people who have jobs in the mining, quarrying, and oil and gas extraction fields;the number of people who work in the mining, quarrying, and oil and gas extraction trades;the number of people who are employed in the mining, quarrying, and oil and gas extraction occupations" -WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"The total amount of money paid to mining, quarrying, and oil and gas extraction workers;The total amount of money paid to mining, quarrying, and oil and gas extraction workers;The total amount of money paid to workers in the mining, quarrying, and oil and gas extraction industries;The total amount of money paid to mining, quarrying, and oil and gas extraction workers;The total amount of money paid to mining, quarrying, and oil and gas extraction workers" -dc/4mm2p1rxr5wz4,store employees;shop assistants;salespeople;number of workers in retail stores;number of people who work in retail -dc/6ets5evke9mw5,The total amount of money earned by miscellaneous store retailers workers;The total amount of money paid to miscellaneous store retailers workers;The total amount of money paid to workers in miscellaneous store retail;The total amount of money earned by workers in miscellaneous retail stores;The total amount of money paid to workers in miscellaneous retail stores -dc/90nswpkp8wlw5,Number of workers employed in the manufacture of nonmetallic mineral products;The number of people who work in the manufacturing of nonmetallic mineral products;The number of people who work in the manufacturing of nonmetallic mineral products;How many people work in nonmetallic mineral product manufacturing?;The number of people who work in the manufacturing of nonmetallic mineral products -dc/yxxs3hh2g2shd,The total amount of money paid to nonmetallic mineral product manufacturing workers;The total amount of money earned by nonmetallic mineral product manufacturing workers;How much do nonmetallic mineral product manufacturing workers make?;The total amount of money paid to nonmetallic mineral product manufacturing workers;The total amount of money paid to nonmetallic mineral product manufacturing workers -dc/2etwgx6vecreh,Number of workers in nonstore retailing;number of workers in nonstore retailing;How many people work in non-store retailing? -dc/8pxklrk2q6453,The total amount of money that nonstore retailers workers earn -dc/knhvyxwsd3y6h,"The median income of workers in other services, excluding public administration;the median pay for people in service jobs other than public administration;what people in non-public-sector service jobs earn on average;the middle income for service workers in other sectors;the average income for service workers in other sectors" -Count_Worker_NAICSOtherServices,Number of workers in non-public services;Number of workers in non-public services;Number of workers in non-public services -WagesTotal_Worker_NAICSOtherServices,The total amount of money paid to workers in non-public service industries;Amount earned by workers in other services excluding the public sector;Total pay of workers in other services other than the public sector;Sum of the earnings of workers in other services other than the public sector;Wages of workers in other services other than the public sector added together -dc/6n6l2wrzv7473,number of people who work in the paper manufacturing industry;number of paper mill workers;number of paper factory employees;number of people who make paper;number of paper producers -dc/kl7t3p3de7tlh,The total amount of money that paper manufacturing workers earn;The total amount of money that paper manufacturing workers earn;The total amount of money paid to paper manufacturing workers;The total amount of money that paper manufacturing workers earn;The total amount of money paid to paper manufacturing workers -dc/34t2kjrwbjd31,The number of people who work in petroleum and coal products manufacturing;number of petroleum and coal products manufacturing workers;number of people employed in petroleum and coal products manufacturing;number of workers in the petroleum and coal products manufacturing industry;number of people working in the petroleum and coal products manufacturing sector -dc/8cssekvykhys5,The total amount of money paid to workers in the petroleum and coal products manufacturing industry;The total amount of money paid to petroleum and coal products manufacturing workers;The total amount of money earned by petroleum and coal products manufacturing workers;The total amount of money paid to petroleum and coal products manufacturing workers;1 The total amount of money paid to petroleum and coal products manufacturing workers -dc/yn0h4nw4k23f1,How many people work in pipeline transportation?;How many people work in pipeline transportation?;How many people work in pipeline transportation?;How many people work in pipeline transportation?;How many people work in pipeline transportation? -dc/n0m3e2r3pxb21,The total amount of money that pipeline transportation workers earn;The total amount of money that pipeline transportation workers earn;The amount of money that pipeline transportation workers earn in total;How much do pipeline transportation workers make?;How much money do pipeline transportation workers make? -dc/qnz3rlypmfvw6,How many people work in the plastics and rubber products manufacturing industry?;Number of workers in the plastics and rubber products manufacturing industry;How many people work in the plastics and rubber products manufacturing industry?;How many people work in the plastics and rubber products manufacturing industry?;Number of people who work in the plastics and rubber products manufacturing industry -dc/9yj0bdp6s4ml5,The total amount of money paid to workers in the plastics and rubber products manufacturing industry;The total amount of money paid to plastics and rubber products manufacturing workers;The total amount of money earned by plastics and rubber products manufacturing workers;The total amount of money earned by workers in the plastics and rubber products manufacturing industry;The total amount of money earned by workers in the plastics and rubber products manufacturing industry -dc/8j8w7pf73ekn,number of people who work for the post office;number of people employed by the postal service;number of people who work for the United States Postal Service;number of people who are employed by the United States Postal Service;number of postal workers -dc/ntpwcslsbjfc8,The total amount of money paid to postal service workers;The total amount of money paid to postal service workers;The total amount of money paid to postal service workers;The total amount of money paid to postal service workers;The total amount of money that postal service workers earn -dc/vp4cplffwv86g,Number of workers in printing and related support activities;Number of workers in printing and related support activities;Number of people who work in printing and related support activities;Number of workers in the printing and related support activities industry;Number of people working in printing and related support activities -dc/wv0mr2t2f5rj9,1 The total amount of money paid to printing and related support activities workers;The total amount of money paid to printing and related support activities workers;The total amount of money paid to printing and related support activities workers;The total amount of money paid to printing and related support activities workers;The total amount of money earned by printing and related support activities workers -dc/5hv2p802zmh03,"The average salary of professional, scientific, and technical services workers;The middle income for workers in professional, scientific, and technical services;The average salary for people who work in professional, scientific, and technical services;How much money do professional, scientific, and technical services workers make?;What is the average salary of professional, scientific, and technical services workers?" -Count_Worker_NAICSProfessionalScientificTechnicalServices,"The number of people who work in professional, scientific, and technical services;The number of people employed in professional, scientific, and technical services;Number of workers in professional, scientific, and technical services;Number of people who work in professional, scientific, and technical services;number of professional, scientific, and technical services workers" -WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"The total amount of money paid to professional, scientific, and technical services workers;The total amount of money that professional, scientific, and technical services workers earn;The total amount of money paid to professional, scientific, and technical services workers;The total amount of money paid to professional, scientific, and technical services workers;The total amount of money paid to professional, scientific, and technical services workers" -dc/7jqw95h5wbelb,The average salary of public servants;What is the average salary of a public administration worker;What is the median income for public administration workers;What is the typical salary for a public administration worker;The average salary of public administration workers -Count_Worker_NAICSPublicAdministration,The number of people who work in public administration;Number of people working in public administration;Number of public servants;Number of people employed in government;Number of people working for the government -WagesTotal_Worker_NAICSPublicAdministration,The total amount of money that public administration workers earn;1 The total amount of money paid to public administration workers;The total amount of money paid to public administration workers;The total amount of money paid to public administration workers;The total amount of money paid to public administration workers -dc/3kwcvm428wpq4,Number of people working in rail transportation;number of people who work in rail transportation;number of rail transportation employees;number of people who work on trains;number of people who work in the rail industry -dc/ksynl8pj8w5t5,The total amount of money paid to rail transportation workers;The amount of money that rail transportation workers earn in total;The total amount of money earned by rail transportation workers;How much money do rail transportation workers make?;How much do rail transportation workers earn? -dc/015d58s9xh8kd,How much money do real estate and rental and leasing workers make on average?;The average yearly salary for real estate and rental and leasing workers;1 The average salary for real estate and rental and leasing workers;What is the average salary for real estate and rental and leasing workers?;What is the median income for real estate and rental and leasing workers? -Count_Worker_NAICSRealEstateRentalLeasing,number of real estate and rental and leasing workers;number of people employed in real estate and rental and leasing;number of people working in real estate and rental and leasing;number of real estate and rental and leasing employees;number of people employed in the real estate and rental and leasing industry -WagesTotal_Worker_NAICSRealEstateRentalLeasing,the total amount of money paid to real estate and rental and leasing workers;the total amount of money earned by real estate and rental and leasing workers;the total amount of money real estate and rental and leasing workers are paid;the total amount of money real estate and rental and leasing workers earn;the total compensation of real estate and rental and leasing workers -dc/5f3gkej4mrq24,"What do retail trade workers make, on average?;The average amount of money that retail trade workers make;The average salary for retail trade workers;1 The amount of money that retail trade workers make on average" -dc/p69tpsldf99h7,the number of retail workers;the number of people employed in retail;the number of people who have retail jobs -dc/dxcbt2knrsgg9,The total amount of money paid to retail trade workers;The total amount of money paid to retail trade workers;The total amount of money earned by retail trade workers;The total amount of money that retail trade workers earn;The amount of money that retail trade workers earn in total -dc/v3qgyhwx13m44,The number of people who work in scenic and sightseeing transportation;The number of people who work in scenic and sightseeing transportation;How many people work in scenic and sightseeing transportation?;How many people work in scenic and sightseeing transportation?;how many people work in scenic and sightseeing transportation -dc/qgpqqfzwz03d,The total amount of money paid to scenic and sightseeing transportation workers;The total amount of money paid to scenic and sightseeing transportation workers;The total amount of money paid to scenic and sightseeing transportation workers;The total amount of money paid to scenic and sightseeing transportation workers;The total amount of money that scenic and sightseeing transportation workers earn -dc/e2zdnwjjhyj36,How many sports are there?;How many sports are there;What is the number of sports;How many different sports are there;What are common hobbies -dc/k4grzkjq201xh,"The total amount of money earned by sports, hobby, music instrument, and bookstore workers;The total amount of money earned by sports, hobby, music instrument, and bookstore workers;How much do sports, hobby, music instrument, and book store workers earn in total?;1 What do sports, hobby, music instrument, and bookstore workers earn in total?;The combined earnings of sports, hobby, music instrument, and bookstore workers" -dc/bb4peddkgmqe7,Aids for transportation workers;Help for transportation workers;Assistance for transportation workers;Support for transportation workers;Services for transportation workers -dc/bceet4dh33ev,The total amount of money paid to people who work in support roles for transportation workers;The total amount of money paid to support workers in the transportation industry;Wages paid to support transportation workers;The total amount of money paid to people who work in support roles for transportation workers;The total amount of money paid to support workers in the transportation industry -dc/3ex11eg2q9hp6,what manufacturing workers make on average;the typical income of a manufacturing worker;what is the median income for manufacturing workers;the average amount of money that manufacturing workers make;What do manufacturing workers make on average? -dc/ndg1xk1e9frc2,How many people work in manufacturing?;How many people work in manufacturing?;number of people who work in manufacturing;Number of people who work in manufacturing;Number of people employed in manufacturing -dc/tqgf8zv96r5t8,The number of people who work in textile and fabric finishing mills;the number of people who work in textile and fabric finishing mills;How many people work in textile and fabric finishing mills?;The number of people who work in textile and fabric finishing mills;The number of people who work in textile and fabric finishing mills -dc/wzz9t818m1gk8,The total amount of money paid to manufacturing workers;The total amount of money that manufacturing workers earn;The total amount of money earned by manufacturing workers;The total amount of money earned by manufacturing workers;The total amount of money that manufacturing workers earn -dc/1jqm2g7cm9m75,The total amount of money earned by textile and fabric finishing mills workers;The total amount of money that textile and fabric finishing mills workers earn;The total amount of money earned by textile and fabric finishing mills workers;1 The total amount of money earned by textile and fabric finishing mills workers;The total amount of money that textile and fabric finishing mills workers earn -dc/8b3gpw1zyr7bf,How many people work in textile mills?;The number of people who work in textile mills;How many people work in textile mills?;The number of people who work in textile mills;How many people work in textile mills? -dc/7w0e0p0dzj82g,The total amount of money that textile mills workers earn;The total amount of money earned by textile mills workers;The total amount of money that textile mills workers are paid;The total amount of money earned by textile mills workers;The total amount of money paid to textile mill workers -dc/dy2k68mmhenfd, -dc/1q3ker7zf14hf,The total amount of money that textile product mills workers earn;The total amount of money earned by textile product mills workers;The total amount of money that textile product mills workers earn;The total amount of money earned by textile product mills workers;The total amount of money that textile product mills workers earn -Count_Worker_NAICSTotalAllIndustries,1 The total number of workers in all industries;total number of workers in all industries;The total number of workers in all industries;total number of workers in all industries;total number of people employed -WagesTotal_Worker_NAICSTotalAllIndustries,The total amount of money paid to all workers in all industries;The total wages of all workers in all industries;The total amount of money earned by all workers in all industries;The total compensation of all workers in all industries;The total earnings of all workers in all industries -dc/bwr1l8y9we9k7,The number of people who work in transit and ground passenger transportation;How many people work in transit and ground passenger transportation?;Number of people who work in transit and ground passenger transportation;Number of people who work in transit and ground passenger transportation;Number of people who work in transit and ground passenger transportation -dc/9t5n4mk2fxzdg,The total amount of money paid to transit and ground passenger transportation workers;The total amount of money paid to transit and ground passenger transportation workers;The total amount of money paid to transit and ground passenger transportation workers;The total amount of money paid to transit and ground passenger transportation workers;The total amount of money paid to transit and ground passenger transportation workers -dc/zbpsz8dg01nh2,The average yearly income of transportation and warehousing workers;The average yearly salary of transportation and warehousing workers;The average amount of money that transportation and warehousing workers make;1 The average yearly salary of transportation and warehousing workers -dc/8p97n7l96lgg8,1 How many people work in transportation and warehousing?;Number of people who work in transportation and warehousing;How many people work in transportation and warehousing?;Number of people working in transportation and warehousing;How many people work in transportation and warehousing? -dc/84czmnc1b6sp5,The total amount of money paid to transportation and warehousing workers;The total amount of money paid to transportation and warehousing workers;The total amount of money paid to transportation and warehousing workers;The total amount of money paid to transportation and warehousing workers;The total amount of money paid to transportation and warehousing workers -dc/k3hehk50ch012,number of truck drivers;number of people who drive trucks;number of truck operators;number of people who work in truck transportation;number of truck transportation employees -dc/h77bt8rxcjve3,The total amount of money that truck transportation workers earn;The total amount of money that truck transportation workers are paid;The amount of money that truck transportation workers earn in total;The total amount of money that truck transportation workers earn;How much do truck drivers make? -Count_Worker_NAICSNonclassifiable,number of workers in non-classifiable industries;number of workers in unclassifiable industries;number of workers in industries that cannot be classified;number of workers in industries that are not classified -WagesTotal_Worker_NAICSNonclassifiable,The total amount of money paid to unclassified workers;The total amount of money paid to unclassified workers;1 The total amount of money paid to unclassified workers;The total amount of money paid to unclassified workers;The sum of all wages paid to unclassified workers -dc/x95kmng969n42,What is the average salary of a utility worker?;The amount of money that the middle 50% of utilities workers make;average salary of utilities workers;median income of utilities workers;What is the median income for utilities workers? -Count_Worker_NAICSUtilities,The number of people who work in utilities;number of people who work in utilities;number of people who work in the utilities industry;number of people who are employed in utilities;number of people who have jobs in utilities -WagesTotal_Worker_NAICSUtilities,The total amount of money paid to utilities workers;The total amount of money that utilities workers earn;The total amount of money earned by utilities workers;The total amount of money that utilities workers are paid;The total amount of money that utilities workers earn -dc/w1tfjz3h6138,number of people who work in warehousing and storage;The number of people who work in warehousing and storage;The number of people who work in warehousing and storage;How many people work in warehousing and storage?;How many people work in warehousing and storage? -dc/fcn7wgvcwtsj2,The total amount of money paid to warehousing and storage workers;The total amount of money paid to warehousing and storage workers;1 How much do warehousing and storage workers get paid?;The total amount of money earned by warehousing and storage workers;The amount of money that warehousing and storage workers earn in total -dc/h1jy2glt2m7e6,How many people work in water transportation?;How many people work in water transportation?;How many people work in water transportation?;1 How many people work in water transportation?;the number of people who work in water transportation -dc/0hq9z5mspf73f,The total amount of money earned by water transportation workers;The total amount of money earned by water transportation workers;The total amount of money that water transportation workers earn;The total amount of money that water transportation workers earn;The amount of money that water transportation workers earn in total -dc/8hy0p1ex5s2cb,How much money do wholesale trade workers make on average?;1 How much money do wholesale trade workers make on average?;What do wholesale trade workers make on average?;The average yearly salary of wholesale trade workers -Count_Worker_NAICSWholesaleTrade,number of wholesale trade workers;number of people employed in wholesale trade;number of workers in the wholesale trade industry;number of wholesale trade employees;number of people working in wholesale trade -WagesTotal_Worker_NAICSWholesaleTrade,The amount of money that wholesale trade workers earn in total;The total amount of money earned by wholesale trade workers;The total amount of money earned by wholesale trade workers;The total amount of money that wholesale trade workers earn;The sum of all the wages paid to wholesale trade workers -dc/ws19bm1hl105b,Number of people who work in wood product manufacturing;Wood product manufacturing employment;number of people who work in wood product manufacturing;The number of people who work in wood product manufacturing;How many people work in wood product manufacturing? -dc/nesnbmrncfjrb,Wood product manufacturing workers' total wages;The total amount of money earned by wood product manufacturing workers;The sum of the wages of wood product manufacturing workers;The total pay of wood product manufacturing workers;The total earnings of wood product manufacturing workers -Percent_Person_WithAllTeethLoss,The rate of tooth loss in the population -Percent_Person_WithArthritis,What percentage of people have arthritis;What is the prevalence of arthritis;How many people have arthritis;What is the number of people with arthritis;How common is arthritis -Percent_Person_WithAsthma,What percentage of people have asthma?;What percentage of people have asthma;What is the percentage of people with asthma;What proportion of people have asthma;What is the prevalence of asthma -Percent_Person_WithCancerExcludingSkinCancer,the percentage of people who have cancer other than skin cancer;1 What percentage of people have a cancer other than skin cancer?;What percentage of people have cancer other than skin cancer?;What percentage of people have a cancer other than skin cancer;What is the percentage of people who have a cancer other than skin cancer -Percent_Person_WithChronicKidneyDisease,What percentage of people have chronic kidney disease?;What percentage of people have chronic kidney disease;What proportion of people have chronic kidney disease;How many people have chronic kidney disease;What number of people have chronic kidney disease -Percent_Person_WithChronicObstructivePulmonaryDisease,The percentage of people with chronic obstructive pulmonary disease;The proportion of people with chronic obstructive pulmonary disease;The number of people with chronic obstructive pulmonary disease as a percentage of the total population;The percentage of the population with chronic obstructive pulmonary disease;The prevalence of chronic obstructive pulmonary disease -Percent_Person_WithCoronaryHeartDisease,What percentage of people have coronary heart disease;What is the percentage of people with coronary heart disease;What is the proportion of people with coronary heart disease;What is the number of people with coronary heart disease as a percentage of the total population;What is the prevalence of coronary heart disease -Percent_Person_WithDiabetes,What percentage of people have diabetes;What is the percentage of people with diabetes;What is the prevalence of diabetes;What proportion of people have diabetes;How many people have diabetes -Percent_Person_WithHighBloodPressure,What percentage of people have high blood pressure?;How many people have high blood pressure?;What proportion of people have high blood pressure?;How many people have high blood pressure?;How many people have high blood pressure -Percent_Person_WithHighCholesterol,1 What percentage of people have high cholesterol?;What percentage of people have high cholesterol;What is the percentage of people with high cholesterol;What proportion of the population has high cholesterol;How many people have high cholesterol -Percent_Person_WithMentalHealthNotGood,What percentage of people have poor mental health?;The percentage of people with poor mental health;How many people have poor mental health?;The percentage of people who have poor mental health;The percentage of people with poor mental health -Percent_Person_WithPhysicalHealthNotGood,the percentage of people who are not physically healthy;the number of people who are not physically healthy;the proportion of people who are not physically healthy;the share of people who are not physically healthy;the percentage of people who have poor physical health -Percent_Person_WithStroke,1 What percentage of people have had a stroke?;what percentage of people have had a stroke;what is the stroke rate;what percentage of the population has had a stroke;what is the prevalence of stroke -Percent_Person_Children_WithAsthma,What percentage of children have asthma;What is the rate of asthma in children;How many children have asthma;What proportion of children have asthma;What is the prevalence of asthma in children -Percent_Person_20OrMoreYears_WithDiabetes,the percentage of people over 19 with diabetes;the proportion of people over 19 with diabetes;the number of people over 19 with diabetes as a percentage of the total population;the prevalence of diabetes in people over 19;What percentage of people over 19 have diabetes? -dc/nh3s4skee5483,What percentage of women have diabetes;What is the percentage of females with diabetes;What is the proportion of females with diabetes;What percentage of the female population has diabetes;What is the prevalence of diabetes in women -dc/xmpy89x1nh8cg,What percentage of males have diabetes;What is the percentage of males who have diabetes;What is the percentage of males diagnosed with diabetes;What proportion of males have diabetes;What is the prevalence of diabetes in males -Percent_Person_65OrMoreYears_WithAllTeethLoss,What percentage of people aged 65 and older have lost all their teeth?;What percentage of people aged 65 and older have lost all their teeth?;What percentage of people aged 65 and older have lost all of their teeth?;What percentage of people over the age of 65 have lost all their teeth?;What percentage of people aged 65 and older have lost all of their teeth? -Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication,What percentage of people aged 18 and older with high blood pressure are taking blood pressure medication?;What percentage of people with high blood pressure are taking blood pressure medication?;the percentage of people with high blood pressure who are taking blood pressure medication among people who are 18 years or older;What percentage of people aged 18 and older with high blood pressure are taking medication for it?;What percentage of people aged 18 and over with high blood pressure are taking blood pressure medication -GenderIncomeInequality_Person_15OrMoreYears_WithIncome,The difference in pay between men and women;income inequality between men and women;pay gap for men vs women;gender-based income inequality -Median_Income_Person,Median income;Halfway point between the highest and lowest incomes -Count_Person_Divorced,the number of people who are divorced;number of people who are divorced;number of people who have been divorced;number of people who have gotten a divorce;The number of people who are divorced -Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Number of phones per person;Percentage of people with a cellphone;The number of phones per person;The number of cell phones per person;Number of phones per person -Count_Death, -Count_Death_AsAFractionOfCount_Person,"proportion of deaths in a population;The number of deaths per 100,000 people in a given population" -Count_Person_EnrolledInSchool,How many people are in school?;How many people are in school?;The number of students in school;The school population;The number of people enrolled in school -Count_Person_NotEnrolledInSchool,Number of people who are not enrolled in school;The number of people who are not enrolled in school;number of people not enrolled in school;number of people not attending school;number of people not in the education system -AirQualityIndex_AirPollutant,Air quality index;AQI;Air quality index reading;Air quality index level;Air quality index measurement -Count_MedicalConditionIncident_COVID_19_PatientInICU,How many COVID patients are in the ICU?;The number of COVID-19 patients in the ICU;The number of COVID-19 patients in intensive care units;The number of people with COVID-19 who are in the ICU;The number of people with COVID-19 who are in intensive care -CumulativeCount_Vaccine_COVID_19_Administered,Number of COVID-19 vaccines administered;Number of people who have received a COVID-19 vaccine;Number of COVID-19 vaccine doses administered;Total number of COVID-19 vaccinations;Number of COVID-19 vaccine shots given -IncrementalCount_Vaccine_COVID_19_Administered,Number of Covid-19 vaccines administered daily;Number of Covid-19 shots given daily;Daily Covid-19 vaccination rate;Daily number of Covid-19 vaccinations;Daily Covid-19 vaccine doses administered -Percent_Person_SleepLessThan7Hours,Percentage of people who sleep less than seven hours;Percentage of people who are sleep deprived;Percentage of people who do not get enough sleep;Percentage of people who are chronically sleep-deprived;Percentage of people who are sleep-deprived on a regular basis -Percent_Person_Obesity,What percentage of people are obese?;What percentage of the population is obese?;Obesity rate;Prevalence of obesity;Percentage of people who are obese -Percent_Person_Smoking,Smoking rate;Percentage of smokers;Number of smokers;Share of smokers;Proportion of smokers -Percent_Person_18To64Years_ReceivedNoHealthInsurance,What proportion of the population is uninsured;What percentage of people are uninsured -Percent_Person_ReceivedAnnualCheckup,What percentage of people get an annual checkup?;What percentage of people have an annual checkup?;What percentage of people get an annual checkup?;What percentage of people get an annual checkup?;What percentage of people get annual checkups? -Count_HousingUnit_VacantHousingUnit,the number of vacant homes;Number of vacant homes;Number of empty dwellings;1 Number of vacant houses;Vacant homes -Count_Household_MarriedCoupleFamilyHousehold,Number of married households;The percentage of households that are married;Number of married households;the number of married households;Number of married households -Count_Household_NonfamilyHousehold,Number of people living in single-person households;Number of people living in households with unrelated people;Number of households with one person living alone or with unrelated people;Number of households with only unrelated people -GiniIndex_EconomicActivity,Gini coefficient;Gini coefficient -Count_Person_15OrMoreYears_NoIncome,Number of people with no income;The number of people who do not have an income;Number of people without a job;the number of people who are not working;the number of people who are not earning an income -Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,Per capita healthcare expenditure;Cost of healthcare per person;The amount of money spent on healthcare per person;1 The amount of money spent on healthcare per person;Per capita healthcare expenditure -Count_CriminalActivities_CombinedCrime,Number of offenses;Number of criminal acts;number of offenses;number of criminal offenses;Number of offenses -Count_CriminalIncidents_IsHateCrime,The total number of hate crimes;Hate crime statistics;Number of hate crimes reported;Hate crime data;Hate crime reports -WithdrawalRate_Water,Rate of water withdrawal;Water withdrawal rate;Rate at which water is withdrawn;Rate of water removal;Rate of water abstraction -Count_CoastalFloodEvent, -Count_DroughtEvent,number of droughts;drought count;drought frequency;drought incidence;drought occurrence -Count_HeatEvent,Number of heat waves;Frequency of heat waves;How often do heat waves occur;How many heat waves have there been;How many heat waves have occurred -Count_HeavyRainEvent,Frequency of heavy rains;Amount of heavy rains;number of heavy downpours;frequency of heavy rains;how often it rains heavily -Count_HeavySnowEvent,1 How many heavy snows have there been?;Number of snowfalls that are heavy;Frequency of heavy snowfall;Number of heavy snow events;Number of heavy snow days -Count_WildfireEvent,Number of wildfires;Wildfire count;Number of fires that are wildfires;How many wildfires have there been;How many wildfires have started -Count_EarthquakeEvent,How many earthquakes have there been?;Earthquake count;Number of earthquakes;Earthquake frequency;Earthquake occurrence -Count_FloodEvent,How many floods have there been;How often do floods happen;How many times has there been a flood;How many floods have occurred;How many flood events have there been -Annual_ExpectedLoss_NaturalHazardImpact,The financial burden of natural disasters;The financial burden of natural disasters;The financial burden of natural disasters;The price tag of natural disasters;The financial impact of natural disasters -ConsecutiveDryDays,Consecutive dry days;Consecutive dry days;Number of days without rain;Consecutive dry days;Consecutive dry days -Count_Household_InternetWithoutSubscription,1 Number of households without internet access;Number of households without internet access;Number of households without internet access;Number of households without home internet;Number of households without broadband internet -Annual_Generation_Energy_Coal,Annual coal energy generation;1 The amount of energy produced by coal in a year;The amount of energy produced by burning coal in a year;The amount of energy produced by coal in a year;The amount of energy produced by burning coal in a year -Annual_Count_ElectricityConsumer,Number of people who use electricity in a year;1 Number of people who use electricity in a year;1 Number of people who use electricity in a year;The number of people who use electricity in a year;Number of people who use electricity in a year -Monthly_Count_ElectricityConsumer,Number of people who use electricity in a month;Number of people who use electricity in a month;Number of people who use electricity in a month;Number of people who use electricity in a month;Number of people who use electricity in a month -Annual_Consumption_Electricity,the amount of electricity used in a year;the annual consumption of electricity;the yearly electricity consumption;the amount of electricity used over the course of a year;the amount of electricity used in a year -Annual_Generation_Electricity,Annual electricity generation -Annual_Generation_Fuel_Nuclear,The total amount of nuclear fuel produced in a year;The amount of nuclear fuel generated annually;Annual nuclear fuel production;The annual production of nuclear fuel;The annual amount of nuclear fuel produced -Annual_Generation_Fuel_CrudeOil,Yearly crude oil production;The annual amount of crude oil generated;Annual crude oil production;Crude oil production per year;Annual crude oil production -Annual_Generation_Fuel_DieselOil,Annual diesel oil production;The annual production of diesel oil;The annual production of diesel oil;1 The yearly production of diesel oil;annual diesel oil production -Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,What percentage of people aged 15 or older drink alcohol?;What percentage of people aged 15 or older drink alcohol?;What percentage of people aged 15 years or older consume alcohol?;What percentage of people aged 15 and older drink alcohol?;What percentage of people aged 15 years or older consume alcohol? -Amount_Consumption_Electricity_PerCapita,How much electricity does the average person use?;Per capita electricity consumption;Per capita electricity consumption;The average amount of electricity used by each person in a country;Per capita electricity consumption -Amount_Consumption_Energy_PerCapita,How much energy does the average person use?;Energy consumption per person;Energy consumption per person;Energy used per capita;Per capita energy consumption -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,The percentage of the government's total budget spent on education;The amount of money the government spends on education as a percentage of its total budget;The portion of the government's budget that goes to education;The percentage of the government's total spending that is allocated to education;The share of the government's budget that is devoted to education -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,The percentage of GDP spent on education;Education spending as a percentage of GDP;Percentage of GDP spent on education;Share of GDP allocated to education;Education expenditure as a percentage of GDP -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,Government spending on the military;Government spending on the military;The amount of money that a government spends on its military;Government spending on the military -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Military spending as a percentage of total government expenditure;Military spending as a percentage of total government expenditure;What percent of the government's budget goes to the military?;How much of the government's budget goes to the military?;What percentage of the total government budget is spent on the military -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,GDP per capita;GDP per person;Gross domestic product per capita;GDP per head;Nominal GDP per capita -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,Purchasing power parity (PPP) gross national income (GNI);Gross National Income based on purchasing power parity;Gross National Income (PPP);Gross National Income based on purchasing power parity;Gross National Income at purchasing power parity -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,Gross National Income per capita based on purchasing power parity;GNI per capita based on purchasing power parity;GNI per capita (PPP);GNI per capita (PPP) in international dollars;GNI per capita based on purchasing power parity (PPP) in international dollars -Amount_Remittance_InwardRemittance,Total inward remittances -Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,The percentage of inward remittances to nominal gross domestic product;Percentage of GDP from inward remittances;Proportion of GDP from inward remittances;Share of GDP from inward remittances;Inward remittances as a share of GDP -Amount_Remittance_OutwardRemittance, -Amount_Stock,The total worth of all the stocks you own;The total value of all stocks;The sum of all stock prices;The total worth of all stocks;The aggregate value of all stocks -Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,The stock market's value as a percentage of GDP;The value of stocks as a percentage of GDP;The ratio of stock market capitalization to GDP;The market capitalization of stocks as a share of GDP;The percentage of GDP that is represented by the stock market -Count_CycloneEvent,How many cyclones occur each year?;How many cyclones are there?;Cyclone count;Number of cyclones;How many cyclones -Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,Death rate of infants under one year of age;Infant mortality rate;Death rate of infants;Rate of infant deaths;Infant death rate -Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,1 Female infant mortality rate;Female infant mortality rate;Female infant mortality rate;Female infant death rate;Death rate of female infants -Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,"The rate of death among male infants;Male infant mortality rate;The rate of death among male infants;The number of male infants who die per 1,000 live births;The percentage of male infants who die before their first birthday" -Count_Death_DiseasesOfTheCirculatorySystem,Number of deaths caused by circulatory system diseases;Circulatory system diseases death toll;Number of deaths caused by diseases of the circulatory system -Count_Death_DiseasesOfTheNervousSystem,How many people died from diseases of the nervous system?;Number of deaths caused by diseases of the nervous system;Number of deaths due to neurological disorders;Number of deaths from neurological diseases;Number of deaths resulting from neurological illnesses -Count_Death_DiseasesOfTheRespiratorySystem,How many people died from respiratory diseases?;Number of deaths caused by respiratory diseases;Number of deaths caused by respiratory diseases;Number of deaths caused by respiratory diseases;Respiratory system diseases death toll -Count_Death_ExternalCauses,"Number of deaths caused by external factors;Number of deaths due to non-natural causes;Number of deaths due to accidents, violence, and other external causes;Number of deaths from external causes;Number of deaths due to non-disease-related causes" -Count_Death_Neoplasms,Deaths due to cancer;Number of deaths caused by tumors or abnormal growths;The number of people who died from neoplasms (tumors or abnormal growths);The number of deaths caused by neoplasms (tumors or abnormal growths);The death toll from neoplasms (tumors or abnormal growths) -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of homes where the head of household identifies as American Indian or Alaska Native alone;Number of households with an American Indian or Alaska Native householder;Number of households where the householder identifies as American Indian or Alaska Native alone;Number of homes with an American Indian or Alaska Native householder;Number of homes where the head of household is American Indian or Alaska Native -Count_HousingUnit_HouseholderRaceAsianAlone,Number of homes with an Asian householder;Number of households with an Asian householder;Number of homes with an Asian householder -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,The number of households with a Black or African American householder;Number of homes with Black or African American householders;Number of homes where the head of household identifies as Black or African American;Number of homes with Black or African American householders;Number of homes with a Black or African American householder -Count_HousingUnit_HouseholderRaceHispanicOrLatino,The number of households with a Hispanic or Latino householder;The number of homes with a Hispanic or Latino head of household;The number of residences where the householder is Hispanic or Latino;Number of homes with Hispanic or Latino householders;Number of households with Hispanic or Latino householders -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of households with a Native Hawaiian or Other Pacific Islander householder;Number of households with a Native Hawaiian or Other Pacific Islander householder;Number of households where the head of household identifies as Native Hawaiian or Other Pacific Islander alone;Number of households where the householder identifies as Native Hawaiian or Other Pacific Islander alone;Number of homes with a Native Hawaiian or Other Pacific Islander householder -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone,Number of homes with a householder who identifies as some other race alone;Number of households where the householder identifies as some other race only;Number of homes with a householder who identifies as some other race exclusively;Number of households where the householder identifies as some other race solely;Number of homes with a householder who identifies as some other race and no other race -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,"Homes with a householder who identifies as two or more races;Number of households with multiracial householders;Homes with mixed-race householders;Number of homes where the householder identifies as biracial, multiracial, or multiethnic;Number of homes with multiracial householders" -Count_HousingUnit_HouseholderRaceWhiteAlone,Number of homes where the head of household identifies as white;Number of homes where the head of household identifies as white alone;Number of households where the householder is white alone;Number of homes with a white householder;Number of homes where the householder is white -Count_HousingUnit_OwnerOccupied,Number of homes owned by their occupants;Number of homes that are owned by the people who live in them;Number of homes that are owned by their occupants;Number of homes that are owned by their occupants;Number of homes that people own -Count_HousingUnit_RenterOccupied,Number of homes rented by tenants;Number of homes that are rented;Number of homes occupied by renters;Number of homes rented by tenants;Number of homes occupied by renters -Count_Person_EducationalAttainmentMastersDegree,People with master's degrees;People with a master's degree;Master's degree holders;Master's degree holders;People with a master's degree -Count_Person_EducationalAttainmentNoSchoolingCompleted,People who have not completed schooling;People who have not finished school;People who have not graduated from school;Number of people with no formal education;Percentage of people with no formal education -Count_Person_EducationalAttainmentRegularHighSchoolDiploma,High school diploma holders;People with a high school diploma;People who have a high school diploma;People with a high school diploma;People with a high school diploma -Count_Person_Employed,1 People who are currently employed;Number of people who are currently employed;Number of people who are currently employed;Number of people who are currently employed -Count_Person_InLaborForce, -Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,Percentage of people of working age who are employed or actively looking for work;Labor force participation rate;Labor force participation rate;Labor force participation rate;Labor force participation rate -Count_Person_MarriedAndNotSeparated,Married people who are not separated -Count_Person_NeverMarried,Number of people who have never been married;The number of people who are not married;The number of people who have never been in a marriage;The number of people who are not currently married;The number of people who have never been married -Count_Person_NotAUSCitizen,The number of people who are not US citizens;The number of people who are not US citizens;The number of people who are not US citizens;Number of non-US citizens;The number of non-citizens in the United States -Count_Person_Rural,Population of rural areas;How many people live in rural areas?;Rural population;Rural population;Rural population -Count_Person_Separated,Number of people who are legally married but living apart;Number of people who are legally married but living apart;How many people are married but separated;How many married couples are separated;The number of separated married people -Count_Person_USCitizenBornInTheUnitedStates,Number of US citizens born in the US;Number of people born in the United States who are US citizens;1 Number of people born in the United States who are US citizens;1 Number of people born in the US who are US citizens;Number of people born in the US who are US citizens -Count_Person_USCitizenBornAbroadOfAmericanParents,The number of US citizens born to American parents outside of the United States;Number of US citizens born to American parents outside the United States;Number of US citizens born to American parents outside the US;Number of American citizens born to American parents outside the United States;Number of US citizens born to American parents outside the United States -Count_Person_USCitizenByNaturalization,Number of people who have become US citizens through the process of naturalization;Number of US citizens who became citizens through naturalization;Number of people who have become US citizens by naturalization;How many people have become US citizens through naturalization?;Number of naturalized US citizens -Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,What percentage of children under 4 have severe Cachexia (wasting syndrome)? -Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,What percentage of children under 4 have cachexia?;What percentage of children under 4 have cachexia?;The percentage of children under 4 with cachexia;What percentage of children under the age of 4 have cachexia?;What percentage of children under 4 have cachexia? -Count_Person_Urban,Number of people living in cities;Urban population;Percentage of people living in urban areas;Urbanization rate;Number of people living in cities -Count_Person_Widowed,people who have lost their spouse to death;people who are widowed;people who are no longer married because their spouse has died;people who are living as a widow or widower;people who are bereaved spouses -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,Number of unemployment claims filed in each state;Number of state unemployment insurance claims;Number of unemployment claims filed in the states;Number of people who filed for unemployment benefits in the states;Number of people who filed for unemployment insurance in the states -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,Total number of COVID-19 cases;Total number of COVID-19 cases;Number of people who have been infected with COVID-19;Sum of all COVID-19 cases;Number of COVID-19 cases reported to date -CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,The total number of people who have died from COVID-19;Total number of COVID-19 deaths;Total number of COVID-19 deaths;Total number of COVID-19 deaths;Total number of COVID-19 deaths -GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,The rate at which the GDP is increasing;The rate at which the GDP is increasing;How fast the economy is growing;GDP growth rate;The rate at which the economy is growing -Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,The average amount of money earned by households identifying as American Indian or Alaska Native;The amount of money earned by a typical American Indian or Alaska Native household;The typical income of an American Indian or Alaska Native household;The average amount of money earned by an American Indian or Alaska Native household;The amount of money that most American Indian or Alaska Native households earn -Median_Income_Household_HouseholderRaceAsianAlone,The average amount of money earned by households identifying as Asian;How much money do Asian households make on average?;How much money do Asian households make on average?;The average income of households identifying as Asian;The average amount of money that Asian households make -Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,"The median income of Black or African American households;The amount of money that half of Black or African American households make more than, and the other half make less than;The middle income of Black or African American households;The amount of money that is earned by the typical Black or African American household;The typical income of Black or African American households" -Median_Income_Household_HouseholderRaceHispanicOrLatino,The amount of money that Hispanic or Latino households typically make;The median household income for Hispanics or Latinos;How much money do Hispanic or Latino households make on average?;The average income of Hispanic or Latino households;The amount of money that Hispanic or Latino households typically make -Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,"The average household income of Native Hawaiian or other Pacific Islander people;The amount of money that the typical Native Hawaiian or other Pacific Islander household earns;The median annual household income of Native Hawaiian or other Pacific Islander people;The amount of money that half of Native Hawaiian or other Pacific Islander households earn more than, and half earn less than;The middle value in the distribution of household incomes among Native Hawaiian or other Pacific Islander people" -Median_Income_Household_HouseholderRaceWhiteAlone,The median household income of white Americans;The amount of money that a typical White household makes in a year;The average income of White households;The average amount of money earned by households that identify as White;Household income of White Americans -Median_Income_Person_15OrMoreYears_Female_WithIncome,The median income of women aged 15 and older who have income;The average amount of money that women (15 years or older) with income make;The middle amount of money that women (15 years or older) with income earn;The amount of money that half of women (15 years or older) with income make more than and the other half make less than;The amount of money that is in the middle of the range of incomes for women (15 years or older) with income -Median_Income_Person_15OrMoreYears_Male_WithIncome,The average amount of money that men (15 years or older) make;The median income of men aged 15 and older who have income;The average amount of money that men (15 years or older) make;The median income of men aged 15 and older who have income -Percent_Person_18To64Years_Female_NoHealthInsurance,1 What percentage of women aged 18 to 64 are uninsured?;What percentage of women aged 18 to 64 don't have health insurance?;What percentage of women aged 18 to 64 are uninsured?;The percentage of women without health insurance in the United States;The number of women aged 18 to 64 who do not have health insurance -Percent_Person_18To64Years_Male_NoHealthInsurance,1 What percentage of men aged 18 to 64 do not have health insurance?;What percentage of men aged 18 to 64 are uninsured?;What percentage of men aged 18 to 64 are uninsured?;What percentage of men aged 18 to 64 are uninsured?;What percentage of men ages 18 to 64 are uninsured? -Percent_Person_18To64Years_NoHealthInsurance_BlackOrAfricanAmericanAlone,What percentage of Black or African Americans aged 18 to 64 do not have health insurance?;What percentage of Black or African Americans aged 18 to 64 do not have health insurance?;What percentage of Black or African Americans aged 18 to 64 do not have health insurance?;What percentage of Black or African Americans aged 18 to 64 do not have health insurance?;What percentage of Black or African Americans aged 18 to 64 don't have health insurance? -Percent_Person_18To64Years_NoHealthInsurance_HispanicOrLatino,What percentage of the Hispanic or Latino population aged 18 to 64 is uninsured?;What percentage of Hispanic or Latino people aged 18 to 64 are uninsured?;What percentage of Hispanic or Latino people aged 18 to 64 do not have health insurance?;What percentage of Hispanic or Latino people aged 18 to 64 are uninsured?;What percentage of Hispanics or Latinos aged 18 to 64 do not have health insurance? -Percent_Person_18To64Years_NoHealthInsurance_WhiteAlone,What percentage of the white population aged 18 to 64 is uninsured?;What percentage of the white population aged 18 to 64 is uninsured?;What percentage of the white population aged 18 to 64 is uninsured?;What percentage of white people between the ages of 18 and 64 do not have health insurance?;What percentage of white people between the ages of 18 and 64 do not have health insurance? -Percent_Person_BingeDrinking,What percentage of the population binge drinks?;How many people binge drink;What percentage of the population binge drinks;What is the rate of binge drinking;What is the prevalence of binge drinking -Percent_Person_PhysicalInactivity,The percentage of people who are not physically active;The percentage of people who are not physically active;The percentage of people who are not physically active;The percentage of people who are not physically active;The percentage of people who are not physically active -RetailDrugDistribution_DrugDistribution_Amphetamine,The quantity of amphetamine distributed through retail drug channels;How much amphetamine is distributed through retail drug channels;How much amphetamine is distributed through retail drug channels;The amount of amphetamine distributed through retail drug channels;The amount of amphetamine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Codeine,The amount of codeine distributed through retail drug channels;The amount of codeine distributed through retail drug channels;How much codeine is sold in stores?;The quantity of codeine dispensed through retail pharmacies;1 The quantity of codeine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Hydrocodone,How much hydrocodone is distributed through retail drug channels?;The amount of hydrocodone distributed through retail drug channels;The quantity of hydrocodone sold through retail pharmacies;The volume of hydrocodone dispensed by retail pharmacies;The number of hydrocodone tablets sold through retail pharmacies -RetailDrugDistribution_DrugDistribution_Morphine,Morphine distributed through retail drug channels;The amount of morphine distributed through retail drug channels;The amount of morphine distributed through retail drug channels;Morphine distributed through retail drug channels;How much morphine is distributed through retail drug channels? -RetailDrugDistribution_DrugDistribution_Oxycodone,The amount of oxycodone distributed through retail drug channels;The quantity of oxycodone that is distributed through retail drug channels;The quantity of oxycodone dispensed through retail pharmacies;Number of oxycodone pills sold in the United States;The amount of oxycodone distributed through retail drug channels -Mean_Concentration_AirPollutant_PM2.5,Average concentration of PM25 air pollutant;Average concentration of particulate matter 25;Average PM25 concentration;Average level of particulate matter 25;Average PM25 level -PalmerDroughtSeverityIndex_Atmosphere,Palmer Drought Severity Index;Palmer Drought Index;Palmer Drought Severity Index for the Atmosphere;Palmer Drought Index for the Atmosphere;Palmer Drought Severity Index -Annual_Emissions_GreenhouseGas_NonBiogenic,The amount of non-biogenic greenhouse gases emitted each year;The amount of non-biogenic greenhouse gases emitted each year;The yearly release of non-biogenic greenhouse gases;The amount of non-biogenic greenhouse gases that are released into the atmosphere each year;1 The amount of non-biogenic greenhouse gases emitted each year -AirPollutant_Cancer_Risk,The risk of cancer from air pollutants;The risk of developing cancer from exposure to air pollutants;The risk of cancer from air pollution;1 Air pollution can cause cancer;Air pollution can increase your risk of cancer -Annual_Average_RetailPrice_Electricity,Average annual retail price of electricity;The average price of electricity per year;The average cost of electricity per year;The average annual cost of electricity;The average yearly cost of electricity -Annual_Emissions_Methane_NonBiogenic,Methane emissions from non-biological sources each year;Annual non-biogenic methane emissions;The amount of non-biogenic methane emitted each year;Methane emissions from non-biological sources each year;The amount of non-biogenic methane that is released into the atmosphere each year -Mean_Concentration_AirPollutant_Ozone,Ozone levels in the air;Ozone air pollution levels;Average ozone concentration in the air;Ozone air pollution concentration;Mean ozone concentration -Annual_Emissions_NitrousOxide_NonBiogenic,Annual emissions of nitrous oxide from non-biogenic sources;Annual release of non-biogenic nitrous oxide;The amount of nitrous oxide released into the atmosphere each year that is not from natural sources;How much nitrous oxide is emitted from non-biological sources each year?;The amount of nitrous oxide released into the atmosphere each year -Annual_Emissions_CarbonDioxide_NonBiogenic,Non-biogenic carbon dioxide emissions each year;Annual carbon dioxide emissions from non-biological sources;1 Annual emissions of carbon dioxide from non-biological sources;Annual non-biogenic carbon dioxide emissions;How much carbon dioxide is emitted each year that is not from biological sources? -Mean_Concentration_AirPollutant_DieselPM,Average level of diesel particulate matter in the air;The average amount of diesel particulate matter in the air;Average level of diesel particulate matter in the air;Average level of particulate matter from diesel engines in the air;The average amount of diesel particulate matter in the air -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,Number of hate crimes motivated by gender;Number of gender-based hate crimes;Number of sex-based hate crimes;Number of hate crimes motivated by gender identity;Number of hate crimes motivated by gender -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,Number of hate crimes motivated by race;Number of racially motivated hate crimes;Number of hate crimes motivated by race;Number of racially motivated hate crimes;Number of hate crimes based on race -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,Number of hate crimes motivated by religion;Number of hate crimes motivated by religion;Number of religious hate crimes;Number of crimes motivated by religious hatred;Number of religious-motivated hate crimes -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,How many hate crimes are motivated by ethnicity?;Number of hate crimes motivated by ethnicity;The number of hate crimes motivated by ethnicity;The number of hate crimes motivated by national origin;The number of hate crimes motivated by ancestry -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,Number of hate crimes motivated by sexual orientation;Number of hate crimes against LGBT people;Number of hate crimes against people of sexual minorities;Number of hate crimes against people of diverse sexual orientations;Number of hate crimes against people of non-heterosexual orientations -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,Number of hate crimes motivated by disability status;Number of hate crimes motivated by disability status;The number of hate crimes motivated by disability status;Number of hate crimes motivated by disability status;The number of hate crimes motivated by disability status -Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,The economic output of the accommodation and food services industry;The economic output of the hospitality industry;The GDP of the Accommodation and Food Services Industry;The economic output of the Accommodation and Food Services Industry;The economic output of the accommodation and food services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,The size of the Administrative and Support and Waste Management Services Industry's GDP;The value of the Administrative and Support and Waste Management Services Industry's GDP;The Administrative and Support and Waste Management Services Industry's contribution to GDP;The Administrative and Support and Waste Management Services Industry's share of GDP;The Administrative and Support and Waste Management Services Industry's economic output -Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"The economic output of the agriculture, forestry, fishing, and hunting industries;The economic output of the agriculture, forestry, fishing, and hunting industries;The economic output of the agriculture, forestry, fishing, and hunting industry;The GDP of the Agriculture, Forestry, Fishing and Hunting Industry;The economic output of the agriculture, forestry, fishing, and hunting industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"The total value of goods and services produced by the arts, entertainment, and recreation industry;The economic output of the arts, entertainment, and recreation industry;The economic output of the arts, entertainment, and recreation industry;The economic output of the arts, entertainment, and recreation industry;The economic output of the arts, entertainment, and recreation industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,The GDP of the construction industry;The economic output of the construction industry;The total value of goods and services produced by the construction industry;The total value of goods and services produced by the construction industry;1 The total value of goods and services produced by the construction industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,The economic output of the educational services industry;The economic output of the educational services industry;The economic output of the educational services industry;The economic output of the educational services industry;The total value of goods and services produced by the educational services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,The Finance and Insurance Industry's GDP;The GDP of the financial services industry;The economic output of the financial services industry;The financial services industry's contribution to GDP;The economic output of the finance and insurance industry in the US -Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,The total value of goods and services produced by the health care and social assistance industry;The economic output of the health care and social assistance industry;The economic output of the healthcare and social assistance industry;The total value of goods and services produced by the healthcare and social assistance industry;The contribution of the healthcare and social assistance industry to the US economy -Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,The total value of goods and services produced by the information industry;The economic output of the information industry;The total value of goods and services produced by the information industry;The GDP of the information industry;The economic output of the information industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,The economic output of the Management of Companies and Enterprises Industry;The total economic output of the management of companies and enterprises industry;The economic output of the Management of Companies and Enterprises Industry;The total value of goods and services produced by the management of companies and enterprises industry;The total value of goods and services produced by the management of companies and enterprises industry in a given year -Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"The total value of all goods and services produced by the mining, quarrying, and oil and gas extraction industry in a given year;The total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry in a given year;The economic output of the mining, quarrying, and oil and gas extraction industry;The economic output of the mining, quarrying, and oil and gas extraction industry;The total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue,Other services GDP;GDP of other services;GDP of services excluding public administration;GDP of non-government services;GDP of private services -Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"The total value of goods and services produced by the Professional, Scientific, and Technical Services Industry;The total value of goods and services produced by the professional, scientific, and technical services industry;The total value of goods and services produced by the professional, scientific, and technical services industry in a given year;1 The total value of goods and services produced by the professional, scientific, and technical services industry;The total value of goods and services produced by the professional, scientific, and technical services industry in a given year" -Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,The economic output of the real estate and rental and leasing industry;The total value of goods and services produced by the real estate and rental and leasing industry;The total value of goods and services produced by the real estate and rental and leasing industry in a given year;The total value of goods and services produced by the real estate and rental and leasing industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,The total value of goods and services produced by the utilities industry in a given year;The economic output of the utilities industry;The total value of goods and services produced by the utilities industry;The total value of goods and services produced by the utilities industry;The economic output of the utilities industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,The value of all goods and services sold by wholesalers in a given year;The value of all goods and services produced by the wholesale trade industry in a given year;The GDP of the wholesale trade industry;The total value of all goods and services sold by wholesalers in the United States;The value of all goods and services produced by the wholesale trade industry -Amount_EconomicActivity_GrossDomesticProduction_Nominal, -dc/hlxvn1t8b9bhh,How many farmers and cattle ranchers are there?;How many farmers and cattle ranchers are there?;How many farmers and cattle ranchers are there?;How many farmers and cattle ranchers are there?;The number of farmers and cattle ranchers -Count_Person_EducationalAttainmentDoctorateDegree,Number of people with a PhD;How many people have a PhD?;Number of people with a doctoral degree;How many people have a PhD?;How many people have a PhD? -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,The number of women with a PhD;The number of women with a PhD;Number of PhDs held by women;Number of women with a PhD;Number of female PhD holders -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,1 Number of men with a PhD;Number of males with a PhD;How many men have PhDs?;The number of men with a PhD;Number of male PhD holders -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,"Percentage of people with a bachelor's degree or higher;Proportion of people with a bachelor's degree or higher;Number of people with a bachelor's degree or higher, as a percentage of the total population;Share of people with a bachelor's degree or higher;Number of people with a bachelor's degree or higher, as a proportion of the total population" -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,How many women have a bachelor's degree or higher;What is the number of females with a bachelor's degree or higher;The number of women with a bachelor's degree or higher;What is the percentage of women with a bachelor's degree or higher?;Percentage of females with a bachelor's degree or higher -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,The number of men with a bachelor's degree or higher;The number of men with a bachelor's degree or higher;The number of males with a bachelor's degree or above;The number of male college graduates;The number of males who have graduated from college -Count_Person_EducationalAttainmentBachelorsDegree,Percentage of people with a bachelor's degree;Percentage of people with a bachelor's degree;Share of population with a bachelor's degree;Number of people with a bachelor's degree as a percentage of the total population;Proportion of the population with a bachelor's degree -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,Female bachelor's degree holders;Female bachelor's degree holders;How many women have a bachelor's degree?;The number of women with a bachelor's degree;Number of women with a bachelor's degree -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,The number of men with a bachelor's degree;The number of men with a bachelor's degree;The number of male bachelor's degree holders;The number of men who have a bachelor's degree;The number of men who have graduated from college with a bachelor's degree -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,Percentage of people with a college degree;Percentage of people with an associate's degree;Number of people with a college degree or higher;Number of people with an associate's degree or higher;Number of people with a postsecondary degree -Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,the number of females aged 15-50 with a college degree or associate degree;the number of females aged 15-50 who have a college degree or associate degree;the number of females aged 15-50 who are college-educated;the number of females aged 15-50 who have completed college or an associate degree program -Percent_TreeCanopy,tree canopy cover;tree canopy coverage;percentage of tree cover;percentage of tree canopy -MapFacts/Count_park,How many parks are there?;1 How many parks are there?;How many parks are there;What is the number of parks;What is the total number of parks -MapFacts/Count_hiking_area,Number of hiking spots;How many hiking areas are there?;Number of hiking areas;Number of places to go hiking;Number of hiking trails -Annual_Emissions_GreenhouseGas,Emissions that contribute to global warming -Percent_Student_AsAFractionOf_Count_Teacher ,the student-teacher ratio;the teacher-student ratio;the ratio of teachers to students;student-teacher ratio -Count_Teacher,Educators;School instructors;Professors;Faculty;Educators -dc/c58mvty4nhxdb,Students' average grade on a standardized test;The average achievement of students in a cohort;How well students in a particular group are doing overall;Average student achievement -Count_SolarInstallation,the total number of solar energy systems installed;the total number of solar power systems installed;the total number of solar panels installed;the total number of solar photovoltaic systems installed;the total number of solar PV systems installed -Count_Person_DetailedPrimarySchool,kids in elementary school;grade-schoolers;Kids in elementary school;grade-schoolers;School kids -Count_Person_DetailedMiddleSchool,students in middle school;kids in middle school;Students in middle school;Middle schoolers;Kids in middle school -Count_Person_DetailedHighSchool,High schoolers;Teenagers;teenagers;teenagers;high schoolers -dc/3jr0p7yjw06z9,Casinos;Places to gamble;Casinos;Betting parlors;Gaming dens -dc/5br285q68be6,People who work in the gambling industry;People who work in the gambling industry;People who work in the gambling industry;People who work in the gambling industry;People who work in the gambling industry -Count_VolcanicAshEvent,Volcanic events;Volcanic eruptions;Volcanic activity;Volcanic outbursts;Volcanic phenomena -Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,the rate of child-bearing in the us -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal Percent of Nominal Gross Domestic Production (GDP) Spent on Education, diff --git a/tools/nl/embeddings/data/alternatives/main/palm_batch13k_alternatives.csv b/tools/nl/embeddings/data/alternatives/main/palm_batch13k_alternatives.csv deleted file mode 100644 index 471dc78295..0000000000 --- a/tools/nl/embeddings/data/alternatives/main/palm_batch13k_alternatives.csv +++ /dev/null @@ -1,14189 +0,0 @@ -dcid,Alternatives -AirPollutant_Cancer_Risk,air pollution can increase your risk of cancer;air pollutants can cause cancer;exposure to air pollutants can increase your risk of developing cancer;air pollution is a risk factor for cancer -AirQualityIndex_AirPollutant,air quality index;aqi;air quality measure;air quality rating -AmountFarmInventory_WinterWheatForGrain,the quantity of winter wheat grown for grain;the amount of winter wheat produced for grain;the number of winter wheat grains grown;the volume of winter wheat grown for grain -Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,"what percentage of people aged 15 years or older consume alcohol?;what is the percentage of people aged 15 years or older who drink alcohol?;what proportion of people aged 15 years or older drink alcohol?;what is the number of people aged 15 years or older who drink alcohol, expressed as a percentage of the total population?" -Amount_Consumption_Electricity_PerCapita,what is the per capita electricity consumption?;per capita electricity consumption;electricity use per capita;electricity consumption per capita -Amount_Consumption_Energy_PerCapita,energy use per person;energy consumption per capita;energy use per capita rate;energy use per person rate -Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy,the amount of renewable energy used each year;the yearly consumption of renewable energy;the annual use of renewable energy;the amount of renewable energy used in a year -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,the percentage of government spending on education;the proportion of government spending on education;the share of government spending on education;the amount of government spending on education as a percentage of total government spending -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,the percentage of gdp spent on education;the amount of gdp spent on education;the share of gdp spent on education;the portion of gdp spent on education -Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,the amount of money spent on healthcare per person;the cost of healthcare per person;the average amount of money spent on healthcare per person;the per capita cost of healthcare -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,government spending on the military;the amount of money the government spends on the military;the budget for the military;the cost of the military -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,"military spending as a percentage of government expenditure;the percentage of government spending that goes to the military;the amount of money that the government spends on the military, expressed as a percentage of total government spending;the proportion of government spending that is allocated to the military" -Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government,"the amount of economic activity: expenditure, tertiary education expenditure, government (as a fraction of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a percentage of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a proportion of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a share of the amount of economic activity, expenditure, activity, education expenditure, government)" -Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,the total value of goods and services produced by the accommodation and food services industry;the economic output of the accommodation and food services industry;the contribution of the accommodation and food services industry to the economy;the economic value of the accommodation and food services industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,the economic output of the administrative and support and waste management services industry;the total value of goods and services produced by the administrative and support and waste management services industry;the market value of all final goods and services produced by the administrative and support and waste management services industry within a given time period;the monetary measure of the market value of all final goods and services produced by the administrative and support and waste management services industry within a given time period -Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"the total value of goods and services produced by the agriculture, forestry, fishing, and hunting industry;the economic output of the agriculture, forestry, fishing, and hunting industry;the contribution of the agriculture, forestry, fishing, and hunting industry to the us economy;the gdp of the agriculture, forestry, fishing, and hunting sector" -Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"the economic output of the arts, entertainment, and recreation industry;the total value of goods and services produced by the arts, entertainment, and recreation industry;the size of the arts, entertainment, and recreation industry's economy;the economic contribution of the arts, entertainment, and recreation industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,the total value of goods and services produced by the construction industry;the economic output of the construction industry;the value of the construction industry;the total economic output of the construction industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,the total value of goods and services produced by the educational services industry;the economic output of the educational services industry;the economic value of the educational services industry;the contribution of the educational services industry to the economy -Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,the total value of goods and services produced by the finance and insurance industry;the total economic output of the finance and insurance industry;the size of the finance and insurance industry's economy;the finance and insurance industry's contribution to the overall economy -Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,the economic output of the health care and social assistance industry;the value of goods and services produced by the health care and social assistance industry;the size of the health care and social assistance sector of the economy;the contribution of the health care and social assistance industry to the overall economy -Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,the total value of goods and services produced by the information industry;the economic output of the information industry;the size of the information industry's economy;the value of the information industry's output -Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,the economic output of the management of companies and enterprises industry;the total value of goods and services produced by the management of companies and enterprises industry;the economic performance of the management of companies and enterprises industry;the management of companies and enterprises industry's contribution to the gdp -Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"the total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry;the economic output of the mining, quarrying, and oil and gas extraction industry;the monetary value of the goods and services produced by the mining, quarrying, and oil and gas extraction industry;the gdp of the mining, quarrying, and oil and gas extraction industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue,"gdp of other services, excluding public administration;gdp of non-public administration services;gdp of other non-governmental services;gdp of private services" -Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"the gdp of the professional, scientific, and technical services industry;the economic output of the professional, scientific, and technical services industry;the total value of goods and services produced by the professional, scientific, and technical services industry;the economic contribution of the professional, scientific, and technical services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,the economic output of the real estate and rental and leasing industry;the total value of goods and services produced by the real estate and rental and leasing industry;the amount of money generated by the real estate and rental and leasing industry;the economic activity of the real estate and rental and leasing industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,the economic output of the utilities industry;the total value of goods and services produced by the utilities industry;the size of the utilities industry's economy;the economic value of the utilities industry -Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,the value of all goods and services produced by the wholesale trade industry in a given year;the total economic output of the wholesale trade industry;the amount of money generated by the wholesale trade industry;the economic activity of the wholesale trade industry -Amount_EconomicActivity_GrossDomesticProduction_Nominal,"gdp in current dollars;gdp in nominal terms;gdp in current values;1 the total market value of all final goods and services produced within a country's borders in a specific time period, usually a year" -Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person, -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,"gdp per capita;gdp per capita (nominal);gdp per capita (ppp);gdp per capita, current prices" -Amount_EconomicActivity_GrossDomesticProduction_RealValue, -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,"gross national income (gni) based on purchasing power parity (ppp);gross national income based on purchasing power parity;gross national income per person, purchasing power parity" -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,"gni per capita based on purchasing power parity;gni per capita (ppp);gross national income per capita, ppp;gni per capita, purchasing power parity" -Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue,"gross value added (gva) in agriculture, hunting, forestry, and fishing;the real value of economic activity in agriculture, hunting, forestry, and fishing;the real value of economic activity in the agricultural, hunting, forestry, and fishing sectors;the real value of economic activity in the agricultural, hunting, forestry, and fishing industries" -Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue,"the real value of economic activity: gross value added, construction;the real value of economic activity in the building sector;gross value added (gva) in construction;the amount of economic activity in real terms: gross value added, construction" -Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue,"the amount of economic activity (real value) in manufacturing;the real value of economic activity in manufacturing;the amount of economic activity in manufacturing, in real terms;the real value of manufacturing activity" -Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue,"the real value of economic activity is made up of gross value added, mining, manufacturing, and utilities;the real value of economic activity is measured by gross value added, mining, manufacturing, and utilities;the real value of economic activity is expressed in terms of gross value added, mining, manufacturing, and utilities;the real value of economic activity is calculated using gross value added, mining, manufacturing, and utilities" -Amount_EconomicActivity_GrossValueAdded_ISICOtherActivities_RealValue,"the amount of economic activity in real terms: gross value added, other activities;the real value of economic activity: gross value added, other activities;the amount of economic activity in real terms, including gross value added and other activities;the real value of economic activity, including gross value added and other activities" -Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue,"the amount of economic activity in the transport, storage, and communications sector;the real value of economic activity in the transport, storage, and communications sector;the gross value added of the transport, storage, and communications sector;the economic output of the transport, storage, and communications sector" -Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue,"the real value of economic activity is the sum of the gross value added of the wholesale, retail trade, and restaurant and hotel sectors;the real value of economic activity is the total value of goods and services produced in the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation;the real value of economic activity is the amount of money spent on goods and services produced in the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation;the real value of economic activity is the total output of the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation" -Amount_EconomicActivity_GrossValueAdded_RealValue,gross value added (gva);gross value of output -Amount_Emissions_CarbonDioxide_PerCapita,how much co2 does the average person in a country emit?;what is the average person's co2 footprint?;how much co2 does a country produce per person?;what is the co2 emission rate of a country? -Amount_FarmInventory_BarleyForGrain,barley production in the united states;how much barley is grown in the us;the amount of barley grown in the united states;barley cultivation in the united states -Amount_FarmInventory_CornForSilageOrGreenchop,corn silage or greenchop production;corn silage or greenchop yield;corn silage or greenchop harvested volume;corn silage production -Amount_FarmInventory_Cotton,cotton production;cotton yield;how much cotton is grown;cotton crop size -Amount_FarmInventory_DryEdibleBeans,the number of beans grown;the quantity of beans grown;the amount of beans produced;the volume of beans harvested -Amount_FarmInventory_DurumWheatForGrain,"durum wheat grown for grain;grain grown from durum wheat;wheat grown for durum grain;wheat grown for grain, durum" -Amount_FarmInventory_Forage,amount of forage produced;forage yield;quantity of forage produced;amount of forage grown -Amount_FarmInventory_OatsForGrain,oat production;oat yield;amount of oats grown;oat crop -Amount_FarmInventory_OtherSpringWheatForGrain,the amount of other spring wheat grown for grain;the amount of grain grown from other spring wheat;the amount of other spring wheat grown for use as grain;the amount of other spring wheat grown for the purpose of grain -Amount_FarmInventory_PeanutsForNuts,peanut production;peanut yield;peanut production in the united states;the amount of peanuts grown in the united states -Amount_FarmInventory_Rice,rice production;rice yield;rice harvest;quantity of rice grown -Amount_FarmInventory_SorghumForGrain,the amount of sorghum grown;the quantity of sorghum grown;the number of sorghum plants grown;the total sorghum production -Amount_FarmInventory_SorghumForSilageOrGreenchop,the amount of sorghum grown for silage or greenchop;the amount of sorghum produced for silage or greenchop;how much sorghum is grown for silage or greenchop in the united states?;what is the amount of sorghum grown for silage or greenchop in the united states? -Amount_FarmInventory_SugarbeetsForSugar,how many sugarbeets are grown?;how much sugarbeet production is there?;what is the yield of sugarbeets?;what is the volume of sugarbeet production? -Amount_FarmInventory_SunflowerSeed,sunflower seed yield;amount of sunflower seeds grown -Amount_FarmInventory_UplandCotton,how much upland cotton is grown?;what is the amount of upland cotton grown?;what is the quantity of upland cotton grown?;what is the volume of upland cotton grown? -Amount_FarmInventory_WheatForGrain,wheat production in the us;the amount of wheat grown in the us;the quantity of wheat grown in the us;the volume of wheat grown in the us -Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy,the amount of electricity produced by nuclear power plants;the amount of electricity generated by nuclear power;the amount of electricity produced from nuclear sources;the amount of electricity produced by nuclear energy -Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy,"the amount of electricity produced from oil, gas, or coal sources as a fraction of the total amount of energy produced;the percentage of electricity produced from oil, gas, or coal sources;the proportion of electricity produced from oil, gas, or coal sources;the share of electricity produced from oil, gas, or coal sources" -Amount_Remittance_InwardRemittance,total amount of money remitted to the country from abroad;total amount of money sent home by foreign workers;total amount of money remitted to a country by its citizens living abroad -Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,percentage of gdp from inward remittances;share of gdp from inward remittances;inward remittances as a share of gdp;inward remittances as a percentage of gdp -Amount_Remittance_OutwardRemittance,total amount of money sent home by immigrants;total amount of money sent to foreign countries;total amount of money sent abroad;total amount of money sent overseas -Amount_Stock,the total worth of all the stocks you own;the sum of the market values of all the stocks you own;the total amount of money you would get if you sold all your stocks at the current market price;the total value of your stock portfolio -Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,stock market capitalization as a percentage of gdp;the ratio of stock market capitalization to gdp;the percentage of gdp that is represented by the stock market;the size of the stock market relative to the size of the economy -Amout_FarmInventory_CornForGrain,the amount of corn grown for grain in the united states;the quantity of corn grown for grain in the united states;the volume of corn grown for grain in the united states;the number of bushels of corn grown for grain in the united states -AnnualChange_Stocks_Fuel_AviationGasoline,aviation gasoline inventories;the stock of aviation gasoline;the inventory of aviation gasoline;aviation gasoline inventory -AnnualChange_Stocks_Fuel_BituminousCoal,bituminous coal reserves;bituminous coal holdings;bituminous coal stockpiles;bituminous coal inventories -AnnualChange_Stocks_Fuel_BrownCoal,annual change in brown coal stocks;year-over-year change in brown coal stocks;change in brown coal stocks from last year;brown coal stocks this year compared to last year -AnnualChange_Stocks_Fuel_CokeOvenCoke,coke oven coke stock change over the year;year-over-year change in coke oven coke stock;how coke oven coke stock has changed over the past year;the change in coke oven coke stock from last year to this year -AnnualChange_Stocks_Fuel_CrudeOil,the yearly stockpile of crude oil;the annual stockpile of crude oil;crude oil stockpiles;crude oil holdings -AnnualChange_Stocks_Fuel_DieselOil,annual diesel oil reserves;annual diesel oil holdings;annual diesel oil stockpiles;the yearly stockpile of diesel oil -AnnualChange_Stocks_Fuel_FuelOil,year-over-year change in fuel oil;change in fuel oil from last year;how much did fuel oil change from last year;how much has fuel oil changed in the last year -AnnualChange_Stocks_Fuel_HardCoal,hard coal holdings;hard coal stockpiles;hard coal inventories;coal stockpiles -AnnualChange_Stocks_Fuel_Kerosene,the change in kerosene stocks over the year;the year-over-year change in kerosene stocks;the change in kerosene stocks from last year to this year;the difference between kerosene stocks this year and last year -AnnualChange_Stocks_Fuel_KeroseneJetFuel,the yearly inventory of kerosene jet fuel;the annual stockpile of kerosene jet fuel;the annual inventory of kerosene jet fuel;kerosene jet fuel inventory -AnnualChange_Stocks_Fuel_LiquifiedPetroleumGas,how much liquefied petroleum gas is stockpiled each year?;what is the annual liquefied petroleum gas stockpile?;the yearly amount of liquefied petroleum gas that is stockpiled;the yearly inventory of liquefied petroleum gas -AnnualChange_Stocks_Fuel_Lubricants,annual lubricant stock;yearly lubricant inventory;yearly lubricant stock level;annual lubricants stock -AnnualChange_Stocks_Fuel_MotorGasoline,motor gasoline inventories;the level of motor gasoline stocks;the quantity of motor gasoline in storage;stocks of motor gasoline -AnnualChange_Stocks_Fuel_Naphtha,naphtha holdings;naphtha reserves;naphtha stockpiles;naphtha stocks on hand -AnnualChange_Stocks_Fuel_NaturalGas,the annual stockpile of natural gas;the annual inventory of natural gas;the yearly stockpile of natural gas -AnnualChange_Stocks_Fuel_OtherBituminousCoal,other bituminous coal industry stock changes year-over-year;how much have other bituminous coal industry stocks changed in the past year;what is the year-over-year change in other bituminous coal industry stocks;what is the percentage change in other bituminous coal industry stocks over the past year -AnnualChange_Stocks_Fuel_OtherOilProducts,other oil products stocks;stocks of non-crude oil products;stocks of petroleum products other than crude oil;stocks of refined petroleum products -AnnualChange_Stocks_Fuel_PetroleumCoke,change in petroleum coke stocks;annual change in petroleum coke stocks;year-over-year change in petroleum coke stocks;petroleum coke stocks change from last year -Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion,how much acetaldehyde is emitted from external combustion sources each year?;what is the annual amount of acetaldehyde emitted from external combustion sources?;what is the total amount of acetaldehyde emitted from external combustion sources each year?;how much acetaldehyde is released into the atmosphere from external combustion sources each year? -Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion,"the amount of acetaldehyde emitted from stationary fuel combustion in 2021 was 21;acetaldehyde emissions from stationary fuel combustion were 21 in 2021;in 2021, there were 21 acetaldehyde emissions from stationary fuel combustion;stationary fuel combustion emitted 21 acetaldehyde in 2021" -Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources,the amount of acetaldehyde emitted by mobile sources each year;the annual emissions of acetaldehyde from mobile sources;the amount of acetaldehyde that mobile sources emit each year;how much acetaldehyde is emitted by mobile sources each year? -Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,acetaldehyde emissions from industrial processes in a year (23);the amount of acetaldehyde emitted from industrial processes in a year (23);the annual amount of acetaldehyde emitted from industrial processes (23);the amount of acetaldehyde emitted from industrial processes in one year (23) -Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization,acetaldehyde emissions from solvent utilization (24);the amount of acetaldehyde emitted from solvent utilization (24);acetaldehyde emissions from using solvents (24);the amount of acetaldehyde emitted from using solvents (24) -Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"acetaldehyde emissions from waste disposal, treatment, and recovery in 2026;the amount of acetaldehyde emitted from waste disposal, treatment, and recovery in 2026;the quantity of acetaldehyde released from waste disposal, treatment, and recovery in 2026;the level of acetaldehyde discharged from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources,the amount of acetaldehyde emitted from natural sources each year;the annual amount of acetaldehyde emitted from natural sources;the amount of acetaldehyde that is emitted from natural sources each year;the annual amount of acetaldehyde that is emitted from natural sources -Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources,annual emissions of acetaldehyde from miscellaneous area sources;acetaldehyde emissions from miscellaneous area sources;acetaldehyde emissions from other sources;acetaldehyde emissions from non-point sources -Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines,the amount of acetaldehyde emitted by internal combustion engines each year;the annual emissions of acetaldehyde from internal combustion engines;what is the annual amount of acetaldehyde emitted by internal combustion engines?;what is the annual acetaldehyde emission from internal combustion engines? -Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,the amount of acetaldehyde emitted from industrial processes each year;the annual emissions of acetaldehyde from industrial processes;the amount of acetaldehyde that is released into the atmosphere each year from industrial processes;the amount of acetaldehyde emitted by industrial processes each year -Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation,annual emissions of acetaldehyde from petroleum and solvent evaporation;acetaldehyde emissions from petroleum and solvent evaporation per year;the amount of acetaldehyde emitted from petroleum and solvent evaporation each year;the annual amount of acetaldehyde emitted into the air from petroleum and solvent evaporation -Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal,5 acetaldehyde emissions from waste disposal on an annual basis -Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion,annual emissions of ammonia from external combustion;amount of ammonia emitted annually from external combustion;ammonia emissions from external combustion per year;annual ammonia emissions from external combustion sources -Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion,the amount of ammonia released into the atmosphere from stationary fuel combustion in 2021;the amount of ammonia that was released into the air from stationary fuel combustion in 2021;the amount of ammonia emitted from stationary fuel combustion in 2021 was 21 million metric tons;ammonia emissions from stationary fuel combustion totaled 21 million metric tons in 2021 -Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources,annual emissions of ammonia from mobile sources;ammonia emissions from mobile sources per year;the amount of ammonia emitted from mobile sources each year;ammonia emissions from mobile sources annually -Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,amount of ammonia emitted by industrial processes per year (23);annual emissions of ammonia from industrial processes (23);ammonia emissions from industrial processes per year (23);amount of ammonia emitted from industrial processes in a year (23) -Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization,amount of ammonia emitted annually from solvent utilization;annual amount of ammonia emitted from solvent utilization;amount of ammonia emitted from solvent utilization annually;annual ammonia emissions from solvent utilization -Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport,"the amount of ammonia emitted annually from storage and transport is 25;ammonia emissions from storage and transport total 25 annually;annually, 25 tons of ammonia are emitted from storage and transport;storage and transport are responsible for 25 tons of ammonia emissions annually" -Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery,"ammonia emissions from waste disposal, treatment, and recovery;ammonia emissions from waste treatment;ammonia emissions from waste recovery;ammonia emissions from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources,annual amount of ammonia emissions from natural sources (27);ammonia emissions from natural sources (27) per year;the amount of ammonia emitted from natural sources each year (27);the amount of ammonia that is emitted from natural sources each year (27) -Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources,ammonia emissions from miscellaneous area sources in a given year;the amount of ammonia emitted from miscellaneous area sources in a year;ammonia emissions from miscellaneous area sources;ammonia emissions from other area sources -Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines,how much ammonia do internal combustion engines emit annually?;what is the annual amount of ammonia emitted by internal combustion engines?;what is the annual ammonia emission from internal combustion engines?;how much ammonia is emitted from internal combustion engines each year? -Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,what is the annual ammonia emission from industrial processes?;amount of ammonia emitted from industrial processes each year;annual ammonia emissions from industrial processes;the amount of ammonia released into the atmosphere each year from industrial processes -Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of ammonia, petroleum, and solvent evaporation;the amount of ammonia, petroleum, and solvent evaporation emitted each year;the yearly amount of ammonia, petroleum, and solvent evaporation released into the atmosphere;the annual total of ammonia, petroleum, and solvent evaporation released into the air" -Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal,5 annual amount of ammonia discharged from waste disposal -Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion,annual arsenic emissions from external combustion;annual external combustion arsenic emissions;arsenic emissions from external combustion per year;annual arsenic emissions from external combustion sources -Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion,arsenic emissions from stationary fuel combustion in 2021;the amount of arsenic emitted from stationary fuel combustion in 2021;the amount of arsenic released into the air from stationary fuel combustion in 2021;the amount of arsenic that was released into the atmosphere from stationary fuel combustion in 2021 -Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources,mobile sources emit 22 tons of arsenic annually;arsenic emissions from mobile sources total 22 tons annually;mobile sources are responsible for 22 tons of arsenic emissions annually;22 tons of arsenic are emitted from mobile sources each year -Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,arsenic emissions from industrial processes (23);arsenic released into the environment from industrial processes (23);the amount of arsenic released into the environment from industrial processes (23);the amount of arsenic emitted from industrial processes (23) -Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization,annual emissions of arsenic from solvent utilization;arsenic emissions from solvent utilization per year;arsenic released into the environment from solvent utilization each year;the amount of arsenic released into the environment from solvent utilization in one year -Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of arsenic emitted from waste disposal, treatment, and recovery in a year;the amount of arsenic released into the environment from waste disposal, treatment, and recovery in a year;the amount of arsenic that is released from waste disposal, treatment, and recovery into the environment in a year;the amount of arsenic that is released into the environment from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources,"arsenic emissions from miscellaneous area sources;arsenic emissions from area sources, miscellaneous;arsenic emissions from area sources, not otherwise specified;arsenic emissions from area sources, nes" -Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines,annual arsenic emissions from internal combustion engines;amount of arsenic emitted by internal combustion engines each year;how much arsenic is emitted annually by internal combustion engines?;what is the annual arsenic emission rate from internal combustion engines? -Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,annual arsenic emissions from industrial processes;arsenic emissions from industrial processes in a year;how much arsenic is emitted from industrial processes each year;the amount of arsenic emitted from industrial processes each year -Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of arsenic, petroleum, and solvent evaporation;the amount of arsenic, petroleum, and solvent evaporation emitted each year;the annual amount of arsenic, petroleum, and solvent evaporation released into the environment;the total amount of arsenic, petroleum, and solvent evaporation released into the air, water, and soil each year" -Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses,the amount of asbestos emitted by industrial processes each year;the annual amount of asbestos emitted by industrial processes;the yearly amount of asbestos emitted by industrial processes;the annual emissions of asbestos from industrial processes -Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion,annual amount of benzene emissions from external combustion;annual benzene emissions from external combustion;annual external combustion benzene emissions;benzene emissions from external combustion -Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion,the amount of benzene emitted from stationary fuel combustion in 2021;the amount of benzene emitted from stationary sources from fuel combustion in 2021;the amount of benzene released into the air from stationary sources in 2021 as a result of fuel combustion;the amount of benzene that was released into the atmosphere in 2021 from stationary sources due to fuel combustion -Annual_Amount_Emissions_Benzene_SCC_22_MobileSources,the amount of benzene emitted by mobile sources in one year;the annual amount of benzene emitted by mobile sources;the amount of benzene emitted from mobile sources in a year;the annual amount of benzene emitted from mobile sources -Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,the amount of benzene emitted from industrial processes each year is 23;benzene emissions from industrial processes total 23 each year;industrial processes emit 23 units of benzene each year;benzene emissions from industrial processes are 23 units per year -Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization,annual amount of benzene emissions from solvent use;amount of benzene emitted from solvent use each year;annual benzene emissions from solvent use;benzene emissions from solvent use per year -Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport,benzene emissions from storage and transport in a year: 25;annual benzene emissions from storage and transport: 25;the amount of benzene emitted from storage and transport in a year: 25;the amount of benzene emitted from storage and transport annually: 25 -Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of benzene emissions from waste disposal, treatment, and recovery: 26;benzene emissions from waste disposal, treatment, and recovery: 26;the amount of benzene emitted from waste disposal, treatment, and recovery each year is 26;waste disposal, treatment, and recovery emit 26 units of benzene each year" -Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources,"benzene emissions from miscellaneous area sources;benzene emissions from area sources, miscellaneous;benzene emissions, miscellaneous area sources;emissions of benzene from miscellaneous area sources" -Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines,annual benzene emissions from internal combustion engines;the amount of benzene emitted from internal combustion engines each year;1 amount of benzene emitted annually from internal combustion engines;2 annual benzene emissions from internal combustion engines -Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,1 the amount of benzene emitted by industrial processes each year;2 the annual emissions of benzene from industrial processes;3 the amount of benzene that is released into the air each year from industrial processes;the amount of benzene emitted by industrial processes each year -Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation,"amount of benzene, petroleum, and solvent evaporated annually;annual evaporation of benzene, petroleum, and solvents;annual emissions of benzene, petroleum, and solvents from evaporation;annual benzene, petroleum, and solvent evaporation emissions" -Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion,annual cadmium emissions from external combustion;cadmium emissions from external combustion per year;cadmium emissions from external combustion annually;the amount of cadmium emitted from external combustion each year -Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion,cadmium emissions from stationary fuel combustion in 2021;the amount of cadmium emitted from stationary fuel combustion in 2021;the quantity of cadmium released into the atmosphere from stationary fuel combustion in 2021;the level of cadmium pollution caused by stationary fuel combustion in 2021 -Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources,the amount of cadmium emitted by mobile sources annually is 22;mobile sources emit 22 tons of cadmium annually;cadmium emissions from mobile sources are 22 tons annually;annual cadmium emissions from mobile sources are 22 tons -Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,cadmium emissions from industrial processes (23);the amount of cadmium emitted from industrial processes each year (23);the annual amount of cadmium emitted from industrial processes (23);the amount of cadmium emitted from industrial processes in one year (23) -Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization,amount of cadmium emitted from solvent use in one year (24);annual emissions of cadmium from solvent use (24);amount of cadmium emitted from solvent use each year (24);cadmium emissions from solvent use in one year (24) -Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of cadmium emitted from waste disposal, treatment, and recovery activities in a year is 26;cadmium emissions from waste disposal, treatment, and recovery activities total 26 in a year;the annual amount of cadmium emitted from waste disposal, treatment, and recovery activities is 26;cadmium emissions from waste disposal, treatment, and recovery activities amount to 26 in a year" -Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources,cadmium emissions from miscellaneous area sources (28);cadmium emissions from non-point sources (28);cadmium emissions from other sources (28);cadmium emissions from miscellaneous sources (28) -Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines,the amount of cadmium emitted by internal combustion engines each year;the annual emissions of cadmium from internal combustion engines;annual cadmium emissions from internal combustion engines;annual amount of cadmium emitted by internal combustion engines -Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,the amount of cadmium emitted from industrial processes each year;the annual emissions of cadmium from industrial processes;the amount of cadmium that is released into the environment each year from industrial processes;cadmium emissions from industrial processes -Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation,annual cadmium emissions from petroleum and solvent evaporation;the amount of cadmium emitted annually from petroleum and solvent evaporation;the annual amount of cadmium emitted from petroleum and solvent evaporation;the amount of cadmium emitted from petroleum and solvent evaporation each year -Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal, -Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion,annual carbon dioxide emissions from external combustion;annual external combustion carbon dioxide emissions;carbon dioxide emissions from external combustion per year;external combustion carbon dioxide emissions per year -Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources,how much carbon dioxide is emitted by mobile sources each year?;what is the annual amount of carbon dioxide emitted by mobile sources?;what is the total amount of carbon dioxide emitted by mobile sources each year?;how much carbon dioxide do mobile sources emit each year? -Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources,"carbon dioxide emissions from miscellaneous sources, per year;the amount of carbon dioxide emitted from miscellaneous sources each year;the annual amount of carbon dioxide emitted from miscellaneous sources;the total amount of carbon dioxide emitted from miscellaneous sources in a year" -Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines,how much carbon dioxide is emitted by internal combustion engines each year?;what is the annual carbon dioxide emissions from internal combustion engines?;how much carbon dioxide do internal combustion engines emit each year?;the amount of carbon dioxide emitted by internal combustion engines each year -Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses,carbon dioxide emissions from industrial processes per year;annual industrial carbon dioxide emissions;the amount of carbon dioxide emitted by industrial processes each year;1 the amount of carbon dioxide emitted by industrial processes each year -Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation,the annual amount of carbon dioxide emitted from petroleum and solvent evaporation;the amount of carbon dioxide emitted from petroleum and solvent evaporation each year;the yearly amount of carbon dioxide emitted from petroleum and solvent evaporation;the annual carbon dioxide emissions from petroleum and solvent evaporation -Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal, -Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion,1 how much carbon monoxide is emitted from external combustion sources each year?;2 what is the annual amount of carbon monoxide emitted from external combustion sources?;4 how much carbon monoxide is released into the atmosphere each year from external combustion sources?;5 what is the annual carbon monoxide emissions from external combustion sources? -Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion,carbon monoxide emissions from stationary fuel combustion in 2021;the amount of carbon monoxide emitted from stationary fuel combustion in 2021;the total amount of carbon monoxide emitted from stationary fuel combustion in 2021;the annual amount of carbon monoxide emitted from stationary fuel combustion in 2021 -Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources,1 the amount of carbon monoxide emitted by mobile sources each year is 22 million metric tons;2 mobile sources emit 22 million metric tons of carbon monoxide each year;3 carbon monoxide emissions from mobile sources total 22 million metric tons annually;4 mobile sources are responsible for emitting 22 million metric tons of carbon monoxide each year -Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,the amount of carbon monoxide emitted by industrial processes each year is 23;industrial processes emit 23 units of carbon monoxide each year;carbon monoxide emissions from industrial processes total 23 units per year;industrial processes are responsible for emitting 23 units of carbon monoxide each year -Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization,amount of carbon monoxide emitted annually from solvent utilization;carbon monoxide emissions from solvent utilization annually;solvent utilization (24) annual carbon monoxide emissions;amount of carbon monoxide emitted from solvent utilization (24) annually -Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport,the amount of carbon monoxide emitted annually from storage and transport is 25;carbon monoxide emissions from storage and transport amount to 25 annually;storage and transport are responsible for 25 annual carbon monoxide emissions;annual carbon monoxide emissions from storage and transport are 25 -Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery,the amount of carbon monoxide emitted from waste disposal and treatment in a year;the amount of carbon monoxide emitted from waste disposal and treatment in one year;the amount of carbon monoxide emitted from waste disposal and treatment in a 12-month period;the amount of carbon monoxide emitted from waste disposal and treatment facilities in the united states is 26 million metric tons per year -Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources,the amount of carbon monoxide emitted from natural sources each year is 27 million metric tons;the annual amount of carbon monoxide emitted from natural sources is 27 million metric tons;carbon monoxide emissions from natural sources total 27 million metric tons each year;27 million metric tons of carbon monoxide are emitted from natural sources each year -Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources,carbon monoxide emissions from miscellaneous area sources;carbon monoxide emissions from other sources;carbon monoxide emissions from area sources;carbon monoxide emissions from miscellaneous sources -Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines,the annual carbon monoxide emissions from internal combustion engines;the annual emissions of carbon monoxide from internal combustion engines;how much carbon monoxide is emitted from internal combustion engines each year?;what is the annual amount of carbon monoxide emitted by internal combustion engines? -Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,carbon monoxide emissions from industrial processes;1 the amount of carbon monoxide emitted by industrial processes each year;2 the annual carbon monoxide emissions from industrial processes;3 the amount of carbon monoxide released into the atmosphere each year from industrial processes -Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation,annual carbon monoxide emissions from petroleum and solvent evaporation;annual emissions of carbon monoxide from petroleum and solvent evaporation;the amount of carbon monoxide emitted annually from petroleum and solvent evaporation;the annual amount of carbon monoxide emitted from petroleum and solvent evaporation -Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal,5 annual amount of carbon monoxide released from waste disposal -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia,what is the annual ammonia emission rate from the chemical and allied product manufacturing industry?;what is the annual amount of ammonia emissions from the chemical and allied product manufacturing industry?;the amount of ammonia emitted by chemical and allied product manufacturing each year;the annual ammonia emissions from chemical and allied product manufacturing -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide,the amount of carbon monoxide emitted by chemical and allied product manufacturing each year;the annual carbon monoxide emissions from chemical and allied product manufacturing;the total amount of carbon monoxide emitted by chemical and allied product manufacturing in one year;the annual carbon monoxide output of chemical and allied product manufacturing -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of nitrogen oxides emitted by chemical and allied product manufacturing each year;the annual emissions of nitrogen oxides from chemical and allied product manufacturing;the amount of nitrogen oxides that are emitted into the environment each year by chemical and allied product manufacturing;the yearly amount of nitrogen oxides emitted by chemical and allied product manufacturing -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10,the amount of pm10 emissions from chemical and allied product manufacturing;the amount of pm10 emissions from non-biogenic sources in chemical and allied product manufacturing;the amount of pm10 emitted by chemical and allied product manufacturing;the amount of pm10 emitted from non-biogenic sources in chemical and allied product manufacturing -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5,the amount of pm 25 emissions from chemical and allied product manufacturing in a year;the annual amount of pm 25 emissions from non-biogenic sources in the chemical and allied product manufacturing industry;the annual amount of pm 25 emissions from chemical and allied product manufacturing that are not from biological sources;the annual amount of pm 25 emissions from chemical and allied product manufacturing that are not from living things -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide,annual emissions of sulfur dioxide from chemical and allied product manufacturing;sulfur dioxide emissions from chemical and allied product manufacturing per year;the amount of sulfur dioxide emitted by chemical and allied product manufacturing each year;the annual amount of sulfur dioxide emitted from chemical and allied product manufacturing sources -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound,annual emissions of volatile organic compounds from chemical and allied product manufacturing -Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,annual amount of emissions of chlorane from external combustion;annual emissions of chlorane from external combustion;amount of chlorane emitted from external combustion per year;chlorane emissions from external combustion per year -Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,annual amount of emissions of chlorane from stationary source fuel combustion (21);chlorane emissions from stationary source fuel combustion (21);emissions of chlorane from stationary source fuel combustion (21);chlorane emissions from fuel combustion in stationary sources (21) -Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,how much chlorane is emitted from industrial processes annually?;what is the amount of chlorane emitted from industrial processes annually?;the amount of chlorane emitted from industrial processes each year is 23;chlorane emissions from industrial processes total 23 each year -Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization,annual amount of emissions from chlorane solvent utilization;annual emissions of chlorane solvent utilization;amount of emissions from chlorane solvent utilization per year;chlorane solvent utilization emissions per year -Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of emissions of chlorane from waste disposal, treatment, and recovery;annual amount of chlorane emitted from waste disposal, treatment, and recovery;amount of chlorane emitted annually from waste disposal, treatment, and recovery;amount of chlorane emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,chlorane emissions from miscellaneous area sources;chlorane emissions from other sources;chlorane emissions from area sources (not specified);chlorane emissions from miscellaneous sources -Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,the amount of emissions of chlorane from internal combustion engines per year;the annual amount of chlorane emissions from internal combustion engines;2 the annual amount of chlorane emissions from internal combustion engines;the amount of emissions of chlorane from internal combustion engines each year -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,the amount of chlorane emitted from industrial processes each year;the annual amount of chlorane emitted from industrial processes;the amount of chlorane emitted from industrial processes in a year;the annual emissions of chlorane from industrial processes -Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,"how much chlorane, petroleum and solvent evaporation is emitted each year?;what is the annual amount of chlorane, petroleum and solvent evaporation emissions?;what is the yearly amount of chlorane, petroleum and solvent evaporation emissions?;how much chlorane, petroleum and solvent evaporation is emitted annually?" -Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,annual amount of chlorine emissions from external combustion;annual chlorine emissions from external combustion;amount of chlorine emitted from external combustion each year;chlorine emissions from external combustion per year -Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,annual chlorine emissions from stationary fuel combustion (21);chlorine emissions from stationary fuel combustion (21);the amount of chlorine emitted from stationary fuel combustion (21);emissions of chlorine from stationary fuel combustion (21) -Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources,annual amount of chlorine emissions from mobile sources;annual emissions of chlorine from mobile sources;amount of chlorine emitted from mobile sources each year;chlorine emissions from mobile sources per year -Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,chlorine emissions from industrial processes (23);annual chlorine emissions from industrial processes (23);the amount of chlorine emitted from industrial processes per year (23);the amount of chlorine released into the atmosphere from industrial processes per year (23) -Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of chlorine emissions from waste disposal, treatment, and recovery;annual emissions of chlorine from waste disposal, treatment, and recovery;chlorine emissions from waste disposal, treatment, and recovery per year;the amount of chlorine emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,"annual amount of emissions from chlorine, miscellaneous area sources;chlorine emissions from miscellaneous area sources, annual amount;annual emissions of chlorine from miscellaneous area sources;chlorine emissions from miscellaneous area sources, annual" -Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,1 annual amount of chlorine emissions from internal combustion engines;2 annual emissions of chlorine from internal combustion engines;2 the annual emissions of chlorine from internal combustion engines;the amount of chlorine emitted by internal combustion engines each year -Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,annual emissions of chlorine from industrial processes;the amount of chlorine emitted from industrial processes each year;the annual amount of chlorine released into the environment from industrial processes;annual amount of chlorine emissions from industrial processes -Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of chlorine, petroleum, and solvent evaporation;the amount of chlorine, petroleum, and solvent evaporation emitted each year;the annual total of chlorine, petroleum, and solvent evaporation emissions;the yearly amount of chlorine, petroleum, and solvent evaporation released into the environment" -Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion,annual amount of chloroform emissions from external combustion;annual chloroform emissions from external combustion;amount of chloroform emitted annually from external combustion;chloroform emissions from external combustion per year -Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion,"chloroform emissions from stationary fuel combustion in 2021;the amount of chloroform emitted from stationary fuel combustion in 2021;the amount of chloroform released into the atmosphere from stationary fuel combustion in 2021;chloroform emissions from stationary fuel combustion in 2021, in kilograms" -Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,chloroform emissions from industrial processes (23);industrial processes emit 23 units of chloroform;23 units of chloroform are emitted from industrial processes;industrial processes are responsible for emitting 23 units of chloroform -Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization,annual amount of chloroform emissions from solvent utilization;annual chloroform emissions from solvent utilization;chloroform emissions from solvent utilization per year;chloroform emissions from solvent utilization annually -Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery,"chloroform emissions from waste disposal, treatment, and recovery;amount of chloroform emitted from waste disposal, treatment, and recovery;chloroform emissions from waste management;amount of chloroform emitted from waste management" -Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources,chloroform emissions from miscellaneous area sources;emissions of chloroform from miscellaneous area sources;chloroform emissions from other sources;emissions of chloroform from miscellaneous sources -Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines,the annual emissions of chloroform from internal combustion engines;2 the annual emissions of chloroform from internal combustion engines;what is the annual emission of chloroform from internal combustion engines?;what is the annual chloroform emission from internal combustion engines? -Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,annual chloroform emissions from industrial processes;the annual amount of chloroform emitted by industrial processes -Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation,"annual amount of emissions from chloroform, petroleum, and solvent evaporation;annual emissions of chloroform, petroleum, and solvent evaporation;amount of emissions from chloroform, petroleum, and solvent evaporation per year;emissions from chloroform, petroleum, and solvent evaporation per year" -Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal,5 chloroform emissions from waste disposal annually -Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion,annual emissions of chromium(vi) from external combustion;annual chromium(vi) emissions from external combustion;external combustion emissions of chromium(vi);chromium(vi) emissions from external combustion -Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion,annual emissions of chromium(vi) from stationary fuel combustion;annual amount of chromium(vi) emitted from stationary fuel combustion;amount of chromium(vi) emitted from stationary fuel combustion each year;chromium(vi) emissions from stationary fuel combustion each year -Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources,annual amount of chromium(vi) emissions from mobile sources;annual chromium(vi) emissions from mobile sources;annual emissions of chromium(vi) from mobile sources;mobile sources' annual chromium(vi) emissions -Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,annual emissions of chromium(vi) from industrial processes;amount of chromium(vi) emitted annually from industrial processes;chromium(vi) emissions from industrial processes per year;annual chromium(vi) emissions from industrial processes -Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization,annual chromium(vi) emissions from solvents;annual emissions of chromium(vi) from solvents;annual emissions of chromium(vi) from solvent utilization;annual amount of chromium(6+) solvent utilization -Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of chromium(6+) emissions from waste disposal, treatment, and recovery;annual emissions of chromium(6+) from waste disposal, treatment, and recovery;amount of chromium(6+) emitted annually from waste disposal, treatment, and recovery;amount of chromium(6+) emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources,annual emissions of chromium(6+) from miscellaneous area sources;annual emissions of chromium(6+) from non-point sources;annual emissions of chromium(6+) from miscellaneous sources;annual emissions of chromium(6+) from area sources other than point sources -Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines,annual amount of chromium(vi) emissions from internal combustion engines;annual chromium(vi) emissions from internal combustion engines;chromium(vi) emissions from internal combustion engines per year;chromium(vi) emissions from internal combustion engines on an annual basis -Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,annual amount of chromium(6+) emissions from industrial processes;annual chromium(6+) emissions from industrial processes;amount of chromium(6+) emitted from industrial processes per year;chromium(6+) emissions from industrial processes per year -Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation,the annual amount of chromium(6+) emissions from petroleum and solvent evaporation is 4;chromium(6+) emissions from petroleum and solvent evaporation amount to 4 annually;petroleum and solvent evaporation emit 4 chromium(6+) annually;chromium(6+) is emitted from petroleum and solvent evaporation at an annual rate of 4 -Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion,annual cobalt emissions from external combustion;annual external combustion emissions of cobalt;amount of cobalt emitted from external combustion each year;external combustion emissions of cobalt per year -Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion,what is the annual amount of cobalt emissions from stationary fuel combustion?;how many tons of cobalt are emitted from stationary fuel combustion each year?;cobalt emissions from stationary fuel combustion;cobalt emissions from stationary sources -Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources,mobile sources of cobalt emissions;annual amount of cobalt emissions from mobile sources;cobalt emissions from mobile sources;amount of cobalt emitted by mobile sources each year -Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,cobalt emissions from industrial processes in one year (23);the amount of cobalt emitted from industrial processes in one year (23);the annual amount of cobalt emitted from industrial processes (23);cobalt emissions from industrial processes in a year (23) -Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization,solvent utilization emissions of cobalt;cobalt solvent utilization emissions;emissions from cobalt solvent utilization;annual cobalt solvent utilization emissions -Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery,"cobalt emissions from waste disposal, treatment, and recovery;cobalt emissions from waste treatment and recovery;cobalt emissions from waste disposal;cobalt emissions from waste management" -Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources,cobalt emissions from miscellaneous sources (28);cobalt emissions from other sources (28);cobalt emissions from unknown sources (28);cobalt emissions from unlisted sources (28) -Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines,"the amount of cobalt emitted by internal combustion engines each year;the annual emissions of cobalt from internal combustion engines;here are 2 different ways of saying ""annual amount emissions cobalt, internalcombustionengines"":;1 the amount of cobalt emitted by internal combustion engines each year" -Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,how much cobalt is emitted from industrial processes each year?;what is the annual amount of cobalt emitted from industrial processes?;how much cobalt is released into the environment each year from industrial processes?;what is the annual emission of cobalt from industrial processes? -Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of cobalt, petroleum, and solvent evaporation;the amount of cobalt, petroleum, and solvent evaporation emitted each year;the total amount of cobalt, petroleum, and solvent evaporation emitted in a year;the annual total of cobalt, petroleum, and solvent evaporation emissions" -Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion,amount of cyanide emitted from external combustion annually;annual cyanide emissions from external combustion;cyanide emissions from external combustion per year;cyanide emissions from external combustion on an annual basis -Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion,the amount of cyanide emitted from stationary fuel combustion in 2021;the amount of cyanide released into the air from stationary fuel combustion in 2021;the amount of cyanide that was released into the atmosphere from stationary fuel combustion in 2021;the amount of cyanide that was released into the air in 2021 from stationary fuel combustion -Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,the amount of cyanide emitted from industrial processes each year;the total amount of cyanide released into the environment from industrial processes each year;the annual quantity of cyanide released into the environment from industrial processes;the annual discharge of cyanide into the environment from industrial processes -Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization,cyanide emissions from solvent utilization (24);annual emissions of cyanide from solvent utilization (24);cyanide emissions from solvent utilization in one year (24);annual cyanide emissions from solvent utilization (24) -Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery,"annual emissions of cyanide from waste disposal, treatment, and recovery;annual amount of cyanide emitted from waste disposal, treatment, and recovery;annual cyanide emissions from waste disposal, treatment, and recovery;cyanide emissions from waste disposal, treatment, and recovery per year" -Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources,annual emissions of cyanide from miscellaneous area sources;cyanide emissions from miscellaneous area sources;cyanide emissions from area sources;cyanide emissions from miscellaneous sources -Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines,"the amount of cyanide emitted by internal combustion engines each year;the yearly amount of cyanide emissions from internal combustion engines;sure, here are 2 different ways to phrase the sentence ""annual amount emissions cyanide, internalcombustionengines"":;what is the annual amount of cyanide emissions from internal combustion engines?" -Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,cyanide emissions from industrial processes;annual emissions of cyanide from industrial processes;annual cyanide emissions from industrial processes -Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation,"annual amount of cyanide, petroleum, and solvent evaporation emissions;annual emissions of cyanide, petroleum, and solvents from evaporation;annual emissions of cyanide, petroleum, and solvents from evaporation processes;annual emissions of cyanide, petroleum, and solvents from evaporation sources" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_Ammonia,"annual amount of emissions from epa_fuel combustion other, non biogenic emission source, ammonia;epa_fuel combustion other, non biogenic emission source, ammonia annual emissions;amount of emissions from epa_fuel combustion other, non biogenic emission source, ammonia per year;epa_fuel combustion other, non biogenic emission source, ammonia emissions per year" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_CarbonMonoxide,"the annual amount of carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source;the amount of carbon monoxide emitted from epa_fuel combustion other, non biogenic emission source each year;the yearly total of carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source;the annual carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_OxidesOfNitrogen,"the amount of nox emitted from epa_fuel combustion other, non biogenic emission source in one year;the annual amount of nox emitted from epa_fuel combustion other, non biogenic emission source;the total amount of nox emitted from epa_fuel combustion other, non biogenic emission source in one year;the yearly amount of nox emitted from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM10,"annual amount of emissions from epa_fuel combustion other, non biogenic emission source, pm 10;epa_fuel combustion other, non biogenic emission source, pm 10 annual emissions;annual emissions of epa_fuel combustion other, non biogenic emission source, pm 10;annual epa_fuel combustion other, non biogenic emission source, pm 10 emissions" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM2.5,"how much pm 25 is emitted from epa_fuel combustion other, non biogenic emission source each year;the annual amount of pm 25 emitted from epa_fuel combustion other, non biogenic emission source;the amount of pm 25 emitted from epa_fuel combustion other, non biogenic emission source each year;the annual pm 25 emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_SulfurDioxide,"the amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source each year;the annual amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source;the amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source in a year;the annual sulfur dioxide emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_VolatileOrganicCompound,"how much volatile organic compound (voc) is emitted from epa_fuel combustion other, non biogenic emission source each year;epa_fuel combustion other, non biogenic emission source, volatile organic compound annual emissions;epa_fuel combustion other, non biogenic emission source, volatile organic compound emissions per year;annual epa_fuel combustion other, non biogenic emission source, volatile organic compound emissions" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia,how much ammonia is emitted from epa_miscellaneous emission source and non biogenic emission source each year?;what is the annual amount of ammonia emitted from epa_miscellaneous emission source and non biogenic emission source?;what is the total amount of ammonia emitted from epa_miscellaneous emission source and non biogenic emission source each year?;how much ammonia is emitted from epa_miscellaneous emission source and non biogenic emission source in a year? -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide,"epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual emissions;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual amount of emissions;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual output;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual release" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen,"epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen;annual amount of emissions from epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen;epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen emissions per year;the amount of epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen emitted each year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10,"epa_miscellaneous emission source, non biogenic emission source, pm 10 annual emissions;annual emissions from epa_miscellaneous emission source, non biogenic emission source, pm 10;the amount of epa_miscellaneous emission source, non biogenic emission source, pm 10 emitted annually;the annual amount of epa_miscellaneous emission source, non biogenic emission source, pm 10 emitted" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5,"the amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in a year;the annual emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25;the total amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in one year;the sum of the emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in a year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide,"epa_miscellaneous emission source, non biogenic emission source, sulfur dioxide annual emissions;annual amount of sulfur dioxide emitted by epa_miscellaneous emission source, non biogenic emission source;epa_miscellaneous emission source, non biogenic emission source's annual sulfur dioxide emissions;sulfur dioxide emissions from epa_miscellaneous emission source, non biogenic emission source in a year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound,"the amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year;the annual emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound;the total amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year;the sum of the emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_Ammonia,what is the annual amount of ammonia emitted by epa_other industrial processes?;what is the annual emission of ammonia from epa_other industrial processes?;amount of ammonia emissions from epa_other industrial processes;epa_other industrial processes emissions of ammonia -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"how much carbon monoxide is emitted annually by non-biogenic sources in other industrial processes, according to the epa;how much carbon monoxide is emitted by epa_other industrial processes, non biogenic emission source each year?;what is the annual amount of carbon monoxide emitted by epa_other industrial processes, non biogenic emission source?;what is the yearly amount of carbon monoxide emitted by epa_other industrial processes, non biogenic emission source?" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,"how much of epa_other industrial processes, non biogenic emission source, oxides of nitrogen is emitted annually?;what is the annual amount of epa_other industrial processes, non biogenic emission source, oxides of nitrogen emissions?;what is the annual epa_other industrial processes, non biogenic emission source, oxides of nitrogen emission total?;how many epa_other industrial processes, non biogenic emission source, oxides of nitrogen are emitted each year?" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM10,"the amount of emissions from non-biogenic sources in epa_other industrial processes, pm 10, per year;the annual amount of emissions from epa_other industrial processes, pm 10, that are not biogenic;the amount of emissions from epa_other industrial processes, pm 10, that are not from living things, per year;the annual amount of emissions from epa_other industrial processes, pm 10, that are not from plants or animals" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM2.5,"epa_other industrial processes, non biogenic emission source, pm 25 annual emissions;the amount of epa_other industrial processes, non biogenic emission source, pm 25 emitted each year;the annual epa_other industrial processes, non biogenic emission source, pm 25 output;the epa_other industrial processes, non biogenic emission source, pm 25 emissions per year" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_SulfurDioxide,"the amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source each year;the annual amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source;the amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source in a year;the yearly amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,"epa_other industrial processes, non biogenic emission source, volatile organic compound emissions;annual emissions from epa_other industrial processes, non biogenic emission source, volatile organic compound;the amount of epa_other industrial processes, non biogenic emission source, volatile organic compound emitted each year;the annual epa_other industrial processes, non biogenic emission source, volatile organic compound emission rate" -Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion,annual amount of fluorane emissions from external combustion;annual external combustion emissions of fluorane;fluorane emissions from external combustion per year;external combustion emissions of fluorane per year -Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion,annual amount of emissions from stationary fuel combustion of fluorane;annual emissions of fluorane from stationary fuel combustion;emissions of fluorane from stationary fuel combustion per year;fluorane emissions from stationary fuel combustion per year -Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,amount of fluorane emitted by industrial processes in a year;fluorane emissions from industrial processes in one year;fluorane emissions from industrial processes annually;fluorane emissions from industrial processes (23) -Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization,annual amount of emissions from fluorane solvent utilization;annual emissions of fluorane from solvent utilization;amount of fluorane emitted annually from solvent utilization;annual fluorane emissions from solvent use -Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources,fluorane emissions from miscellaneous area sources;fluorane emissions from area sources;fluorane emissions from other sources;fluorane emissions from miscellaneous sources -Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines,how much fluorine is released into the air each year from internal combustion engines?;2 the annual emissions of fluorine from internal combustion engines;2 annual emissions of fluorane from internal combustion engines -Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,fluorane emissions from industrial processes per year;fluorane emissions from industrial processes;what is the annual fluorine emission from industrial processes?;the amount of fluorane that is released into the atmosphere each year from industrial processes -Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of fluorane, petroleum, and solvent evaporation;the amount of fluorane, petroleum, and solvent evaporation emitted each year;the total amount of fluorane, petroleum, and solvent evaporated each year;the annual total of fluorane, petroleum, and solvent emissions" -Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal,annual fluorane waste disposal;annual fluorane waste -Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion,annual amount of formaldehyde emissions from external combustion;amount of formaldehyde emitted from external combustion annually;formaldehyde emissions from external combustion per year;formaldehyde emissions from external combustion on an annual basis -Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion,formaldehyde emissions from stationary source fuel combustion in 2021;formaldehyde emissions from stationary fuel combustion in 2021;emissions of formaldehyde from stationary fuel combustion in 2021;formaldehyde emissions from stationary combustion of fuels in 2021 -Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources,annual formaldehyde emissions from mobile sources;amount of formaldehyde emitted from mobile sources each year;formaldehyde emissions from mobile sources per year;formaldehyde emissions from mobile sources annually -Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,"formaldehyde emissions from industrial processes (23);formaldehyde emissions from industrial processes, 23;industrial processes that emit formaldehyde (23);formaldehyde emissions from industrial processes, amounting to 23" -Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization,annual amount of formaldehyde emissions from solvent utilization;annual formaldehyde emissions from solvent utilization;formaldehyde emissions from solvent utilization per year;amount of formaldehyde emitted from solvent utilization annually -Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"formaldehyde emissions from waste disposal, treatment, and recovery in 2026;the amount of formaldehyde emitted from waste disposal, treatment, and recovery in 2026;the quantity of formaldehyde released into the air from waste disposal, treatment, and recovery in 2026;the level of formaldehyde pollution from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources,annual amount of formaldehyde emissions from natural sources;amount of formaldehyde emitted from natural sources each year;formaldehyde emissions from natural sources per year;formaldehyde released from natural sources annually -Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources,formaldehyde emissions from miscellaneous area sources;formaldehyde emissions from miscellaneous sources;formaldehyde emissions from area sources;formaldehyde emissions from other sources -Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines,the amount of formaldehyde emitted by internal combustion engines each year;the annual formaldehyde emissions from internal combustion engines;what is the annual amount of formaldehyde emissions from internal combustion engines?;what is the annual amount of formaldehyde emitted by internal combustion engines? -Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,formaldehyde emissions from industrial processes;formaldehyde given off by industrial processes;formaldehyde emitted by industrial processes;1 annual formaldehyde emissions from industrial processes -Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation,"1 the amount of formaldehyde, petroleum, and solvent evaporation that is emitted annually;2 the annual amount of formaldehyde, petroleum, and solvent evaporation emissions;3 formaldehyde, petroleum, and solvent evaporation emissions per year;4 the annual emissions of formaldehyde, petroleum, and solvent evaporation" -Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_Ammonia, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_CarbonMonoxide,the annual amount of carbon monoxide emissions from fuel combustion by electric utilities;the amount of carbon monoxide emitted from fuel combustion by electric utilities each year;the total amount of carbon monoxide emitted from fuel combustion by electric utilities in one year;the annual carbon monoxide emissions from fuel combustion by electric utilities -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of nitrogen oxides emitted from fuel combustion in electric utilities each year;the annual emissions of nitrogen oxides from fuel combustion in electric utilities;the yearly amount of nitrogen oxides emitted from fuel combustion in electric utilities;the annual quantity of nitrogen oxides emitted from fuel combustion in electric utilities -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM10,"the amount of emissions from fuel combustion electric utilities that are not biogenic and are pm 10, per year;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are pm 10;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are particulate matter 10 micrometers or less in diameter;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are particulate matter with an aerodynamic diameter of 10 micrometers or less" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM2.5,"the amount of emissions from fuel combustion by electric utilities, which are not biogenic, and are pm 25, in a year;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are pm 25;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are particulate matter 25;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are fine particulate matter with a diameter of 25 micrometers or less" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_SulfurDioxide,the amount of sulfur dioxide emitted by fuel combustion electric utilities each year;the annual sulfur dioxide emissions from fuel combustion electric utilities;the total amount of sulfur dioxide emitted by fuel combustion electric utilities in one year;the annual sulfur dioxide output of fuel combustion electric utilities -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_VolatileOrganicCompound,"annual emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds;the amount of emissions produced each year by fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds;the total amount of emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds in a year;the annual total of emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia,"annual amount of ammonia emissions from industrial fuel combustion;annual amount of non-biogenic ammonia emissions from industrial fuel combustion;annual amount of ammonia emissions from fuel combustion in industry;annual emissions from fuel combustion in industrial, non-biogenic sources, including ammonia" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide,annual emissions of carbon monoxide from industrial fuel combustion;annual industrial carbon monoxide emissions from fuel combustion;annual non-biogenic carbon monoxide emissions from fuel combustion in industry;annual carbon monoxide emissions from industrial fuel combustion -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of nitrogen oxides emitted from industrial fuel combustion each year;the annual amount of nitrogen oxides emitted from industrial fuel combustion;the annual amount of nitrogen oxides emitted from fuel combustion in industry;the annual amount of nitrogen oxides emitted from fuel combustion in industrial sources -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10,"annual emissions from industrial fuel combustion, excluding biogenic sources, of particulate matter with an aerodynamic diameter of 10 micrometers or less;annual emissions from industrial fuel combustion of particulate matter with an aerodynamic diameter of 10 micrometers or less, excluding biogenic sources;annual emissions from industrial fuel combustion of pm10, excluding biogenic sources;annual emissions of pm10 from industrial fuel combustion, excluding biogenic sources" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5,"annual amount of emissions from fuel combustion in industrial, non-biogenic sources of pm 25;annual emissions from fuel combustion in industrial, non-biogenic sources of particulate matter 25;annual emissions of particulate matter 25 from fuel combustion in industrial, non-biogenic sources;annual emissions of particulate matter 25 from industrial, non-biogenic sources of fuel combustion" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide,annual sulfur dioxide emissions from industrial fuel combustion;sulfur dioxide emissions from industrial fuel combustion per year;the amount of sulfur dioxide emitted from industrial fuel combustion each year;the annual amount of sulfur dioxide emitted from industrial fuel combustion sources -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound,"annual emissions of volatile organic compounds from fuel combustion in industrial sources;annual emissions from fuel combustion in industrial non-biogenic sources of volatile organic compounds;annual emissions of volatile organic compounds from fuel combustion in industrial non-biogenic sources;emissions of volatile organic compounds from fuel combustion in industrial non-biogenic sources, annually" -Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion,annual amount of hexane emissions from external combustion;annual hexane emissions from external combustion;amount of hexane emitted from external combustion each year;hexane emissions from external combustion each year -Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion,amount of hexane emitted from stationary fuel combustion in a year;hexane emissions from stationary fuel combustion in a year;annual hexane emissions from stationary fuel combustion;hexane emissions from stationary fuel combustion per year -Annual_Amount_Emissions_Hexane_SCC_22_MobileSources,annual amount of hexane emissions from mobile sources;annual hexane emissions from mobile sources;hexane emissions from mobile sources per year;mobile sources' annual hexane emissions -Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,the amount of hexane emitted from industrial processes each year is 23;industrial processes emit 23 units of hexane each year;hexane emissions from industrial processes total 23 units per year;the annual amount of hexane emitted from industrial processes is 23 units -Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization,annual amount of emissions from hexane solvent utilization;annual emissions of hexane solvent utilization;amount of emissions from hexane solvent utilization per year;emissions from hexane solvent utilization per year -Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport,annual emissions of hexane from storage and transport: 25;the amount of hexane emitted annually from storage and transport is 25;hexane emissions from storage and transport total 25 annually;storage and transport of hexane result in annual emissions of 25 -Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery,annual amount of hexane emissions from waste disposal and treatment and recovery: 26;hexane emissions from waste disposal and treatment and recovery: 26;the amount of hexane emitted from waste disposal and treatment and recovery each year is 26;the amount of hexane that is emitted from waste disposal and treatment and recovery each year is 26 -Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources,annual amount of emissions of hexane from miscellaneous area sources (28);annual emissions of hexane from miscellaneous area sources (28);amount of hexane emitted from miscellaneous area sources (28) annually;hexane emissions from miscellaneous area sources (28) annually -Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines,how much hexane is emitted from internal combustion engines each year?;what is the annual amount of hexane emitted by internal combustion engines?;what is the yearly amount of hexane emitted by internal combustion engines?;how much hexane is emitted by internal combustion engines annually? -Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,annual emissions of hexane from industrial processes;the amount of hexane emitted from industrial processes each year;the total amount of hexane released into the air from industrial processes each year;hexane emissions from industrial processes per year -Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation,annual emissions of hexane from petroleum and solvent evaporation;the amount of hexane emitted into the atmosphere each year from petroleum and solvent evaporation;the annual amount of hexane that is released into the air from petroleum and solvent evaporation;the amount of hexane that is released into the atmosphere each year from the evaporation of petroleum and solvents -Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_Ammonia,what is the annual amount of ammonia emitted from non-biogenic sources?;what is the annual amount of ammonia released from non-biogenic sources?;what is the annual emission of ammonia from industrial and other processes?;what is the annual emission of ammonia from non-biogenic sources? -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"carbon monoxide emissions from non-biogenic sources;annual carbon monoxide emissions from non-biogenic sources;carbon monoxide emissions from industrial and other processes, not from biological sources;non-biogenic carbon monoxide emissions" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,the annual amount of nitrogen oxides emitted from sources other than living things;the amount of nitrogen oxides released into the air each year from industrial and non-living sources;annual emissions of nitrogen oxides from other processes;annual emissions of nitrogen oxides from non-biological sources -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM10,"the amount of particulate matter 10 micrometers or less in diameter (pm10) released into the air each year from industrial and other processes that are not caused by living things, such as factories and power plants" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM2.5,the amount of emissions from industrial and other processes that are not biogenic and are in the form of pm 25;the amount of emissions from industrial and other processes that are not biogenic and are in the form of fine particulate matter -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_SulfurDioxide,annual emissions of sulfur dioxide from non-biogenic sources;sulfur dioxide emissions from non-biological sources;non-biogenic sulfur dioxide emissions;sulfur dioxide emissions from anthropogenic sources -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,annual emissions of volatile organic compounds;annual amount of emissions from volatile organic compounds -Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion,external combustion lead emissions per year;annual lead emissions from external combustion;lead emissions from external combustion per year;annual lead emissions from external combustion sources -Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion,lead emissions from stationary fuel combustion in 2021;the amount of lead emitted from stationary fuel combustion in 2021;the quantity of lead emitted from stationary fuel combustion in 2021;the level of lead emitted from stationary fuel combustion in 2021 -Annual_Amount_Emissions_Lead_SCC_22_MobileSources,the amount of lead emitted by mobile sources in one year;the annual lead emissions from mobile sources;the amount of lead that is released into the air from mobile sources each year;the yearly amount of lead that is emitted into the atmosphere by mobile sources -Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,lead emissions from industrial processes (23);the amount of lead emitted from industrial processes in a year (23);the annual amount of lead emitted from industrial processes (23);the amount of lead emitted from industrial processes in one year (23) -Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization,annual lead emissions from solvent utilization;lead emissions from solvent utilization per year;the amount of lead emitted from solvent utilization each year;the annual amount of lead emitted from solvent utilization -Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport,annual lead emissions from storage and transport;lead emissions from storage and transport per year;the amount of lead emitted from storage and transport each year;the total amount of lead emitted from storage and transport in a year -Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery,"lead emissions from waste disposal, treatment, and recovery;lead emissions from waste management;lead emissions from waste treatment and disposal;lead emissions from waste recovery" -Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources,lead emissions from miscellaneous area sources;lead emissions from other sources;lead emissions from non-point sources;lead emissions from area sources -Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines,how much lead is emitted by internal combustion engines annually?;what is the annual amount of lead emitted by internal combustion engines?;what is the annual lead emission from internal combustion engines?;how much lead do internal combustion engines emit each year? -Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,the amount of lead emitted by industrial processes each year;the annual amount of lead emitted by industrial processes;the lead emissions from industrial processes each year;lead emissions from industrial processes -Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation,annual lead emissions from petroleum and solvent evaporation;annual amount of lead emitted from petroleum and solvent evaporation;amount of lead emitted from petroleum and solvent evaporation each year;annual lead emissions from petroleum and solvent evaporation into the air -Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal,5 annual lead emissions and waste disposal and management -Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion,how much manganese is emitted from external combustion?;what is the annual amount of manganese emitted from external combustion?;what is the total amount of manganese emitted from external combustion each year?;how much manganese is released into the environment each year from external combustion? -Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion,manganese emissions from stationary fuel combustion in 2021;the amount of manganese emitted from stationary fuel combustion in 2021;the annual amount of manganese emitted from stationary fuel combustion in 2021;emissions of manganese from stationary fuel combustion in 2021 -Annual_Amount_Emissions_Manganese_SCC_22_MobileSources,manganese emissions from mobile sources in a year;the amount of manganese emitted by mobile sources in a year;manganese emissions from mobile sources in a 12-month period;the amount of manganese emitted by mobile sources in a 12-month period -Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,manganese emissions from industrial processes (23);annual manganese emissions from industrial processes (23);the amount of manganese emitted from industrial processes in a year (23);the annual amount of manganese emitted from industrial processes (23) -Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization,annual emissions of manganese solvent utilization;manganese solvent utilization annual emissions;the amount of manganese solvent utilization emitted annually;manganese solvent utilization emissions per year -Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery,"manganese emissions from waste disposal, treatment, and recovery in 2026;the amount of manganese emitted from waste disposal, treatment, and recovery in 2026;the total amount of manganese emitted from waste disposal, treatment, and recovery in 2026;the annual amount of manganese emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources,manganese emissions from miscellaneous area sources in 2020;manganese emissions from non-point sources in 2020;manganese emissions from area sources in 2020;manganese emissions from sources other than point sources in 2020 -Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines,the amount of manganese emitted by internal combustion engines each year;the annual emissions of manganese from internal combustion engines;the amount of manganese emitted from internal combustion engines each year;how much manganese is emitted from internal combustion engines each year? -Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,annual emissions of manganese from industrial processes;the amount of manganese that is released into the environment each year from industrial processes -Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation,2 the amount of manganese emitted from petroleum and solvent evaporation each year;3 the annual amount of manganese released into the air from petroleum and solvent evaporation;4 the annual amount of manganese that is released into the atmosphere from petroleum and solvent evaporation;how much manganese is emitted from petroleum and solvent evaporation each year? -Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion,"annual amount of mercury emissions from external combustion;annual mercury emissions from external combustion;amount of mercury emitted from external combustion each year;mercury emissions from external combustion, per year" -Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion,the amount of mercury emitted from stationary sources from fuel combustion in 2021;annual mercury emissions from stationary fuel combustion;annual mercury emissions from stationary sources;mercury emissions from stationary fuel combustion -Annual_Amount_Emissions_Mercury_SCC_22_MobileSources,annual amount of mercury emissions from mobile sources (22);the amount of mercury emitted annually from mobile sources (22);the annual amount of mercury emitted by mobile sources (22);the amount of mercury emitted from mobile sources each year (22) -Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,the amount of mercury emitted from industrial processes each year is 23 metric tons;industrial processes emit 23 metric tons of mercury each year;the annual amount of mercury emitted from industrial processes is 23 metric tons;mercury emissions from industrial processes amount to 23 metric tons per year -Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization,annual amount of mercury emissions from solvent utilization;annual mercury emissions from solvent utilization;mercury emissions from solvent utilization per year;annual mercury emissions from solvent use -Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport,annual amount of mercury emissions from storage and transport;annual mercury emissions from storage and transport;mercury emissions from storage and transport per year;mercury emissions from storage and transport annually -Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of mercury emitted from waste disposal, treatment, and recovery in a year is 26;mercury emissions from waste disposal, treatment, and recovery total 26 in a year;the annual amount of mercury emitted from waste disposal, treatment, and recovery is 26;in a year, 26 units of mercury are emitted from waste disposal, treatment, and recovery" -Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources,mercury emissions from miscellaneous area sources;mercury emissions from non-point sources;mercury emissions from area sources;mercury emissions from non-point sources other than electric utilities -Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines,how much mercury is emitted from internal combustion engines each year?;what is the annual amount of mercury emitted from internal combustion engines?;how much mercury do internal combustion engines emit each year?;1 how much mercury do internal combustion engines emit annually? -Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,mercury emissions from industrial processes;mercury emissions from industrial activities;mercury released into the environment from industrial processes;the amount of mercury emitted by industrial processes each year -Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation,1 annual mercury emissions from petroleum and solvent evaporation;2 the amount of mercury emitted into the air each year from petroleum and solvent evaporation;3 the annual release of mercury into the atmosphere from petroleum and solvent evaporation;4 the annual amount of mercury that is released into the air from petroleum and solvent evaporation -Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal,annual mercury emissions from waste -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia,"the annual amount of emissions from metals processing, non-biogenic emission sources, and ammonia;the amount of emissions from metals processing, non-biogenic emission sources, and ammonia each year;the total amount of emissions from metals processing, non-biogenic emission sources, and ammonia over the course of a year;the annual rate of emissions from metals processing, non-biogenic emission sources, and ammonia" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide,annual emissions of metals processing;annual emissions of carbon monoxide from metals processing;how much carbon monoxide is emitted from metals processing each year?;what is the annual amount of carbon monoxide emissions from metals processing? -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen,how much metal processing emits nitrogen oxides each year;the annual emissions of nitrogen oxides from metal processing;how much metal processing produces non-biogenic emissions of oxides of nitrogen each year?;what is the annual amount of non-biogenic emissions of oxides of nitrogen from metal processing? -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10,how much metal processing produces pm 10 emissions each year?;how much pm 10 comes from metal processing each year?;what is the annual amount of pm 10 emissions from metal processing?;what is the annual pm 10 emission rate from metal processing? -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5,"the amount of emissions from metals processing, non-biogenic emission sources, and pm 25 each year;the annual amount of emissions from metals processing, non-biogenic emission sources, and pm 25;the total amount of emissions from metals processing, non-biogenic emission sources, and pm 25 each year;the total annual amount of emissions from metals processing, non-biogenic emission sources, and pm 25" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide,annual emissions of sulfur dioxide from non-biogenic sources in the metals processing industry;the amount of sulfur dioxide emitted from metals processing each year;the annual sulfur dioxide emissions from non-biogenic sources in the metals processing industry;the annual amount of sulfur dioxide released into the atmosphere from metals processing -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound,"how much metal processing, non-biogenic emission source, and volatile organic compound emissions are there each year?;what is the annual amount of metal processing, non-biogenic emission source, and volatile organic compound emissions?;what is the total amount of metal processing, non-biogenic emission source, and volatile organic compound emissions each year?;how much metal processing, non-biogenic emission source, and volatile organic compound are emitted each year?" -Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion,annual methane emissions from external combustion;methane emissions from external combustion per year;how much methane is emitted from external combustion each year;methane emissions from external combustion on an annual basis -Annual_Amount_Emissions_Methane_SCC_22_MobileSources,annual methane emissions from mobile sources;the amount of methane emitted by mobile sources each year;the amount of methane emitted by mobile sources in a year;the amount of methane emitted by mobile sources annually -Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources,"methane emissions from miscellaneous area sources;methane emissions from miscellaneous sources;methane emissions from area sources;methane emissions from area sources, miscellaneous" -Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines,1 the amount of methane emitted by internal combustion engines each year;2 the annual methane emissions from internal combustion engines;how much methane is emitted from internal combustion engines each year?;what is the annual amount of methane emissions from internal combustion engines? -Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses,methane emissions from industrial processes;methane emissions from industrial activities;methane emissions from industrial sources;methane released by industrial processes -Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation,"how much methane, petroleum, and solvent is emitted each year?;how much methane, petroleum, and solvent is released into the atmosphere each year?;what is the annual release of methane, petroleum, and solvent into the atmosphere?;annual emissions of methane from petroleum and solvent evaporation" -Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion,annual methanol emissions from external combustion;annual emissions of methanol from external combustion;methanol emissions from external combustion per year;methanol emissions from external combustion annually -Annual_Amount_Emissions_Methanol_SCC_22_MobileSources,methanol emissions from mobile sources (22) per year;methanol emissions from mobile sources (22) annually;the amount of methanol emitted from mobile sources (22) per year;the amount of methanol emitted from mobile sources (22) annually -Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,the amount of methanol released into the atmosphere from industrial processes in 2023;the amount of methanol released into the air from industrial processes in 2023;methanol emissions from industrial processes (23);methanol emissions from industrial processes: 23 -Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization,methanol solvent utilization emissions per year (24);methanol emissions from solvent utilization per year (24);annual emissions of methanol from solvent utilization (24);methanol solvent utilization emissions (24) -Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery,"methanol emissions from waste disposal, treatment, and recovery in 2026;the amount of methanol emitted from waste disposal, treatment, and recovery in 2026;the quantity of methanol emitted from waste disposal, treatment, and recovery in 2026;the level of methanol emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources,methanol emissions from natural sources in a year: 27;the amount of methanol emitted from natural sources in a year is 27;methanol emissions from natural sources amount to 27 in a year;methanol emissions from natural sources are 27 in a year -Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources,methanol emissions from miscellaneous area sources (28);methanol emissions from other sources (28);methanol emissions from area sources (28);methanol emissions from non-industrial sources (28) -Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines,methanol emissions from internal combustion engines per year;annual methanol emissions from internal combustion engines;1 methanol emissions from internal combustion engines per year;2 annual emissions of methanol from internal combustion engines -Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,methanol emissions from industrial processes;methanol emissions from industrial processes in a year;annual emissions of methanol from industrial processes;methanol emissions from industrial processes per year -Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation,"how much methanol, petroleum, and solvent evaporate each year?;what is the annual amount of methanol, petroleum, and solvent evaporation?;what is the annual emission of methanol, petroleum, and solvent evaporation?;how much methanol, petroleum, and solvent evaporate annually?" -Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion,annual amount of naphthalene emissions from external combustion;annual naphthalene emissions from external combustion;amount of naphthalene emitted annually from external combustion;naphthalene emissions from external combustion per year -Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion,annual amount of naphthalene emissions from stationary sources from fuel combustion (21);amount of naphthalene emitted from stationary sources from fuel combustion (21);naphthalene emissions from stationary sources from fuel combustion (21);naphthalene emitted from stationary sources from fuel combustion (21) -Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources,annual amount of naphthalene emissions from mobile sources;annual naphthalene emissions from mobile sources;naphthalene emissions from mobile sources per year;naphthalene emissions from mobile sources annually -Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,naphthalene emissions from industrial processes in a year (23);the amount of naphthalene emitted from industrial processes in a year (23);the annual amount of naphthalene emitted from industrial processes (23);the amount of naphthalene emitted from industrial processes in one year (23) -Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization,annual amount of naphthalene emissions from solvent utilization (24);annual naphthalene emissions from solvent utilization (24);annual emissions of naphthalene from solvent utilization (24);annual naphthalene emissions from solvent use (24) -Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport,"the amount of naphthalene emitted annually from storage and transport is 25;naphthalene emissions from storage and transport are 25 annually;annually, 25 naphthalene emissions come from storage and transport;storage and transport are responsible for 25 naphthalene emissions annually" -Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of naphthalene emitted from waste disposal, treatment, and recovery activities was 26;naphthalene emissions from waste disposal, treatment, and recovery activities totaled 26;waste disposal, treatment, and recovery activities emitted 26 units of naphthalene;naphthalene was emitted at a rate of 26 units per year from waste disposal, treatment, and recovery activities" -Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources,annual amount of naphthalene emissions from miscellaneous area sources;annual naphthalene emissions from miscellaneous area sources;naphthalene emissions from miscellaneous area sources per year;naphthalene emissions from miscellaneous area sources annually -Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines,"what is the annual emission of naphthalene from internal combustion engines?;how much naphthalene is released into the atmosphere from internal combustion engines each year?;here are 2 different phrasings of ""annual amount emissions naphthalene, internalcombustionengines"":;the amount of naphthalene emitted by internal combustion engines each year" -Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,1 the amount of naphthalene emitted from industrial processes each year;2 the annual emissions of naphthalene from industrial processes;3 the amount of naphthalene that is released into the environment each year from industrial processes;annual naphthalene emissions from industrial processes -Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of naphthalene, petroleum, and solvent evaporation;the amount of naphthalene, petroleum, and solvent evaporation emitted each year;1 the annual amount of emissions from naphthalene, petroleum, and solvent evaporation;2 the amount of naphthalene, petroleum, and solvent evaporation that is emitted each year" -Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal,5 the annual amount of naphthalene that is released into the air from waste disposal -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_Ammonia, -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide,the amount of carbon monoxide emitted from natural resources and biogenic emission sources each year;the annual amount of carbon monoxide emitted from natural resources and biogenic sources;the amount of carbon monoxide emitted from natural resources and biogenic sources in a year;the annual carbon monoxide emissions from natural resources and biogenic sources -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen,"the annual amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen;the amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen each year;the annual total of emissions from natural resources, biogenic emission sources, and oxides of nitrogen;the total amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen in a year" -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound,"the amount of emissions from natural resources, biogenic emission sources, and volatile organic compounds each year;the annual emissions of natural resources, biogenic emission sources, and volatile organic compounds;the total amount of emissions from natural resources, biogenic emission sources, and volatile organic compounds each year;the sum of the emissions from natural resources, biogenic emission sources, and volatile organic compounds each year" -Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion,annual nickel emissions from external combustion;annual external combustion emissions of nickel;nickel emissions from external combustion per year;nickel emissions from external combustion annually -Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion,annual nickel emissions from stationary sources;nickel emissions from stationary fuel combustion in 2021;the amount of nickel emitted from stationary fuel combustion in 2021;the amount of nickel emitted in 2021 from stationary fuel combustion -Annual_Amount_Emissions_Nickel_SCC_22_MobileSources,annual nickel emissions from mobile sources;how much nickel is emitted from mobile sources each year?;what is the annual amount of nickel emitted from mobile sources?;what is the amount of nickel emitted from mobile sources each year? -Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,"23 tonnes of nickel emitted from industrial processes annually;23 metric tons of nickel emitted from industrial processes annually;23,000 kilograms of nickel emitted from industrial processes annually;23 million grams of nickel emitted from industrial processes annually" -Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization,amount of nickel emitted from solvent utilization in a year (24);annual emissions of nickel from solvent utilization (24);nickel emissions from solvent utilization in a year (24);annual nickel emissions from solvent utilization (24) -Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery,"nickel emissions from waste disposal, treatment, and recovery;nickel emissions from waste management;nickel emissions from waste treatment;nickel emissions from waste recovery" -Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources,nickel emissions from miscellaneous sources in 2028;nickel emissions from other sources in 2028;nickel emissions from non-point sources in 2028;nickel emissions from unknown sources in 2028 -Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines,the amount of nickel emitted by internal combustion engines each year;the annual amount of nickel emissions from internal combustion engines;the annual emissions of nickel from internal combustion engines;what is the annual nickel emission from internal combustion engines? -Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,the amount of nickel emitted from industrial processes each year;the annual amount of nickel emitted from industrial processes;the amount of nickel emitted from industrial processes in a year;what is the annual nickel emission from industrial processes? -Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation,"the amount of nickel, petroleum, and solvent evaporated each year;the total amount of nickel, petroleum, and solvent that evaporate each year;the annual total of nickel, petroleum, and solvent evaporation;annual emissions of nickel from petroleum and solvent evaporation" -Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal, -Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion,annual amount of nitrous oxide emissions from external combustion;annual nitrous oxide emissions from external combustion;amount of nitrous oxide emitted from external combustion per year;external combustion nitrous oxide emissions per year -Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources,the amount of nitrous oxide emitted by mobile sources each year is 22 million metric tons;mobile sources emit 22 million metric tons of nitrous oxide each year;22 million metric tons of nitrous oxide are emitted by mobile sources each year;mobile sources are responsible for the emission of 22 million metric tons of nitrous oxide each year -Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines,how many tons of nitrous oxide do internal combustion engines emit each year?;2 the annual emissions of nitrous oxide from internal combustion engines;what is the annual nitrous oxide emissions from internal combustion engines?;how much nitrous oxide do internal combustion engines emit annually? -Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses,the amount of nitrous oxide emitted by industrial processes each year;the amount of nitrous oxide that is emitted from industrial processes each year;the annual amount of nitrous oxide that is emitted from industrial processes;the amount of nitrous oxide emitted from industrial processes each year -Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation,annual nitrous oxide emissions from petroleum and solvent evaporation;annual emissions of nitrous oxide from petroleum and solvent evaporation;the amount of nitrous oxide emitted annually from petroleum and solvent evaporation;the annual amount of nitrous oxide emitted from petroleum and solvent evaporation -Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal,what is the annual release of nitrous oxide from waste disposal? -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,"amount of ammonia emitted by non-road engines and vehicles each year;annual emissions of ammonia from non-road engines and vehicles;total ammonia emissions from non-road engines and vehicles each year;annual ammonia emissions from non-road engines and vehicles, non-biogenic sources" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide,the amount of carbon monoxide emitted by non-road engines and vehicles each year;the annual carbon monoxide emissions from non-road engines and vehicles;the annual carbon monoxide output from non-road engines and vehicles;the annual carbon monoxide contribution from non-road engines and vehicles -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of nitrogen oxides emitted by non-road engines and vehicles each year;the annual emissions of nitrogen oxides from non-road engines and vehicles;the total amount of nitrogen oxides emitted by non-road engines and vehicles in a year;the annual total of nitrogen oxides emitted by non-road engines and vehicles -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10,how much pm 10 is emitted by non-road engines and vehicles each year?;what is the annual amount of pm 10 emissions from non-road engines and vehicles?;what is the total amount of pm 10 emitted by non-road engines and vehicles each year?;how much pm 10 is released into the air each year from non-road engines and vehicles? -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5,"annual amount of emissions: non road engines and vehicles, non biogenic emission source, pm 25" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide,how much sulfur dioxide is emitted by non-road engines and vehicles each year?;what is the annual amount of sulfur dioxide emissions from non-road engines and vehicles?;how much sulfur dioxide do non-road engines and vehicles emit each year?;what is the annual sulfur dioxide emission rate from non-road engines and vehicles? -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,"what is the annual amount of emissions from non-road engines and vehicles, non-biogenic sources, and volatile organic compounds?;what is the total amount of pollution caused by non-road engines and vehicles, non-biogenic sources, and volatile organic compounds?;annual emissions from non-road engines and vehicles, non-biogenic emission sources, and volatile organic compounds;the amount of emissions produced annually by non-road engines and vehicles, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia,"annual amount of emissions: on road vehicles, non biogenic emission source, ammonia;ammonia emissions from on-road vehicles;how much ammonia is emitted from non-biogenic sources by on-road vehicles each year?;what is the annual amount of ammonia emitted from non-biogenic sources by on-road vehicles?" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide,annual emissions of carbon monoxide from non-biogenic sources from on-road vehicles;carbon monoxide emissions from non-biogenic sources from on-road vehicles per year;the amount of carbon monoxide emitted from non-biogenic sources from on-road vehicles each year;the annual amount of carbon monoxide emitted from non-biogenic sources from on-road vehicles -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,how much nitrogen oxide is emitted annually by on-road vehicles?;what is the annual amount of nitrogen oxide emissions from on-road vehicles?;what is the annual emission rate of nitrogen oxide from on-road vehicles?;how much nitrogen oxide is emitted from on-road vehicles each year? -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,the amount of pm 10 (particulate matter) emitted by road vehicles each year;annual pm 10 emissions from non-biogenic sources on road vehicles;annual emissions of pm 10 from non-biogenic sources on roads;annual pm 10 emissions from non-biogenic sources in road transportation -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,"annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to pm 25 pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to particulate matter pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to fine particulate matter pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to pm 25 air pollution" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide,sulfur dioxide emissions from on-road vehicles in a given year;the amount of sulfur dioxide emitted by on-road vehicles each year;the total annual emissions of sulfur dioxide from on-road vehicles;the annual amount of sulfur dioxide released into the atmosphere by on-road vehicles -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,annual emissions of volatile organic compounds from on-road vehicles -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion,annual emissions of oxides of nitrogen from external combustion;annual amount of oxides of nitrogen emitted from external combustion;annual emissions of nitrogen oxides from external combustion;annual amount of emissions of oxides of nitrogen from external combustion -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion,the amount of nitrogen oxides released into the atmosphere from stationary fuel combustion in 2021;the amount of nitrogen oxides that were released into the air from stationary fuel combustion in 2021;the quantity of nitrogen oxides released from stationary fuel combustion in 2021;the total amount of nitrogen oxides released from stationary fuel combustion in 2021 -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,the amount of nitrogen oxides emitted by mobile sources in a year;the annual amount of nitrogen oxides emitted by mobile sources;the amount of nitrogen oxides emitted by mobile sources in one year;the annual emissions of nitrogen oxides from mobile sources -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,industrial processes emit 23 tons of nitrogen oxides annually;23 tons of nitrogen oxides are emitted from industrial processes each year;the annual amount of nitrogen oxides emitted from industrial processes is 23 tons;industrial processes are responsible for emitting 23 tons of nitrogen oxides each year -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,annual amount of oxides of nitrogen emitted from solvent utilization;annual emissions of nitrogen oxides from solvent processing;annual emissions of nitrogen oxides from solvent treatment;annual amount of oxides of nitrogen emitted from solvent use -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,"the total amount of oxides of nitrogen emitted from storage and transport in one year;the annual amount of oxides of nitrogen emitted from storage and transport, as measured in 25 units;annual emissions of oxides of nitrogen from storage and transport, 25;oxides of nitrogen emissions from storage and transport per year" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in one year;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in a year;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in 12 months;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in 365 days" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources,the amount of nitrogen oxides emitted from natural sources each year is 27;the annual amount of nitrogen oxides emitted from natural sources is 27;the amount of nitrogen oxides emitted from natural sources in one year is 27;the annual emission of nitrogen oxides from natural sources is 27 -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources,the amount of nitrogen oxides emitted from miscellaneous area sources in one year;the amount of nitrogen oxides emitted from area sources in one year;the amount of nitrogen oxides emitted from non-point and miscellaneous area sources in one year;the amount of nitrogen oxides emitted from miscellaneous area sources in a year -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines,how much nitrogen oxide is emitted annually by internal combustion engines?;how much nitrogen oxide is released into the atmosphere each year by internal combustion engines?;what is the annual discharge of nitrogen oxide from internal combustion engines?;what is the annual output of nitrogen oxides from internal combustion engines? -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,the annual output of oxides of nitrogen from industrial processes -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation,annual emissions of oxides of nitrogen and petroleum and solvent evaporation;the amount of oxides of nitrogen and petroleum and solvent evaporation emitted each year;the annual total of oxides of nitrogen and petroleum and solvent evaporation emissions;the annual amount of oxides of nitrogen and petroleum and solvent evaporation that are released into the air -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion,annual amount of oxo(oxochromiooxy)chromium emissions from external combustion;annual oxo(oxochromiooxy)chromium emissions from external combustion;amount of oxo(oxochromiooxy)chromium emitted from external combustion per year;oxo(oxochromiooxy)chromium emissions from external combustion per year -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion,annual amount of oxo(oxochromiooxy)chromium emissions from stationary fuel combustion;annual oxo(oxochromiooxy)chromium emissions from stationary fuel combustion;annual emissions of oxo(oxochromiooxy)chromium from stationary fuel combustion;amount of oxo(oxochromiooxy)chromium emitted from stationary fuel combustion annually -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources,annual amount of oxo(oxochromiooxy)chromium emissions from mobile sources;annual oxo(oxochromiooxy)chromium emissions from mobile sources;amount of oxo(oxochromiooxy)chromium emitted annually from mobile sources;mobile sources' annual oxo(oxochromiooxy)chromium emissions -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,the amount of oxo(oxochromiooxy)chromium emitted from industrial processes each year;the annual amount of oxo(oxochromiooxy)chromium emitted from industrial processes;the amount of oxo(oxochromiooxy)chromium emitted from industrial processes in a year;the annual emission of oxo(oxochromiooxy)chromium from industrial processes -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization,annual amount of oxo(oxochromiooxy)chromium emissions from solvent utilization;amount of oxo(oxochromiooxy)chromium emitted annually from solvent utilization;annual oxo(oxochromiooxy)chromium emissions from solvent utilization;amount of oxo(oxochromiooxy)chromium emitted from solvent utilization annually -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of emissions of oxo(oxochromiooxy)chromium from waste disposal, treatment, and recovery;amount of oxo(oxochromiooxy)chromium emitted annually from waste disposal, treatment, and recovery;annual emissions of oxo(oxochromiooxy)chromium from waste disposal, treatment, and recovery;amount of oxo(oxochromiooxy)chromium emitted from waste disposal, treatment, and recovery annually" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources,annual emissions of oxo(oxochromiooxy)chromium from miscellaneous area sources;amount of oxo(oxochromiooxy)chromium emitted annually from miscellaneous area sources;emissions of oxo(oxochromiooxy)chromium from miscellaneous area sources per year;annual oxo(oxochromiooxy)chromium emissions from miscellaneous area sources -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines,the annual amount of oxo(oxochromiooxy)chromium emitted by internal combustion engines;the amount of oxo(oxochromiooxy)chromium emitted by internal combustion engines in a year;the annual emissions of oxo(oxochromiooxy)chromium from internal combustion engines;2 the annual emissions of oxo(oxochromiooxy)chromium from internal combustion engines -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,the annual quantity of oxo(oxochromiooxy)chromium released into the environment from industrial processes -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation,the amount of oxo(oxochromiooxy)chromium emitted annually from petroleum and solvent evaporation;the annual amount of oxo(oxochromiooxy)chromium emitted from petroleum and solvent evaporation;the amount of oxo(oxochromiooxy)chromium emitted from petroleum and solvent evaporation each year;the annual emissions of oxo(oxochromiooxy)chromium from petroleum and solvent evaporation -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal,5 the amount of oxo(oxochromiooxy)chromium that is released into the environment from waste disposal each year;5 oxo(oxochromiooxy)chromium emissions from waste disposal per annum -Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion,how much pm10 is emitted from external combustion each year?;what is the annual amount of pm10 emitted from external combustion?;what is the total amount of pm10 emitted from external combustion each year?;what is the annual pm10 emissions from external combustion? -Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion, -Annual_Amount_Emissions_PM10_SCC_22_MobileSources,mobile sources emitted 22% of the annual amount of pm10 emissions;22% of pm10 emissions came from mobile sources;mobile sources were responsible for 22% of pm10 emissions;22% of pm10 emissions were emitted by mobile sources -Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,industrial processes contribute 23% of annual pm10 emissions;23% of pm10 emissions come from industrial processes;industrial processes are responsible for 23% of pm10 emissions;23% of pm10 emissions are caused by industrial processes -Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,annual pm10 emissions and solvent utilization;annual pm10 emissions and solvent utilization (24);annual emissions of pm10 and solvent utilization (24);annual pm10 emissions and solvent use (24) -Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,annual pm10 emissions from storage and transport;annual pm10 emissions from storage and transportation;annual pm10 emissions from storage and transfer;annual pm10 emissions from storage and distribution -Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of pm10 emitted from waste disposal, treatment, and recovery was 26;waste disposal, treatment, and recovery emitted 26 pm10;waste disposal, treatment, and recovery emitted 26 units of pm10;26 units of pm10 were emitted from waste disposal, treatment, and recovery" -Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources,annual emissions of pm10 from miscellaneous area sources;annual emissions of particulate matter 10 micrometers or less in diameter from miscellaneous area sources;pm10 emissions from miscellaneous area sources;annual pm10 emissions from miscellaneous area sources -Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines,annual emissions of pm10 from internal combustion engines;the amount of pm10 emitted by internal combustion engines each year;1 the amount of pm10 emissions from internal combustion engines per year;2 the annual amount of pm10 emitted by internal combustion engines -Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,the amount of pm10 emitted by industrial processes each year;1 annual emissions of pm10 from industrial processes;2 the amount of pm10 emitted by industrial processes each year;3 the annual amount of pm10 released into the air by industrial processes -Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation,the annual amount of pm10 emissions from petroleum and solvent evaporation;the amount of pm10 emitted each year from petroleum and solvent evaporation;the total amount of pm10 emitted from petroleum and solvent evaporation in one year;the annual pm10 emissions from petroleum and solvent evaporation -Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal, -Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories,the annual amount of pm10 emissions from mact source categories;the amount of pm10 emissions from mact source categories each year;the total amount of pm10 emissions from mact source categories over the course of a year;the annual pm10 emissions from mact source categories -Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion,annual amount of pm25 emissions from external combustion;annual pm25 emissions from external combustion;annual emissions of pm25 from external combustion;amount of pm25 emitted from external combustion annually -Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion,the sum of all pm25 emissions from stationary source fuel combustion in 2021;the total amount of pm25 released into the air from stationary source fuel combustion in 2021 -Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources,mobile sources emit 22% of annual pm25 emissions;22% of annual pm25 emissions come from mobile sources;mobile sources are responsible for 22% of annual pm25 emissions;22% of annual pm25 emissions are emitted by mobile sources -Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,the amount of pm25 emitted by industrial processes each year is 23;industrial processes emit 23 tons of pm25 each year;pm25 emissions from industrial processes total 23 tons per year;industrial processes are responsible for emitting 23 tons of pm25 each year -Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,annual amount of pm25 emissions from solvent utilization;annual amount of solvent utilization pm25 emissions;amount of pm25 emitted from solvent utilization annually;solvent utilization pm25 emissions annually -Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,annual amount of pm25 emissions from storage and transport;annual pm25 emissions from storage and transport;amount of pm25 emitted annually from storage and transport;annual emissions of pm25 from storage and transport -Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of pm25 released from waste disposal, treatment, and recovery in one year;the amount of pm25 discharged from waste disposal, treatment, and recovery in one year;the amount of pm25 released into the air from waste disposal, treatment, and recovery in a year;the amount of pm25 that comes from waste disposal, treatment, and recovery in a year" -Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources,"annual pm25 emissions from miscellaneous area sources;annual pm25 emissions from area sources, miscellaneous;annual pm25 emissions from area sources, not elsewhere classified;annual pm25 emissions from area sources, nec" -Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines,annual emissions of pm25 from internal combustion engines;what is the annual amount of pm25 emitted by internal combustion engines?;what is the annual pm25 emissions from internal combustion engines?;the amount of pm25 emissions from internal combustion engines each year -Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,"sure here are 3 different ways of saying ""annual amount emissions pm25, industrial processes"":" -Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation,the amount of pm25 and petroleum and solvent evaporation emitted each year;1 the amount of pm25 emissions from petroleum and solvent evaporation each year;4 the amount of pm25 emitted from petroleum and solvent evaporation each year -Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal, -Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories,annual emissions of pm25 from mact source categories;the amount of pm25 emitted annually from mact source categories;the total amount of pm25 emitted from mact source categories each year;the annual total of pm25 emissions from mact source categories -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia,"the amount of emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the sum of emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the total emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the aggregate emissions from petroleum and related industries, non-biogenic emission sources, and ammonia" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide,how much carbon monoxide is emitted by petroleum and related industries each year?;what is the annual amount of carbon monoxide emissions from petroleum and related industries?;what is the total amount of carbon monoxide emitted by petroleum and related industries each year?;what is the annual carbon monoxide emission rate from petroleum and related industries? -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of nitrogen oxides emitted by petroleum and related industries each year;the amount of nitrogen oxides released into the atmosphere each year from petroleum and related industries;how much petroleum and related industries emit oxides of nitrogen annually;how much oxides of nitrogen is emitted annually by petroleum and related industries -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10,"annual emissions from petroleum and related industries, non-biogenic emission sources, pm 10;annual emissions from petroleum and related industries, non-biogenic sources, pm 10;annual emissions from petroleum and related industries, non-biogenic sources, particulate matter 10;annual emissions from petroleum and related industries, non-biogenic sources, particulate matter 10 microns or less" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5,"petroleum and related industries' annual pm 25 emissions;annual non-biogenic pm 25 emissions from petroleum and related industries;annual pm 25 emissions from petroleum and related industries, non-biogenic;annual emissions of pm 25 from petroleum and related industries, non-biogenic" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide,the amount of sulfur dioxide emitted by petroleum and related industries each year;the annual sulfur dioxide emissions from petroleum and related industries;the total amount of sulfur dioxide emitted by petroleum and related industries in a year;the annual sulfur dioxide output from petroleum and related industries -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound,"petroleum and related industries, non-biogenic emission source, volatile organic compound annual emissions;emissions from petroleum and related industries, non-biogenic emission sources, and volatile organic compounds;annual emissions of petroleum and related industries, non-biogenic emission sources, and volatile organic compounds;emissions from petroleum and related industries, non-biogenic emission sources, and volatile organic compounds per year" -Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion,annual amount of phenol emissions from external combustion;annual phenol emissions from external combustion;phenol emissions from external combustion per year;phenol emissions from external combustion annually -Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion,phenol emissions from stationary sources from fuel combustion in the united states in 2021;the amount of phenol emitted from stationary sources from fuel combustion in the united states in 2021;the amount of phenol emitted from stationary sources in the united states in 2021 from fuel combustion;the amount of phenol emitted from fuel combustion in the united states in 2021 from stationary sources -Annual_Amount_Emissions_Phenol_SCC_22_MobileSources,annual emissions of phenol from mobile sources;mobile sources' annual emissions of phenol;phenol emissions from mobile sources per year;the amount of phenol emitted by mobile sources each year -Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,the amount of phenol emitted from industrial processes each year is 23;industrial processes emit 23 units of phenol each year;phenol emissions from industrial processes total 23 units per year;the annual amount of phenol emitted from industrial processes is 23 units -Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization,the amount of phenol emitted annually from solvent utilization is 24;phenol is emitted from solvent utilization at an annual rate of 24;solvent utilization emits 24 units of phenol annually;the annual emission of phenol from solvent utilization is 24 units -Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery,"the annual amount of phenol emissions from waste disposal, treatment, and recovery is 26;phenol emissions from waste disposal, treatment, and recovery amount to 26 per year;the amount of phenol emitted from waste disposal, treatment, and recovery each year is 26;26 phenols are emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources,phenol emissions from miscellaneous area sources (28);phenol emissions from non-point sources (28);phenol emissions from other sources (28);phenol emissions from miscellaneous sources (28) -Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines,the annual emissions of phenol from internal combustion engines;annual phenol emissions from internal combustion engines;the annual release of phenol into the atmosphere from internal combustion engines;the yearly amount of phenol released into the air by internal combustion engines -Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,annual emissions of phenol from industrial processes;the amount of phenol emitted from industrial processes each year;the annual amount of phenol released into the environment from industrial processes;the amount of phenol emitted by industrial processes each year -Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation,"annual emissions of phenol, petroleum, and solvent evaporation;the amount of phenol, petroleum, and solvent evaporation emitted each year;the annual rate of phenol, petroleum, and solvent evaporation;the total amount of phenol, petroleum, and solvent evaporated each year" -Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion,annual phosphorus emissions from external combustion;annual external combustion phosphorus emissions;phosphorus emissions from external combustion per year;phosphorus emissions from external combustion annually -Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion,the amount of phosphorus emitted from stationary fuel combustion in 2021;the amount of phosphorus that went into the atmosphere from burning fuel at stationary sources in 2021;the amount of phosphorus that was released into the air from stationary fuel combustion in 2021;the amount of phosphorus that was emitted from burning fuel at stationary sources in 2021 -Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources,annual amount of phosphorus emissions from mobile sources;annual phosphorus emissions from mobile sources;phosphorus emissions from mobile sources per year;mobile sources' annual phosphorus emissions -Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,"phosphorus emissions from industrial processes (23);phosphorus emissions from industrial processes, 23;industrial processes emit 23 units of phosphorus;phosphorus emissions from industrial processes amount to 23 units" -Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization,annual amount of phosphorus emissions from solvent utilization;annual phosphorus emissions from solvent utilization;annual emissions of phosphorus from solvent utilization;annual phosphorus emissions from the use of solvents -Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery,"phosphorus emissions from waste disposal, treatment, and recovery in 2026;the amount of phosphorus emitted from waste disposal, treatment, and recovery in 2026;the quantity of phosphorus emitted from waste disposal, treatment, and recovery in 2026;the number of tons of phosphorus emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources,phosphorus emissions from miscellaneous area sources (28);phosphorus emissions from miscellaneous sources (28);phosphorus emissions from nonpoint sources (28);phosphorus emissions from nonpoint sources other than agriculture (28) -Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines,how much phosphorus is emitted annually by internal combustion engines?;what is the annual amount of phosphorus emitted by internal combustion engines?;what is the annual emission of phosphorus from internal combustion engines?;how much phosphorus is emitted from internal combustion engines each year? -Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,"annual phosphorus emissions from industrial processes;the amount of phosphorus released into the environment each year from industrial processes;the total amount of phosphorus released into the air, water, and soil each year from industrial processes;the annual output of phosphorus from industrial activities" -Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation,"annual amount of emissions of phosphorus, petroleum, and solvent evaporation;annual emissions of phosphorus, petroleum, and solvent evaporation;annual amount of phosphorus, petroleum, and solvent evaporation emitted;amount of phosphorus, petroleum, and solvent evaporation emitted annually" -Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal,5 the amount of phosphorus that is released into the environment each year from waste disposal -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia,how much ammonia is emitted from prescribed fires and non-biogenic emission sources each year?;what is the annual amount of ammonia emissions from prescribed fires and non-biogenic emission sources?;what is the total amount of ammonia emitted from prescribed fires and non-biogenic emission sources each year?;how much ammonia is released into the atmosphere each year from prescribed fires and non-biogenic emission sources? -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide,how much carbon monoxide is emitted each year from prescribed fires and non-biogenic emission sources?;what is the annual amount of carbon monoxide emissions from prescribed fires and non-biogenic emission sources?;what is the total amount of carbon monoxide emitted each year from prescribed fires and non-biogenic emission sources?;how much carbon monoxide is released into the atmosphere each year from prescribed fires and non-biogenic emission sources? -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of oxides of nitrogen emitted from prescribed fires and non-biogenic emission sources each year;the annual emissions of oxides of nitrogen from prescribed fires and non-biogenic emission sources;the total amount of oxides of nitrogen emitted from prescribed fires and non-biogenic emission sources in a year;the annual output of oxides of nitrogen from prescribed fires and non-biogenic emission sources -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10,"annual emissions from prescribed fires, non-biogenic emission sources, and pm 10;the amount of emissions released each year from prescribed fires, non-biogenic emission sources, and pm 10;the total annual emissions from prescribed fires, non-biogenic emission sources, and pm 10;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and pm 10" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5,"annual emissions from prescribed fires, non-biogenic emission sources, and pm 25;the amount of emissions released into the atmosphere each year from prescribed fires, non-biogenic emission sources, and pm 25;the annual total of emissions from prescribed fires, non-biogenic emission sources, and pm 25;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and pm 25" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide,how much sulfur dioxide is emitted annually from prescribed fires and non-biogenic emission sources?;what is the annual amount of sulfur dioxide emitted from prescribed fires and non-biogenic emission sources?;what is the annual sulfur dioxide emission rate from prescribed fires and non-biogenic emission sources?;what is the annual amount of sulfur dioxide released into the atmosphere from prescribed fires and non-biogenic emission sources? -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound,"annual emissions from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the amount of emissions released each year from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the annual total of emissions from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion,annual amount of pyrene emissions from external combustion;annual pyrene emissions from external combustion;amount of pyrene emitted annually from external combustion;pyrene emissions from external combustion per year -Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion,the amount of pyrene emitted from stationary fuel combustion in 2021;the amount of pyrene that was released into the atmosphere from stationary sources in 2021 as a result of fuel combustion;the amount of pyrene that was emitted into the air in 2021 from stationary sources as a result of burning fuel;the amount of pyrene that was released into the air in 2021 from stationary sources as a result of fuel combustion -Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources,mobile sources emitted 22 tons of pyrene annually;pyrene emissions from mobile sources were 22 tons per year;the annual amount of pyrene emitted by mobile sources was 22 tons;mobile sources were responsible for 22 tons of pyrene emissions each year -Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,how much pyrene is emitted from industrial processes each year?;what is the annual amount of pyrene emitted from industrial processes?;what is the total amount of pyrene emitted from industrial processes each year?;how much pyrene is released into the atmosphere from industrial processes each year? -Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of pyrene emissions from waste disposal, treatment, and recovery;annual pyrene emissions from waste disposal, treatment, and recovery;amount of pyrene emitted annually from waste disposal, treatment, and recovery;pyrene emissions from waste disposal, treatment, and recovery per year" -Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources,pyrene emissions from miscellaneous area sources;pyrene emissions from miscellaneous sources;pyrene emissions from area sources;pyrene emissions from other sources -Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines,pyrene emissions from internal combustion engines per year;annual pyrene emissions from internal combustion engines;the annual emissions of pyrene from internal combustion engines;2 the annual emissions of pyrene from internal combustion engines -Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,annual amount of emissions of pyrene from industrial processes;amount of pyrene emitted from industrial processes each year;annual emissions of pyrene from industrial processes;the amount of pyrene emitted from industrial processes each year -Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation,annual amount of emissions of pyrene from petroleum and solvent evaporation;annual emissions of pyrene from petroleum and solvent evaporation;amount of pyrene emitted annually from petroleum and solvent evaporation;emissions of pyrene from petroleum and solvent evaporation per year -Annual_Amount_Emissions_SCC_1_ExternalCombustion,annual external combustion emissions;annual emissions from external combustion;annual emissions of external combustion;annual amount of external combustion emissions -Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion, -Annual_Amount_Emissions_SCC_22_MobileSources,annual emissions from mobile sources;mobile sources' annual emissions;emissions from mobile sources per year;mobile sources' yearly emissions -Annual_Amount_Emissions_SCC_23_IndustrialProcesses,industrial processes contributed 23% of annual emissions;23% of annual emissions came from industrial processes;industrial processes were responsible for 23% of annual emissions;23% of annual emissions were produced by industrial processes -Annual_Amount_Emissions_SCC_24_SolventUtilization,solvent utilization annual emission rate;annual solvent usage;annual solvent emissions;annual amount of solvent used -Annual_Amount_Emissions_SCC_25_StorageAndTransport,annual emissions storage and transport;annual amount of emissions from storage and transport;annual emissions from storage and transport;amount of emissions from storage and transport per year -Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery, -Annual_Amount_Emissions_SCC_27_NaturalSources,annual emissions from natural sources;emissions from natural sources each year;annual emissions from nature;emissions from natural sources per year -Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources,annual emissions from miscellaneous sources;emissions from miscellaneous sources;emissions from unknown sources;emissions from miscellaneous sources per year -Annual_Amount_Emissions_SCC_2_InternalCombustionEngines,what is the annual amount of emissions from internal combustion engines?;annual emissions from internal combustion engines;what are the annual emissions from internal combustion engines?;1 annual emissions from internal combustion engines -Annual_Amount_Emissions_SCC_3_IndustrialProcesses,what is the annual amount of emissions from industrial processes?;what are the annual emissions from industrial processes?;the amount of emissions from industrial processes each year;the annual emissions from industrial processes -Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation,annual emissions from petroleum and solvent evaporation;emissions from petroleum and solvent evaporation each year;annual petroleum and solvent evaporation emissions;annual emissions of petroleum and solvents due to evaporation -Annual_Amount_Emissions_SCC_5_WasteDisposal, -Annual_Amount_Emissions_SCC_6_MACTSourceCategories,annual emissions from mact source categories;annual emissions from major source categories;annual emissions from sources subject to mact;annual emissions from sources subject to maximum achievable control technology (mact) -Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion,annual amount of selenium emissions from external combustion;annual selenium emissions from external combustion;selenium emissions from external combustion per year;selenium emissions from external combustion annually -Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion,selenium emissions from stationary source fuel combustion annually;the amount of selenium emitted from stationary fuel combustion in 2021;selenium emissions from stationary fuel combustion in 2021;the annual amount of selenium emitted from stationary fuel combustion in 2021 -Annual_Amount_Emissions_Selenium_SCC_22_MobileSources,selenium emissions from mobile sources in 2022;the amount of selenium emitted by mobile sources in 2022;the quantity of selenium emitted by mobile sources in 2022;the number of selenium emissions from mobile sources in 2022 -Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,the amount of selenium emitted from industrial processes each year is 23;industrial processes emit 23 units of selenium each year;selenium emissions from industrial processes total 23 units per year;the annual amount of selenium emitted from industrial processes is 23 units -Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization,"selenium solvent utilization emissions, annual amount (24);selenium emissions from solvent utilization, annual amount (24);annual amount of selenium emissions from solvent utilization (24);annual amount of selenium released into the air from solvent utilization (24)" -Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of selenium emitted from waste disposal, treatment, and recovery in a year;the annual amount of selenium emitted from waste disposal, treatment, and recovery;the amount of selenium emitted from waste disposal, treatment, and recovery in one year;the annual amount of selenium emitted from waste disposal, treatment, and recovery in one year" -Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources,selenium emissions from miscellaneous area sources (28);selenium emissions from non-point sources (28);selenium emissions from area sources (28);selenium emissions from other sources (28) -Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines,what is the annual amount of selenium emitted from internal combustion engines?;what is the annual selenium emission from internal combustion engines?;how much selenium is released into the environment each year from internal combustion engines?;what is the annual release of selenium into the environment from internal combustion engines? -Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,selenium emissions from industrial processes;the amount of selenium emitted from industrial processes each year;the annual amount of selenium emitted from industrial processes;how much selenium is released into the environment each year from industrial processes? -Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation,the amount of selenium emitted from petroleum and solvent evaporation each year;the annual amount of selenium emitted from petroleum and solvent evaporation;how much selenium is emitted into the air each year from petroleum and solvent evaporation?;what is the annual amount of selenium emitted into the air from petroleum and solvent evaporation? -Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia,"the annual amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia;the total amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia in a year;the yearly amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia;the annualized amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide,"annual amount of emissions from solvent utilization;the amount of solvent utilization, non biogenic emission source, and carbon monoxide emitted each year;the annual amount of solvent utilization, non biogenic emission source, and carbon monoxide emissions;the yearly amount of solvent utilization, non biogenic emission source, and carbon monoxide released into the atmosphere" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen,"how much solvent utilization, non-biogenic emission source, and oxides of nitrogen are emitted annually?;what is the annual amount of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?;what is the annual level of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?;what is the annual quantity of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10,"the annual amount of emissions from solvent utilization, non-biogenic emission sources, and pm 10;the total amount of emissions from solvent utilization, non-biogenic emission sources, and pm 10 in one year;the sum of the emissions from solvent utilization, non-biogenic emission sources, and pm 10 over the course of a year;the annual total of emissions from solvent utilization, non-biogenic emission sources, and pm 10" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,"the annual amount of emissions from solvent utilization, non-biogenic emission sources, and pm 25;the annual amount of emissions from solvents, non-biogenic sources, and particulate matter 25" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,"annual emissions of solvent utilization, non-biogenic emission source, and sulfur dioxide;the amount of solvent utilization, non-biogenic emission source, and sulfur dioxide emitted each year;the annual total of solvent utilization, non-biogenic emission source, and sulfur dioxide emissions;the annual sum of solvent utilization, non-biogenic emission source, and sulfur dioxide emissions" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound,"the amount of emissions released into the atmosphere each year from the use of solvents, non-biogenic emission sources, and volatile organic compounds;the annual total of emissions from solvents, non-biogenic emission sources, and volatile organic compounds;the yearly amount of emissions from solvents, non-biogenic emission sources, and volatile organic compounds;the total amount of emissions released into the air each year from the use of solvents, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia,"how much pollution is caused by stationary fuel combustion, non-biogenic emission sources, and ammonia?;what is the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and ammonia?;what is the total amount of pollution released into the atmosphere each year from stationary fuel combustion, non-biogenic emission sources, and ammonia?;how much pollution is released into the air each year from stationary fuel combustion, non-biogenic emission sources, and ammonia?" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide,"the annual amount of carbon monoxide emissions from stationary fuel combustion, non-biogenic emission sources;the annual amount of carbon monoxide emissions from stationary sources, not from biological sources;the annual amount of carbon monoxide emissions from stationary sources, not from living things;the annual amount of carbon monoxide emissions from stationary sources, not from plants or animals" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen,amount of oxides of nitrogen emitted by stationary fuel combustion each year;annual emissions of oxides of nitrogen from stationary fuel combustion;annual amount of oxides of nitrogen released into the atmosphere from stationary fuel combustion;stationary fuel combustion emissions of non-biogenic oxides of nitrogen -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10,"annual amount of emissions: stationary fuel combustion, non biogenic emission source, pm 10" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5,"the amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25 per year;the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25;the annual emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25;the amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25 in a year" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide,amount of sulfur dioxide emitted from stationary fuel combustion each year;sulfur dioxide emissions from stationary fuel combustion per year;amount of sulfur dioxide released into the atmosphere from stationary fuel combustion each year;sulfur dioxide emissions from stationary fuel combustion -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound,"how much pollution is caused by stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds each year?;what is the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution caused by stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds each year?;how much pollution is in the air each year from stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia,"ammonia emissions from storage and transport, non-biogenic sources;ammonia emissions from non-biological sources, storage and transport;how much ammonia is emitted from storage and transport each year?;how much ammonia is released into the atmosphere each year from storage and transport?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide,annual carbon monoxide emissions from storage and transport -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen,storage and transport of non-biogenic emission sources of oxides of nitrogen;amount of oxides of nitrogen emitted from storage and transport of non-biogenic sources;oxides of nitrogen emitted from storage and transport of non-biogenic sources;emissions of oxides of nitrogen from storage and transport of non-biogenic sources -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10,"annual amount of emissions: storage and transport, non biogenic emission source, pm 10" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5,"how much pollution is emitted each year from storage and transport, non-biogenic sources, and pm 25?;what is the annual amount of emissions from storage and transport, non-biogenic sources, and pm 25?;what is the total amount of pollution emitted each year from storage and transport, non-biogenic sources, and pm 25?;how much pollution is released into the air each year from storage and transport, non-biogenic sources, and pm 25?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide,how much sulfur dioxide is released into the atmosphere each year from storage and transport?;storage and transport emissions of sulfur dioxide -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound,how much storage and transport of non-biogenic volatile organic compounds is emitted each year?;how much non-biogenic volatile organic compound storage and transport is emitted annually?;the amount of storage and transport of non-biogenic volatile organic compound emitted each year;the annual amount of storage and transport of non-biogenic volatile organic compound emitted -Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion, -Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses, -Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization,annual emissions of sulfone solvent utilization;annual amount of sulfone solvent utilized;annual emissions from sulfone solvent utilization;amount of sulfone solvent utilized annually -Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery,"the amount of sulfide that is emitted from waste disposal, treatment, and recovery each year;sulfide emissions from waste disposal, treatment, and recovery per year;sulfide emissions from waste disposal, treatment, and recovery in a year" -Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources,sulfane emissions from miscellaneous area sources in 2020;sulfane emissions from non-point sources in 2020;sulfane emissions from area sources in 2020;sulfane emissions from sources other than point sources in 2020 -Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines, -Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,sulfide emissions from industrial processes annually -Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation, -Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal, -Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion,annual emissions of sulfur dioxide from external combustion;annual sulfur dioxide emissions from external combustion;annual external combustion emissions of sulfur dioxide;external combustion emissions of sulfur dioxide per year -Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion,sulfur dioxide emissions from stationary fuel combustion in 2021;sulfur dioxide emissions from stationary fuel combustion (21);stationary fuel combustion emissions of sulfur dioxide (21);emissions of sulfur dioxide from stationary fuel combustion (21) -Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources,how much sulfur dioxide is emitted by mobile sources each year?;what is the annual amount of sulfur dioxide emissions from mobile sources?;what is the total amount of sulfur dioxide emitted by mobile sources each year?;how much sulfur dioxide do mobile sources emit each year? -Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,industrial processes emit 23 million metric tons of sulfur dioxide annually;sulfur dioxide emissions from industrial processes total 23 million metric tons annually;annual sulfur dioxide emissions from industrial processes are 23 million metric tons;industrial processes are responsible for the emission of 23 million metric tons of sulfur dioxide each year -Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization,annual sulfur dioxide emissions from solvent utilization;amount of sulfur dioxide emitted from solvent utilization each year;sulfur dioxide emissions from solvent utilization per year;annual sulfur dioxide emissions from solvent processing -Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport,"the amount of sulfur dioxide emitted annually from storage and transport is 25;sulfur dioxide emissions from storage and transport amount to 25 annually;annually, 25 tons of sulfur dioxide are emitted from storage and transport;storage and transport are responsible for 25 tons of sulfur dioxide emissions annually" -Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery,the amount of sulfur dioxide emitted from waste disposal treatment and recovery in a year is 26;the annual amount of sulfur dioxide emitted from waste disposal treatment and recovery is 26;sulfur dioxide emissions from waste disposal treatment and recovery are 26 per year;waste disposal treatment and recovery emits 26 units of sulfur dioxide per year -Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources,sulfur dioxide emissions from miscellaneous area sources in a given year;annual emissions of sulfur dioxide from miscellaneous area sources;sulfur dioxide emissions from miscellaneous area sources per year;the amount of sulfur dioxide emitted from miscellaneous area sources each year -Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines,2 annual sulfur dioxide emissions from internal combustion engines;how much sulfur dioxide is emitted by internal combustion engines each year?;what is the annual amount of sulfur dioxide emitted by internal combustion engines?;what is the total amount of sulfur dioxide emitted by internal combustion engines each year? -Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,the annual emissions of sulfur dioxide from industrial processes;the amount of sulfur dioxide released into the atmosphere each year from industrial processes;sulfur dioxide emissions from industrial processes per year;the amount of sulfur dioxide that is released into the atmosphere each year from industrial processes -Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation,the annual amount of sulfur dioxide and petroleum and solvent evaporation emitted into the atmosphere;the total amount of sulfur dioxide and petroleum and solvent evaporation released into the air each year;the annual total of sulfur dioxide and petroleum and solvent evaporation released into the air;sulfur dioxide and petroleum and solvent evaporation emissions per year -Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal, -Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion,"annual amount of toluene emitted from external combustion;annual toluene emissions from external combustion;toluene emissions from external combustion per year;toluene emissions from external combustion, annual" -Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion,the amount of toluene emitted from stationary fuel combustion sources in 2021;the annual amount of toluene emitted from stationary fuel combustion sources;toluene emissions from stationary fuel combustion sources in 2021;the amount of toluene emitted from stationary fuel combustion sources each year -Annual_Amount_Emissions_Toluene_SCC_22_MobileSources,the amount of toluene emitted by mobile sources each year;the annual toluene emissions from mobile sources;toluene emissions from mobile sources in a year;the amount of toluene emitted by mobile sources in a year -Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,toluene emissions from industrial processes in a year: 23;the amount of toluene emitted from industrial processes in a year is 23;the annual amount of toluene emitted from industrial processes is 23;toluene emissions from industrial processes total 23 in a year -Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization,annual emissions of toluene from solvent utilization;annual toluene emissions from solvent use;annual toluene emissions from solvent-based products;annual toluene emissions from solvent-based processes -Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport,the amount of toluene emitted annually from storage and transport is 25;toluene emissions from storage and transport total 25 annually;25 tons of toluene are emitted from storage and transport each year;storage and transport are responsible for emitting 25 tons of toluene annually -Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery,"annual amount of toluene emissions from waste disposal, treatment, and recovery;annual toluene emissions from waste disposal, treatment, and recovery;amount of toluene emitted annually from waste disposal, treatment, and recovery;toluene emissions from waste disposal, treatment, and recovery annually" -Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources,annual emissions of toluene from miscellaneous area sources (28);toluene emissions from miscellaneous area sources (28);toluene emissions from non-point sources (28);toluene emissions from area sources (28) -Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines,the annual emissions of toluene from internal combustion engines;what is the annual amount of toluene emitted from internal combustion engines?;how much toluene is released into the atmosphere from internal combustion engines each year?;what is the annual toluene emission from internal combustion engines? -Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,toluene emissions from industrial processes;the amount of toluene emitted by industrial processes each year;the annual emissions of toluene from industrial processes;the amount of toluene that is released into the environment each year from industrial processes -Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation,"how much toluene, petroleum, and solvent evaporation is emitted annually?;what is the annual amount of toluene, petroleum, and solvent evaporation emissions?;what is the annual toluene, petroleum, and solvent evaporation emissions?;what is the annual amount of toluene, petroleum, and solvent evaporation released into the environment?" -Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal,5 the annual amount of toluene that is disposed of as waste;5 toluene emissions from waste disposal yearly -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia,"how much pollution is caused by transportation, non-biogenic emission sources, and ammonia each year?;what is the annual amount of pollution from transportation, non-biogenic emission sources, and ammonia?;what is the total amount of pollution from transportation, non-biogenic emission sources, and ammonia each year?;how much pollution is emitted from transportation, non-biogenic emission sources, and ammonia each year?" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide,how much carbon monoxide is emitted by transportation each year?;what is the annual amount of carbon monoxide emissions from transportation?;what is the total amount of carbon monoxide emitted by transportation each year?;how much carbon monoxide is emitted by transportation sources each year? -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen,annual amount of transportation emissions of oxides of nitrogen;annual emissions of oxides of nitrogen from transportation;the amount of nitrogen oxides emitted by transportation sources each year;the annual amount of nitrogen oxides emitted by transportation -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10,annual emissions from transportation and non-biogenic sources of pm 10;annual emissions of pm 10 from transportation and non-biogenic sources;annual emissions of pm 10 from transportation and other sources;annual emissions of pm 10 from transportation and non-biological sources -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5,"what is the annual amount of non-biogenic pm 25 emissions from transportation?;annual emissions from transportation, non-biogenic sources, and pm 25;annual emissions from transportation and non-biogenic sources, including pm 25;annual emissions from transportation, non-biogenic sources, and particulate matter less than 25 micrometers in diameter" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide,how much sulfur dioxide is emitted by transportation each year?;what is the annual amount of sulfur dioxide emitted by transportation?;how much sulfur dioxide does transportation emit each year?;what is the annual sulfur dioxide emission from transportation? -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound,"how much pollution is emitted by transportation, non-biogenic emission sources, and volatile organic compounds each year?;what is the annual amount of emissions from transportation, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution emitted by transportation, non-biogenic emission sources, and volatile organic compounds each year?;how much pollution is released into the air each year by transportation, non-biogenic emission sources, and volatile organic compounds?" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion,what is the annual amount of volatile organic compound emitted from external combustion?;how much volatile organic compound is released into the air each year from external combustion?;what is the annual release of volatile organic compound into the air from external combustion? -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion,volatile organic compounds from stationary fuel combustion (21) -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources,annual emissions of volatile organic compounds from mobile sources;annual amount of emissions of volatile organic compounds from mobile sources;amount of volatile organic compounds emitted from mobile sources each year;volatile organic compounds emitted from mobile sources each year -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,annual emissions of volatile organic compounds from industrial processes (23);the amount of volatile organic compounds emitted from industrial processes each year (23);the annual release of volatile organic compounds from industrial processes (23);the yearly output of volatile organic compounds from industrial processes (23) -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization,the amount of volatile organic compounds emitted annually from solvent use (24);the annual amount of volatile organic compounds released into the air from solvent use (24);the annual amount of volatile organic compounds that escape into the atmosphere from solvent use (24);the annual amount of volatile organic compounds that are released into the environment from solvent use (24) -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport,annual amount of volatile organic compounds emitted from storage and transport (25);the annual release of volatile organic compounds from storage and transport (25);the annual discharge of volatile organic compounds from storage and transport (25) -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery,"volatile organic compounds emitted from waste disposal, treatment, and recovery (26)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources,27 million metric tons of volatile organic compounds (vocs) are emitted from natural sources each year;annual emissions of volatile organic compounds from natural sources (27);the amount of volatile organic compounds emitted from natural sources each year (27);the annual release of volatile organic compounds from natural sources (27) -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources,the amount of volatile organic compounds emitted from miscellaneous area sources in a year;the yearly amount of volatile organic compounds emitted from miscellaneous area sources;the total amount of volatile organic compounds emitted from miscellaneous area sources in a year;volatile organic compound emissions from miscellaneous area sources -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,the amount of volatile organic compounds emitted from industrial processes each year;the amount of volatile organic compounds emitted by industrial processes each year;the annual release of volatile organic compounds into the atmosphere from industrial processes -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation,annual emissions of volatile organic compounds from petroleum and solvent evaporation;the amount of volatile organic compounds emitted into the atmosphere each year from petroleum and solvent evaporation;the annual release of volatile organic compounds into the air from petroleum and solvent evaporation;the annual amount of volatile organic compounds that are released into the air from petroleum and solvent evaporation -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories,annual emissions of volatile organic compounds from sources regulated by mact;annual emissions of volatile organic compounds from mact source categories;the amount of volatile organic compounds emitted annually from mact source categories;the annual total of volatile organic compounds emitted from mact source categories -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia,how much ammonia is emitted from waste disposal and recycling?;what is the annual amount of ammonia emissions from waste disposal and recycling?;what is the total amount of ammonia emitted from waste disposal and recycling each year?;how much ammonia is released into the atmosphere each year from waste disposal and recycling? -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide,amount of emissions from waste disposal and recycling;the amount of carbon monoxide emitted each year from waste disposal and recycling;the amount of carbon monoxide emitted each year from waste disposal;the amount of carbon monoxide emitted each year from recycling -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen,"annual emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen;the amount of emissions produced each year from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen;the total amount of emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen in a year;the annual total of emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5,"annual amount of emissions: waste disposal and recycling, non biogenic emission source, pm 25" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide,"the annual amount of emissions from waste disposal and recycling, non-biogenic emission sources, and sulfur dioxide;the annual amount of emissions from waste disposal and recycling, as well as non-biogenic emission sources and sulfur dioxide" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound,"what is the annual amount of emissions from waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution produced by waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds each year?;what is the annual emission rate of waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia,"annual amount of emissions: wildfire, non biogenic emission source, ammonia;how much wildfire, non-biogenic emissions, and ammonia are emitted each year?;what is the annual amount of emissions from wildfires, non-biogenic sources, and ammonia?;what is the total amount of emissions from wildfires, non-biogenic sources, and ammonia each year?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide,"annual emissions: wildfire, non biogenic emission source, carbon monoxide;wildfire emissions;emissions from wildfires;how much carbon monoxide is emitted from wildfires each year?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen,the amount of oxides of nitrogen emitted from wildfire and non-biogenic sources each year;the annual amount of oxides of nitrogen emitted from wildfire and non-biogenic sources;the total amount of oxides of nitrogen emitted from wildfire and non-biogenic sources each year;the total annual amount of oxides of nitrogen emitted from wildfire and non-biogenic sources -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10,"annual emissions from wildfires, non-biogenic sources, and pm 10;the amount of emissions released each year from wildfires, non-biogenic sources, and pm 10;the annual total of emissions from wildfires, non-biogenic sources, and pm 10;the annual amount of pollution released into the air from wildfires, non-biogenic sources, and pm 10" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5,"how much pollution is caused by wildfires, non-biogenic emission sources, and pm 25 each year?;what is the annual amount of emissions from wildfires, non-biogenic emission sources, and pm 25?;how much pollution is in the air each year from wildfires, non-biogenic emission sources, and pm 25?;what is the total amount of pollution in the air each year from wildfires, non-biogenic emission sources, and pm 25?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide,how much sulfur dioxide is emitted from wildfires each year?;what is the annual amount of sulfur dioxide emissions from wildfires?;how many tons of sulfur dioxide are emitted from wildfires each year?;what is the total amount of sulfur dioxide emitted from wildfires each year? -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound,"how much wildfire, non-biogenic emission source, and volatile organic compound emissions are there each year?;what is the annual amount of wildfire, non-biogenic emission source, and volatile organic compound emissions?;what is the total annual amount of wildfire, non-biogenic emission source, and volatile organic compound emissions?;what is the total amount of wildfire, non-biogenic emission source, and volatile organic compound emissions each year?" -Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal,the quality of fossil fuels used in electricity generation;the quality of fossil fuels for electricity generation;the quality of fossil fuels in power generation;the quality of fossil fuels for power generation -Annual_AshContent_Fuel_ForElectricityGeneration_Coal,coal quality in electricity generation year on year;yearly coal quality in electricity generation;coal quality in electricity generation from year to year;the quality of coal used in electricity generation each year -Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,the amount of ash in coal used to generate electricity in power plants each year;the annual percentage of ash in coal used to generate electricity in power plants;the annual amount of ash produced by burning coal to generate electricity;the annual amount of ash left over after burning coal to generate electricity -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal,the quality of subbituminous coal in all sectors each year;the annual quality of subbituminous coal in all sectors;the quality of subbituminous coal in all sectors over the course of a year;the quality of subbituminous coal in all sectors on an annual basis -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the amount of ash in subbituminous coal used for electricity generation by electric power;the percentage of ash in subbituminous coal used for electricity generation by electric power;the proportion of ash in subbituminous coal used for electricity generation by electric power;the level of ash in subbituminous coal used for electricity generation by electric power -Annual_Average_AshContent_Coal_For_ElectricPower,the amount of ash produced by electric power plants each year;the yearly amount of ash produced by electric power plants;the annual ash production of electric power plants;the amount of ash that electric power plants produce each year -Annual_Average_AshContent_Coal_For_OtherIndustrial,ash content in other industries on an annual basis;the amount of ash produced by other industries each year;the amount of ash that is left over from other industries' processes;the amount of ash that is produced by other industries' activities -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower, -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,how much does it cost to generate electricity from natural gas?;how much does it cost to produce electricity from natural gas? -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers, -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the average annual cost of petroleum liquids for electricity generation;the total cost of petroleum liquids for electricity generation per year;the annual cost of petroleum liquids for electricity generation;the cost of petroleum liquids for electricity generation per year -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the average annual cost of petroleum liquids for electricity production;the yearly cost of petroleum liquids for electricity production;the cost of petroleum liquids for electricity production each year;the cost of petroleum liquids for electricity production on average each year -Annual_Average_HeatContent_Coal_For_ElectricPower,the total amount of heat produced by electricity each year;the annual heat output of electricity;the total heat content of electricity produced each year;the total heat energy produced by electricity each year -Annual_Average_HeatContent_Coal_For_OtherIndustrial,the average heat content of coal used in other industrial processes;the average amount of heat that can be extracted from coal used in other industrial processes;the average energy content of coal used in other industrial processes;the average heating value of coal used in other industrial processes -Annual_Average_RetailPrice_Electricity,what is the average price of electricity per year? -Annual_Average_RetailPrice_Electricity_Commercial,the average price of electricity in commercial buildings per year;the annual cost of electricity for commercial businesses;the average amount of money that commercial businesses pay for electricity each year;the yearly cost of electricity for commercial properties -Annual_Average_RetailPrice_Electricity_Industrial,the average annual retail price of electricity in industries;the average price of electricity paid by industries each year;the average cost of electricity for industries;the average annual electricity bill for industries -Annual_Average_RetailPrice_Electricity_OtherSector,the average cost of electricity in the united states;the average rate for electricity in the united states;the average amount paid for electricity in the united states;the average cost of electricity in other sectors in the united states -Annual_Average_RetailPrice_Electricity_Residential,the average price of residential electricity per year;the annual cost of residential electricity;the typical price that residential customers pay for electricity each year;the annual average retail price of electricity for residential customers -Annual_Average_SulfurContent_Coal_For_ElectricPower,total annual sulfur content of electricity;total sulfur content of electricity produced annually;annual sulfur content of electricity production;total sulfur content of electricity generated annually -Annual_Average_SulfurContent_Coal_For_OtherIndustrial,annual sulfur content in other industrial sectors;annual sulfur content in other industries;annual sulfur content in non-energy industries;annual sulfur content in non-power-generation industries -Annual_Capacity_Electricity_AutoProducer,the annual production capacity of electric car manufacturers;the amount of electric cars that can be produced by car manufacturers in one year;the total number of electric cars that can be produced by car manufacturers in a year;the annual output of electric cars from car manufacturers -Annual_Capacity_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,"the annual capacity of electricity from combustible fuel in autoproducer electricity power plants;the amount of electricity generated from combustible fuel in autoproducer electricity power plants each year;sure, here are five different ways of saying ""annual capacity of electricity from combustible fuel in autoproducer electricity power plants"" without repeating any of the words:;the amount of electricity produced by autoproducer electricity power plants from combustible fuel each year" -Annual_Capacity_Electricity_CombustibleFuel_ElectricityPowerPlants,electricity generated by combustible fuels in power plants per year;the amount of electricity generated by combustible fuels in power plants each year;the annual output of electricity from combustible fuels in power plants;the amount of electricity generated by power plants that use combustible fuels each year -Annual_Capacity_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,the annual capacity of power plants that use fossil fuels to generate electricity;the total output of power plants that use combustible fuels in a year -Annual_Capacity_Electricity_ElectricityPowerPlants,the annual capacity of electricity power plants;the annual output of electricity power plants;the annual power generation of power plants;the annual electricity output of power plants -Annual_Capacity_Electricity_MainActivityProducer,what is the annual capacity of electricity produced by the main activity producers?;the annual capacity of electricity produced by the main activity producers -Annual_Capacity_Electricity_SolarPhotovoltaic,the total amount of power produced by solar panels in a year;what is the annual output of solar photovoltaics? -Annual_Capacity_Electricity_SolarPhotovoltaic_MainActivityProducer,"solar photovoltaic capacity by main activity producer, annual;annual solar photovoltaic capacity by main activity producer;annual electricity capacity from solar photovoltaic by main activity producer;annual solar photovoltaic electricity capacity by main activity producer" -Annual_Capacity_Electricity_Solar_AutoProducerElectricityPowerPlants,the annual capacity of solar energy from autoproducer electricity power plants;the amount of electricity generated by solar power plants owned by autoproducers each year;the annual output of solar power plants owned by autoproducers;the total amount of electricity generated by solar power plants owned by autoproducers in a year -Annual_Capacity_Electricity_Solar_ElectricityPowerPlants,the amount of electricity generated by solar power plants each year;the total output of solar power plants in a year;the amount of electricity that solar power plants generate each year -Annual_Capacity_Electricity_Solar_MainActivityProducerElectricityPowerPlants, -Annual_Capacity_Electricity_Water_AutoProducerElectricityPowerPlants,the amount of electricity produced by water-powered auto producer plants each year;the amount of electricity produced by water-powered auto producer plants in a year -Annual_Capacity_Electricity_Water_ElectricityPowerPlants,the amount of electricity generated by hydropower plants each year;the total amount of electricity produced by hydropower plants in a year;the amount of electricity generated by water power plants each year;the total amount of electricity produced by water power in a year -Annual_Capacity_Electricity_Water_MainActivityProducerElectricityPowerPlants,annual electricity production from water by main activity producer;annual water power production by main activity producer;annual electricity production from water by main activity producing power plants;what is the annual capacity of electricity from water by main activity producer electricity power plants? -Annual_Capacity_Electricity_Wind_ElectricityPowerPlants,the amount of electricity generated by wind turbines in power plants each year;the annual output of wind power plants;what is the annual capacity of wind power plants?;what is the total amount of electricity generated by wind power plants in a year? -Annual_Capacity_Electricity_Wind_MainActivityProducerElectricityPowerPlants,what is the annual capacity of wind power generation by the main producers of electricity?;annual wind power capacity in main activity producer electricity power plants;annual wind power capacity in electricity power plants that are the main activity of their producers;what is the annual capacity of wind power in main activity producer electricity power plants? -Annual_Capacity_Fuel_CrudeOil_Refinery,how much crude oil can a refinery process in a year?;the amount of crude oil that a refinery can process in a year;the annual processing capacity of a refinery for crude oil;the annual crude oil processing capacity of a refinery -Annual_Consumption_Coal_ElectricPower,the annual usage of electric power -Annual_Consumption_Coal_ElectricUtility,electric utility's annual consumption;how much electricity does an electric utility use in a year;annual electricity consumption of an electric utility;the annual electricity consumption of an electric utility -Annual_Consumption_Coal_OtherIndustrial,other industrial coal consumption;coal consumption in other industries;how much coal is used by other industries;coal use in other industries -Annual_Consumption_Electricity,annual electricity use;the amount of electricity used each year;the total amount of electricity consumed in a year;the annual usage of electricity -Annual_Consumption_Electricity_Agriculture,the amount of electricity used in agriculture each year;the annual electricity consumption of the agricultural sector;the total amount of electricity used in agriculture over the course of a year;the annual electricity usage of farms and other agricultural businesses -Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry,the amount of electricity used by the chemical and petrochemical industries each year;the annual electricity consumption of the chemical and petrochemical industries;the yearly amount of electricity used by the chemical and petrochemical industries;the total amount of electricity used by the chemical and petrochemical industries in a year -Annual_Consumption_Electricity_CoalMines_EnergyIndustryOwnUse,how much electricity do coal mines use each year?;how much electricity do coal mines consume annually?;what is the annual electricity consumption of coal mines?;what is the amount of electricity used by coal mines each year? -Annual_Consumption_Electricity_CommerceAndPublicServices,commerce and public services annual electricity consumption;annual electricity consumption for commerce and public services;electricity consumed by commerce and public services annually;the amount of electricity used by commerce and public services each year -Annual_Consumption_Electricity_ConstructionIndustry,the amount of materials used in the construction industry each year;the annual cost of construction materials;the amount of construction materials that are used up each year;the annual consumption of construction materials -Annual_Consumption_Electricity_ElectricityGeneration_EnergyIndustryOwnUse,what is the annual electricity consumption of the electricity generation industry?;what is the annual electricity usage of the electricity generation industry?;electricity consumption in electricity generation industries per year;electricity used by electricity generation industries annually -Annual_Consumption_Electricity_EnergyIndustry_EnergyIndustryOwnUse,annual industrial electricity consumption;the annual industrial electricity consumption;the yearly industrial electricity usage -Annual_Consumption_Electricity_FoodAndTobaccoIndustry,the amount of food and tobacco that is consumed each year;the yearly amount of food and tobacco that is used up;the annual rate at which food and tobacco are used;the yearly consumption of food and tobacco -Annual_Consumption_Electricity_Households,how much electricity do households use in a year;how much electricity do households consume annually;annual electricity consumption by households;electricity used by households per year -Annual_Consumption_Electricity_Industry_EnergyIndustryOwnUse,the annual amount of electricity used by industries for their own purposes;the yearly amount of electricity used by industries for their own purposes;the annual consumption of electricity by industries for their own use;annual electricity consumption by industries for their own use -Annual_Consumption_Electricity_IronSteel,iron and steel industries' annual electricity consumption;annual electricity consumption of iron and steel industries;electricity consumed by iron and steel industries annually;the amount of electricity used by iron and steel industries each year -Annual_Consumption_Electricity_MachineryIndustry,electricity consumption by machinery industries;machinery industries' electricity usage;the amount of electricity used by machinery industries;the amount of electricity that machinery industries consume -Annual_Consumption_Electricity_Manufacturing,annual electricity consumption in manufacturing;annual manufacturing electricity consumption;electricity used in manufacturing each year;manufacturing's annual electricity use -Annual_Consumption_Electricity_MiningAndQuarryingIndustry,electricity used by the mining and quarrying industry each year;the amount of electricity used by the mining and quarrying industry in a year;the annual electricity consumption of the mining and quarrying industry;the yearly amount of electricity used by the mining and quarrying industry -Annual_Consumption_Electricity_NonFerrousMetalsIndustry,how much electricity do non-ferrous metals industries use each year?;what is the annual electricity consumption of non-ferrous metals industries?;what is the amount of electricity used by non-ferrous metals industries each year?;how much electricity do non-ferrous metals industries use annually? -Annual_Consumption_Electricity_NonMetallicMineralsIndustry,electricity consumption by the non-metallic minerals industry;how much electricity does the non-metallic minerals industry use?;the non-metallic minerals industry's electricity usage;the annual electricity consumption of the non-metallic minerals industry -Annual_Consumption_Electricity_OilGasExtraction_EnergyIndustryOwnUse,electricity used in oil and gas extraction each year;annual electricity consumption in oil and gas extraction;how much electricity is used in oil and gas extraction each year;the amount of electricity used in oil and gas extraction each year -Annual_Consumption_Electricity_OilRefineries_EnergyIndustryOwnUse,how much oil do oil refineries use in their own operations?;what is the annual consumption of oil refineries in the energy industry for their own use?;what is the annual amount of oil that oil refineries use for their own use?;the amount of oil that oil refineries use in their own operations -Annual_Consumption_Electricity_OtherIndustry,what is the annual electricity consumption of other industries?;how much electricity do other industries consume annually?;what is the annual electricity usage of other industries?;2 what is the annual electricity consumption of other industries? -Annual_Consumption_Electricity_OtherManufacturingIndustry,what is the annual electricity consumption of manufacturing industries?;what is the amount of electricity used by manufacturing industries each year?;how much electricity do manufacturing industries consume annually?;what is the annual electricity usage of manufacturing industries? -Annual_Consumption_Electricity_OtherSector,electricity consumption in other sectors each year;annual electricity use in other sectors;the amount of electricity used in other sectors each year;the annual amount of electricity used in other sectors -Annual_Consumption_Electricity_OtherTransport,how much electricity is consumed by un other transport each year?;what is the annual electricity consumption of un other transport?;what is the amount of electricity used by un other transport each year?;how much electricity does un other transport use each year? -Annual_Consumption_Electricity_PaperPulpPrintIndustry,how much electricity do paper pulp and print industries use each year?;what is the annual electricity consumption of the paper pulp and print industries?;what is the amount of electricity used by the paper pulp and print industries each year?;how much electricity do the paper pulp and print industries consume annually? -Annual_Consumption_Electricity_RailTransport,how much electricity is used by rail transport each year?;how much electricity do trains use each year?;what is the annual electricity consumption of rail transport?;what is the amount of electricity used by rail transport each year? -Annual_Consumption_Electricity_TextileAndLeatherIndustry,how much electricity do textile and leather industries use each year?;what is the annual electricity consumption of the textile and leather industries?;what is the amount of electricity used by the textile and leather industries each year?;how much electricity do the textile and leather industries use in a year? -Annual_Consumption_Electricity_TransportEquipmentIndustry,how much electricity do transport equipment industries use each year?;what is the annual electricity consumption of transport equipment industries?;what is the total amount of electricity used by transport equipment industries each year?;how much electricity do transport equipment industries use in a year? -Annual_Consumption_Electricity_TransportIndustry,the amount of electricity used by the transportation industry each year;the annual electricity consumption of the transportation sector;the total amount of electricity used by transportation companies each year;the yearly electricity usage of the transportation industry -Annual_Consumption_Electricity_UnspecifiedSector,electricity consumption in un_unspecified sectors per year;annual electricity use in un_unspecified sectors;the amount of electricity used in un_unspecified sectors each year;the annual electricity consumption of un_unspecified sectors -Annual_Consumption_Electricity_WoodAndWoodProductsIndustry,the amount of wood and wood products used each year by industries;the yearly consumption of wood and wood products by industries;the annual rate at which industries use wood and wood products;the yearly amount of wood and wood products that industries use -Annual_Consumption_Energy_CommerceAndPublicServices_Heat,the amount of heat used in commerce and public services each year;the annual amount of heat consumed by businesses and government agencies;the total amount of heat used in commercial and public buildings each year;the annual heat consumption of businesses and government organizations -Annual_Consumption_Energy_ElectricityGeneration_Heat_EnergyIndustryOwnUse,the amount of heat used by electricity generation industries each year;the annual consumption of heat by electricity generation industries;the amount of heat used by electricity generation industries in a year;the annual use of heat by electricity generation industries -Annual_Consumption_Energy_Heat,the amount of energy used for heating each year;the annual amount of energy used to heat things;the yearly consumption of energy for heating;the annual energy usage for heating -Annual_Consumption_Energy_Households_Heat,how much heat do households use each year?;how much heat is consumed by households annually?;how much heat do households use in a year?;what is the annual heat consumption of households? -Annual_Consumption_Energy_Households_SolarThermal,how much solar thermal energy do households use each year?;what is the annual consumption of solar thermal energy in households?;how much solar thermal energy do households use in a year?;what is the annual amount of solar thermal energy used by households? -Annual_Consumption_Energy_Manufacturing_Heat,the amount of heat used by manufacturing industries each year;the annual amount of heat consumed by manufacturing industries;the annual heat consumption of manufacturing industries;the amount of heat that manufacturing industries use each year -Annual_Consumption_Energy_OilRefineries_Refinery_FuelTransformation,how much fuel is transformed into other products in oil refineries each year?;what is the annual amount of fuel that is transformed into other products in oil refineries?;annual fuel transformation in oil refineries;how much fuel is transformed in oil refineries each year? -Annual_Consumption_Energy_OtherIndustry_Heat,heat consumption in other industries each year;annual heat consumption in other industries;the amount of heat consumed by other industries each year;the amount of heat consumed by other industries in a year -Annual_Consumption_Energy_OtherManufacturingIndustry_Heat,heat consumption in other manufacturing industries per year;annual heat usage in other manufacturing industries;the amount of heat used in other manufacturing industries each year;the annual amount of heat consumed by other manufacturing industries -Annual_Consumption_Energy_OtherSector_Heat,"sure here are five different ways to say ""annual consumption of heat in other sectors"":;heat consumption in other sectors per year;annual heat consumption in other sectors;the amount of heat consumed in other sectors each year" -Annual_Consumption_Energy_OtherSector_SolarThermal,other sectors' annual consumption of solar thermal energy;the annual consumption of solar thermal energy by other sectors;the amount of solar thermal energy consumed by other sectors each year;the annual use of solar thermal energy by other sectors -Annual_Consumption_Energy_SolarThermal,the amount of solar thermal energy used each year;the annual usage of solar thermal energy;the yearly consumption of solar thermal energy;the annual demand for solar thermal energy -Annual_Consumption_Fuel_Agriculture_DieselOil,how much diesel fuel is used in agriculture each year?;what is the annual consumption of diesel oil in agriculture?;how much diesel oil is used in agriculture annually?;what is the amount of diesel oil used in agriculture each year? -Annual_Consumption_Fuel_Agriculture_FuelOil,the amount of fuel oil used in agriculture each year;the annual rate of fuel oil consumption in agriculture;the yearly amount of fuel oil used in farming;the annual fuel oil usage in agriculture -Annual_Consumption_Fuel_Agriculture_Fuelwood,the amount of wood used for fuel in agriculture each year;the annual amount of wood burned for fuel in agriculture;the amount of wood used for agricultural purposes in a year;the yearly consumption of wood for agricultural use -Annual_Consumption_Fuel_Agriculture_Kerosene,kerosene consumption in agriculture each year;the amount of kerosene used in agriculture each year;the annual amount of kerosene used in agriculture;the yearly consumption of kerosene in agriculture -Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used in agriculture each year;the annual rate of liquefied petroleum gas consumption in agriculture;the yearly use of liquefied petroleum gas in agriculture;the annual consumption of liquefied petroleum gas by the agricultural sector -Annual_Consumption_Fuel_Agriculture_MotorGasoline,1 annual gasoline consumption in agriculture;2 the amount of gasoline used in agriculture each year;3 the yearly gasoline usage in agriculture;4 the annual gasoline consumption in the agricultural sector -Annual_Consumption_Fuel_Agriculture_NaturalGas,how much natural gas does agriculture use each year?;what is the annual consumption of natural gas by agriculture?;what is the amount of natural gas used by agriculture each year?;how much natural gas does agriculture use annually? -Annual_Consumption_Fuel_AnthraciteCoal,how much anthracite coal is consumed annually?;what is the annual consumption of anthracite coal?;what is the amount of anthracite coal consumed each year?;how much anthracite coal is used each year? -Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,annual natural gas consumption in auto producer combined heat power plants;annual natural gas use in auto producer combined heat power plants;the amount of natural gas used in auto producer combined heat power plants each year;the annual amount of natural gas consumed by auto producer combined heat power plants -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_DieselOil_FuelTransformation,the amount of diesel oil used in autoproducer electricity power plants each year;the yearly consumption of diesel oil in autoproducer electricity power plants;the annual diesel oil usage in autoproducer electricity power plants;the amount of diesel oil that autoproducer electricity power plants use each year -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_FuelOil_FuelTransformation,the amount of fuel oil used by autoproducer electricity power plants each year;the yearly consumption of fuel oil by autoproducer electricity power plants;the annual rate at which fuel oil is used by autoproducer electricity power plants;the amount of fuel oil that autoproducer electricity power plants use in a year -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_HardCoal_FuelTransformation,how much hard coal is used in fuel transmission each year?;how much hard coal is consumed in fuel transmission annually?;what is the annual consumption of hard coal in fuel transmission?;what is the amount of hard coal used in fuel transmission each year? -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_NaturalGas_FuelTransformation,annual consumption of natural gas by autoproducer electricity power plants for fuel transformation;annual natural gas consumption by autoproducer electricity power plants for fuel transformation;autoproducer electricity power plants' annual consumption of natural gas for fuel transformation;the amount of natural gas consumed by autoproducer electricity power plants for fuel transformation each year -Annual_Consumption_Fuel_AviationGasoline,the amount of aviation gasoline used each year;the yearly consumption of aviation gasoline;the annual rate of aviation gasoline consumption;the amount of aviation gasoline used in a year -Annual_Consumption_Fuel_Bagasse,the amount of bagasse consumed each year;the annual rate of bagasse consumption;the yearly amount of bagasse used;the annual consumption of bagasse -Annual_Consumption_Fuel_BioDiesel,how much biodiesel is consumed annually?;how much biodiesel is used each year?;what is the annual consumption of biodiesel?;what is the yearly consumption of biodiesel? -Annual_Consumption_Fuel_BioGas,biogas consumption per year;how much biogas is consumed annually?;what is the annual consumption of biogas?;what is the yearly consumption of biogas? -Annual_Consumption_Fuel_BioGasoline,bio gasoline consumption per year;annual bio gasoline usage;bio gasoline use per year;bio gasoline consumption in a year -Annual_Consumption_Fuel_BituminousCoal,how much bituminous coal is consumed each year?;what is the annual consumption of bituminous coal?;what is the yearly consumption of bituminous coal?;how much bituminous coal is used each year? -Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse,coal use for non-energy purposes;annual coal use for non-energy purposes -Annual_Consumption_Fuel_BlastFurnaceGas,the amount of blast furnace gas used each year;the yearly consumption of blast furnace gas;the annual rate of blast furnace gas consumption;the amount of blast furnace gas used in a year -Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation,the amount of coke used in blast furnaces each year;the yearly consumption of coke in blast furnaces;the annual use of coke in blast furnaces;the amount of coke that is used in blast furnaces each year -Annual_Consumption_Fuel_BrownCoal,the amount of brown coal used each year;the yearly consumption of brown coal;the annual rate of brown coal use;the amount of brown coal that is used each year -Annual_Consumption_Fuel_Charcoal,the amount of charcoal consumed each year;the yearly consumption of charcoal;how much charcoal is used each year;the annual charcoal usage -Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation,the annual use of charcoal and fuelwood in fuel transformation industries;the amount of charcoal and fuelwood used in fuel transformation industries each year;the yearly consumption of charcoal and fuelwood in fuel transformation industries;the annual rate of charcoal and fuelwood use in fuel transformation industries -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil,annual diesel oil consumption in chemical and petrochemical industries;how much diesel oil is used each year in chemical and petrochemical industries;the amount of diesel oil used annually in chemical and petrochemical industries;the annual diesel oil usage in chemical and petrochemical industries -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil,the amount of fuel oil used by chemical and petrochemical industries each year;the yearly consumption of fuel oil by the chemical and petrochemical industries;the annual rate at which fuel oil is used by the chemical and petrochemical industries;the total amount of fuel oil used by the chemical and petrochemical industries in a year -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal,the amount of hard coal used in chemical and petrochemical industries each year;the yearly consumption of hard coal in the chemical and petrochemical industries;the annual rate of hard coal consumption in the chemical and petrochemical industries;the annual hard coal usage in the chemical and petrochemical industries -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas,how much liquefied petroleum gas is consumed by the chemical and petrochemical industries each year?;what is the annual consumption of liquefied petroleum gas by the chemical and petrochemical industries?;what is the yearly amount of liquefied petroleum gas used by the chemical and petrochemical industries?;how much liquefied petroleum gas do the chemical and petrochemical industries use each year? -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas,how much natural gas is consumed by the chemical and petrochemical industries each year?;what is the annual consumption of natural gas by the chemical and petrochemical industries?;what is the amount of natural gas used by the chemical and petrochemical industries each year?;how much natural gas do the chemical and petrochemical industries use each year? -Annual_Consumption_Fuel_CokeOvenCoke,how much coke oven coke is consumed each year?;what is the annual consumption of coke oven coke?;what is the amount of coke oven coke consumed each year?;how much coke oven coke is used each year? -Annual_Consumption_Fuel_CokeOvens_HardCoal_FuelTransformation,coke oven coal consumption per year;annual coke oven coal usage;the amount of hard coal used in coke ovens each year;the annual rate of hard coal consumption by coke ovens -Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal,how much charcoal do businesses and public services use each year?;what is the annual consumption of charcoal by businesses and public services?;what is the amount of charcoal that businesses and public services use each year?;how much charcoal do businesses and public services use in a year? -Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil,the amount of diesel oil used in commerce and public services each year;the yearly consumption of diesel oil by businesses and government agencies;how much diesel oil is used by businesses and public services each year?;how much diesel oil is consumed by businesses and public services in a year? -Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil,fuel oil use by businesses and public services each year;the amount of fuel oil used by businesses and public services in a year;the annual fuel oil consumption of businesses and public services;the yearly amount of fuel oil used by businesses and public services -Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood,the amount of fuelwood used by businesses and government agencies each year;the yearly consumption of firewood by commercial and public sectors;the quantity of fuelwood used by businesses and government agencies in a year;how much fuelwood is consumed by commerce and public services each year? -Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal,the amount of hard coal used by businesses and public services each year;the yearly consumption of hard coal by commercial and public service entities;the annual rate at which hard coal is consumed by businesses and public services;the amount of hard coal that businesses and public services use each year -Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene,kerosene consumption in commerce and public services per year;annual kerosene use in commerce and public services;the amount of kerosene used in commerce and public services each year;kerosene use in commerce and public services on an annual basis -Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas,how much liquefied petroleum gas is used in commerce and public service industries each year?;what is the annual consumption of liquefied petroleum gas in commerce and public service industries?;what is the amount of liquefied petroleum gas used in commerce and public service industries each year?;how much liquefied petroleum gas is consumed in commerce and public service industries each year? -Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline,the amount of motor gasoline used in commerce and public services each year;the annual consumption of motor gasoline by businesses and government agencies;the yearly amount of motor gasoline used by businesses and government agencies to power their vehicles and equipment;the total amount of motor gasoline used by businesses and government agencies in a year -Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas,the amount of natural gas used by businesses and public services each year;the yearly usage of natural gas by commerce and public services;the amount of natural gas that businesses and public services use in a year;the annual natural gas consumption of commerce and public services -Annual_Consumption_Fuel_ConstructionIndustry_DieselOil,how much diesel oil does the construction industry consume annually?;what is the annual consumption of diesel oil by the construction industry?;what is the annual usage of diesel oil by the construction industry?;the amount of diesel oil used by the construction industry each year -Annual_Consumption_Fuel_ConstructionIndustry_FuelOil,how much fuel oil is used in construction each year?;how much fuel oil is consumed by the construction industry annually?;what is the annual fuel oil consumption of the construction industry?;what is the amount of fuel oil used in construction each year? -Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used in construction industries each year;the annual rate of liquefied petroleum gas consumption in construction industries;the yearly amount of liquefied petroleum gas used in construction;the annual liquefied petroleum gas consumption of construction industries -Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas,the amount of natural gas used by the construction industry each year;the annual rate of natural gas consumption by the construction industry;the total amount of natural gas used by the construction industry in a year;the yearly consumption of natural gas by the construction industry -Annual_Consumption_Fuel_DieselOil,what is the annual consumption of diesel oil?;what is the yearly consumption of diesel oil?;annual diesel oil usage;annual diesel oil consumption -Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline,how much aviation gasoline is consumed annually in domestic aviation transport?;what is the annual consumption of aviation gasoline in domestic aviation transport?;what is the amount of aviation gasoline consumed annually in domestic aviation transport?;how much aviation gasoline is used annually in domestic aviation transport? -Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel,how much kerosene jet fuel is used by domestic airlines each year?;how much kerosene jet fuel do domestic airlines burn each year?;what is the annual consumption of kerosene jet fuel by domestic airlines?;how much kerosene jet fuel is used by domestic airlines in a year? -Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil,1 the amount of diesel oil used in domestic navigation transport each year;2 the annual diesel oil consumption of domestic navigation transport;3 the yearly amount of diesel oil used in domestic navigation transport;4 the annual diesel oil usage in domestic navigation transport -Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil,the amount of fuel oil used in domestic navigation transport each year;the annual fuel oil consumption of domestic navigation transport;the yearly fuel oil usage of domestic navigation transport;the annual fuel oil demand of domestic navigation transport -Annual_Consumption_Fuel_ElectricityGeneration_Bagasse_FuelTransformation,the amount of bagasse used in fuel transformation each year;the yearly consumption of bagasse for fuel transformation;the annual rate of bagasse use in fuel transformation;the annual amount of bagasse that is transformed into fuel -Annual_Consumption_Fuel_ElectricityGeneration_BioGas_FuelTransformation,the yearly consumption of biogas in electricity generation industries;the annual rate of biogas consumption in electricity generation industries;the annual level of biogas consumption in electricity generation industries;the yearly consumption of biogas in electricity generation industries for fuel transformation -Annual_Consumption_Fuel_ElectricityGeneration_BrownCoal_FuelTransformation,how much brown coal is used to generate electricity each year?;what is the annual consumption of brown coal for electricity generation?;what is the annual amount of brown coal used to generate electricity?;how much brown coal is used to generate electricity in a year? -Annual_Consumption_Fuel_ElectricityGeneration_DieselOil_FuelTransformation,how much diesel oil is used to generate electricity each year?;what is the annual consumption of diesel oil for electricity generation?;how much diesel oil is burned each year to generate electricity?;what is the annual amount of diesel oil used to generate electricity? -Annual_Consumption_Fuel_ElectricityGeneration_FuelOil_FuelTransformation,the amount of fuel oil used in electricity generation and fuel transformation industries each year;the annual consumption of fuel oil in the electricity generation and fuel transformation industries;the yearly amount of fuel oil used in the electricity generation and fuel transformation industries;the annual rate of fuel oil consumption in the electricity generation and fuel transformation industries -Annual_Consumption_Fuel_ElectricityGeneration_Fuelwood_FuelTransformation,the amount of fuelwood used to generate electricity each year;the yearly consumption of fuelwood for electricity generation;the annual amount of fuelwood burned to produce electricity;the annual fuelwood usage for electricity generation -Annual_Consumption_Fuel_ElectricityGeneration_HardCoal_FuelTransformation,how much hard coal is used to generate electricity each year?;how much hard coal is used for electricity generation annually?;what is the annual consumption of hard coal for electricity generation?;what is the amount of hard coal used for electricity generation each year? -Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas_FuelTransformation,"how much fuel is consumed each year for electricity generation, natural gas, and fuel transformation?;what is the annual fuel consumption for electricity generation, natural gas, and fuel transformation?;what are the annual fuel consumption rates for electricity generation, natural gas, and fuel transformation?;what are the annual fuel consumption figures for electricity generation, natural gas, and fuel transformation?" -Annual_Consumption_Fuel_ElectricityGeneration_OtherBituminousCoal_FuelTransformation,how much bituminous coal is consumed annually for electricity generation?;what is the annual consumption of bituminous coal for electricity generation?;what is the amount of bituminous coal consumed annually for electricity generation?;how much bituminous coal is used annually to generate electricity? -Annual_Consumption_Fuel_EnergyIndustry_DieselOil_EnergyIndustryOwnUse,how much diesel oil do energy industries consume each year?;what is the annual consumption of diesel oil by energy industries?;what is the amount of diesel oil that energy industries consume each year?;what is the annual usage of diesel oil by energy industries? -Annual_Consumption_Fuel_EnergyIndustry_FuelOil_EnergyIndustryOwnUse,annual fuel oil consumption by the energy industry for its own use;the amount of fuel oil used by the energy industry each year;the annual fuel oil usage of the energy industry;the amount of fuel oil the energy industry consumes each year -Annual_Consumption_Fuel_EnergyIndustry_LiquifiedPetroleumGas_EnergyIndustryOwnUse,liquefied petroleum gas (lpg) consumption in energy industries;how much lpg is used in energy industries;how much liquefied petroleum gas is consumed by energy industries each year?;what is the annual consumption of liquefied petroleum gas in energy industries? -Annual_Consumption_Fuel_EnergyIndustry_NaturalGas_EnergyIndustryOwnUse,how much natural gas is consumed by the energy industry each year?;what is the annual consumption of natural gas by the energy industry?;how much natural gas does the energy industry use each year?;what is the amount of natural gas consumed by the energy industry each year? -Annual_Consumption_Fuel_EnergyIndustry_RefineryGas_EnergyIndustryOwnUse,"sure here are five different ways of saying ""annual consumption of refinery gas in energy industry own use"":" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil,how much diesel oil is consumed by the food and tobacco industries each year?;what is the annual consumption of diesel oil in the food and tobacco industries?;how much diesel oil do the food and tobacco industries use each year?;what is the annual diesel oil consumption of the food and tobacco industries? -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil,the amount of fuel oil used by the food and tobacco industries each year;the annual rate of fuel oil consumption in the food and tobacco industries;the yearly amount of fuel oil that is used by the food and tobacco industries;the total amount of fuel oil that is consumed by the food and tobacco industries in a year -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal,how much hard coal is used by the food and tobacco industries each year?;what is the annual consumption of hard coal by the food and tobacco industries?;how much hard coal do the food and tobacco industries use each year?;what is the annual usage of hard coal by the food and tobacco industries? -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas,how much liquefied petroleum gas is consumed annually by the food and tobacco industries?;what is the annual consumption of liquefied petroleum gas in the food and tobacco industries?;what is the amount of liquefied petroleum gas consumed annually by the food and tobacco industries?;how much liquefied petroleum gas do the food and tobacco industries consume annually? -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas,the amount of natural gas used by the food and tobacco industries each year;the yearly consumption of natural gas by the food and tobacco industries;the annual natural gas usage of the food and tobacco industries;the amount of natural gas that the food and tobacco industries use each year -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherBituminousCoal,how much bituminous coal do the food and tobacco industries consume each year?;what is the annual consumption of bituminous coal by the food and tobacco industries?;how much bituminous coal do the food and tobacco industries use each year?;what is the annual usage of bituminous coal by the food and tobacco industries? -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal,total annual consumption of coal in all sectors;total coal consumption in all sectors per year;the amount of coal consumed in all sectors each year;the total amount of coal used in all sectors annually -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricPower, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtility,the total amount of coal consumed by electric utilities in one year;the total amount of coal used by the electric utility industry each year;the total amount of coal consumed by electric utilities each year;what is the total amount of coal that electric utilities use each year? -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Commercial, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen,the total amount of natural gas consumed in a year;the total natural gas consumed in a year;total natural gas consumption per year;the total amount of natural gas used in a year -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricPower,how much natural gas is consumed by electric power plants each year?;what is the annual consumption of natural gas by electric power plants?;what is the amount of natural gas that electric power plants consume each year?;how much natural gas is used by electric power plants in a year? -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtility,total annual natural gas consumption by electric utilities;the total amount of natural gas consumed by electric utilities each year;the total annual usage of natural gas by electric utilities;the total annual amount of natural gas that electric utilities use -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen,annual electric utility consumption for cogeneration for electricity generation and thermal output;annual cogeneration consumption by electric utilities for electricity generation and thermal output;annual electricity generation and thermal output from cogeneration by electric utilities;annual cogeneration output from electric utilities for electricity generation and thermal output -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityNonCogen,"annual total consumption of natural gas in electric utilities, excluding cogeneration;the total amount of natural gas consumed by electric utilities in a year, excluding cogeneration;annual total consumption of natural gas by electric utilities that are not cogeneration facilities;total annual consumption of natural gas by electric utilities that are not cogeneration facilities" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndependentPowerProducers, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Industrial,"industrial annual consumption of natural gas for electricity generation and thermal output;annual industrial consumption of natural gas for electricity generation and thermal output;natural gas consumption for electricity generation and thermal output by industry, annually;annual natural gas consumption by industry for electricity generation and thermal output" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndustrialCogen,the total amount of natural gas consumed by industrial cogeneration annually;the total amount of natural gas used in industrial cogeneration over the course of a year;total natural gas consumption in industrial chp per year;total annual natural gas consumption in industrial cogeneration -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,total petroleum liquids consumed in all sectors annually;the total amount of petroleum liquids consumed in all sectors each year;the total annual consumption of petroleum liquids in all sectors;1 total annual consumption of petroleum liquids in all sectors -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Commercial,the total amount of petroleum liquids used by commercial enterprises in a year;the total amount of petroleum liquids used by non-residential consumers in a year;the total amount of petroleum liquids used by non-household consumers in a year -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricPower,the annual consumption of petroleum liquids for electricity generation and thermal output in electric power;the annual consumption of petroleum liquids for electricity generation and thermal output in the power sector;what is the annual amount of petroleum liquids used for electricity generation and thermal output in the electric power industry?;annual consumption of petroleum liquids for electricity generation and thermal output in electric power -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtility,the amount of petroleum liquids used by electric utilities in the us for electricity generation and thermal output;the annual consumption of petroleum liquids by electric utilities in the us for electricity generation and thermal output;the amount of petroleum liquids used by electric utilities for electricity generation and thermal output each year;the annual consumption of petroleum liquids by electric utilities for electricity generation and thermal output -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtilityNonCogen,the amount of petroleum liquids used for electricity generation in non-cogen electric utilities each year;the annual consumption of petroleum liquids in non-cogen electric utilities for electricity generation;the annual amount of petroleum liquids used in non-cogen electric utilities to generate electricity;the amount of petroleum liquids used in non-cogen electric utilities to generate electricity each year -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndependentPowerProducers,annual total consumption of petroleum liquids in independent power producers;annual consumption of petroleum liquids by independent power producers;total annual consumption of petroleum liquids by independent power producers;petroleum liquids consumption by independent power producers in a year -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Industrial,annual consumption of petroleum liquids by all industries;annual petroleum liquids consumption by all industries;total annual consumption of petroleum liquids by all industries -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndustrialCogen,total annual consumption of petroleum liquids in industrial cogeneration;annual petroleum liquid consumption in industrial cogeneration;the amount of petroleum liquids consumed in industrial cogeneration each year;the total amount of petroleum liquids used in industrial cogeneration in a year -Annual_Consumption_Fuel_ForElectricityGeneration_Coal,"coal consumption for electricity generation, annually, across all sectors;coal consumption for electricity generation, annually, in all sectors" -Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricPower, -Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtility,how much coal does the electric utility industry use each year?;how much coal is consumed by the electric utility industry annually?;what is the annual consumption of coal by the electric utility industry?;what is the amount of coal used by the electric utility industry each year? -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas,what is the annual consumption of natural gas for electricity generation? -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Commercial,commercial natural gas consumption for electricity generation;natural gas used for electricity generation in the commercial sector;the amount of natural gas used by businesses to generate electricity;the amount of natural gas used by commercial buildings to generate electricity -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen,the yearly consumption of natural gas for electricity generation;the annual usage of natural gas for electricity generation;how much natural gas is used for electricity generation annually?;what is the amount of natural gas used for electricity generation each year? -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,what is the annual consumption of natural gas for electricity?;what is the annual natural gas consumption for electricity?;the yearly amount of natural gas used to power the electric grid -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,what is the annual consumption of natural gas by electric utilities?;what is the annual natural gas consumption of electric utilities?;what is the amount of natural gas used by electric utilities each year?;the amount of natural gas used by electric utilities each year -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen,how much natural gas do cogeneration utilities use to generate electricity each year?;what is the annual natural gas consumption of cogeneration utilities for electricity generation?;what is the annual natural gas usage of cogeneration utilities for electricity generation?;the amount of natural gas used by cogeneration utilities to generate electricity each year -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,how much natural gas is used to generate electricity each year?;how much natural gas is used to generate electricity in a year?;how much natural gas is used to generate electricity each year on average?;the amount of natural gas used each year to generate electricity -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,the total amount of natural gas used to generate electricity each year;the total annual use of natural gas for electricity generation;the total amount of natural gas that is used to produce electricity in a year;the total annual use of natural gas to produce electricity -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Industrial,the amount of natural gas used by all industries each year;the annual consumption of natural gas by all industries;the total amount of natural gas used by all industries in a year;the yearly consumption of natural gas by all industries -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen, -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,the amount of petroleum liquids used for electricity generation in all sectors each year;the annual consumption of petroleum liquids for electricity generation in all sectors;the yearly amount of petroleum liquids used for electricity generation in all sectors;the annual use of petroleum liquids for electricity generation in all sectors -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Commercial,the annual use of petroleum liquids in all commercial sectors;the yearly consumption of petroleum liquids by commercial entities;the annual usage of petroleum liquids by businesses;the yearly amount of petroleum liquids used by commercial enterprises -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the amount of petroleum liquids used to generate electricity each year by electric power companies;the annual amount of petroleum liquids used by electric power companies to generate electricity;the annual consumption of petroleum liquids by electric power companies for electricity generation;the annual amount of petroleum liquids used by electric power companies to generate electricity each year -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the amount of petroleum liquids used for electricity generation each year;the annual amount of petroleum liquids used to generate electricity;the total amount of petroleum liquids used to generate electricity in a year;the annual consumption of petroleum liquids for the purpose of generating electricity -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen,"annual consumption of petroleum liquids by electric utilities that are not cogeneration facilities;annual consumption of petroleum liquids by electric utilities that are not cogeneration plants;annual consumption of petroleum liquids by electric utilities, not including cogeneration;electric utility non-cogen petroleum liquids annual consumption" -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,the annual consumption of petroleum liquids by independent power producers for electricity generation;the annual amount of petroleum liquids used by independent power producers to generate electricity;the annual consumption of petroleum liquids by independent power producers for the purpose of electricity generation;independent power producers' annual consumption of petroleum liquids for electricity generation -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Industrial,the amount of petroleum liquids used for electricity generation in all industries each year;the annual consumption of petroleum liquids for electricity generation in all industries;the yearly consumption of petroleum liquids for electricity generation in all industries;the amount of petroleum liquids used to generate electricity in all industries each year -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialCogen,annual petroleum liquids consumption in cogeneration power plants;the amount of petroleum liquids used in cogeneration power plants each year;the yearly consumption of petroleum liquids in cogeneration power plants;the annual amount of petroleum liquids used in cogeneration power plants -Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal,the amount of coal used each year to generate heat;the annual consumption of coal for thermal energy;the amount of coal used each year to produce heat;the annual consumption of coal for heating -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial,commercial natural gas consumption for useful thermal output per year;the amount of natural gas consumed by commercial businesses for useful thermal output each year;the annual amount of natural gas used by commercial businesses for useful thermal output;the yearly amount of natural gas consumed by commercial businesses for useful thermal output -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen,annual consumption of natural gas for useful thermal output;the amount of natural gas used each year to generate heat;the annual amount of natural gas used for heating purposes;the annual amount of natural gas used to produce heat -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower,electric power industries' annual consumption of natural gas;the amount of natural gas used by the electric power industry -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen,the amount of natural gas used by electric utilities for cogeneration each year;the annual rate of natural gas consumption by electric utilities for cogeneration;annual consumption of natural gas by electric utility cogeneration;annual natural gas consumption by electric utility cogeneration -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers,the amount of natural gas used by independent power producers each year to generate heat;the yearly consumption of natural gas by independent power producers for useful thermal output;the annual amount of natural gas used by independent power producers to produce heat;the amount of natural gas that independent power producers use each year to generate heat -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Industrial, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndustrialCogen, -Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids,the amount of petroleum liquids consumed annually for thermal output;the annual use of petroleum liquids for thermal energy;how much petroleum does the united states use for thermal output?;what is the annual consumption of petroleum liquids for thermal output in the united states? -Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_Industrial,total petroleum liquids consumed by all industries each year;the total amount of petroleum liquids consumed by all industries in a year;the annual amount of petroleum liquids used by all industries;the total amount of petroleum liquids that all industries use in a year -Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_IndustrialCogen,the amount of petroleum liquids used each year to generate useful thermal output by industrial cogeneration;the annual consumption of petroleum liquids for useful thermal output from industrial cogeneration;industrial cogeneration’s annual consumption of petroleum liquids for useful thermal output;annual industrial cogeneration consumption of petroleum liquids for useful thermal output -Annual_Consumption_Fuel_FuelOil,the amount of fuel oil consumed each year;the yearly usage of fuel oil;the annual rate of fuel oil consumption;the amount of fuel oil used in a year -Annual_Consumption_Fuel_FuelTransformationIndustry_Bagasse_FuelTransformation,1 the amount of bagasse used in fuel transformation industries each year;2 the annual rate of bagasse consumption in fuel transformation industries;3 the yearly use of bagasse in fuel transformation industries;4 the amount of bagasse that is consumed in fuel transformation industries each year -Annual_Consumption_Fuel_FuelTransformationIndustry_BioGas_FuelTransformation,the annual rate at which biogas is consumed by fuel transformation industries;the amount of biogas that fuel transformation industries use each year -Annual_Consumption_Fuel_FuelTransformationIndustry_BrownCoal_FuelTransformation,the amount of brown coal used in fuel transmission industries each year;the yearly consumption of brown coal by fuel transmission industries;the annual amount of brown coal used by fuel transmission industries;the yearly usage of brown coal by fuel transmission industries -Annual_Consumption_Fuel_FuelTransformationIndustry_CokeOvenCoke_FuelTransformation,coke oven coke consumption in fuel transformation per year;the amount of coke oven coke used in fuel transformation each year;the annual rate of coke oven coke consumption in fuel transformation;the yearly amount of coke oven coke used in fuel transformation -Annual_Consumption_Fuel_FuelTransformationIndustry_CrudeOil_FuelTransformation,the amount of crude oil used by fuel transformation industries each year;the annual consumption of crude oil by fuel transformation industries;the yearly use of crude oil by fuel transformation industries;the amount of crude oil that fuel transformation industries use each year -Annual_Consumption_Fuel_FuelTransformationIndustry_DieselOil_FuelTransformation,the amount of diesel oil used in fuel transmission industries each year;the yearly consumption of diesel oil by fuel transmission industries;the annual usage of diesel oil in fuel transmission industries;the amount of diesel oil that fuel transmission industries use each year -Annual_Consumption_Fuel_FuelTransformationIndustry_FuelOil_FuelTransformation,fuel oil consumption by fuel transformation industries;the amount of fuel oil used by fuel transformation industries;fuel oil used in fuel transformation industries;fuel transformation industries' fuel oil usage -Annual_Consumption_Fuel_FuelTransformationIndustry_Fuelwood_FuelTransformation,fuelwood consumption by fuel transformation industries per year;the amount of fuelwood used by fuel transformation industries each year;the yearly consumption of fuelwood by fuel transformation industries;the annual amount of fuelwood used by fuel transformation industries -Annual_Consumption_Fuel_FuelTransformationIndustry_HardCoal_FuelTransformation,how much hard coal is used by the fuel transformation industries each year?;what is the annual consumption of hard coal by the fuel transformation industries?;how much hard coal do the fuel transformation industries use each year?;what is the annual usage of hard coal by the fuel transformation industries? -Annual_Consumption_Fuel_FuelTransformationIndustry_LiquifiedPetroleumGas_FuelTransformation,the amount of liquefied petroleum gas used by fuel transformation industries each year;the annual rate of liquefied petroleum gas consumption in fuel transformation industries;the yearly consumption of liquefied petroleum gas by fuel transformation industries;the total amount of liquefied petroleum gas used by fuel transformation industries in one year -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGasLiquids_FuelTransformation,annual consumption of natural gas liquids in the fuel transformation industry;the amount of natural gas liquids consumed by the fuel transformation industry each year;the annual rate of natural gas liquids consumption by the fuel transformation industry;the annual amount of natural gas liquids used by the fuel transformation industry -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGas_FuelTransformation,the amount of natural gas used in fuel transformation industries each year;the yearly consumption of natural gas by fuel transformation industries;the annual amount of natural gas that fuel transformation industries use;the yearly amount of natural gas that is consumed by fuel transformation industries -Annual_Consumption_Fuel_FuelTransformationIndustry_OtherBituminousCoal_FuelTransformation,annual consumption of bituminous coal in fuel transformation industries;the amount of bituminous coal used in fuel transformation industries each year;the yearly consumption of bituminous coal in fuel transformation industries;the annual usage of bituminous coal in fuel transformation industries -Annual_Consumption_Fuel_FuelTransformationIndustry_RefineryFeedstocks_FuelTransformation,the annual consumption of refinery feedstocks in the fuel transformation industry;the amount of refinery feedstocks consumed annually in the fuel transformation industry;the yearly consumption of refinery feedstocks in the fuel transformation industry;the annual rate of consumption of refinery feedstocks in the fuel transformation industry -Annual_Consumption_Fuel_Fuelwood,annual fuelwood consumption;the amount of fuelwood used each year;the yearly consumption of fuelwood;the amount of fuelwood used in a year -Annual_Consumption_Fuel_HardCoal,how much hard coal is consumed annually?;what is the annual consumption of hard coal?;how much hard coal is used each year?;what is the yearly consumption of hard coal? -Annual_Consumption_Fuel_Households_Charcoal,the amount of charcoal used in households each year;the yearly amount of charcoal used in households;the annual household consumption of charcoal;the amount of charcoal that households use each year -Annual_Consumption_Fuel_Households_DieselOil,1 how much diesel oil do households consume each year?;2 what is the annual consumption of diesel oil in households?;3 what is the average amount of diesel oil that households consume each year?;4 how much diesel oil do households use each year? -Annual_Consumption_Fuel_Households_FuelOil,how much fuel oil do households use each year?;how much fuel oil do households consume annually?;what is the annual fuel oil consumption of households?;what is the annual fuel oil usage of households? -Annual_Consumption_Fuel_Households_Fuelwood,how much fuelwood do households use each year?;what is the annual consumption of fuelwood in households?;what is the average amount of fuelwood that households use each year?;how much fuelwood do households typically use each year? -Annual_Consumption_Fuel_Households_HardCoal,"the amount of hard coal used in households each year;the yearly consumption of hard coal by households;the annual rate of hard coal consumption in households;the amount of hard coal that households use each year, on average" -Annual_Consumption_Fuel_Households_Kerosene,how much kerosene do households use each year?;how much kerosene is used in households annually?;what is the annual consumption of kerosene in households?;what is the average amount of kerosene used in households each year? -Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas,the amount of liquefied petroleum gas that households consume each year;the annual amount of liquefied petroleum gas that households use;the yearly consumption of liquefied petroleum gas by households;the amount of liquefied petroleum gas that households use in a year -Annual_Consumption_Fuel_Households_NaturalGas,1 how much natural gas do households use each year?;2 what is the annual consumption of natural gas in households?;3 what is the average amount of natural gas used by households each year?;4 how much natural gas do households use in a year? -Annual_Consumption_Fuel_Households_VegetalWaste,how much vegetable waste do households consume each year?;what is the annual consumption of vegetable waste in households?;what is the average amount of vegetable waste that households consume each year?;how much vegetable waste do households throw away each year? -Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse,"sure here are 5 different ways to say ""annual consumption of natural gases"":" -Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline,how much aviation gasoline is consumed in international aviation bunkers each year?;how much aviation gasoline is used in international aviation bunkers annually?;what is the annual consumption of aviation gasoline in international aviation bunkers?;what is the annual usage of aviation gasoline in international aviation bunkers? -Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel,the amount of kerosene jet fuel used in international aviation bunkers each year;the quantity of kerosene jet fuel used in international aviation bunkers annually;the yearly consumption of kerosene jet fuel in international aviation bunkers;the annual rate of kerosene jet fuel consumption in international aviation bunkers -Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil,the amount of diesel oil consumed by international marine bunkers each year;the yearly consumption of diesel oil by international marine bunkers;the annual rate of diesel oil consumption by international marine bunkers;the annual amount of diesel oil used by international marine bunkers -Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil,how much fuel oil is consumed by international marine bunkers each year?;what is the annual consumption of fuel oil in international marine bunkers?;what is the amount of fuel oil used by international marine bunkers each year?;how much fuel oil do international marine bunkers use each year? -Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas,1 the amount of blast furnace gas used in iron and steel production each year;2 the annual rate of blast furnace gas consumption in the iron and steel industry;3 the total amount of blast furnace gas used in iron and steel production over the course of a year;4 the yearly consumption of blast furnace gas in the iron and steel sector -Annual_Consumption_Fuel_IronSteel_CokeOvenCoke,1 the annual consumption of coke oven coke in iron and steel production;2 the amount of coke oven coke used in iron and steel production each year;3 the yearly consumption of coke oven coke in the iron and steel industry;4 the annual usage of coke oven coke in iron and steelmaking -Annual_Consumption_Fuel_IronSteel_DieselOil,how much diesel oil is consumed by the iron and steel industry each year?;what is the annual consumption of diesel oil in the iron and steel industry?;what is the amount of diesel oil used by the iron and steel industry each year?;how much diesel oil does the iron and steel industry use each year? -Annual_Consumption_Fuel_IronSteel_FuelOil,how much fuel oil is used in iron and steel production each year?;what is the annual consumption of fuel oil in the iron and steel industry?;how much fuel oil does the iron and steel industry use each year?;what is the annual fuel oil consumption of the iron and steel industry? -Annual_Consumption_Fuel_IronSteel_HardCoal,how much fuel is consumed each year by iron and steel mills and hard coal mines?;what is the annual fuel consumption of iron and steel mills and hard coal mines?;what is the amount of fuel consumed each year by iron and steel mills and hard coal mines?;how much fuel do iron and steel mills and hard coal mines consume each year? -Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used in the iron and steel industry each year;the annual consumption of liquefied petroleum gas in the iron and steel industry;the yearly use of liquefied petroleum gas in the iron and steel industry;the annual rate of liquefied petroleum gas consumption in the iron and steel industry -Annual_Consumption_Fuel_IronSteel_NaturalGas,annual consumption of natural gas in iron and steel industry;annual natural gas consumption by the iron and steel industry;the amount of natural gas used by the iron and steel industry each year;the annual natural gas usage of the iron and steel industry -Annual_Consumption_Fuel_Kerosene, -Annual_Consumption_Fuel_KeroseneJetFuel,how much kerosene jet fuel is consumed each year?;how much kerosene jet fuel is used each year?;what is the annual consumption of kerosene jet fuel?;what is the yearly consumption of kerosene jet fuel? -Annual_Consumption_Fuel_LiquifiedPetroleumGas, -Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse, -Annual_Consumption_Fuel_Lubricants,how much lubricant is used each year?;how much lubricant is consumed annually?;what is the annual consumption of lubricants?;how much lubricant is used in a year? -Annual_Consumption_Fuel_Lubricants_NonEnergyUse,use of lubricants in non-energy applications;consumption of lubricants for non-energy purposes;lubricant use in non-energy applications;non-energy use of lubricants -Annual_Consumption_Fuel_MachineryIndustry_DieselOil,the annual consumption of diesel oil by machinery industries;the yearly consumption of diesel oil by machinery industries;the annual diesel oil consumption of machinery industries;what is the annual consumption of diesel oil by machinery industries? -Annual_Consumption_Fuel_MachineryIndustry_FuelOil,how much fuel oil is used by machinery industries each year?;what is the annual consumption of fuel oil in machinery industries?;what is the amount of fuel oil used by machinery industries each year?;how much fuel oil do machinery industries use each year? -Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas,how much liquefied petroleum gas is used in machinery industries each year?;what is the annual consumption of liquefied petroleum gas in machinery industries?;how much liquefied petroleum gas is consumed by machinery industries each year?;what is the amount of liquefied petroleum gas used by machinery industries each year? -Annual_Consumption_Fuel_MachineryIndustry_NaturalGas,how much natural gas is used by machinery industries each year?;what is the annual consumption of natural gas by machinery industries?;what is the amount of natural gas used by machinery industries each year?;how much natural gas do machinery industries use each year? -Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,the amount of coke oven coke consumed by main activity producer combined heat power plants each year;the yearly consumption of coke oven coke by main activity producer combined heat power plants;the annual amount of coke oven coke used by main activity producer combined heat power plants;the yearly usage of coke oven coke by main activity producer combined heat power plants -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_DieselOil_FuelTransformation,diesel oil consumption in power plants and fuel transformation industries per year;annual diesel oil usage in power plants and fuel transformation industries;the amount of diesel oil used in power plants and fuel transformation industries each year;the annual consumption of diesel oil by power plants and fuel transformation industries -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_FuelOil_FuelTransformation,annual fuel oil consumption in power plants that generate electricity as their main activity;annual fuel oil use in power plants that generate electricity as their primary activity;annual fuel oil usage in power plants that generate electricity as their main business;annual fuel oil consumption in power plants that generate electricity as their primary business -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_HardCoal_FuelTransformation,"the amount of fuel consumed by electricity power plants, hard coal, and fuel transformation each year;the total amount of fuel used by electricity power plants, hard coal, and fuel transformation in a year;the annual fuel usage of electricity power plants, hard coal, and fuel transformation;the annual fuel consumption of electricity power plants, hard coal, and fuel transformation, in total" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_NaturalGas_FuelTransformation,electricity power plants as the main activity producer of natural gas consumption -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherBituminousCoal_FuelTransformation,"annual consumption of fuel: main activity producer electricity power plants, un_other bituminous coal, fuel transformation;the amount of fuel consumed by electricity power plants each year, including bituminous coal;the amount of fuel used by electricity power plants each year, including bituminous coal, for fuel transformation;the amount of fuel consumed each year by electricity power plants, which is mainly bituminous coal, is transformed into energy" -Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal,the amount of anthracite coal used by manufacturing industries each year;the annual usage of anthracite coal in manufacturing;the yearly consumption of anthracite coal in manufacturing;the annual rate of anthracite coal consumption in manufacturing -Annual_Consumption_Fuel_Manufacturing_Bagasse,the amount of bagasse used in manufacturing industries each year;the yearly consumption of bagasse in manufacturing;the annual usage of bagasse in manufacturing industries;the yearly amount of bagasse used in manufacturing -Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas,how much blast furnace gas is consumed by manufacturing industries each year?;what is the annual consumption of blast furnace gas by manufacturing industries?;how much blast furnace gas do manufacturing industries consume each year?;what is the amount of blast furnace gas consumed by manufacturing industries each year? -Annual_Consumption_Fuel_Manufacturing_BrownCoal,how much brown coal is used in manufacturing each year?;how much brown coal is consumed by manufacturing each year?;what is the annual consumption of brown coal in manufacturing?;what is the amount of brown coal used in manufacturing each year? -Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke,annual coke oven coke consumption in manufacturing;the amount of coke oven coke used in manufacturing each year;the annual rate of coke oven coke consumption in manufacturing;the amount of coke oven coke used in manufacturing in a year -Annual_Consumption_Fuel_Manufacturing_DieselOil,annual diesel oil consumption by manufacturing industries;the yearly consumption of diesel oil by manufacturing industries;the annual rate of diesel oil consumption by manufacturing industries;what is the annual consumption of diesel oil by manufacturing industries? -Annual_Consumption_Fuel_Manufacturing_FuelOil,how much fuel oil is used in manufacturing each year?;how much fuel oil do manufacturers use each year?;what is the annual consumption of fuel oil in manufacturing?;how much fuel oil is consumed in manufacturing each year? -Annual_Consumption_Fuel_Manufacturing_Fuelwood,how much fuelwood is used in manufacturing each year?;what is the annual consumption of fuelwood in manufacturing?;how much fuelwood is consumed in manufacturing each year?;what is the amount of fuelwood used in manufacturing each year? -Annual_Consumption_Fuel_Manufacturing_HardCoal,the amount of hard coal used by manufacturing industries each year;the annual rate at which manufacturing industries consume hard coal;the yearly consumption of hard coal by manufacturing industries;the amount of hard coal that manufacturing industries use each year -Annual_Consumption_Fuel_Manufacturing_Kerosene,1 the amount of kerosene used by manufacturing industries each year;2 the annual rate of kerosene consumption in manufacturing industries;3 the yearly amount of kerosene used by manufacturing industries;4 the total amount of kerosene used by manufacturing industries in a year -Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas,annual consumption of liquefied petroleum gas in manufacturing;liquefied petroleum gas consumption in manufacturing on an annual basis;the amount of liquefied petroleum gas consumed in manufacturing each year;the annual liquefied petroleum gas consumption of manufacturing -Annual_Consumption_Fuel_Manufacturing_MotorGasoline,5 the annual gasoline consumption of manufacturing industries;the annual gasoline usage of manufacturing industries;how much motor gasoline do manufacturing industries use each year?;how much motor gasoline do manufacturing industries use in a year? -Annual_Consumption_Fuel_Manufacturing_NaturalGas,1 the amount of natural gas used in manufacturing each year;2 the annual rate of natural gas consumption in manufacturing;3 the yearly amount of natural gas used in manufacturing;5 the amount of natural gas used in manufacturing in a year -Annual_Consumption_Fuel_Manufacturing_OtherBituminousCoal,the amount of other bituminous coal used by manufacturing industries each year;the yearly consumption of other bituminous coal by manufacturing industries;the annual rate of consumption of other bituminous coal by manufacturing industries;the amount of other bituminous coal that manufacturing industries use each year -Annual_Consumption_Fuel_Manufacturing_OtherOilProducts,the amount of un other oil product consumed by manufacturing industries each year;the annual rate of consumption of un other oil product by manufacturing industries;the yearly consumption of un other oil product by manufacturing industries;the amount of un other oil product that manufacturing industries use each year -Annual_Consumption_Fuel_Manufacturing_PetroleumCoke,how much petroleum coke is used by manufacturing industries each year?;how much petroleum coke do manufacturing industries use each year?;what is the total amount of petroleum coke used by manufacturing industries in a year?;the amount of petroleum coke used by manufacturing industries each year -Annual_Consumption_Fuel_Manufacturing_VegetalWaste,the amount of vegetable waste produced each year;the annual amount of vegetable waste used in manufacturing;the quantity of vegetable waste used in manufacturing each year;the annual consumption of vegetable waste in manufacturing -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil,the amount of diesel oil used in mining and quarrying industries each year;the yearly consumption of diesel oil in the mining and quarrying industries;the annual rate of diesel oil consumption in the mining and quarrying industries;the total amount of diesel oil used in mining and quarrying industries in one year -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil,the amount of fuel oil used in mining and quarrying industries each year;the yearly consumption of fuel oil in the mining and quarrying sector;the annual rate of fuel oil consumption in the mining and quarrying industry;the total amount of fuel oil used in mining and quarrying industries over the course of a year -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas,how much liquefied petroleum gas is consumed annually by the mining and quarrying industries?;what is the annual consumption of liquefied petroleum gas in the mining and quarrying industries?;what is the amount of liquefied petroleum gas consumed annually by the mining and quarrying industries?;what is the annual usage of liquefied petroleum gas in the mining and quarrying industries? -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas,how much natural gas is used in mining and quarrying industries each year?;how much natural gas do mining and quarrying industries consume annually?;what is the annual consumption of natural gas in mining and quarrying industries?;what is the amount of natural gas used in mining and quarrying industries each year? -Annual_Consumption_Fuel_MotorGasoline,the yearly consumption of motor gasoline;annual fuel consumption of motor gasoline;annual gasoline consumption;how much gasoline is consumed each year -Annual_Consumption_Fuel_Naphtha,the yearly consumption of naphtha;annual naphtha usage;annual naphtha demand;how much naphtha is consumed each year? -Annual_Consumption_Fuel_Naphtha_NonEnergyUse,the amount of naphtha used for non-energy purposes each year;the annual use of naphtha for non-energy purposes;the yearly consumption of naphtha for non-energy uses;the annual rate of naphtha consumption for non-energy uses -Annual_Consumption_Fuel_NaturalGas,how much natural gas does the us consume each year?;what is the annual natural gas consumption of the united states?;how much natural gas does the us use in a year?;how much natural gas does the us go through each year? -Annual_Consumption_Fuel_NaturalGas_NonEnergyUse,the amount of natural gas used for non-energy purposes each year;the annual consumption of natural gas for non-energy uses;the yearly amount of natural gas used for non-energy purposes;the annual non-energy use of natural gas -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil,how much diesel oil is used in the non-ferrous metals industry each year?;what is the annual consumption of diesel oil in the non-ferrous metals industry?;how much diesel oil does the non-ferrous metals industry use each year?;what is the annual usage of diesel oil in the non-ferrous metals industry? -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas,the amount of natural gas consumed by non-ferrous metal industries each year;the annual natural gas consumption of non-ferrous metal industries;the yearly natural gas usage of non-ferrous metal industries;the total natural gas consumed by non-ferrous metal industries in one year -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil,diesel oil consumption in the non-metallic minerals industry;annual diesel oil use in the non-metallic minerals industry;the amount of diesel oil used in the non-metallic minerals industry each year;the annual rate of diesel oil consumption in the non-metallic minerals industry -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil,how much fuel oil does the non-metallic industry consume annually?;how much fuel oil does the non-metallic sector use each year?;what is the annual fuel oil consumption of the non-metallic industry?;what is the annual fuel oil usage of the non-metallic sector? -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal,the amount of hard coal used in non-metallic minerals industries each year;the yearly consumption of hard coal in non-metallic minerals industries;the annual rate at which hard coal is used in non-metallic minerals industries;the annual amount of hard coal that is consumed in non-metallic minerals industries -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas consumed by non-metallic minerals industries each year;the yearly consumption of liquefied petroleum gas by non-metallic minerals industries;the annual rate of liquefied petroleum gas consumption by non-metallic minerals industries;the amount of liquefied petroleum gas that non-metallic minerals industries use each year -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas,the amount of natural gas consumed by non-metallic minerals industries each year;the yearly consumption of natural gas by non-metallic minerals industries;the annual rate of natural gas consumption by non-metallic minerals industries;the amount of natural gas used by non-metallic minerals industries in a year -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherBituminousCoal,the amount of other bituminous coal consumed by non-metallic mineral industries each year;the yearly consumption of other bituminous coal by non-metallic mineral industries;the annual rate of consumption of other bituminous coal by non-metallic mineral industries;the annual amount of other bituminous coal used by non-metallic mineral industries -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke,non-metallic minerals industries' annual petroleum coke consumption;the amount of petroleum coke consumed by non-metallic minerals industries each year;the annual rate of petroleum coke consumption by non-metallic minerals industries;the total amount of petroleum coke consumed by non-metallic minerals industries in a year -Annual_Consumption_Fuel_OilGasExtraction_NaturalGas_EnergyIndustryOwnUse,the amount of natural gas used for oil and gas extraction each year;the yearly consumption of natural gas for oil and gas extraction;the annual use of natural gas for oil and gas extraction;the amount of natural gas used for oil and gas extraction in a year -Annual_Consumption_Fuel_OilRefineries_CrudeOil_FuelTransformation,what is the annual consumption of crude oil for fuel transformation?;the annual amount of crude oil that is transformed into fuel;the annual rate of crude oil consumption for fuel transformation -Annual_Consumption_Fuel_OilRefineries_DieselOil_EnergyIndustryOwnUse,the amount of diesel oil consumed by oil refineries each year;the annual diesel oil usage of oil refineries;the annual consumption of diesel oil by oil refineries;the amount of diesel oil that oil refineries use each year -Annual_Consumption_Fuel_OilRefineries_FuelOil_EnergyIndustryOwnUse,the amount of fuel oil used by oil refineries each year;the annual rate of fuel oil consumption by oil refineries;the total amount of fuel oil used by oil refineries in a year;the yearly consumption of fuel oil by oil refineries -Annual_Consumption_Fuel_OilRefineries_LiquifiedPetroleumGas_EnergyIndustryOwnUse,how much liquefied petroleum gas is used in oil refineries each year?;what is the annual consumption of liquefied petroleum gas in oil refineries?;what is the amount of liquefied petroleum gas used in oil refineries each year?;how much liquefied petroleum gas is consumed in oil refineries each year? -Annual_Consumption_Fuel_OilRefineries_NaturalGasLiquids_FuelTransformation,the amount of natural gas liquids consumed each year in the process of converting them into fuel;the yearly consumption of natural gas liquids for fuel transformation;the annual amount of natural gas liquids used to transform into fuel;the annual usage of natural gas liquids in fuel transformation -Annual_Consumption_Fuel_OilRefineries_NaturalGas_EnergyIndustryOwnUse,how much natural gas do oil refineries use each year?;how much natural gas does the oil refining industry consume annually?;what is the annual natural gas consumption of oil refineries?;how much natural gas is used by oil refineries in a year? -Annual_Consumption_Fuel_OilRefineries_RefineryFeedstocks_FuelTransformation,how much refinery feedstock is consumed annually by oil refineries?;what is the annual consumption of refinery feedstock by oil refineries?;what is the amount of refinery feedstock consumed annually by oil refineries?;how much refinery feedstock do oil refineries consume annually? -Annual_Consumption_Fuel_OilRefineries_RefineryGas_EnergyIndustryOwnUse, -Annual_Consumption_Fuel_OtherBituminousCoal,how much other bituminous coal is consumed annually?;what is the annual consumption of other bituminous coal?;how much other bituminous coal is used each year?;what is the yearly consumption of other bituminous coal? -Annual_Consumption_Fuel_OtherIndustry_DieselOil,diesel oil consumption by un_other industry per year;the amount of diesel oil consumed by un_other industry each year;the yearly consumption of diesel oil by un_other industry;the annual diesel oil usage of un_other industry -Annual_Consumption_Fuel_OtherIndustry_FuelOil,how much fuel oil is used in other industries each year?;what is the annual consumption of fuel oil in other industries?;how much fuel oil is consumed by other industries each year?;how much fuel oil do other industries use each year? -Annual_Consumption_Fuel_OtherIndustry_Fuelwood,un_other industry's annual fuelwood consumption;annual consumption of fuelwood by un_other industry;the amount of fuelwood un_other industry consumes annually;the annual fuelwood usage of un_other industry -Annual_Consumption_Fuel_OtherIndustry_HardCoal,hard coal consumption in other industries;hard coal use in other industries;hard coal use in industries other than power;the amount of hard coal used in other industries -Annual_Consumption_Fuel_OtherIndustry_Kerosene,how much kerosene is used by other industries each year?;how much kerosene do other industries consume annually?;what is the annual consumption of kerosene by other industries?;what is the amount of kerosene used by other industries each year? -Annual_Consumption_Fuel_OtherIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used in other industries each year;liquefied petroleum gas (lpg) consumption in other industries each year;liquefied petroleum gas consumption in other industries each year;annual liquefied petroleum gas use in other industries -Annual_Consumption_Fuel_OtherIndustry_MotorGasoline,how much motor gasoline is consumed by other industries each year?;how much motor gasoline is used by other industries annually?;what is the annual consumption of motor gasoline by other industries?;what is the yearly consumption of motor gasoline by other industries? -Annual_Consumption_Fuel_OtherIndustry_NaturalGas,the amount of natural gas used by other industries each year;the annual consumption of natural gas by industries other than electricity generation;the total amount of natural gas used by industries other than power plants;the annual natural gas consumption of industries other than power generation -Annual_Consumption_Fuel_OtherIndustry_NaturalGasLiquids_FuelTransformation,how much natural gas liquids are used in other industries each year?;what is the annual consumption of natural gas liquids in other industries?;how much natural gas liquids do other industries use each year?;what is the amount of natural gas liquids used in other industries each year? -Annual_Consumption_Fuel_OtherIndustry_OtherBituminousCoal,how much bituminous coal is consumed by other industries annually?;what is the annual consumption of bituminous coal by other industries?;how much bituminous coal is consumed by other industries each year?;what is the amount of bituminous coal consumed by other industries each year? -Annual_Consumption_Fuel_OtherManufacturingIndustry_Bagasse,1 the amount of bagasse used in other manufacturing industries each year;2 the annual consumption of bagasse in non-sugarcane industries;3 the yearly use of bagasse in industries other than sugar production;4 the amount of bagasse consumed by industries other than sugar mills each year -Annual_Consumption_Fuel_OtherManufacturingIndustry_BrownCoal,how much brown coal is consumed by other manufacturing industries each year?;what is the annual consumption of brown coal by other manufacturing industries?;what is the amount of brown coal consumed by other manufacturing industries each year?;how much brown coal do other manufacturing industries consume each year? -Annual_Consumption_Fuel_OtherManufacturingIndustry_CokeOvenCoke,coke oven gas consumption in other manufacturing industries per year;annual coke oven gas consumption in other manufacturing industries;the amount of coke oven gas consumed by other manufacturing industries each year;the annual amount of coke oven gas used by other manufacturing industries -Annual_Consumption_Fuel_OtherManufacturingIndustry_DieselOil,annual consumption of diesel oil in other manufacturing industries;other manufacturing industries' annual diesel oil consumption;the amount of diesel oil consumed by other manufacturing industries each year;the annual diesel oil usage of other manufacturing industries -Annual_Consumption_Fuel_OtherManufacturingIndustry_FuelOil,the amount of fuel oil used in other manufacturing industries each year;the yearly consumption of fuel oil in other manufacturing industries;the annual rate of fuel oil consumption in other manufacturing industries;the amount of fuel oil used in other manufacturing industries over the course of a year -Annual_Consumption_Fuel_OtherManufacturingIndustry_Fuelwood,the amount of wood used as fuel in other manufacturing industries each year;the yearly consumption of wood for fuel in other manufacturing industries;the annual rate of wood consumption for fuel in other manufacturing industries;the amount of wood used as fuel in other manufacturing industries over the course of a year -Annual_Consumption_Fuel_OtherManufacturingIndustry_HardCoal,hard coal consumption by other manufacturing industries each year;the amount of hard coal used by other manufacturing industries each year;the annual consumption of hard coal by other manufacturing industries;the amount of hard coal that other manufacturing industries use each year -Annual_Consumption_Fuel_OtherManufacturingIndustry_Kerosene,how much kerosene is used in other manufacturing industries each year?;how much kerosene do other manufacturing industries use annually?;what is the annual consumption of kerosene in other manufacturing industries?;what is the amount of kerosene used in other manufacturing industries each year? -Annual_Consumption_Fuel_OtherManufacturingIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used each year by un manufacturing industries;the annual consumption of liquefied petroleum gas by un manufacturing industries;the yearly use of liquefied petroleum gas by un manufacturing industries;the amount of liquefied petroleum gas that un manufacturing industries use each year -Annual_Consumption_Fuel_OtherManufacturingIndustry_MotorGasoline,the amount of gasoline used by manufacturing industries each year;the annual gasoline consumption of manufacturing industries;the amount of gasoline manufacturing industries use each year;the amount of gasoline manufacturing industries consume each year -Annual_Consumption_Fuel_OtherManufacturingIndustry_NaturalGas,how much natural gas is used each year in other manufacturing industries?;what is the annual consumption of natural gas in other manufacturing industries?;what is the amount of natural gas used each year in other manufacturing industries?;how much natural gas is consumed each year in other manufacturing industries? -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherBituminousCoal,how much bituminous coal is consumed annually by other manufacturing industries?;how much bituminous coal is used annually by other manufacturing industries?;what is the annual consumption of bituminous coal by other manufacturing industries?;what is the annual use of bituminous coal by other manufacturing industries? -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherOilProducts,annual use of other oil products in other manufacturing industries;how much other oil products are used in other manufacturing industries each year;the amount of other oil products used in other manufacturing industries each year;the annual consumption of other oil products in other manufacturing industries -Annual_Consumption_Fuel_OtherManufacturingIndustry_PetroleumCoke,1 other manufacturing industries' annual petroleum coke consumption;2 the annual consumption of petroleum coke by other manufacturing industries;3 the amount of petroleum coke consumed by other manufacturing industries each year;4 the yearly amount of petroleum coke used by other manufacturing industries -Annual_Consumption_Fuel_OtherManufacturingIndustry_VegetalWaste,annual consumption of fuel in the un_other manufacturing industry and vegetal waste sector;the amount of fuel consumed annually by the un_other manufacturing industry and vegetal waste sector;the annual fuel consumption of the un_other manufacturing industry and vegetal waste sector;the amount of fuel used by the un_other manufacturing industry and vegetal waste sector each year -Annual_Consumption_Fuel_OtherOilProducts,the amount of other oil products consumed each year;the yearly consumption of other oil products;the annual rate of consumption of other oil products;the amount of other oil products used each year -Annual_Consumption_Fuel_OtherOilProducts_NonEnergyUse,how much oil is used for non-energy purposes each year?;what is the annual consumption of oil for non-energy use?;how much oil is used each year for non-energy purposes?;what is the annual amount of oil used for non-energy use? -Annual_Consumption_Fuel_OtherSector_Charcoal,charcoal consumption by other sectors each year;the amount of charcoal used by other sectors each year;the yearly consumption of charcoal by other sectors;the annual amount of charcoal used by other sectors -Annual_Consumption_Fuel_OtherSector_DieselOil,what is the annual consumption of diesel oil in non-transportation sectors?;what is the amount of diesel oil used by non-transportation sectors annually?;how much diesel oil is used in other sectors in a year?;diesel oil consumption in other sectors each year -Annual_Consumption_Fuel_OtherSector_FuelOil,the amount of fuel oil used in other sectors each year;the yearly consumption of fuel oil in other sectors;the annual fuel oil usage in other sectors;the amount of fuel oil used in other sectors in a year -Annual_Consumption_Fuel_OtherSector_Fuelwood,how much fuelwood is used in other sectors each year?;how much fuelwood is consumed in other sectors annually?;what is the annual consumption of fuelwood in other sectors?;what is the amount of fuelwood used in other sectors each year? -Annual_Consumption_Fuel_OtherSector_HardCoal,the amount of hard coal used in un_other sectors each year;the annual hard coal consumption of un_other sectors;the yearly hard coal usage of un_other sectors;the hard coal that un_other sectors use each year -Annual_Consumption_Fuel_OtherSector_Kerosene, -Annual_Consumption_Fuel_OtherSector_LiquifiedPetroleumGas,how much liquified petroleum gas is consumed by other sectors each year?;what is the annual consumption of liquified petroleum gas by other sectors?;how much liquified petroleum gas do other sectors consume each year?;what is the amount of liquified petroleum gas consumed by other sectors each year? -Annual_Consumption_Fuel_OtherSector_MotorGasoline,1 how much motor gasoline is used in other sectors each year?;2 what is the annual consumption of motor gasoline in non-transportation sectors?;4 what is the annual consumption of motor gasoline in non-automotive sectors?;the amount of motor gasoline used in other sectors each year -Annual_Consumption_Fuel_OtherSector_NaturalGas,the amount of natural gas used in other sectors each year;the yearly use of natural gas in sectors other than electricity generation;the annual amount of natural gas consumed in sectors other than power;the yearly consumption of natural gas in sectors other than the power sector -Annual_Consumption_Fuel_OtherSector_OtherBituminousCoal,how much bituminous coal is consumed by other sectors each year?;what is the annual consumption of bituminous coal by other sectors?;what is the yearly consumption of bituminous coal by other sectors?;how much bituminous coal is used by other sectors each year? -Annual_Consumption_Fuel_OtherSector_VegetalWaste,how much vegetable waste is consumed in other sectors each year?;what is the annual consumption of vegetable waste in other sectors?;what is the amount of vegetable waste consumed in other sectors each year?;how much vegetable waste is used in other sectors each year? -Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil,"how much diesel oil is used in the paper, pulp, and print industries each year?;what is the annual consumption of diesel oil in the paper, pulp, and print industries?;what is the amount of diesel oil used in the paper, pulp, and print industries each year?;how much diesel oil is consumed by the paper, pulp, and print industries each year?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil,how much fuel oil is used in the paper pulp and print industries each year?;what is the annual fuel oil consumption of the paper pulp and print industries?;what is the amount of fuel oil used by the paper pulp and print industries each year?;how much fuel oil do the paper pulp and print industries use each year? -Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas,"how much liquefied petroleum gas fuel is used by the paper, pulp, and print industries each year?;what is the annual consumption of liquefied petroleum gas fuel in the paper, pulp, and print industries?;how much liquefied petroleum gas fuel do the paper, pulp, and print industries use each year?;what is the annual usage of liquefied petroleum gas fuel in the paper, pulp, and print industries?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas,how much natural gas does the paper pulp industry use each year?;what is the annual consumption of natural gas by the paper pulp industry?;how much natural gas does the paper pulp industry use in a year?;what is the amount of natural gas consumed by the paper pulp industry each year? -Annual_Consumption_Fuel_ParaffinWaxes,annual paraffin wax usage;how much paraffin wax is consumed each year;the amount of paraffin wax used each year;annual paraffin wax demand -Annual_Consumption_Fuel_ParaffinWaxes_NonEnergyUse,the amount of paraffin wax used each year for non-energy purposes;the annual consumption of paraffin wax for non-energy uses;the annual amount of paraffin wax used for non-energy purposes;the annual usage of paraffin wax for non-energy uses -Annual_Consumption_Fuel_PetroleumCoke,the amount of petroleum coke consumed each year;the annual rate of petroleum coke consumption;the yearly consumption of petroleum coke;the annual petroleum coke usage -Annual_Consumption_Fuel_PetroleumCoke_NonEnergyUse,the amount of petroleum coke used for non-energy purposes each year;the annual consumption of petroleum coke for non-energy use;the annual use of petroleum coke for non-energy purposes;the annual consumption of petroleum coke for non-energy uses -Annual_Consumption_Fuel_RailTransport_DieselOil,1 how much diesel oil is used in rail transport each year?;2 what is the annual consumption of diesel oil in rail transport?;3 how much diesel oil is consumed by rail transport each year?;4 what is the amount of diesel oil used in rail transport each year? -Annual_Consumption_Fuel_RoadTransport_BioDiesel,biodiesel consumption in road transport each year;the amount of biodiesel used in road transport each year;the annual amount of biodiesel used in road transport;biodiesel use in road transport on a yearly basis -Annual_Consumption_Fuel_RoadTransport_BioGasoline,the amount of bio gasoline used in road transport each year;the yearly consumption of bio gasoline in road transport;the annual amount of bio gasoline used in road vehicles;how much bio gasoline is used in road transport each year? -Annual_Consumption_Fuel_RoadTransport_DieselOil,the amount of diesel oil used in road transport each year;the annual rate of diesel oil consumption in road transport;the total amount of diesel oil used in road transport over the course of a year;the yearly consumption of diesel oil by road transport vehicles -Annual_Consumption_Fuel_RoadTransport_LiquifiedPetroleumGas,how much lpg is used in road transport each year?;how much lpg is used in road transport annually?;the amount of liquefied petroleum gas used in road transport each year;the yearly consumption of liquefied petroleum gas in road vehicles -Annual_Consumption_Fuel_RoadTransport_MotorGasoline,the amount of gasoline used in road transport each year;the yearly consumption of gasoline by road vehicles;the amount of gasoline used in road transport in a year;the annual gasoline consumption of road vehicles -Annual_Consumption_Fuel_RoadTransport_NaturalGas,the amount of natural gas used on the roads each year;the annual consumption of natural gas for road transportation;the annual amount of natural gas consumed by road vehicles;the annual natural gas usage for road transportation -Annual_Consumption_Fuel_TextileAndLeatherIndustry_DieselOil,the amount of diesel oil used in the textile and leather industries each year;the yearly consumption of diesel oil by the textile and leather industries;the annual amount of diesel oil that is used by the textile and leather industries;the total amount of diesel oil that is used by the textile and leather industries in a year -Annual_Consumption_Fuel_TextileAndLeatherIndustry_FuelOil,fuel oil consumption in the textile and leather industries;the amount of fuel oil used by the textile and leather industries;the annual fuel oil usage of the textile and leather industries;the textile and leather industries' annual fuel oil consumption -Annual_Consumption_Fuel_TextileAndLeatherIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas consumed by the textile and leather industries each year;the annual use of liquefied petroleum gas in the textile and leather industries;the yearly consumption of liquefied petroleum gas by the textile and leather industries;the amount of liquefied petroleum gas that the textile and leather industries use each year -Annual_Consumption_Fuel_TextileAndLeatherIndustry_NaturalGas,annual natural gas consumption in the textile and leather industry;how much natural gas is consumed by the textile and leather industry each year;the amount of natural gas used by the textile and leather industry annually;the annual natural gas usage of the textile and leather industry -Annual_Consumption_Fuel_TransportEquipmentIndustry_NaturalGas,how much natural gas is used by transport equipment industries each year?;how much natural gas is consumed by the transport equipment industry annually?;what is the annual consumption of natural gas by the transport equipment industry?;what is the annual natural gas consumption of the transport equipment industry? -Annual_Consumption_Fuel_TransportIndustry_AviationGasoline,the amount of aviation gasoline used by the transportation industry each year;the yearly consumption of aviation gasoline by the transportation industry;the annual rate at which aviation gasoline is used by the transportation industry;the total amount of aviation gasoline that is used by the transportation industry in a year -Annual_Consumption_Fuel_TransportIndustry_BioDiesel,how much bio diesel does the transport industry use each year?;what is the annual consumption of bio diesel by the transport industry?;annual consumption of fuel in the transport industry: bio diesel;annual consumption of bio diesel in the transport industry -Annual_Consumption_Fuel_TransportIndustry_BioGasoline,how much bio gasoline is used in transportation each year?;what is the annual consumption of bio gasoline in transportation?;what is the amount of bio gasoline used in transportation each year?;what is the annual usage of bio gasoline in transportation? -Annual_Consumption_Fuel_TransportIndustry_DieselOil,the amount of diesel oil used by transport industries each year;the annual rate of diesel oil consumption by transport industries;the yearly amount of diesel oil used by transport industries;the total amount of diesel oil used by transport industries in a year -Annual_Consumption_Fuel_TransportIndustry_FuelOil,fuel oil consumption in the transport industry;the amount of fuel oil used by the transport industry;the transport industry's fuel oil usage;the amount of fuel oil that the transport industry consumes -Annual_Consumption_Fuel_TransportIndustry_KeroseneJetFuel,how much kerosene jet fuel is used by the transportation industry each year?;how much kerosene jet fuel does the transportation industry consume annually?;what is the annual consumption of kerosene jet fuel by the transportation industry?;what is the amount of kerosene jet fuel used by the transportation industry each year? -Annual_Consumption_Fuel_TransportIndustry_LiquifiedPetroleumGas,the amount of liquefied petroleum gas used by the transportation industry each year;the annual consumption of liquefied petroleum gas by the transportation sector;the yearly amount of liquefied petroleum gas used by the transportation industry;the total amount of liquefied petroleum gas used by the transportation industry in a year -Annual_Consumption_Fuel_TransportIndustry_MotorGasoline,how much motor gasoline is consumed annually by the transport industry?;how much motor gasoline does the transport industry use each year?;what is the annual consumption of motor gasoline by the transport industry?;how much motor gasoline does the transport industry consume in a year? -Annual_Consumption_Fuel_TransportIndustry_NaturalGas,how much natural gas is used by the transport industry each year?;what is the annual consumption of natural gas by the transport industry?;how much natural gas does the transport industry use each year?;what is the amount of natural gas consumed by the transport industry each year? -Annual_Consumption_Fuel_UnspecifiedSector_Charcoal,charcoal consumption by unspecified sectors each year;the amount of charcoal used by unspecified sectors each year;the annual amount of charcoal used by unspecified sectors;the yearly consumption of charcoal by unspecified sectors -Annual_Consumption_Fuel_UnspecifiedSector_DieselOil,diesel oil consumption in unknown sectors each year;the amount of diesel oil used in unknown sectors each year;the annual amount of diesel oil used in unknown sectors;the amount of diesel oil used in unknown sectors over the course of a year -Annual_Consumption_Fuel_UnspecifiedSector_FuelOil,fuel oil consumption in unspecified sectors;fuel oil used in unspecified sectors;the amount of fuel oil used in unspecified sectors;the consumption of fuel oil in unspecified sectors -Annual_Consumption_Fuel_UnspecifiedSector_Fuelwood,the amount of fuelwood used each year in unspecified sectors;the annual consumption of fuelwood in unknown or uncategorized sectors;the yearly use of fuelwood in sectors that are not specified;the amount of fuelwood that is consumed each year in sectors that are not named -Annual_Consumption_Fuel_UnspecifiedSector_HardCoal,how much hard coal is consumed each year in an unspecified sector?;what is the annual consumption of hard coal in an unspecified sector?;what is the amount of hard coal consumed each year in an unspecified sector?;how much hard coal is used each year in an unspecified sector? -Annual_Consumption_Fuel_UnspecifiedSector_Kerosene,un_unspecified sector and eia_kerosene fuel consumption per year;annual fuel consumption by un_unspecified sector and eia_kerosene;the amount of fuel consumed by un_unspecified sector and eia_kerosene each year;the annual fuel usage of un_unspecified sector and eia_kerosene -Annual_Consumption_Fuel_UnspecifiedSector_LiquifiedPetroleumGas,how much liquefied petroleum gas is consumed annually in the unspecified sector?;how much liquefied petroleum gas does the unspecified sector consume annually?;what is the annual consumption of liquefied petroleum gas in the unspecified sector?;what is the amount of liquefied petroleum gas consumed annually by the unspecified sector? -Annual_Consumption_Fuel_UnspecifiedSector_MotorGasoline,how much motor gasoline is consumed by un unspecified sector industries each year?;what is the annual consumption of motor gasoline by un unspecified sector industries?;what is the amount of motor gasoline consumed by un unspecified sector industries in a year?;how much motor gasoline do un unspecified sector industries use each year? -Annual_Consumption_Fuel_UnspecifiedSector_NaturalGas,how much natural gas is consumed annually in unspecified sectors?;what is the annual consumption of natural gas in unspecified sectors?;what is the amount of natural gas consumed annually in unspecified sectors?;what is the yearly consumption of natural gas in unspecified sectors? -Annual_Consumption_Fuel_VegetalWaste,the amount of vegetable waste fuels consumed each year;the yearly consumption of vegetable waste fuels;the annual rate of vegetable waste fuel consumption;the amount of vegetable waste fuels used each year -Annual_Consumption_Fuel_WhiteSpirit,how much white spirit is consumed each year?;what is the annual consumption of white spirit?;how much white spirit is used each year?;what is the yearly consumption of white spirit? -Annual_Consumption_Fuel_WhiteSpirit_NonEnergyUse,the amount of white spirit used each year for non-energy purposes;the yearly consumption of white spirit for non-energy uses;the annual rate of white spirit consumption for non-energy uses;the yearly consumption of white spirit for purposes other than generating energy -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_DieselOil,how much diesel oil does the wood and wood products industry use each year?;what is the annual consumption of diesel oil by the wood and wood products industry?;how much diesel oil does the wood and wood products industry use in a year?;what is the yearly consumption of diesel oil by the wood and wood products industry? -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_NaturalGas,how much natural gas do wood and wood products industries use each year?;what is the annual consumption of natural gas in the wood and wood products industries?;how much natural gas do wood and wood products industries consume annually?;what is the annual natural gas consumption of wood and wood products industries? -Annual_Count_ElectricityConsumer,number of people who use electricity in a year;total electricity usage;electricity consumption per year;electricity used in a year -Annual_Count_ElectricityConsumer_Commercial,annual commercial electricity customer consumption;annual commercial electricity consumption by customers;annual electricity consumption by commercial customers;commercial electricity customer annual consumption -Annual_Count_ElectricityConsumer_Industrial,annual number of industrial customer accounts;number of industrial customer accounts per year;number of industrial customer accounts in a year;number of industrial customer accounts annually -Annual_Count_ElectricityConsumer_Residential,annual number of residential customer accounts;number of residential customer accounts per year;number of residential customer accounts in a year;annual residential customer account total -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_Agriculture,"the annual amount of greenhouse gases emitted by agriculture, expressed in terms of their 100-year global warming potential;the amount of greenhouse gases emitted by agriculture each year, expressed in terms of their 100-year global warming potential;the annual greenhouse gas emissions from agriculture, expressed in terms of their 100-year global warming potential;annual emissions of greenhouse gases from agriculture, expressed in terms of the 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_AluminumProduction,"annual emissions of aluminum production in terms of 100-year global warming potential;the annual greenhouse gas emissions from aluminum production, expressed in terms of the 100-year global warming potential of carbon dioxide (co2e)" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_BiologicalTreatmentOfSolidWasteAndBiogenic,"annual amount of emissions: biological treatment of solid waste and biogenic, carbon dioxide equivalent 100 year global warming potential;the amount of greenhouse gases emitted each year from biological treatment of solid waste and biogenic materials, expressed in terms of their 100-year global warming potential;the amount of greenhouse gases released into the atmosphere each year as a result of biological treatment of solid waste and biogenic materials, expressed in terms of co2e over a 100-year period;the annual carbon footprint of biological treatment of solid waste and biogenic materials, expressed in terms of co2e over a 100-year period" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_CementProduction,100-year global warming potential of cement production emissions;the annual contribution of cement production to climate change;annual global warming potential of cement production -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ChemicalPetrochemicalIndustry,"annual emissions from the chemical and petrochemical industry in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp);the amount of greenhouse gases emitted by the chemical and petrochemical industry each year, expressed in terms of co2e and 100-year gwp;annual emissions of the chemical and petrochemical industry, in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp);the annual amount of emissions from the chemical and petrochemical industry in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp)" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherAgriculturalSoilEmissions,"annual emissions from other agricultural soil sources, in carbon dioxide equivalent (co2e) terms, over a 100-year period;the annual total of greenhouse gas emissions from agricultural soil sources, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over a 100-year period;the annual amount of greenhouse gases released into the atmosphere from agricultural soil sources, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over a 100-year period, as measured in metric tons of co2e;the annual total of greenhouse gas emissions from agricultural soil sources, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over a 100-year period, as measured in metric tons of co2e" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherEnergyUse,"annual emissions from other energy sources, in 100-year global warming potential (gwp);the amount of greenhouse gases emitted each year from other energy sources, expressed in terms of their 100-year global warming potential;the annual emissions from other energy sources, expressed in terms of their 100-year global warming potential;the amount of greenhouse gases emitted each year from other energy sources, expressed in terms of their potential to warm the planet over a 100-year period" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherFossilFuelOperations,"other fossil fuel operations 100-year global warming potential emissions;carbon dioxide equivalent 100-year global warming potential of other fossil fuel operations;1 annual emissions from other fossil fuel operations, in carbon dioxide equivalent (co2e) terms, with a 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherManufacturing,the amount of carbon dioxide equivalent (co2e) emitted by other manufacturing over 100 years;other manufacturing emissions in 100-year global warming potential;other manufacturing emissions in carbon dioxide equivalent (co2e) for a 100-year global warming potential;annual emissions from other manufacturing in co2e for a 100-year global warming potential -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherOnsiteFuelUsage,"co2e emissions from other onsite fuel usage in 100-year global warming potential;emissions from other onsite fuel usage in co2e on a 100-year global warming potential basis;annual amount of emissions from other onsite fuel usage, in carbon dioxide equivalent, with a 100-year global warming potential;annual emissions from other onsite fuel usage, in units of carbon dioxide equivalent, with a 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ClimateTrace_OtherTransportation,carbon dioxide equivalent emissions from other transportation in 100 year global warming potential -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_CoalMining,"annual carbon dioxide equivalent emissions from coal mining, 100-year global warming potential;the amount of carbon dioxide emitted from coal mining each year, on a 100-year global warming potential basis;the annual emissions of carbon dioxide from coal mining, in terms of their 100-year global warming potential;the annual amount of carbon dioxide emitted from coal mining, expressed as its 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_CopperMining,100-year global warming potential of copper mining emissions;the annual global warming potential of copper mining -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_CroplandFire,"the amount of carbon dioxide equivalent released into the atmosphere from cropland fires each year, on a 100-year global warming potential basis;100-year global warming potential of cropland fire emissions;cropland fire emissions in terms of 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ElectricityGeneration,"annual emissions from electricity generation in terms of 100-year global warming potential;annual emissions from electricity generation, in terms of the 100-year global warming potential (gwp) of co2e;annual emissions from electricity generation, in terms of the warming impact of co2e over 100 years;annual emissions from electricity generation, in terms of the amount of warming that co2e causes over 100 years" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_EntericFermentation,100-year global warming potential (gwp) of enteric fermentation emissions;100-year global warming potential of enteric fermentation emissions;annual enteric fermentation emissions in 100-year global warming potential (gwp) -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FluorinatedGases,annual amount of emissions of fluorinated gases -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FossilFuelOperations,"the amount of carbon dioxide released into the atmosphere each year from fossil fuel operations, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over 100 years;the annual amount of carbon dioxide emissions from fossil fuel operations, expressed in terms of their 100-year global warming potential;the annual amount of greenhouse gases released into the atmosphere from fossil fuel operations, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over 100 years;the annual amount of carbon dioxide equivalent (co2e) emissions from fossil fuel operations, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionForDomesticAviation,"annual emissions from domestic aviation fuel combustion in the form of carbon dioxide equivalent with a 100-year global warming potential;annual emissions from domestic aviation fuel combustion in the form of carbon dioxide equivalent with a 100-year global warming potential, measured in metric tons;annual emissions from domestic aviation in terms of the 100-year global warming potential of co2;annual emissions from domestic aviation in terms of the warming potential of co2 over 100 years" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionForInternationalAviation,"the amount of carbon dioxide equivalent (co2e) emissions from international aviation in a year, expressed as a 100-year global warming potential;the amount of carbon dioxide equivalent emitted from international aviation in a year, with a 100-year global warming potential;annual co2e emissions from fuel combustion for international aviation, in terms of the 100-year gwp;the annual carbon dioxide equivalent 100 year global warming potential of international aviation" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionForRailways,"the amount of carbon dioxide emitted from railway fuel combustion each year, in terms of its 100-year global warming potential;the annual amount of carbon dioxide released into the atmosphere from railway fuel combustion, expressed in terms of its 100-year global warming potential;the annual amount of carbon dioxide equivalent (co2e) emissions from railway fuel combustion, in terms of its 100-year global warming potential;the annual amount of co2e emissions from railway fuel combustion, expressed in terms of its 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionForResidentialCommercialOnsiteHeating,"the amount of carbon dioxide emitted each year from fuel combustion for residential and commercial heating, on a 100-year global warming potential basis;the annual amount of carbon dioxide emissions from fuel combustion for residential and commercial heating, expressed in terms of their 100-year global warming potential;the annual amount of greenhouse gas emissions from fuel combustion for residential and commercial heating, expressed in terms of their 100-year global warming potential;the annual amount of climate change pollution from fuel combustion for residential and commercial heating, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionForRoadVehicles,"the amount of greenhouse gases emitted by road vehicles each year, expressed in terms of their 100-year global warming potential;the amount of carbon dioxide emitted into the atmosphere each year from burning fuel for road vehicles, expressed as the equivalent amount of carbon dioxide that would have the same global warming potential over a 100-year period" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_FuelCombustionInBuildings,"the amount of greenhouse gas emissions from fuel combustion in buildings each year, expressed in terms of their 100-year global warming potential;carbon dioxide emissions from fuel combustion in buildings, expressed in terms of their 100-year global warming potential;carbon dioxide emissions from fuel combustion in buildings, expressed in terms of their potential to warm the planet over a 100-year period;annual amount of carbon dioxide equivalent emissions from fuel combustion in buildings, expressed in 100-year global warming potential terms" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_IronMining,100-year global warming potential of iron mining emissions;emissions from iron mining in terms of carbon dioxide equivalent and 100-year global warming potential;annual emissions from iron mining in terms of 100-year global warming potential (gwp) -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_Manufacturing,"the annual amount of greenhouse gases emitted by manufacturing, expressed in terms of their potential to warm the planet over a 100-year period" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_ManureManagement,100-year global warming potential of manure management emissions;manure management's carbon dioxide equivalent 100 year global warming potential -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_MaritimeShipping,the annual impact of maritime shipping on global warming;annual emissions from maritime shipping in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp);what is the 100-year global warming potential of maritime shipping emissions? -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_MineralExtraction,"annual emissions from mineral extraction, in terms of their 100-year global warming potential;the annual carbon footprint of the mineral extraction industry, measured in terms of its 100-year global warming potential;annual emissions from mineral extraction in terms of 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_NetForestEmissions,"annual net forest emissions of carbon dioxide equivalent with a 100-year global warming potential;annual net forest emissions of carbon dioxide equivalent with a 100-year global warming potential, expressed in metric tons;annual net forest emissions of carbon dioxide equivalent with a 100-year global warming potential, expressed in metric tons per year;annual carbon dioxide equivalent emissions from net forest loss and degradation, in 100-year global warming potential units" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_NetGrasslandEmissions,"global warming potential of greenhouse gas emissions from grasslands per year;greenhouse gas emissions from grasslands, expressed in carbon dioxide equivalent, on a 100-year timescale;the annual amount of greenhouse gases released into the atmosphere from grassland, expressed in terms of their 100-year global warming potential;the annual amount of carbon dioxide equivalent (co2e) emissions from grassland, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_NetWetlandEmissions,"annual amount of emissions from net wetland emissions, in carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp);the amount of greenhouse gases released into the atmosphere each year from wetlands, expressed as their 100-year global warming potential;the amount of carbon dioxide released into the atmosphere each year from wetlands, expressed as its 100-year global warming potential;the amount of greenhouse gases released into the atmosphere each year from wetlands, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_OilAndGasProduction,how much does oil and gas production contribute to climate change each year? -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_OilAndGasRefining,"annual carbon dioxide emissions from oil and gas refining, expressed in terms of their 100-year global warming potential;annual emissions of carbon dioxide equivalent from oil and gas refining, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_OpenBurningWaste,annual emissions of open burning waste in terms of 100-year global warming potential (gwp);annual emissions of open burning waste in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp) -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_Power,annual amount of power emissions in carbon dioxide equivalent (co2e) 100-year global warming potential;annual amount of carbon dioxide equivalent (co2e) 100-year global warming potential emissions from power;annual amount of power emissions in 100-year global warming potential (gwp) units;annual amount of carbon dioxide equivalent (co2e) emissions from power in 100-year global warming potential (gwp) units -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_PulpAndPaperManufacturing,"how much does the pulp and paper industry contribute to climate change each year?;what is the annual carbon dioxide equivalent 100-year global warming potential of the pulp and paper industry?;the annual carbon dioxide equivalent emissions from pulp and paper manufacturing, expressed in terms of 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_RiceCultivation,what is the 100-year global warming potential of rice cultivation?;how much does rice cultivation contribute to climate change?;100-year global warming potential of emissions from rice cultivation -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_RockQuarry,the annual impact of rock quarries on global warming;annual emissions of carbon dioxide equivalent 100-year global warming potential from rock quarries -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_SandQuarry,100-year global warming potential of sand quarry emissions -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_SolidFuelTransformation,"the amount of carbon dioxide equivalent released into the atmosphere each year from solid fuel transformation, with a 100-year global warming potential;the amount of greenhouse gases emitted each year from solid fuel combustion, expressed as carbon dioxide equivalents (co2e) with a 100-year global warming potential;the yearly output of greenhouse gases from the transformation of solid fuels, such as coal, oil, and natural gas, into other forms of energy, expressed as co2e with a 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_SolidWasteDisposal,"the annual amount of emissions from solid waste disposal, in terms of carbon dioxide equivalent (co2e) and 100-year global warming potential (gwp);the annual amount of carbon dioxide and other greenhouse gases released into the atmosphere from solid waste disposal, expressed in terms of their potential to warm the planet over a 100-year period;the amount of co2e emissions from solid waste disposal in a 100-year time horizon;annual co2e emissions from solid waste disposal in 100-year global warming potential units" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_SteelManufacturing,the annual impact of steel manufacturing on climate change;100-year global warming potential of emissions from steel manufacturing;steel manufacturing emissions in terms of 100-year global warming potential -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_SyntheticFertilizerApplication,the annual carbon footprint of synthetic fertilizer application;the annual carbon footprint of synthetic fertilizer use;the annual contribution of synthetic fertilizer application to climate change;annual emissions from synthetic fertilizer application -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_Transportation,"transportation emissions in terms of carbon dioxide equivalent (co2e) with a 100-year global warming potential;carbon dioxide equivalent emissions from transportation over 100 years;transportation emissions, in carbon dioxide equivalent, over the course of 100 years;carbon dioxide equivalent emissions from transportation over the course of 100 years" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_WasteManagement,"the amount of greenhouse gases emitted each year from waste management, expressed in terms of their 100-year global warming potential;the annual greenhouse gas emissions from waste management, expressed in terms of their 100-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent100YearGlobalWarmingPotential_WastewaterTreatmentAndDischarge,the amount of co2e emissions from wastewater treatment and discharge in a 100-year time horizon;the annual impact of wastewater treatment and discharge on global warming -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_Agriculture,annual emissions of greenhouse gases from agriculture in 20-year global warming potential units;annual emissions from agriculture in terms of the 20-year global warming potential;annual emissions from agriculture in terms of the equivalent amount of carbon dioxide that would have the same warming effect over 20 years;annual emissions from agriculture in terms of the equivalent amount of carbon dioxide that would have the same warming effect over a 20-year period -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_AluminumProduction,global warming potential (gwp) of aluminum production;annual 20-year global warming potential emissions from aluminum production;annual 20 year global warming potential emissions from aluminum production;annual emissions of carbon dioxide equivalent with a 20 year global warming potential from aluminum production -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_BiologicalTreatmentOfSolidWasteAndBiogenic,how much carbon dioxide is emitted from biological treatment of solid waste and biogenic materials each year?;what is the 20-year global warming potential of carbon dioxide emissions from biological treatment of solid waste and biogenic materials?;what is the annual amount of carbon dioxide equivalent emissions from biological treatment of solid waste and biogenic materials that have a 20-year global warming potential?;what is the annual amount of carbon dioxide equivalent emissions from biological treatment of solid waste and biogenic materials that contribute to global warming over a 20-year period? -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_CementProduction,cement production's contribution to global warming;cement production's 20-year global warming potential;annual amount of emissions from cement production in 20-year global warming potential (gwp) terms;annual cement production emissions in 20-year global warming potential (gwp) terms -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ChemicalPetrochemicalIndustry,"annual emissions from the chemical and petrochemical industry, in terms of carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp);annual co2e and 20-year gwp emissions from the chemical and petrochemical industry;the amount of co2e and 20-year gwp emitted by the chemical and petrochemical industry each year;annual co2e and 20-year gwp emissions from the chemical and petrochemical industry, in metric tons" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherAgriculturalSoilEmissions,"annual emissions from other agricultural soil emissions, in carbon dioxide equivalent, with a 20-year global warming potential;annual emissions from other agricultural soil emissions, in carbon dioxide equivalent, with a 20-year gwp;annual emissions from other agricultural soil emissions, in co2e, with a 20-year gwp;annual emissions from other agricultural soil emissions, in co2e, with a 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherEnergyUse,"annual emissions from other energy sources, in terms of their 20-year global warming potential;the amount of greenhouse gases emitted each year from other energy sources, expressed in terms of their 20-year global warming potential;the annual emissions of other greenhouse gases, expressed in terms of their 20-year global warming potential;the annual emissions from other energy sources, expressed in terms of their potential to contribute to climate change over a 20-year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherFossilFuelOperations,"other fossil fuel operations annual carbon dioxide equivalent 20 year global warming potential;annual carbon dioxide equivalent 20 year global warming potential from other fossil fuel operations;carbon dioxide equivalent 20-year global warming potential emissions from other fossil fuel operations;emissions from other fossil fuel operations, in terms of carbon dioxide equivalent and 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherManufacturing,"the co2e emissions from other manufacturing in a year, expressed in terms of their 20-year global warming potential;20-year global warming potential emissions from other manufacturing;other manufacturing emissions in terms of 20-year global warming potential;other manufacturing 20 year global warming potential emissions" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherOnsiteFuelUsage,"annual emissions from other onsite fuel usage, in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential;other onsite fuel usage, in terms of annual emissions, in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential;annual emissions from other onsite fuel usage, in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential, expressed in metric tons;annual emissions from other onsite fuel usage, in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential, expressed in gigagrams" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ClimateTrace_OtherTransportation,"other transportation emissions in 20-year global warming potential;other transportation emissions in 20-year gwp;the annual amount of greenhouse gases emitted by other transportation sources, expressed in terms of the 20-year global warming potential of carbon dioxide;the annual amount of greenhouse gases emitted by other transportation sources, expressed in terms of the 20-year global warming potential of carbon dioxide equivalent (co2e)" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_CoalMining,"how much carbon dioxide equivalent is emitted from coal mining each year, in terms of 20-year global warming potential?;what is the annual amount of carbon dioxide equivalent emissions from coal mining, in terms of 20-year global warming potential?;what is the annual amount of carbon dioxide equivalent emissions from coal mining, in 20-year global warming potential terms?;what is the annual amount of carbon dioxide equivalent emissions from coal mining, in terms of the 20-year global warming potential?" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_CopperMining,"5 the annual contribution of copper mining to global warming;what is the 20-year global warming potential of copper mining emissions?;what is the annual amount of co2e emissions from copper mining, in terms of their 20-year global warming potential?;what is the annual amount of co2e emissions from copper mining, in terms of their impact on the environment over the next 20 years?" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_CroplandFire,"annual emissions from cropland fires, in terms of carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp20);the amount of carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp20) emitted from cropland fires each year;the annual amount of greenhouse gases released into the atmosphere from cropland fires, expressed in terms of carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp20);the annual amount of greenhouse gases released into the atmosphere from cropland fires, expressed in terms of the amount of carbon dioxide that would have the same warming effect over a 20-year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ElectricityGeneration,20-year global warming potential of emissions from electricity generation -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_EntericFermentation,annual amount of greenhouse gas emissions from enteric fermentation in 20-year global warming potential;carbon dioxide equivalent emissions from enteric fermentation;global warming potential of enteric fermentation emissions;global warming potential of enteric fermentation emissions in terms of carbon dioxide equivalent -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FluorinatedGases,"annual amount of emissions of fluorinated gases, expressed as carbon dioxide equivalent (co2e) with a 20-year global warming potential;how much carbon dioxide equivalent is emitted each year from fluorinated gases?;what is the annual amount of fluorinated gas emissions in carbon dioxide equivalent?;what is the annual amount of emissions from fluorinated gases in terms of their 20-year global warming potential?" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FossilFuelOperations,"1 the amount of greenhouse gas emissions from fossil fuel operations, expressed in terms of their 20-year global warming potential;2 the annual amount of greenhouse gases released into the atmosphere from the burning of fossil fuels, expressed in terms of their 20-year global warming potential;3 the annual amount of carbon dioxide equivalent (co2e) emissions from fossil fuel operations, expressed in terms of their 20-year global warming potential;4 the annual amount of greenhouse gas emissions from fossil fuel operations, expressed in terms of their potential to warm the planet over a 20-year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionForDomesticAviation,"annual amount of carbon dioxide emissions from domestic aviation, in terms of 20-year global warming potential;annual amount of carbon dioxide emissions from domestic aviation, in terms of the equivalent impact of carbon dioxide over a 20-year time horizon;the amount of carbon dioxide emitted into the atmosphere each year from domestic aviation, in terms of its 20-year global warming potential;the annual amount of greenhouse gas emissions from domestic aviation, in terms of their 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionForInternationalAviation,"the amount of carbon dioxide emitted by international aviation each year, in terms of its 20-year global warming potential;the annual amount of carbon dioxide released into the atmosphere by international flights, measured in terms of its impact on global warming over the next 20 years;the annual carbon dioxide equivalent (co2e) emissions from international aviation, expressed in terms of their 20-year global warming potential;the amount of co2e emitted by international aviation each year, as a measure of its impact on global warming over the next 20 years" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionForRailways,"the amount of carbon dioxide released into the atmosphere each year from burning fuel for railways, expressed in terms of its 20-year global warming potential;the annual amount of co2e emissions from railway fuel combustion, expressed in terms of its 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionForResidentialCommercialOnsiteHeating,"annual emissions from fuel combustion for residential and commercial onsite heating, in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential;the annual amount of greenhouse gases emitted from fuel combustion for residential and commercial onsite heating, expressed in co2e terms;the annual amount of carbon dioxide and other greenhouse gases emitted from fuel combustion for residential and commercial onsite heating, expressed in co2e terms;the annual amount of greenhouse gas emissions from fuel combustion for residential and commercial onsite heating, expressed in co2e terms, with a 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionForRoadVehicles,"the amount of carbon dioxide released into the atmosphere each year from burning fuel for cars and other vehicles, expressed as the equivalent amount of carbon dioxide that would have the same warming effect over 20 years;the annual amount of climate change pollution from cars and other vehicles, expressed as co2e;the annual co2e emissions from road vehicles, expressed in terms of their 20-year global warming potential;the amount of carbon dioxide released into the atmosphere each year from burning fuel for road vehicles, expressed as its equivalent in terms of the global warming potential of carbon dioxide over a 20-year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_FuelCombustionInBuildings,"what is the annual amount of carbon dioxide equivalent emissions from fuel combustion in buildings, in terms of their 20-year global warming potential?" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_IronMining,iron mining emissions in terms of 20-year global warming potential;20-year global warming potential of iron mining emissions;emissions from iron mining in terms of carbon dioxide equivalent over 20 years;iron mining emissions in terms of carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp) -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_Manufacturing,"manufacturing emissions in terms of carbon dioxide equivalent (co2e) over a 20-year period;the amount of carbon dioxide emitted by manufacturing each year, expressed in terms of its 20-year global warming potential;the annual amount of carbon dioxide released into the atmosphere by manufacturing, expressed in terms of its 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_ManureManagement,"annual emissions from manure management, in terms of carbon dioxide equivalent (co2e);the amount of greenhouse gases emitted each year from manure management, expressed as co2e;the annual impact of manure management on climate change;carbon dioxide equivalent 20 year global warming potential from manure management" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_MaritimeShipping,what is the annual carbon dioxide equivalent 20 year global warming potential of maritime shipping?;what is the 20-year global warming potential of maritime shipping emissions?;what is the annual amount of carbon dioxide equivalent (co2e) emissions from maritime shipping with a 20-year global warming potential -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_MineralExtraction,"the amount of carbon dioxide released into the atmosphere each year from mining and other mineral extraction activities, expressed in terms of its equivalent impact over a 20-year period;the annual carbon footprint of mineral extraction, expressed as the equivalent amount of carbon dioxide that would remain in the atmosphere for 20 years;the annual greenhouse gas emissions from mineral extraction, expressed as the equivalent amount of carbon dioxide that would remain in the atmosphere for 20 years;the annual impact of mineral extraction on climate change, expressed as the equivalent amount of carbon dioxide that would remain in the atmosphere for 20 years" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_NetForestEmissions,"annual amount of carbon dioxide equivalent emissions from net forest emissions, in 20-year global warming potential units;annual amount of carbon dioxide equivalent emissions from net forest emissions, in 20-year global warming potential units, per year;annual net forest emissions of carbon dioxide equivalent with a 20 year global warming potential;annual net forest emissions of carbon dioxide equivalent with a 20 year global warming potential, expressed in metric tons" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_NetGrasslandEmissions,annual amount of emissions from grasslands in terms of 20-year global warming potential;annual amount of emissions from grasslands in terms of gwp20;annual amount of emissions from grasslands in terms of 20-year greenhouse gas potential;annual amount of 20-year global warming potential emissions from grasslands -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_NetWetlandEmissions,"the amount of greenhouse gases released into the atmosphere each year from wetlands, expressed in terms of their 20-year global warming potential;the amount of carbon dioxide released into the atmosphere each year from wetlands, expressed in terms of its potential to warm the planet over a 20-year period;the annual amount of greenhouse gases emitted from wetlands, expressed in terms of their equivalent impact on global warming over a 20-year period;the annual amount of carbon dioxide and other greenhouse gases released into the atmosphere from wetlands, expressed in terms of their equivalent impact on global warming over a 20-year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_OilAndGasProduction,"annual emissions of co2e from oil and gas production, 20-year global warming potential;annual emissions of co2e from oil and gas production, 20-year global warming potential, in metric tons;the amount of 20-year global warming potential emissions from oil and gas production in a year;the amount of greenhouse gas emissions with a 20-year global warming potential from oil and gas production in a year" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_OilAndGasRefining,how much does oil and gas refining contribute to climate change? -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_OpenBurningWaste,global warming potential (gwp) of open burning waste;co2e emissions from open burning waste over 20 years;the annual global warming potential of open burning waste emissions;annual open burning waste emissions in carbon dioxide equivalent 20 year global warming potential -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_Power,"annual greenhouse gas emissions from power generation, expressed in terms of their carbon dioxide equivalent (co2e) and 20-year global warming potential (gwp);annual 20-year global warming potential emissions" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_PulpAndPaperManufacturing,pulp and paper manufacturing's annual carbon dioxide equivalent 20 year global warming potential emissions;annual emissions of carbon dioxide equivalent 20 year global warming potential from pulp and paper manufacturing;the annual amount of carbon dioxide equivalent 20 year global warming potential emissions from pulp and paper manufacturing;the amount of carbon dioxide equivalent 20 year global warming potential emissions from pulp and paper manufacturing per year -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_RiceCultivation,"annual amount of carbon dioxide equivalent (co2e) emissions from rice cultivation;annual co2e emissions from rice cultivation;annual co2e emissions from rice cultivation, in 20-year global warming potential terms;annual amount of greenhouse gas emissions from rice cultivation, in 20-year global warming potential terms" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_RockQuarry,"global warming potential of carbon dioxide emissions from rock quarries over 20 years;global warming potential (gwp) of rock quarries over 20 years;annual emissions from rock quarries, in terms of their carbon dioxide equivalent (co2e) 20-year global warming potential;global warming potential of rock quarry emissions" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_SandQuarry,20-year global warming potential of sand quarry emissions;sand quarry emissions in terms of 20-year global warming potential;global warming potential of sand quarry emissions over a 20-year period -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_SolidFuelTransformation,"annual emissions from solid fuel transformation, in 20 year global warming potential;the annual amount of carbon dioxide equivalent emissions from solid fuel transformation with a 20-year global warming potential;the annual amount of carbon dioxide equivalent emissions from solid fuel transformation with a 20-year global warming potential, in metric tons;the annual amount of greenhouse gas emissions from solid fuel combustion, expressed in terms of their 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_SolidWasteDisposal,"the amount of greenhouse gases released into the atmosphere each year from solid waste disposal, expressed in terms of their 20-year global warming potential;the amount of carbon dioxide equivalent (co2e) emissions from solid waste disposal each year;the annual greenhouse gas emissions from solid waste disposal, expressed in terms of their 20-year global warming potential;the annual impact of solid waste disposal on climate change" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_SteelManufacturing,annual emissions from steel manufacturing in terms of carbon dioxide equivalent (co2e) with a 20-year global warming potential;global warming potential of steel manufacturing emissions;annual steel manufacturing emissions in terms of 20-year global warming potential;what is the annual 20-year global warming potential of steel manufacturing? -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_SyntheticFertilizerApplication,"annual amount of 20-year global warming potential emissions from synthetic fertilizer application;annual amount of 20-year global warming potential emissions from synthetic fertilizer application, in carbon dioxide equivalent units;annual amount of 20 year global warming potential emissions from synthetic fertilizer application;annual amount of emissions from synthetic fertilizer application, in terms of carbon dioxide equivalent, over a 20 year period" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_Transportation,"annual transportation emissions in carbon dioxide equivalent (co2e) terms, with a 20-year global warming potential;the annual amount of greenhouse gas emissions from transportation, expressed in terms of their 20-year global warming potential;the annual amount of carbon dioxide equivalent (co2e) emissions from transportation, with a 20-year global warming potential;transportation's annual carbon dioxide equivalent emissions, with a 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_WasteManagement,"20-year global warming potential of co2e emissions from waste management;annual co2e emissions from waste management with a 20-year global warming potential;annual amount of waste management emissions in 20-year global warming potential;the amount of greenhouse gases emitted each year from waste management, expressed in terms of their 20-year global warming potential" -Annual_Emissions_CarbonDioxideEquivalent20YearGlobalWarmingPotential_WastewaterTreatmentAndDischarge,carbon dioxide equivalent (co2e) emissions from wastewater treatment and discharge;co2e emissions from wastewater treatment and discharge in a year;carbon dioxide equivalent of wastewater treatment and discharge;global warming potential of wastewater treatment and discharge -Annual_Emissions_CarbonDioxide_Agriculture,how much carbon dioxide does agriculture produce each year;how much co2 does agriculture emit annually;what is the annual amount of carbon dioxide emissions from agriculture;what is the annual carbon dioxide footprint of agriculture -Annual_Emissions_CarbonDioxide_AluminumProduction,how much carbon dioxide is emitted annually from aluminum production?;what is the annual carbon dioxide emissions from aluminum production?;what is the amount of carbon dioxide emitted from aluminum production each year?;how much carbon dioxide is released into the atmosphere each year from aluminum production? -Annual_Emissions_CarbonDioxide_Biogenic,how much carbon dioxide is emitted from biogenic sources each year?;what is the annual amount of carbon dioxide emitted from biogenic sources?;what is the total amount of carbon dioxide emitted from biogenic sources each year?;how much carbon dioxide is released into the atmosphere each year from biogenic sources? -Annual_Emissions_CarbonDioxide_CementProduction,annual amount of carbon dioxide emissions from cement production;amount of carbon dioxide released into the atmosphere each year from cement production;annual carbon dioxide emissions from cement manufacturing;annual carbon dioxide emissions from cement industry -Annual_Emissions_CarbonDioxide_ChemicalPetrochemicalIndustry,the amount of carbon dioxide emitted by the chemical petrochemical industry each year;the annual carbon dioxide emissions from the chemical petrochemical industry;the yearly amount of carbon dioxide released into the atmosphere by the chemical petrochemical industry;the total amount of carbon dioxide that the chemical petrochemical industry releases into the air each year -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherEnergyUse,"carbon dioxide emissions from other energy use;other energy use carbon dioxide emissions;emissions from other energy use, in terms of carbon dioxide;carbon dioxide emissions from other energy sources" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherFossilFuelOperations,the annual carbon dioxide emissions from other fossil fuel operations;the annual carbon dioxide output from other fossil fuel operations;how much carbon dioxide is emitted from other fossil fuel operations each year?;what is the annual amount of carbon dioxide emissions from other fossil fuel operations? -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherManufacturing,1 carbon dioxide emissions from other manufacturing industries in a year;2 the amount of carbon dioxide released into the atmosphere each year from other manufacturing industries;4 the yearly carbon dioxide emissions from other manufacturing industries;5 the amount of carbon dioxide that other manufacturing industries release into the atmosphere each year -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherOnsiteFuelUsage,carbon dioxide emissions from other onsite fuel usage;carbon dioxide emissions from other onsite fuels;carbon dioxide emissions from other onsite sources;carbon dioxide emissions from other onsite energy sources -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherTransportation,carbon dioxide emissions from other transportation sources in a year;the amount of carbon dioxide emitted by other transportation sources in a year;the annual amount of carbon dioxide emitted by other transportation sources;the annual carbon dioxide emissions from other transportation sources -Annual_Emissions_CarbonDioxide_CoalMining,the amount of carbon dioxide emitted by coal mining each year;the annual carbon dioxide emissions from coal mining;the amount of carbon dioxide released into the atmosphere each year from coal mining;the annual amount of carbon dioxide produced by coal mining -Annual_Emissions_CarbonDioxide_CopperMining,the amount of carbon dioxide emitted from copper mining each year;the annual carbon dioxide emissions from copper mining;the amount of carbon dioxide that is released into the atmosphere each year from copper mining;the annual amount of carbon dioxide that is released into the atmosphere as a result of copper mining -Annual_Emissions_CarbonDioxide_CroplandFire,annual cropland fire emissions of carbon dioxide;annual cropland fire emissions of co2;annual co2 emissions from cropland fires;annual emissions of carbon dioxide from cropland fires -Annual_Emissions_CarbonDioxide_ElectricityGeneration,annual carbon dioxide emissions from electricity generation;annual carbon dioxide emissions from power generation;annual carbon dioxide emissions from the electricity sector;annual carbon dioxide emissions from electricity production -Annual_Emissions_CarbonDioxide_FossilFuelOperations,how much carbon dioxide is emitted from fossil fuel operations each year?;what is the annual amount of carbon dioxide emissions from fossil fuel operations?;what is the total amount of carbon dioxide emitted from fossil fuel operations each year?;how much carbon dioxide is released into the atmosphere each year from fossil fuel operations? -Annual_Emissions_CarbonDioxide_FuelCombustionForDomesticAviation,carbon dioxide emissions from domestic aviation each year;the amount of carbon dioxide released into the atmosphere each year from domestic aviation;the annual amount of carbon dioxide released into the atmosphere by domestic aviation;the amount of carbon dioxide that domestic aviation emits into the atmosphere each year -Annual_Emissions_CarbonDioxide_FuelCombustionForInternationalAviation,the amount of carbon dioxide emitted from fuel combustion for international aviation each year;the annual carbon dioxide emissions from international aviation fuel combustion;the amount of carbon dioxide released into the atmosphere each year from international aviation fuel combustion;the annual carbon dioxide output from international aviation fuel combustion -Annual_Emissions_CarbonDioxide_FuelCombustionForRailways,the amount of carbon dioxide emitted from fuel combustion for railways each year;the annual amount of carbon dioxide released into the atmosphere from railway fuel combustion;the yearly total of carbon dioxide produced by burning fuel for railways;the amount of carbon dioxide that railways emit into the air each year -Annual_Emissions_CarbonDioxide_FuelCombustionForResidentialCommercialOnsiteHeating,carbon dioxide emissions from fuel combustion for residential and commercial onsite heating;carbon dioxide emissions from fuel combustion for heating in residential and commercial buildings;carbon dioxide emissions from fuel combustion for heating in homes and businesses;carbon dioxide emissions from fuel combustion for heating in residential and commercial properties -Annual_Emissions_CarbonDioxide_FuelCombustionForRoadVehicles,carbon dioxide emissions from road vehicles each year;the amount of carbon dioxide released into the atmosphere each year from road vehicles;the annual amount of carbon dioxide emitted by road vehicles;the yearly amount of carbon dioxide released by road vehicles -Annual_Emissions_CarbonDioxide_FuelCombustionInBuildings,carbon dioxide emissions from fuel combustion in buildings;the amount of carbon dioxide released into the atmosphere each year from burning fuel in buildings;the annual amount of carbon dioxide emitted by buildings from burning fuel;the annual amount of carbon dioxide released into the air from buildings burning fuel -Annual_Emissions_CarbonDioxide_IronMining,iron mining's annual carbon dioxide emissions;the amount of carbon dioxide emitted by iron mining each year;the annual carbon dioxide emissions from iron mining;the amount of carbon dioxide that iron mining emits each year -Annual_Emissions_CarbonDioxide_Manufacturing,how much carbon dioxide does manufacturing produce each year?;what is the annual amount of carbon dioxide emissions from manufacturing?;what is the total amount of carbon dioxide emitted by manufacturing each year?;how much carbon dioxide is released into the atmosphere by manufacturing each year? -Annual_Emissions_CarbonDioxide_MaritimeShipping,annual carbon dioxide emissions from maritime shipping;how much carbon dioxide does maritime shipping emit each year;the amount of carbon dioxide emitted by maritime shipping each year;the annual carbon dioxide emissions from the shipping industry -Annual_Emissions_CarbonDioxide_MineralExtraction,how much carbon dioxide is emitted from mineral extraction each year?;what is the annual amount of carbon dioxide emissions from mineral extraction?;what is the total amount of carbon dioxide emitted from mineral extraction each year?;how much carbon dioxide is released into the atmosphere each year from mineral extraction? -Annual_Emissions_CarbonDioxide_NetForestEmissions,amount of carbon dioxide released into the atmosphere each year from deforestation;annual carbon dioxide emissions from deforestation;net annual carbon dioxide emissions from deforestation;annual net carbon dioxide emissions from deforestation -Annual_Emissions_CarbonDioxide_NetGrasslandEmissions,annual net carbon dioxide emissions from grasslands;annual net greenhouse gas emissions from grasslands;annual net emissions of carbon dioxide and other greenhouse gases from grasslands;annual net emissions of greenhouse gases from managed grasslands -Annual_Emissions_CarbonDioxide_NetWetlandEmissions,the amount of carbon dioxide emitted by wetlands each year;the annual amount of carbon dioxide released into the atmosphere by wetlands;the amount of carbon dioxide that wetlands add to the atmosphere each year;the annual net amount of carbon dioxide that wetlands emit -Annual_Emissions_CarbonDioxide_NonBiogenic,annual non-biogenic carbon dioxide emissions;annual emissions of carbon dioxide from non-biological sources;annual carbon dioxide emissions from non-living sources;annual carbon dioxide emissions from non-natural sources -Annual_Emissions_CarbonDioxide_OilAndGasProduction,how much carbon dioxide is emitted annually from oil and gas production?;what is the annual carbon dioxide emissions from oil and gas production?;what is the amount of carbon dioxide emitted from oil and gas production each year?;how much carbon dioxide is released into the atmosphere each year from oil and gas production? -Annual_Emissions_CarbonDioxide_OilAndGasRefining,the amount of carbon dioxide emitted by oil and gas refining each year;the yearly carbon dioxide emissions from oil and gas refining;the annual carbon dioxide output of oil and gas refining;the amount of carbon dioxide released into the atmosphere each year by oil and gas refining -Annual_Emissions_CarbonDioxide_OpenBurningWaste,the amount of open burning waste and carbon dioxide emitted each year;the annual amount of open burning waste and carbon dioxide released into the atmosphere;the total amount of open burning waste and carbon dioxide produced each year;the annual total of open burning waste and carbon dioxide emissions -Annual_Emissions_CarbonDioxide_Power,the amount of carbon dioxide emitted each year from power plants;the yearly amount of carbon dioxide released into the atmosphere by power plants;the annual carbon dioxide output from power plants;the amount of carbon dioxide that power plants release into the atmosphere each year -Annual_Emissions_CarbonDioxide_PulpAndPaperManufacturing,the amount of carbon dioxide emitted by the pulp and paper industry each year;the annual carbon dioxide emissions from the pulp and paper industry;the total amount of carbon dioxide released into the atmosphere by the pulp and paper industry each year;the annual carbon footprint of the pulp and paper industry -Annual_Emissions_CarbonDioxide_RockQuarry,how much carbon dioxide does a rock quarry emit each year?;what is the annual carbon dioxide emission from rock quarries?;what is the amount of carbon dioxide released by rock quarries each year?;how much carbon dioxide is released into the atmosphere by rock quarries each year? -Annual_Emissions_CarbonDioxide_SandQuarry,carbon dioxide emissions from sand quarries per year;annual carbon dioxide emissions from sand quarries;the amount of carbon dioxide emitted by sand quarries each year;the annual carbon dioxide output of sand quarries -Annual_Emissions_CarbonDioxide_SolidFuelTransformation,the amount of carbon dioxide emitted from solid fuel transformation each year;the annual carbon dioxide emissions from solid fuel transformation;the yearly amount of carbon dioxide released into the atmosphere from solid fuel transformation;the annual carbon dioxide output from solid fuel transformation -Annual_Emissions_CarbonDioxide_SteelManufacturing,annual amount of carbon dioxide emissions from steel manufacturing;amount of carbon dioxide emitted annually from steel manufacturing;total carbon dioxide emissions from steel manufacturing per year;carbon dioxide emissions from steel manufacturing in a year -Annual_Emissions_CarbonDioxide_Transportation,annual carbon dioxide emissions from transportation;how much carbon dioxide is emitted by transportation each year;how much carbon dioxide does transportation emit annually;the amount of carbon dioxide emitted by transportation each year -Annual_Emissions_CarbonDioxide_WasteManagement,the amount of carbon dioxide emitted from waste management each year;the annual carbon dioxide emissions from waste management;the amount of carbon dioxide that is released into the atmosphere from waste management each year;the annual amount of carbon dioxide that is released into the atmosphere from waste management activities -Annual_Emissions_EPA_OtherFullyFluorinatedCompound_NonBiogenic,how much of the epa_other fully fluorinated compound is emitted from non-biogenic sources each year?;what is the annual amount of epa_other fully fluorinated compound emitted from non-biogenic sources?;what is the yearly amount of epa_other fully fluorinated compound emitted from non-biogenic sources?;how much epa_other fully fluorinated compound is emitted from non-biogenic sources each year? -Annual_Emissions_GreenhouseGas,greenhouse gas emissions;ghg emissions;greenhouse gases released into the atmosphere;emissions of greenhouse gases -Annual_Emissions_GreenhouseGas_Agriculture,greenhouse gas emissions from agriculture;annual greenhouse gas emissions from agriculture;the amount of greenhouse gases emitted by agriculture each year;the annual amount of greenhouse gases emitted by the agricultural sector -Annual_Emissions_GreenhouseGas_AmmoniaManufacturing_NonBiogenic,ammonia manufacturing emissions;non-biogenic ammonia emissions;ammonia emissions from manufacturing;emissions from ammonia manufacturing -Annual_Emissions_GreenhouseGas_CementProduction,how much greenhouse gas does cement production emit each year?;what is the annual amount of greenhouse gas emissions from cement production?;how much does cement production contribute to greenhouse gas emissions each year?;what is the annual greenhouse gas footprint of cement production? -Annual_Emissions_GreenhouseGas_CementProduction_NonBiogenic,non-biogenic emissions from cement production;emissions from non-biogenic sources from cement production;emissions from cement production that are not biogenic;annual amount of non-biogenic emissions from cement production -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherEnergyUse,other energy-related emissions -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherManufacturing,greenhouse gas emissions from other manufacturing processes;other manufacturing's contribution to greenhouse gas emissions;how much greenhouse gas is emitted by other manufacturing processes;the amount of greenhouse gas emitted by other manufacturing processes each year -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherTransportation,greenhouse gas emissions from other transportation sources;other transportation sources of greenhouse gas emissions;greenhouse gas emissions from transportation other than cars and trucks;greenhouse gas emissions from non-road transportation -Annual_Emissions_GreenhouseGas_CopperMining,annual greenhouse gas emissions from copper mining;greenhouse gas emissions from copper mining per year;the amount of greenhouse gases emitted from copper mining each year;how much greenhouse gas is emitted from copper mining annually -Annual_Emissions_GreenhouseGas_CroplandFire,greenhouse gas emissions from cropland fires;the amount of greenhouse gases emitted from cropland fires each year;the annual amount of greenhouse gases emitted by cropland fires;the annual rate of greenhouse gas emissions from cropland fires -Annual_Emissions_GreenhouseGas_ElectricityGeneration,how much greenhouse gas is emitted each year from electricity generation?;what is the annual amount of greenhouse gas emissions from electricity generation?;what is the total amount of greenhouse gas emissions from electricity generation each year?;how much greenhouse gas is released into the atmosphere each year from electricity generation? -Annual_Emissions_GreenhouseGas_ElectricityGenerationFromThermalPowerPlant,1 greenhouse gas emissions from electricity generation from thermal power plants per year;2 annual greenhouse gas emissions from electricity generation from thermal power plants;3 the amount of greenhouse gases emitted from electricity generation from thermal power plants each year;4 the annual total of greenhouse gases emitted from electricity generation from thermal power plants -Annual_Emissions_GreenhouseGas_ElectricityGeneration_NonBiogenic,"the annual amount of emissions from electricity generation, excluding biogenic emissions;annual non-biogenic emissions from electricity generation;annual emissions from electricity generation, excluding biogenic emissions;annual emissions from electricity generation, excluding emissions from biomass combustion" -Annual_Emissions_GreenhouseGas_ElectronicsManufacture_NonBiogenic,"annual emissions from electronics manufacturing;annual non-biogenic emissions from electronics manufacturing;annual emissions from non-biogenic sources in electronics manufacturing;emissions from electronics manufacturing, non-biogenic sources" -Annual_Emissions_GreenhouseGas_EntericFermentation,greenhouse gas emissions from enteric fermentation;annual emissions of greenhouse gases from enteric fermentation -Annual_Emissions_GreenhouseGas_FluorinatedGHGProduction_NonBiogenic,annual production of fluorinated greenhouse gases from non-biogenic sources;annual emissions of fluorinated greenhouse gases from non-biogenic sources;the amount of fluorinated greenhouse gases produced annually from non-biogenic sources;the amount of fluorinated greenhouse gases emitted annually from non-biogenic sources -Annual_Emissions_GreenhouseGas_ForestClearing,the amount of greenhouse gases emitted each year from forest clearing;the annual greenhouse gas emissions from forest clearing;annual greenhouse gas emissions from forest clearing;annual greenhouse gas emissions from forest loss -Annual_Emissions_GreenhouseGas_ForestFire,how much greenhouse gas is emitted from forest fires each year?;what is the annual amount of greenhouse gas emissions from forest fires?;how many greenhouse gases are released into the atmosphere each year from forest fires?;what is the total amount of greenhouse gases released into the atmosphere each year from forest fires? -Annual_Emissions_GreenhouseGas_ForestryAndLandUse,forestry and land use greenhouse gas emissions;greenhouse gas emissions from forestry and land use;the amount of greenhouse gases emitted from forestry and land use;greenhouse gas emissions from deforestation -Annual_Emissions_GreenhouseGas_FuelCombustionForAviation,how much greenhouse gas is emitted from fuel combustion for aviation each year?;what is the annual amount of greenhouse gas emissions from fuel combustion for aviation?;what is the total amount of greenhouse gas emissions from fuel combustion for aviation each year?;how much greenhouse gas is emitted from aviation each year? -Annual_Emissions_GreenhouseGas_FuelCombustionForCooking,the amount of greenhouse gases emitted from cooking fuel combustion each year;the annual amount of greenhouse gases released into the atmosphere from cooking fuel combustion;the yearly total of greenhouse gases produced by cooking fuel combustion;the annual greenhouse gas emissions from cooking fuel combustion -Annual_Emissions_GreenhouseGas_FuelCombustionForRailways,greenhouse gas emissions from fuel combustion for railways per year;the amount of greenhouse gases emitted from fuel combustion for railways each year;the annual amount of greenhouse gases emitted from fuel combustion for railways;the total amount of greenhouse gases emitted from fuel combustion for railways in a year -Annual_Emissions_GreenhouseGas_FuelCombustionForRefrigerationAirConditioning,greenhouse gas emissions from fuel combustion for refrigeration and air conditioning;annual emissions of greenhouse gases from fuel combustion for refrigeration and air conditioning;greenhouse gas emissions from fuel combustion for refrigeration and air conditioning in a year;the amount of greenhouse gases emitted from fuel combustion for refrigeration and air conditioning each year -Annual_Emissions_GreenhouseGas_FuelCombustionForResidentialCommercialOnsiteHeating,greenhouse gas emissions from fuel combustion for residential and commercial onsite heating;greenhouse gas emissions from fuel combustion for heating in residential and commercial buildings;greenhouse gas emissions from fuel combustion for heating in homes and businesses;greenhouse gas emissions from fuel combustion for heating in residential and commercial sectors -Annual_Emissions_GreenhouseGas_FuelCombustionForRoadVehicles,greenhouse gas emissions from road vehicles per year;the amount of greenhouse gases emitted by road vehicles each year;the annual amount of greenhouse gases emitted by road vehicles;the total amount of greenhouse gases emitted by road vehicles in one year -Annual_Emissions_GreenhouseGas_FuelCombustionInBuildings,greenhouse gas emissions from fuel combustion in buildings;annual greenhouse gas emissions from fuel combustion in buildings;the amount of greenhouse gases emitted from fuel combustion in buildings each year;the annual amount of greenhouse gases emitted from fuel combustion in buildings -Annual_Emissions_GreenhouseGas_GlassProduction_NonBiogenic,annual amount of glass production emissions;annual emissions from glass production;non-biogenic emissions from glass production;emissions from glass production -Annual_Emissions_GreenhouseGas_HydrogenProduction_NonBiogenic,annual amount of hydrogen production emissions;annual amount of non-biogenic hydrogen production emissions;annual amount of non-biological hydrogen production emissions;annual amount of hydrogen production emissions from non-biological sources -Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,"how much pollution do industrial waste landfills produce each year?;what is the annual amount of emissions from non-biogenic sources, such as industrial waste landfills?;how much pollution is released into the environment each year from industrial waste landfills?;what is the total amount of pollution released into the atmosphere each year from non-biogenic sources, such as industrial waste landfills?" -Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,"amount of emissions from industrial wastewater treatment;industrial wastewater treatment emissions;non-biogenic emissions from industrial wastewater treatment;emissions from industrial wastewater treatment, non-biogenic" -Annual_Emissions_GreenhouseGas_IronAndSteelProduction_NonBiogenic,the amount of emissions from iron and steel production in a year;the annual amount of emissions from iron and steel production;the amount of emissions from iron and steel production each year;the annual emissions from iron and steel production -Annual_Emissions_GreenhouseGas_IronMining,greenhouse gas emissions from iron mining;iron mining's contribution to greenhouse gas emissions;the amount of greenhouse gases emitted by iron mining each year;the annual greenhouse gas emissions from iron mining -Annual_Emissions_GreenhouseGas_LimeProduction_NonBiogenic,the amount of emissions produced by lime production each year;the annual emissions from lime production;the yearly output of emissions from lime production;the total emissions from lime production in one year -Annual_Emissions_GreenhouseGas_ManagedSoils,annual greenhouse gas emissions from managed soils;amount of greenhouse gases emitted from managed soils each year;annual release of greenhouse gases from managed soils;greenhouse gases released from managed soils each year -Annual_Emissions_GreenhouseGas_Manufacturing,how much greenhouse gas does manufacturing produce each year?;what is the annual amount of greenhouse gas emissions from manufacturing?;what is the total amount of greenhouse gas emissions from manufacturing each year?;how many greenhouse gases are emitted by manufacturing each year? -Annual_Emissions_GreenhouseGas_ManureManagement,manure management's greenhouse gas emissions;greenhouse gas emissions from manure management;the amount of greenhouse gases emitted by manure management;manure management's contribution to greenhouse gas emissions -Annual_Emissions_GreenhouseGas_MaritimeShipping,how much greenhouse gas does maritime shipping emit each year?;what is the annual amount of greenhouse gas emissions from maritime shipping?;what is the total amount of greenhouse gas emissions from maritime shipping each year?;how much greenhouse gas does maritime shipping contribute to climate change each year? -Annual_Emissions_GreenhouseGas_MaritimeTransport,annual emissions from maritime transport;greenhouse gas emissions from maritime transport;how much greenhouse gas does maritime transport emit each year;the amount of greenhouse gas emissions from maritime transport each year -Annual_Emissions_GreenhouseGas_MineralExtraction,annual greenhouse gas emissions from mineral extraction;the amount of greenhouse gas emissions from mineral extraction each year;how much greenhouse gas is emitted each year from mineral extraction?;what is the annual amount of greenhouse gas emissions from mineral extraction? -Annual_Emissions_GreenhouseGas_MiscellaneousUseOfCarbonates_NonBiogenic,annual emissions from non-biogenic sources of carbonates;annual emissions from miscellaneous carbonate sources;annual emissions from non-biological sources of carbonates;annual emissions from miscellaneous non-biological sources of carbonates -Annual_Emissions_GreenhouseGas_MunicipalLandfills_NonBiogenic,how much pollution do municipal landfills produce each year?;what is the annual amount of emissions from non-biogenic sources in municipal landfills?;how much non-biogenic pollution do municipal landfills produce each year?;what is the annual amount of non-biogenic emissions from municipal landfills? -Annual_Emissions_GreenhouseGas_NitricAcidProduction_NonBiogenic,annual nitric acid production emissions;non-biogenic nitric acid production emissions;annual emissions from nitric acid production;emissions from non-biogenic nitric acid production -Annual_Emissions_GreenhouseGas_NonBiogenic,the amount of non-biogenic greenhouse gases emitted each year;the yearly output of non-biogenic greenhouse gases;the annual release of non-biogenic greenhouse gases into the atmosphere;the amount of non-biogenic greenhouse gases that are released into the atmosphere each year -Annual_Emissions_GreenhouseGas_NonBiogenic_Per_Annual_Generation_Electricity,annual non-biogenic greenhouse gas emissions per unit of electricity generated;annual emissions of non-biogenic greenhouse gases per unit of electricity generated;annual non-biogenic greenhouse gas emissions per kilowatt-hour of electricity generated;annual non-biogenic greenhouse gas emissions from electricity generation -Annual_Emissions_GreenhouseGas_OilAndGas,how much greenhouse gas is emitted from oil and gas each year?;what is the annual amount of greenhouse gas emissions from oil and gas?;what is the total amount of greenhouse gas emissions from oil and gas each year?;how much greenhouse gas is released into the atmosphere each year from oil and gas? -Annual_Emissions_GreenhouseGas_OilAndGasProduction,1 the amount of greenhouse gas emissions from oil and gas production each year;2 the annual amount of greenhouse gases released into the atmosphere from oil and gas production;3 the total amount of greenhouse gases produced by oil and gas production each year;4 the annual output of greenhouse gases from oil and gas production -Annual_Emissions_GreenhouseGas_OpenBurningWaste,annual greenhouse gas emissions from open burning waste;annual amount of greenhouse gases emitted by open burning waste;annual open burning waste emissions of greenhouse gases;greenhouse gas emissions from open burning waste per year -Annual_Emissions_GreenhouseGas_PetrochemicalProduction,the amount of greenhouse gas emissions from petrochemical production each year;the annual output of greenhouse gases from petrochemical production;the yearly amount of greenhouse gases released into the atmosphere from petrochemical production;the total amount of greenhouse gases emitted from petrochemical production in a year -Annual_Emissions_GreenhouseGas_PetrochemicalProduction_NonBiogenic,"non-biogenic emissions from petrochemical production;emissions from petrochemical production that are not biogenic;emissions from petrochemical production that are not from living things;emissions from petrochemical production, non-biogenic" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_Processing_NonBiogenic,"the amount of emissions from petroleum and natural gas systems each year;the annual amount of emissions from petroleum and natural gas processing;the annual amount of emissions from non-biogenic sources in petroleum and natural gas systems;the amount of emissions from petroleum and natural gas systems each year, excluding biogenic sources" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_TransmissionOrCompression_NonBiogenic,"the amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source, in a year;the annual amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source;the annual emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source;the amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source, in one year" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_UndergroundStorage_NonBiogenic,"the annual amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source;the amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source per year;the annual emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source;the amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source in a year" -Annual_Emissions_GreenhouseGas_PetroleumRefining,greenhouse gas emissions from petroleum refining;the amount of greenhouse gases emitted by petroleum refineries each year;the annual amount of greenhouse gases released into the atmosphere by petroleum refineries;the total amount of greenhouse gases that petroleum refineries release into the environment each year -Annual_Emissions_GreenhouseGas_PetroleumRefining_NonBiogenic,petroleum refining emissions;non-biogenic emissions from petroleum refining;emissions from petroleum refining;emissions from non-biogenic sources in petroleum refining -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing,1 greenhouse gas emissions from pulp and paper manufacturing;2 the amount of greenhouse gases emitted by the pulp and paper industry each year;3 the annual output of greenhouse gases from pulp and paper mills;4 the total amount of greenhouse gases released into the atmosphere by the pulp and paper industry each year -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing_NonBiogenic,"non-biogenic emissions from pulp and paper manufacturing;emissions from pulp and paper manufacturing, non-biogenic;emissions from pulp and paper manufacturing, not from biological sources;annual emissions from pulp and paper manufacturing, excluding biogenic emissions" -Annual_Emissions_GreenhouseGas_RiceCultivation,how much greenhouse gas is emitted from rice cultivation each year?;what is the annual amount of greenhouse gas emissions from rice cultivation?;how much greenhouse gas is released into the atmosphere each year from rice cultivation?;what is the annual greenhouse gas footprint of rice cultivation? -Annual_Emissions_GreenhouseGas_RockQuarry,greenhouse gas emissions from rock quarries;the amount of greenhouse gases emitted by rock quarries each year;the annual amount of greenhouse gases released into the atmosphere by rock quarries;the total amount of greenhouse gases produced by rock quarries in a year -Annual_Emissions_GreenhouseGas_SandQuarry,how much greenhouse gas does a sand quarry emit each year?;what is the annual greenhouse gas emissions from sand quarries?;what is the amount of greenhouse gas emitted by sand quarries each year?;how much greenhouse gas is emitted by sand quarries annually? -Annual_Emissions_GreenhouseGas_SavannaFire,annual greenhouse gas emissions from savanna fires;annual amount of greenhouse gases emitted by savanna fires;how much greenhouse gas is emitted by savanna fires each year;the annual amount of greenhouse gas emissions from savanna fires -Annual_Emissions_GreenhouseGas_ShrublandFire,the amount of greenhouse gases emitted from shrubland fires each year;the annual amount of greenhouse gases released into the atmosphere by shrubland fires;the yearly total of greenhouse gases produced by shrubland fires;the annual greenhouse gas emissions from shrubland fires -Annual_Emissions_GreenhouseGas_SolidFuelTransformation,the amount of greenhouse gases emitted from solid fuel transformation each year;the annual amount of greenhouse gases released into the atmosphere from solid fuel transformation;the yearly total of greenhouse gases produced by solid fuel transformation;the annual greenhouse gas emissions from solid fuel transformation -Annual_Emissions_GreenhouseGas_SolidWasteDisposal,the amount of solid waste and greenhouse gas emissions produced each year;the annual output of solid waste and greenhouse gases;the yearly total of solid waste and greenhouse gas emissions;the annual amount of solid waste and greenhouse gases that are released into the environment -Annual_Emissions_GreenhouseGas_StationaryCombustion_NonBiogenic,"emissions from stationary combustion, non-biogenic sources;emissions from non-biogenic sources from stationary combustion;emissions from stationary combustion, excluding biogenic sources;emissions from stationary combustion, non-biological sources" -Annual_Emissions_GreenhouseGas_SteelManufacturing,greenhouse gas emissions from steel manufacturing;the amount of greenhouse gases emitted by the steel industry;the amount of greenhouse gases released into the atmosphere from steel production;the amount of greenhouse gases that are produced by the steel industry -Annual_Emissions_GreenhouseGas_Transportation,greenhouse gas emissions from transportation;the amount of greenhouse gases emitted by transportation each year;the annual amount of greenhouse gases emitted by transportation;the annual greenhouse gas emissions from transportation -Annual_Emissions_GreenhouseGas_UndergroundCoalMines_NonBiogenic,annual emissions from underground coal mines;emissions from underground coal mines each year;the amount of emissions from underground coal mines each year;the annual amount of emissions from underground coal mines that are not biogenic -Annual_Emissions_GreenhouseGas_WasteManagement,the annual output of waste and greenhouse gases;the yearly amount of waste and greenhouse gases that are released into the environment;the annual total of waste and greenhouse gases that are emitted;the annual amount of emissions from waste management and greenhouse gases -Annual_Emissions_GreenhouseGas_WastewaterTreatmentAndDischarge,greenhouse gas emissions from wastewater treatment and discharge;annual greenhouse gas emissions from wastewater treatment and discharge;the amount of greenhouse gases emitted from wastewater treatment and discharge each year;the annual amount of greenhouse gases released into the atmosphere from wastewater treatment and discharge -Annual_Emissions_Hydrofluorocarbon_NonBiogenic,how much non-biogenic hydrofluorocarbon is emitted each year?;what is the annual amount of non-biogenic hydrofluorocarbon emissions?;what is the total amount of non-biogenic hydrofluorocarbon emitted each year?;how many non-biogenic hydrofluorocarbons are emitted each year? -Annual_Emissions_Hydrofluoroether_NonBiogenic,the amount of hydrofluoroether emitted each year;the annual amount of non-biogenic hydrofluoroether emissions;the annual amount of hydrofluoroether emissions from non-biogenic sources;the annual amount of hydrofluoroether emissions from sources other than living organisms -Annual_Emissions_Methane_Agriculture,1 the amount of methane emitted by agriculture each year;2 the annual methane emissions from agriculture;3 the amount of methane that is released into the atmosphere each year from agriculture;4 the annual amount of methane that is released into the atmosphere from agricultural activities -Annual_Emissions_Methane_BiologicalTreatmentOfSolidWasteAndBiogenic,the amount of methane emitted from biological treatment of solid waste each year;the annual amount of methane released into the atmosphere from biological treatment of solid waste;the yearly amount of methane produced by biological treatment of solid waste;the annual methane emissions from biological treatment of solid waste -Annual_Emissions_Methane_ClimateTrace_OtherEnergyUse,methane emissions from other energy use;other energy use methane emissions;emissions of methane from other energy sources;methane emissions from other energy sources -Annual_Emissions_Methane_ClimateTrace_OtherFossilFuelOperations,methane emissions from other fossil fuel operations;methane emissions from other fossil fuel-related activities -Annual_Emissions_Methane_ClimateTrace_OtherManufacturing,the amount of methane emitted by other manufacturing industries each year;the annual methane emissions from other manufacturing industries;the total amount of methane emitted by other manufacturing industries in a year;the annual methane output from other manufacturing industries -Annual_Emissions_Methane_ClimateTrace_OtherOnsiteFuelUsage,methane emissions from other onsite fuel usage;methane emissions from other on-site fuel use;methane emissions from other on-site fuel consumption;methane emissions from other on-site fuel burning -Annual_Emissions_Methane_ClimateTrace_OtherTransportation,methane emissions from other transportation sources;methane emissions from other forms of transportation;methane emissions from transportation other than cars and trucks;methane emissions from non-road transportation -Annual_Emissions_Methane_CoalMining,how much coal and methane are emitted each year?;what is the annual amount of coal and methane emissions?;what are the annual emissions of coal and methane?;how much coal and methane is released into the atmosphere each year? -Annual_Emissions_Methane_CroplandFire,the amount of methane and carbon dioxide released into the atmosphere each year from cropland fires;the annual amount of methane and carbon dioxide released into the atmosphere from burning crops;the amount of methane and carbon dioxide released into the atmosphere each year from burning agricultural land;how much methane is emitted from cropland fires each year? -Annual_Emissions_Methane_EntericFermentation,methane emissions from enteric fermentation;annual methane emissions from enteric fermentation;the amount of methane emitted from enteric fermentation each year;the annual amount of methane produced by enteric fermentation -Annual_Emissions_Methane_FossilFuelOperations,how much methane is emitted from fossil fuel operations each year?;what is the annual amount of methane emissions from fossil fuel operations?;how much methane is released into the atmosphere each year from fossil fuel operations?;how much methane is produced by fossil fuel operations each year? -Annual_Emissions_Methane_FuelCombustionForDomesticAviation,methane emissions from domestic aviation;annual methane emissions from domestic aviation;methane emissions from fuel combustion in domestic aviation;annual methane emissions from fuel combustion in domestic aviation -Annual_Emissions_Methane_FuelCombustionForInternationalAviation,how much methane is emitted from international aviation each year?;how much methane is emitted from fuel combustion for international aviation each year?;what is the annual amount of methane emissions from international aviation?;what is the annual amount of methane emissions from fuel combustion for international aviation? -Annual_Emissions_Methane_FuelCombustionForRailways,"annual methane emissions from fuel combustion for railways;methane emissions from fuel combustion for railways, annually;the amount of methane emitted from fuel combustion for railways each year;the annual amount of methane emitted from fuel combustion for railways" -Annual_Emissions_Methane_FuelCombustionForResidentialCommercialOnsiteHeating,methane emissions from fuel combustion for residential and commercial onsite heating;methane emissions from fuel combustion for heating in residential and commercial buildings;methane emissions from fuel combustion for heating in homes and businesses;methane emissions from fuel combustion for heating in residential and commercial sectors -Annual_Emissions_Methane_FuelCombustionForRoadVehicles,methane emissions from fuel combustion for road vehicles;the amount of methane emitted from fuel combustion for road vehicles each year;the annual amount of methane emitted from fuel combustion for road vehicles;the total amount of methane emitted from fuel combustion for road vehicles in a year -Annual_Emissions_Methane_FuelCombustionInBuildings,methane emissions from fuel combustion in buildings;the amount of methane emitted from fuel combustion in buildings each year;the annual amount of methane emitted from fuel combustion in buildings;the amount of methane emitted from fuel combustion in buildings in a year -Annual_Emissions_Methane_Manufacturing,the amount of methane emitted by manufacturing;how much methane does manufacturing emit each year?;what is the annual amount of methane emitted by manufacturing?;what is the annual methane output of manufacturing? -Annual_Emissions_Methane_ManureManagement,the amount of methane emitted from manure management each year;the annual amount of methane released into the atmosphere from manure management;the annual amount of methane produced by manure management;the annual amount of methane released from manure management -Annual_Emissions_Methane_NonBiogenic,methane emissions from non-biological sources per year;annual non-biological methane emissions;methane emissions from non-biological sources in a year;annual non-biological methane emissions from human activities -Annual_Emissions_Methane_OilAndGasProduction,how much methane is emitted from oil and gas production each year?;what is the annual amount of methane emissions from oil and gas production?;what is the total amount of methane emitted from oil and gas production each year?;how much methane is released into the atmosphere each year from oil and gas production? -Annual_Emissions_Methane_OilAndGasRefining,methane emissions from oil and gas refining;annual methane emissions from oil and gas refining;methane emissions from oil and gas refining in a year;the amount of methane emitted from oil and gas refining each year -Annual_Emissions_Methane_OpenBurningWaste,the amount of methane and open burning waste emitted each year;the annual amount of methane and open burning waste released into the atmosphere;the yearly total of methane and open burning waste emissions;the annual rate of methane and open burning waste emissions -Annual_Emissions_Methane_Power,methane emissions from power plants;power plant methane emissions;annual methane emissions from power plants;annual power plant methane emissions -Annual_Emissions_Methane_RiceCultivation,methane emissions from rice cultivation;methane emissions from rice paddies;methane emissions from rice farming;methane emissions from growing rice -Annual_Emissions_Methane_SolidFuelTransformation,annual emissions of methane from solid fuel transformation;methane emissions from solid fuel transformation per year;the amount of methane emitted from solid fuel transformation each year;the annual amount of methane released into the atmosphere from solid fuel transformation -Annual_Emissions_Methane_SolidWasteDisposal,amount of methane emitted from solid waste disposal;methane emissions from solid waste disposal;how much methane is emitted from solid waste disposal;methane emissions from landfills -Annual_Emissions_Methane_Transportation,how much methane is emitted each year by transportation;the annual amount of methane emitted by transportation;the amount of methane emitted by transportation each year;the annual methane emissions from transportation -Annual_Emissions_Methane_WasteManagement,how much methane is emitted from waste management each year?;what is the annual amount of methane emissions from waste management?;what is the total amount of methane emitted from waste management each year?;how much methane is released into the atmosphere from waste management each year? -Annual_Emissions_Methane_WastewaterTreatmentAndDischarge,how much methane is emitted from wastewater treatment and discharge each year?;what is the annual amount of methane emitted from wastewater treatment and discharge?;what is the total amount of methane emitted from wastewater treatment and discharge each year?;what is the annual methane emissions from wastewater treatment and discharge? -Annual_Emissions_NitrogenTrifluoride_NonBiogenic,annual emissions of non-biogenic nitrogen trifluoride;annual emissions of nitrogen trifluoride from non-biogenic sources;annual emissions of nitrogen trifluoride from sources other than living things;annual emissions of nitrogen trifluoride from human activities -Annual_Emissions_NitrousOxide_Agriculture,annual amount of nitrous oxide emissions from agriculture;annual nitrous oxide emissions from agriculture;annual amount of nitrous oxide emitted by agriculture;annual amount of nitrous oxide emitted from the agricultural sector -Annual_Emissions_NitrousOxide_BiologicalTreatmentOfSolidWasteAndBiogenic,how much nitrous oxide is emitted from biological treatment of solid waste each year?;what is the annual amount of nitrous oxide emissions from biological treatment of solid waste?;what is the annual nitrous oxide emission rate from biological treatment of solid waste?;what is the annual amount of nitrous oxide released into the atmosphere from biological treatment of solid waste? -Annual_Emissions_NitrousOxide_ClimateTrace_OtherAgriculturalSoilEmissions,annual emissions of nitrous oxide from other agricultural soil sources;nitrous oxide emissions from other agricultural soil sources per year;the amount of nitrous oxide emitted from other agricultural soil sources each year;the annual amount of nitrous oxide emitted from agricultural soil sources other than manure and fertilizer -Annual_Emissions_NitrousOxide_ClimateTrace_OtherEnergyUse,nitrous oxide emissions from other energy use;emissions of nitrous oxide from other energy sources;nitrous oxide emissions from sources other than energy;nitrous oxide emissions from sources other than electricity and heat -Annual_Emissions_NitrousOxide_ClimateTrace_OtherFossilFuelOperations,nitrous oxide emissions from other fossil fuel operations;annual nitrous oxide emissions from other fossil fuel operations;nitrous oxide emissions from other fossil fuel operations in a year;the amount of nitrous oxide emitted from other fossil fuel operations in a year -Annual_Emissions_NitrousOxide_ClimateTrace_OtherManufacturing,nitrous oxide emissions from other manufacturing;annual nitrous oxide emissions from other manufacturing;other manufacturing nitrous oxide emissions per year;nitrous oxide emissions from other manufacturing in one year -Annual_Emissions_NitrousOxide_ClimateTrace_OtherOnsiteFuelUsage,nitrous oxide emissions from other onsite fuel usage;annual emissions of nitrous oxide from other onsite fuel usage;nitrous oxide emissions from other onsite fuel usage per year;annual nitrous oxide emissions from other onsite fuel usage -Annual_Emissions_NitrousOxide_ClimateTrace_OtherTransportation,the amount of nitrous oxide emitted by other transportation each year;the annual amount of nitrous oxide emissions from other transportation;the yearly amount of nitrous oxide emitted by other transportation;the total amount of nitrous oxide emitted by other transportation in one year -Annual_Emissions_NitrousOxide_CroplandFire,nitrous oxide emissions from cropland fires;cropland fire nitrous oxide emissions;annual nitrous oxide emissions from cropland fires;nitrous oxide emissions from cropland fires per year -Annual_Emissions_NitrousOxide_FossilFuelOperations,the amount of nitrous oxide emitted from fossil fuel operations each year;the annual amount of nitrous oxide emitted from fossil fuel operations;the amount of nitrous oxide emitted from fossil fuel operations in one year;the annual emissions of nitrous oxide from fossil fuel operations -Annual_Emissions_NitrousOxide_FuelCombustionForDomesticAviation,nitrous oxide emissions from domestic aviation;nitrous oxide emissions from fuel combustion in domestic aviation;nitrous oxide emissions from domestic aviation fuel combustion;emissions of nitrous oxide from domestic aviation fuel combustion -Annual_Emissions_NitrousOxide_FuelCombustionForInternationalAviation,nitrous oxide emissions from international aviation;annual nitrous oxide emissions from international aviation;nitrous oxide emissions from international aviation each year;the amount of nitrous oxide emitted by international aviation each year -Annual_Emissions_NitrousOxide_FuelCombustionForRailways,nitrous oxide emissions from fuel combustion in railways;the amount of nitrous oxide emitted from fuel combustion in railways each year;the annual amount of nitrous oxide emitted from fuel combustion in railways;the yearly amount of nitrous oxide emitted from fuel combustion in railways -Annual_Emissions_NitrousOxide_FuelCombustionForResidentialCommercialOnsiteHeating,how much nitrous oxide is emitted from fuel combustion for residential and commercial onsite heating each year?;what is the annual amount of nitrous oxide emissions from fuel combustion for residential and commercial onsite heating?;what is the total amount of nitrous oxide emitted from fuel combustion for residential and commercial onsite heating each year?;what is the annual emission rate of nitrous oxide from fuel combustion for residential and commercial onsite heating? -Annual_Emissions_NitrousOxide_FuelCombustionForRoadVehicles,annual nitrous oxide emissions from fuel combustion for road vehicles;nitrous oxide emissions from fuel combustion for road vehicles in a year;the amount of nitrous oxide emitted from fuel combustion for road vehicles in a year;annual nitrous oxide emissions from road vehicles -Annual_Emissions_NitrousOxide_FuelCombustionInBuildings,the amount of nitrous oxide emitted from fuel combustion in buildings each year;the annual emissions of nitrous oxide from fuel combustion in buildings;the yearly amount of nitrous oxide emitted from fuel combustion in buildings;the annual quantity of nitrous oxide emitted from fuel combustion in buildings -Annual_Emissions_NitrousOxide_Manufacturing,the annual amount of nitrous oxide emitted by manufacturing;the yearly amount of nitrous oxide emitted by manufacturing;the annual nitrous oxide emissions from manufacturing;what is the annual amount of nitrous oxide emissions from manufacturing? -Annual_Emissions_NitrousOxide_ManureManagement,manure management's annual nitrous oxide emissions;nitrous oxide emissions from manure management each year;annual nitrous oxide emissions from manure management;nitrous oxide emissions from manure management in a year -Annual_Emissions_NitrousOxide_NonBiogenic,the amount of nitrous oxide released into the atmosphere each year that is not from natural sources;the annual release of nitrous oxide into the atmosphere from human activities;the amount of nitrous oxide that is not from natural sources that is released into the atmosphere each year;the annual amount of nitrous oxide that is not from natural sources that is released into the atmosphere -Annual_Emissions_NitrousOxide_OilAndGasRefining,the amount of nitrous oxide emitted from oil and gas refining each year;the annual amount of nitrous oxide emitted from oil and gas refining;the yearly amount of nitrous oxide emitted from oil and gas refining;the amount of nitrous oxide emitted from oil and gas refining in one year -Annual_Emissions_NitrousOxide_OpenBurningWaste,the annual amount of emissions from open burning waste and nitrous oxide;the amount of open burning waste and nitrous oxide emitted each year;the total amount of open burning waste and nitrous oxide emitted in one year;the annual total of open burning waste and nitrous oxide emissions -Annual_Emissions_NitrousOxide_Power,"sure, here are 5 different ways of saying ""annual amount of emissions: power, nitrous oxide"" in a colloquial way:;1 the amount of nitrous oxide emitted each year from power plants;2 the yearly amount of nitrous oxide released into the atmosphere from power plants;3 the annual amount of nitrous oxide that power plants release into the air" -Annual_Emissions_NitrousOxide_SolidFuelTransformation,how much nitrous oxide is emitted from solid fuel transformation each year?;what is the annual amount of nitrous oxide emissions from solid fuel transformation?;how much solid fuel transformation contributes to nitrous oxide emissions each year?;what is the annual contribution of solid fuel transformation to nitrous oxide emissions? -Annual_Emissions_NitrousOxide_SyntheticFertilizerApplication,how much nitrous oxide is emitted from synthetic fertilizer application each year?;what is the annual amount of nitrous oxide emissions from synthetic fertilizer application?;how much nitrous oxide is released into the atmosphere each year from synthetic fertilizer application?;what is the annual release of nitrous oxide into the atmosphere from synthetic fertilizer application? -Annual_Emissions_NitrousOxide_Transportation,nitrous oxide emissions from transportation;transportation's nitrous oxide emissions;nitrous oxide emissions from the transportation sector;the annual amount of nitrous oxide emitted by transportation -Annual_Emissions_NitrousOxide_WasteManagement,how much nitrous oxide is emitted from waste management each year?;what is the annual amount of nitrous oxide emitted from waste management?;what is the annual emission of nitrous oxide from waste management?;how much nitrous oxide is produced by waste management each year? -Annual_Emissions_NitrousOxide_WastewaterTreatmentAndDischarge,nitrous oxide emissions from wastewater treatment and discharge;amount of nitrous oxide emitted from wastewater treatment and discharge;how much nitrous oxide is emitted from wastewater treatment and discharge;nitrous oxide emissions from wastewater treatment and discharge per year -Annual_Emissions_Perfluorocarbon_NonBiogenic,perfluorocarbon emissions from non-biogenic sources;annual emissions of perfluorocarbons from non-biogenic sources;the amount of perfluorocarbons emitted from non-biogenic sources each year;the annual release of perfluorocarbons from non-biogenic sources -Annual_Emissions_SulfurHexafluoride_NonBiogenic,annual emissions of sulfur hexafluoride from non-biogenic sources;the amount of sulfur hexafluoride emitted each year from non-biogenic sources;the annual release of sulfur hexafluoride from non-biogenic sources;the annual discharge of sulfur hexafluoride from non-biogenic sources -Annual_Emissions_VeryShortLivedCompounds_NonBiogenic,"annual amount of emissions from non-biogenic sources of very short-lived compounds;annual emissions from non-biogenic sources of very short-lived compounds;annual emissions of very short-lived compounds from non-biogenic sources;emissions from non-biogenic sources of very short-lived compounds, annually" -Annual_ExpectedLoss_NaturalHazardImpact,1 the annual cost of natural disasters;2 the estimated cost of natural disasters each year;3 the annual financial impact of natural disasters;4 the estimated financial impact of natural disasters each year -Annual_ExpectedLoss_NaturalHazardImpact_AvalancheEvent,the average annual loss from avalanches;the expected annual loss from avalanches;the annual cost of avalanches;the annual damage from avalanches -Annual_ExpectedLoss_NaturalHazardImpact_CoastalFloodEvent,the annual expected loss from coastal flooding;the amount of money that is expected to be lost each year due to coastal flooding;the expected annual loss from coastal flooding;the annual financial impact of coastal flooding -Annual_ExpectedLoss_NaturalHazardImpact_ColdWaveEvent,the average annual loss from cold waves;the expected annual loss from cold waves;the annual cost of cold waves;the annual damage from cold waves -Annual_ExpectedLoss_NaturalHazardImpact_DroughtEvent,the average annual loss from droughts;the expected annual loss from droughts;the annual damage from droughts;the annual expected loss from drought -Annual_ExpectedLoss_NaturalHazardImpact_EarthquakeEvent,the average annual loss from earthquakes in the united states;the amount of money that is expected to be lost each year due to earthquakes in the united states;1 the average annual loss from earthquakes in the united states;2 the amount of money that is expected to be lost each year due to earthquakes in the united states -Annual_ExpectedLoss_NaturalHazardImpact_HailEvent,the average annual loss from hail damage -Annual_ExpectedLoss_NaturalHazardImpact_HeatWaveEvent,the annual expected loss from heat waves;the amount of money that is expected to be lost each year due to heat waves;the financial impact of heat waves;the expected loss from heat waves each year -Annual_ExpectedLoss_NaturalHazardImpact_HurricaneEvent,the annual expected loss from hurricane impact;the annual loss from hurricanes;the annual damage from hurricanes;the annual impact of hurricanes -Annual_ExpectedLoss_NaturalHazardImpact_IceStormEvent,how much money is expected to be lost each year due to ice storms?;what is the estimated annual cost of ice storms?;what is the annual financial impact of ice storms?;how much damage do ice storms cause each year? -Annual_ExpectedLoss_NaturalHazardImpact_LandslideEvent,the average annual loss from landslides;the expected annual loss from landslides;the amount of money that is expected to be lost each year due to landslides;the cost of landslides each year -Annual_ExpectedLoss_NaturalHazardImpact_LightningEvent,the average annual loss from lightning strikes in the united states;the amount of money that is typically lost each year due to lightning strikes in the united states;the expected cost of lightning strikes in the united states each year;the estimated financial impact of lightning strikes in the united states each year -Annual_ExpectedLoss_NaturalHazardImpact_RiverineFloodingEvent,the average annual loss from riverine flooding;the expected annual loss from riverine flooding;the annual cost of riverine flooding;the annual damage from riverine flooding -Annual_ExpectedLoss_NaturalHazardImpact_StrongWindEvent,how much money is expected to be lost each year due to strong winds?;what is the annual expected loss from strong winds?;what is the average annual loss from strong winds?;what is the estimated annual loss from strong winds? -Annual_ExpectedLoss_NaturalHazardImpact_TornadoEvent,the average annual loss from tornadoes in the united states;the expected annual cost of tornadoes in the united states;the estimated annual damage from tornadoes in the united states;the projected annual loss from tornadoes in the united states -Annual_ExpectedLoss_NaturalHazardImpact_TsunamiEvent,the average annual loss from tsunamis;the expected annual loss from tsunamis;the annual cost of tsunamis;the annual damage from tsunamis -Annual_ExpectedLoss_NaturalHazardImpact_VolcanicActivityEvent,the annual expected loss from volcanic activity;the expected loss from volcanic activity each year;the amount of money that is expected to be lost from volcanic activity each year;the annual cost of volcanic activity -Annual_ExpectedLoss_NaturalHazardImpact_WildfireEvent,the average annual loss from wildfires;the expected cost of wildfires each year;the amount of money that is lost to wildfires each year;the annual cost of wildfires to the economy -Annual_ExpectedLoss_NaturalHazardImpact_WinterWeatherEvent,the average annual loss from winter weather disasters;the average annual loss from winter weather events;the amount of money that is typically lost each year due to winter weather events;the projected financial loss from winter weather events each year -Annual_Exports_Electricity,electricity exported each year;the amount of electricity exported annually;the annual amount of electricity exported;electricity exported per year -Annual_Exports_Fuel_AviationGasoline,the amount of aviation gasoline exported each year;the yearly amount of aviation gasoline that is shipped out of the country;the annual figure for the amount of aviation gasoline that is exported;the yearly total of aviation gasoline that is shipped out of the us -Annual_Exports_Fuel_BituminousCoal,the amount of bituminous coal that is exported each year;the total amount of bituminous coal that is exported in a year;1 the amount of bituminous coal that is exported each year;4 the total tonnage of bituminous coal that is exported every year -Annual_Exports_Fuel_BrownCoal,the amount of brown coal that is exported each year;the tonnage of brown coal that is traded internationally each year;the annual brown coal trade;the annual brown coal exportation -Annual_Exports_Fuel_Charcoal,the amount of charcoal exported each year;the yearly amount of charcoal that is shipped out of the country;the annual number of charcoal shipments;the total amount of charcoal that is exported each year -Annual_Exports_Fuel_CokeOvenCoke,the amount of coke oven coke exported each year;the number of tons of coke oven coke that are exported each year;the yearly amount of coke oven coke exported;the total tonnage of coke oven coke that is exported each year -Annual_Exports_Fuel_CrudeOil,the amount of crude oil that a country exports each year;the annual volume of crude oil that a country ships out of its borders;the annual amount of crude oil that a country sends abroad;the yearly amount of crude oil exported -Annual_Exports_Fuel_DieselOil,the annual figure for diesel oil exports;the annual amount of diesel oil that is shipped out of the country;diesel oil exports per year;diesel oil shipped out annually -Annual_Exports_Fuel_FuelOil,the amount of fuel oil that is exported each year;the yearly amount of fuel oil that is shipped out of the country;the yearly number of barrels of fuel oil that are sent abroad;the annual volume of fuel oil that is shipped out of the country -Annual_Exports_Fuel_Fuelwood,the amount of fuelwood that is exported each year;the annual number of fuelwood shipments;the annual amount of fuelwood that is shipped out of a country;the annual amount of fuelwood that is traded internationally -Annual_Exports_Fuel_HardCoal,hard coal exports per year;the amount of hard coal exported each year;the yearly amount of hard coal exported;the annual hard coal export total -Annual_Exports_Fuel_Kerosene,the amount of eia_kerosene exported each year;the yearly amount of eia_kerosene that is shipped out of the country;the annual exportation of eia_kerosene;the yearly transfer of eia_kerosene to other countries -Annual_Exports_Fuel_KeroseneJetFuel,the amount of kerosene jet fuel that is exported each year;the yearly total of kerosene jet fuel that is sold to other nations;the amount of kerosene jet fuel that is sold to other countries each year;the yearly total of kerosene jet fuel that is exported -Annual_Exports_Fuel_LiquifiedPetroleumGas,the amount of liquefied petroleum gas that is exported each year;the yearly amount of liquefied petroleum gas that is shipped out of the country;the annual number of liquefied petroleum gas shipments;the total amount of liquefied petroleum gas that is exported in a year -Annual_Exports_Fuel_Lubricants,the amount of lubricants exported each year;the amount of lubricants that are exported each year;the annual figure for lubricants that are shipped out of the country;the yearly total of lubricants that are shipped internationally -Annual_Exports_Fuel_MotorGasoline, -Annual_Exports_Fuel_Naphtha,naphtha exports per year;the amount of naphtha exported each year;naphtha exports in a year;how much naphtha does the us export each year? -Annual_Exports_Fuel_NaturalGas,the amount of natural gas that is exported each year;the yearly amount of natural gas that is shipped out of the country;how much natural gas does the us export each year?;what is the annual amount of natural gas that the us exports? -Annual_Exports_Fuel_NaturalGasLiquids,the amount of natural gas liquids that are exported each year;the yearly amount of natural gas liquids that are sent out of the country;the yearly transfer of natural gas liquids to other countries;the annual shipment of natural gas liquids abroad -Annual_Exports_Fuel_OtherBituminousCoal,the amount of un other bituminous coal exported each year;the yearly amount of un other bituminous coal that is shipped out of the country;the annual figure for un other bituminous coal that is sent abroad;the yearly total of un other bituminous coal that is exported -Annual_Exports_Fuel_OtherOilProducts,the amount of other oil products exported each year;the yearly amount of other oil products that are shipped out of the country;the annual figure for the number of other oil products that are sent to other countries;the total number of other oil products that are exported each year -Annual_Exports_Fuel_ParaffinWaxes,the amount of paraffin waxes exported each year;the annual figure for the number of paraffin waxes that are exported;the amount of paraffin wax that is exported each year;the volume of paraffin wax that is exported annually -Annual_Exports_Fuel_PetroleumCoke,the amount of petroleum coke that is exported each year;the yearly amount of petroleum coke that is shipped out of the country;the annual volume of petroleum coke that is sent to other countries;the yearly tonnage of petroleum coke that is transported to foreign markets -Annual_Exports_Fuel_WhiteSpirit,how much white spirit does the us export annually? -Annual_Generation_Electricity,"total energy produced in a year (all fuels, all sectors);annual energy production (all fuels, all sectors);annual energy output (all fuels, all sectors);annual energy yield (all fuels, all sectors)" -Annual_Generation_Electricity_AutoProducer,the yearly production of electricity by cars;the annual electricity generation from cars;the annual amount of electricity generated by cars;the annual electricity production of cars -Annual_Generation_Electricity_BioGas_ThermalElectricity,the amount of biogas generated annually for thermal electricity production;the annual production of biogas for thermal electricity;the amount of biogas produced each year for thermal electricity;the annual output of biogas for thermal electricity -Annual_Generation_Electricity_BrownCoal_ThermalElectricity,annual electricity generated from brown coal in thermal power plants;the amount of electricity produced from brown coal in thermal power plants each year;the annual production of electricity from brown coal in thermal power stations;the amount of electricity generated from brown coal in thermal power stations each year -Annual_Generation_Electricity_Coal,what is the annual net generation of coal by all sectors?;coal generation by all sectors in a year;annual coal generation by all sectors;the annual net generation of coal by all sectors -Annual_Generation_Electricity_Coal_ElectricPower,the amount of electricity generated by coal each year in the electric power sector;the annual production of electricity from coal in the electric power industry;the yearly output of electricity from coal in the electric power industry;the annual amount of electricity produced from coal in the electric power sector -Annual_Generation_Electricity_Coal_ElectricUtility,annual net generation from coal-fired electric utilities -Annual_Generation_Electricity_Coal_ThermalElectricity,the annual production of thermal electricity from coal -Annual_Generation_Electricity_CombustibleFuel_AutoProducer,how much electricity do combustible fuel auto producers generate each year?;what is the annual electricity generation of combustible fuel auto producers?;how much electricity do combustible fuel auto producers generate in a year?;what is the annual electricity output of combustible fuel auto producers? -Annual_Generation_Electricity_CombustibleFuel_AutoProducerCombinedHeatPowerPlants,the amount of electricity generated each year from combustible fuels and auto producer combined heat power plants;the annual output of electricity from combustible fuels and auto producer combined heat power plants;the total amount of electricity produced each year by combustible fuels and auto producer combined heat power plants;the annual production of electricity from combustible fuels and auto producer combined heat power plants -Annual_Generation_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,the annual production of combustible fuel in autoproducer electricity power plants;the yearly output of combustible fuel in autoproducer electricity power plants;the annual amount of combustible fuel generated in autoproducer electricity power plants;the yearly generation of combustible fuel in autoproducer electricity power plants -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducer, -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,what is the annual generation of electricity from combustible fuel by main activity producer combined heat power plants?;how much electricity is produced from combustible fuel by combined heat power plants each year?;what is the annual production of electricity from combustible fuel by main activity producer combined heat power plants?;annual production of electricity from combustible fuel by main activity producer combined heat and power plants -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants, -Annual_Generation_Electricity_Commercial,annual net output from all fuels;annual net generation of electricity from all fuels;annual net electricity generation from all fuels -Annual_Generation_Electricity_CommercialCogen,the annual amount of electricity produced from all fuels in commercial cogeneration;the total annual output of electricity from all fuels in commercial cogeneration;the annual net output of electricity from all fuels in commercial cogeneration;the annual net generation of electricity from all fuels in commercial cogeneration -Annual_Generation_Electricity_CommercialNonCogen,the total amount of energy produced by all fuels in commercial non-cogen facilities each year;the annual output of all fuels in commercial non-cogen facilities;the annual amount of energy produced by commercial non-cogen facilities from all fuels;the total amount of energy produced by commercial non-cogen facilities from all types of fuel -Annual_Generation_Electricity_ConventionalHydroelectric,the amount of conventional hydroelectric energy generated in all sectors each year;the total amount of conventional hydroelectric energy produced in all sectors annually;the annual output of conventional hydroelectric energy in all sectors;the annual production of conventional hydroelectric energy in all sectors -Annual_Generation_Electricity_ConventionalHydroelectric_AutoProducer,how much electricity do auto producers generate from conventional hydroelectric power each year?;what is the annual hydroelectric power generation from conventional sources by auto producers?;how much conventional hydroelectric power do auto producers generate each year?;what is the annual hydroelectric power generation from conventional sources by the auto industry? -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricPower,the percentage of total electric power generated by conventional hydroelectric power plants in a year;the share of total electric power generated by conventional hydroelectric power plants in a year;the proportion of total electric power generated by conventional hydroelectric power plants in a year;the extent to which conventional hydroelectric power plants contribute to total electric power generation in a year -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricUtility,the amount of electricity generated by conventional hydroelectric power plants in the electric utility industry each year;the amount of electricity generated by conventional hydroelectric power plants in electric utilities each year;the annual output of conventional hydroelectric power plants in electric utilities;the annual hydroelectric power generation of electric utilities -Annual_Generation_Electricity_ConventionalHydroelectric_MainActivityProducer,annual production of conventional hydroelectricity by the main activity producer;the amount of conventional hydroelectricity produced annually by the main activity producer;the annual output of conventional hydroelectricity from the main activity producer;the annual yield of conventional hydroelectricity from the main activity producer -Annual_Generation_Electricity_DieselOil_ThermalElectricity,the amount of thermal electricity generated from diesel oil each year;the annual production of thermal electricity from diesel oil;the yearly output of thermal electricity from diesel oil;the amount of thermal electricity produced from diesel oil in a year -Annual_Generation_Electricity_ElectricPower, -Annual_Generation_Electricity_ElectricUtility,what was the annual net generation of electricity by electric utilities? -Annual_Generation_Electricity_ElectricUtilityCogen,"annual net generation of all fuels, electric utility, and cogeneration plants" -Annual_Generation_Electricity_ElectricUtilityNonCogen,"the total amount of electricity generated by all fuels in electric utilities that are not cogeneration facilities, in a given year;the total amount of electricity generated by all fuels in electric utilities that are not combined heat and power (chp) facilities, in a given year;the total amount of electricity generated by all fuels in electric utilities that do not use cogeneration, in a given year;the total amount of electricity generated by all fuels in electric utilities that are not cogeneration plants in a given year" -Annual_Generation_Electricity_FuelOil_ThermalElectricity,the amount of thermal electricity generated from fuel oil each year;the yearly production of thermal electricity from fuel oil;the annual output of thermal electricity from fuel oil;the amount of thermal electricity produced from fuel oil in one year -Annual_Generation_Electricity_IndependentPowerProducers,the total amount of electricity generated from all fuels by independent power producers each year;the annual net generation of electricity from independent power producers;the annual net generation of electricity from all fuels by independent power producers;the total annual net generation of electricity from independent power producers -Annual_Generation_Electricity_Industrial,annual net generation of all fuels by industry;annual net generation of all fuels by sector;annual net generation of all fuels by economic activity;annual net generation of all fuels by end-use sector -Annual_Generation_Electricity_IndustrialCogen,the amount of electricity generated by industrial cogeneration each year;the total amount of electricity produced by industrial cogeneration facilities in a year;the annual output of electricity from industrial cogeneration;the annual output of electricity from industrial cogeneration plants -Annual_Generation_Electricity_IndustrialNonCogen,electricity generated by industrial non-cogen plants each year;the annual amount of electricity generated by industrial non-cogen plants;the total amount of electricity generated by industrial non-cogen plants in one year;the yearly output of electricity from industrial non-cogen plants -Annual_Generation_Electricity_MainActivityProducer,what is the annual generation of electricity by each type of producer?;what are the annual electricity generation figures for each type of producer?;what are the annual electricity generation statistics for each type of producer?;what is the annual electricity generation by each type of producer? -Annual_Generation_Electricity_NaturalGas,annual generation of natural gas in all sectors;natural gas generation in all sectors per year;the annual net generation of natural gas in all sectors;the total annual generation of natural gas in all sectors -Annual_Generation_Electricity_NaturalGas_Commercial, -Annual_Generation_Electricity_NaturalGas_CommercialCogen,the amount of natural gas generated by commercial cogeneration each year;the annual net generation of natural gas from commercial cogeneration facilities;the annual amount of natural gas generated by commercial cogeneration facilities;the amount of natural gas generated annually by commercial cogeneration -Annual_Generation_Electricity_NaturalGas_ElectricPower,the annual net generation of natural gas in electric power -Annual_Generation_Electricity_NaturalGas_ElectricUtility,the annual generation of natural gas by electric utilities -Annual_Generation_Electricity_NaturalGas_ElectricUtilityCogen, -Annual_Generation_Electricity_NaturalGas_ElectricUtilityNonCogen,"the annual net generation of natural gas by utilities, excluding cogeneration;the annual net output of natural gas generated by utilities, excluding cogeneration;what was the annual net generation of natural gas in the utility non-cogen sector?;what was the average annual net generation of natural gas in the utility non-cogen sector?" -Annual_Generation_Electricity_NaturalGas_IndependentPowerProducers,the annual net generation of natural gas by independent power producers;the annual generation of natural gas by independent power producers -Annual_Generation_Electricity_NaturalGas_Industrial,the net amount of natural gas generated by all industries in a year;the annual net output of natural gas from all industrial sources;the annual net generation of natural gas in all industries;the annual net generation of natural gas by all industries -Annual_Generation_Electricity_NaturalGas_IndustrialCogen,annual natural gas generation for industrial cogeneration -Annual_Generation_Electricity_NaturalGas_ThermalElectricity,1 the amount of electricity generated from natural gas in thermal power plants each year;2 the annual production of electricity from natural gas in thermal power plants;3 the total amount of electricity generated from natural gas in thermal power plants in a year;4 the annual output of electricity from natural gas in thermal power plants -Annual_Generation_Electricity_NonRenewableWaste_ThermalElectricity,the amount of non-renewable waste generated each year from thermal electricity production;the annual production of non-renewable waste from thermal electricity generation;the yearly amount of non-renewable waste produced by thermal electricity generation;the annual generation of non-renewable waste from thermal electricity production facilities -Annual_Generation_Electricity_OilProducts_ThermalElectricity,the amount of thermal electricity generated by oil products industries each year;the yearly output of thermal electricity from oil products industries;the annual production of thermal electricity from oil products industries;the amount of thermal electricity produced by oil products industries in a year -Annual_Generation_Electricity_Other,total annual generation from all sectors;annual net generation from all sectors;annual net electricity generation from all sectors;annual net electricity production from all sectors -Annual_Generation_Electricity_OtherBiomass,total energy produced from other biomass in all sectors in one year;annual amount of energy from other biomass in all sectors;total amount of energy produced from other biomass in all sectors in a year;annual net production of other biomass in all sectors -Annual_Generation_Electricity_OtherBiomass_ElectricPower,the amount of electricity generated from biomass each year;the total amount of electricity produced from biomass in a year;the annual output of electricity from biomass;the yearly production of electricity from biomass -Annual_Generation_Electricity_OtherBiomass_ElectricUtilityNonCogen,the annual output of electricity from other biomass in electric utility non-cogen plants;the annual yield of electricity from other biomass in electric utility non-cogen plants;the annual output of electricity from other biomass in electric utility non-cogen facilities;the annual net generation of electricity from biomass in electric utilities that are not cogeneration facilities -Annual_Generation_Electricity_OtherBiomass_IndependentPowerProducers,the amount of electricity generated by independent power producers from other biomass sources each year;the annual net generation of electricity from other biomass sources by independent power producers;the total amount of electricity generated by independent power producers from other biomass sources in a year;the annual output of electricity from other biomass sources by independent power producers -Annual_Generation_Electricity_Other_ElectricPower,the annual sum of electricity generated from other fuels -Annual_Generation_Electricity_PetroleumLiquids,annual petroleum liquids yield from all sectors;annual net production of petroleum liquids in all sectors;annual net output of petroleum liquids in all sectors;annual net yield of petroleum liquids in all sectors -Annual_Generation_Electricity_PetroleumLiquids_Commercial,annual commercial production of petroleum liquids;annual commercial petroleum liquids production -Annual_Generation_Electricity_PetroleumLiquids_ElectricPower,the total amount of petroleum liquids generated by electric power plants each year;the total annual production of petroleum liquids by electric power plants;the total amount of petroleum liquids that electric power plants produce each year;the total annual output of petroleum liquids from electric power plants -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtility, -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtilityNonCogen,"the annual net generation of petroleum liquids by electric utilities, excluding cogeneration;the annual production of petroleum liquids by electric utilities, excluding cogeneration;the annual yield of petroleum liquids from electric utilities, excluding cogeneration;the annual production of petroleum liquids by electric utilities, not including cogeneration" -Annual_Generation_Electricity_PetroleumLiquids_IndependentPowerProducers,the annual production of petroleum liquids by independent power producers;the annual yield of petroleum liquids by independent power producers;annual production of petroleum liquids by independent power producers;the yearly yield of petroleum liquids from independent power producers -Annual_Generation_Electricity_PetroleumLiquids_Industrial,the annual production of petroleum liquids by industry -Annual_Generation_Electricity_PetroleumLiquids_IndustrialCogen,the amount of electricity generated from petroleum liquids in industrial cogeneration each year;the annual net output of electricity from petroleum liquids in industrial cogeneration;the annual net generation of electricity from petroleum liquids in industrial cogeneration facilities;the annual net production of electricity from petroleum liquids in industrial cogeneration units -Annual_Generation_Electricity_RenewableEnergy,the total amount of electricity generated from other renewable sources in all sectors each year;annual generation of other renewable energy sources in all sectors;annual production of other renewable energy sources in all sectors;annual output of other renewable energy sources in all sectors -Annual_Generation_Electricity_RenewableEnergy_Commercial,total annual generation from other renewable sources;total annual net generation from other renewable energy sources;total annual net generation from non-hydroelectric renewable energy sources;total annual net generation from renewable energy sources other than hydropower -Annual_Generation_Electricity_RenewableEnergy_ElectricPower,the total amount of electricity generated from other renewable sources each year;the total amount of electricity generated from renewable sources each year;the total amount of electricity generated from other renewable sources in a year;the total amount of electricity generated from sources that are sustainable and renewable -Annual_Generation_Electricity_RenewableEnergy_ElectricUtility,the annual net generation of other renewables in electric utilities;the annual output of other renewable energy sources in electric utilities;the annual amount of electricity generated from other renewable sources in electric utilities;the annual production of electricity from other renewable sources in electric utilities -Annual_Generation_Electricity_RenewableEnergy_ElectricUtilityNonCogen,the annual net generation of other renewables in electric utility non-cogen;the total amount of electricity generated by other renewables in electric utility non-cogen each year;the total annual output of other renewables in electric utility non-cogen;the total amount of electricity produced by other renewables in electric utility non-cogen each year -Annual_Generation_Electricity_RenewableEnergy_IndependentPowerProducers,the annual net generation of other renewables by independent power producers;the amount of electricity generated by independent power producers from other renewable sources each year;the total amount of electricity generated from other renewable sources by independent power producers in a year;the annual output of other renewable energy sources from independent power producers -Annual_Generation_Electricity_RenewableEnergy_Industrial,annual generation of renewable energy by all industries;renewable energy generation by all industries in a year;the total amount of renewable energy generated by all industries in a year;annual generation of other renewables by all industries -Annual_Generation_Electricity_RenewableEnergy_IndustrialCogen,the annual net generation of other renewables in industrial cogeneration;the amount of electricity generated from other renewables in industrial cogeneration each year;the total amount of electricity generated from other renewable sources in industrial cogeneration over the course of a year;the annual output of electricity from other renewable sources in industrial cogeneration -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic,the annual net output of small-scale solar photovoltaics in all sectors -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Commercial,annual small-scale solar photovoltaic generation in all commercial sectors;annual net generation from small-scale solar photovoltaics in all commercial sectors;annual small-scale solar photovoltaic generation in the commercial sector;annual net generation from small-scale solar photovoltaics in the commercial sector -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Industrial,the annual net generation of small-scale solar photovoltaic in all industrial sectors;the amount of electricity generated by small-scale solar photovoltaic in all industrial sectors each year;the total amount of electricity generated by small-scale solar photovoltaic in all industrial sectors in one year;the annual output of small-scale solar photovoltaic in all industrial sectors -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Residential,the amount of electricity generated by small-scale solar photovoltaic systems in homes each year;the annual output of small-scale solar photovoltaic systems in residential settings;the annual net generation of electricity from small-scale solar photovoltaic systems in residential buildings;the annual output of solar power from small-scale residential photovoltaic systems -Annual_Generation_Electricity_Solar,annual solar generation in all sectors;annual net solar generation;all-sector annual solar generation -Annual_Generation_Electricity_SolarPhotovoltaic_AutoProducer,the amount of electricity generated by solar photovoltaic auto producers each year;the annual output of electricity from solar photovoltaic auto producers;the total amount of electricity produced by solar photovoltaic auto producers in one year;the yearly production of electricity from solar photovoltaic auto producers -Annual_Generation_Electricity_SolarPhotovoltaic_MainActivityProducer,solar photovoltaic electricity generation per year;annual solar photovoltaic electricity production;the amount of electricity generated by solar photovoltaics each year;the annual output of solar photovoltaic power plants -Annual_Generation_Electricity_Solar_AutoProducer,the amount of electricity generated from solar power by car manufacturers each year;the annual output of solar power by car companies;the yearly production of solar electricity by automobile manufacturers;the amount of solar energy produced by car makers each year -Annual_Generation_Electricity_Solar_Commercial,commercial industries' annual generation of electricity from solar energy;the amount of electricity generated by solar energy in commercial industries each year;the annual output of solar-generated electricity in commercial industries;the amount of solar power generated by commercial industries each year -Annual_Generation_Electricity_Solar_IndependentPowerProducers,the amount of electricity generated by solar power for independent power producers each year;the annual output of solar power for independent power producers;the total amount of electricity generated by solar power for independent power producers in a year;the annual production of solar power for independent power producers -Annual_Generation_Electricity_Solar_Industrial, -Annual_Generation_Electricity_Solar_MainActivityProducer,how much solar energy did the main activity producer generate in a year?;how much solar power did the main activity producer produce in a year?;what was the annual solar generation of the main activity producer?;what was the annual solar output of the main activity producer? -Annual_Generation_Electricity_Solar_Residential,the total amount of solar power generated in residential areas each year;the annual amount of electricity generated by solar panels in homes;the total amount of solar energy produced by residential solar systems each year;the annual output of solar power from residential solar panels -Annual_Generation_Electricity_SolidBioFuel_ThermalElectricity,the amount of electricity generated from solid biofuels each year;the annual production of electricity from solid biofuels;the yearly output of electricity from solid biofuels;the amount of electricity produced from solid biofuels in a year -Annual_Generation_Electricity_ThermalElectricity,the amount of thermal electricity generated each year;the total amount of thermal electricity produced in a year;the annual output of thermal electricity;the yearly production of thermal electricity -Annual_Generation_Electricity_UtilityScalePhotovoltaic,the amount of electricity generated by photovoltaics in utility-scale power plants each year;the total amount of electricity produced by photovoltaics in utility-scale power plants over the course of a year;the annual output of photovoltaics in utility-scale power plants;the annual production of electricity from photovoltaics in utility-scale power plants -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricPower,annual net generation of utility-scale photovoltaics;total annual output of utility-scale photovoltaics;annual net output of utility-scale photovoltaics -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricUtilityNonCogen,"the annual output of utility-scale photovoltaics, excluding cogeneration;the annual amount of electricity generated by utility-scale photovoltaics, not including cogeneration;the amount of electricity generated by utility-scale photovoltaics each year by electric utilities that are not cogeneration facilities;the annual output of utility-scale photovoltaics by electric utilities that are not cogeneration facilities" -Annual_Generation_Electricity_UtilityScalePhotovoltaic_IndependentPowerProducers,the amount of electricity generated by utility-scale photovoltaics in independent producers each year;the annual production of electricity from utility-scale photovoltaics in independent producers;the total amount of electricity generated by utility-scale photovoltaics in independent producers over the course of a year;the annual output of electricity from utility-scale photovoltaics in independent producers -Annual_Generation_Electricity_UtilityScaleSolar,the annual output of utility-scale solar power plants;annual output of utility-scale solar power plants;the annual production of utility-scale solar power plants;the annual electricity generation of utility-scale solar power plants -Annual_Generation_Electricity_UtilityScaleSolar_ElectricPower,annual electricity generation from utility-scale solar power;annual net generation of electricity from utility-scale solar electric power plants;the annual electricity generation from utility-scale solar power plants;total annual electricity generated by utility-scale solar power plants -Annual_Generation_Electricity_UtilityScaleSolar_ElectricUtilityNonCogen,annual net generation of utility-scale solar in electric utility non-cogen;annual net generation of utility-scale solar in electric utilities excluding cogeneration plants;annual net generation of utility-scale solar in electric utilities excluding combined-cycle and cogeneration plants;annual net generation of utility-scale solar in non-cogeneration electric utilities -Annual_Generation_Electricity_UtilityScaleSolar_IndependentPowerProducers,the annual output of electricity from independent power producers;the total annual electricity generation from independent power producers;the annual electricity output of independent power producers;the annual electricity output from independent power producers -Annual_Generation_Electricity_Wind,the amount of wind energy generated each year in all sectors;annual wind energy generation in all sectors;annual wind power generation in all sectors;the annual net generation of wind power -Annual_Generation_Electricity_Wind_ElectricPower,the annual output of wind-powered generators;the annual output of wind farms;the annual production of wind power -Annual_Generation_Electricity_Wind_ElectricUtilityNonCogen,"the annual output of wind power by electric utilities, excluding cogeneration;the annual amount of wind energy produced by electric utilities, not including cogeneration;the total amount of wind power produced by electric utilities each year, not including cogeneration;the amount of wind power generated by electric utilities each year that are not cogeneration facilities" -Annual_Generation_Electricity_Wind_IndependentPowerProducers,the total amount of wind energy generated by independent power producers in a year;the total annual output of wind turbines owned by independent power producers;the total amount of electricity generated by wind power in a year from independent power producers;the total amount of wind energy produced by independent power producers in a year -Annual_Generation_Electricity_Wind_MainActivityProducer,the amount of electricity generated from wind each year;the yearly production of wind power;the annual output of wind-generated electricity;the annual yield of wind-powered electricity -Annual_Generation_Energy_CombustibleFuel_MainActivityProducer,the annual production of combustible fuel;the yearly output of combustible fuel;the amount of combustible fuel produced each year;the total amount of combustible fuel produced in a year -Annual_Generation_Energy_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,annual energy production by fuel type for combined heat and power plants;annual energy generation by combustible fuel for main activity producer combined heat power plants;annual energy generation by combustible fuel for main activity producer cogeneration plants;annual energy generation by combustible fuel for main activity combined heat and power plants -Annual_Generation_Energy_FuelOil,the annual production of oil -Annual_Generation_Energy_Heat,the amount of heat produced each year;the yearly production of heat;the annual heat output;the annual heat generation -Annual_Generation_Energy_HeatCombustibleFuels,the amount of heat produced by combustible fuels each year;the annual output of heat from combustible fuels;the yearly generation of heat from combustible fuels;the amount of heat produced by combustible fuels in a year -Annual_Generation_Energy_Heat_AutoProducer,the amount of heat energy generated by car manufacturers each year;the total amount of heat energy produced by the automotive industry in a year;the annual output of heat energy from the car industry;the yearly production of heat energy by the automotive sector -Annual_Generation_Energy_Heat_MainActivityProducer,the amount of heat produced by the main activity producer each year;the annual output of heat from the main activity producer;the total amount of heat produced by the main activity producer in one year;the yearly heat output of the main activity producer -Annual_Generation_Energy_NaturalGas,the amount of natural gas generated each year;the yearly production of natural gas;the amount of natural gas produced in a year;the yearly yield of natural gas -Annual_Generation_Energy_Refinery,annual refinery energy output;the annual energy generation of refineries -Annual_Generation_Energy_Solar,the amount of solar energy generated each year;the yearly production of solar power;the annual output of solar electricity;the amount of solar energy produced in a year -Annual_Generation_Energy_Water,the amount of water generated by the eia each year;the total amount of water produced by the eia in a year;the annual output of water from the eia;the yearly production of water by the eia -Annual_Generation_Fuel_AdditivesOxygenates,the amount of additives oxygenates generated each year;the yearly production of additives oxygenates;the annual output of additives oxygenates;the yearly yield of additives oxygenates -Annual_Generation_Fuel_AnthraciteCoal,anthracite coal production per year;the amount of anthracite coal produced each year;the annual output of anthracite coal;the yearly yield of anthracite coal -Annual_Generation_Fuel_AviationGasoline,the amount of aviation gasoline produced each year;the annual production of aviation gasoline;the yearly output of aviation gasoline;the annual yield of aviation gasoline -Annual_Generation_Fuel_AviationGasoline_Refinery,annual production of aviation gasoline by refineries;the amount of aviation gasoline produced by refineries each year;the annual output of aviation gasoline from refineries;the number of gallons of aviation gasoline produced by refineries each year -Annual_Generation_Fuel_Bagasse,the amount of bagasse produced each year;the annual yield of bagasse;the annual production of bagasse;the annual harvest of bagasse -Annual_Generation_Fuel_BioDiesel,the annual yield of biodiesel;the yearly production of biodiesel;what is the annual production of biodiesel?;biodiesel production per year -Annual_Generation_Fuel_BioGas,the amount of biogas produced each year;the yearly output of biogas;the annual yield of biogas;the annual production of biogas -Annual_Generation_Fuel_BioGasoline,the amount of bio gasoline produced each year;the annual production of bio gasoline;the yearly output of bio gasoline;the amount of bio gasoline produced in a year -Annual_Generation_Fuel_BituminousCoal, -Annual_Generation_Fuel_BituminousCoal_Refinery,the amount of bituminous coal generated by refinery industries each year;the annual production of bituminous coal by refinery industries;the yearly output of bituminous coal by refinery industries;the amount of bituminous coal produced by refinery industries in a year -Annual_Generation_Fuel_BlastFurnaceGas,the amount of blast furnace gas produced each year;the yearly production of blast furnace gas;the annual output of blast furnace gas;the yearly yield of blast furnace gas -Annual_Generation_Fuel_BrownCoal,the amount of brown coal generated each year;the yearly production of brown coal;the annual output of brown coal;the amount of brown coal produced in a year -Annual_Generation_Fuel_Charcoal,the amount of charcoal produced each year;the yearly production of charcoal;the annual yield of charcoal;the annual output of charcoal -Annual_Generation_Fuel_CokeOvenCoke,the amount of oven coke produced each year;the yearly production of oven coke;the annual output of oven coke;the amount of oven coke produced in a year -Annual_Generation_Fuel_CokeOvenGas,the amount of coke oven gas produced each year;the yearly output of coke oven gas;the annual production of coke oven gas;the amount of coke oven gas produced in one year -Annual_Generation_Fuel_CokingCoal,coking coal production per year;annual coking coal output;the amount of coking coal produced each year;the yearly generation of coking coal -Annual_Generation_Fuel_CrudeOil,the amount of energy generated from crude oil each year;the annual production of energy from crude oil;the total amount of energy produced from crude oil in one year;the yearly output of energy from crude oil -Annual_Generation_Fuel_DieselOil,annual energy generation from diesel oil;the amount of energy generated from diesel oil each year;the total amount of energy produced from diesel oil in a year;the annual production of energy from diesel oil -Annual_Generation_Fuel_DieselOil_Refinery,diesel oil production in refineries -Annual_Generation_Fuel_FuelOil,the amount of fuel produced each year;the yearly production of fuel;the total amount of fuel produced in one year;the annual output of fuel -Annual_Generation_Fuel_FuelOil_Refinery,the amount of fuel oil produced in a refinery each year;the yearly production of fuel oil in a refinery;the annual output of fuel oil from a refinery;the annual yield of fuel oil from a refinery -Annual_Generation_Fuel_Fuelwood,annual production of firewood;the annual yield of firewood;the annual yield of fuelwood;the annual production of fuelwood -Annual_Generation_Fuel_HardCoal,the amount of hard coal produced each year;the yearly output of hard coal;the annual yield of hard coal;the annual production of hard coal -Annual_Generation_Fuel_Kerosene,the amount of kerosene generated by the eia each year;the annual production of kerosene by the eia;the yearly output of kerosene by the eia;the eia's annual kerosene output -Annual_Generation_Fuel_KeroseneJetFuel,the yearly production of kerosene jet fuel;the yearly yield of kerosene jet fuel;the amount of kerosene jet fuel produced in one year;annual production of kerosene jet fuel -Annual_Generation_Fuel_KeroseneJetFuel_Refinery,kerosene jet fuel production in refinery per year;annual refinery kerosene jet fuel output;refinery kerosene jet fuel production per annum;kerosene jet fuel production in refinery on an annual basis -Annual_Generation_Fuel_Kerosene_Refinery,kerosene production from refineries;the amount of kerosene produced by refineries each year;the annual output of kerosene from refineries;the yearly generation of kerosene by refineries -Annual_Generation_Fuel_LigniteCoal,the amount of electricity generated by lignite coal each year;the annual production of electricity from lignite coal;the yearly output of electricity from lignite coal;the amount of electricity produced from lignite coal in a year -Annual_Generation_Fuel_LiquifiedPetroleumGas,the amount of liquefied petroleum gas generated each year;the annual production of liquefied petroleum gas;the annual yield of liquefied petroleum gas;the annual supply of liquefied petroleum gas -Annual_Generation_Fuel_LiquifiedPetroleumGas_PetroleumPlants,1 the amount of liquefied petroleum gas produced by petroleum plants each year;2 the yearly production of liquefied petroleum gas by petroleum plants;3 the annual output of liquefied petroleum gas from petroleum plants;4 the total amount of liquefied petroleum gas produced by petroleum plants in a year -Annual_Generation_Fuel_LiquifiedPetroleumGas_Refinery,the amount of liquefied petroleum gas produced by a refinery in one year;the total amount of liquefied petroleum gas produced by a refinery in a 12-month period;the annual output of liquefied petroleum gas from a refinery;the annual yield of liquefied petroleum gas from a refinery -Annual_Generation_Fuel_Lubricants,the amount of lubricants produced each year;the yearly production of lubricants;the number of lubricants produced each year;the yearly number of lubricants produced -Annual_Generation_Fuel_Lubricants_Refinery,the amount of fuel lubricants produced by refineries each year;the annual output of fuel lubricants from refineries;the total amount of fuel lubricants produced by refineries in a year;the annual production of fuel lubricants by refineries -Annual_Generation_Fuel_MotorGasoline,the annual yield of gasoline;the annual production of gasoline;the yearly generation of gasoline -Annual_Generation_Fuel_MotorGasoline_Refinery, -Annual_Generation_Fuel_MunicipalWaste,the amount of trash produced by a city each year;the total amount of garbage that a city produces in a year;the yearly output of trash from a city;the annual sum of waste produced by a city -Annual_Generation_Fuel_Naphtha,the amount of naphtha produced each year;the yearly output of naphtha;the annual production of naphtha;the yearly yield of naphtha -Annual_Generation_Fuel_Naphtha_Refinery,the amount of naphtha produced by a refinery each year;the annual output of naphtha from a refinery;the yearly production of naphtha by a refinery;the amount of naphtha that a refinery produces in a year -Annual_Generation_Fuel_NaturalGas, -Annual_Generation_Fuel_NaturalGasLiquids,the amount of natural gas liquids produced each year;the yearly production of natural gas liquids;the annual yield of natural gas liquids;the annual output of natural gas liquids -Annual_Generation_Fuel_OtherBituminousCoal, -Annual_Generation_Fuel_OtherOilProducts,what is the annual production of oil products other than crude oil?;the amount of other oil products generated each year;the yearly production of other oil products;the yearly yield of other oil products -Annual_Generation_Fuel_OtherOilProducts_Refinery,the annual output of other oil products by refinery industries;the amount of other oil products produced by refinery industries each year;the yearly production of other oil products by refinery industries;the number of other oil products produced by refinery industries each year -Annual_Generation_Fuel_ParaffinWaxes,the amount of paraffin wax produced each year;the annual production of paraffin wax;the amount of paraffin wax that is produced each year;the yearly yield of paraffin wax -Annual_Generation_Fuel_ParaffinWaxes_Refinery,paraffin waxes generated by the refinery annually;annual production of paraffin waxes by the refinery;the refinery's annual production of paraffin waxes;paraffin waxes produced by the refinery each year -Annual_Generation_Fuel_PetroleumCoke, -Annual_Generation_Fuel_PetroleumCoke_Refinery,the amount of petroleum coke produced by refineries each year;the annual production of petroleum coke by refineries;the yearly output of petroleum coke from refineries;the amount of petroleum coke that refineries produce in a year -Annual_Generation_Fuel_RefineryFeedstocks,the amount of refinery feedstocks generated each year;the yearly production of refinery feedstocks;the annual output of refinery feedstocks;the amount of refinery feedstocks produced in a year -Annual_Generation_Fuel_RefineryGas, -Annual_Generation_Fuel_RefineryGas_Refinery, -Annual_Generation_Fuel_VegetalWaste,the yearly generation of vegetable waste;the annual production of vegetable waste;the annual vegetable waste output -Annual_Generation_Fuel_WhiteSpirit,the amount of white spirit produced each year;the yearly production of white spirit;the annual output of white spirit;the amount of white spirit produced in a year -Annual_Generation_Fuel_WhiteSpirit_Refinery,white spirit production in a refinery per year;the amount of white spirit produced by a refinery in a year;the annual output of white spirit from a refinery;the yearly yield of white spirit from a refinery -Annual_Imports_Electricity,electricity imported each year;the amount of electricity imported each year;the annual amount of electricity imported;the yearly amount of electricity imported -Annual_Imports_Fuel_AnthraciteCoal,the amount of anthracite coal that is imported each year;the yearly amount of anthracite coal that is brought into the country;the annual quantity of anthracite coal that is brought in from other countries;the yearly number of tons of anthracite coal that are brought in from other countries -Annual_Imports_Fuel_AviationGasoline,the amount of aviation gasoline imported each year;the yearly amount of aviation gasoline imported;the annual amount of aviation gasoline that is brought into the country;the total amount of aviation gasoline that is brought into the country in a year -Annual_Imports_Fuel_BituminousCoal,the amount of bituminous coal that the united states imports each year;the yearly quantity of bituminous coal that the us brings in from other countries;the number of tons of bituminous coal that the us brings in each year;the yearly volume of bituminous coal that the us imports -Annual_Imports_Fuel_BrownCoal,annual imports of brown coal;brown coal imports per year;the amount of brown coal imported each year;the annual quantity of brown coal imported -Annual_Imports_Fuel_Charcoal,the amount of charcoal imported each year;the yearly amount of charcoal brought in from other countries;the annual quantity of charcoal brought into the country;the annual amount of charcoal that is brought into the country from other countries -Annual_Imports_Fuel_CokeOvenCoke,the amount of coke oven coke imported annually;the annual rate of coke oven coke imports;the yearly volume of coke oven coke imports;the annual figure for coke oven coke imports -Annual_Imports_Fuel_CokingCoal,the amount of coking coal that is imported each year;the annual quantity of coking coal that is imported;the yearly volume of coking coal that is imported;the amount of coking coal imported each year -Annual_Imports_Fuel_CrudeOil,the amount of crude oil the us imports each year;the yearly amount of crude oil the us imports;the annual amount of crude oil the us imports;the us's yearly crude oil imports -Annual_Imports_Fuel_DieselOil,the yearly amount of diesel oil imported;the annual rate of diesel oil imports;the annual volume of diesel oil imports;the amount of diesel oil that the us imports each year -Annual_Imports_Fuel_FuelOil,the amount of fuel oil the us imports each year;the annual fuel oil imports of the us;the us's annual fuel oil imports;the amount of fuel oil that the united states imports each year -Annual_Imports_Fuel_Fuelwood,the amount of fuelwood imported each year;the yearly amount of fuelwood imported;the annual figure for fuelwood imports;the yearly total of fuelwood imports -Annual_Imports_Fuel_HardCoal,the amount of hard coal that is imported each year;the yearly amount of hard coal that is brought into the country;the annual volume of hard coal that is brought in from other countries;the number of tons of hard coal that are imported each year -Annual_Imports_Fuel_Kerosene,how much kerosene does the us import each year?;what is the annual amount of kerosene the us imports?;how much kerosene does the us import annually?;what is the us's annual kerosene import? -Annual_Imports_Fuel_KeroseneJetFuel,the amount of kerosene jet fuel imported each year;the yearly amount of kerosene jet fuel brought in from other countries;the total amount of kerosene jet fuel imported annually;the annual sum of kerosene jet fuel imported from other countries -Annual_Imports_Fuel_LiquifiedPetroleumGas,how much liquified petroleum gas does the us import each year?;what is the annual amount of liquified petroleum gas that the us imports?;what is the total amount of liquified petroleum gas that the us imports each year?;how much liquified petroleum gas does the us bring in each year? -Annual_Imports_Fuel_Lubricants,the amount of lubricants imported each year;the yearly amount of lubricants brought into the country;the annual sum of lubricants imported;the annual amount of lubricants imported -Annual_Imports_Fuel_MotorGasoline,the annual figure for motor gasoline that is transferred to foreign countries;the yearly quantity of motor gasoline that is transferred to other nations -Annual_Imports_Fuel_Naphtha,the amount of naphtha the us imports each year;the annual naphtha imports of the us;the us's annual naphtha imports;the amount of naphtha that the us imports each year -Annual_Imports_Fuel_NaturalGas,the amount of natural gas the us imports each year;the yearly volume of natural gas the us acquires from other countries;the yearly total of natural gas the us imports from other nations;the annual quantity of natural gas the us receives from other countries -Annual_Imports_Fuel_OtherBituminousCoal,the amount of bituminous coal imported by the un each year;the annual amount of bituminous coal that the un imports;the quantity of bituminous coal that the un imports each year;the annual figure for bituminous coal imported by the un -Annual_Imports_Fuel_OtherOilProducts,the amount of other oil products imported each year;the yearly amount of other oil products imported;the annual quantity of other oil products imported;the annual volume of other oil products imported -Annual_Imports_Fuel_ParaffinWaxes,how much paraffin wax does the us import each year?;what is the annual amount of paraffin wax that the us imports?;what is the total annual import of paraffin wax by the us?;what is the quantity of paraffin wax that the us imports each year? -Annual_Imports_Fuel_PetroleumCoke,how much money does petroleum coke fuel make in a year?;what is the annual income of petroleum coke fuel?;what is the yearly profit of petroleum coke fuel?;what is the annual revenue of petroleum coke fuel? -Annual_Imports_Fuel_WhiteSpirit,white spirit imports each year;the amount of white spirit imported annually;the yearly amount of white spirit imported;the annual white spirit import total -Annual_Loss_Electricity,annual electricity loss;annual electricity leakage;electricity loss per year;how much electricity is lost each year -Annual_Loss_Energy_Heat,heat loss per year;annual heat loss;yearly heat loss;heat loss over a year -Annual_Loss_Fuel_NaturalGas,annual natural gas loss;natural gas loss per year;annual natural gas leakage;natural gas loss over the course of a year -Annual_Loss_Fuel_NaturalGas_GasLostFlaredAndVented,annual natural gas loss due to flaring and venting;annual natural gas loss from flaring and venting;annual natural gas loss from flaring and venting operations;annual natural gas loss from flaring and venting activities -Annual_ProductReclassification_Fuel_DieselOil,annual diesel oil reclassification;reclassification of diesel oil every year;diesel oil reclassification on an annual basis;annual review of diesel oil classification -Annual_ProductReclassification_Fuel_FuelOil,reclassification of fuel oil products on an annual basis;annual review of fuel oil product classifications;annual update of fuel oil product categories;annual revision of fuel oil product codes -Annual_ProductReclassification_Fuel_Kerosene,annual kerosene reclassification;reclassification of kerosene on an annual basis;kerosene reclassification every year;kerosene reclassification on a yearly basis -Annual_ProductReclassification_Fuel_KeroseneJetFuel,reclassifying kerosene jet fuel annually;changing the classification of kerosene jet fuel every year;1 reclassification of kerosene jet fuel for each year;3 yearly adjustment to the classification of kerosene jet fuel -Annual_ProductReclassification_Fuel_MotorGasoline,reclassification of motor gasoline on an annual basis;annual update of motor gasoline classifications;annual review of motor gasoline classifications;recategorization of motor gasoline on a yearly basis -Annual_ProductReclassification_Fuel_OtherOilProducts,reclassification of other oil products on an annual basis;annual reclassification of oil products;reclassification of oil products each year;annual review of oil product classifications -Annual_ProductReclassification_Fuel_RefineryFeedstocks,the annual reclassification of fuel refinery feedstocks;1 the annual reclassification of fuel refinery feedstocks;2 the annual change in the way fuel refinery feedstocks are classified;3 the annual update to the way fuel refinery feedstocks are classified -Annual_Receipt_Fuel_ForElectricityGeneration_BituminousCoal,the amount of bituminous coal received by electricity plants each year;the annual sum of bituminous coal received by electricity plants;the annual total of bituminous coal received by electricity plants;the annual sum of bituminous coal that electricity plants receive -Annual_Receipt_Fuel_ForElectricityGeneration_Coal,the amount of money that coal companies receive each year from selling coal to generate electricity in all sectors;the total annual revenue from coal sales for electricity generation in all sectors;the annual income from coal sales for electricity generation in all sectors;the total annual receipts from coal sales for electricity generation in all sectors -Annual_Receipt_Fuel_ForElectricityGeneration_Coal_ElectricPower,coal receipts for electricity generation by electric power companies each year;the annual income of electric power companies from coal sales for electricity generation;the annual revenue of electric power companies from coal sales for electricity generation;the yearly income from coal sales for electricity generation -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas,the annual receipts of natural gas by all sectors;total natural gas receipts in all sectors;all sectors' natural gas receipts;natural gas receipts for all sectors -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,annual natural gas receipts for electric power -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,the total amount of natural gas that electricity plants receive in one year -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,the annual receipts of natural gas by electricity plants -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,how much natural gas do independent power producers receive each year?;what are the annual receipts of natural gas for independent power producers?;how much natural gas do independent power producers receive annually?;2 the annual income of independent power producers from natural gas -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_Industrial,annual natural gas receipts in all industrial sectors;the annual sum of natural gas received by all industries;the total annual natural gas receipts of all industrial sectors -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,the amount of natural gas received by electricity plants in industrial cogeneration each year;the annual amount of natural gas received by electricity plants in industrial cogeneration;the yearly amount of natural gas received by electricity plants in industrial cogeneration;the annual receipts of natural gas by electricity plants in industrial cogeneration -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids,electricity plants' annual receipts of petroleum liquids;annual petroleum liquids receipts by electricity plants -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,total petroleum liquids received by electricity plants each year;the total amount of petroleum liquids received by electricity plants each year;the total amount of petroleum liquids that electricity plants receive each year;the annual sum of petroleum liquids received by electricity plants -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the amount of petroleum liquids received by electricity plants each year;the annual amount of petroleum liquids that electricity plants receive;the annual sum of petroleum liquids that electricity plants receive;the yearly sum of petroleum liquids that electricity plants receive -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal,the amount of money received for subbituminous coal used to generate electricity each year;the total amount of money paid for subbituminous coal used to generate electricity in a year;the annual income from subbituminous coal used to generate electricity;the annual revenue from sub bituminous coal used for electricity generation -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the amount of sub-bituminous coal received by electricity power plants each year;the annual amount of sub-bituminous coal that electricity power plants receive;the yearly total of sub-bituminous coal that electricity power plants take in;the annual sum of sub-bituminous coal that electricity power plants receive -Annual_Reserves_Fuel_BrownCoal,the quantity of brown coal that is still available -Annual_Reserves_Fuel_BrownCoal_EnergyAdditionalResources,additional resources on annual brown coal reserves for energy;additional resources on brown coal reserves for energy;additional reading on brown coal reserves for energy;other resources about annual reserves of brown coal for energy -Annual_Reserves_Fuel_BrownCoal_EnergyKnownReserves,1 known annual reserves of brown coal in energy terms;5 the annual known reserves of brown coal that can be used for energy;what is the known annual reserve of brown coal for energy use?;what is the known reserve of brown coal for energy use each year? -Annual_Reserves_Fuel_BrownCoal_EnergyRecoverableReserves,reserves of brown coal that can be recovered for energy use;brown coal reserves that can be recovered for energy;brown coal reserves that can be recovered for energy production;brown coal reserves that can be recovered for energy use each year -Annual_Reserves_Fuel_CrudeOil,the reserves of crude oil that a country has;total crude oil reserves;how much crude oil does the us have in reserve?;what is the us's annual crude oil reserve? -Annual_Reserves_Fuel_FallingWater_HydraulicResources,how much water is available in falling water each year?;what is the annual supply of water in falling water?;how much water can be used from falling water each year?;what is the annual flow of water in falling water? -Annual_Reserves_Fuel_HardCoal,the annual inventory of hard coal;the total amount of hard coal that is left to be mined;the amount of hard coal that is left to be mined;the remaining hard coal reserves -Annual_Reserves_Fuel_HardCoal_EnergyAdditionalResources,hard coal reserves as additional energy resources;hard coal reserves as alternative energy resources;hard coal reserves as supplementary energy resources;hard coal reserves as backup energy resources -Annual_Reserves_Fuel_HardCoal_EnergyKnownReserves,known reserves of hard coal in energy terms;hard coal reserves in energy terms;the known reserves of hard coal that can be used for energy;the known reserves of hard coal that can be used to generate energy -Annual_Reserves_Fuel_HardCoal_EnergyRecoverableReserves,hard coal energy reserves per year;the amount of hard coal energy that is available each year;the annual supply of hard coal energy;the annual hard coal energy budget -Annual_Reserves_Fuel_NaturalGas,the amount of natural gas that is reserved each year;the annual quantity of natural gas that is put in storage;the annual tally of natural gas that is kept in reserve;the yearly amount of natural gas that is reserved -Annual_Reserves_Fuel_OilShaleAndTarSands_CrudeOil,1 how much crude oil is there in oil shale and tar sands?;2 what are the annual reserves of crude oil in oil shale and tar sands?;3 what is the amount of crude oil in oil shale and tar sands?;4 what is the quantity of crude oil in oil shale and tar sands? -Annual_Reserves_Fuel_Uranium_EnergyReservesAssured,the amount of uranium that is available each year;the annual supply of uranium;the yearly amount of uranium that is available;the annual quantity of uranium that is available -Annual_RetailSales_Electricity,sales of electricity to all sectors in a year;annual sales of electricity to all sectors;electricity sales to all sectors in a year;total electricity sales to all sectors in a year -Annual_RetailSales_Electricity_Commercial,annual commercial electricity sales;annual electricity sales to commercial customers;commercial electricity sales for the year;electricity sales to commercial businesses -Annual_RetailSales_Electricity_Industrial,sales of industrial electricity in a year;value of industrial electricity sold in a year;yearly turnover from industrial electricity sales;industrial electricity sales per year -Annual_RetailSales_Electricity_OtherSector,annual sales of electricity;electricity sales per year;total annual electricity sales;retail sales of electricity in a year -Annual_RetailSales_Electricity_Residential,residential electricity sales per year;annual electricity sales to residential customers;the annual amount of electricity sold to residential customers;retail sales of electricity in residential industries -Annual_SalesRevenue_Electricity,"annual revenue from retail sales of electricity to all sectors;annual revenue from the sale of electricity to all sectors;annual sales of electricity to all sectors, in terms of revenue;annual revenue from the retail sale of electricity to all sectors" -Annual_SalesRevenue_Electricity_Commercial, -Annual_SalesRevenue_Electricity_Industrial,annual revenue from industrial electricity sales;industrial electricity sales revenue for the year;annual revenue from the sale of electricity to industrial customers;annual revenue from retail sales of electricity in the industrial sector -Annual_SalesRevenue_Electricity_OtherSector,other sectors' annual revenue from retail electricity sales;annual retail electricity sales revenue for other sectors;retail electricity sales revenue for other sectors in a year;annual revenue from retail electricity sales to other sectors -Annual_SalesRevenue_Electricity_Residential,revenue from residential electricity sales;how much money is made from selling electricity to people's homes;annual income from residential electricity sales;annual revenue from retail sales of electricity for residential consumption -Annual_Stock_Fuel_ForElectricityGeneration_Coal_ElectricPower, -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,total annual petroleum liquids stocks for electricity generation;total annual petroleum liquids stocks for power generation;total annual petroleum liquids stocks for generating electricity;total annual petroleum liquids stocks for power production -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the annual inventory of petroleum liquids that electric utilities keep -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,the amount of petroleum liquids used for electricity generation by independent power producers each year;the amount of petroleum liquids consumed annually by independent power producers for electricity generation;the amount of petroleum liquids used by independent power producers to generate electricity each year;the annual amount of petroleum liquids consumed by independent power producers for electricity generation -Annual_SulfurContent_Fuel_ForElectricityGeneration_BituminousCoal,sulfur content in bituminous coal used for electricity generation each year;the amount of sulfur in bituminous coal used for electricity generation each year;the average amount of sulfur in bituminous coal used for electricity generation each year;the level of sulfur in bituminous coal used for electricity generation each year -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal,sulfur content in coal each year;annual sulfur content in coal;coal sulfur content year-to-year;yearly sulfur content in coal -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,the quality of fossil fuels used in electricity generation each year;the annual quality of fossil fuels used to generate electricity;the annual quality of fossil fuels used to make electricity;the annual quality of fossil fuels used to power the grid -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids,the quality of petroleum liquids in all sectors each year;the annual quality of petroleum liquids in all sectors;the quality of petroleum liquids in all sectors year after year;the quality of petroleum liquids in all sectors on a yearly basis -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the total annual tonnage of petroleum liquids used in electricity generation;what is the annual quality of petroleum liquids used in electricity generation?;what is the quality of petroleum liquids used to generate electricity each year? -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,annual sulfur content of petroleum liquids used for electricity generation in electric utilities;sulfur content of petroleum liquids used for electricity generation in electric utilities each year;the amount of sulfur in petroleum liquids used for electricity generation in electric utilities each year;the annual average sulfur content of petroleum liquids used for electricity generation in electric utilities -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal,1 sulfur content of subbituminous coal used for electricity generation each year;2 the amount of sulfur in subbituminous coal used to generate electricity each year;3 the percentage of sulfur in subbituminous coal used to generate electricity each year;4 the annual average sulfur content of subbituminous coal used for electricity generation -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the total amount of subbituminous coal used to generate electricity each year;the annual quantity of subbituminous coal used to produce electricity;the yearly total of subbituminous coal used to create electricity;the annual sum of subbituminous coal used to generate power -Area_Farm, -Area_Farm_BarleyForGrain,the total area of barley farms;the total land area used for barley farming;the total acreage of barley farms;the total land area used for barley production -Area_Farm_CornForGrain,the total amount of land used for corn farming;the total acreage of corn farms;the total number of acres used to grow corn;the total land area devoted to corn cultivation -Area_Farm_CornForSilageOrGreenchop,the total area of farms used for silage;the total amount of land used for silage production;the total acreage of farms used for silage;the total land area used for silage production -Area_Farm_Cotton,the area of farms growing cotton;the amount of land used for cotton farming;the acreage of cotton farms;the land area devoted to cotton farming -Area_Farm_Cropland,farmland used for growing crops;cropland;farmland;farmland used for crop production -Area_Farm_DryEdibleBeans,the land area used for bean cultivation;the acreage of land used for bean farming;the land area used for bean production;the acreage of bean farms -Area_Farm_DurumWheatForGrain,the amount of land used to grow durum wheat;the number of acres of land used to grow durum wheat;the total area of durum wheat cultivation;the total land area used for durum wheat production -Area_Farm_Forage, -Area_Farm_HarvestedCropland,land that is used to grow and harvest crops;area of farms with harvested cropland;area of farms with harvested crops;the land area used for farming and harvesting -Area_Farm_IrrigatedLand,farmland area that is irrigated;farmland that is watered artificially;farmland that has its water supply supplemented by artificial means;farmland that is not rain-fed -Area_Farm_OatsForGrain,extent of land used for oat farming;oat acreage;oat farmland;oat cultivation area -Area_Farm_Orchards,the total land area of farms that have orchards;the total acreage of farms with orchards;the total surface area of farms that grow fruit trees;the total amount of land that is used for farming orchards -Area_Farm_OtherSpringWheatForGrain,spring wheat for other grain areas -Area_Farm_PeanutsForNuts,the land area of farms that grow peanuts;the acreage of farms that grow peanuts;the total area of land used for peanut cultivation;the size of the land area used for peanut farming -Area_Farm_Potatoes,the amount of land used for potato farming;the acreage of potato farms;the land area used for potato cultivation;the land used to grow potatoes -Area_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,the area of farms with american indians or alaska natives as primary producers;the amount of land used for farming by american indians or alaska natives;the size of farms owned and operated by american indians or alaska natives;the acreage of land used for agricultural purposes by american indians or alaska natives -Area_Farm_PrimaryProducer_AsianAlone,people who are involved in primary production in asia;people in asia who are involved in primary production -Area_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,2 african americans who are involved in primary production;3 people of african descent who are primary producers;4 african americans who work in the primary sector -Area_Farm_PrimaryProducer_HispanicOrLatino,hispanic primary producers in agriculture -Area_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,native hawaiian or other pacific islander primary farm producer area;area of primary farm production by native hawaiians or other pacific islanders;area where native hawaiians or other pacific islanders are the primary farm producers;area where native hawaiian or other pacific islander primary farm production is concentrated -Area_Farm_PrimaryProducer_TwoOrMoreRaces,multiracial farm area;farm area with a multiracial population -Area_Farm_PrimaryProducer_WhiteAlone, -Area_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native farmer;native american farmer;indigenous farmer;native farmer -Area_Farm_Producer_AsianAlone,the amount of land that is used for farming by asian producers;the size of farms that are owned and operated by asian people;the acreage of land that is used for agriculture by asian farmers;the land area that is used for farming by people of asian descent -Area_Farm_Producer_BlackOrAfricanAmericanAlone, -Area_Farm_Producer_HispanicOrLatino,hispanic farmers' land area;land area of hispanic farms;hispanic farm acreage;hispanic farm size -Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone, -Area_Farm_Producer_TwoOrMoreRaces,agricultural producers of mixed race;people of multiple races who own and operate farms;farmers of many cultures;farmers who are multiracial -Area_Farm_Producer_WhiteAlone,white-owned farm acreage;white farm producers' land area;land area of farms owned by white producers;acreage of farms owned by white producers -Area_Farm_Rice,the acreage of rice farms;the land area devoted to rice cultivation;the size of rice fields;the land area used for rice cultivation -Area_Farm_SorghumForGrain,the amount of land used for sorghum cultivation;the number of acres of land used to grow sorghum;the size of the land area used for sorghum farming;the extent of land used for sorghum production -Area_Farm_SorghumForSilageOrGreenchop,sorghum for silage or greenchop farming;sorghum for silage or greenchop farm area;sorghum for silage or greenchop area of the farm;sorghum for silage or greenchop area of the farm's land -Area_Farm_SugarbeetsForSugar,the amount of land used to grow sugarbeets for sugar production;the acreage of land used to grow sugarbeets for sugar production;the land area used to grow sugarbeets for sugar production;the size of the land used to grow sugarbeets for sugar production -Area_Farm_SunflowerSeed,the amount of land used for growing sunflower seeds;the acreage of land used for sunflower seed production;the total area of land used to grow sunflowers;the land area devoted to sunflower cultivation -Area_Farm_SweetPotatoes,the amount of land used to grow sweet potatoes;the acreage of land used for sweet potato cultivation;the total land area used for sweet potato farming;the land area devoted to sweet potato production -Area_Farm_UplandCotton,the size of the land area used for upland cotton farming;the acreage of land used to grow upland cotton;the land area devoted to upland cotton farming;the land area used for upland cotton production -Area_Farm_VegetablesHarvestedForSale,the amount of land used for growing vegetables to be sold;the area of farms growing vegetables for sale;the amount of land used to grow vegetables for sale;the acreage of farms that grow vegetables for sale -Area_Farm_WheatForGrain,the amount of land used for wheat farming;the land area dedicated to wheat cultivation;the acreage of wheat fields;the total area of land used to grow wheat -Area_Farm_WinterWheatForGrain,the amount of land that is used to grow winter wheat;the land area that is used for winter wheat cultivation;the acreage of land that is used to grow winter wheat;the amount of land used for winter wheat farming -Area_FireEvent,fire zone;firing zone;target area;danger zone -Area_FloodEvent,floodplain;area at risk of flooding;flood-prone area;area affected by flooding -Area_WildlandFireEvent,wildfire area;wildland fire zone;wildfire-affected area;area burned by wildfire -AtmosphericPressure_SurfaceLevel,the air pressure at sea level;the weight of the air above us;the force of the air pushing down on us;the amount of air pushing down on us per square inch -BurnedArea_FireEvent,how much land burned?;what's the acreage of the burned area?;how many acres burned?;what's the total acreage of the burned area? -BurnedArea_FireEvent_Forest,how many acres of forest burned?;what is the acreage of the burned forest?;what is the size of the burned forest?;what is the area of the burned forest? -Concentration_AirPollutant_SmokePM25,the concentration of smoke particles in the air -ConsecutiveDryDays,consecutive dry days;number of days without rain;number of days with no rain;number of days with no precipitation -CountOfClaims_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,flood insurance;flood coverage;flood protection;flood policy -Count_BirthEvent,number of births;number of births in a given time period;number of births in a particular place;number of births in a given year -Count_BirthEvent_AsAFractionOfCount_Person,number of births per capita;number of babies born per capita -Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,the rate of child birth in the united states -Count_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,births to mothers with 9th to 12th grade education;live births to mothers with 9th to 12th grade education;mothers with 9th to 12th grade education who gave birth;births to mothers who have completed 9th to 12th grade -Count_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,births to american indian or alaska native mothers;live births to american indian or alaska native mothers;live births to mothers who identify as american indian or alaska native;live births to mothers of american indian or alaska native descent -Count_BirthEvent_LiveBirth_MotherAsianIndian,asian indian mothers' live births;births to asian indian mothers;asian indian mothers giving birth;asian indian women giving birth -Count_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,births to asian or pacific islander mothers;live births to asian or pacific islander women;live births to mothers of asian or pacific islander descent;live births to mothers who are asian or pacific islander -Count_BirthEvent_LiveBirth_MotherAssociatesDegree,births to mothers with associate's degrees;live births to mothers with associate's degrees;live births to mothers who have associate's degrees;live births to mothers who have completed associate's degrees -Count_BirthEvent_LiveBirth_MotherBachelorsDegree,mothers with a bachelor's degree giving birth;births to mothers with a bachelor's degree;live births of mothers who have a bachelor's degree;mothers with a bachelor's degree having babies -Count_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,births to african american mothers;live births to african american women;live births among african american women;live births to black women -Count_BirthEvent_LiveBirth_MotherChinese,the number of live births to chinese mothers;the number of babies born to chinese women;the number of chinese women who have given birth;the number of chinese mothers who have had children -Count_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,births to mothers with doctorate degrees and professional school degrees;birth rates among mothers with advanced degrees;childbirth among mothers with doctorate and professional degrees;mothers with doctorate and professional degrees giving birth -Count_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,births to mothers with unknown educational attainment;live births to mothers with unknown education level;births to mothers with unknown schooling;live births to mothers with unknown level of education -Count_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,births to mothers of unstated ethnicity;births to mothers with unstated ethnicity;births to mothers whose ethnicity is unknown;births to mothers whose ethnicity is not reported -Count_BirthEvent_LiveBirth_MotherFilipino,how many babies were born to filipino mothers?;how many filipino women gave birth?;how many births were to filipino mothers?;how many filipino babies were born? -Count_BirthEvent_LiveBirth_MotherForeignBorn,births to foreign-born women;births to foreign-born mothers;births to mothers with a foreign nationality;births to mothers who were born outside the united states -Count_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,number of live births to chamorro mothers;number of chamorro women who have given birth;number of chamorro babies born;number of chamorro births -Count_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,births to mothers who have a high school diploma or ged;live births to mothers who have completed high school or obtained a ged;births to mothers with a high school diploma or equivalent;live births to mothers with a ged -Count_BirthEvent_LiveBirth_MotherHispanicOrLatino,births to hispanic mothers;hispanic mothers giving birth;hispanic women giving birth;hispanic births -Count_BirthEvent_LiveBirth_MotherJapanese,live births to japanese mothers;japanese women giving birth;japanese mothers having babies;japanese women having children -Count_BirthEvent_LiveBirth_MotherKorean,births to korean mothers;live births from korean mothers;live births by korean mothers;live births of korean women -Count_BirthEvent_LiveBirth_MotherLessThan9ThGrade,1 births to mothers with less than a 9th grade education;4 births to mothers with less than a high school equivalent;births to mothers with less than a high school education;births to mothers with less than a ninth-grade education -Count_BirthEvent_LiveBirth_MotherMastersDegree,mothers with masters degrees giving birth;births to mothers with masters degrees;live births to mothers with a masters degree;mothers with a masters degree having babies -Count_BirthEvent_LiveBirth_MotherNative,live births to us citizen mothers -Count_BirthEvent_LiveBirth_MotherNativeHawaiian,native hawaiian mothers' live births;live births to native hawaiian mothers;native hawaiian mothers giving birth;native hawaiian women giving birth -Count_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,births to mothers of unknown place of birth;births to mothers of unknown origin;births to mothers of unknown birthplace;births to mothers whose birthplace is unknown -Count_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,births to non-hispanic mothers;live births to non-hispanic women;live births to mothers who are not hispanic;births to mothers who are not of hispanic origin -Count_BirthEvent_LiveBirth_MotherNowMarried,births to married mothers;births to married women;births to mothers who are married;births to married couples -Count_BirthEvent_LiveBirth_MotherOtherAsian,the number of births to asian mothers;the number of live births to asian mothers;the number of asian women who have had live births;the number of live births to asian women -Count_BirthEvent_LiveBirth_MotherOtherPacificIslander,births to other pacific islander mothers;other pacific islander mothers' live births;live births by other pacific islander mothers;other pacific islander mothers giving birth -Count_BirthEvent_LiveBirth_MotherSamoan,samoan mothers' live births;births to samoan mothers;samoan women giving birth;samoan mothers having children -Count_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,births to mothers with some college education but no degree;births to mothers who have some college but no degree;births to mothers who have attended college but do not have a degree;births to mothers who have some college experience but do not have a degree -Count_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,the number of live births to multiracial mothers;the number of multiracial babies born to multiracial mothers;the number of multiracial births to multiracial women;the number of multiracial babies born to multiracial women -Count_BirthEvent_LiveBirth_MotherUnmarried,number of births to unmarried mothers;number of unmarried mothers who gave birth;number of births to unmarried women;number of live births to single mothers -Count_BirthEvent_LiveBirth_MotherVietnamese,live births by vietnamese mothers;births to vietnamese mothers;the number of births to vietnamese mothers;the number of babies born to vietnamese mothers -Count_BirthEvent_LiveBirth_MotherWhiteAlone,live births to white mothers;white mothers' live births;births to white mothers;white mothers' births -Count_BlizzardEvent,number of blizzard events;blizzard event count -Count_CoastalFloodEvent,number of coastal flooding events;number of times coastal areas have flooded;number of coastal areas that have been flooded;number of coastal flooding incidents -Count_ColdTemperatureEvent,number of cold temperature events;number of cold days;number of cold nights;number of cold snaps -Count_ColdWindChillEvent,number of cold wind chill events;number of days with cold wind chill;number of cold wind chill days;number of cold wind chill occurrences -Count_CriminalActivities_AggravatedAssault,number of aggravated assault cases;number of aggravated assaults;number of cases of aggravated assault;number of incidents of aggravated assault -Count_CriminalActivities_Arson,number of arson cases;number of arsons;number of cases of arson;number of arson incidents -Count_CriminalActivities_Burglary,number of burglaries;what's the rate of burglaries?;how many people have been burgled?;how many homes have been burgled? -Count_CriminalActivities_CombinedCrime,the amount of criminal activity;the rate of crime;the prevalence of crime;the incidence of crime -Count_CriminalActivities_ForcibleRape,how many people were raped?;how many rapes were reported?;how many people were sexually assaulted?;how many people were victims of sexual assault? -Count_CriminalActivities_LarcenyTheft,how many larceny theft cases have there been?;what is the number of larceny theft cases?;how many times has larceny theft occurred?;how many people have been victims of larceny theft? -Count_CriminalActivities_MotorVehicleTheft,how many cars are stolen each year?;how many motor vehicles are stolen each year?;what is the number of motor vehicle thefts each year?;what is the annual number of motor vehicle thefts? -Count_CriminalActivities_MurderAndNonNegligentManslaughter,number of murders and non-negligent manslaughter cases;number of non-negligent manslaughter cases;number of intentional homicides -Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,"rate of murder and non-negligent manslaughter per capita;number of murders and non-negligent manslaughters per 100,000 people;murder and non-negligent manslaughter rate per capita;number of murders and non-negligent manslaughters per 100,000 inhabitants" -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,"the number of murders and non-negligent manslaughter crimes committed per capita by females;the number of females who commit murders and non-negligent manslaughter crimes per capita;the number of murders and non-negligent manslaughter crimes committed by females per 100,000 people;the number of females who commit murders and non-negligent manslaughter crimes per 100,000 people" -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,"the number of murders and non-negligent manslaughter crimes committed per capita by males;the number of murders and non-negligent manslaughter crimes committed per 100,000 males;the rate of murder and non-negligent manslaughter crimes committed by males;the proportion of murders and non-negligent manslaughter crimes committed by males" -Count_CriminalActivities_PropertyCrime,number of property crimes;number of crimes against property;number of crimes that involve property;number of crimes that target property -Count_CriminalActivities_Robbery,how many robberies were there;how many times were people robbed;how many people were robbed;how many robberies occurred -Count_CriminalActivities_ViolentCrime,number of violent crimes committed;number of violent crimes per capita;number of violent crimes;number of violent offenses -Count_CriminalIncidents_AggravatedAssault_IsHateCrime, -Count_CriminalIncidents_AllOtherLarceny_IsHateCrime, -Count_CriminalIncidents_Arson_IsHateCrime,arson motivated by hate -Count_CriminalIncidents_BiasMotivationDisabilityStatus_AggravatedAssault_IsHateCrime,aggravated assaults motivated by hatred of people with disabilities;aggravated assaults motivated by hate against people with disabilities -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime,hate-motivated crimes against people with disabilities -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_MentalDisability, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_PhysicalDisability,crimes against physically disabled people based on prejudice;crimes against physically disabled people due to bias;crimes against people with disabilities;crimes against physically disabled people -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime,disability hate crimes against property;hate crimes against property motivated by disability -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_MentalDisability,the number of hate crime incidents involving a bias against disability status and a property crime victim with a mental disability -Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_PhysicalDisability,crimes against property that are committed because of the victim's physical disability;crimes against property that are committed because the victim is perceived as being different or inferior because of their physical disability;crimes against people with physical disabilities that involve damage to their property -Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,property damage motivated by hatred of people with disabilities;destruction of property that is motivated by hate against people with disabilities -Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MentalDisability, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_MentalDisability, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_PhysicalDisability,physical disability hate crimes and intimidation -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,number of hate crimes motivated by disability status;number of hate crimes against people with disabilities;number of hate crimes targeting people with disabilities;number of hate crimes based on disability status -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,hate crimes against people with disabilities on highways;highway hate crimes against people with disabilities;hate crimes on highways targeting people with disabilities;highway crimes motivated by hatred of people with disabilities -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_LocationOfCrimeResidence,hate crimes against people with disabilities in residential areas;crimes motivated by hatred of people with disabilities in residential areas;hate crimes against people with disabilities that happen in residential areas;crimes against people with disabilities that happen in residential areas and are motivated by hatred -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against people with disabilities in a single location;incidents of hate crimes against people with disabilities in a single location;single-location hate crimes against people with disabilities;hate crimes against people with disabilities in single locations -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_MentalDisability,hate crimes against the disabled;hate crimes against the mentally disabled;crimes against the mentally disabled motivated by hate;hate crimes targeting the mentally disabled -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_MentalDisability_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity_MentalDisability,hate crimes against mentally disabled people by offenders whose ethnicity is not reported;hate crimes against people with mental disabilities committed by offenders of unknown heritage -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity_PhysicalDisability,crimes committed against physically disabled people because of their disability by offenders of unknown ethnicity;crimes committed against people with physical disabilities by offenders of unknown ethnicity because of their disability -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,african americans are more likely to be victims of disability hate crimes;african americans are disproportionately targeted in disability hate crimes;disability hate crimes are a serious problem for african americans;african americans are at risk of disability hate crimes -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_MentalDisability,hate crimes against mentally disabled people committed by african american offenders;hate crimes against mentally disabled people committed by black offenders;hate crimes against mentally disabled people by african american offenders;african american offenders who commit hate crimes against mentally disabled people -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_PhysicalDisability,hate crimes against the disabled committed by african americans against physically disabled victims;disability-based hate crimes committed by african americans against physically disabled victims;physically disabled victims of hate crimes committed by african americans;african american offenders of hate crimes against physically disabled victims -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace,"hate crimes against people with disabilities committed by offenders whose race is unknown;crimes against people with disabilities motivated by prejudice, committed by offenders of unknown race;hate crimes against people with disabilities committed by offenders whose race is not identified;crimes against people with disabilities, motivated by hate, committed by offenders whose race is not known" -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace_MentalDisability,hate crimes against people with mental disabilities and unknown race;hate crimes against people with mental disabilities of unknown race -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace_PhysicalDisability, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone,hate crimes against people with disabilities committed by white people;crimes motivated by hate against people with disabilities committed by white people;hate crimes against people with disabilities committed by caucasians;crimes motivated by hate against people with disabilities committed by caucasians -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone_MentalDisability, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone_PhysicalDisability,hate crimes against physically disabled people committed by white offenders;crimes motivated by hatred of physically disabled people committed by white people;white people who commit hate crimes against physically disabled people;crimes against physically disabled people motivated by racism and committed by white people -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_PhysicalDisability,a hate crime against a person with a physical disability;hate crime against a person with a physical disability -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_PhysicalDisability_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_MentalDisability,assault against people with intellectual disabilities;assaults on people with intellectual disabilities;violence against people with intellectual disabilities;simple assault against people with mental disabilities -Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_PhysicalDisability,physical assault of people with disabilities;simple assault against physically disabled victims;assault against physically disabled victims based on prejudice;assault against physically disabled victims due to bias -Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime_HispanicOrLatino,aggravated assaults against hispanics based on prejudice;aggravated assault against hispanics;aggravated assaults against hispanics motivated by hate;aggravated assaults against hispanics -Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime, -Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime_HispanicOrLatino, -Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime, -Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime_HispanicOrLatino, -Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime,ethnic-based hate crimes against property -Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime_HispanicOrLatino,property crimes targeting hispanic people motivated by hate;crimes against property targeting hispanic people due to hate;hate crimes targeting hispanic people's property -Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_HispanicOrLatino,hispanic victims of hate crimes involving property vandalism -Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime,ethnic intimidation -Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime_HispanicOrLatino, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,number of hate crimes motivated by ethnicity;number of hate crimes motivated by national origin;number of hate crimes motivated by ancestry;number of hate crimes against people of a particular ethnicity -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino_VictimTypeBusiness,hate crimes against hispanic-owned businesses;attacks on hispanic-owned businesses;violence against hispanic-owned businesses;hate crimes targeting hispanic-owned businesses -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino_VictimTypeOtherVictimType,crimes against hispanics based on prejudice;crimes against hispanics based on discrimination;crimes committed against hispanic people because of their race or ethnicity;crimes against hispanic people motivated by prejudice -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino_VictimTypeSociety,hate crimes against hispanic victims in societies;hate crimes committed against hispanic victims by societies;hate crimes committed by societies against hispanic victims -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,"violence against people of color in bars, pubs, and nightclubs based on prejudice;aggression against people of color in bars, pubs, and nightclubs due to bigotry;violence against people of color in bars, pubs, and nightclubs based on race, ethnicity, or national origin;attacks on people of color in bars, pubs, and nightclubs because of their race, ethnicity, or national origin" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,hate crimes committed against people of a particular ethnicity in commercial or office buildings;crimes motivated by hatred of a particular ethnicity that occur in commercial or office buildings;incidents of violence or discrimination against people of a particular ethnicity that take place in commercial or office buildings;attacks on people of a particular ethnicity that occur in commercial or office buildings -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeConvenienceStore,violence against minorities in convenience stores motivated by hatred;crimes motivated by hatred of a particular ethnic group in convenience stores;attacks on people of color in convenience stores because of their ethnicity;hate crimes against ethnic minorities in convenience stores -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeDepartmentStore,hate crimes against ethnic minorities in department stores;attacks on ethnic minorities in department stores;department store hate crimes against ethnic minorities;ethnic minorities targeted in hate crimes in department stores -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,hate crimes against ethnic minorities in grocery stores and supermarkets;attacks on ethnic minorities in grocery stores and supermarkets;violence against ethnic minorities in grocery stores and supermarkets;hate-motivated violence against ethnic minorities in grocery stores and supermarkets -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,hate crimes against people of different ethnicities on highways;highway-related hate crimes against people of different ethnicities;hate crimes against people of different ethnicities committed on highways;highway-based hate crimes against people of different ethnicities -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeParkingFacility,hate crimes committed against people of a particular ethnicity in parking facilities;incidents of discrimination and violence against people of a particular ethnicity in parking facilities;acts of hatred and prejudice against people of a particular ethnicity in parking facilities;attacks on people of a particular ethnicity in parking facilities motivated by their ethnicity -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeResidence,hate crimes against people of different ethnicities in homes;residences where people of different ethnicities are targeted in hate crimes;hate crimes that target people of different ethnicities in homes;homes where hate crimes against people of different ethnicities occur -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeRestaurant,"attacks on people of color in restaurants because of their race, ethnicity, or national origin;hate crimes committed against people of a particular ethnicity in restaurants;incidents of discrimination or violence against people of a particular ethnicity in restaurants;attacks on people of a particular ethnicity in restaurants motivated by hatred or prejudice" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,crimes motivated by hatred of people of different ethnicities in schools and colleges;incidents of violence or discrimination against people of different ethnicities in schools and colleges;attacks on people of different ethnicities in schools and colleges;harassment of people of different ethnicities in schools and colleges -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against ethnicities in single crime locations;single-location hate crimes against ethnicities;ethnicity-based hate crimes in single crime locations;hate crimes against ethnicities in one location -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeSpecialtyStore,number of hate crime incidents involving bias against ethnicity at specialty stores;number of hate crimes against ethnicity at specialty stores;number of incidents of hate crimes against ethnicity at specialty stores;number of hate crimes targeting ethnicity at specialty stores -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_LocationOfCrimeUnclassifiedLocation,crimes motivated by hatred of a particular ethnicity in unknown locations;attacks on people of a particular ethnicity in unidentified places due to prejudice;crimes motivated by hatred of a particular ethnicity in undisclosed areas;incidents of violence or discrimination against people of a particular ethnicity in undetermined places -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,"hate crimes committed against ethnic minorities by non-hispanics;violence against ethnic minorities by non-hispanics, due to prejudice or discrimination;hate crimes committed by non-hispanics against ethnic minorities;acts of hate against ethnic minorities, carried out by people who are not hispanic" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_HispanicOrLatino,non-hispanic offenders who commit hate crimes against hispanic victims;hispanic victims of hate crimes committed by non-hispanic offenders -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity,"crimes motivated by hatred of a certain ethnicity, committed by offenders whose ethnicity is unknown;ethnicity hate crimes by unknown offenders" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity_HispanicOrLatino,hate crimes against hispanics by people of unknown ethnicity;hate crimes against hispanics by people whose ethnicity is unknown;hate crimes against hispanics by people whose ethnicity is not known;hate crimes against hispanics by people whose ethnicity is not specified -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,"criminal acts against people of other ethnic groups, carried out by african americans, out of hatred for their ethnicity;african american offenders who commit crimes motivated by hatred of a particular ethnic group" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_HispanicOrLatino,"crimes motivated by hatred of a person's race or ethnicity, committed by african americans against hispanic victims" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces_HispanicOrLatino,hate crimes against hispanics committed by multiracial people;multiracial people who commit hate crimes against hispanics;crimes motivated by hate against hispanics committed by multiracial people;crimes against hispanics motivated by hate committed by multiracial people -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceUnknownRace,ethnicity-based hate crimes committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceUnknownRace_HispanicOrLatino,hate crimes committed by offenders of unknown race against hispanic victims;hispanic victims of hate crimes committed by offenders of unknown race;hate crimes against hispanic victims committed by offenders of unknown race;hate crimes committed against hispanic victims by offenders of unknown race -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceWhiteAlone, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceWhiteAlone_HispanicOrLatino,"hate crimes committed by white offenders against women;crimes motivated by hatred of women, committed by white offenders;violence against women, motivated by hatred of women, committed by white offenders;attacks on women, motivated by hatred of women, committed by white offenders" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_VictimTypeBusiness,hate crimes against businesses based on ethnicity;ethnically motivated crimes against businesses;businesses targeted for hate crimes based on ethnicity;businesses that are targeted for ethnic hate crimes -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_VictimTypePerson,violence against people based on their national origin;attacks on people because of their national origin -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_VictimTypeSociety,crimes that are motivated by bigotry against people of a particular ethnic group -Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime,robbery that is based on prejudice against a particular ethnic group -Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime_HispanicOrLatino,robbery of hispanics because of their ethnicity;robbery of hispanics due to their ethnicity;robberies against hispanics based on hate;hispanics being robbed because of their race or origin -Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime_HispanicOrLatino,simple assault against hispanics motivated by prejudice;simple assault against hispanics motivated by bigotry;assaults on hispanics because of their race;assaults against hispanics because of their ethnicity -Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime,crimes motivated by hatred or prejudice against people based on their gender;crimes that are motivated by a desire to harm or intimidate people based on their gender -Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Female, -Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Transgender,crimes against transgender people motivated by hatred or prejudice towards their gender identity;attacks on transgender people motivated by hatred or prejudice towards their gender identity;violence against transgender people because of their gender identity;crimes against transgender people motivated by hatred or prejudice -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,how many hate crimes are motivated by gender?;what is the number of hate crimes motivated by gender?;how many people have been the victims of hate crimes motivated by gender?;how many people have been targeted by hate crimes motivated by gender? -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Female, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Female_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_LocationOfCrimeResidence,hate crimes against women in homes;residence-based gender-based hate crimes;gender-based hate crimes in homes and other residences;hate crimes against women in residences -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_LocationOfCrimeSingleCrimeLocation,single-location gender-based hate crimes;hate crimes against people based on their gender in a single location;gender-based hate crimes in a single location;hate crimes against women in single crime locations -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity,"hate crimes against people of a certain gender by an offender of unknown ethnicity;crimes motivated by hatred of a person's gender, committed by someone whose ethnicity is unknown;hate crimes against people of a certain gender committed by an offender of unknown ethnicity;crimes motivated by hatred or prejudice against people of a certain gender, committed by an offender whose ethnicity is unknown" -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity_Female,hate crimes against women by unknown races;gender-based hate crimes against women by unknown races;hate crimes against females by unknown races;gender-based hate crimes against females by unknown races -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity_Transgender,crimes against transgender people committed by people of unknown ethnicity -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderRaceUnknownRace_Transgender,hate crimes against transgender people committed by an offender of unknown race -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderRaceWhiteAlone, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Transgender, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Transgender_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationGender_SimpleAssault_IsHateCrime_Transgender, -Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstPerson_IsHateCrime,crimes against people motivated by hatred of multiple characteristics -Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationMultipleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,multiple bias-motivated crimes that involved the destruction or damage of property -Count_CriminalIncidents_BiasMotivationMultipleBias_Intimidation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime, -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,number of hate crimes against multiple biases in elementary and high schools;number of hate crimes against multiple biases in k-12 schools;number of hate crimes against multiple biases in schools;number of hate crimes against multiple biases in schools and educational institutions -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,"bias-motivated crimes committed on highways, roads, alleys, streets, or sidewalks;bias-motivated acts committed on highways, roads, alleys, streets, or sidewalks;crimes motivated by hatred or prejudice committed on highways, roads, alleys, streets, or sidewalks;multiple bias hate crimes on highways, roads, alleys, streets, or sidewalks" -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_LocationOfCrimeResidence,hate crimes at multiple residences;multiple residences targeted in hate crimes;hate crimes committed at multiple residences;multiple residences hit by hate crimes -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_LocationOfCrimeSingleCrimeLocation, -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_LocationOfCrimeUnclassifiedLocation,1 hate crimes have been reported in multiple locations that have not been disclosed;hate crimes have been reported in multiple locations that have not been identified;multiple hate crimes have been reported in undisclosed locations -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderRaceUnknownRace,"multiple hate crimes have been committed, and the perpetrators are unknown;there have been multiple hate crimes, and the perpetrators are not yet known;there have been multiple hate crimes, and the identities of the perpetrators are unknown;the perpetrators of multiple hate crimes are unknown" -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderRaceWhiteAlone, -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_VictimTypeGovernment,hate crimes against the government that are motivated by multiple biases;hate crimes that are motivated by multiple biases and are against the government;hate crimes that are motivated by multiple biases and target the government;bias crimes against the government -Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_VictimTypePerson,hate crimes against people based on multiple biases -Count_CriminalIncidents_BiasMotivationMultipleBias_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_AggravatedAssault_IsHateCrime,hate crimes against people of a different race or ethnicity that involve aggravated assault;hate crimes against people of a particular race or ethnicity that involve aggravated assault -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Burglary_IsHateCrime, -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstPerson_IsHateCrime,racially motivated crimes against people -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstProperty_IsHateCrime,criminal acts against property that are motivated by hatred or prejudice against a particular ethnic group -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,destruction of property motivated by hatred of a particular ethnic group;property destruction motivated by hatred of a particular ethnic group;property damage motivated by hatred of a particular ethnic group -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Intimidation_IsHateCrime,crimes that are intended to intimidate or terrorize people of a particular race or ethnicity;crimes that are intended to intimidate or threaten people of a particular race or ethnicity;4 crimes that are intended to intimidate or threaten people of a particular race or ethnicity;crimes of intimidation motivated by race or ethnicity -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime, -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity,racial hate crimes committed by offenders of unknown ethnicity -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces,crimes against people of multiple races that are considered to be unethical;crimes against people of multiple races that are considered to be morally wrong -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceUnknownRace,hate crimes against people of color committed by offenders whose race is unknown;hate crimes against people of color committed by offenders of unknown race or ethnicity;hate crimes against people of color committed by offenders whose race or ethnicity is unknown or not reported;hate crimes against people of color committed by offenders of unknown or unreported race or ethnicity -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceWhiteAlone,"crimes motivated by hatred of a particular ethnic group, committed by white offenders;hate crimes against ethnic minorities, committed by white offenders;crimes against ethnic minorities motivated by hatred of their race, committed by white offenders" -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_VictimTypeBusiness,hate crimes against businesses motivated by race or ethnicity;businesses targeted in hate crimes based on race or ethnicity;businesses attacked because of the race or ethnicity of their owners or customers;crimes against businesses motivated by prejudice against a particular race or ethnicity -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_VictimTypeGovernment,hate crimes against people of a particular ethnicity committed by government officials;ethnic minorities being targeted by hate crimes committed by the government;government officials committing hate crimes against ethnic minorities;hate crimes against ethnic minorities being ignored or covered up by the government -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_VictimTypeOtherVictimType,attacks on people of other ethnicities because of their ethnicity;violence against people of other ethnicities because of their ethnicity -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_VictimTypePerson,hate crimes against people of color -Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_SimpleAssault_IsHateCrime,assaults motivated by racial bias -Count_CriminalIncidents_BiasMotivationRaceOrEthnicity_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_WhiteAlone,aggravated assaults on white people motivated by race -Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime,racial hate crimes vs all other larceny;larceny against a person of color vs all other larceny -Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_BlackOrAfricanAmericanAlone,number of hate crimes against black or african americans where the victim was the only person of that race and the crime was larceny -Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_WhiteAlone,"the number of hate crime incidents involving bias against race, all other larceny, and white alone victims;the number of hate crimes involving bias against race and larceny, with white people as the victims;the number of hate crimes involving bias against race, with white people as the victims, and larceny as the type of crime" -Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes against african americans involving arson;arson attacks on african americans;arson motivated by hate against african americans;arson as a form of hate crime against african americans -Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_BlackOrAfricanAmericanAlone,homicides motivated by racial hatred against african americans;murders and manslaughters committed against african americans because of their race;homicides against african americans motivated by racial hatred;murders of african americans committed because of their race -Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime,the number of hate crime incidents involving bias against race and crime against person -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,crimes against american indians or alaska natives based on prejudice;crimes against american indians or alaska natives that are motivated by hatred of their race or ethnicity;crimes motivated by race against american indians or alaska natives;crimes against native americans motivated by race -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_Arab,anti-arab hate crimes;hate crimes against arabs;hate crimes targeting arabs;crimes motivated by hatred or prejudice against arabs -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AsianAlone,crimes against asians based on their race -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_WhiteAlone,crimes against white people based on prejudice;crimes against white people due to bigotry -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,"the number of hate crime incidents involving american indians or alaska natives as the sole victim, where the bias was against race, and the crime was against property;number of hate crimes against american indian or alaska natives, property crimes;number of hate crimes against american indians or alaska natives, in which the bias was against race and the crime was against property;number of hate crimes against american indians or alaska natives, in which the bias was racial and the crime was property damage" -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_Arab, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes targeting african american property;african american property targeted by hate crimes -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_TwoOrMoreRaces,hate crimes against multiracial people that involve property damage;racially motivated property crimes against multiracial victims;crimes of hate against multiracial people involving property damage;property crimes motivated by racial hatred against multiracial victims -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_WhiteAlone,property crimes against white people;property crimes motivated by hate against white people;crimes against white people's property motivated by racial hatred;property crimes against white people motivated by hate -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime,crimes against society based on race;crimes against society motivated by race -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes against african americans are a crime against society;crimes against african americans based on xenophobia -Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_WhiteAlone,hate crimes targeting white people;crimes targeting white people based on race;crimes targeting white people;crimes that are racially motivated and target white people -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,destruction of property motivated by racial hatred;racially motivated property damage;destruction of property based on racial prejudice;race-based property damage -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,racially motivated vandalism against american indians or alaska natives;vandalism of property against american indians or alaska natives motivated by race;hate crimes against american indians or alaska natives involving vandalism;vandalism of property motivated by hatred of american indians or alaska natives -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Arab,arab-targeted vandalism;vandalism of arab-owned property;vandalism of arab-american businesses;vandalism of arab-owned property motivated by hate -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AsianAlone,asian-targeted vandalism;vandalism against asian-americans;hateful acts of vandalism against asian-americans;hate crimes against asians involving vandalism of property -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_BlackOrAfricanAmericanAlone,vandalism against african americans motivated by racial hatred -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_TwoOrMoreRaces,destruction of property motivated by hatred of multiracial people;damage to property motivated by hatred of multiracial people;destruction of multiracial people's property due to racial prejudice;hateful acts of property destruction against multiracial people -Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_WhiteAlone,vandalism against white people motivated by race;racially motivated vandalism against white people -Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime,racially motivated violence -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,crimes that intimidate or threaten american indian or alaska native people because of their race -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_Arab,racially motivated attacks on arabs;intimidation and harassment of arabs;racially motivated intimidation of arabs;racially motivated attacks against arabs -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AsianAlone,the number of hate crime incidents involving intimidation and bias against asian victims -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_WhiteAlone,racially motivated attacks on white people;intimidation and violence against white people based on their race;attacks on white people motivated by racism;attacks on white people because of their race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,number of hate crimes motivated by race;number of race-motivated hate crimes;number of hate crimes based on race;number of race-based hate crimes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AmericanIndianOrAlaskaNativeAlone_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_Arab, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_Arab_VictimTypePerson,crimes motivated by hatred or prejudice against arab people;hate crimes against people of middle eastern descent -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone_VictimTypeBusiness,hate crimes against asian businesses;racially motivated attacks on asian businesses;violence against asian-owned businesses;attacks on asian businesses due to racism -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeBusiness,"number of hate crimes against black or african american businesses;number of hate crimes against black or african american-affiliated businesses;number of hate crime incidents motivated by race, with black or african american victims, against businesses;number of businesses that were the victims of hate crimes motivated by race, with black or african american victims" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeGovernment,hate crimes against african americans by the government;government-sponsored hate crimes against african americans;the government's role in hate crimes against african americans;the government's complicity in hate crimes against african americans -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeReligiousOrganization,hate crimes against african americans in religious organizations;racially motivated attacks on african americans in religious organizations;violence against african americans in religious organizations based on race;attacks on african americans in religious organizations because of their race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeSociety, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone_VictimTypeUnknownVictimType, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeAirportOrBusStationOrTrainStation,"racially motivated violence in airports, bus stations, and train stations;incidents of discrimination and harassment based on race in transportation facilities;violence against people of color in places where people travel;racially motivated attacks in airports, bus stations, and train stations" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeBankOrSavingsAndLoan,hate crimes against people of color in banks and savings and loans;racially motivated crimes in banks and savings and loans;discrimination and violence against people of color in banks and savings and loans;hate crimes against people of color in the financial industry -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,hate crimes at nightclubs;racist attacks at nightclubs;race-based violence at nightclubs;racially motivated violence at nightclubs -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeBodyOfWaterOrBeach,"number of hate crimes based on race, body of water, and beach;number of hate crimes motivated by race, body of water, and beach;number of hate crimes involving race, body of water, and beach;number of hate crimes targeting race, body of water, and beach" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeCollegeOrUniversity,hate crimes against people of color on college campuses;racially motivated violence on college campuses;incidents of racial discrimination on college campuses;acts of hate against people of color in higher education -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,racially motivated violence in offices;attacks on people of color in the workplace;violence against people of color in the workplace;racially motivated crimes in office buildings -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeConstructionSite,"racially motivated attacks on construction sites;crimes motivated by hate against people of a particular race or ethnicity, committed at construction sites;attacks on construction sites that are motivated by hatred of a particular race or ethnicity;incidents of violence or vandalism at construction sites that are motivated by racism" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeConvenienceStore,hate crimes against minorities in convenience stores;racially motivated attacks on convenience store owners and employees;violence against people of color in convenience stores;hate crimes in convenience stores targeting minorities -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeDepartmentStore,hate crimes against people of color in department stores;department stores where people of color are targeted for hate crimes;hate crimes against people of color committed in department stores;department stores where hate crimes against people of color are common -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,hate crimes against people of color in schools;racially motivated violence in schools;attacks on students of color in schools;harassment and discrimination of students of color in schools -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeFieldOrWoods,attacks on minorities in the wilderness -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeGasStation,hate crimes against people of color at gas stations;racially motivated attacks at gas stations;violence against people of color at gas stations;hate crimes at gas stations targeting people of color -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeGovernmentOrPublicBuilding,hate crimes against people of color in government or public buildings;racially motivated attacks in government or public buildings;violence against people of color in government or public buildings;hate crimes against minorities in government or public buildings -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,hate crimes against people of color in grocery stores and supermarkets;attacks on people of color in grocery stores and supermarkets motivated by hate;incidents of violence against people of color in grocery stores and supermarkets based on race;hate-fueled violence against people of color in grocery stores and supermarkets -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,hate crimes on highways targeting people of color;highway-related hate crimes against minorities;racially motivated attacks on highways;highway violence against people of color -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeLiquorStore,hate crimes against people of color in liquor stores;racially motivated attacks on people of color in liquor stores;incidents of violence against people of color in liquor stores based on their race;acts of hate and discrimination against people of color in liquor stores -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeLodgingBusiness,"hate crimes against people of color in hotels, motels, and other lodging establishments;discrimination and violence against people of color in the hospitality industry;harassment and intimidation of people of color in hotels and motels;hate crimes against people of color in hotels, motels, and other types of lodging" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeMedicalBusiness,racism in the medical field;racial discrimination in healthcare;racial bias in medicine;medical racism -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeMultipleCrimeLocations,hate crimes against people of color in multiple cities;crimes motivated by racial hatred in multiple locations;hate crimes against people of color in multiple places;incidents of racial violence in multiple places -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeParkOrPlayground,hate crimes in parks and playgrounds targeting people of color;attacks on people of color in parks and playgrounds;violence against people of color in parks and playgrounds;racially motivated crimes in parks and playgrounds -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeParkingFacility,hate crimes against people of color in parking lots;racially motivated attacks in parking garages;incidents of racial discrimination in parking structures;acts of violence against people of color in parking lots -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimePlaceOfWorship,hate crimes committed against people of color at places of worship;hate crimes against people of color at houses of worship -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimePrisons,hate crimes against people of color in prison;racism in the prison system;discrimination against prisoners of color;violence against prisoners of color -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeResidence,hate crimes against people of color at home;racially motivated attacks on people's homes;violence against people of color in their homes;hateful acts against people of color in their homes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeRestaurant,hate crimes against people of color in restaurants;racism in the restaurant industry;discrimination against people of color in restaurants;attacks on people of color in restaurants -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,hate crimes against people of color in educational institutions;incidents of racial discrimination and violence in schools and colleges;1 hate crimes against people of color in schools and colleges;4 acts of discrimination against students based on their race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeSelfStorage,racial hate crimes in self storage;hate crimes against people of color in self storage;self storage facilities as a target of racial hate crimes;racially motivated attacks in self storage -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against people of a certain race in a single location;hate crimes against people of color in a single location;hate crimes against people of color in single crime locations;racially motivated crimes in single crime locations -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeSpecialtyStore,hate crimes committed against people of color in specialty stores;racially motivated attacks on people of color in specialty stores;incidents of violence and discrimination against people of color in specialty stores;acts of hate and bigotry directed at people of color in specialty stores -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_LocationOfCrimeUnclassifiedLocation,racially motivated crime against an unclassified location;incident of racial hatred against an unclassified location;crime against an unclassified location motivated by race;incident of racial discrimination against an unclassified location -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,"hate crimes committed by non-hispanic offenders against people of color;hate crimes against people of color, committed by offenders who are not hispanic;hate crimes targeting people of color, committed by offenders who are not hispanic" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_BlackOrAfricanAmericanAlone,hate crimes committed by non-hispanics against african americans;crimes motivated by hatred of african americans committed by non-hispanics;hateful acts against african americans committed by non-hispanics;hate crimes against african americans committed by non-hispanics -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_WhiteAlone,hate crimes committed by non-hispanic offenders against white victims;crimes motivated by racial hatred against white victims committed by non-hispanic offenders;white victims of hate crimes committed by non-hispanic offenders;racially motivated crimes against white victims committed by non-hispanic offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity,attacks on people of unknown ethnicity because of their race;violence against people of unknown ethnicity because of their race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_AmericanIndianOrAlaskaNativeAlone,"crimes committed by people of unknown ethnicity against american indian or alaska native victims due to their race or ethnicity;hate crimes against american indian or alaska native victims by people of unknown ethnicity;crimes against american indian or alaska native victims motivated by race or ethnicity, with the perpetrator's ethnicity unknown;hate crimes against american indian or alaska native victims, with the perpetrator's ethnicity unknown" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_Arab,arab victims of hate crimes committed by someone of unknown ethnicity -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_TwoOrMoreRaces,the number of hate crime incidents where the victim was of two or more races and the offender's ethnicity was unknown;the number of hate crime incidents in which the victim was of two or more races and the offender's ethnicity was unknown;number of hate crimes where the victim was of two or more races and the offender's ethnicity is undetermined -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_WhiteAlone,hate crimes committed by people of unknown ethnicity against white victims;racially motivated crimes against white people by offenders of unknown ethnicity;white victims of hate crimes committed by people of unknown ethnicity;crimes motivated by race against white people by offenders of unknown ethnicity -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,harassment of american indians because of their race;harassment of american indians -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone_AsianAlone,hate crime committed by asians against asians;crime against asians motivated by hate;violence against asians based on race;harassment of asians due to race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone_BlackOrAfricanAmericanAlone,hate crimes committed by asian offenders against african american victims -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_AmericanIndianOrAlaskaNativeAlone,african american offenders who commit hate crimes against american indian or alaska native victims -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_BlackOrAfricanAmericanAlone,offenses against african americans based on race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_TwoOrMoreRaces,crimes motivated by racial hatred committed by african american offenders against multiracial victims;hate crimes against multiracial victims committed by african american offenders;hate crimes motivated by racial hatred against multiracial victims committed by african american offenders;racially motivated crimes committed by african americans against multiracial victims -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_BlackOrAfricanAmericanAlone,hate crimes against african americans committed by multiracial offenders;hate crimes against african americans by multiracial offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_WhiteAlone,racially motivated crimes committed by people of multiple races against white people;hate crimes against white people committed by people of multiple races;racially motivated violence against white people committed by people of multiple races;hate crimes against white people by multiracial people -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_AmericanIndianOrAlaskaNativeAlone,hate crimes against american indians or alaska natives by offenders of unknown race;crimes against american indians or alaska natives motivated by race by offenders of unknown race;crimes against american indian or alaska native victims motivated by race committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_Arab,hate crimes committed by offenders of unknown race against arab victims;hate crimes against arab victims committed by offenders of unknown race;hate crimes against arab people committed by offenders of unknown race;hate crimes against arab americans committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_AsianAlone,hate crimes against asians by offenders of unknown race;crimes motivated by hate against asians by offenders of unknown race;violence against asians motivated by hate by offenders of unknown race;hate crimes against asian victims committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_BlackOrAfricanAmericanAlone,hate crimes against african americans by unknown perpetrators;unknown people commit hate crimes against african americans;african americans being targeted by hate crimes by unknown individuals;hate crimes against african americans by unknown offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_TwoOrMoreRaces,hate crimes against multiracial victims committed by offenders of unknown race;racially motivated crimes against multiracial victims committed by offenders of unknown race;crimes against multiracial victims motivated by race and committed by offenders of unknown race;hate crimes against multiracial victims with unknown offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_WhiteAlone,white people as victims of hate crimes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone,crimes motivated by racial hatred committed by white offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_AmericanIndianOrAlaskaNativeAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_Arab,crimes motivated by hatred of arabs committed by white people;hate crimes against arabs committed by white people;crimes motivated by racial hatred against arabs committed by white people;crimes motivated by racism against arabs committed by white people -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_BlackOrAfricanAmericanAlone,racially motivated crimes committed by white people against african americans;racially motivated crimes against african americans committed by white people -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_TwoOrMoreRaces,hate crimes against multiracials by white offenders;white offenders' hate crimes against multiracials;hate crimes against multiracials committed by white offenders;multiracials are victims of hate crimes committed by white offenders -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces_VictimTypeBusiness,crimes motivated by hatred of multiracial people against their businesses;hate crimes against multiracial people's businesses;businesses owned by multiracial people that are targeted by hate crimes;hate crimes against businesses owned by multiracial people -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces_VictimTypeGovernment,hate crimes against the government by people of multiple races;crimes motivated by hate against the government and committed by people of multiple races;hateful acts against the government committed by people of multiple races;acts of violence against the government motivated by hate and committed by people of multiple races -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeBusiness,businesses targeted by hate crimes based on race;race-based hate crimes against businesses;businesses experiencing hate crimes motivated by race;businesses experiencing race-based hate crimes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeGovernment,the number of hate crimes motivated by race or government bias has increased;there has been an increase in the number of hate crimes motivated by race or government bias;there has been a rise in the number of hate crimes motivated by race or government bias;the number of hate crime incidents involving race and government bias -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeOtherVictimType,racially motivated crimes against other victims -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypePerson,crimes motivated by racial prejudice;crimes that are motivated by racial prejudice;crimes motivated by racial hatred -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeReligiousOrganization,racially motivated attacks on religious institutions;attacks on religious institutions motivated by racism;discrimination against religious organizations due to race -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeSociety, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_VictimTypeUnknownVictimType,"hate crimes committed against people of a certain race, where the victim's identity is unknown" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone_VictimTypeBusiness,hate crimes committed against white businesses;crimes motivated by hate against white businesses;white businesses targeted by hate crimes;white businesses victims of hate crimes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone_VictimTypeGovernment,government-sponsored racial hate crimes against white victims;racially motivated hate crimes perpetrated by the government against white victims;the government's role in racial hate crimes against white victims;white victims of government-sponsored racial hate crimes -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone_VictimTypeSociety, -Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime,racially motivated motor vehicle theft;car theft motivated by racial hatred -Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime_BlackOrAfricanAmericanAlone, -Count_CriminalIncidents_BiasMotivationRace_Rape_IsHateCrime,hate crimes against race that involve rape;race-based rape;rape motivated by hatred of race;race-based hate crimes involving rape -Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime,racial hate crimes against robbery -Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_BlackOrAfricanAmericanAlone,robbery against african americans motivated by racial hatred;robbery of african americans because of their race;robbery of african americans that is racially motivated;robbery of african americans that is based on race -Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_WhiteAlone,robbery against white people motivated by racial hatred;robbery of white people because of their race;robbery of white people as an expression of racial hatred;robbery of white people as a hate crime -Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime,hate crimes against people of color involving shoplifting -Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime_WhiteAlone,"number of hate crimes involving bias against race and shoplifting, with a white victim;number of hate crimes motivated by race and shoplifting, with a white victim;number of hate crimes against white people, motivated by race and shoplifting;number of hate crimes involving shoplifting, bias against race, and a white victim" -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_Arab, -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AsianAlone, -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_BlackOrAfricanAmericanAlone,assaults against african americans motivated by hate;simple assaults on african americans that are racially motivated;hate-based assaults against african americans;assaults on african americans motivated by hate -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_TwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_TheftFromBuilding_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime,stealing cars from people because of their race;crimes motivated by racial hatred and involving theft from motor vehicles;theft from motor vehicles that are motivated by racial hatred;racially motivated thefts from motor vehicles -Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime_WhiteAlone, -Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime, -Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes involving weapons against african americans;crimes motivated by hate against african americans involving weapons;hate crimes against african americans involving weapons violations;crimes against african americans motivated by hate involving weapons violations -Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime,aggravated assaults motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Islam,muslim victims of aggravated assault due to hate crimes;muslim victims of hate-motivated aggravated assaults;aggravated assaults against muslim victims due to bigotry;muslim victims of hate-based aggravated assaults -Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_AllOtherLarceny_IsHateCrime,the number of religious hate crimes versus the number of all other larcenies -Count_CriminalIncidents_BiasMotivationReligion_Arson_IsHateCrime, -Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime, -Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime,crimes against people motivated by religious hatred;crimes against people because of their beliefs;1 crimes against people motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Catholicism,crimes against catholics motivated by religion -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Islam, -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Judaism,crimes against jews based on religion -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_MultipleReligion,a crime against multiple people based on their religion;crime against multiple religious victims;crime against people of multiple religions;crime against people of multiple beliefs -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_OtherReligion,hate crimes against people of other faiths;crimes against people of other beliefs;crimes against people of other religions or faiths -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Catholicism,attacks on catholic property motivated by religious bigotry;catholic property targeted in hate crimes -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Islam,hate crimes against muslims that target property;hate crimes against muslims that involve property damage;crimes against muslims motivated by religious hatred that result in damage to property;attacks on muslim-owned property motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Judaism,property crimes against jews motivated by religion;anti-semitic property crimes;hate crimes against jewish property;anti-semitic attacks on jewish property -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_MultipleReligion,property theft motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherChristian, -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherReligion,crimes against property committed against victims of other religions or faiths;crimes against property committed because of the victim's religion or faith;crimes against property that target people of other religions or faiths;crimes against property that are motivated by hatred of people of other religions or faiths -Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Protestantism, -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,religiously motivated property destruction;attacks on religious property;desecration of religious sites;religiously motivated property damage -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Catholicism,defacing catholic property motivated by religious intolerance -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Islam, -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Judaism,property damage to jewish places of worship;crimes motivated by hatred of judaism that result in damage to property;damage to jewish property as a result of religious hatred;crimes against judaism faith victims involving property damage -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MultipleReligion,multi-religious property damage due to religious hatred;multi-religious hate crimes involving property destruction;hate crimes against people of multiple religions that involve property damage;attacks on people of multiple religions that involve destruction of property -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherChristian,vandalism of christian property motivated by religious hatred;vandalism of christian property due to religious bigotry;vandalism of christian buildings and other property due to religious hatred;acts of vandalism against christian property motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherReligion,"damage to religious property;crimes of destruction, damage, or vandalism of property motivated by religious hatred" -Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Protestantism,vandalism of protestant property motivated by religious hatred;vandalism of protestant property due to religious intolerance;religiously motivated vandalism of protestant property;protestant property vandalized because of religious hatred -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Catholicism, -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Islam,religious intimidation of muslims;religious intimidation of muslim victims -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_MultipleReligion,threats and harassment against people of different religions -Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_OtherReligion, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,number of hate crimes motivated by religion;number of religious hate crimes;number of crimes motivated by religious bias;number of crimes motivated by religious prejudice -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_AtheismOrAgnosticism, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism_VictimTypeBusiness,hate crimes against catholics in the business world;religious discrimination against catholics in the workplace;discrimination against catholics in the business world;business people who are catholic have been victims of religious hate crimes -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism_VictimTypeReligiousOrganization,religious organizations that have been the victims of hate crimes against catholics;religious organizations targeted in hate crimes against catholics;catholics targeted in hate crimes in religious organizations;religious organizations where catholics are victims of hate crimes -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam_VictimTypeBusiness,hate crimes against islamic businesses;crimes against islamic businesses motivated by religious hatred;religiously motivated hate crimes against islamic businesses;hate crimes against muslim-owned businesses -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam_VictimTypePerson,attacks on people who practice islam -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam_VictimTypeReligiousOrganization,crimes against religious organizations motivated by hatred of islam;violence against religious organizations because of islam;attacks on religious organizations because of their muslim faith;hateful acts against religious organizations that are motivated by islamophobia -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeBusiness,anti-semitic hate crimes against jewish-owned businesses;hate crimes against jewish businesses motivated by religious prejudice;attacks on jewish businesses because of the owners' religion;violence against jewish businesses due to anti-semitism -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeGovernment,anti-semitic hate crimes against governments led by jewish people;hate crimes motivated by religious prejudice against jews and their governments;attacks on jewish governments based on religious hatred;violence against jewish governments due to anti-semitism -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeReligiousOrganization,religious organizations that hate judaism and commit crimes against its followers;religious organizations that commit hate crimes against judaism;religious organizations that commit hate crimes against people of the jewish faith;religious organizations that commit hate crimes against people who practice judaism -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeSociety,religious hate crimes against jewish societies;attacks on jewish people and institutions;attacks on jewish communities -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism_VictimTypeUnknownVictimType, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeAirportOrBusStationOrTrainStation,hate crimes against people of faith in bus stations;crimes motivated by religious hatred in bus stations;bus stations as a site of religious hate crimes;hate crimes against religious minorities in bus stations -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,hate crimes against people of faith in bars and clubs;religiously motivated hate crimes in bars and clubs;attacks on people of faith in bars and clubs motivated by religion;violence against people of faith in bars and clubs based on religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeCollegeOrUniversity,hate crimes against religious groups in colleges or universities;religiously motivated hate crimes on college campuses;incidents of religious intolerance in higher education;campus hate crimes targeting religious groups -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,hate crimes against religious groups in commercial or office buildings;religious-based hate crimes in commercial or office buildings;hate crimes against people of faith in commercial or office buildings;hate crimes against religious minorities in commercial or office buildings -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeConstructionSite,crimes against religious minorities at construction sites;hate crimes against religious minorities in the construction industry;religious discrimination in the construction industry;attacks on religious minorities at construction sites -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeConvenienceStore,hate crimes at convenience stores motivated by religion;attacks on convenience stores motivated by religious hatred;violence against convenience stores due to religious bigotry;assaults on convenience stores because of religious intolerance -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeDepartmentStore,hate crimes against religious groups in department stores;department store hate crimes motivated by religion;religiously motivated hate crimes in department stores;department stores targeted in hate crimes motivated by religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,hate crimes against religious minorities in schools;incidents of religious intolerance in schools;hate crimes against religious groups in schools;religiously motivated violence in schools -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeFieldOrWoods,religiously motivated crime in woods;crime against a person or property motivated by religious hatred in woods;woods religious hate crime;woods religious bias crime -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeGasStation,1 hate crimes against people of faith in gas stations;2 religiously motivated violence in gas stations;3 attacks on people of faith at gas stations;4 hate crimes against religious minorities in gas stations -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeGovernmentOrPublicBuilding, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,hate crimes against religious minorities in grocery stores and supermarkets;attacks on religious minorities in grocery stores and supermarkets motivated by hate;violence against religious minorities in grocery stores and supermarkets due to prejudice;incidents of religious intolerance in grocery stores and supermarkets -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,highway hate crimes based on religion;religiously motivated hate crimes on highways;highway crimes against people of faith;highway violence against religious groups -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeLodgingBusiness,"hate crimes against religious groups in hotels, motels, and other lodging establishments;crimes motivated by religious hatred in the hospitality industry;attacks on people of faith in the travel and tourism sector;incidents of religious discrimination in the lodging industry" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeMedicalBusiness,religious discrimination in the medical field;anti-religious bias in healthcare;religious bigotry in medicine;religious intolerance in the medical profession -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeParkOrPlayground,hate crimes in parks and playgrounds motivated by religion;crimes against people of faith in parks and playgrounds;attacks on people of faith in parks and playgrounds;violence against people of faith in parks and playgrounds -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeParkingFacility,hate crimes against religious groups in parking lots;crimes motivated by religious hatred in parking lots;incidents of religious intolerance in parking lots;attacks on people of faith in parking lots -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimePlaceOfWorship,hate crimes against religious groups in places of worship;crimes motivated by religious hatred in places of worship;attacks on religious groups in places of worship;violence against religious groups in places of worship -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeResidence,hate crimes against religious groups in homes;crimes motivated by religious hatred in people's homes;attacks on religious people in their homes;hateful acts against religious groups in their homes -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeRestaurant,hate crimes against religious groups in restaurants;restaurants targeted for religious hate crimes;religious hate crimes committed in restaurants;restaurants where religious hate crimes have occurred -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,hate crimes against religious groups in schools and colleges;incidents of religious hate crimes in schools and universities;hate crimes against religious minorities in schools and universities;religiously motivated violence in educational institutions -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against religious groups at a single location;crimes motivated by religious hatred at a single location;incidents of religious hate crime at a single location;hate crimes motivated by religion at a single crime scene -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeSpecialtyStore,crimes motivated by religious hatred in specialty stores;hate crimes against people of faith in specialty stores;attacks on people of faith in specialty stores;violence against people of faith in specialty stores -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_LocationOfCrimeUnclassifiedLocation,hate crimes against religious groups at a secret location;religiously motivated violence at a hidden place;attacks on people of faith in a concealed spot;acts of bigotry against religious people in a secret place -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion,crimes motivated by religious hatred against multiple groups -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion_VictimTypePerson,hate crimes committed by a person against people of multiple religions -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion_VictimTypeReligiousOrganization,hate crimes against religious organizations committed by people of multiple faiths;religious organizations targeted by hate crimes from people of multiple faiths;multiple faiths' victims of hate crimes against religious organizations;religious organizations as targets of hate crimes by people of multiple faiths -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityNotHispanicOrLatino, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity,"hate crimes committed by people of unknown ethnicity against religion;crimes motivated by hatred of religion, committed by people of unknown ethnicity;religion-based hate crimes committed by people of unknown ethnicity;hate crimes against religion, committed by people of unknown ethnicity" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Catholicism,"crimes motivated by hate against people of a particular race, committed by people whose identities are unknown, against victims who are catholic" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Islam,number of hate crimes against islam by unknown ethnicity offenders;incidents of violence against muslims in the united states where the offender's ethnicity is unknown and the motivation is hatred of islam -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Judaism,"crimes motivated by religious hatred against jews, committed by people of unknown ethnicity;attacks on jews based on their religion, committed by people of unknown ethnicity;violence against jews because of their religion, committed by people of unknown ethnicity;crimes motivated by religious hatred against jews committed by people of unknown ethnicity" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_MultipleReligion,"how many hate crimes have been committed against people of multiple religions by offenders of unknown ethnicity?;how many hate crimes have been committed against people of multiple religions, with the offender's ethnicity unknown?;how many people have been victims of hate crimes motivated by religion, where the ethnicity of the offender is unknown?;number of hate crimes motivated by religion, with the offender's ethnicity unknown and the victim's religion multiple" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_OtherChristian, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_OtherReligion,religiously motivated crimes against people of other religions by offenders of unknown ethnicity;crimes motivated by religious hatred committed by people of unknown ethnicity against other religious people -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Protestantism, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceAsianAlone,hate crimes against asians motivated by religion;crimes motivated by hatred of religion against asians;hate crimes against asian people motivated by religion;hate crimes against asians committed in the name of religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,religious hate crimes committed by african americans against sikh victims;hate crimes against sikhs committed by african americans;crimes motivated by religious hatred against sikhs committed by african americans;anti-sikh hate crimes committed by african americans -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Islam,crimes motivated by religious hatred committed by african americans against muslim victims;hate crimes against muslims committed by african americans;african americans who commit hate crimes against muslims;crimes against muslims motivated by religious hatred and committed by african americans -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Judaism,african american offenders who commit hate crimes against jewish people -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceTwoOrMoreRaces,multiracial offenders who commit hate crimes against religious groups -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceTwoOrMoreRaces_Judaism,multiracial people committing hate crimes against jews;people of multiple races committing hate crimes against jews;hate crimes against jews committed by people of more than one race -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Catholicism,crimes motivated by religious hatred against catholic victims committed by offenders of unknown race;religious hate crimes committed by offenders of unknown race against catholic victims -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Islam,"crimes against muslims motivated by hatred of their faith and committed by people of unknown race;4 violence against muslims because of their faith, perpetrated by people of unknown race;5 islamophobic hate crimes, committed by people of unknown race" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Judaism,"crimes against jews motivated by religion, committed by unknown perpetrators;hate crimes against jews committed by unknown people;anti-semitic crimes committed by unknown people;religiously motivated hate crimes against jews committed by unknown people" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_MultipleReligion,hate crimes against multiple religious faiths by offenders of unknown race;religious hate crimes committed by offenders of unknown race against multiple faiths;hate crimes against multiple religions and faiths by offenders of unknown race;hate crimes against people of multiple faiths committed by offenders of unknown background -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_OtherChristian,crimes motivated by religious hatred against christians committed by offenders of unknown race;christians targeted in hate crimes by offenders of unknown race;hate crimes against christians committed by offenders of unknown race;christians attacked in hate crimes by offenders of unknown race -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_OtherReligion,religious hate crimes committed by offenders of unknown race against other religious victims;crimes motivated by religious hatred committed by offenders of unknown race against other religious victims -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Protestantism,faith-based crimes against protestants committed by unknown assailants -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone,religiously motivated hate crimes against white people;hate crimes against white people committed for religious reasons;hate crimes against white people motivated by religious beliefs -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Catholicism,hate crimes against catholics by white offenders;white offenders who commit hate crimes against catholics;religious hate crimes against catholics committed by white offenders;crimes motivated by religious hatred against catholics committed by white offenders -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Islam, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_MultipleReligion,"the number of hate crime incidents where the bias was against religion, the offender was white alone, the offender's race was known, and the victim had multiple religious faiths;the number of hate crimes against people of multiple religions, committed by white offenders whose race was known, and where the victim's religion was a factor in the crime;the number of hate crimes against people of multiple religions, committed by white offenders whose race was known, and where the offender's religious bias was a factor in the crime;the number of hate crime incidents involving a white offender, where the offender's race is known, and the victim is of multiple religious faiths" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_OtherReligion,religious hate crimes committed by white people against minorities -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Protestantism,hate crimes against protestants committed by white offenders;religious hate crimes against protestants by white offenders;white offenders who commit hate crimes against protestants;hate crimes committed by white offenders against protestant victims -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherChristian,violence against christians because of their religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion,hate crimes committed against people because of their religion;religious hate crimes against other religions -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion_VictimTypeBusiness,business owners of other religions being targeted by hate crimes;businesses owned by people of other faiths being targeted by religious hate crimes;businesses owned by people of other religions targeted in hate crimes;businesses owned by people of other religions attacked in hate crimes -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion_VictimTypePerson,crimes against people because of their religion;violence against people because of their religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion_VictimTypeReligiousOrganization,religious hate crimes committed against people of other religions in religious organizations;religious hate crimes against religious victims in religious organizations;religious hate crimes against people of other faiths in religious organizations;religious hate crimes against people of different faiths in religious organizations -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism,crimes motivated by religious hatred against protestant victims;attacks against protestant people because of their religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism_VictimTypeReligiousOrganization,hate crimes committed against protestant religious organizations;crimes motivated by hatred of protestants and their religious organizations;violence against protestants and their religious organizations;attacks on protestants and their religious organizations -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeBusiness,crimes against businesses motivated by religious hatred;hate crimes against businesses motivated by religion;religiously motivated hate crimes against businesses;businesses targeted by hate crimes motivated by religion -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeGovernment, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeOtherVictimType,crimes motivated by religious hatred against other victims;attacks on other victims motivated by religious hatred -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypePerson,hate crimes against people of faith -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeReligiousOrganization,violence against religious institutions;crimes motivated by religious hatred against religious organizations;religiously motivated hate crimes against religious organizations;violence against religious groups -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeSociety,religious discrimination by society -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_VictimTypeUnknownVictimType,hate crimes against an unknown victim motivated by religion;crimes against an unknown victim motivated by religious intolerance;unknown victim of a religious hate crime;religious hate crime against a person of unknown identity -Count_CriminalIncidents_BiasMotivationReligion_NotSpecified_IsHateCrime, -Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime,assault based on religion -Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Islam,assaults against people of the islamic faith -Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Judaism, -Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_OtherReligion,2 attacks on people of other faiths;attacks on people of other faiths;attacks against people of other faiths -Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Gay,aggravated assaults against gay people motivated by prejudice against their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_LGBT,aggravated assaults against lgbt people that are motivated by bias;aggravated assault against lgbt people as a result of homophobia or transphobia -Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Lesbian, -Count_CriminalIncidents_BiasMotivationSexualOrientation_AllOtherLarceny_IsHateCrime,the rate of sexual orientation hate crimes compared to the rate of all other larceny -Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime,crimes against people because of their sexual orientation;crimes committed against people because of their sexual identity;crimes committed against people because of their sexual orientation or gender identity;crimes against people based on their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Bisexual,bisexual people victims of violence motivated by their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Gay,criminal acts against gay people because of their sexual orientation;crimes against gay people motivated by their sexual orientation;crimes against gay people because they are gay;crimes against gays -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Heterosexual,hate crimes targeting heterosexual people;crimes targeting heterosexual people motivated by hatred of their sexual orientation;hate crimes targeting heterosexuals -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_LGBT, -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Lesbian, -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Bisexual,hate crimes against bisexuals involving property damage;crimes against bisexuals motivated by sexual orientation that involve property damage;property damage motivated by sexual orientation against bisexuals;damage to property motivated by hatred of bisexuals -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Heterosexual,crimes against property targeting heterosexuals -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_LGBT,property crimes against lgbt people;property crimes against lgbt people motivated by hatred of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Lesbian,violence against lesbians' property because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,attacks on lgbtq people that result in damage to property;violence against lgbtq people that results in damage to property;hate crimes against lgbtq people that involve property destruction;crimes against people based on their sexual orientation that involve destroying property -Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Gay,vandalism of gay people's property because of their sexual orientation;vandalism of property against gay people due to their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_LGBT,"vandalism of lgbt people's property motivated by hatred of their sexual orientation;lgbt people's homes, businesses, and other property damaged in hate crimes" -Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Lesbian,vandalism against lesbians;property damage against lesbians motivated by hatred of their sexual orientation;lesbians targeted for property damage because of their sexual orientation;lesbians' property vandalized because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Bisexual, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Heterosexual, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_LGBT, -Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Lesbian,intimidation of lesbians based on their sexual orientation;intimidation of lesbians -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,number of hate crimes motivated by sexual orientation;number of hate crimes against lgbtq people;number of hate crimes against people based on their sexual orientation;number of hate crimes against people based on their sexual identity -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Bisexual, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Bisexual_VictimTypePerson,hate crimes against bisexuals committed by people;people who commit hate crimes against bisexuals;violence against bisexuals because of their sexual orientation;2 people who commit hate crimes against bisexuals -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay_VictimTypeBusiness,hate crimes against gay victims in businesses;businesses that have been the target of hate crimes against gay victims;gay victims of hate crimes in businesses;businesses where gay victims have been the target of hate crimes -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay_VictimTypeGovernment,government-backed persecution of gays and lesbians -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay_VictimTypeOtherVictimType,gay-on-straight hate crimes;hate crimes committed by gay people against straight people;hate crimes against straight people by gay people;hate crimes against heterosexuals by homosexuals -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay_VictimTypePerson,attacks on gay people motivated by hatred of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Heterosexual,hate crimes against heterosexuals;crimes motivated by hatred of heterosexuals;criminal acts against heterosexuals motivated by hatred of their sexual orientation;discrimination against heterosexuals motivated by hatred of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Heterosexual_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT_VictimTypeBusiness,hate crimes against lgbt people in the business world;hate crimes against lgbt people in the corporate world;discrimination against lgbt people in the workplace;violence against lgbt people in the workplace -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT_VictimTypeGovernment,persecution of lgbt people by the government;lgbt people being targeted by the government for violence and discrimination;4 government-backed persecution of lgbt people;oppression of lgbt people by the government -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian,violence against lesbian victims;harassment against lesbian victims;discrimination against lesbian victims;oppression against lesbian victims -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian_VictimTypePerson,hate crimes against lesbians;hate crimes against women who identify as lesbians;hate crimes against women who are perceived as lesbians;crimes motivated by hatred of lesbians -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,4 hateful acts against lgbtq+ people in drinking and dancing establishments;5 aggression towards lgbtq+ people in pubs and clubs;attacks on lgbtq+ people in pubs and clubs;assaults on lgbtq+ people in nightlife settings -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,hate crimes against lgbtq people in office buildings;hate crimes against lgbtq people in commercial buildings;hate crimes against lgbtq+ people in commercial or office buildings;crimes motivated by hatred of lgbtq+ people in commercial or office buildings -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeConvenienceStore,hate crimes against lgbtq people in convenience stores;convenience store hate crimes against lgbtq people;lgbtq people are victims of hate crimes in convenience stores;hate crimes against lgbtq people are a problem in convenience stores -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeDepartmentStore,hate crimes against lgbtq people in department stores;department stores where lgbtq people are harassed or assaulted;department stores where lgbtq people are discriminated against;department stores where lgbtq people feel unsafe -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,hate crimes against lgbtq+ youth in schools;violence against lgbtq+ students in k-12;bullying of lgbtq+ youth in education;discrimination against lgbtq+ youth in education -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeFieldOrWoods,attacks on people because of their sexual orientation in the wilderness;harassment of people because of their sexual orientation in the great outdoors -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeGasStation,gas station attacks on lgbtq people;violence against lgbtq people at gas stations;hateful acts against lgbtq people at gas stations;aggression against lgbtq people at gas stations -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeGovernmentOrPublicBuilding,hate crimes against people of a particular sexual orientation in government buildings;crimes motivated by hatred of people of a particular sexual orientation that occur in government buildings;criminal acts committed against people of a particular sexual orientation in government buildings because of their sexual orientation;acts of violence or intimidation against people of a particular sexual orientation in government buildings because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,hate crimes against lgbtq+ people in grocery stores and supermarkets;attacks on lgbtq+ people in grocery stores and supermarkets because of their sexual orientation;harassment and discrimination against lgbtq+ people in grocery stores and supermarkets;intolerance and bigotry against lgbtq+ people in grocery stores and supermarkets -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,hate crimes against people of a certain sexual orientation that happen on highways or sidewalks;crimes motivated by hatred of someone's sexual orientation that occur on highways or sidewalks;violent acts against people of a certain sexual orientation that take place on highways or sidewalks;aggression against people of a certain sexual orientation that happens on highways or sidewalks -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeLodgingBusiness,"hate crimes against lgbtq+ people in hotels, motels, and other lodging businesses;violence against lgbtq+ people in the hospitality industry;discrimination against lgbtq+ people in the travel industry;harassment of lgbtq+ people in hotels and other lodging businesses" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeMedicalBusiness,number of hate crime incidents based on sexual orientation and medical business;number of hate crimes motivated by sexual orientation or medical business;number of hate crimes against people because of their sexual orientation or medical business;number of hate crimes based on sexual orientation or medical business -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeParkingFacility,hate crimes against people of a certain sexual orientation in parking lots;crimes motivated by hatred of people of a certain sexual orientation that take place in parking lots;violent acts against people of a certain sexual orientation that happen in parking lots;aggression against people of a certain sexual orientation that takes place in parking lots -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimePlaceOfWorship,2 crimes motivated by hatred of lgbtq people in places of worship;3 violence against lgbtq people in places of worship;4 attacks on lgbtq people in places of worship;crimes motivated by hatred of lgbtq+ people in places of worship -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeResidence, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeRestaurant,hate crimes against lgbtq+ people in restaurants;restaurant-based hate crimes against lgbtq+ people;hate crimes against lgbtq+ people in the restaurant industry;hate crimes in restaurants motivated by anti-lgbtq+ bias -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,hate crimes against lgbtq+ people in schools and universities;bias against lgbtq+ students in schools and universities;discrimination against lgbtq+ students in schools and universities;harassment of lgbtq+ students in schools and universities -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against people of a particular sexual orientation in a single location;crimes motivated by hatred of someone's sexual orientation in a single location;crimes committed against people because of their sexual orientation in a single location;crimes committed against people because of their perceived sexual orientation in a single location -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeSpecialtyStore,hate crimes against lgbtq+ people at specialty stores;crimes motivated by hatred of lgbtq+ people at specialty stores;attacks on lgbtq+ people at specialty stores;violence against lgbtq+ people at specialty stores -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LocationOfCrimeUnclassifiedLocation,unclassified locations where people are targeted for hate crimes based on their sexual orientation;hate crimes against people of a particular sexual orientation that take place in undisclosed locations;unclassified places where people are targeted for hate crimes based on their sexual orientation;unclassified locations where people are targeted for hate crimes because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,hate crimes against people of a different sexual orientation committed by non-hispanic offenders -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_Gay,hate crimes against gay people committed by non-hispanic offenders;crimes against gay people committed by non-hispanic offenders;hate crimes against gay people by non-hispanic offenders;crimes motivated by hatred of gay people committed by non-hispanic offenders -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Bisexual,hate crimes against bisexuals by offenders of unknown race;crimes motivated by hatred of bisexual people committed by offenders of unknown ethnicity;hate crimes against bisexual people committed by offenders of unknown race;crimes motivated by hatred of bisexual people committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Gay,"hate crimes against gay people by people of unknown ethnicity;crimes motivated by hatred of gay people committed by people of unknown ethnicity;hate crimes against gay people by offenders of unknown ethnicity;crimes motivated by hate against gay people, committed by offenders of unknown ethnicity" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Heterosexual,"hate crimes against heterosexuals by unknown ethnic offenders;hate crimes against heterosexuals, committed by people of unknown ethnicity;hate crimes against heterosexuals committed by unknown ethnic offenders;crimes motivated by hatred of heterosexuals committed by unknown ethnic offenders" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_LGBT,"hate crimes against lgbt victims by unknown ethnicity offenders;hate crimes against lgbt people, committed by offenders whose ethnicity is unknown;hate crimes against lgbt people by unknown ethnicity offenders;lgbt people are victims of hate crimes committed by offenders of unknown ethnicity" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Lesbian,lesbian victim was targeted in a hate crime by an unknown ethnicity offender -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,"number of incidents of hate motivated by sexual orientation, where the offender was black or african american and their race is known;how many hate crimes were motivated by sexual orientation and had a black or african american offender?;how many hate crimes were motivated by sexual orientation and had a black or african american offender whose race was known?;what is the number of hate crimes against people of a sexual orientation that were committed by a black or african american offender whose race was known?" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Gay,"hate crimes against gay people by african american offenders;hate crimes against gay people committed by african american offenders;crimes motivated by hatred of gay people, committed by african american offenders;african american offenders who commit hate crimes against gay people" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_LGBT,hate crimes against lgbt people committed by african american offenders;lgbt hate crimes perpetrated by african american offenders;hate crimes against lgbt people by african american offenders;crimes motivated by hate against lgbt people committed by african american offenders -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Lesbian,hate crimes against lesbians committed by african americans;african american hate crimes against lesbians;lesbians targeted by african american hate crimes;hate crimes committed by african americans against lesbian women -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceTwoOrMoreRaces_Gay,hate crimes against gay people committed by people of multiple races;sexual violence against gay people by people of multiple races;attacks on gay people by people of mixed race;crimes of hate against gay people committed by people of mixed race -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Bisexual,hate crimes against bisexuals committed by offenders of unknown race;crimes motivated by hatred of bisexuals committed by offenders of unknown race;hate crimes against bisexuals committed by people of unknown race;crimes motivated by hatred of bisexuals committed by people of unknown race -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Heterosexual,assaults on heterosexuals motivated by hatred of their sexual orientation committed by people of unknown race;crimes motivated by hatred of heterosexuals committed by offenders of unknown race;attacks on heterosexuals motivated by hatred of their sexual orientation committed by offenders of unknown race;attacks against heterosexuals motivated by hatred of their sexual orientation committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_LGBT,"crimes motivated by hatred of lgbt people, committed by offenders of unknown race;violence against lgbt people, motivated by hatred of their sexual orientation, committed by offenders of unknown race;attacks on lgbt people, motivated by hatred of their sexual orientation, committed by offenders of unknown race;crimes motivated by hatred of lgbt people committed by offenders of unknown race" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Lesbian,sexual orientation hate crimes against lesbians committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Bisexual,number of hate crimes against bisexual people where the offender was a white person and the offender's race was known -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Gay,hate crimes against gay people committed by white people;crimes motivated by hatred of gay people and committed by white people;hate crimes against lgbtq+ people by white people;hate crimes against gay people by white people -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Heterosexual,hate crimes against heterosexuals by white people;crimes motivated by hatred of heterosexuals committed by white people;white people who commit hate crimes against heterosexuals;heterosexuals who are victims of hate crimes committed by white people -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_LGBT, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Lesbian,hate crimes against lesbians by white offenders;hate crimes against lesbian victims by white offenders;hate crimes against lesbian people by white offenders;white offenders who commit hate crimes against lesbians -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypeBusiness,discrimination against lgbtq+ people in businesses;businesses that discriminate against lgbtq+ people;businesses that are not lgbtq+-friendly;businesses that are not inclusive of lgbtq+ people -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypeGovernment, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypeOtherVictimType, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypePerson,hate crimes against people because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypeReligiousOrganization,hate crimes against religious organizations based on sexual orientation;religious organizations targeted for hate crimes based on sexual orientation;hate crimes against religious organizations motivated by sexual orientation;religious organizations attacked for hate crimes based on sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_VictimTypeSociety,crimes against society that target people because of their sexual orientation -Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime,robberies motivated by hatred of someone's sexual orientation;robberies that are motivated by homophobia or transphobia;robberies that are motivated by prejudice against lgbtq people;robberies that are motivated by a desire to harm lgbtq people -Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Bisexual,"simple assaults against bisexual people because of their sexual orientation;bisexual people assaulted because of their sexual orientation;bisexual people attacked because of their sexual orientation;bisexual people being assaulted, attacked, or injured because of their sexual orientation" -Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Gay, -Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_LGBT, -Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Lesbian,hate crimes against lesbians involving simple assault;simple assaults against lesbians motivated by prejudice against their sexual orientation;simple assaults against lesbians motivated by hate for their sexual orientation;simple assaults against lesbians motivated by bigotry against their sexual orientation -Count_CriminalIncidents_BiasMotivationSingleBias_AggravatedAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_AllOtherLarceny_IsHateCrime,"the number of single-bias hate crimes per 100,000 larcenies" -Count_CriminalIncidents_BiasMotivationSingleBias_Arson_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_Burglary_IsHateCrime,burglaries motivated by hate;burglaries based on prejudice;burglaries based on discrimination;burglaries based on bias -Count_CriminalIncidents_BiasMotivationSingleBias_CounterfeitingOrForgery_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,credit card fraud motivated by prejudice;credit card fraud motivated by hatred or prejudice;credit card fraud that is motivated by bigotry or intolerance;credit card fraud that is based on stereotypes or prejudice -Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstPerson_IsHateCrime,crime against a person based on prejudice -Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstProperty_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstSociety_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,bias-motivated vandalism;vandalism of property based on prejudice -Count_CriminalIncidents_BiasMotivationSingleBias_DrugEquipmentViolations_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_DrugOrNarcoticViolations_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_Fondling_IsHateCrime,fondling with malicious intent -Count_CriminalIncidents_BiasMotivationSingleBias_Impersonation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_Intimidation_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeAirportOrBusStationOrTrainStation, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeBankOrSavingsAndLoan,hate crimes in the banking industry;bias crimes against banks or savings and loans -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,hate crimes that are based on bias and happen in bars and nightclubs;bias-motivated crimes in bars and nightclubs -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeBodyOfWaterOrBeach,crimes motivated by hatred or prejudice against a particular group of people that take place in or near water;criminal acts motivated by prejudice against a particular group in water bodies and beaches -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeCollegeOrUniversity,bias-motivated crimes committed against students on college campuses;bias-motivated crimes on college campuses -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,crimes committed in commercial buildings;criminal activity in commercial buildings;commercial building crimes;crimes against commercial buildings -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeConstructionSite,hate crimes on construction sites;hate-motivated crimes on construction sites;construction site hate crimes;construction sites where hate crimes occur -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeConvenienceStore,bias-motivated crimes in convenience stores;single-bias hate crimes in convenience stores;hate crimes against convenience store customers;hate crimes motivated by prejudice against a particular group in convenience stores -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeDepartmentStore,crimes motivated by hatred against department stores;hate-based crimes against department stores -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,acts of bias-based violence against students in elementary and high schools;hate crimes motivated by bias against students in elementary and high schools -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeFieldOrWoods, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeGasStation,1 hate crimes committed at gas stations;4 crimes motivated by hate at gas stations -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeGovernmentOrPublicBuilding,number of hate crimes motivated by bias against government or public buildings;number of hate crimes against government or public buildings motivated by bias;number of hate crimes motivated by a single bias against government or public buildings;number of hate crimes motivated by a single bias targeting government or public buildings -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,5 incidents of bias-motivated violence or discrimination against people in grocery stores and supermarkets -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,highway crimes motivated by hate;hate-motivated crimes on highways;single-bias hate crimes on highways -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeLiquorStore,the number of hate crime incidents involving a single bias against a liquor store;the number of hate crimes motivated by a bias against liquor stores;the number of hate crimes that were motivated by a bias against liquor stores;number of hate crimes motivated by bias against liquor stores -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeLodgingBusiness,bias-motivated crimes in hotels and motels;discrimination in the lodging industry;prejudice in the hospitality industry;bias-based violence in the hospitality industry -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeMedicalBusiness,bias-motivated crimes in the medical industry;discrimination in the medical profession;bias-motivated crimes in the medical field;bias-motivated crimes against medical professionals -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeMultipleCrimeLocations, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeParkOrPlayground,hate crimes at parks and playgrounds are on the rise;there has been an increase in hate crimes at parks and playgrounds;more people are being targeted for hate crimes at parks and playgrounds;hate crimes are becoming more common at parks and playgrounds -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeParkingFacility,bias-motivated crime in a parking garage;parking garage bias-motivated crime;bias crime in parking structure;biased act in parking deck -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimePlaceOfWorship,violence against places of worship;attacks on houses of worship;crimes against places of worship;hate crimes against places of worship -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimePrisons,bias-motivated crimes in prisons -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeResidence,hate crimes committed in homes;hate crimes in homes;hate crimes that take place in homes;hate crimes that occur in homes -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeRestaurant,restaurant hate crimes;hate crimes in the food service industry;hate crimes against restaurant workers;hate crimes against restaurant customers -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,hate crimes in learning environments;hate crimes in places of learning -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeSelfStorage,hate crimes in self storage facilities;self storage facilities as a target of hate crimes;hate crimes against people using self storage facilities;hate crimes against people who own or work in self storage facilities -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeShoppingCenter,bias-motivated crimes at the mall;bias-motivated crimes at shopping centers;shopping center bias crimes;bias crimes at shopping centers -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeSingleCrimeLocation, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeSpecialtyStore,"hate-motivated crimes in specialty stores;bias-motivated crimes in specialty stores;single-bias hate crimes in specialty stores;crimes motivated by hatred or prejudice against a particular group of people, committed in a specialty store" -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_LocationOfCrimeUnclassifiedLocation,"hate crime incidents based on a single bias, location unknown;hate crime incidents based on a single bias, location not classified;number of hate crimes against a single bias, location unknown;number of hate crimes against a single bias, location not specified" -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityHispanicOrLatino,"offenses motivated by hatred of a particular ethnicity, committed by hispanic offenders;hispanic offenders who commit crimes motivated by hatred of a particular ethnicity" -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,single-bias hate crimes committed by non-hispanic offenders -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,criminal offenses against american indians or alaska natives due to bias -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceAsianAlone,hate crimes committed by asians against known race offenders;race-based hate crimes committed by asians against known offenders;hate crimes against known race offenders committed by asians;race-based hate crimes against known offenders committed by asians -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,crimes motivated by prejudice committed by african american offenders -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceTwoOrMoreRaces,single-bias hate crimes committed by multiracial people -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceUnknownRace, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceWhiteAlone,1 hate crimes committed by white people -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeBusiness,bias-motivated crimes in the workplace -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeFinancialInstitution,financial institutions that are biased against certain groups;financial institutions that discriminate against certain groups;financial institutions that are prejudiced against certain groups;financial institutions that are intolerant of certain groups -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeGovernment,1 hate crimes against the government;2 government-related hate crimes;3 hate crimes targeting the government;4 hate crimes motivated by government affiliation -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeOtherVictimType,bias against other victim types;bias-motivated crimes against other victim types;bias crimes against other victim types;hate crimes motivated by bias against other victim types -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypePerson,hate crimes against people based on a single bias -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeReligiousOrganization, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeSociety, -Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_VictimTypeUnknownVictimType,bias crimes against unknown victims;bias-motivated crimes against unknown victims;crimes against unknown victims motivated by hate or bias -Count_CriminalIncidents_BiasMotivationSingleBias_MotorVehicleTheft_IsHateCrime,single-bias hate crimes of motor vehicle theft -Count_CriminalIncidents_BiasMotivationSingleBias_MurderAndNonNegligentManslaughter_IsHateCrime,homicide and manslaughter motivated by prejudice against a single group;murders and manslaughters motivated by bias against a single group;homicides committed because of bias against a particular group -Count_CriminalIncidents_BiasMotivationSingleBias_NotSpecified_IsHateCrime,hate crimes that are not otherwise specified in the law;hate crimes that are not explicitly stated -Count_CriminalIncidents_BiasMotivationSingleBias_Rape_IsHateCrime,1 rape as a hate crime;2 rape motivated by hate -Count_CriminalIncidents_BiasMotivationSingleBias_Robbery_IsHateCrime,robbery based on prejudice -Count_CriminalIncidents_BiasMotivationSingleBias_Shoplifting_IsHateCrime,shoplifting with a bias motive -Count_CriminalIncidents_BiasMotivationSingleBias_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromBuilding_IsHateCrime,theft from a building based on prejudice or discrimination against a particular group of people;theft from a building because of bias;theft from a building based on prejudice;theft from buildings motivated by bias -Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromMotorVehicle_IsHateCrime,motor vehicle thefts with a hate bias;theft from motor vehicles with a bias motive;theft from motor vehicles based on prejudice;motor vehicle theft motivated by bias -Count_CriminalIncidents_BiasMotivationSingleBias_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime, -Count_CriminalIncidents_BiasMotivationSingleBias_WeaponLawViolations_IsHateCrime,weapon crimes with a bias motive;weapon law violations based on bias;weapon law violations due to bias -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstPerson_IsHateCrime,hate crimes against people with unconfirmed genders;hate crimes against people of unconfirmed gender -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstProperty_IsHateCrime,hate crimes against property motivated by gender bias;property crimes motivated by gender-based prejudice;hate crimes against property motivated by gender discrimination;property crimes motivated by gender bias -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_Intimidation_IsHateCrime,crimes of intimidation against queer people;crimes motivated by hatred of queer people;crimes against queer people motivated by prejudice;violence against queer people -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime,hate crimes against transgender people;hate crimes against transgender individuals;hate crimes against transgender people and gender non-conforming people;hate crimes against transgender people and gender non-binary people -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_LocationOfCrimeSingleCrimeLocation,hate crimes against transgender or gender non-conforming people in single crime locations;crimes motivated by hatred of transgender or gender non-conforming people in single crime locations;single-location hate crimes against transgender or gender non-conforming people;hate crimes against transgender or gender non-conforming people in one place -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderEthnicityUnknownEthnicity,attacks on transgender people by unknown people;crimes motivated by hatred of transgender people committed by unknown offenders;attacks on transgender people by unknown offenders motivated by hatred of their gender identity -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderRaceUnknownRace,hate crimes committed by offenders of unknown race against gender non-conforming victims;crimes motivated by hatred of gender non-conforming people committed by offenders of unknown race;crimes against gender non-conforming people motivated by hatred of their gender identity or expression committed by offenders of unknown race;attacks on gender non-conforming people motivated by hatred of their gender identity or expression committed by offenders of unknown race -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderRaceWhiteAlone,transgender people being targeted by white hate crimes;white offenders targeting transgender people with hate crimes;transgender people who are victims of hate crimes committed by white offenders -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_VictimTypePerson, -Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_Burglary_IsHateCrime, -Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime,hate crimes involving counterfeiting;counterfeiting as a hate crime;hate-motivated counterfeiting;counterfeiting motivated by hate -Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,credit card or atm fraud;fraudulent use of credit cards or atms -Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime,acts of hatred against a person or group of people -Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime,incidents of hate crimes against property -Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime,crimes that are based on bigotry and intolerance -Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,property destruction as a hate crime;hate crime property destruction -Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime, -Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime, -Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime,"number of hate crimes involving false pretense, swindle, or confidence game;number of hate crimes involving con games;number of hate crime incidents involving false pretense, swindle, or confidence game" -Count_CriminalIncidents_Fondling_IsHateCrime, -Count_CriminalIncidents_Impersonation_IsHateCrime, -Count_CriminalIncidents_Intimidation_IsHateCrime, -Count_CriminalIncidents_IsHateCrime,hate crime statistics;number of hate crimes committed;how many hate crimes are committed;how many people are victims of hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeAirportOrBusStationOrTrainStation,"hate crimes in airports, buses, and train stations;hate crimes committed in transportation hubs;hate crimes in public transportation;hate crimes in transportation systems" -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeBankOrSavingsAndLoan,hate crimes against banks or savings and loans;crimes motivated by hatred of banks or savings and loans;hate-motivated crimes against banks or savings and loans;hate crimes targeting banks or savings and loans -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeBarOrPubOrNightClub,"hate crimes in bars, pubs, and nightclubs;hate crimes in places where people go to drink and socialize;hate crimes in places where people gather to drink and socialize;hate crimes in places where people gather to drink" -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeBodyOfWaterOrBeach,hate crimes committed in bodies of water and on beaches;crimes motivated by hate that occur in bodies of water and on beaches;criminal acts that are motivated by hatred and take place in bodies of water and on beaches;atrocities that are fueled by prejudice and take place in bodies of water and on beaches -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeCollegeOrUniversity,hate crimes on college campuses;campus hate crimes;hate crimes at colleges and universities;college hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeCommercialOrOfficeBuilding,hate crimes in commercial or office buildings;hate crimes in commercial spaces;hate crimes in buildings used for commercial or office purposes;hate-motivated crimes in commercial or office buildings -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeConstructionSite,hate crimes at construction sites;incidents of hate crimes at construction sites;hate crimes that have happened at construction sites;construction sites where hate crimes have been reported -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeConvenienceStore,convenience stores targeted by hate crimes;convenience stores where hate crimes have occurred;incidents of hate-based violence in convenience stores;hate-fueled crimes in corner shops -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeDepartmentStore,hate crimes in department stores;hate-motivated crimes in department stores;crimes motivated by hate in department stores;department stores as sites of hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeElementarySchoolOrHighSchool,hate crimes in elementary and high schools;hate crimes committed against students in elementary and high schools;hate crimes committed in elementary schools and high schools;crimes motivated by hate that occur in elementary schools and high schools -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeFieldOrWoods, -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeGasStation,acts of hate and violence against people who are different at gas stations;incidents of bias and bigotry at gas stations;hate crimes in gas stations;gas station hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeGovernmentOrPublicBuilding,hate crimes in public buildings;crimes motivated by hate in public buildings;hate-based crimes in public buildings;public buildings as targets of hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeGroceryStoreOrSupermarket,hate crimes committed in grocery stores and supermarkets;acts of hate committed against people in grocery stores and supermarkets;incidents of hate in grocery stores and supermarkets;incidents of violence against people in grocery stores and supermarkets -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeHighwayOrRoadOrAlleyOrStreetOrSidewalk,"hate crimes committed on highways, roads, alleys, streets, or sidewalks;crimes motivated by hate that occur on highways, roads, alleys, streets, or sidewalks;criminal acts that are motivated by hate and take place on highways, roads, alleys, streets, or sidewalks;violent acts that are motivated by hate and happen on highways, roads, alleys, streets, or sidewalks" -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeLiquorStore,number of hate crimes at liquor stores;number of liquor store hate crimes;number of hate crimes reported at liquor stores;number of liquor store hate crimes reported -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeLodgingBusiness,crimes against lodging businesses motivated by hate;hate-motivated crimes against lodging businesses;lodging businesses targeted by hate crimes;hate crimes committed against lodging businesses -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeMedicalBusiness,medical hate crimes;hate crimes in the medical field;hate crimes against medical professionals;hate crimes against patients -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeMultipleCrimeLocations,hate crimes that take place in multiple locations;hate crimes that occur in more than one place;hate crimes that occur in multiple areas;hate crimes that happen in more than one place -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeParkOrPlayground,crimes motivated by hate in parks and playgrounds;hateful acts in parks and playgrounds;attacks on people in parks and playgrounds because of who they are;hate crimes in parks and playgrounds -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeParkingFacility,hate crimes committed in parking facilities;crimes motivated by hate that occur in parking facilities;incidents of hate-based violence in parking lots;crimes motivated by hate at parking facilities -Count_CriminalIncidents_IsHateCrime_LocationOfCrimePlaceOfWorship,hate crimes in places of worship;hate crimes committed in places of worship;crimes motivated by hate against a particular group that are committed in places of worship;incidents of violence or vandalism in places of worship that are motivated by hatred or prejudice -Count_CriminalIncidents_IsHateCrime_LocationOfCrimePrisons,hate crimes in prison;hate-based violence in prison;prison-based hate crimes;hate crimes against prisoners -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeResidence,number of hate crime incidents by residence;hate crime incidents by place of residence;number of hate crimes by residence -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeRestaurant,hate-motivated incidents in restaurants;incidents of hate crimes in restaurants -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeSchoolOrCollegeOrUniversity,"hate crimes in educational institutions;hate crimes in schools, colleges, and universities;hate crimes on school campuses;hate crimes in educational settings" -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeSelfStorage,hate-based crimes that take place in self storage units;incidents of hate in self storage;self storage units as a target of hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeShoppingCenter,hate crime at a shopping center;shopping center hate crime;hate crime committed at a shopping center;shopping center where a hate crime was committed -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeSingleCrimeLocation,crimes motivated by hate in a single location;hate-based crimes in a single place;one-location hate crimes;hate crimes in one place -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeSpecialtyStore,specialty store-based hate crimes -Count_CriminalIncidents_IsHateCrime_LocationOfCrimeUnclassifiedLocation,crimes motivated by hate in undisclosed areas;hate-based offenses in secret places;hateful acts in secret places;hate crimes in unrevealed places -Count_CriminalIncidents_IsHateCrime_OffenderEthnicityHispanicOrLatino,hate crimes committed by hispanic offenders -Count_CriminalIncidents_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,"hate crimes committed by non-hispanic offenders against known ethnicity offenders;hate crimes against known ethnicity offenders, committed by non-hispanic offenders;hate crimes against known ethnicity offenders, perpetrated by non-hispanic offenders;crimes motivated by hate against known ethnicity offenders committed by non-hispanic offenders" -Count_CriminalIncidents_IsHateCrime_OffenderEthnicityUnknownEthnicity,the number of hate crime incidents with an unknown ethnicity offender -Count_CriminalIncidents_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,hate crimes committed by american indian or alaska native offenders -Count_CriminalIncidents_IsHateCrime_OffenderRaceAsianAlone,anti-asian hate crimes;hate crimes against asians;hate crimes committed against asians;crimes motivated by hatred of asians -Count_CriminalIncidents_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,hate crimes against african american offenders;hate crimes committed against african american offenders;hate crimes that target african american offenders;hate crimes that are directed at african american offenders -Count_CriminalIncidents_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Count_CriminalIncidents_IsHateCrime_OffenderRaceUnknownRace,crimes against people of unknown race;hate crimes against people of unknown race;hate crimes against people whose race is not known;hate crimes against people whose race is not specified -Count_CriminalIncidents_IsHateCrime_OffenderRaceWhiteAlone, -Count_CriminalIncidents_IsHateCrime_VictimTypeBusiness,hate crimes that occur in the course of business;hate crimes that occur in the context of business -Count_CriminalIncidents_IsHateCrime_VictimTypeFinancialInstitution,number of hate crimes against financial institutions;number of hate crimes targeting financial institutions;number of hate crimes committed against financial institutions;number of hate crimes directed at financial institutions -Count_CriminalIncidents_IsHateCrime_VictimTypeGovernment,government-sponsored hate crimes;governmental hate crimes -Count_CriminalIncidents_IsHateCrime_VictimTypeOtherVictimType, -Count_CriminalIncidents_IsHateCrime_VictimTypePerson, -Count_CriminalIncidents_IsHateCrime_VictimTypeReligiousOrganization, -Count_CriminalIncidents_IsHateCrime_VictimTypeSociety, -Count_CriminalIncidents_IsHateCrime_VictimTypeUnknownVictimType, -Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime,hate crimes involving motor vehicle theft;hate crime involving motor vehicle theft;hate-motivated car theft -Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime,murder and non-negligent manslaughter committed because of hatred;murder or non-negligent manslaughter motivated by hate -Count_CriminalIncidents_NotSpecified_IsHateCrime, -Count_CriminalIncidents_Rape_IsHateCrime, -Count_CriminalIncidents_Robbery_IsHateCrime,robbery and hate crimes -Count_CriminalIncidents_Shoplifting_IsHateCrime,shoplifting motivated by hate -Count_CriminalIncidents_SimpleAssault_IsHateCrime, -Count_CriminalIncidents_TheftFromBuilding_IsHateCrime,hate crimes involving theft from buildings;theft from buildings motivated by hate;hate-motivated theft from buildings;theft from buildings as a hate crime -Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime,hate crimes that involve theft from motor vehicles;car theft as a hate crime -Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime,theft of motor vehicle parts or accessories;stealing car parts or accessories;crimes motivated by hatred that involve theft of motor vehicle parts or accessories;crimes motivated by prejudice that involve theft of motor vehicle parts or accessories -Count_CriminalIncidents_WeaponLawViolations_IsHateCrime,hate crimes involving weapons;weapon law violations with a hate motive;hate-motivated weapon law violations;weapon law violations with a hate-based motive -Count_CycloneEvent,how many cyclones are there?;what is the number of cyclones?;what is the total number of cyclones?;how many cyclones have occurred? -Count_CycloneEvent_ExtratropicalCyclone,number of extratropical cyclones;total number of extratropical cyclones;count of extratropical cyclones;number of extratropical cyclone events -Count_CycloneEvent_SubtropicalStorm,number of subtropical storms;subtropical storm count;subtropical storm occurrences;subtropical storm frequency -Count_CycloneEvent_TropicalDisturbance,the number of tropical disturbances;the total number of tropical disturbances;the count of tropical disturbances;the tally of tropical disturbances -Count_CycloneEvent_TropicalStorm,number of tropical storms;number of tropical cyclone events;number of tropical cyclones of tropical storm intensity -Count_Death,how many people died;the total number of deaths;the number of people who have died;the number of fatalities -Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,"the rate of deaths among infants under 1 year of age;the number of infant deaths per 1,000 live births;the percentage of infants who die before their first birthday;the likelihood of an infant dying before their first birthday" -Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,"female infant mortality rate;rate of female infant deaths;number of female infant deaths per 1,000 live births;female infant death rate" -Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,"male infant mortality rate;the rate of death among male infants;the number of male infants who die per 1,000 live births;the percentage of male infants who die before reaching one year of age" -Count_Death_85Years_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,deaths of women aged 85 years caused by blood and blood-forming organ diseases and certain immune system disorders;female deaths at age 85 from blood and blood-forming organ diseases and certain immune system disorders;women aged 85 who died from blood and blood-forming organ diseases and certain immune system disorders;deaths of women aged 85 due to blood and blood-forming organ diseases and certain immune system disorders -Count_Death_85Years_DiseasesOfTheNervousSystem_AsianOrPacificIslander,the number of deaths caused by nervous system diseases in the asian or pacific islander population aged 85 years;the number of deaths in the asian or pacific islander population aged 85 years caused by nervous system diseases;the number of deaths from nervous system diseases in the asian or pacific islander population aged 85 years;the number of deaths in the asian or pacific islander population aged 85 years from nervous system diseases -Count_Death_85Years_DiseasesOfTheSkinSubcutaneousTissue,skin diseases are a leading cause of death in people aged 85 and over;skin and subcutaneous tissue diseases are the most common cause of death in people aged 85 and over;people aged 85 and over are more likely to die from skin diseases than any other cause;skin diseases are a major cause of death in people aged 85 and over -Count_Death_85Years_MentalBehaviouralDisorders_AsianOrPacificIslander,number of deaths in the asian or pacific islander population aged 85 years caused by mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years due to mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years from mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years related to mental and behavioral disorders -Count_Death_AbnormalNotClassfied,"count of deaths due to symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths due to symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths from symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths caused by symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified" -Count_Death_AbnormalNotClassfied_BlackOrAfricanAmerican,underlying conditions that lead to death in african americans -Count_Death_AbnormalNotClassfied_Female,"female deaths due to unclassified symptoms, signs, and abnormal clinical and laboratory findings;female deaths from unclassified symptoms, signs, and abnormal clinical and laboratory findings;female deaths caused by unclassified symptoms, signs, and abnormal clinical and laboratory findings;female deaths from unclassified conditions" -Count_Death_AbnormalNotClassfied_Female_BlackOrAfricanAmerican,number of deaths of african american women;how many african american women have died;african american female mortality rate;african american female death toll -Count_Death_AbnormalNotClassfied_Female_White,"number of deaths from symptoms, signs, and abnormal clinical and laboratory findings, not elsewhere classified, female, white;number of deaths from r00-r99, female, white;number of deaths from r00-r99, white female;number of deaths from r00-r99, in females, white" -Count_Death_AbnormalNotClassfied_Male,"number of deaths from symptoms, signs, and abnormal clinical and laboratory findings, not elsewhere classified, male;number of deaths from r00-r99, male;number of deaths from r00-r99 in males;number of deaths due to symptoms, signs, and abnormal clinical and laboratory findings, not elsewhere classified, male" -Count_Death_AbnormalNotClassfied_Male_BlackOrAfricanAmerican,"deaths of african american males due to unclassified symptoms, signs, abnormal clinical and laboratory findings;deaths of african american males with unclassified symptoms, signs, abnormal clinical and laboratory findings;deaths in african american males with unclassified symptoms, signs, and abnormal clinical and laboratory findings;deaths in african american males due to unclassified symptoms, signs, abnormal clinical and laboratory findings" -Count_Death_AbnormalNotClassfied_Male_White,triggers of death in white males -Count_Death_AbnormalNotClassfied_White,"white people dying from unclassified symptoms, signs, abnormal clinical and laboratory findings;white people dying from undiagnosed causes;white people who died from unclassified symptoms, signs, abnormal clinical and laboratory findings;white people who died from undetermined causes" -Count_Death_AgeAdjusted_AsAFractionOf_Count_Person,"number of deaths per capita, age-adjusted;number of deaths per capita, adjusted for age;number of deaths per person, adjusted for age;count of deaths (age adjusted) (per capita)" -Count_Death_AmericanIndianAndAlaskaNativeAlone,number of deaths: american indian and alaska native alone;number of deaths for american indian and alaska native alone;number of deaths in american indian and alaska native alone;number of deaths among american indian and alaska native alone -Count_Death_AsAFractionOfCount_Person,"death rate;mortality rate;crude death rate;deaths per 1,000 people" -Count_Death_AsianOrPacificIslander,number of deaths: asian or pacific islander;number of asian or pacific islander deaths;number of deaths of asian or pacific islander people;number of asian or pacific islander people who died -Count_Death_BlackOrAfricanAmerican,number of deaths: black or african american;number of deaths among black or african americans;number of black or african american deaths;number of people who died who were black or african american -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod,mortality events in the perinatal period -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,perinatal deaths in african americans;deaths of african americans during pregnancy and childbirth;perinatal deaths among african americans;deaths of african american babies and mothers during pregnancy and childbirth -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Female,perinatal female mortality;female deaths during childbirth;deaths of women during pregnancy and childbirth;deaths of women due to pregnancy-related complications -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Female_BlackOrAfricanAmerican,perinatal deaths in african american women;deaths of african american women during pregnancy and childbirth;deaths of african american women from conditions that begin during pregnancy or childbirth;deaths of african american women from pregnancy-related conditions -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Female_White,white women dying from conditions that start during pregnancy or childbirth;white women dying from pregnancy-related complications;white women dying from perinatal conditions;white women dying from pregnancy-related deaths -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Male,perinatal deaths in males;male deaths caused by perinatal conditions;deaths of males due to perinatal conditions;perinatal deaths among males -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Male_BlackOrAfricanAmerican,perinatal deaths in african american males;deaths of african american males during or shortly after birth;african american male deaths due to conditions that occur during pregnancy or childbirth;deaths of african american males due to conditions that occur before or during birth -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Male_White,perinatal deaths in white males;deaths of white males in the perinatal period;perinatal mortality in white males;white male perinatal mortality -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_White,white deaths caused by perinatal conditions;perinatal deaths in the white population;deaths in the white population caused by perinatal conditions;white perinatal mortality -Count_Death_CertainInfectiousParasiticDiseases,"number of deaths associated with infectious and parasitic diseases;number of deaths from certain infectious and parasitic diseases a00-b99;number of deaths from certain infectious and parasitic diseases, a00-b99;the number of deaths from certain infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_AsianOrPacificIslander,number of deaths among asian or pacific islanders due to certain infectious and parasitic diseases;number of deaths in the asian or pacific islander population due to certain infectious and parasitic diseases;number of asian or pacific islanders who died from certain infectious and parasitic diseases;number of people in the asian or pacific islander population who died from certain infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_BlackOrAfricanAmerican,deaths of african americans caused by certain infectious and parasitic diseases;deaths of african americans from certain infectious and parasitic diseases;deaths of african americans due to certain infectious and parasitic diseases;deaths of african americans resulting from certain infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Female,female deaths caused by infectious and parasitic diseases;deaths of women from infectious and parasitic diseases;female mortality due to infectious and parasitic diseases;women dying from infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Female_BlackOrAfricanAmerican,the number of african american women who died from infectious and parasitic diseases;the number of deaths among african american women from infectious and parasitic diseases;the death rate of african american women from infectious and parasitic diseases;the percentage of african american women who died from infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Female_White,number of deaths in the white female population caused by certain infectious and parasitic diseases;number of white female deaths caused by certain infectious and parasitic diseases;number of white females who died from certain infectious and parasitic diseases;number of white female deaths from certain infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Male,male deaths from infectious and parasitic diseases;male mortality from infectious and parasitic diseases;male deaths caused by infectious and parasitic diseases;male deaths due to infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Male_BlackOrAfricanAmerican,the number of deaths of african american males caused by certain infectious and parasitic diseases;the rate of death among african american males from certain infectious and parasitic diseases;the percentage of african american males who die from certain infectious and parasitic diseases;the number of african american males who die each year from certain infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_Male_White,white males dying from infectious and parasitic diseases;infectious and parasitic diseases that kill white males;white males who have died from infectious and parasitic diseases;the number of white males who have died from infectious and parasitic diseases -Count_Death_CertainInfectiousParasiticDiseases_White,white people dying from infectious and parasitic diseases;whites dying from infectious and parasitic diseases;whites dying from infectious diseases;whites dying from parasitic diseases -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"the number of deaths in the african american population caused by congenital malformations, deformations, and chromosomal abnormalities;the number of african americans who died from congenital malformations, deformations, and chromosomal abnormalities;the death rate of african americans from congenital malformations, deformations, and chromosomal abnormalities;the percentage of african americans who died from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"deaths of women caused by congenital malformations, deformations, and chromosomal abnormalities;deaths of females due to congenital malformations;deaths of females due to congenital malformations, deformations, and chromosomal abnormalities;deaths of female populations caused by chromosomal disorders" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female_White,"white women who died from congenital malformations, deformations, and chromosomal abnormalities;white women who died from birth defects;white women who died from chromosomal abnormalities;white women who died from birth defects and genetic disorders" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"deaths of men caused by birth defects, deformities, and chromosomal abnormalities;deaths of males caused by congenital malformations, deformations, and chromosomal abnormalities;deaths of males due to birth defects, deformities, and chromosomal abnormalities;deaths of males from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male_White,"the number of white males who died from congenital malformations, deformations, and chromosomal abnormalities;the number of white males who died from chromosomal abnormalities;the number of white males who died from congenital anomalies;number of deaths of white males caused by congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"deaths caused by congenital malformations, deformations, and chromosomal abnormalities in the white population;white people who died from congenital malformations, deformations, and chromosomal abnormalities;whites dying from congenital malformations, deformations, and chromosomal abnormalities;the number of white people who died due to congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders,what is the mortality rate for diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism?;mortality rate from blood and blood-forming organ diseases and certain immune system disorders -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_BlackOrAfricanAmerican,the number of deaths caused by blood diseases and immune system disorders in african americans;the number of deaths caused by blood diseases and immune system disorders among african americans;the number of african americans who died from blood diseases and immune system disorders;the number of african americans who died from blood diseases and immune system disorders in the united states -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,how many females in the us died from blood and blood-forming organ diseases and certain immune system disorders;how many female deaths in the us were caused by blood and blood-forming organ diseases and certain immune system disorders;what was the death toll of females in the us from blood and blood-forming organ diseases and certain immune system disorders;how many females in the us died of blood and blood-forming organ diseases and certain immune system disorders -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female_BlackOrAfricanAmerican,the number of african american women who died from blood and blood-forming organ diseases and certain immune system disorders;how many african american women died from blood and blood-forming organ diseases and certain immune system disorders;the death toll of african american women from blood and blood-forming organ diseases and certain immune system disorders;the number of african american women who lost their lives to blood and blood-forming organ diseases and certain immune system disorders -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female_White,white female deaths caused by blood disorders;white female deaths caused by immune system disorders;white female deaths caused by blood and blood-forming organ diseases;white female deaths caused by immune system diseases -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male,death rate of males due to blood diseases and immune disorders;male mortality from blood and immune disorders;number of male deaths from blood and immune disorders;male deaths caused by blood and immune disorders -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male_White,"white males dying from blood diseases, blood-forming organ diseases, and certain immune system disorders;white males dying from blood-related diseases;white males dying from blood-forming organ diseases;white males dying from immune system disorders" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_White,causes of death in the white population due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;deaths in the white population due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;white population deaths due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;deaths of white people due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism -Count_Death_DiseasesOfTheCirculatorySystem,how many people die from circulatory system diseases?;what is the death rate from circulatory system diseases?;what is the number of deaths caused by circulatory system diseases?;how many people die each year from circulatory system diseases? -Count_Death_DiseasesOfTheCirculatorySystem_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native deaths due to circulatory system diseases;deaths of american indians and alaska natives from circulatory system diseases;circulatory system diseases as a cause of death in american indians and alaska natives;the number of deaths in american indians and alaska natives caused by circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_AsianOrPacificIslander,the number of deaths of asian or pacific islanders caused by circulatory system diseases;the number of asian or pacific islanders who died from circulatory system diseases;the number of deaths from circulatory system diseases among asian or pacific islanders;the number of asian or pacific islanders who died of circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_BlackOrAfricanAmerican,african americans are more likely to die from circulatory system diseases than other racial groups;african americans have a higher death rate from circulatory system diseases than other racial groups;circulatory system diseases are a leading cause of death among african americans;african americans are disproportionately affected by circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_Female,"women who die from circulatory system diseases;the number of women who die from circulatory system diseases;women who die from heart disease, stroke, and other circulatory system diseases;women who die from cardiovascular disease" -Count_Death_DiseasesOfTheCirculatorySystem_Female_AmericanIndianAndAlaskaNativeAlone,number of american indian and alaska native women who died from circulatory system diseases;number of deaths from circulatory system diseases among american indian and alaska native women;american indian and alaska native women who died of circulatory system diseases;deaths from circulatory system diseases in american indian and alaska native women -Count_Death_DiseasesOfTheCirculatorySystem_Female_AsianOrPacificIslander,the number of deaths of asian or pacific islander females caused by circulatory system diseases;the number of deaths of asian or pacific islander women caused by circulatory system diseases;the number of asian or pacific islander females who died from circulatory system diseases;the number of asian or pacific islander women who died from circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_Female_BlackOrAfricanAmerican,african american women die from circulatory system diseases more than any other group;african american women are more likely to die from circulatory system diseases than white women;the death rate from circulatory system diseases is higher for african american women than for white women;african american women are at an increased risk of death from circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_Female_White,white women who died from circulatory system diseases;white women who died of circulatory system diseases;white women who died because of circulatory system diseases;white women who died due to circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_Male,deaths in males caused by circulatory system diseases;circulatory system diseases as a cause of death in males;the number of males who died from circulatory system diseases;the percentage of male deaths caused by circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_Male_AmericanIndianAndAlaskaNativeAlone,"the number of american indian and alaska native males who died from diseases of the circulatory system;the number of deaths from diseases of the circulatory system among american indian and alaska native males;the number of american indian and alaska native males who died from heart disease, stroke, and other diseases of the circulatory system;the number of deaths from heart disease, stroke, and other diseases of the circulatory system among american indian and alaska native males" -Count_Death_DiseasesOfTheCirculatorySystem_Male_AsianOrPacificIslander,"number of asian or pacific islander males who died from circulatory system diseases;deaths of asian or pacific islander males due to circulatory system diseases;asian or pacific islander males who died of circulatory system diseases;number of asian or pacific islander males who died from heart disease, stroke, and other circulatory system diseases" -Count_Death_DiseasesOfTheCirculatorySystem_Male_BlackOrAfricanAmerican,the number of african american men who die from circulatory diseases is too high;african american men are more likely to die from circulatory diseases than other groups of people;circulatory diseases are a major cause of death for african american men;we need to do more to prevent circulatory diseases in african american men -Count_Death_DiseasesOfTheCirculatorySystem_Male_White,the number of white males who died from circulatory system diseases;the number of white males who died from cardiovascular diseases;the number of white males who died from other circulatory system diseases;white males die from circulatory system diseases -Count_Death_DiseasesOfTheCirculatorySystem_White,white people who died from circulatory diseases;white people who died from heart disease and stroke;white people who died from cardiovascular disease;white people who died from blood vessel disease -Count_Death_DiseasesOfTheDigestiveSystem,number of deaths from digestive diseases;number of deaths from diseases of the gastrointestinal tract;number of deaths from gastrointestinal diseases -Count_Death_DiseasesOfTheDigestiveSystem_AmericanIndianAndAlaskaNativeAlone,the number of american indian and alaska native people who died from digestive diseases;the number of american indian and alaska native people who died from digestive-related causes;the number of deaths among american indian and alaska native people caused by digestive diseases;the number of deaths among american indian and alaska native people caused by digestive-related causes -Count_Death_DiseasesOfTheDigestiveSystem_AsianOrPacificIslander,how many asian or pacific islanders died from digestive system diseases;what is the number of asian or pacific islanders who died from digestive system diseases;what is the death rate from digestive system diseases among asian or pacific islanders;how many asian or pacific islanders died from digestive system diseases each year -Count_Death_DiseasesOfTheDigestiveSystem_BlackOrAfricanAmerican, -Count_Death_DiseasesOfTheDigestiveSystem_Female,females dying from digestive system diseases;female mortality rates due to digestive system diseases;digestive system diseases as a cause of death in women;the number of females who die from digestive system diseases -Count_Death_DiseasesOfTheDigestiveSystem_Female_BlackOrAfricanAmerican,number of deaths of african american females caused by digestive system diseases;number of african american females who died from digestive system diseases;number of african american females who died due to digestive system diseases;number of african american females who died from digestive system illnesses -Count_Death_DiseasesOfTheDigestiveSystem_Female_White,number of white females who died from digestive diseases;white female deaths from digestive diseases;digestive diseases that caused the deaths of white females;white females who died from digestive system diseases -Count_Death_DiseasesOfTheDigestiveSystem_Male,deaths in men caused by digestive system diseases;number of men who died from digestive system diseases;male mortality rate from digestive system diseases;digestive system diseases as a cause of death in men -Count_Death_DiseasesOfTheDigestiveSystem_Male_BlackOrAfricanAmerican,african american males die from digestive system diseases more often than other groups;african american males are more likely to die from digestive system diseases than other groups;digestive system diseases are a leading cause of death for african american males;african american males are at an increased risk of death from digestive system diseases -Count_Death_DiseasesOfTheDigestiveSystem_Male_White,the number of white males who died from digestive diseases;the number of white males who died from diseases of the digestive system;the number of white males who died from gastrointestinal diseases;the number of white males who died from gastrointestinal disorders -Count_Death_DiseasesOfTheDigestiveSystem_White,1 white people who died from digestive system diseases;2 white people who died because of digestive system diseases;3 white people who died due to digestive system diseases;4 white people who died from digestive system illnesses -Count_Death_DiseasesOfTheGenitourinarySystem,number of deaths from genitourinary diseases -Count_Death_DiseasesOfTheGenitourinarySystem_AsianOrPacificIslander,deaths of asians or pacific islanders caused by diseases of the genitourinary system;number of deaths of asians or pacific islanders caused by diseases of the genitourinary system;number of asians or pacific islanders who died from diseases of the genitourinary system;number of asians or pacific islanders who died from genitourinary diseases -Count_Death_DiseasesOfTheGenitourinarySystem_BlackOrAfricanAmerican,african americans dying from genitourinary diseases;genitourinary diseases killing african americans;genitourinary diseases taking the lives of african americans;genitourinary diseases claiming the lives of african americans -Count_Death_DiseasesOfTheGenitourinarySystem_Female,female deaths caused by genitourinary diseases;genitourinary diseases that cause female deaths;deaths of females from genitourinary diseases;genitourinary diseases that kill females -Count_Death_DiseasesOfTheGenitourinarySystem_Female_BlackOrAfricanAmerican,african american women dying from diseases of the genitourinary system;african american women dying from genitourinary system diseases;african american women dying from diseases of the urinary tract and reproductive system;african american women dying from urinary tract and reproductive system diseases -Count_Death_DiseasesOfTheGenitourinarySystem_Female_White,number of deaths in the white female population caused by genitourinary system diseases;how many white women die from genitourinary system diseases?;what is the death rate from genitourinary system diseases in white women?;what is the percentage of white women who die from genitourinary system diseases? -Count_Death_DiseasesOfTheGenitourinarySystem_Male,genitourinary system diseases that cause death in males;deaths from genitourinary system diseases in males;genitourinary system diseases that lead to death in males;genitourinary system diseases that are fatal to males -Count_Death_DiseasesOfTheGenitourinarySystem_Male_BlackOrAfricanAmerican,african american men are dying from genitourinary diseases at an alarming rate;genitourinary diseases are a leading cause of death among african american men;there is a need for more research into genitourinary diseases in african american men;genitourinary diseases that cause death in the african american male population -Count_Death_DiseasesOfTheGenitourinarySystem_Male_White,genitourinary system diseases that cause deaths in white males;white males who die from genitourinary system diseases;genitourinary system diseases that kill white males;genitourinary system diseases that are fatal to white males -Count_Death_DiseasesOfTheGenitourinarySystem_White,number of deaths of white people caused by genitourinary diseases;white population death rate due to genitourinary diseases;genitourinary diseases as a cause of death in the white population;white population mortality from genitourinary diseases -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue,"number of deaths due to diseases of the musculoskeletal system and connective tissue;number of deaths from diseases of the bones, muscles, and joints;number of deaths from diseases of the skeletal system;number of deaths from diseases of the connective tissue" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_BlackOrAfricanAmerican,deaths of african americans caused by musculoskeletal system and connective tissue diseases;african americans who died from musculoskeletal system and connective tissue diseases;african americans who died from diseases of the musculoskeletal system and connective tissue;african americans who died from musculoskeletal system and connective tissue disorders -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female,deaths of women caused by diseases of the musculoskeletal system and connective tissue;women who died from diseases of the musculoskeletal system and connective tissue;female deaths from diseases of the musculoskeletal system and connective tissue;women who died of diseases of the musculoskeletal system and connective tissue -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female_BlackOrAfricanAmerican,number of deaths in the african american female population caused by diseases of the musculoskeletal system and connective tissue;number of african american females who died from diseases of the musculoskeletal system and connective tissue;death rate of african american females from diseases of the musculoskeletal system and connective tissue;percentage of african american females who died from diseases of the musculoskeletal system and connective tissue -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female_White,"the number of deaths in the white female population caused by musculoskeletal system and connective tissue diseases;the number of deaths in the white female population caused by diseases of the musculoskeletal system and connective tissue;the number of deaths in the white female population caused by diseases of the bones, muscles, and joints;the number of deaths in the white female population caused by diseases of the bones, muscles, and ligaments" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male,male deaths caused by musculoskeletal and connective tissue diseases;deaths in males due to musculoskeletal and connective tissue diseases;deaths of males from musculoskeletal and connective tissue diseases;deaths caused by musculoskeletal and connective tissue diseases in males -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male_White,"a man's death caused by diseases of the bones, muscles, and connective tissues;a man died from diseases of the bones, muscles, and connective tissues;a man passed away from diseases of the bones, muscles, and connective tissues;a man succumbed to diseases of the bones, muscles, and connective tissues" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_White,deaths of white people caused by musculoskeletal and connective tissue diseases;white people who died from musculoskeletal and connective tissue diseases;white people who died from diseases of the musculoskeletal system and connective tissue;white people who died from musculoskeletal diseases and connective tissue diseases -Count_Death_DiseasesOfTheNervousSystem,number of deaths caused by nervous system diseases;number of deaths from nervous system diseases;number of deaths attributed to nervous system diseases;number of deaths resulting from nervous system diseases -Count_Death_DiseasesOfTheNervousSystem_AsianOrPacificIslander,the number of deaths of asian or pacific islanders caused by diseases of the nervous system;the number of asian or pacific islanders who died from diseases of the nervous system;the number of asian or pacific islanders who died from diseases of the brain and spinal cord;the number of asian or pacific islanders who died from neurological disorders -Count_Death_DiseasesOfTheNervousSystem_BlackOrAfricanAmerican,african americans are more likely to die from diseases of the nervous system;african americans have a higher risk of death from diseases of the nervous system;diseases of the nervous system are a leading cause of death for african americans;african americans are disproportionately affected by diseases of the nervous system -Count_Death_DiseasesOfTheNervousSystem_Female,deaths of women due to nervous system diseases;female deaths caused by neurological disorders;women who die from nervous system diseases;female mortality from neurological disorders -Count_Death_DiseasesOfTheNervousSystem_Female_AsianOrPacificIslander,number of asian or pacific islander female deaths from diseases of the nervous system;number of asian or pacific islander women who died from diseases of the nervous system;number of asian or pacific islander females who died from nervous system diseases;number of asian or pacific islander females who died from neurological diseases -Count_Death_DiseasesOfTheNervousSystem_Female_BlackOrAfricanAmerican, -Count_Death_DiseasesOfTheNervousSystem_Female_White,how many white women died from nervous system diseases?;what is the number of white women who died from nervous system diseases?;what is the death rate for white women from nervous system diseases?;what is the percentage of white women who died from nervous system diseases? -Count_Death_DiseasesOfTheNervousSystem_Male,males dying from nervous system diseases;the number of male deaths caused by nervous system diseases;male deaths from nervous system diseases;nervous system diseases as a cause of death in males -Count_Death_DiseasesOfTheNervousSystem_Male_AsianOrPacificIslander,causes of death in asian or pacific islander males from nervous system diseases;how do asian or pacific islander males die from nervous system diseases;what are the causes of death in asian or pacific islander males from nervous system diseases;what are the leading causes of death in asian or pacific islander males from nervous system diseases -Count_Death_DiseasesOfTheNervousSystem_Male_BlackOrAfricanAmerican,african american men are more likely to die from nervous system diseases than other groups;african american men are disproportionately affected by nervous system diseases;african american men are at an increased risk of dying from nervous system diseases;nervous system diseases are a serious health issue for african american men -Count_Death_DiseasesOfTheNervousSystem_Male_White,the number of white men who died from nervous system diseases;the number of white males who died from diseases of the nervous system;the number of white males who died from diseases of the brain and spinal cord;the number of white males who died from neurological disorders -Count_Death_DiseasesOfTheNervousSystem_White, -Count_Death_DiseasesOfTheRespiratorySystem,number of deaths caused by respiratory diseases;number of deaths from respiratory diseases;number of deaths attributed to respiratory diseases;number of deaths related to respiratory diseases -Count_Death_DiseasesOfTheRespiratorySystem_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native deaths caused by respiratory diseases;respiratory disease deaths among american indians and alaska natives;the number of american indians and alaska natives who died from respiratory diseases;the rate of respiratory disease deaths among american indians and alaska natives -Count_Death_DiseasesOfTheRespiratorySystem_AsianOrPacificIslander,deaths of asian or pacific islanders from respiratory diseases;number of deaths of asian or pacific islanders from respiratory diseases;asian or pacific islander deaths from respiratory diseases;respiratory disease deaths of asian or pacific islanders -Count_Death_DiseasesOfTheRespiratorySystem_BlackOrAfricanAmerican,african americans are more likely to die from respiratory diseases;african americans are disproportionately affected by respiratory diseases;respiratory diseases are a leading cause of death among african americans;african americans are at higher risk for respiratory diseases -Count_Death_DiseasesOfTheRespiratorySystem_Female,1 female deaths caused by respiratory system diseases;2 deaths of women caused by respiratory system diseases;3 female mortality due to respiratory system diseases;4 women dying from respiratory system diseases -Count_Death_DiseasesOfTheRespiratorySystem_Female_AsianOrPacificIslander,asian women dying from respiratory diseases;asian females dying from respiratory illnesses;asian women dying from respiratory problems;asian females dying from respiratory issues -Count_Death_DiseasesOfTheRespiratorySystem_Female_BlackOrAfricanAmerican,african american women dying from respiratory diseases;african american women's deaths from respiratory diseases;respiratory diseases killing african american women;respiratory diseases taking the lives of african american women -Count_Death_DiseasesOfTheRespiratorySystem_Female_White,number of white female deaths caused by respiratory diseases;white female mortality rate from respiratory diseases;number of white females who died from respiratory diseases;white female death toll from respiratory diseases -Count_Death_DiseasesOfTheRespiratorySystem_Male,male respiratory disease deaths;respiratory disease deaths in males;deaths from respiratory diseases in males;respiratory disease-related deaths in males -Count_Death_DiseasesOfTheRespiratorySystem_Male_AsianOrPacificIslander,the number of deaths of asian or pacific islander males caused by respiratory diseases;the death rate of asian or pacific islander males from respiratory diseases;the percentage of asian or pacific islander males who die from respiratory diseases;the proportion of asian or pacific islander males who die from respiratory diseases -Count_Death_DiseasesOfTheRespiratorySystem_Male_BlackOrAfricanAmerican,african american men die more often from respiratory diseases than other groups;respiratory diseases are a leading cause of death for african american men;african american men are more likely to die from respiratory diseases than other groups;respiratory diseases are a major health concern for african american men -Count_Death_DiseasesOfTheRespiratorySystem_Male_White,white men are dying from respiratory diseases;white men are dying at an alarming rate from respiratory diseases;the number of white men dying from respiratory diseases is on the rise;respiratory diseases are a major cause of death among white men -Count_Death_DiseasesOfTheRespiratorySystem_White,the number of white people who died from respiratory diseases;the number of white people who died from diseases of the respiratory system;the number of white people who died from respiratory system diseases;the number of white people who died from respiratory system illnesses -Count_Death_DiseasesOfTheSkinSubcutaneousTissue,"number of deaths from diseases of the skin and subcutaneous tissue, l00-l98" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female,female deaths caused by skin and subcutaneous tissue diseases;female deaths from skin and subcutaneous tissue diseases;female deaths due to skin and subcutaneous tissue diseases;female deaths as a result of skin and subcutaneous tissue diseases -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female_White,white female deaths due to skin and subcutaneous tissue diseases;white female mortality from skin and subcutaneous tissue diseases;white female deaths from skin diseases;white female deaths from subcutaneous tissue diseases -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Male,male deaths caused by skin and subcutaneous tissue diseases;male deaths from skin and subcutaneous tissue diseases;deaths in males due to skin and subcutaneous tissue diseases;deaths in males because of skin and subcutaneous tissue diseases -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_White,deaths of white people due to skin and subcutaneous tissue diseases;white people who died from skin and subcutaneous tissue diseases;number of white people who died from skin and subcutaneous tissue diseases;white people who died from diseases of the skin and subcutaneous tissue -Count_Death_EndocrineNutritionalMetabolicDiseases, -Count_Death_EndocrineNutritionalMetabolicDiseases_AmericanIndianAndAlaskaNativeAlone,"american indian and alaska native deaths caused by endocrine, nutritional, and metabolic diseases;deaths of american indians and alaska natives from endocrine, nutritional, and metabolic diseases;american indian and alaska native mortality from endocrine, nutritional, and metabolic diseases;deaths of american indians and alaska natives due to endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_AsianOrPacificIslander,"asian or pacific islander deaths caused by endocrine, nutritional, and metabolic diseases;deaths of asian or pacific islanders due to endocrine, nutritional, and metabolic diseases;number of deaths of asian or pacific islanders caused by endocrine, nutritional, and metabolic diseases;number of asian or pacific islanders who died from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_BlackOrAfricanAmerican,"deaths of african americans caused by endocrine, nutritional, and metabolic diseases;african americans die from endocrine, nutritional, and metabolic diseases;endocrine, nutritional, and metabolic diseases kill african americans;african americans are more likely to die from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Female,"deaths of women caused by endocrine, nutritional, and metabolic diseases;female deaths caused by endocrine, nutritional, and metabolic diseases;women dying of endocrine, nutritional, and metabolic diseases;deaths of females due to endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Female_AsianOrPacificIslander,"asian or pacific islander women dying from endocrine, nutritional, and metabolic diseases;asian or pacific islander women dying from diseases of the endocrine system, nutrition, and metabolism;asian or pacific islander women dying from endocrine, nutritional, and metabolic disorders;asian or pacific islander women dying from endocrine, nutritional, and metabolic conditions" -Count_Death_EndocrineNutritionalMetabolicDiseases_Female_BlackOrAfricanAmerican,"african american women are more likely to die from endocrine, nutritional, and metabolic diseases;african american women are disproportionately affected by endocrine, nutritional, and metabolic diseases;endocrine, nutritional, and metabolic diseases are a leading cause of death among african american women;african american women are at an increased risk of dying from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Female_White,"deaths caused by endocrine, nutritional, and metabolic diseases in the white female population;deaths of white women from endocrine, nutritional, and metabolic diseases;the number of white women who died from endocrine, nutritional, and metabolic diseases;the number of deaths in the white female population caused by endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Male,"male deaths caused by endocrine, nutritional, and metabolic diseases;deaths of men due to endocrine, nutritional, and metabolic diseases;male mortality from endocrine, nutritional, and metabolic diseases;deaths in the male population from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Male_AsianOrPacificIslander,"the number of asian or pacific islander males who died from endocrine, nutritional, and metabolic diseases;the death toll of asian or pacific islander males from endocrine, nutritional, and metabolic diseases;the number of asian or pacific islander males who perished from endocrine, nutritional, and metabolic diseases;the number of asian or pacific islander males who passed away from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Male_BlackOrAfricanAmerican,"african american men are dying from endocrine, nutritional, and metabolic diseases;african american men are dying from diseases related to their hormones, diet, and metabolism;african american men are dying from diseases that affect their glands, food intake, and how their bodies process food;african american men are dying from diseases that affect their hormones, nutrition, and metabolism" -Count_Death_EndocrineNutritionalMetabolicDiseases_Male_White, -Count_Death_EndocrineNutritionalMetabolicDiseases_White,"the death rate of the white population is caused by endocrine, nutritional, and metabolic diseases;the white population is dying from endocrine, nutritional, and metabolic diseases;the white population is experiencing a high mortality rate due to endocrine, nutritional, and metabolic diseases;the white population is suffering from a high number of deaths caused by endocrine, nutritional, and metabolic diseases" -Count_Death_ExternalCauses,number of deaths caused by external factors;number of deaths caused by external events;number of deaths caused by non-disease factors;number of deaths caused by non-natural causes -Count_Death_ExternalCauses_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native deaths caused by external causes of morbidity and mortality;deaths of american indian and alaska native people from external causes of morbidity and mortality;american indian and alaska native people who died from external causes of morbidity and mortality;deaths of american indian and alaska native people due to external causes of morbidity and mortality -Count_Death_ExternalCauses_AsianOrPacificIslander,"number of asian or pacific islander deaths from external causes;number of asian or pacific islander deaths from accidents, suicides, and homicides;number of asian or pacific islander deaths from preventable causes;mortality rate of asian or pacific islanders due to external causes" -Count_Death_ExternalCauses_BlackOrAfricanAmerican,african americans' deaths caused by external causes of morbidity and mortality;african americans' deaths from external causes;african americans' deaths caused by external factors;african americans' deaths from external factors -Count_Death_ExternalCauses_Female,"deaths of women caused by external factors;female deaths from external causes;deaths of women from accidents, violence, and other external causes;deaths of women from causes outside the body" -Count_Death_ExternalCauses_Female_AsianOrPacificIslander,"number of deaths from external causes of morbidity and mortality, female, asian or pacific islander" -Count_Death_ExternalCauses_Female_BlackOrAfricanAmerican,deaths of african american women from external causes of morbidity and mortality;deaths of african american women from external causes;deaths of african american women from external causes of death;deaths of african american women from external causes of disease and death -Count_Death_ExternalCauses_Female_White,count of deaths in females of caucasian ethnicity due to external causes of morbidity and mortality -Count_Death_ExternalCauses_Male,male deaths caused by external causes;deaths in males caused by external factors;male mortality from external causes;male deaths from external factors -Count_Death_ExternalCauses_Male_AmericanIndianAndAlaskaNativeAlone,"the number of american indian and alaska native men who died due to external causes of morbidity and mortality;the number of american indian and alaska native men who died from accidents, suicides, homicides, and other external causes;the number of american indian and alaska native men who died from causes outside of their bodies;the number of american indian and alaska native men who died from causes that were not diseases" -Count_Death_ExternalCauses_Male_AsianOrPacificIslander,mortality rates among asian or pacific islander males due to external causes;number of deaths among asian or pacific islander males caused by external causes;number of asian or pacific islander males who died from external causes of morbidity and mortality;the number of deaths among asian or pacific islander males caused by external causes of morbidity and mortality -Count_Death_ExternalCauses_Male_BlackOrAfricanAmerican,"african american men die more often from external causes than any other group in the united states;african american men are more likely to die from accidents, homicides, and suicides than any other group in the united states;african american men are more likely to die from preventable causes than any other group in the united states;we need to address the root causes of the high death rate among african american men" -Count_Death_ExternalCauses_Male_White,mortality of white males due to external causes;white males dying from external causes;white males dying from external factors;white males dying from external conditions -Count_Death_ExternalCauses_White,mortality rates among the white population due to external causes;number of white deaths caused by external causes;white population mortality rates from external causes;number of white people who died from external causes -Count_Death_Female,number of female deaths;number of female casualties;number of female mortality events;number of deaths: female -Count_Death_Female_AgeAdjusted_AsAFractionOf_Count_Person_Female,"the female mortality rate, age-adjusted" -Count_Death_Female_AmericanIndianAndAlaskaNativeAlone,the number of deaths of american indian and alaska native women;the mortality rate of american indian and alaska native women;the number of american indian and alaska native women who have died;the number of american indian and alaska native women who have passed away -Count_Death_Female_AsAFractionOf_Count_Person_Female,female mortality as a percentage of the female population;female mortality as a fraction of the female population;female mortality as a proportion of the female population;fraction of female deaths -Count_Death_Female_AsianOrPacificIslander,number of deaths among asian or pacific islander women;number of asian or pacific islander women who have died;number of asian or pacific islander female deaths;number of asian or pacific islander female fatalities -Count_Death_Female_BlackOrAfricanAmerican, -Count_Death_Female_White,white female mortality rate;death rate for white females;white female death toll;white female death count -Count_Death_IntentionalSelfHarm_AsFractionOf_Count_Person,"number of people who died from self-inflicted injuries per 100,000 people;number of deaths from intentional self-harm per capita;number of people who died from intentional self-harm per 100,000 people;number of deaths by intentional self-harm per capita" -Count_Death_IntentionalSelfHarm_Female_AsFractionOf_Count_Person_Female,female deaths caused by self-harm;female suicides;self-harm deaths among women;suicides among women -Count_Death_IntentionalSelfHarm_Male_AsFractionOf_Count_Person_Male, -Count_Death_LessThan1Year_AsAFractionOf_Count_BirthEvent, -Count_Death_LessThan1Year_Female_AsAFractionOf_Count_BirthEvent_Female,female mortality aged 1 year or less;number of female deaths in the first year of life;number of female deaths aged 1 year or less;number of deaths of girls aged 1 year or less -Count_Death_LessThan1Year_Male_AsAFractionOf_Count_BirthEvent_Male, -Count_Death_Male,number of male deaths;male mortality;number of deaths: male;male death -Count_Death_Male_AgeAdjusted_AsAFractionOf_Count_Person_Male,"1 the fraction of male deaths to male population, age-adjusted;2 the proportion of male deaths to male population, age-adjusted;5 the male mortality rate, age-adjusted" -Count_Death_Male_AmericanIndianAndAlaskaNativeAlone,the number of deaths in the american indian and alaska native male population;the number of american indian and alaska native males who have died;the death rate of american indian and alaska native males;the number of american indian and alaska native males who have passed away -Count_Death_Male_AsAFractionOf_Count_Person_Male,proportion of males who died;fraction of male deaths;male mortality fraction;male death fraction -Count_Death_Male_AsianOrPacificIslander,deaths of asian or pacific islander males;asian or pacific islander male mortality;the number of deaths of asian or pacific islander males;the death rate of asian or pacific islander males -Count_Death_Male_BlackOrAfricanAmerican,african american male mortality;deaths among african american males;african american male death rate;number of african american males who die -Count_Death_Male_White, -Count_Death_MentalBehaviouralDisorders,number of deaths from behavioral health conditions -Count_Death_MentalBehaviouralDisorders_AsianOrPacificIslander,mental health deaths in the asian or pacific islander population;the number of deaths caused by mental health disorders in the asian or pacific islander population;how many people in the asian or pacific islander population died from mental health disorders;the number of asian or pacific islander people who died from mental health disorders -Count_Death_MentalBehaviouralDisorders_BlackOrAfricanAmerican,mental health issues among african americans;african americans and mental illness;the prevalence of mental illness in the african american community;african americans and mental health disorders -Count_Death_MentalBehaviouralDisorders_Female,female deaths caused by mental and behavioral disorders;female deaths due to mental health problems;female deaths from mental illness;female deaths related to mental health -Count_Death_MentalBehaviouralDisorders_Female_BlackOrAfricanAmerican,mental and behavioral disorders are a leading cause of death among african american women;african american women are more likely to die from mental and behavioral disorders than other groups;mental and behavioral disorders are a serious public health issue that disproportionately affects african american women;african american women need access to quality mental health care to prevent premature death -Count_Death_MentalBehaviouralDisorders_Female_White,white women's deaths caused by mental and behavioral disorders;white women's deaths from mental and behavioral disorders;white women's deaths due to mental and behavioral disorders;white women's deaths related to mental and behavioral disorders -Count_Death_MentalBehaviouralDisorders_Male,male deaths caused by mental and behavioral disorders;deaths of men due to mental and behavioral disorders;men dying from mental and behavioral disorders;deaths in the male population caused by mental and behavioral disorders -Count_Death_MentalBehaviouralDisorders_Male_BlackOrAfricanAmerican,mental and behavioral disorders as a cause of death in african american males;african american males who died from mental and behavioral disorders;mental and behavioral disorders as a factor in the deaths of african american males;african american males who died due to mental and behavioral disorders -Count_Death_MentalBehaviouralDisorders_Male_White,mental and behavioral disorders leading to death in white males;white males dying from mental and behavioral disorders;mental and behavioral disorders as a cause of death in white males;white males dying of mental and behavioral disorders -Count_Death_MentalBehaviouralDisorders_White,death rate of white people due to mental and behavioral disorders;number of white people who die from mental and behavioral disorders;percentage of white people who die from mental and behavioral disorders;risk of death from mental and behavioral disorders for white people -Count_Death_Neoplasms,how many people die from tumors or abnormal growths?;what is the death rate from neoplasms?;how many people die from cancer?;what is the number of deaths caused by neoplasms? -Count_Death_Neoplasms_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native deaths caused by neoplasms;american indian and alaska native mortality from neoplasms;american indian and alaska native neoplasm-related deaths;neoplasm-related deaths among american indians and alaska natives -Count_Death_Neoplasms_AsianOrPacificIslander,the number of asian or pacific islander people who died due to neoplasms;the number of deaths caused by neoplasms in the asian or pacific islander population;the number of asian or pacific islander people who died from neoplasms;the number of deaths in the asian or pacific islander population caused by neoplasms -Count_Death_Neoplasms_BlackOrAfricanAmerican,deaths from neoplasms among african americans;neoplasm-related deaths in african americans;african americans who died from neoplasms;the number of african americans who died from neoplasms -Count_Death_Neoplasms_Female,women dying from cancer;female cancer deaths;cancer deaths in women;women who died from cancer -Count_Death_Neoplasms_Female_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native female population deaths from neoplasm;american indian and alaska native female population neoplasm deaths;american indian and alaska native female population deaths due to neoplasm;american indian and alaska native female population neoplasm-related deaths -Count_Death_Neoplasms_Female_AsianOrPacificIslander,death rate from neoplasms in asian or pacific islander females;number of deaths from neoplasms in asian or pacific islander females;percentage of deaths from neoplasms in asian or pacific islander females;asian or pacific islander female deaths from neoplasms -Count_Death_Neoplasms_Female_BlackOrAfricanAmerican,number of african american women who died from neoplasms;african american female neoplasm deaths;neoplasm deaths in african american women;deaths from neoplasms in african american women -Count_Death_Neoplasms_Female_White,white women who died from neoplasms;white female deaths caused by neoplasms;the number of white women who died from neoplasms;white female neoplasm deaths -Count_Death_Neoplasms_Male,number of males who died from cancer;the number of males who died from cancer -Count_Death_Neoplasms_Male_AmericanIndianAndAlaskaNativeAlone,american indian and alaska native male deaths from neoplasms;deaths of american indian and alaska native men from neoplasms;american indian and alaska native male neoplasm deaths;deaths from neoplasms in american indian and alaska native men -Count_Death_Neoplasms_Male_AsianOrPacificIslander,how many asian or pacific islander men died from neoplasms?;what is the death rate from neoplasms among asian or pacific islander men?;what is the percentage of deaths from neoplasms among asian or pacific islander men?;what is the proportion of deaths from neoplasms among asian or pacific islander men? -Count_Death_Neoplasms_Male_BlackOrAfricanAmerican,african american male deaths from neoplasms;neoplasm deaths in the african american male population;african american males who died from neoplasms;neoplasms that caused the deaths of african american males -Count_Death_Neoplasms_Male_White,white male death rate;number of deaths among white males;white male mortality rate;white male fatality rate -Count_Death_Neoplasms_White,deaths caused by neoplasm in the white population;neoplasm-related deaths in the white population;white population deaths due to neoplasm;neoplasm deaths in the white population -Count_Death_Upto14Years_AsAFractionOf_Count_Person_Upto14Years,fraction of people who died before the age of 14;number of people who died before the age of 14 divided by the total number of people who lived up to the age of 14;fraction of people who die before the age of 14;number of people who die before the age of 14 divided by the total number of people up to the age of 14 -Count_Death_Upto14Years_Female_AsAFractionOf_Count_Person_Upto14Years_Female,the number of girls who died before the age of 15;the number of female deaths in the under-15 age group;the number of female deaths in the 0-14 age group;the number of female deaths in the pre-teen and teenage age group -Count_Death_Upto14Years_Male_AsAFractionOf_Count_Person_Upto14Years_Male,male deaths under 14;male mortality rate under 14;male deaths aged 0-14;male deaths under the age of 14 -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod,"perinatal deaths in children under 1 year old;deaths of infants under 1 year old due to perinatal conditions;deaths of children under 1 year old from perinatal causes;deaths of infants under 1 year old from conditions that occur before, during, or shortly after birth" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,number of african american deaths aged 1 year or less;number of african american infant deaths;number of african american deaths in the first year of life;number of african american infants who die before their first birthday -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Female,female deaths in the first year of life due to perinatal conditions;female deaths in the first year of life due to conditions that began during pregnancy or childbirth;female deaths in the first year of life due to conditions that began before or during birth;deaths of girls under 1 year old due to conditions that began during pregnancy or childbirth -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Male,perinatal mortality in males under 1 year of age;deaths of male infants under 1 year of age due to perinatal conditions;perinatal deaths in male infants under 1 year of age;deaths of male infants under 1 year of age due to conditions originating in the perinatal period -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_White,percentage of white infants who die before their first birthday;proportion of white infants who die before their first birthday;deaths of white infants under 1 year old due to perinatal conditions;deaths of white infants in the first year of life -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities,deaths of infants caused by congenital malformations;deaths of newborns caused by congenital malformations -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"the number of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities;the rate of death among african americans aged 1 year and below from congenital malformations, deformations, and chromosomal abnormalities;the percentage of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities;the proportion of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"number of female deaths under 1 year old due to congenital malformations, deformations, and chromosomal abnormalities;female deaths under 1 year old due to genetic disorders;female deaths under 1 year old due to chromosomal abnormalities;female deaths under 1 year old due to congenital anomalies" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"number of deaths in males aged 1 year or less due to congenital malformations, deformations, and chromosomal abnormalities;male deaths aged 1 year or less due to congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"congenital malformations, deformations, and chromosomal abnormalities are the leading causes of death in the white population under one year of age" -Count_Death_White,white mortality rate;white death toll;white death count;white fatality rate -Count_DebrisFlowEvent,debris flow count;number of debris flow events;debris flow frequency;debris flow incidence -Count_DenseFogEvent,1 number of dense fog events;2 frequency of dense fog events;3 how often does dense fog occur?;4 how many times has dense fog occurred? -Count_DroughtEvent,number of droughts;drought count;drought frequency;drought occurrence -Count_DustDevilEvent,number of dust devil events;frequency of dust devil events;rate of dust devil events;incidence of dust devil events -Count_EarthquakeEvent,1 how many earthquakes have there been?;2 what is the number of earthquakes?;3 what is the total number of earthquakes?;4 how many times has the earth shaken? -Count_Establishment,count of organizations;number of organizations;total number of organizations;number of establishments -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,federally-owned hotels and restaurants;government-owned lodging and dining facilities;places to stay and eat that are owned by the government;government-run hotels and restaurants -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"services that the government owns and runs to support administration and waste management;federally owned waste management services;waste management services owned by the federal government;federally owned services for administration, support, and waste management" -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"federal government-owned farms, forests, fishing grounds, and hunting areas;federal government-owned land used for agriculture, forestry, fishing, and hunting;federal government-owned land that is used for growing crops, raising livestock, cutting timber, catching fish, and hunting animals;federal government-owned land that is used for agricultural, forestry, fishing, and hunting purposes" -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"federally owned arts, entertainment, and recreation establishments;federally owned arts and culture institutions;federally owned entertainment and recreation venues;federally owned museums, theaters, and other cultural institutions" -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSEducationalServices, -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSFinanceInsurance,federally-owned financial institutions;federally-owned insurance companies;government-owned banks;government-owned insurers -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSGoodsProducing,number of federal government-owned establishments in the naics/101 sector;number of federal government-owned establishments in the naics/101 industry -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,federally-owned hospitals and social service agencies;federally-owned health care and social assistance institutions;government-run health care and social assistance facilities;government-operated health care and social assistance centers -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSInformation,information owned by the us government;data that the us government controls;data that the us government possesses;information that the us government has a claim to -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSNonclassifiable,industries owned by the federal government that are not classified;federally-owned companies that are not top-secret;industries owned by the federal government that are not classified as secret;federally-owned industries that are not classified -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSOtherServices,federally-owned businesses that provide services other than public administration;government-owned businesses that provide services other than public administration;non-public administration businesses owned by the federal government;businesses owned by the federal government that provide services other than government administration -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,federally-owned professional scientific and technical services establishments;professional scientific and technical services establishments owned by the federal government;establishments that provide professional scientific and technical services and are owned by the federal government;professional scientific and technical services provided by establishments that are owned by the federal government -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSPublicAdministration,number of federal government owned establishments in public administration (naics/92);number of federal government owned public administration establishments (naics/92);number of federal government owned establishments in the public administration industry (naics/92);number of federal government owned establishments in the public administration sector (naics/92) -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSServiceProviding,federally owned and operated service provider;federally run service provider;government-owned service provider;government-run service provider -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,number of establishments owned by the federal government in all industries (naics/10);total number of establishments owned by the federal government in all industries (naics/10);number of federal government-owned establishments in all industries (naics/10);total number of federal government-owned establishments in all industries (naics/10) -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSUtilities,number of establishments owned by the federal government in the utilities industry;number of federal government-owned utilities establishments;number of federal government-owned businesses in the utilities industry;number of federal government-owned businesses in the utilities sector -Count_Establishment_GovernmentOwnedEstablishment_NAICSTotalAllIndustries,"number of government-owned establishments in all industries (naics/10);total number of government-owned establishments (naics/10);number of government-owned establishments, all industries (naics/10);number of establishments owned by the government, all industries (naics/10)" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,"number of local government-owned accommodation and food services establishments;number of local government-owned restaurants, hotels, and other accommodation and food services businesses;number of local government-owned businesses that provide accommodation and food services;number of local government-owned accommodation and food service establishments" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,number of businesses in local government-owned administrative and support and waste management services (naics/56);number of local government-owned administrative and support and waste management services (naics/56);number of establishments in local government-owned administrative and support and waste management services (naics/56);number of local government-owned administrative and support and waste management establishments (naics/56) -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"locally-owned arts, entertainment, and recreation;government-run arts, entertainment, and recreation;locally-funded arts, entertainment, and recreation;government-sponsored arts, entertainment, and recreation" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSConstruction,local government-run construction firms;construction companies owned by the local government;construction firms run by the local government;construction companies that are owned and operated by the local government -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSEducationalServices,number of establishments owned by local governments in the educational services industry (naics/61) -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSGoodsProducing,"number of local government-owned goods-producing establishments (naics/101);number of local government-owned businesses that produce goods (naics/101);number of local government-owned factories, mines, and other businesses that produce goods (naics/101);number of local government-owned businesses that make things (naics/101)" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,locally-owned health care and social assistance institutions;locally-funded health care and social assistance centers;locally-owned health and social care institutions;locally-based health and social care providers -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSInformation, -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSNonclassifiable,local government-owned establishments that are not classified;unclassified government-owned establishments at the local level;local government-owned establishments that are not categorized;uncategorized government-owned establishments at the local level -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSOtherServices,"number of establishments in local government owned, other services, except public administration (naics/81);number of local government owned, other services, except public administration (naics/81) establishments;count of local government owned, other services, except public administration (naics/81) establishments;how many local government owned, other services, except public administration (naics/81) establishments are there" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"locally-owned professional, scientific, and technical services;professional, scientific, and technical services owned by local governments;local government-run professional, scientific, and technical services;professional, scientific, and technical services run by local governments" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSPublicAdministration,public administration owned by the local government;local government-run public administration;public administration run by the local government;local government-operated public administration -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSRealEstateRentalLeasing,real estate owned by local governments and leased out to tenants;local government-owned property that is rented out;real estate owned by local governments and rented out to businesses or individuals;real estate owned by local governments and leased out to commercial or residential tenants -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSServiceProviding,locally-run service provider;community-owned service provider;municipal service provider;local authority service provider -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,number of local government-owned establishments in all industries (naics/10);number of local government-owned businesses in all industries (naics/10);number of local government-owned companies in all industries (naics/10);number of local government-owned organizations in all industries (naics/10) -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSUtilities,government-owned utilities;municipal utilities;community-owned utilities;locally-owned utilities -Count_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll, -Count_Establishment_NAICSAccommodationFoodServices, -Count_Establishment_NAICSAccommodationFoodServices_WithPayroll,lodging and catering;hospitality;lodging and food service;accommodation and catering -Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,firms that offer administrative and waste management solutions;establishments that provide administrative and waste management assistance;businesses that offer administrative support and waste management services;firms that offer administrative support and waste management services -Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,administrative support and waste management services;services that provide administrative support and waste management;services that support administrative tasks and manage waste;services that help with administrative tasks and dispose of waste -Count_Establishment_NAICSAgricultureForestryFishingHunting,"agriculture, forestry, fishing, and hunting industries;the agricultural, forestry, fishing, and hunting industries;the industries of agriculture, forestry, fishing, and hunting;the sectors of agriculture, forestry, fishing, and hunting" -Count_Establishment_NAICSArtsEntertainmentRecreation, -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll, -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,places to be entertained -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"establishments in the arts, entertainment, and recreation industries that are subject to federal income tax;businesses in the arts, entertainment, and recreation industries that are required to pay federal income tax;organizations in the arts, entertainment, and recreation industries that are subject to federal income tax;businesses, companies, and organizations in the arts, entertainment, and recreation industries that are required to pay federal income tax" -Count_Establishment_NAICSConstruction, -Count_Establishment_NAICSConstruction_WithPayroll, -Count_Establishment_NAICSEducationalServices, -Count_Establishment_NAICSEducationalServices_WithPayroll,educational institutions;educational establishments;educational facilities;educational centers -Count_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,schools are not taxed by the federal government;educational institutions are not subject to federal income tax;educational establishments are not liable for federal income tax;the federal government does not tax educational institutions -Count_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,educational institutions that pay federal income taxes;schools that are subject to federal income tax;educational organizations that are required to pay federal income tax;educational establishments that are liable for federal income tax -Count_Establishment_NAICSFinanceInsurance, -Count_Establishment_NAICSFinanceInsurance_WithPayroll, -Count_Establishment_NAICSGoodsProducing,industries that produce goods;industries that make things;industries that manufacture products;industries that create physical products -Count_Establishment_NAICSHealthCareSocialAssistance,the social services sector;the health care and social assistance sector;the healthcare and social assistance sector;the health and social services sector -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,healthcare and social assistance;health and social services;medical and social care;health and social work -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,health care and social assistance are not taxed by the federal government;health care and social assistance are tax-free;you don't have to pay federal income tax on health care and social assistance;health care and social assistance are exempt from federal income tax -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,industries in the health care and social assistance sectors are subject to federal income tax;the federal government taxes businesses in the health care and social assistance industries;businesses in the health care and social assistance sectors must pay federal income tax;the federal government levies income tax on businesses in the health care and social assistance sectors -Count_Establishment_NAICSInformation,creative industries;knowledge economy;the creative industries;the cultural sector -Count_Establishment_NAICSInformation_WithPayroll, -Count_Establishment_NAICSManagementOfCompaniesEnterprises,managing a company;corporate management;industrial management -Count_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,enterprise leadership;enterprise administration -Count_Establishment_NAICSManufacturing,pet food industry;animal feed industry;livestock feed industry;animal nutrition industry -Count_Establishment_NAICSMiningQuarryingOilGasExtraction,"extracting minerals, rocks, and oil and gas from the earth;mining for minerals and rocks;extracting minerals, rocks, and fossil fuels from the earth;removing materials from the earth's surface" -Count_Establishment_NAICSMiningQuarryingOilGasExtraction_WithPayroll,drilling for oil and gas -Count_Establishment_NAICSNonclassifiable,unclassified establishment count;naics/99 establishment count;number of naics/99 establishments;establishment count for naics/99 -Count_Establishment_NAICSOtherServices,industries that are not public administration;industries other than public administration;industries other than the public sector;industries other than the government sector -Count_Establishment_NAICSOtherServices_WithPayroll,services other than public administration;services not including public administration;services apart from public administration;services besides public administration -Count_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"industries that are exempt from federal income tax, except public administration;industries that are not subject to federal income tax, except public administration;industries that are not required to pay federal income tax, except public administration;industries that are not liable for federal income tax, except public administration" -Count_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"private sector services, excluding public administration establishments subject to federal income tax;non-public administration services, excluding establishments subject to federal income tax;services provided by the private sector, excluding public administration establishments subject to federal income tax;services provided by the private sector, excluding establishments subject to federal income tax in the public sector" -Count_Establishment_NAICSProfessionalScientificTechnicalServices,"professional, scientific, and technical services establishments;establishments providing professional, scientific, and technical services;establishments providing professional, scientific, and technical support services;establishments providing professional, scientific, and technical consulting services" -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,"professional, scientific, and technical services;professional, scientific, and technical support services;professional, scientific, and technical consulting services;professional, scientific, and technical research and development services" -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"professional, scientific, and technical services are exempt from federal income tax;federal income tax does not apply to professional, scientific, and technical services;federal income tax is not levied on professional, scientific, and technical services;professional, scientific, and technical service industries are exempt from federal income tax" -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"services provided by professionals, scientists, and technicians that are subject to federal income tax;services that are provided by professionals, scientists, and technicians and that are subject to federal income tax;services that are provided by professionals, scientists, and technicians and that are taxable by the federal government;services that are provided by professionals, scientists, and technicians and that are subject to the federal income tax code" -Count_Establishment_NAICSPublicAdministration,the way the government works;the administration of public affairs;the management of public resources;the running of the country -Count_Establishment_NAICSRealEstateRentalLeasing,"real estate, rentals, and leasing;real estate and property management;real estate and rentals;real estate and leasing" -Count_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,"the real estate and rental and leasing industries;the real estate, rental, and leasing industries;the real estate industry, as well as the rental and leasing industries;the real estate and rental industries, as well as the leasing industry" -Count_Establishment_NAICSRetailTrade,retail;retail trade;retail businesses;retail sector -Count_Establishment_NAICSServiceProviding,number of service-providing establishments;number of establishments providing services;number of service providers -Count_Establishment_NAICSTotalAllIndustries,all sectors;all trades;all professions;all types of businesses -Count_Establishment_NAICSTransportationWarehousing,transportation and warehousing companies;businesses that transport and store goods;transportation and warehousing;transportation and storage -Count_Establishment_NAICSUtilities,amenities -Count_Establishment_NAICSUtilities_WithPayroll, -Count_Establishment_NAICSWholesaleTrade,"the buying and selling of goods in large quantities, typically for resale;the business of buying and selling goods in large quantities, usually for resale;the trade in goods in large quantities, typically for resale;the buying and selling of goods in bulk" -Count_Establishment_NAICSWholesaleTrade_WithPayroll, -Count_Establishment_PrivatelyOwnedEstablishment_NAICSAccommodationFoodServices,"hotels, restaurants, and other businesses that are owned by individuals or companies;privately owned hotels, restaurants, and other places to stay and eat;accommodation and food services that are not owned by the government;places to stay and eat that are run by private businesses" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"privately owned businesses that provide administrative, support, and waste management services;privately owned companies that provide office support, janitorial services, and waste disposal;privately owned businesses that help other businesses with their administrative tasks, cleaning, and trash removal;privately owned companies that offer administrative support, janitorial services, and waste management to other businesses" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"privately owned farms, forests, and fishing and hunting businesses;privately owned businesses that grow crops, raise animals, cut down trees, and catch fish and animals;businesses that are not owned by the government and that grow crops, raise animals, cut down trees, and catch fish and animals;businesses that are owned by individuals or groups of individuals and that grow crops, raise animals, cut down trees, and catch fish and animals" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSArtsEntertainmentRecreation,"privately owned businesses that provide arts, entertainment, and recreation services;privately owned businesses that provide cultural and leisure activities;privately owned businesses that provide amusement and recreation services;privately owned businesses that provide entertainment and leisure services" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSConstruction,number of privately owned construction establishments;number of construction establishments owned by private individuals or companies;number of privately owned construction companies;number of construction establishments owned by individuals or private companies -Count_Establishment_PrivatelyOwnedEstablishment_NAICSEducationalServices,private schools;for-profit schools;non-public schools;privately owned schools -Count_Establishment_PrivatelyOwnedEstablishment_NAICSFinanceInsurance,privately owned finance and insurance companies;privately held finance and insurance companies;finance and insurance companies that are not publicly traded;finance and insurance companies that are owned by individuals or private groups -Count_Establishment_PrivatelyOwnedEstablishment_NAICSGoodsProducing,privately owned companies that produce goods;companies that are not owned by the government and produce goods;privately owned companies that make things;businesses that are not government-owned and produce products -Count_Establishment_PrivatelyOwnedEstablishment_NAICSHealthCareSocialAssistance,private health care and social assistance organizations;privately owned health care and social service providers;privately owned health care and social assistance agencies;privately owned health care and social assistance institutions -Count_Establishment_PrivatelyOwnedEstablishment_NAICSInformation,privately owned media outlets;privately owned news organizations;privately owned information sources;privately owned information providers -Count_Establishment_PrivatelyOwnedEstablishment_NAICSManagementOfCompaniesEnterprises,privately owned companies and enterprises;privately held companies and enterprises;privately run companies and enterprises;privately controlled companies and enterprises -Count_Establishment_PrivatelyOwnedEstablishment_NAICSMiningQuarryingOilGasExtraction,"mining, quarrying, and oil and gas extraction by private companies;extraction of minerals, rocks, and fossil fuels by private entities;non-governmental mining, quarrying, and oil and gas extraction;extraction of natural resources by private companies" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSNonclassifiable,"privately owned, unclassified industries;unclassified industries that are privately owned;industries that are privately owned and unclassified;industries that are privately owned and not classified" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSOtherServices,"privately owned services, excluding public administration;services owned by private individuals or companies, not by the government;privately owned services other than public administration;services that are privately owned and not part of the public sector" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"privately owned professional, scientific, and technical services establishments;privately owned professional scientific and technical services establishments;professional, scientific, and technical services establishments that are privately owned;professional scientific and technical services establishments that are privately owned" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSRealEstateRentalLeasing,"privately owned real estate and rental and leasing establishments;companies that lease property to others;businesses that own and rent out apartments, houses, and other properties;privately owned rental properties" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSServiceProviding,privately owned service industries;privately owned service companies;privately owned service providers;privately owned service businesses -Count_Establishment_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,industries that are owned by individuals or private companies;industries that are in the private sector;companies that are not publicly traded;non-publicly traded companies -Count_Establishment_PrivatelyOwnedEstablishment_NAICSUtilities,for-profit utilities;privately held utilities;investor-owned utilities;privately-run utilities -Count_Establishment_PrivatelyOwnedEstablishment_NAICSWholesaleTrade,privately owned wholesale trade industries -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"state-owned administrative and support services, as well as waste management services;state government-owned services that support administration and waste management;state government-owned services that manage administration and waste;state government-owned services that provide administration and waste management" -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,state-run arts and entertainment venues;state-owned recreation centers;state-funded cultural institutions;state-sponsored entertainment complexes -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSConstruction,state-owned construction companies;construction companies owned by the state;state-run construction industries;construction businesses owned by the state -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSEducationalServices,state-run schools;government-funded schools;state education institutions;state-owned educational institutions -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSGoodsProducing,number of state-owned plants -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,state-run healthcare and social services;state-sponsored healthcare and social programs;government-run programs for healthcare and social assistance;state-run health care and social services -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSInformation,state-run information agencies;government-owned news outlets;state-owned information agencies;state-run information centers -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSNonclassifiable,number of state-owned establishments that are not assigned a naics/99 code;number of businesses owned by state governments that are not classified under any other naics code;number of establishments owned by state governments that are not classified under any other naics code;number of establishments owned by state governments that are not assigned a naics code -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,privately owned soybean and other oilseed processing industries;privately owned soybean and other oilseed processing companies;privately owned soybean and other oilseed processing plants;privately owned soybean and other oilseed processing facilities -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSPublicAdministration,"number of establishments in public administration owned by state governments, as classified by naics/92;number of establishments: state government owned, public administration (naics/92);number of state government owned public administration establishments (naics/92);number of establishments owned by state governments in the public administration sector (naics/92)" -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSServiceProviding,state-owned service industries;state-run service industries;government-owned service industries;government-run service industries -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,government-owned companies;state-run companies;state-owned companies;state-owned corporations -Count_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,merchants who sell goods to other businesses;distributors -Count_ExcessiveHeatEvent,number of excessive heat events;count of excessive heat events;number of times excessive heat has occurred;number of excessive heat episodes -Count_ExtremeColdWindChillEvent,number of extreme cold wind chill events;frequency of extreme cold wind chill events;how often do extreme cold wind chill events happen?;how many extreme cold wind chill events have there been? -Count_Farm,how many farms are there?;what is the number of farms?;what is the total number of farms?;how many agricultural establishments are there? -Count_FarmInventory_BeefCows,how many beef cows are on the farm?;what is the number of beef cows on the farm?;how many head of beef cattle are on the farm?;1 how many beef cows are on the farm? -Count_FarmInventory_Broilers,how many broiler chickens are on a farm?;what is the number of broiler chickens on a farm?;what is the population of broiler chickens on a farm?;how many broiler chickens does a farm have? -Count_FarmInventory_CattleAndCalves,how many cattle and calves are on the farm?;what is the total number of cattle and calves on the farm?;how many cattle and calves does the farm have?;what is the cattle and calf population on the farm? -Count_FarmInventory_HogsAndPigs,how many hogs and pigs are on the farm?;how many hogs and pigs does the farm have?;what is the number of hogs and pigs on the farm?;what is the hog and pig count on the farm? -Count_FarmInventory_Layers,the number of laying hens on a farm;how many laying hens are on a farm;the count of laying hens on a farm;the number of chickens on a farm that lay eggs -Count_FarmInventory_MilkCows,how many milk cows are on the farm?;what is the number of milk cows on the farm?;what is the herd size of the farm's milk cows?;how many milk cows does the farm have? -Count_FarmInventory_SheepAndLambs,how many sheep and lambs are on the farm?;what is the total number of sheep and lambs on the farm?;how many sheep and lambs does the farm have?;how many sheep and lambs are there on the farm? -Count_Farm_BarleyForGrain,how many barley farms are there?;how many farms grow barley?;what is the number of barley farms?;what is the total number of barley farms? -Count_Farm_BeefCows,how many farms raise beef cattle?;how many farms have beef cows?;what is the number of farms with beef cows?;how many beef cattle farms are there? -Count_Farm_Broilers,number of farms raising broilers;number of broiler farms;number of farms with young chickens;number of farms that raise broiler chickens -Count_Farm_CattleAndCalves,the number of cattle farms;the amount of cattle farms;the cattle farm count;the cattle farm total -Count_Farm_CornForGrain,how many farms grow corn;how many corn farms are there;what is the number of corn farms;how many farms produce corn -Count_Farm_CornForSilageOrGreenchop,1 how many farms produce silage?;2 what is the number of farms that produce silage?;3 what is the number of farms that use silage as a crop?;4 how many farms grow silage? -Count_Farm_Cotton,how many farms grow cotton;how many cotton farms are there;how many farms produce cotton;what is the number of cotton farms -Count_Farm_Cropland,number of farms that grow crops;number of farms that cultivate crops;number of farms that produce crops;number of farms that raise crops -Count_Farm_DryEdibleBeans,number of farms that grow beans;number of bean farms;number of farms that produce beans;number of bean-producing farms -Count_Farm_DurumWheatForGrain,how many farms grow durum wheat?;how many durum wheat farms are there?;what is the number of farms that grow durum wheat?;what is the number of durum wheat-growing farms? -Count_Farm_Forage,3 let animals eat plants growing in a field -Count_Farm_HarvestedCropland,number of farms with harvested cropland;number of farms with harvested crops;number of farms with harvested agricultural land;number of farms with harvested agricultural fields -Count_Farm_HogsAndPigs,how many farms have hogs and pigs?;what is the number of farms with hogs and pigs?;how many farms raise hogs and pigs?;what is the number of farms that raise hogs and pigs? -Count_Farm_InventorySold_CattleAndCalves,number of farms that sell cattle and calves;number of farms that produce cattle and calves;number of farms that breed cattle and calves;number of cattle and calf businesses -Count_Farm_InventorySold_HogsAndPigs,number of farms that sold pigs and hogs;number of farms that sold pigs;number of farms that sold hogs;number of farms that sold pigs and/or hogs -Count_Farm_IrrigatedLand,number of farms with irrigated land;number of farms that irrigate their land;number of farms that use water to irrigate their land;number of farms that have irrigated land -Count_Farm_Layers,number of farms with layers;number of farms with chickens used for egg production;number of layer farms;number of farms with layer hens -Count_Farm_MilkCows,how many farms have milk cows?;what is the number of farms with milk cows?;how many farms are there with milk cows?;what is the total number of farms with milk cows? -Count_Farm_OatsForGrain,number of oat farms;number of oat-producing farms -Count_Farm_Orchards,number of farms with orchards;number of orchards on farms;number of farms that have orchards;number of farms that grow fruit trees -Count_Farm_OtherSpringWheatForGrain,spring wheat for grain farms;spring wheat for growing grain;spring wheat for grain production;spring wheat for grain cultivation -Count_Farm_PeanutsForNuts,number of peanut farms;what is the number of peanut farms?;what is the total number of peanut farms? -Count_Farm_Potatoes,number of farms that grow potatoes;number of potato farms;number of farms that produce potatoes;number of potato-growing farms -Count_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native who is self-employed in a primary industry;american indian or alaska native who is a primary producer;american indian or alaska native person who is involved in primary production;american indian or alaska native person who is a primary producer -Count_Farm_PrimaryProducer_AsianAlone,asians are the primary producers of farm products;asians are the primary growers of crops;asians are the main agricultural producers;asians are the main agriculturalists -Count_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,farms owned and operated by african americans;african american-owned farms;farms operated by african americans;farms owned by african americans -Count_Farm_PrimaryProducer_HispanicOrLatino,hispanic food producers -Count_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,farms for native hawaiians and other pacific islanders;farms for native hawaiian and pacific islander communities;farms that support native hawaiian and pacific islander culture;farms that are owned and operated by native hawaiians and pacific islanders -Count_Farm_PrimaryProducer_TwoOrMoreRaces,people of mixed race who are involved in primary industries;people of diverse backgrounds who engage in primary production -Count_Farm_PrimaryProducer_WhiteAlone,white-owned farms;farms with a majority white population;farms where the majority of the population is white;farms that are predominantly white -Count_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native agricultural producers;american indian or alaska native people who own and operate farms;american indian or alaska native people who grow and raise crops and livestock;american indian or alaska native people who are involved in agriculture -Count_Farm_Producer_AsianAlone,"asian farms, the producer;the producer of asian farms;asian farms, the one who produces;the one who produces asian farms" -Count_Farm_Producer_BlackOrAfricanAmericanAlone, -Count_Farm_Producer_HispanicOrLatino,farms owned by hispanic people;farms operated by hispanic people;farms that employ hispanic people;farms that produce hispanic-grown products -Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,4 people who are of native hawaiian or other pacific islander descent who own or operate farms -Count_Farm_Producer_TwoOrMoreRaces, -Count_Farm_Producer_WhiteAlone,farms that produce food for white people -Count_Farm_ReceivedGovernmentPayment,number of farms receiving government payments;number of farmers receiving government subsidies;number of agricultural operations receiving government assistance;number of farms receiving government support -Count_Farm_ReportedIncome,farm income reported to the government;farm income as reported to the government;farm income as reported -Count_Farm_ReportedNetIncome,farms' net income;reported net farm income -Count_Farm_Rice,how many farms grow rice?;what is the number of farms that grow rice?;how many rice farms are there?;what is the total number of rice farms? -Count_Farm_SheepAndLambs,how many farms have sheep and lambs?;what is the number of farms that raise sheep and lambs?;how many farms are there that raise sheep and lambs?;what is the number of farms that have sheep and lambs on them? -Count_Farm_SorghumForGrain,how many farms grow sorghum?;how many sorghum farms are there?;what is the number of farms that grow sorghum?;what is the number of sorghum-growing farms? -Count_Farm_SorghumForSilageOrGreenchop,sorghum for silage or greenchop population;sorghum for silage or greenchop density;sorghum for silage or greenchop stand;sorghum for silage or greenchop number of plants per acre -Count_Farm_SugarbeetsForSugar,the number of farms that grow sugarbeets for sugar production;the number of sugarbeet farms;the number of farms that produce sugar from sugarbeets;the number of farms that grow sugarbeets for commercial purposes -Count_Farm_SunflowerSeed,how many farms grow sunflower seeds?;what is the number of farms that grow sunflower seeds?;how many farms are there that grow sunflower seeds?;what is the total number of farms that grow sunflower seeds? -Count_Farm_SweetPotatoes,how many farms grow sweet potatoes?;what is the number of farms that grow sweet potatoes?;how many sweet potato farms are there?;how many farms produce sweet potatoes? -Count_Farm_UplandCotton,how many farms grow upland cotton?;what is the number of farms that grow upland cotton?;how many upland cotton farms are there?;what is the number of upland cotton farms? -Count_Farm_VegetablesHarvestedForSale,1 how many farms grow vegetables for sale?;2 what is the number of farms that grow vegetables for sale?;3 what is the total number of farms that grow vegetables for sale?;4 how many farms are there that grow vegetables for sale? -Count_Farm_WheatForGrain,how many farms grow wheat?;how many wheat farms are there?;what is the number of wheat farms?;what is the total number of farms that grow wheat? -Count_Farm_WinterWheatForGrain,how many farms grow winter wheat?;what is the number of farms that grow winter wheat?;what is the total number of farms that grow winter wheat?;how many farms are there that grow winter wheat? -Count_FireEvent,fire incidents;fire outbreaks;fires;blazes -Count_FireIncidentComplex,number of fire incidents;number of complex fire incidents;number of complex fire events;number of fire-related incidents -Count_FlashFloodEvent,number of flash flood events -Count_FloodEvent,number of floods;number of flood events;number of flood occurrences;number of times it has flooded -Count_FrostFreezeEvent,number of frost freeze events;frequency of frost freeze events;how often do frost freeze events occur;how many frost freeze events have there been -Count_FunnelCloudEvent,number of funnel cloud events;number of times a funnel cloud has appeared;number of funnel cloud sightings;number of funnel cloud reports -Count_HailEvent,number of hail events;number of times hail has fallen;number of hail incidents;number of hail occurrences -Count_HeatEvent,how many heat waves have there been?;what is the number of heat waves?;how many times has there been a heat wave?;how many heat waves have occurred? -Count_HeatTemperatureEvent,heat temperature event count -Count_HeatWaveEvent,heat wave occurrences;number of heat wave events;heat wave event count;heat wave event occurrence -Count_HeavyRainEvent,frequency of heavy rains;number of heavy rain events;how often do heavy rains occur;how many heavy rains are there -Count_HeavySnowEvent,number of heavy snowfalls;number of heavy snow events;number of heavy snow days;number of heavy snow storms -Count_HighWindEvent,number of high wind events;frequency of high wind events;how often do high wind events occur;how many high wind events have there been -Count_Household,number of homes;number of families;number of units;number of living units -Count_Household_AsianAndPacificIslandLanguagesSpokenAtHome,number of households that speak asian and pacific island languages;number of households where asian and pacific island languages are spoken -Count_Household_FamilyHousehold,number of families in the household: 1;household type: family;household composition: family;household structure: family -Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,the number of family households that were below the poverty level in the past 12 months;the number of family households that had an income below the poverty line in the past 12 months;the number of family households that were considered poor in the past 12 months;the number of family households that were struggling to make ends meet in the past 12 months -Count_Household_FamilyHousehold_OwnerOccupied,owner-occupied family households;households owned by the family;households where the owner lives there;households where the head of household owns the home -Count_Household_FamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,the percentage of occupied family households that were below the poverty level in the past 12 months;the percentage of occupied family households that were living in poverty in the past 12 months;the percentage of occupied family households that were experiencing economic hardship in the past 12 months;the percentage of occupied family households that were struggling to make ends meet in the past 12 months -Count_Household_FamilyHousehold_RenterOccupied,households where the occupants rent their homes;households where the people living there pay rent to a landlord;households where the occupants rent their home;households that lease their homes -Count_Household_FamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,the percentage of family households occupied by renters that were below the poverty level in the past 12 months;the number of family households occupied by renters that were below the poverty level in the past 12 months;the proportion of family households occupied by renters that were below the poverty level in the past 12 months;the share of family households occupied by renters that were below the poverty level in the past 12 months -Count_Household_FamilyHousehold_With0Worker,households with no working adults;households with no employed adults;households with no income from employment;households with no wage earners -Count_Household_FamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,the percentage of family households with workers who were below the poverty level in the past 12 months;the proportion of family households with workers who were below the poverty line in the past 12 months;the number of family households with workers who were below the poverty threshold in the past 12 months;the share of family households with workers who were below the poverty line in the past 12 months -Count_Household_FamilyHousehold_With1Worker,households with only one employed adult;households with one income;households with one wage earner;households with one employed person -Count_Household_FamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,1 households with one worker who earned less than the poverty line in the past year;4 families with one employed member who earned less than the poverty threshold in the last 12 months;5 households with one worker who earned less than the poverty level as defined by the us government in the past year;households with one worker below the poverty line in the past 12 months -Count_Household_FamilyHousehold_With2Worker,households with two working adults;households with two wage earners;households with two breadwinners;households with two incomes -Count_Household_FamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,families with two working adults who earned less than the poverty line in the past year;households with two employed adults who were living in poverty in the past year;households with two earners who were below the poverty line in the past year;families with two workers who were living in poverty in the past year -Count_Household_FamilyHousehold_With3OrMoreWorker,households with three or more workers;households with three or more people who work;households with three or more employed people;households with three or more people who are employed -Count_Household_FamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,the percentage of family households with three or more workers who were below the poverty level in the past 12 months;the proportion of family households with three or more workers who were poor in the past 12 months;the number of family households with three or more workers who were living in poverty in the past 12 months;the share of family households with three or more workers who were low-income in the past 12 months -Count_Household_ForeignBorn_PlaceOfBirthAfrica,households with foreign-born members in africa;households in africa with at least one foreign-born member -Count_Household_ForeignBorn_PlaceOfBirthAsia,asian householders born outside of the united states -Count_Household_ForeignBorn_PlaceOfBirthCaribbean,caribbean-born householders;householders who were born in the caribbean;foreign-born caribbean householders;householders born in the caribbean -Count_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"households with foreign-born members from central america, excluding mexico;households with members who were born in central america but not mexico;households with central american immigrants;households with central american-born residents" -Count_Household_ForeignBorn_PlaceOfBirthEasternAsia, -Count_Household_ForeignBorn_PlaceOfBirthEurope,households with foreign-born members in europe;households in europe with at least one foreign-born member;households in europe that include foreign-born people;households in europe that are made up of foreign-born people -Count_Household_ForeignBorn_PlaceOfBirthLatinAmerica,households in latin america with at least one foreign-born member;households in latin america that include at least one immigrant;households in latin america that are headed by an immigrant;households in latin america that are made up of immigrants -Count_Household_ForeignBorn_PlaceOfBirthMexico,households with foreign-born members;households with at least one foreign-born member;households with at least one person who was born in another country;households with people who were born in another country -Count_Household_ForeignBorn_PlaceOfBirthNorthamerica,households with foreign-born members in north america;households in north america that include foreign-born people;households in north america where at least one member was born outside of the country;households in north america with at least one immigrant member -Count_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,count of households with foreign-born residents from northern western europe;the number of households in northern western europe with residents who were born outside of the country;number of households in northern western europe with residents who were not born in the country;the number of households with residents who were born in northern western europe but now live in the united states -Count_Household_ForeignBorn_PlaceOfBirthOceania,households with foreign-born members in oceania;households with at least one foreign-born member in oceania;households with members who were born outside of oceania;households with members who are not native-born to oceania -Count_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,households owned by foreign-born people in south central asia;households in south central asia owned by people who were born in another country;households in south central asia that are owned by people who are not citizens of south central asia;households in south central asia that are owned by people who have immigrated to south central asia -Count_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the number of people born outside of south east asia who live in south east asian households;the percentage of south east asian households that contain at least one person who was born outside of south east asia;the percentage of south east asian households with at least one foreign-born member;the number of foreign-born people living in south east asian households -Count_Household_ForeignBorn_PlaceOfBirthSouthamerica,households with south american immigrants;households with south american-born residents;households with south american-born people;households with south american-born citizens -Count_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,households with foreign-born members from south eastern europe;households with members who were born in south eastern europe but now live in the united states;households with members who are not native-born americans but were born in south eastern europe;households with members who are naturalized citizens of the united states but were born in south eastern europe -Count_Household_ForeignBorn_PlaceOfBirthWesternAsia,people born in other countries who live in western asia;the number of people who were born in another country and now live in western asia;the percentage of the population of western asia that was born in another country;the number of immigrants in western asia -Count_Household_FullTimeYearRoundWorker_FamilyHousehold,"families with full-time, year-round workers;households with full-time, year-round workers;families with at least one full-time, year-round worker;households with at least one full-time, year-round worker" -Count_Household_FullTimeYearRoundWorker_FamilyHousehold_BelowPovertyLevelInThePast12Months,"families with full-time, year-round workers who were below the poverty level in the past 12 months;families with full-time, year-round workers who were poor in the past 12 months;families with full-time, year-round workers who were struggling financially in the past 12 months;families with full-time, year-round workers who were living in poverty in the past 12 months" -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold,"married couples who work full-time, year-round;families with two parents who both work full-time, year-round;households with a married couple and children where both parents work full-time, year-round;households with a married couple and children where both parents are employed full-time, year-round" -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"number of households with a married couple, both of whom work full-time, and who had an income below the poverty line in the past 12 months;number of households with a married couple, both of whom work full-time, and who were poor in the past 12 months;number of households with a married couple, both of whom work full-time, and who were struggling financially in the past 12 months;number of households with a married couple, both of whom work full-time, and who were living in poverty in the past 12 months" -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold,households with full-time working single mothers;households headed by full-time working single mothers;households where the mother is the sole provider;households where the mother is the only parent working full-time -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,number of households headed by a single mother who worked full-time year-round and were below the poverty level in the past 12 months;number of single mother families with a full-time year-round worker who were below the poverty level in the past 12 months;number of households with a single mother who worked full-time year-round and had an income below the poverty level in the past 12 months;number of families headed by a single mother who worked full-time year-round and had an income below the poverty level in the past 12 months -Count_Household_HasComputer,1 households that have computers;2 households that own computers;3 households that are equipped with computers;4 households that have access to computers -Count_Household_HasComputer_NoInternetAccess,households with computers but without internet access;households with computers but not connected to the internet;households with computers but not online;households with computers but not connected to the world wide web -Count_Household_HasComputer_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,"households with a computer, internet subscription, and broadband internet such as cable, fiber optic, or dsl;households with a computer, internet service, and high-speed internet such as cable, fiber optic, or dsl;households with a computer, internet access, and high-speed internet such as cable, fiber optic, or dsl;households with a computer, internet connection, and high-speed internet such as cable, fiber optic, or dsl" -Count_Household_HasComputer_WithInternetSubscription_DialUpInternetOnly,households with computers and dial-up internet subscriptions;households that have computers and dial-up internet subscriptions;households that are subscribed to dial-up internet and have computers;households that have computers and are subscribed to dial-up internet -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold,households with at least one member aged 65 or more;households headed by someone aged 65 or more;households with at least one person aged 65 or more;households with at least one senior citizen -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of family households aged 65 years or more that were below the poverty level in the past 12 months;the proportion of family households aged 65 years or more that were poor in the past 12 months;the number of family households aged 65 years or more that were living in poverty in the past 12 months;the number of family households aged 65 years or more that were living in financial hardship in the past 12 months -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold,households with married couples aged 65 years or more;households headed by a married couple aged 65 years or more;households with married couples who are 65 years or older;households with married couples in the 65+ age group -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,households with married couples over 65 living below the poverty line in the past 12 months;households with married couples over 65 who were poor in the past 12 months;households with married couples over 65 who were living in poverty in the past 12 months;households with married couples over 65 who were experiencing economic hardship in the past 12 months -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold,household of people aged 65 years or older with a single mother as head of household;household of people aged 65 years or older with a female head of household;household of people aged 65 years or older with a single parent as head of household;household of people aged 65 years or older with a mother as head of household -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,households headed by single mothers with at least one child aged 50 or older who were below the poverty level in the past 12 months;households headed by single mothers with at least one child aged 50 or older who were living in poverty in the past 12 months;households headed by single mothers with at least one child aged 50 or older who were living in economic distress in the past 12 months;households with single mothers and at least one child aged 50 or older who were poor in the past year -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold,households with at least one member who has a bachelor's degree or higher;households with at least one person who has completed a four-year degree;households with at least one parent who has a bachelor's degree or higher;households with a family member who has a bachelor's degree or higher -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold_BelowPovertyLevelInThePast12Months,households with a bachelor's degree or higher that were below the poverty line in the past 12 months;households with a bachelor's degree or higher that were poor in the past 12 months;households with a bachelor's degree or higher that were struggling financially in the past 12 months;households with a bachelor's degree or higher that were living in poverty in the past 12 months -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold,household with a married couple and at least one person with a bachelor's degree or higher;household with a married couple and at least one person with a bachelor's degree;household with a married couple and at least one person with a four-year degree;household with a married couple and at least one person who has earned a bachelor's degree -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"number of households with a married couple, at least one of whom has a bachelor's degree, and whose income was below the poverty line in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were poor in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were living in poverty in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were low-income in the past 12 months" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,single mothers with bachelor's degrees or higher education;single mothers who have completed a bachelor's degree or higher;single mothers who have a bachelor's degree or higher level of education;single mothers with post-secondary education -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,single mothers with a bachelor's degree or higher who live below the poverty line;single mothers with a college degree who are living in poverty;single mothers with a bachelor's degree or higher who were below the poverty line in the past 12 months;single mothers with a college degree who were poor in the past year -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold,households with at least one person who has graduated from high school or equivalent;households with at least one person who has completed high school or equivalent;families with at least one high school graduate or equivalent;families headed by a high school graduate or equivalent -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold_BelowPovertyLevelInThePast12Months,number of households that are families with at least one high school graduate or equivalency degree who were living in poverty in the past 12 months;number of family households with at least one high school graduate or equivalency degree who were below the poverty level in the past 12 months;number of family households with at least one high school graduate or equivalency degree who were living in poverty in the past 12 months -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold,married couples with high school diplomas or equivalent;households headed by married couples with high school diplomas or equivalent;families headed by married couples with high school diplomas or equivalent;married-couple families with high school graduates or equivalent -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,households with married couples and high school graduates who were below the poverty line in the past 12 months;households with married couples and high school graduates who were poor in the past 12 months;households with married couples and high school graduates who had low income in the past 12 months;households with married couples and high school graduates who were struggling financially in the past 12 months -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold,families with single mothers who are high school graduates or the equivalent;households headed by single mothers who have graduated from high school or obtained an equivalent credential;households where the head of household is a single mother who has completed high school or obtained a ged;households where the head of household is a single mother who has a high school diploma or equivalent -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,the number of single-mother households with at least one high school graduate (including equivalency) who were living in economic distress in the past 12 months -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold,households with a head of household who has not graduated from high school;households headed by someone who has not graduated from high school;households with a less-than-high-school-educated head of household;households with a head of household who has not completed high school -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold_BelowPovertyLevelInThePast12Months,households with people who have not graduated from high school and are below the poverty line in the last 12 months;families with members who have not graduated from high school and are living in poverty in the last 12 months;households with people who have not graduated from high school and are experiencing poverty in the last 12 months;families with members who have not graduated from high school and are struggling financially in the last 12 months -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold,households with married couples and at least one parent who has not graduated from high school;households with married couples and at least one parent who has less than a high school diploma;households with married couples and at least one parent who has not earned a high school diploma;households with married couples and at least one parent who has not attained a high school diploma -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,number of households headed by a married couple with less than a high school diploma and with income below the poverty line in the past 12 months;number of married-couple families with less than a high school diploma and with income below the poverty line in the past 12 months;number of married couples with less than a high school diploma and with income below the poverty line in the past year;number of married-couple families with less than a high school diploma and with income below the poverty line in the past year -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold,households headed by single mothers with less than a high school diploma;households with single mothers who have not graduated from high school;households headed by single mothers with low educational attainment;households with single mothers who have not completed high school -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,single mothers with less than a high school diploma who live below the poverty line;single-parent households headed by a woman with less than a high school diploma and living below the poverty line;households headed by a single mother with less than a high school diploma and with an income below the poverty line;families with a single mother who has not graduated from high school and who are living in poverty -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold,households with at least one member who has some college or an associate's degree;households with at least one college-educated member;households with at least one member who has some postsecondary training;households with at least one family member who has some college or an associate's degree -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold_BelowPovertyLevelInThePast12Months,households with at least one member who has some college or an associate's degree and whose income was below the poverty line in the past 12 months;households with at least one member who has some college or an associate's degree and whose income was insufficient to meet their basic needs in the past 12 months;households with at least one member who has some college or an associate's degree and who were considered poor in the past 12 months;households with at least one member who has some college or an associate's degree and who were living in poverty in the past 12 months -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold,"households with married couples and at least one person with some college or an associate's degree;households with married couples and at least one person who has an associate's degree;households with married couples and at least one person who has some college or an associate's degree, but not a bachelor's degree;1 households with married couples and at least one person with some college or an associate's degree" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,a married couple with some college or an associate's degree who lived below the poverty line in the past 12 months;a married couple with some college or an associate's degree who were impoverished in the past 12 months;a married couple with some college or an associate's degree who were low-income in the past 12 months;a married couple with some college or an associate's degree who were struggling financially in the past 12 months -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold,a family with a single mother who has some college or an associate's degree;a household headed by a single mother who has some college or an associate's degree;a family unit where the mother is the only parent and she has some college or an associate's degree;a home where the head of the household is a single mother who has some college or an associate's degree -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of single-mother family households with an associate degree who were below the poverty level in the past 12 months;the proportion of single-mother family households with an associate degree who were living in poverty in the past 12 months;the number of single-mother family households with an associate degree who were below the poverty line in the past 12 months;the share of single-mother family households with an associate degree who were poor in the past 12 months -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,households headed by american indians or alaska natives;households that include american indians or alaska natives;households with american indian or alaska native members;households of people who identify as american indian or alaska native -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold,american indian or alaska native families;families headed by an american indian or alaska native;households with an american indian or alaska native as the householder;american indian or alaska native-headed households -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of american indian or alaska native family households were below the poverty level in the past 12 months?;what proportion of american indian or alaska native family households were below the poverty level in the past 12 months?;what was the poverty rate among american indian or alaska native family households in the past 12 months?;what percentage of american indian or alaska native family households lived below the poverty level in the past 12 months? -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold,american indian or alaska native married couples with children;american indian or alaska native households headed by a married couple;american indian or alaska native married-couple families;households with american indian or alaska native married couples -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of american indian or alaska native married couple households lived below the poverty level in the past 12 months?;what is the poverty rate for american indian or alaska native married couple households?;what percentage of american indian or alaska native married couple households were poor in the past 12 months?;what is the percentage of american indian or alaska native married couple households with incomes below the poverty line? -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold,households headed by an american indian or alaska native single mother;american indian or alaska native single-mother households;households with an american indian or alaska native single mother;households led by an american indian or alaska native single mother -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of american indian or alaska native single mother family households were below the poverty level in the past 12 months?;what is the poverty rate for american indian or alaska native single mother family households in the past 12 months?;what proportion of american indian or alaska native single mother family households were below the poverty line in the past 12 months?;what percentage of american indian or alaska native single mother families lived in poverty in the past 12 months? -Count_Household_HouseholderRaceAsianAlone,households with asian members;households that are predominantly asian;asian-led households;households that have at least one asian member -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold,asian families;asian-american families;families of asian descent;families with asian heritage -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of asian families living below the poverty line in the past 12 months;the number of asian families living in poverty in the past 12 months;the proportion of asian families living in poverty in the past 12 months;the rate of poverty among asian families in the past 12 months -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold,asian married couples with children;asian households with married parents;asian households with married parents and children;households of asian married couples -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,asian married couples living below the poverty line in the past 12 months;asian married couples who were poor in the past 12 months;asian married couples who were living in poverty in the past 12 months;asian married couples who were experiencing financial hardship in the past 12 months -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold,households headed by single asian mothers;families with single asian mothers;asian households with single mothers;single asian mothers and their families -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of asian single-mother households were below the poverty line in the past 12 months?;what proportion of asian single-mother households lived in poverty in the past year?;how many asian single-mother households were below the poverty line in the past 12 months?;what was the percentage of asian single-mother households living in poverty in the past year? -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone,african american households;households of african americans;the number of african american households;the number of households headed by african americans -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,families with african american parents;african american families;families of african descent;black family households -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of african american family households were below the poverty line in the past 12 months?;what proportion of african american family households were living in poverty in the past 12 months?;how many african american family households were living below the poverty line in the past 12 months?;what was the poverty rate among african american family households in the past 12 months? -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold,households with african american married couples;african american married-couple households;households headed by african american married couples;households with african american married couples as heads of household -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of african american married couples living below the poverty line in the past 12 months;the number of african american married couples living below the poverty line in the past 12 months;the proportion of african american married couples living below the poverty line in the past 12 months;the share of african american married couples living below the poverty line in the past 12 months -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold,african american households headed by single mothers;households in the african american community headed by single mothers;single mothers in african american households;african american families headed by single mothers -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of african american single mother households were below the poverty line in the past 12 months?;what proportion of african american single mother households were living in poverty in the past 12 months?;how many african american single mother households were living in poverty in the past 12 months?;what was the percentage of african american single mother households living in poverty in the past 12 months? -Count_Household_HouseholderRaceHispanicOrLatino,households of hispanic origin;households with hispanic members;households that are hispanic;hispanic-headed households -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold,hispanic families;families with hispanic roots;households with hispanic ancestry;families with hispanic heritage -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of hispanic family households living below the poverty level in the past 12 months;the proportion of hispanic family households living in poverty in the past 12 months;the number of hispanic family households living below the poverty line in the past 12 months;the number of hispanic family households living in poverty in the past 12 months -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold,hispanic married couples living together with their children;hispanic families with married parents;hispanic families headed by a married couple;hispanic households headed by a married couple -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of hispanic married-couple families living below the poverty line in the past 12 months;the proportion of hispanic married-couple families living below the poverty line in the past 12 months;the number of hispanic married-couple families living below the poverty line in the past 12 months;the share of hispanic married-couple families living below the poverty line in the past 12 months -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold,hispanic single-mother households;households headed by hispanic single mothers;hispanic families with single mothers;hispanic households with single parents -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of hispanic single-mother households living below the poverty line in the past 12 months;the proportion of hispanic single-mother families living in poverty in the past year;the number of hispanic single-mother households with incomes below the poverty line in the past 12 months;the share of hispanic single-mother families with incomes below the poverty line in the past year -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,households of native hawaiian or other pacific islander descent;households that are native hawaiian or other pacific islander;households that identify as native hawaiian or other pacific islander;households that are made up of native hawaiian or other pacific islander people -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold,native hawaiian or other pacific islander families;families with a native hawaiian or other pacific islander as the head of household;families with native hawaiian or other pacific islander members;families or households of native hawaiian or other pacific islander descent -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of native hawaiian or other pacific islander family households living below the poverty level in the past 12 months;the proportion of native hawaiian or other pacific islander family households living in poverty in the past 12 months;the number of native hawaiian or other pacific islander family households living below the poverty line in the past 12 months;the number of native hawaiian or other pacific islander family households living in poverty in the past 12 months -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold,households headed by a married couple of native hawaiian or other pacific islander origin;households with a married couple of native hawaiian or other pacific islander origin as the head of household;households with a native hawaiian or other pacific islander married couple as the head of household;households with a native hawaiian or other pacific islander husband and wife as the head of household -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of native hawaiian or other pacific islander married couple family households were below the poverty level in the past 12 months?;what is the poverty rate for native hawaiian or other pacific islander married couple family households in the past 12 months?;what percentage of native hawaiian or other pacific islander married couple family households lived in poverty in the past 12 months?;what is the percentage of native hawaiian or other pacific islander married couple family households with incomes below the poverty line in the past 12 months? -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold,households headed by single native hawaiian or other pacific islander mothers;native hawaiian or other pacific islander single-mother households;households with a single native hawaiian or other pacific islander mother;households with a single mother who is native hawaiian or other pacific islander -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of native hawaiian or other pacific islander single mother family households that were below the poverty level in the past 12 months;the proportion of native hawaiian or other pacific islander single mother family households that were living in poverty in the past 12 months;the number of native hawaiian or other pacific islander single mother family households that were below the poverty line in the past 12 months;the share of native hawaiian or other pacific islander single mother family households that were poor in the past 12 months -Count_Household_HouseholderRaceSomeOtherRaceAlone,"households with a population of some other race;households with a population of a race other than white, black, or asian;households with a population of a race other than the three major races;households with a population of a race other than the three most common races" -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold,"households with a primary caregiver who identifies as ""some other race"";households with a mixed-race family;families of mixed race;families with members of more than one race" -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of family households of some other race with income below the poverty level in the past 12 months;the proportion of family households of some other race with income below the poverty level in the past 12 months;the number of family households of some other race with income below the poverty level in the past 12 months;the share of family households of some other race with income below the poverty level in the past 12 months -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold,households with married couples of some other race;households of married couples of some other race;households with married couples who are of some other race;households of married couples who identify as some other race -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of married-couple families of some other race that were below the poverty level in the past 12 months;the proportion of married-couple families of some other race that were poor in the past 12 months;the number of married-couple families of some other race that were living in poverty in the past 12 months;the number of married-couple families of some other race that had incomes below the poverty line in the past 12 months -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold,households headed by single mothers of other races;families with single mothers of other races;families with single mothers who are not caucasian;single-mother households of other races -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,households of single mothers of other races who were below the poverty level in the past 12 months;households of single mothers of other races who were living in poverty in the past 12 months;households of single mothers of other races who were struggling financially in the past 12 months;households of single mothers of other races who were not able to meet their basic needs in the past 12 months -Count_Household_HouseholderRaceTwoOrMoreRaces, -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold,households with interracial families -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of multiracial family households were below the poverty level in the past 12 months?;what is the poverty rate for multiracial family households?;what percentage of multiracial families live in poverty?;what is the poverty rate for multiracial households with children? -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold,households with interracial married couples;households with biracial married couples;families with interracial married parents -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of multiracial married couple families living below the poverty line in the past 12 months;the proportion of multiracial married couple families with incomes below the poverty line in the past 12 months;the number of multiracial married couple families with incomes below the poverty line in the past 12 months;the share of multiracial married couple families living in poverty in the past 12 months -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold,families with multiracial single mothers;families with single mothers who are multiracial;households of multiracial single parents;households with multiracial single parents -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of multiracial households with single mothers who were below the poverty level in the past 12 months;the proportion of multiracial households with single mothers who were living in poverty in the past 12 months;the number of multiracial households with single mothers who were living below the poverty line in the past 12 months;the number of multiracial households with single mothers who were poor in the past 12 months -Count_Household_HouseholderRaceWhiteAlone,white households;households of white people;white-occupied households;households with white residents -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,"households headed by a white person who is not hispanic;households with a white, non-hispanic householder;households with a white, non-hispanic head of household;households where the householder is white and not hispanic" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold,white and non-hispanic families;white and non-hispanic households with families;households of white and non-hispanic people with families;families of white and non-hispanic people -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of white non-hispanic families living below the poverty line in the past 12 months;the proportion of white non-hispanic households with incomes below the poverty line in the past year;the number of white non-hispanic families living in poverty in the past 12 months;the percentage of white non-hispanic families that were poor in the past 12 months -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold,households of married couples with white non-hispanic heads of household;households with married white non-hispanic couples as heads of household;households headed by married white non-hispanic couples;households with white non-hispanic married couples as householders -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"white, non-hispanic married couples living in poverty in the past 12 months;white, non-hispanic married couples with incomes below the poverty line in the past 12 months;white, non-hispanic married couples who were poor in the past 12 months;white, non-hispanic married couples who were struggling financially in the past 12 months" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold,the number of households headed by a single mother who is white and not hispanic or latino;the number of households with a single mother who is white and not hispanic or latino;the number of households with a mother who is white and not hispanic or latino as the head of household;the number of households with a single parent who is white and not hispanic or latino as the head of household -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,white non-hispanic single mothers living below the poverty line in the past 12 months;white non-hispanic single-mother households living below the poverty line in the past 12 months;households headed by white non-hispanic single mothers living below the poverty line in the past 12 months;white non-hispanic single mothers with households below the poverty line in the past 12 months -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold,white family households;families of white people;families with white people as the head of household -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,what percentage of white households were below the poverty line in the past 12 months?;what proportion of white families lived in poverty in the past year?;how many white households were below the poverty line in the past year?;what was the poverty rate for white households in the past year? -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold,a married white couple and their children;a white family with two parents;a white household with a husband and wife;a white nuclear family -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the percentage of married white couple family households living below the poverty level in the past 12 months;the proportion of married white couple family households living in poverty in the past 12 months;the number of married white couple family households living below the poverty line in the past 12 months;the number of married white couple family households living in poverty in the past 12 months -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold,white single-mother households;white families headed by single mothers;households headed by white single mothers;white single-parent households -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,what proportion of white single-mother households in the us were living in poverty in the past 12 months?;what was the poverty rate for white single-mother households in the us in the past 12 months?;what percentage of white single-mother households were below the poverty line in the past 12 months?;what was the percentage of white single-mother households living below the poverty line in the past 12 months? -Count_Household_Houseless, -Count_Household_Houseless_Rural,number of households with no permanent address in rural areas;number of rural households with no home -Count_Household_Houseless_Urban,number of houseless households in cities;number of people living in houseless households in cities -Count_Household_InternetWithoutSubscription,how many households don't have internet?;what's the number of households without internet?;how many households are without internet?;how many households do not have internet access? -Count_Household_LimitedEnglishSpeakingHousehold,households with limited english proficiency;households where english is not the primary language spoken;households where some or all members do not speak english well;households where english is not the home language -Count_Household_LimitedEnglishSpeakingHousehold_AsianAndPacificIslandLanguagesSpokenAtHome,households with limited english-speaking asian and pacific islanders;asian and pacific islander households with limited english proficiency;households with limited english-speaking asian americans and pacific islanders;households of asians and pacific islanders with limited english proficiency -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthAsia,english proficiency of foreign-born households in asia;extent of english fluency among foreign-born households in asia;level of english proficiency among foreign-born households in asia;how well foreign-born households in asia speak english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCaribbean,caribbean households with foreign-born residents who are moderately fluent in english;households in the caribbean with foreign-born residents who speak english moderately well;households in the caribbean with foreign-born residents who have a moderate level of english proficiency;households in the caribbean with foreign-born residents who are somewhat fluent in english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american households with foreign-born members who are moderately fluent in english;households in central america with foreign-born members who speak english moderately well;households in central america with foreign-born members who are somewhat fluent in english;households in central america with foreign-born members who have a moderate command of english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCountry/MEX,households in mexico with foreign-born members who are moderately fluent in english;households in mexico with members who were born in another country and are moderately fluent in english;households in mexico with members who are not native speakers of english but can speak it fairly well;households in mexico with members who have a moderate level of english proficiency -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEasternAsia,households in eastern asia with limited english proficiency;households in eastern asia where english is not the primary language spoken;households in eastern asia where residents are not native english speakers;households in eastern asia where residents have a limited understanding of english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEurope,households in europe with foreign-born members who speak limited english;households in europe with foreign-born members who have difficulty speaking english;households in europe with foreign-born members who have a limited command of english;households in europe with foreign-born members who have limited english proficiency -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,households in latin america where the primary language spoken is not english;households in latin america where english is not the primary language spoken;households in latin america where the majority of residents do not speak english;households in latin america where english is not spoken by most residents -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,households of people from northern western europe who were born in another country and speak limited english;households of people from northern western europe who are not native english speakers;households of people from northern western europe who speak english as a second language;households of people from northern western europe who have a limited command of english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,south central asian households with foreign-born residents who are moderately fluent in english;households in south central asia with foreign-born residents who speak english moderately well;households in south central asia with foreign-born residents who have a moderate level of english proficiency;households in south central asia with foreign-born residents who are able to communicate in english at a moderate level -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,foreign-borns in southeast asian households who speak little or no english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthamerica,households with owners who were born in south america and speak limited english;households with owners who were born in south america and have limited english proficiency;households with owners who were born in south america and speak english as a second language;households with owners who were born in south america and are not fluent in english -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,households with foreign-born residents in southern eastern europe who are moderately fluent in english;households with foreign-born residents in southern eastern europe who speak english moderately well;households with foreign-born residents in southern eastern europe who have a moderate level of english proficiency;households with foreign-born residents in southern eastern europe who are able to speak english at a moderate level -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthWesternAsia,english proficiency among foreign-born households in western asia;the english skills of foreign-born households in western asia;how well foreign-born households in western asia speak english;the level of english fluency among foreign-born households in western asia -Count_Household_LimitedEnglishSpeakingHousehold_OtherIndoEuropeanLanguagesSpokenAtHome,households that speak other indo-european languages and have limited english proficiency;households that speak indo-european languages other than english and have limited english skills;households that speak indo-european languages other than english and have difficulty speaking english;households that speak indo-european languages other than english and have difficulty understanding english -Count_Household_LimitedEnglishSpeakingHousehold_OtherLanguagesSpokenAtHome,households with limited english speakers and speakers of other languages;households speaking limited english or other languages;households with people who speak english as a second language -Count_Household_LimitedEnglishSpeakingHousehold_SpanishSpokenAtHome,spanish-speaking households with limited english proficiency;homes where spanish is the main language and english is not well-known;households where spanish is the dominant language and english is not fluent;homes where spanish is the first language and english is not well-mastered -Count_Household_MarriedCoupleFamilyHousehold,number of households with married couples;number of households headed by married couples;number of married-couple households;households with married couples as householders -Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,how many married couples live below the poverty line?;what is the number of married couple households below the poverty line?;how many married couples are living in poverty?;what is the percentage of married couple households below the poverty line? -Count_Household_MarriedCoupleFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"number of households with married couples, mobile homes, and all other types of units;number of households with married couples, mobile homes, and other types of units;number of households with married couples, mobile homes, and other housing units;number of households with married couples, mobile homes, and other living arrangements" -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied,married-couple families;households with a husband and wife living together;households with a married couple and their children living together;households with a married couple and other relatives living together -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,married couples living in owner-occupied households below the poverty line in the past 12 months;owner-occupied households of married couples below the poverty line in the past 12 months;households of married couples living in owner-occupied homes below the poverty line in the past 12 months;the number of married-couple family households that were owner-occupied and below the poverty level in the past 12 months -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied,number of households with a married couple and children who are renters;number of households with a married couple and children who are renting their home;number of households with a married couple and children who are living in a rented property;the number of households that are occupied by married couples and their children who are renters -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,renters in married couple family households who lived below the poverty level in the past 12 months;renters in married couple family households who were poor in the past 12 months;renters in married couple family households who had low income in the past 12 months;renters in married couple family households who were struggling financially in the past 12 months -Count_Household_MarriedCoupleFamilyHousehold_SingleUnit,"number of households: married couple family households and single units;married couple family household, single unit" -Count_Household_MarriedCoupleFamilyHousehold_TwoOrMoreUnits,the number of married couple family households with two or more units;the number of households headed by a married couple with two or more units;the number of households that are married couple families with two or more units;the number of households that are headed by a married couple and have two or more units -Count_Household_MarriedCoupleFamilyHousehold_With0Worker,a married couple living together with no children -Count_Household_MarriedCoupleFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,households with a married couple and no workers with income below the poverty line in the past 12 months;households with a married couple and no employed members with income below the poverty line in the past 12 months;households with a married couple and no income from employment below the poverty line in the past 12 months;households with a married couple and no earned income below the poverty line in the past 12 months -Count_Household_MarriedCoupleFamilyHousehold_With1Worker,households with a married couple and one worker;households with a married couple and one employed person;households with a married couple and one income earner;households with a married couple and one wage earner -Count_Household_MarriedCoupleFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,the number of married couple families with a worker who was poor in the past 12 months;the number of married couple families with a worker who was low-income in the past 12 months;the number of households with a married couple and a worker who was living in poverty in the past 12 months -Count_Household_MarriedCoupleFamilyHousehold_With2Worker,households with two working spouses;couples with two jobs;two-earner married couples;dual-income married couples -Count_Household_MarriedCoupleFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,households with two working spouses who were below the poverty line in the past year;couples with two working partners who were earning less than the poverty line in the past year;households with two working spouses who were below the poverty line in the past 12 months;households with two working spouses who fell below the poverty line in the past year -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker,households with married couples and 3 or more workers;households with married couples and multiple wage earners;households with married couples and multiple income earners;households with married couples and multiple earners -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,a household with a married couple and three or more workers who were below the poverty line in the past 12 months;a household with a married couple and three or more workers who earned less than the poverty line in the past 12 months;a household with a married couple and three or more workers who were living in poverty in the past 12 months;a household with a married couple and three or more workers who were struggling to make ends meet in the past 12 months -Count_Household_NoComputer,a number of households do not have a computer -Count_Household_NoHealthInsurance,how many households do not have health insurance?;what is the number of households without health insurance?;how many people live in households without health insurance?;how many households are uninsured? -Count_Household_NoInternetAccess,households without internet access;households that don't have internet access;households that are not connected to the internet;households that are offline -Count_Household_NonfamilyHousehold,number of households with one person living alone;number of households with unrelated people living together;number of households with a person living alone or with unrelated people;number of households with a person living alone or with roommates -Count_Household_NonfamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"number of households that are not families, mobile homes, and all other types of units;number of households that are not families, including mobile homes and all other types of units;number of households that are not families, mobile homes, or any other type of unit;number of households that are not families, mobile homes, or any other type of living arrangement" -Count_Household_NonfamilyHousehold_SingleUnit, -Count_Household_NonfamilyHousehold_TwoOrMoreUnits,number of nonfamily households with two or more units -Count_Household_OtherFamilyHousehold,household with other relatives;household with non-family members;household with non-relatives;household with extended family -Count_Household_OtherIndoEuropeanLanguagesSpokenAtHome,number of households where other indo-european languages are spoken;number of households with other indo-european languages as the primary language;number of households where other indo-european languages are the primary language;number of homes where other indo-european languages are spoken -Count_Household_OtherLanguagesSpokenAtHome,households that speak other languages;households where people speak languages other than english;households that are multilingual;households that are linguistically diverse -Count_Household_Rural,households in rural areas;households in the countryside;households in farming communities;households in remote areas -Count_Household_ScheduledCaste,households of people from scheduled castes;households of people who are discriminated against because of their caste;households of the scheduled castes;scheduled caste families -Count_Household_ScheduledCaste_Rural,number of households in rural areas with scheduled caste members;number of households in rural areas with people from scheduled castes;number of households in rural areas with people from lower castes;number of households in rural areas where the head of household is from a scheduled caste -Count_Household_ScheduledCaste_Urban,scheduled castes in urban areas;urban people from scheduled castes;scheduled castes living in cities;scheduled castes in urban settings -Count_Household_ScheduledTribe,households of scheduled tribes;households belonging to scheduled tribes;households of scheduled tribe people -Count_Household_ScheduledTribe_Rural,household with a member of a scheduled tribe in a rural area;household with a member of a tribal group in a rural area;household with a member of an indigenous group in a rural area;rural household with a scheduled tribe member -Count_Household_ScheduledTribe_Urban,urban households belonging to scheduled tribes;scheduled tribe households living in urban areas;urban scheduled tribe households;scheduled tribe households in cities and towns -Count_Household_SingleFatherFamilyHousehold,household with a single father;household consisting of a single father and his children;household where the father is the only parent;number of households headed by a single father -Count_Household_SingleFatherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"number of single father households, mobile homes, and other types of units;number of households with single fathers, mobile homes, and other types of units;number of single father families, mobile homes, and other types of units;number of households that are single father families, mobile homes, and other types of units" -Count_Household_SingleFatherFamilyHousehold_SingleUnit,"number of households: single father family household, single unit" -Count_Household_SingleFatherFamilyHousehold_TwoOrMoreUnits,number of single father households with two or more units;number of households with a single father and two or more units;number of households headed by a single father with two or more units;number of households with a single father and two or more children -Count_Household_SingleMotherFamilyHousehold,number of households headed by single mothers;number of single-mother households;number of households with a single mother as the head of household;number of households with a mother as the head of household -Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,how many single-mother families were living below the poverty line in the past 12 months?;what is the percentage of single-mother families living below the poverty line in the past 12 months?;what is the number of single-mother families living in poverty in the past 12 months?;how many single-mother families were poor in the past 12 months? -Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"number of households: single mother families, mobile homes, and all other types of units;number of households by type: single mother families, mobile homes, and all other types of units;number of households by family structure: single mother families, mobile homes, and all other types of units;number of households by housing type: single mother families, mobile homes, and all other types of units" -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied,"a household consisting of a single mother and her children, who own their home;a family home owned by a single mother;a home owned by a single mother and her children;a single mother and her children living in a home they own" -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months, -Count_Household_SingleMotherFamilyHousehold_RenterOccupied,households headed by single mothers;households where the mother is the only parent;households where the mother is the primary caregiver;households with single mothers as the primary caregiver -Count_Household_SingleMotherFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,single-mother households with children who rent and live below the poverty line in the past 12 months;households with a single mother and children who rent and are considered to be in poverty in the past 12 months;households headed by single mothers who rented and were below the poverty line in the past 12 months;households headed by single mothers who rented and had incomes below the poverty line in the past 12 months -Count_Household_SingleMotherFamilyHousehold_SingleUnit,"number of households: single mother family household, single unit;number of households: single mother family, single unit;number of households: single mother and child household, single unit;number of households: single mother and children household, single unit" -Count_Household_SingleMotherFamilyHousehold_TwoOrMoreUnits,household count: single mother family with two or more units;number of households: single mother family with two or more units;number of single mother families with two or more units;number of households with a single mother and two or more units -Count_Household_SingleMotherFamilyHousehold_With0Worker,a single mother with no working children;a household headed by a single mother with no employed children;a family with a single mother and no working adults;a household with a single mother and no employed members -Count_Household_SingleMotherFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,the number of single-mother households with no income in the past 12 months;the number of single-mother households with no jobs in the past 12 months -Count_Household_SingleMotherFamilyHousehold_With1Worker,households with a single mother and one working adult;single-parent households with one working adult;households headed by a single mother with one working adult;households headed by single mothers with one employed adult -Count_Household_SingleMotherFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months, -Count_Household_SingleMotherFamilyHousehold_With2Worker,households with a single mother and two working adults;households with a single mother and two employed adults;households with a single mother and two wage earners;households with a single mother and two breadwinners -Count_Household_SingleMotherFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,households with single mothers and two workers who were below the poverty line in the past 12 months;households with single mothers and two workers who earned less than the poverty line in the past 12 months;households with single mothers and two workers who were living in poverty in the past 12 months;households with single mothers and two workers who were struggling to make ends meet in the past 12 months -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker,households with a single mother and three or more workers;households headed by a single mother with three or more workers;households with a single female parent and three or more workers;households with a single mother and three or more employed adults -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,the number of single-mother households with three or more workers who were living below the poverty line in the past 12 months;the percentage of single-mother households with three or more workers who had incomes below the poverty line in the past 12 months;1 households with a single mother and at least 3 working adults who were below the poverty line in the past 12 months;3 households with a single mother and at least 3 working adults who were struggling financially in the past year -Count_Household_SpanishSpokenAtHome,households that speak spanish;households that use spanish as their primary language;households where spanish is spoken;households with spanish speakers -Count_Household_Urban,households in cities;urban families;urban homes;city dwellings -Count_Household_With0AvailableVehicles,there are 0 available vehicles in this household;there are no available vehicles in this household;this household has 0 available vehicles;this household does not have any available vehicles -Count_Household_With1AvailableVehicles,there is one vehicle available in this household;this household has one vehicle available;this household has one vehicle that is available;one vehicle is available in this household -Count_Household_With2AvailableVehicles,there are 2 vehicles available in the household;the household has 2 vehicles available;the household has the use of 2 vehicles;2 vehicles are available for use in the household -Count_Household_With3AvailableVehicles,there are 3 vehicles available in this household;this household has 3 vehicles available;there are 3 vehicles that are available to this household;this household has access to 3 vehicles -Count_Household_With4OrMoreAvailableVehicles,more than 4 vehicles are available in the household;the household has 4 or more available vehicles;there are 4 or more available vehicles in the household;the household has access to 4 or more vehicles -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"number of households in africa that received cash assistance in the past 12 months;number of households in africa that received cash assistance in the last 12 months, foreign born;number of households in africa that received cash assistance in the last year, foreign born;number of households that received cash assistance in the past 12 months and were foreign-born from africa" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,number of households in asia that received cash assistance in the past 12 months;number of households in asia that received cash assistance in the last 12-month period;number of households with foreign-born residents from asia who received cash assistance in the past 12 months;number of households with foreign-born residents from asia who received cash benefits in the past 12 months -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,number of households that received cash assistance in the past 12 months and were foreign-born from the caribbean;number of households that received cash assistance in the past 12 months and were born outside of the united states and came from the caribbean;number of households that received cash assistance in the past 12 months and were born in the caribbean;number of households that received cash assistance in the past 12 months and were of caribbean descent -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,number of households with foreign-born central americans who received cash assistance in the past 12 months;number of households with foreign-born central americans who received cash benefits in the past 12 months;number of households with foreign-born central americans who received cash aid in the past 12 months;number of households with foreign-born central americans who received cash support in the past 12 months -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,number of households that received cash assistance in the past 12 months and are foreign born from eastern asia;number of households that received cash assistance in the past 12 months and are foreign born from east asia;number of households that received cash assistance in the past 12 months and are of eastern asian descent;number of households that received cash assistance in the past 12 months and were foreign born from eastern asia -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEurope,number of households with foreign-born members who received cash assistance in the past 12 months in europe;number of households in europe where at least one member was born outside of europe and received cash assistance in the past 12 months;number of households in europe with foreign-born members who received cash assistance in the past year;number of households in europe where at least one member was born outside of europe and received cash assistance in the past year -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"1 number of households that received cash assistance in the past 12 months, and whose members were foreign-born from latin america;2 number of households that received cash assistance in the past 12 months, and whose members were born in latin america but are not us citizens;3 number of households that received cash assistance in the past 12 months, and whose members are not us citizens but were born in latin america;4 number of households that received cash assistance in the past 12 months, and whose members are immigrants from latin america" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"number of households that received cash assistance in the past 12 months, foreign born, country/mex;number of households that received cash assistance in the past 12 months, born outside of the us, country/mex;number of households that received cash assistance in the past 12 months, not us citizens, country/mex;number of households that received cash assistance in the past 12 months, foreign nationals, country/mex" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,number of households in north america that received cash assistance in the past 12 months and are foreign-born;the number of households in north america that received cash assistance in the past 12 months and are not us citizens;the number of households in north america that received cash assistance in the past 12 months and were born outside of the us;the number of households in north america that received cash assistance in the past 12 months and are not native-born us citizens -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of households that received cash assistance in the past 12 months and were foreign-born from northern western europe;number of households that received cash assistance in the past year and were foreign-born from northern western europe;number of households that received cash assistance in the past 12 months and were born outside of the united states and in northern western europe;number of households that received cash assistance in the past year and were born outside of the united states and in northern western europe -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthOceania,number of households in oceania that received cash assistance in the past 12 months and were foreign-born;number of households in oceania that received cash assistance in the past 12 months and were born outside of oceania;number of households in oceania that received cash assistance in the past 12 months and were not born in oceania;number of households in oceania that received cash assistance in the past 12 months and were immigrants -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"number of households that received cash assistance in the past 12 months, foreign born, south central asia;number of households that received cash assistance in the past year, foreign born, south central asia;number of households that received cash assistance in the last 12 months, foreign born, south central asia;number of households that received cash assistance in the last year, foreign born, south central asia" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"number of households that received cash assistance in the past 12 months, and whose members were born in southeast asia" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,number of households in south america that received cash assistance in the past 12 months;number of south american households that received cash assistance in the past 12 months;number of households in south america that received cash assistance in the past year;number of south american households that received cash assistance in the past 365 days -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of households that received cash assistance in the past 12 months and were foreign-born from southern eastern europe;number of households that received cash assistance in the past 12 months and were born outside of the united states in southern eastern europe;number of households that received cash assistance in the past 12 months and were born in southern eastern europe but are not us citizens;number of households that received cash assistance in the past 12 months and are foreign nationals from southern eastern europe -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,number of households that received cash assistance in the past 12 months and were foreign-born from western asia;number of households that received cash assistance in the past 12 months and were born outside of the united states in western asia;number of households that received cash assistance in the past year and were born outside of the united states in western asia;number of households that received cash assistance in the past 12 months and were foreign-born from countries in western asia -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,number of households with earnings from foreign-born africans;number of households with earnings from africa;number of households with earnings from foreign-born people from africa;number of households with earnings from people from africa -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAsia,number of households with foreign-born asian earners;number of households with asian earners who were born outside the us;number of households with earners who were born in asia and are now living in the us;number of households with foreign-born asian residents who have earnings -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,"number of households with earnings, foreign born, caribbean;number of households with caribbean immigrants who have earnings;number of households with earnings, foreign born, and caribbean;number of households with earnings from the caribbean" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,number of households with earnings from central american immigrants except mexico;number of households with earnings from foreign-born central americans except mexicans;number of households with earnings from central american immigrants except mexicans;number of households with earnings from people born in central america but not mexico -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,number of households in eastern asia with earnings from people who were born in another country;number of households with foreign-born eastern asian residents who have earnings;number of households with eastern asian residents who were born outside the united states and have earnings;number of households with eastern asian immigrants who have earnings -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEurope,number of households in europe with earnings from people who are not citizens of europe;number of households in europe with earnings from people who are immigrants;number of households with earnings from foreign-born europeans;number of households with earnings from people who were born in europe but now live in the united states -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,number of households with foreign-born latin american earners;number of households with latin american-born earners;number of households with foreign-born earners from latin america;number of households with earners from latin america who were born abroad -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthMexico,"number of households with earnings, foreign born, country/mex" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,"number of households with earnings, foreign born, north america;number of households with foreign born earnings, north america;number of households with earnings in north america, foreign born;number of households with earnings in north america" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"number of households with earnings, foreign-born, northern western europe;number of households with earnings from northern western europe, foreign-born;number of households with earnings from people who were born in northern western europe;number of households in northern western europe with earnings from people who were not born in northern western europe" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthOceania,number of households in oceania where at least one person has earnings and is foreign-born;number of households in oceania with at least one person who is foreign-born and has earnings;number of households in oceania with earnings from people who are not citizens of oceania;number of households in oceania with earnings from people who are not native-born citizens of oceania -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,number of households with earnings from south central asia;number of households with earnings and foreign-born members from south central asia;number of households with earnings and at least one member from south central asia;number of households with at least one foreign-born member and earnings from south central asia -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of households with earnings from people who were born in southeast asia but now live in the united states -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,number of households with south american immigrants who have earnings;number of households with south american-born people who have earnings;number of households with earnings from south american immigrants;number of households with foreign-born south american members who have earnings -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of households with earnings from southern eastern european immigrants;number of households with earnings from people who were born in southern eastern europe but now live in the united states;number of households with earnings from people who are citizens of southern eastern european countries;number of households with earnings from people who are ethnically southern eastern european -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,number of households with foreign-born western asian residents who have earnings;number of households with western asian residents who were born outside the united states and have earnings;number of households with western asian residents who are immigrants and have earnings;number of households with western asian residents who are foreign-born and have earnings -Count_Household_WithFoodStampsInThePast12Months,the number of households that received food stamps in the past 12 months;the number of households that received snap benefits in the past 12 months;the number of households that received supplemental nutrition assistance program benefits in the past 12 months;the number of households that received food assistance in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,number of households that received food stamps in the past 12 months and were above the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and had an income above the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were not poor in the past 12 months;how many households received food stamps in the past 12 months and were above the poverty level in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of households with food stamps in the past 12 months with american indian or alaska native as the race of the household members;number of households with american indian or alaska native as the race of the household members who received food stamps in the past 12 months;number of households with american indian or alaska native as the race of the household members who received food assistance in the past 12 months;number of households with american indian or alaska native as the race of the household members who received supplemental nutrition assistance program (snap) benefits in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AsianAlone,number of households with asian race members who received food stamps in the past 12 months;number of households with asian race members who used food stamps in the past 12 months;number of households with asian race members who were food stamp recipients in the past 12 months;number of households with asian race members who were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,number of households that received food stamps in the past 12 months and were below the poverty level in the past 12 months;number of households that received food stamps and were below the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were at or below the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and had incomes below the poverty level in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,number of households with food stamps in the past 12 months where the race of the household members is black or african american alone;number of households that received food stamps in the past 12 months where the race of the household members is black or african american alone;number of households that were receiving food stamps in the past 12 months where the race of the household members is black or african american alone;number of households that were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months where the race of the household members is black or african american alone -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,how many family households received food stamps in the past 12 months?;how many family households used food stamps in the past 12 months?;how many family households were food stamp recipients in the past 12 months?;how many family households were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,number of households that received food stamps in the past 12 months and have no one who had a job in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months, -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,number of households that received food stamps in the past 12 months and were foreign-born from africa;number of households that received food stamps in the past 12 months and were born in africa;number of households that received food stamps in the past 12 months and were of african descent;number of households that received food stamps in the past 12 months and were from africa or of african descent -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAsia,number of households that received food stamps in the past 12 months and were foreign-born from asia;number of households that received food stamps in the past 12 months and were born in asia;number of households that received food stamps in the past 12 months and whose members were born in asia;number of households that received food stamps in the past 12 months and whose members were foreign-born and from asia -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,the number of households that received food stamps in the past 12 months and were foreign-born from the caribbean;the number of households that received food stamps in the past 12 months and were born outside of the united states in the caribbean region;the number of households that received food stamps in the past 12 months and were born in the caribbean;the number of households that received food stamps in the past 12 months and were of caribbean descent -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"number of households that received food stamps in the past 12 months and were foreign-born from central america, excluding mexico;number of households that received food stamps in the past 12 months and were born outside of the united states, but in central america, excluding mexico;number of households that received food stamps in the past 12 months and were born in central america, excluding mexico;number of households that received food stamps in the past 12 months and were foreign-born, but from central america, excluding mexico" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,number of households that received food stamps in the past 12 months and were foreign-born from eastern asia;number of households that received food stamps in the past 12 months and were born in eastern asia;number of households that received food stamps in the past 12 months and were foreign born from eastern asia;number of households that received food stamps in the past 12 months and are immigrants from eastern asia -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEurope,number of households that received food stamps in the past 12 months and were foreign-born in europe;number of households that received food stamps in the past 12 months and were born in europe but are not us citizens;number of households that received food stamps in the past 12 months and are not us citizens but were born in europe;number of households that received food stamps in the past 12 months and are foreign-born europeans -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,number of households that received food stamps in the past 12 months and were foreign-born from latin america;number of households that received food stamps in the past 12 months and were born in latin america but are now living in the united states;number of households that received food stamps in the past 12 months and are foreign-born from latin america;number of households that received food stamps in the past year and are foreign-born from latin america -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"number of households that received food stamps in the past 12 months, where the head of household was born outside of the united states;number of households that received food stamps in the past 12 months, where the head of household is foreign-born" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,number of households in north america that received food stamps in the past 12 months and are foreign-born;number of households in north america that have received food stamps in the past 12 months and were born outside of the us;number of households in north america that have received food stamps in the past 12 months and are not native-born us citizens;number of households in north america that have received food stamps in the past 12 months and have at least one foreign-born member -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of households that received food stamps in the past 12 months and were foreign-born from northern western europe;number of households that received food stamps in the past year and were foreign-born from northern western europe;number of households that received food stamps in the past 12 months and were born outside of the united states and came from northern western europe;number of households that received food stamps in the past year and were born outside of the united states and came from northern western europe -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthOceania,number of households that received food stamps in the past 12 months and are foreign-born in oceania;number of households that received food stamps in the past 12 months and are from oceania;number of households that received food stamps in the past 12 months and are not native-born in oceania;number of households that received food stamps in the past 12 months and are immigrants in oceania -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,number of households that received food stamps in the past 12 months and were foreign born from south central asia;number of households that received food stamps in the past 12 months and were born outside of the united states in south central asia;number of households that received food stamps in the past 12 months and were from south central asia but not born in the united states;number of households that received food stamps in the past 12 months and were foreign born and from south central asia -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of households that received food stamps in the past 12 months and were foreign born from south eastern asia;number of households that received food stamps in the past 12 months and were born outside of the united states in south eastern asia;number of households that received food stamps in the past 12 months and were born in south eastern asia but are not us citizens;number of households that received food stamps in the past 12 months and are not us citizens but were born in south eastern asia -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,number of households that received food stamps in the past 12 months and whose members were born in south america;number of households that received food stamps in the past 12 months and whose members were foreign-born south americans;number of households that received food stamps in the past 12 months and whose members were born in south america and are not us citizens;number of households that received food stamps in the past 12 months and whose members are south american-born immigrants -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of households that received food stamps in the past 12 months and were foreign-born from southern eastern europe;number of households that received food stamps in the past 12 months and were born outside of the united states in southern eastern europe;number of households that received food stamps in the past 12 months and were not born in the united states but were born in southern eastern europe;number of households that received food stamps in the past 12 months and were foreign-born from countries in southern eastern europe -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"number of households with food stamps in the past 12 months, foreign born, western asia;number of households that received food stamps in the past 12 months, foreign born, western asia;number of households that were receiving food stamps in the past 12 months, foreign born, western asia;number of households that were on food stamps in the past 12 months, foreign born, western asia" -Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,how many hispanic or latino households received food stamps in the past 12 months?;what is the number of hispanic or latino households that received food stamps in the past 12 months?;what is the percentage of hispanic or latino households that received food stamps in the past 12 months?;what is the proportion of hispanic or latino households that received food stamps in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,how many married couples received food stamps in the last year?;what is the number of married couples who received food stamps in the past 12 months?;what is the number of married families who have received food stamps in the past 12 months?;how many married households have received food stamps in the last year? -Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,how many native hawaiian or other pacific islander households received food stamps in the last year?;what is the number of native hawaiian or other pacific islander households that received food stamps in the last year?;how many native hawaiian or other pacific islander households received food stamps in the past year?;what is the number of native hawaiian or other pacific islander households that received food stamps in the past year? -Count_Household_WithFoodStampsInThePast12Months_NoDisability,how many non-disabled households received food stamps last year?;how many non-disabled households received snap benefits last year?;what is the number of non-disabled households that received food stamps last year?;how many non-disabled households received supplemental nutrition assistance program (snap) benefits last year? -Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,how many non-family households received food stamps in the last year?;how many people living alone or with non-relatives received food stamps in the last year?;what is the number of non-family households that received food stamps in the last year?;how many non-family households were receiving food stamps in the last year? -Count_Household_WithFoodStampsInThePast12Months_OtherFamilyHousehold,how many other family households received food stamps in the last year?;how many other family households have been receiving food stamps for the past year?;how many other family households are currently receiving food stamps?;how many other family households have received food stamps at any point in the last year? -Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,how many single father families received food stamps last year?;how many single father households were receiving food stamps in the last year?;how many single father households received food stamps in the last 12 months?;how many single father family households received food stamps last year -Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,the number of single-mother households receiving food stamps in the last year;the number of single mothers receiving food stamps in the last year;the number of households headed by single mothers receiving food stamps in the last year;the number of households with single mothers receiving food stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_SomeOtherRaceAlone,number of households who identify as some other race alone who received food stamps over the last year;number of households who identify as some other race alone who received snap benefits over the last year;number of households who identify as some other race alone who received supplemental nutrition assistance program benefits over the last year;number of households who identify as some other race alone who received food assistance over the last year -Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,the number of households receiving food stamps over the last year who identify as two or more races;the number of households receiving food stamps in the last year who identify as mixed race;how many households that identify as two or more races received food stamps in the last year?;what is the number of households receiving food stamps in the last year who identify as two or more races? -Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,what is the rate of food stamp participation among white households?;what is the prevalence of food stamp use among white households?;what is the rate of food stamp receipt among white households?;what is the prevalence of food stamp receipt among white households? -Count_Household_WithFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"how many households received food stamps in the last year that identify as white alone, not hispanic or latino?;what is the number of households that received food stamps in the last year that identify as white alone, not hispanic or latino?;how many households that identify as white alone, not hispanic or latino received food stamps in the last year?;what is the number of households that identify as white alone, not hispanic or latino that received food stamps in the last year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,how many households with children received food stamps last year?;what was the number of households with children who received food stamps last year?;how many households with children received food stamps in the past year?;what was the number of households with children who received food stamps in the past year? -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,how many married couples with children received food stamps last year?;what is the number of married families with children who received food stamps in the past year?;how many married households with children received food stamps in the last year?;what is the number of married families with children who received food stamps in the past 12 months? -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,how many non-family households with children received food stamps in the last year?;what is the number of non-family households with children who received food stamps in the last year?;how many non-family households with children were food stamp recipients in the last year?;what is the number of non-family households with children who were food stamp recipients in the last year? -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,how many other family households with children received food stamps over the last year?;how many family households with children received food stamps in the past year?;how many other family households with children received food stamps in the past year?;what is the number of other family households with children who received food stamps in the past year? -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,number of single father households with children who received food stamps last year;number of single father households with children who received snap benefits last year;number of single father families with children who received food stamps last year;number of single father families with children who received snap benefits last year -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,number of single-mother households with children who received food stamps last year;number of single mothers with children who received food stamps last year;number of households headed by single mothers with children who received food stamps last year;number of families headed by single mothers with children who received food stamps last year -Count_Household_WithFoodStampsInThePast12Months_WithDisability,how many households with disabled members received food stamps in the last year?;how many disabled households received food stamps in the past year?;how many households with disabled members received food stamps in the 12 months ending in the current month?;how many disabled households received food stamps in the last 12 months? -Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,number of households with people over 60 who received food stamps last year;number of households with people over 60 who received snap benefits last year;number of households with people over 60 who received supplemental nutrition assistance program benefits last year;number of households with people over 60 who received government assistance for food last year -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,how many households without children received food stamps in the last year?;what is the number of households without children that received food stamps in the last year?;how many households without children received food stamp benefits in the last year?;what is the number of households without children that received food stamp benefits in the last year? -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,the number of married couples without children who received food stamps in the last year;the number of married couples with no kids who received food stamps in the last year;the number of married couples without dependents who received food stamps in the last year;the number of married couples with no children under 18 who received food stamps in the last year -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,what is the number of non-family households without children who received food stamps in the last year?;what is the number of non-family households without children who received food stamp benefits in the last year?;what is the number of non-family households without children who were food stamp recipients in the last year?;what was the number of non-family households without children who received food stamps in the past year? -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,how many other family households without children received food stamps in the last year?;how many other family households without children received snap benefits in the last year?;how many other family households without children received supplemental nutrition assistance program benefits in the last year?;how many other family households without children received government assistance in the last year? -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,number of single-father households without children who received assistance in the past year;number of single-father households without children who received aid in the past year;number of single-father households without children who received support in the past year;number of single-father households without children who received help in the past year -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,number of single-mother households without children who received government assistance in the past year;number of single-mother families without children who received government benefits in the past year;number of single-mother households without children who received government aid in the past year;number of single-mother families without children who received government support in the past year -Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,number of households that received food stamps in the last year without any members over 60;number of households that received food stamps in the last year with no one over 60;number of households that received food stamps in the last year with no senior citizens;number of households that received food stamps in the last year with no one over the age of 60 -Count_Household_WithInternetSubscription,households with internet subscriptions;number of households with internet subscriptions;percentage of households with internet subscriptions;how many households have internet subscriptions? -Count_Household_WithInternetSubscription_BroadbandInternetOfAnyType,households with broadband internet access;households with high-speed internet access;households with broadband internet;households with high-speed home internet -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,"households with cable, fiber optic, or dsl internet;households with high-speed internet, such as cable, fiber optic, or dsl;households with cable internet access;households with fiber optic internet access" -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDslOnly, -Count_Household_WithInternetSubscription_CellularData,households with access to cellular data;households with cellular data plans;households with cellular internet;households with cellular data access -Count_Household_WithInternetSubscription_CellularDataOnly,"households that only have cellular data;households that rely solely on cellular data;households that are ""cellular-only"";households that use cellular data as their only internet connection" -Count_Household_WithInternetSubscription_DialUpInternetOnly,households with dial-up internet only;households that only have dial-up internet;households that use dial-up internet exclusively;households that are only connected to the internet via dial-up -Count_Household_WithInternetSubscription_OtherInternetServiceOnly,households with multiple internet services;households with more than one internet service;households with multiple internet providers;households with additional internet services -Count_Household_WithInternetSubscription_SatelliteInternetService,households with satellite internet service;households that use satellite internet;households that subscribe to satellite internet;households that have satellite internet -Count_Household_WithInternetSubscription_SatelliteInternetServiceWithNoOtherTypeOfInternetSubscription,households that only subscribe to satellite internet service;households that do not have any other type of internet service besides satellite internet;households that only subscribe to satellite internet;households that have satellite internet as their only internet subscription -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"number of households with retirement income in the past 12 months, foreign born, africa;number of households with retirement income in the past year, foreign born, africa;number of households with retirement income in the past 12 months, born outside of africa;number of households with retirement income in the past year, born outside of africa" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"number of households with retirement income in the past 12 months, foreign born, asia;number of households with retirement income in the past year, foreign born, asia;number of households with retirement income in the past 12 months, born outside the us, asia;number of households with retirement income in the past year, born outside the us, asia" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"number of households with retirement income in the past 12 months, foreign born, caribbean;number of households with retirement income in the past year, foreign born, caribbean;number of households with retirement income in the past 12 months, born outside the united states, caribbean;number of households with retirement income in the past year, born outside the united states, caribbean" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"number of households with retirement income in the past 12 months, foreign born, central america except mexico;number of households with retirement income in the past year, foreign born, central america except mexico;number of households with retirement income in the past 12 months, foreign born, central america excluding mexico;number of households with retirement income in the past year, foreign born, central america excluding mexico" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"number of households with retirement income in the past 12 months, foreign born, eastern asia;number of households with retirement income in the past year, foreign born, eastern asia;number of households with retirement income in the past 12 months, born outside the united states, eastern asia;number of households with retirement income in the past year, born outside the united states, eastern asia" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,number of households with foreign-born residents who received retirement income in the past 12 months in europe;number of european households with foreign-born residents who received retirement income in the past 12 months;number of households in europe with foreign-born residents who received retirement income in the past 12 months;number of households in europe with foreign-born residents who received retirement income in the past year -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"number of households with retirement income in the past 12 months, foreign born, latin america;number of households with latin american foreign-born residents who received retirement income in the past 12 months;number of households with latin american foreign-born residents who received retirement income in the past year;number of households with latin american foreign-born residents who received retirement income in the last 12 months" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"number of households with retirement income in the past 12 months, foreign born, country/mex" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"number of households with retirement income in the past 12 months, foreign-born, north america;number of households with foreign-born members who received retirement income in the past 12 months, north america;number of households with retirement income in the past 12 months, foreign born, north america;number of households with foreign-born members who received retirement income in the last 12 months, north america" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of households with foreign-born residents in northern western europe who received retirement income in the past 12 months;number of households in northern western europe with foreign-born residents who received retirement benefits in the past 12 months;number of households in northern western europe with foreign-born residents who received pension income in the past 12 months;number of households in northern western europe with foreign-born residents who received income from a retirement plan in the past 12 months -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"number of households with retirement income in the past 12 months, foreign born, oceania;number of households with retirement income in the past year, foreign born, oceania;number of households with retirement income in the past 12 months, born outside of the united states, oceania;number of households with retirement income in the past year, born outside of the united states, oceania" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,number of households with foreign-born residents from south central asia who received retirement income in the past 12 months;number of households with foreign-born residents from south central asia who received a pension in the past 12 months;number of households with foreign-born residents from south central asia who received retirement benefits in the past 12 months;number of households with foreign-born residents from south central asia who received income from a retirement account in the past 12 months -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"number of households with retirement income in the past 12 months, foreign born, south east asia;number of households with foreign-born residents who received retirement income in the past 12 months in south east asia;number of households in south east asia with foreign-born residents who received retirement income in the past 12 months;number of households in south east asia with foreign-born residents who received retirement income in the past year" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"number of households with south american foreign-born residents who received retirement income in the 12 months prior to the current date;number of households with south american foreign-born residents who received retirement income in the past year, as of the current date;number of households with retirement income in the past 12 months, foreign born, south america;number of households that received retirement income in the past 12 months, with south american foreign-born residents" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"number of households with foreign-born residents from southern eastern europe who received retirement income in the past 12 months;number of households with foreign-born residents from southern eastern europe who have retired;number of households with foreign-born residents from southern eastern europe who are no longer working and are living off of government or private retirement benefits;number of households with retirement income in the past 12 months, foreign born, southern eastern europe" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"number of households with retirement income in the past 12 months, foreign born, western asia;number of households with retirement income in the past year, foreign born, western asia;number of households with retirement income in the past 12 months, born outside the united states, western asia;number of households with retirement income in the past year, born outside the united states, western asia" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold,how many family households received supplemental security income or cash assistance over the last year;how many family households received supplemental security income or cash assistance in the last year;how many family households received supplemental security income or cash assistance in the past year;how many family households received supplemental security income or cash assistance in the 12 months prior to the current date -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,number of family households below poverty line who received supplemental security income or cash assistance over the last year;number of family households below poverty line who received supplemental security income or cash assistance in the last year;number of family households below poverty line who received supplemental security income or cash assistance in the past year;number of family households below poverty line who received supplemental security income or cash assistance in the 12 months prior to the current date -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold,how many married family households received supplemental security income or cash assistance over the last year?;what is the number of married family households that received supplemental security income or cash assistance over the last year?;what is the number of married family households that received supplemental security income or cash assistance in the past year?;how many married family households received supplemental security income or cash assistance in the past year? -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,number of married couples living below the poverty line who received supplemental security income (ssi) or cash assistance over the last year;number of married couples living in poverty who received ssi or cash assistance in the last year;number of married couples with incomes below the poverty line who received ssi or cash assistance in the last year;number of married-couple families living in poverty who received supplemental security income or cash assistance in the past year -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold,how many single-mother households received ssi or cash assistance in the last year?;how many single-mother families received ssi or cash assistance in the last year?;how many single mothers received ssi or cash assistance in the last year?;how many single-mother households received ssi or cash assistance in the last 12 months? -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,how many single-mother households were below the poverty line and received ssi or cash assistance in the last year?;how many single-mother families were living in poverty and receiving government assistance in the last year?;how many single-mother families are below the poverty line and receiving ssi or cash assistance in the last year?;how many single-mother households are living in poverty and receiving government assistance? -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"number of households with ssi in the past 12 months, foreign-born, africa;number of households with ssi in the past year, foreign-born, africa;number of households with ssi in the past 12 months, born outside the united states, africa;number of households with ssi in the past 12 months, foreign born, africa" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"number of households with ssi in the past 12 months, foreign born, asia;number of households with ssi in the past 12 months, born outside the united states, asia;number of households with ssi in the past 12 months, asia, foreign born;number of households with ssi in the past 12 months, born in asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"number of households with ssi in the past 12 months, foreign born, caribbean;number of households with ssi in the past 12 months, born outside the united states, caribbean;number of households with ssi in the past 12 months, born in the caribbean, foreign born;number of households that received ssi in the past 12 months and are foreign born from the caribbean" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"number of households with ssi in the past 12 months, foreign-born, central america except mexico;number of households with ssi in the past 12 months, born outside the united states, central america except mexico;number of households with ssi in the past 12 months, foreign born, central america except mexico;number of households with ssi in the past 12 months, born outside of the united states, central america except mexico" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"number of households with ssi in the past 12 months, foreign born, eastern asia;number of households with ssi in the past 12 months, born outside the united states, eastern asia;the number of households with ssi in the past 12 months that are foreign-born and from eastern asia;the number of households that received ssi in the past 12 months and are foreign-born from eastern asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"the number of households that received ssi in the past 12 months and whose members were born in europe or another country;number of households with ssi in the past 12 months, foreign-born, european countries;number of households with ssi in the past 12 months, europe, foreign-born;number of households with ssi in the past 12 months, foreign-born, european union" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"number of households with ssi in the past 12 months, foreign born, latin america;number of households with ssi in the past 12 months, born outside the united states, latin america;number of households with ssi in the past 12 months, latin america, foreign born;number of households with ssi in the past 12 months, latin american, foreign born" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"number of households with ssi in the past 12 months, foreign born, country/mex" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"number of households in north america with ssi in the past 12 months, foreign-born" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"number of households with ssi in the past 12 months, foreign born, northern western europe;number of households that received ssi in the past 12 months and are foreign born from northern western europe;number of households that received ssi in the past 12 months and were foreign born in northern western europe;number of households that received ssi in the past 12 months and were foreign-born residents of northern western europe" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"number of households with ssi in the past 12 months, foreign born, oceania;number of households with ssi in the past year, foreign born, oceania;number of households with ssi in the past 12 months, foreign-born, oceania;number of households with foreign-born residents who received ssi in the past 12 months in oceania" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"number of households with ssi in the past 12 months, foreign born, south central asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"number of households that received ssi in the past 12 months and were foreign born from southeast asia;number of households with ssi in the past 12 months, foreign born, south eastern asia;number of households with ssi in the past 12 months, not native-born, south eastern asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"number of households with ssi in the past 12 months, foreign born, southern eastern europe;number of households with ssi in the past 12 months, born outside the us, southern eastern europe;number of households with ssi in the past 12 months, southern eastern europe, foreign born;number of households that received ssi in the past 12 months and were foreign born in southern eastern europe" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"number of households with ssi in the past 12 months, foreign born, western asia;number of households with ssi in the past 12 months, foreign-born, western asia" -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,how many family households received social security income in the last year?;what is the number of family households that received social security income in the last year?;what is the total number of family households that received social security income in the last year?;how many family households received social security benefits in the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,how many family households received social security income last year while living below the poverty line?;how many family households lived below the poverty line and received social security income last year?;how many family households received social security income while living below the poverty line in the last year?;how many family households lived below the poverty line in the last year and received social security income? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,number of households receiving social security income over the last year who were born in africa;number of households receiving social security income in the last year whose members were born in africa;number of households receiving social security income in the last year with at least one member born in africa;number of households receiving social security income in the last year with at least one member who was born in africa -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,how many households received social security income in the last year that were headed by someone born in asia?;what is the number of households that received social security income in the last year and were headed by someone born in asia?;what is the total number of households that received social security income in the last year and were headed by someone born in asia?;how many households headed by someone born in asia received social security income in the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,how many households in the us received social security income last year and were born in a caribbean country?;how many caribbean-born households in the us received social security income last year?;what is the number of households in the us that received social security income last year and were born in a caribbean country?;how many households in the us received social security income last year whose members were born in a caribbean country? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,how many households in the us received social security income over the last year and were born in a central american country other than mexico?;what is the number of households in the us that received social security income over the last year and were born in a central american country other than mexico?;how many households in the us received social security income over the last year who were born in a central american country other than mexico?;what is the number of households in the us that received social security income over the last year who were born in a central american country other than mexico? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,how many households received social security income over the last year and were born in eastern asia?;how many households born in eastern asia received social security income over the last year?;how many households who were born in eastern asia received social security income over the last year?;how many households received social security income over the last year if they were born in eastern asia? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,how many european-born households received social security income last year?;what is the number of households born in europe that received social security income last year?;how many households that were born in europe received social security income last year?;what is the number of households that were born in europe that received social security income last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,how many households received social security income over the last year whose members were born in latin america?;how many households received social security income in the last year that had members born in latin america?;what is the number of households that received social security income in the last year and had members born in latin america?;what is the number of households that received social security income over the last year and whose members were born in latin america? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,how many mexican-born households received social security income in the last year?;how many households born in mexico received social security income in the last year?;what is the number of households born in mexico that received social security income in the last year?;what is the number of households that received social security income in the last year and were born in mexico? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,how many households received social security income over the last year and were born in north america?;how many north american-born households received social security income over the last year?;what is the number of households that received social security income over the last year and were born in north america?;what is the number of north american-born households that received social security income over the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,1 how many households in northern western europe received social security income in the last year?;2 what is the number of households in northern western europe that received social security income in the last year?;3 what percentage of households in northern western europe received social security income in the last year?;4 what is the rate of social security income receipt among households in northern western europe in the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,how many households in oceania received social security income last year;what is the number of households in oceania that received social security income last year;how many households in oceania received social security income in the past year;what is the number of households in oceania that received social security income in the past year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,number of south central asian households receiving social security income in the last year;number of households born in south central asia receiving social security income in the last year;number of households receiving social security income in the last year who were born in south central asia;number of households who were born in south central asia and received social security income in the last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,how many households received social security income over the last year if the head of household was born in a southeast asian country?;how many households received social security income in the past year if the head of household was born in a southeast asian country?;what is the number of households that received social security income in the past year if the head of household was born in a southeast asian country?;what is the number of households that received social security income over the last year if the head of household was born in a southeast asian country? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,how many households received social security income last year whose members were born in south america;how many households received social security income in the last year that had members born in south america;how many south american-born households received social security income in the last year;how many households with members born in south america received social security income last year -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,how many households received social security income over the last year whose members were born in a southern eastern european country?;how many households in the us received social security income over the last year whose members were born in a southern eastern european country?;how many households in the us received social security income over the last year whose members were born in a country in southern eastern europe?;how many households in the us received social security income over the last year whose members were born in a country in the balkans? -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,how many households received social security income over the last year whose members were born in a western asian country?;how many households in the us received social security income over the last year whose members were born in a western asian country?;what is the number of households in the us that received social security income over the last year whose members were born in a western asian country?;what is the number of households in the us whose members were born in a western asian country that received social security income over the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,number of married couples receiving social security income;number of social security recipients who are married couples;number of family households with married couples receiving social security income;number of family households with married couples who are social security recipients -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,the number of married couples who received social security income last year and were below the poverty line last year;the number of married couples who received social security income last year and were considered low-income last year;the number of married couples who received social security income last year and were living in poverty last year;how many married couples received social security income and were below the poverty line last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,how many single-mother households received social security income in the last year?;what is the number of single-mother households that received social security income in the last year?;how many single mothers received social security income in the last year?;what is the number of single mothers that received social security income in the last year? -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,how many single-mother families were below the poverty line and received social security income last year?;what is the number of single-mother families who were below the poverty line and received social security income last year?;how many single-mother families received social security income last year while living below the poverty line?;what is the number of single-mother families who received social security income last year while living below the poverty line? -Count_Household_WithoutFoodStampsInThePast12Months,number of households that did not receive food stamps in the last year;number of households that have not received food stamps in the last year;number of households that have not used food stamps in the last year;number of households that have not been on food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,the number of households that were above the poverty level and did not receive food stamps in the last year;the number of households that were not below the poverty level and did not receive food stamps in the last year;the number of households that were not food stamp recipients and were above the poverty level in the last year;number of households above the poverty line who have not received food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native households not receiving food stamps over the last year;the number of american indian or alaska native households that did not receive food stamps over the last year;the number of american indian or alaska native households that were not receiving food stamps over the last year;the number of american indian or alaska native households that have not received food stamps over the last year -Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,the number of asian households that did not receive food stamps in the last year;the number of asian households that were not food stamp recipients in the last year;the number of asian households that did not use food stamps in the last year;the number of asian households that were not on food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,number of households not receiving food stamps with incomes below the poverty line in the last year;number of households not receiving food stamps whose incomes were below the poverty line in the last year -Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,what percentage of african american households have not received food stamps in the last year?;what proportion of african american households have not received food stamps in the last year?;what number of african american households have not received food stamps in the last year?;how many african american households have not received food stamps in the last year? -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,the number of family households that did not receive food stamps in the last year;the number of family households that were not food stamp recipients in the last year;the number of family households that did not use food stamps in the last year;the number of family households that were not enrolled in the supplemental nutrition assistance program (snap) in the last year -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,number of family households without workers who did not receive food stamps in the last year;number of family households with no workers who did not receive food stamps in the last year;number of family households with no employed members who did not receive food stamps in the last year;number of family households with no income from employment who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,number of households with one worker who did not receive food stamps in the past year;number of families with one employed member who did not receive food stamps in the past year;number of families with one income earner who did not receive food stamps in the past year;number of one-worker family households that have not received food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,number of family households with two or more workers who did not receive food stamps in the last year;number of family households with two or more workers who did not use food stamps in the last year;number of family households with two or more workers who were not food stamp recipients in the last year;number of family households with two or more workers who did not receive government assistance in the form of food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,how many hispanic households didn't receive food stamps last year?;what's the number of hispanic households that didn't get food stamps last year?;how many hispanic households didn't receive government assistance for food last year?;what's the number of hispanic households that didn't get government assistance for food last year? -Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,the number of married couples in family households who did not receive food stamps in the last year;the number of married couples in family households who did not use food stamps in the last year;the number of married couples in family households who were not on food stamps in the last year;number of married couples in family households who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander households that did not receive food stamps in the last year;the number of native hawaiian or other pacific islander households that were not food stamp recipients in the last year;the number of native hawaiian or other pacific islander households that did not use food stamps in the last year;the number of native hawaiian or other pacific islander households that were not enrolled in food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,number of households that did not receive food stamps in the last year where no member has a disability;number of households that did not receive food stamps in the last year where no one has a disability;number of households that did not receive food stamps in the last year where no one is disabled or has a disability;number of households not receiving food stamps in the last year where no member has a disability -Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,number of non-family households not receiving food stamps in the past year;number of non-family households not receiving government assistance for food in the past year;number of non-family households not receiving government food assistance in the past year;how many non-family households did not receive government assistance for food in the last year? -Count_Household_WithoutFoodStampsInThePast12Months_OtherFamilyHousehold,"number of family households not receiving food stamps in the past year;number of family households not receiving food stamps in the last year;number of family households not receiving food stamps in the last 365 days;number of family households not receiving food stamps in the last year, as of today" -Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,the number of single father households not receiving food stamps in the last year;how many single father households did not receive food stamps in the last year;number of single-father households not receiving food stamps in the last year;the number of single father families not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,number of single-mother households not receiving food stamps in the last year;number of single-parent households not receiving food stamps in the last year;number of households headed by single mothers not receiving food stamps in the last year;number of households headed by single parents not receiving food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_SomeOtherRaceAlone,the number of households of solely other races that did not receive food stamps in the last year;the number of households of solely other races that were not receiving food stamps in the last year;the number of households of solely other races that did not receive food stamp benefits in the last year;the number of households of solely other races that were not receiving food stamp assistance in the last year -Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces,the number of multi-racial households that did not receive food stamps in the past year;the number of multi-racial households that did not use food stamps in the past year;the number of multi-racial households that were not food stamp recipients in the past year;the number of multi-racial households that were not on food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,the number of white households that did not receive food stamps in the past year;the percentage of white households that did not receive food stamps in the past year;the proportion of white households that did not receive food stamps in the past year;the number of white households that were not food stamp recipients in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,how many non-hispanic white households didn't receive food stamps last year?;how many non-hispanic white households were not on food stamps last year?;what is the number of non-hispanic white households that did not receive food stamps last year?;what is the number of non-hispanic white households that were not receiving food stamps last year? -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,the number of households with children who have not received food stamps in the past year;the number of households with children who have not used food stamps in the past year;the number of households with children who have not been on food stamps in the past year;the number of households with children who have not received government assistance in the form of food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,the number of married households with children who have not received food stamps in the past year;the number of married households with children who have not used food stamps in the past year;the number of married households with children who have not been on food stamps in the past year;the number of married households with children who have not received government assistance in the form of food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,number of non-family households with children who did not receive food stamps in the last year;number of non-family households with children who did not receive supplemental nutrition assistance program benefits in the last year;number of non-family households with children who did not receive government assistance in the last year;number of non-family households with children who were not food insecure in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,number of families with children who did not receive food stamps in the last year;number of families with children who were not food stamp recipients in the last year;number of family households with children who have not received food stamps in the past year;number of family households with children who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,number of single-father households with children who have not received food stamps in the past year;number of single fathers with children who have not received food stamps in the past year;number of households headed by single fathers with children who have not received food stamps in the past year;number of households with children headed by single fathers who have not received food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,number of single-mother households with children who did not receive food stamps in the last year;number of single-parent households with children who did not receive food stamps in the last year;number of households headed by single mothers with children who did not receive food stamps in the last year;number of households headed by single parents with children who did not receive food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithDisability,the number of households with children and disabled members who have not received food stamps in the past year;the number of households with disabled children who have not received food stamps in the past year;the number of households with children who have disabled members and have not received food stamps in the past year;the number of households with disabled members and children who have not received food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60,number of households with people over 60 who have not received food stamps in the past year;number of households with people over 60 who have not used food stamps in the past year;number of households with people over 60 who have not been on food stamps in the past year;number of households with people over 60 who have not received government assistance for food in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,the number of households without children who have not received food stamps in the past year;the number of households without children who have not been on food stamps in the past year;the number of households without children who have not received government assistance in the form of food stamps in the past 12 months;number of households without children who did not receive snap benefits in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,number of married households without children who did not receive food stamps in the past year;number of married households with no children who did not receive government assistance in the past year;number of married households with no dependents who did not receive food stamps in the past year;the number of married households without children who have not received food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,what is the number of non-family households without children who have not received food stamps in the last year?;how many non-family households without children have not received food stamps in the past year?;what is the number of non-family households without children who have not received food stamps in the past year?;how many non-family households without children have not received food stamps in the last 12 months? -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,number of family households without children who did not receive food stamps in the last year;number of other family households without children who have not received food stamps in the past year;number of other family households without children who have not received food stamps in the last 12 months;number of other family households without children who have not received food stamps in the last year period -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,number of single father households without children who did not receive food stamps in the past year;number of single father households without children who were not food stamp recipients in the past year;number of single father households without children who did not use food stamps in the past year;number of single father households without children who were not on food stamps in the past year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,number of single-mother households without children who have not received food stamps in the last year;number of single-mother households without children who have not used food stamps in the last year;number of single-mother households without children who have not been on food stamps in the last year;number of single-mother households without children who have not received government assistance in the form of food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,1 the number of households in the united states that do not have any people over the age of 60 and have not received food stamps in the last year;2 the number of households in the us that do not have any people over the age of 60 and have not used food stamps in the last year;3 the number of households in the us that do not have any people over the age of 60 and have not been on food stamps in the last year;4 the number of households in the us that do not have any people over the age of 60 and have not received government assistance in the form of food stamps in the last year -Count_HousingUnit,number of living spaces;number of housing stock;number of housing units;number of living quarters -Count_HousingUnit_CompleteKitchenFacilities_OccupiedHousingUnit,housing units with fully equipped kitchens;housing units with kitchens that have all the necessary appliances and utensils;housing units with kitchens that are ready to cook in;housing units with kitchens that are fully functional -Count_HousingUnit_CompletePlumbingFacilities_OccupiedHousingUnit,1 plumbing services that are comprehensive;2 plumbing services that are full-service;3 plumbing services that are all-inclusive;4 plumbing services that are one-stop shopping -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthAsia,the number of people born in asia who live in households with 1 person per room or more;the number of people who were born in asia and live in households with more than 1 person per room;the number of people who were born in asia and live in crowded housing;the number of people born outside of asia who live in households with one person per room or more -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthCaribbean,number of foreign-born people in the caribbean living in households with 1 person per room or more;number of people born outside of the caribbean living in households with 1 person per room or more in the caribbean;number of people born outside of the caribbean living in overcrowded housing in the caribbean;number of foreign-born people in the caribbean living in housing with more than 1 person per room -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthCentralAmericaExceptMexico,housing units occupied by foreign-born people from central america (excluding mexico) with one or more occupants per room;housing units occupied by foreign-born people from central america (excluding mexico) with more than one person per room;housing units occupied by foreign-born people from central america (excluding mexico) with multiple occupants per room;number of housing units occupied by foreign-born people from central america (excluding mexico) with one or more occupants per room -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthCountry/MEX,number of mexican immigrants living in overcrowded housing units;number of mexican-born people living in housing units with more than one person per room;percentage of mexican immigrants living in overcrowded housing units;percentage of mexican-born people living in housing units with more than one person per room -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthEasternAsia,the number of housing units in eastern asia with one or more occupants per room that are occupied by foreign-born people;the number of housing units in eastern asia that are occupied by foreign-born people and have one or more occupants per room;the number of housing units in eastern asia that are occupied by foreign-born people and have more people than rooms;number of housing units in eastern asia with more than one occupant per room occupied by foreign-born people -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthEurope,foreign-born population in europe living in housing units with one occupant per room or more;number of housing units in europe occupied by foreign-born people with one occupant per room or more;share of housing units in europe occupied by foreign-born people with one occupant per room or more;percentage of housing units in europe occupied by foreign-born people with one occupant per room or more -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthLatinAmerica,the number of people born in latin america living in households with one or more people per room;the number of people born in latin america living in housing with a high occupancy rate;the number of latin american immigrants living in housing with more people than rooms;the number of people born in latin america living in households with one person per room or more -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthNorthernWesternEurope,foreign-born people in northern western europe living in housing units with one occupant per room or more;people born outside of northern western europe living in housing units with one occupant per room or more in northern western europe;foreign-born people in northern western europe living in housing units with more than one person per room;people born outside of northern western europe living in housing units with more than one person per room in northern western europe -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthSouthCentralAsia,the number of housing units in south central asia occupied by foreign-born people with one person per room or more;the number of housing units in south central asia occupied by foreign-born people with more than one person per room;number of housing units in south central asia occupied by foreign-born people with 1 person per room or more;number of housing units in south central asia occupied by foreign-born people with more than 1 person per room -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthSouthEasternAsia,number of housing units occupied by foreign-born people with 1 or more occupants per room in south east asia;number of housing units occupied by people born outside the united states with 1 or more occupants per room in south east asia;number of housing units occupied by people who are not us citizens with 1 or more occupants per room in south east asia;number of housing units occupied by people who were not born in the united states with 1 or more occupants per room in south east asia -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthSouthamerica,housing units occupied by foreign-born south american owners with one or more occupants per room;housing units occupied by foreign-born south american owners with more than one person per room;housing units occupied by foreign-born south american owners with multiple occupants per room;housing units occupied by foreign-born south american owners with one or more people per room -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthSouthernEasternEurope,the number of people who were born outside of southern eastern europe and live in housing units with 1 occupant per room or more;the number of foreign-born people in southern eastern europe who live in crowded housing;the number of people who were not born in southern eastern europe and live in housing units with more than one person per room;the number of immigrants in southern eastern europe who live in overcrowded housing -Count_HousingUnit_ForeignBorn_1OrMoreOccupantsPerRoom_PlaceOfBirthWesternAsia,people who were born in western asia and live in housing with more than one person sharing a bedroom;people who were born in western asia and live in housing with more than one person per square meter;people who were born in western asia and live in housing units with more than one person per room;people who were born in western asia and live in housing units with more than one person sharing a bedroom -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,housing units occupied by people who are not us citizens but were born in asia -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,foreign-born people living in the caribbean and their housing units;housing units occupied by people born outside of the caribbean;the number of housing units occupied by people born outside of the caribbean;the percentage of housing units occupied by people born outside of the caribbean -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"housing units occupied by people born in central america but not mexico;number of housing units occupied by central american immigrants, excluding mexico;number of homes occupied by people who immigrated to the united states from central america but not mexico;central american foreign-born population living in housing units" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCountry/MEX,foreign-born population in mexico living in housing units;housing units occupied by people born outside of mexico;people born outside of mexico living in housing units in mexico;housing units in mexico occupied by people who were not born there -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,the number of housing units occupied by people who were born in eastern asia;the number of apartments that people who were born in eastern asia live in;the number of dwellings that people who were born in eastern asia live in;housing units occupied by foreign-born population in eastern asia -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,number of foreign-born people living in europe who own or rent housing units;foreign-born people living in europe and their housing situation;the percentage of the foreign-born population in europe who own or rent housing;the distribution of foreign-born people in europe by housing type -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,homes of latin american immigrants;housing occupied by latin american immigrants;latin american immigrants' homes;housing for latin american immigrants -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,the number of foreign-born people living in northern western europe who own or rent housing units;the proportion of foreign-born people in northern western europe who live in housing units;the number of foreign-born people in northern western europe who live in housing units as a percentage of the total population;the percentage of the population in northern western europe that is foreign-born and lives in housing units -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,number of south central asian foreign nationals living in occupied housing units;number of south central asian people living in occupied housing units who were not born in the united states;south central asian population in occupied housing units that were born outside the united states;foreign-born population from south central asia in occupied housing units -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,proportion of foreign-born people living in occupied housing units in south-east asia;share of foreign-born people living in occupied housing units in south-east asia -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,housing units in south america occupied by people who were born in other countries;housing occupied by foreign-born people in south america;housing units in south america occupied by people who are not citizens of south america;housing units in south america occupied by people who are not native-born south americans -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,person born in southern eastern europe living in an occupied housing unit;person born in southern eastern europe who lives in an occupied housing unit;person who was born in southern eastern europe and currently resides in a housing unit that is occupied;person who was born in southern eastern europe and currently lives in a home that is occupied -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,number of housing units occupied by tenants born in western asia;number of housing units occupied by foreign-born tenants from western asia;number of households occupied by tenants born in western asia;number of households occupied by foreign-born tenants from western asia -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthAfrica,number of people born outside of africa who live in occupied housing units in africa;number of foreign-born people living in occupied housing units in africa;number of people who were not born in africa but live in occupied housing units in africa;number of people who are not citizens of africa but live in occupied housing units in africa -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthAsia,the number of people born outside of asia who live in owner-occupied housing units in asia -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthCaribbean,the caribbean foreign-born population living in occupied housing units;the number of foreign-born people from the caribbean living in occupied housing units;population of foreign-born people in the caribbean living in occupied housing units;number of foreign-born people in the caribbean living in occupied housing units -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthCentralAmericaExceptMexico,the number of occupied housing units in central america by foreign-born people;the percentage of housing units in central america occupied by foreign-born people;the proportion of housing units in central america occupied by foreign-born people;the share of housing units in central america occupied by foreign-born people -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthEasternAsia,eastern asian foreign nationals living in housing units;eastern asian expats living in residences -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthEurope, -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthLatinAmerica,foreign-born owners of housing units in latin america;housing units in latin america occupied by foreign-born owners;the number of housing units in latin america occupied by foreign-born owners;the percentage of housing units in latin america occupied by foreign-born owners -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthMexico,mexican-occupied housing units;housing units occupied by foreign-born mexicans;housing units occupied by mexican immigrants;housing units occupied by mexican nationals -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthNorthamerica,foreign-born population in north america living in housing units;housing units in north america occupied by foreign-born people;north american housing units occupied by people who were born in other countries;housing units in north america occupied by people who are not citizens of the united states -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthNorthernWesternEurope, -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthOceania,how many occupied housing units in oceania are occupied by foreign-born people?;what percentage of occupied housing units in oceania are occupied by foreign-born people?;what is the number of occupied housing units in oceania that are occupied by people who were born in another country?;what is the percentage of occupied housing units in oceania that are occupied by people who are not citizens of oceania? -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthCentralAsia,south central asian foreign-born residents in housing units;south central asian residents born outside of the country in housing units -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthEasternAsia,foreign-born population in south-eastern asia owner-occupied housing units;south-east asian owner-occupied housing units with foreign-born residents;housing units in south-east asia that are owned by foreign-born residents;the number of south-east asian residents who are homeowners and were not born in the region -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthamerica,housing units occupied by people born outside of south america;housing units occupied by people who have immigrated to south america;housing units occupied by immigrants in south america;the number of south american housing units occupied by foreign-born people -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthernEasternEurope,people who were born in southern eastern europe and are homeowners;people who were born in southern eastern europe and own their own property;people who were born in southern eastern europe and are property owners;people who were born in southern eastern europe and own houses that they live in -Count_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthWesternAsia, -Count_HousingUnit_ForeignBorn_PlaceOfBirthAfrica_NoTelephoneService,number of occupied housing units with no telephone service in africa;number of housing units with occupants born outside of the united states and no telephone service in africa;number of occupied housing units in africa with no telephone service;number of occupied housing units with residents from africa and no telephone service -Count_HousingUnit_ForeignBorn_PlaceOfBirthAsia_NoTelephoneService,housing units occupied by foreign-born population in asia without telephone services;number of homes in asia with no phone service occupied by foreign-born residents;number of homes in asia occupied by foreign-born residents with no phone service;number of homes in asia with no phone service occupied by people born outside of asia -Count_HousingUnit_ForeignBorn_PlaceOfBirthCaribbean_NoTelephoneService,foreign-born households in the caribbean without telephone service;housing units in the caribbean with foreign-born residents and no telephone service;caribbean households with foreign-born residents and no telephone service;households in the caribbean with no telephone service and foreign-born residents -Count_HousingUnit_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_NoTelephoneService,"number of homes in central america, excluding mexico, occupied by foreign-born people without telephone service;number of housing units in central america, excluding mexico, occupied by people who were born in another country and do not have a telephone;number of homes in central america, excluding mexico, occupied by foreign-born residents who do not have a telephone;number of housing units in central america, excluding mexico, occupied by people who were born in another country and do not have a landline" -Count_HousingUnit_ForeignBorn_PlaceOfBirthEasternAsia_NoTelephoneService,"the number of foreign-born people in eastern asia who live in housing units without telephone service;the proportion of foreign-born people in eastern asia who live in housing units without telephone service;the share of foreign-born people in eastern asia who live in housing units without telephone service;the number of foreign-born people in eastern asia who live in housing units without telephone service, as a percentage of the total foreign-born population in eastern asia" -Count_HousingUnit_ForeignBorn_PlaceOfBirthEurope_NoTelephoneService,number of people living in europe without telephone service;number of people in europe who do not have a telephone;number of people in europe who live in homes without a telephone;number of people in europe who live in households without a telephone -Count_HousingUnit_ForeignBorn_PlaceOfBirthLatinAmerica_NoTelephoneService,number of latin american households with foreign-born residents who do not have a landline phone;number of latin american households with foreign-born residents who do not have a mobile phone;number of latin american households with foreign-born residents who do not have any type of phone service;number of latin american households with foreign-born residents who are not connected to the phone network -Count_HousingUnit_ForeignBorn_PlaceOfBirthMexico_NoTelephoneService,household of foreign-born people from mexico living in a housing unit without telephone service;home of foreign-born people from mexico living in a housing unit without telephone service;dwelling of foreign-born people from mexico living in a housing unit without telephone service;residence of foreign-born people from mexico living in a housing unit without telephone service -Count_HousingUnit_ForeignBorn_PlaceOfBirthNorthamerica_NoTelephoneService,number of housing units in north america occupied by foreign-born population without telephone services;number of homes in north america occupied by foreign-born people without phone service;number of housing units in north america where the residents were born outside of the country and do not have a phone;number of homes in north america where the residents were born outside of the country and do not have a telephone -Count_HousingUnit_ForeignBorn_PlaceOfBirthNorthernWesternEurope_NoTelephoneService,dwelling unit occupied by people born outside of northern western europe without telephone service;housing unit occupied by foreign-born people in northern western europe that does not have telephone service;occupied housing unit in northern western europe without telephone service that is occupied by foreign-born people;housing unit occupied by foreign-born people in northern western europe without telephone service -Count_HousingUnit_ForeignBorn_PlaceOfBirthOceania_NoTelephoneService,housing units occupied by foreign-born people in oceania without telephone services;housing units occupied by people born outside of oceania without telephone services;housing units occupied by immigrants in oceania without telephone services;housing units occupied by people who are not citizens of oceania without telephone services -Count_HousingUnit_ForeignBorn_PlaceOfBirthSouthCentralAsia_NoTelephoneService,the number of people born in another country living in south central asia who live in housing units without telephone services;the percentage of people born in another country living in south central asia who live in housing units without telephone services;the proportion of people born in another country living in south central asia who live in housing units without telephone services;the share of people born in another country living in south central asia who live in housing units without telephone services -Count_HousingUnit_ForeignBorn_PlaceOfBirthSouthEasternAsia_NoTelephoneService,number of households in south east asia occupied by people born in south east asia without telephone service;percentage of households in south east asia occupied by people born in south east asia without telephone service;share of households in south east asia occupied by people born in south east asia without telephone service -Count_HousingUnit_ForeignBorn_PlaceOfBirthSouthamerica_NoTelephoneService,foreign-born people living in south america without telephone services;housing units in south america occupied by foreign-born people without telephone services;the number of housing units in south america occupied by foreign-born people without telephone services;the percentage of housing units in south america occupied by foreign-born people without telephone services -Count_HousingUnit_ForeignBorn_PlaceOfBirthSouthernEasternEurope_NoTelephoneService,foreign-born people living in south eastern europe without telephone services;housing units occupied by foreign-born people in south eastern europe without telephone services;foreign-born people in south eastern europe who do not have telephone services;housing units occupied by foreign-born people in south eastern europe who do not have telephone services -Count_HousingUnit_ForeignBorn_PlaceOfBirthWesternAsia_NoTelephoneService,the number of people born in western asia who do not have telephone service;the percentage of the population in western asia that is foreign-born and does not have telephone service;the number of foreign-born people in western asia who do not have a landline or mobile phone;the percentage of foreign-born people in western asia who do not have access to a telephone -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthAfrica,population of foreign-born people living in housing units;number of people born outside the united states who live in housing units;percentage of the population who are foreign-born and live in housing units;number of housing units occupied by foreign-born people -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthAsia, -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthCaribbean,housing units occupied by caribbean-born tenants;housing units occupied by tenants born in the caribbean;housing units occupied by tenants who were born in the caribbean;housing units occupied by tenants who are foreign-born and from the caribbean -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthCentralAmericaExceptMexico,"the number of central american immigrants, excluding mexicans, who live in rental properties;central american foreign-born population in rented occupied housing units;number of foreign-born central americans living in rented housing units;population of central american immigrants (excluding mexicans) living in rented homes" -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthEasternAsia,housing units occupied by people who have moved to eastern asia from other countries;housing units occupied by people who are not citizens of eastern asia;occupied housing units in eastern asia with foreign-born residents;occupied housing units occupied by foreign-born population in eastern asia -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthEurope,housing units occupied by foreign-born people in europe;the number of housing units occupied by foreign-born people in europe;the percentage of housing units occupied by foreign-born people in europe;the proportion of housing units occupied by foreign-born people in europe -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthLatinAmerica,home occupied by immigrants in latin america;residence occupied by people who were not born in latin america -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthMexico,housing units rented by tenants born in mexico;rental properties occupied by tenants from mexico;rental homes occupied by tenants born in mexico;rental apartments occupied by tenants from mexico -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthNorthamerica,foreign-born renters in north america;renters in north america who were born outside of north america;north american housing units occupied by renters who were born outside of north america;housing units in north america occupied by renters who were not born in north america -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthNorthernWesternEurope,housing units occupied by foreign-born people in northern western europe;housing units in northern western europe occupied by people who were not born in the country;housing units in northern western europe occupied by people who are not citizens of the country;housing units in northern western europe occupied by people who are not native to the country -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthOceania,proportion of housing units owned by foreign-born people in oceania;percentage of housing units owned by foreign-born people in oceania;number of housing units owned by foreign-born people in oceania;share of housing units owned by foreign-born people in oceania -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthCentralAsia, -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthEasternAsia,number of foreign-born people living in housing units in southeast asia;the number of people born outside of southeast asia who live in housing units in southeast asia;the percentage of the population in southeast asia that is foreign-born and the type of housing they occupy;foreign-born people living in south east asia and their housing situation -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthamerica,what is the count of south american foreign-born people living in renter-occupied housing units? -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthernEasternEurope,housing unit occupied by foreign-born renters in southern eastern europe;housing unit rented by foreign-born people in southern eastern europe;housing unit where foreign-born people are the renters in southern eastern europe;housing unit where foreign-born people live and pay rent in southern eastern europe -Count_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthWesternAsia,housing units occupied by people who were born outside of western asia;the number of housing units occupied by people who were born outside of western asia;the proportion of housing units occupied by people who were born outside of western asia;population of western asia born outside the country living in housing units -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthAfrica,"housing unit with foreign-born residents, 0 available vehicles, occupied, in africa;housing unit in africa, occupied, with foreign-born residents, and 0 available vehicles;an occupied housing unit in africa has 0 available vehicles and foreign-born residents" -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthAsia,housing units occupied by people who were born in asia and do not lease any vehicles;housing units occupied by foreign-born asians with no available vehicles;housing units occupied by people born in asia with 0 available vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthCaribbean,housing unit occupied by caribbean residents and 0 available vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthCentralAmericaExceptMexico,"there is 1 occupied housing unit in central america except mexico with 0 available vehicles, and the residents were not born in the united states of america;number of occupied housing units in central america excluding mexico with 0 available vehicles and foreign-born residents;number of occupied housing units with 0 available vehicles in central america except mexico that are occupied by foreign-born people;number of occupied housing units in central america except mexico with 0 available vehicles" -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthEasternAsia, -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthEurope,number of foreign-born people in europe living in occupied housing units with 0 available vehicles;number of foreign-born people in europe living in occupied housing units with no available vehicles;number of foreign-born people in europe living in occupied housing units with no cars;number of foreign-born people in europe living in occupied housing units without cars -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthLatinAmerica,latin american immigrant living in an occupied housing unit with no available vehicles;foreign-born person from latin america living in a home with no cars;latin american-born person living in a house with no vehicles;person born in latin america living in a residence with no cars -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthMexico,the number of foreign-born people in mexico living in housing units with no available vehicles;the number of foreign-born people in mexico who do not own a vehicle;the number of foreign-born people in mexico who live in households without a car;the number of foreign-born people in mexico who do not have access to a car -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthNorthamerica,foreign-born population in north america living in housing units with 0 available vehicles;number of foreign-born people in north america living in housing units with 0 available vehicles;percentage of foreign-born people in north america living in housing units with 0 available vehicles;share of foreign-born people in north america living in housing units with 0 available vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthNorthernWesternEurope,foreign-born people living in northern western europe who own no vehicles;housing units occupied by foreign-born people in northern western europe with no available vehicles;housing units occupied by foreign-born people in northern western europe with zero available vehicles;housing units occupied by foreign-born people in northern western europe with no cars -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthOceania,housing units occupied by people born outside oceania who do not own a vehicle;housing units occupied by foreign-born people in oceania who do not own a vehicle;housing units occupied by people born outside oceania who do not have a car;housing units occupied by foreign-born people in oceania who do not have a car -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthSouthCentralAsia,number of housing units occupied by foreign-born people in south central asia with no vehicles;number of homes occupied by foreign-born people in south central asia with no cars;number of houses occupied by foreign-born people in south central asia with no automobiles;number of dwellings occupied by foreign-born people in south central asia with no vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthSouthEasternAsia,person born in southeast asia living in an occupied housing unit with 0 available vehicles;foreigner from southeast asia living in a house with no cars;person who was born in southeast asia and now lives in a house with no cars;someone who was born in southeast asia and now lives in a home with no vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthSouthamerica,housing units occupied by foreign-born people from south america with no available vehicles;housing units occupied by people born in south america who do not own any vehicles;housing units occupied by south american immigrants with no vehicles;housing units occupied by south american expats with no vehicles -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthSouthernEasternEurope,housing units occupied by foreign-born people in southern eastern europe without available vehicles;occupied housing units in southern eastern europe with foreign-born residents and no available vehicles;housing units in southern eastern europe occupied by foreign-born people and without available vehicles;housing units in southern eastern europe occupied by people who were born outside of the country and do not have access to a vehicle -Count_HousingUnit_ForeignBorn_With0AvailableVehicles_PlaceOfBirthWesternAsia,foreign-born population in western asia living in housing units without vehicles;housing units in western asia occupied by foreign-born people without vehicles;foreign-born people living in housing units in western asia without vehicles;housing units in western asia occupied by people born outside of the country without vehicles -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthAfrica,percentage of foreign-born people in africa with one or more vehicles per occupied housing unit;share of foreign-born people in africa with one or more vehicles per occupied housing unit;proportion of foreign-born people in africa with one or more vehicles per occupied housing unit;number of foreign-born people in africa with one or more vehicles per occupied housing unit divided by the number of occupied housing units in africa -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthAsia,people born outside of the united states who live in households with one or more cars;people who were not born in the united states and live in households with one or more vehicles;foreign-born people living in housing units with 1 available vehicle;immigrants living in housing units with 1 available vehicle -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthCaribbean,people born in the caribbeans who own at least one vehicle and live in an occupied housing unit;foreign-born caribbeans with at least one vehicle and an occupied housing unit;caribbeans who were born in another country and own at least one vehicle and live in an occupied housing unit;people who were born in the caribbeans and live in an occupied housing unit with at least one vehicle -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthCentralAmericaExceptMexico,"people born in central america, excluding mexico, living in housing units with one or more vehicles;central americans, excluding mexicans, living in homes with one or more vehicles;central american immigrants living in homes with one or more vehicles;foreign-born central americans living in homes with one or more vehicles" -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthEasternAsia,housing units occupied by foreign-born people in eastern asia with 1 or more available vehicles;housing units in eastern asia with 1 or more available vehicles occupied by foreign-born people;housing units occupied by foreign-born people in eastern asia that have 1 or more available vehicles;housing units in eastern asia that have 1 or more available vehicles and are occupied by foreign-born people -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthEurope,housing units in europe occupied by foreign-born people with 1 vehicle;housing units in europe occupied by people born outside of europe with 1 vehicle;housing units in europe occupied by people who are not citizens of europe with 1 vehicle;housing units in europe occupied by people who are not native to europe with 1 vehicle -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthLatinAmerica,latin american immigrants with one car per household;foreign-born latin americans with one car per home;immigrants from latin america with one car per residence;people born in latin america who live in the us and have one car per household -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthMexico,housing units for foreign-born population in mexico with 1 or more available vehicles;housing units for foreign-born population in mexico with available vehicles;housing units for foreign-born population in mexico with at least 1 available vehicle;housing units for foreign-born population in mexico with more than 0 available vehicles -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthNorthamerica,number of housing units occupied by foreign-born people in north america with one or more available vehicles;number of north american housing units occupied by people born outside of north america with one or more available vehicles;number of housing units occupied by foreign-born people in north america with at least one available vehicle;number of north american housing units occupied by people born outside of north america with at least one available vehicle -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthNorthernWesternEurope,number of housing units occupied by people born in north western europe with 1 available vehicle;number of homes occupied by people from north western europe with 1 car;number of houses occupied by people from north western europe with 1 vehicle;number of dwellings occupied by people from north western europe with 1 car -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthOceania,foreign-born people living in oceania who own at least 1 vehicle;the number of foreign-born people in oceania who have one vehicle available to them;the number of people who were born outside of oceania and live in oceania in housing units with one vehicle;the number of people who were not born in oceania but live in oceania in housing units with one vehicle that is available to them -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthSouthCentralAsia,the number of foreign-born people in south central asia with at least one vehicle;the number of occupied housing units in south central asia with at least one vehicle occupied by a foreign-born person;the number of foreign-born people in south central asia who own at least one vehicle;the number of occupied housing units in south central asia with at least one vehicle owned by a foreign-born person -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthSouthEasternAsia,"foreign-born people from southeast asia who own at least one vehicle and live in a house;people who were born in southeast asia and now live in the united states, own at least one vehicle, and live in a home;people who were born in southeast asia and have at least one vehicle and live in a house or apartment;people who were born in southeast asia and own at least one car and live in a residence" -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthSouthamerica,number of housing units occupied by people born in south america who have 1 vehicle;number of housing units occupied by foreign-born south americans with 1 vehicle;number of housing units occupied by people who were born in south america and have 1 vehicle available to them;number of housing units occupied by people who were born in south america and have 1 vehicle available for their use -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthSouthernEasternEurope,the number of housing units occupied by foreign-born people from southern eastern europe with one or more vehicles;the number of homes where people from southern eastern europe who were born in another country live and have one or more vehicles;the number of places where people from southern eastern europe who were born in another country live and have at least one car;the number of residences where people from southern eastern europe who were born in another country live and have at least one vehicle -Count_HousingUnit_ForeignBorn_With1OrMoreAvailableVehicles_PlaceOfBirthWesternAsia,the number of housing units occupied by people born in western asia who have at least one vehicle;the number of homes occupied by people who were born in western asia and have at least one car;the number of residences occupied by people who were born in western asia and have at least one vehicle;the number of dwellings occupied by people who were born in western asia and have at least one vehicle -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,number of people with bachelor's degrees or higher living in housing units divided by the total number of people living in housing units -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OwnerOccupied,housing units occupied by owners with bachelor's degrees or higher;housing units occupied by owners with at least a bachelor's degree;homes owned by people with bachelor's degrees or higher;residential properties owned by people with bachelor's degrees or higher -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied, -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OccupiedHousingUnit,high school graduates and equivalency holders living in occupied housing units;people who have graduated from high school or have an equivalency degree live in occupied housing units;people who have finished high school or have an equivalent qualification live in occupied residences;people who have completed high school or have an equivalent qualification live in occupied homes -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OwnerOccupied,housing units occupied by high school graduates includes equivalency;housing units occupied by high school graduates includes other high school diploma equivalents;housing units are occupied by people who have graduated from high school or have an equivalency degree;housing units occupied by high school graduates include those occupied by people who have equivalent qualifications -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_RenterOccupied,housing units occupied by tenants who have completed high school or equivalent;housing units occupied by tenants who have a high school diploma or ged;housing units occupied by tenants who have a high school education;housing units occupied by tenants who are high school graduates -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OccupiedHousingUnit,homes occupied by people who did not graduate from high school;housing units occupied by people with less than a high school diploma;housing units occupied by people with no high school diploma;housing units occupied by people with some high school education but no diploma -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OwnerOccupied,not many people who have not graduated from high school own property;a small portion of people who have not graduated from high school own real estate;home ownership is low among people with less than a high school diploma;a small number of people with less than a high school diploma own homes -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_RenterOccupied,homes of people who did not graduate from high school;homes of renters who did not complete high school;dwellings of tenants with less than a high school diploma;residences of less-than-high-school-educated renters -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OccupiedHousingUnit,housing units occupied by people with some college or associate's degrees;housing units occupied by people who have some college or associate's degrees;housing units occupied by people who have some college experience;housing units occupied by people who have some college education -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OwnerOccupied,people who own homes and have some college or an associate's degree;homeowners with some college or an associate's degree;people who own housing units and have some college or an associate's degree;people who own houses and have some college or an associate's degree -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_RenterOccupied, -Count_HousingUnit_HouseholderRaceAmericanIndianAndAlaskaNativeAlone,housing for american indians or alaska natives;homes for american indians or alaska natives;dwellings for american indians or alaska natives;accommodations for american indians or alaska natives -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,number of homes where the head of household identifies as american indian or alaska native only;number of homes with an american indian or alaska native head of household;number of homes with an american indian or alaska native as the householder;number of homes with an american indian or alaska native householder -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_OwnerOccupied,housing units occupied by american indians or alaska natives;housing units occupied by native americans;housing units occupied by alaska natives;housing units occupied by indigenous peoples of the united states -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_RenterOccupied,the number of american indian or alaska native people living in housing units;the percentage of american indian or alaska native people living in housing units;the proportion of american indian or alaska native people living in housing units;the american indian or alaska native population living in housing units -Count_HousingUnit_HouseholderRaceAsianAlone,number of homes where the householder identifies as asian alone;number of households with an asian householder;number of homes with an asian head of household;number of households where the householder is asian -Count_HousingUnit_HouseholderRaceAsianAlone_OwnerOccupied,the number of housing units occupied by people of asian descent;the number of properties that are occupied by people of asian descent;the number of dwellings that are occupied by people of asian descent;number of houses occupied by people of asian descent -Count_HousingUnit_HouseholderRaceAsianAlone_RenterOccupied,asian housing units with people living in them -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,number of households with a black or african american householder;number of homes with a black or african american head of household;number of homes with a black or african american householder;number of households where the householder is black or african american -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_OwnerOccupied,african american-occupied housing units;housing units occupied by african americans;housing units where the occupants are african american;housing units where the majority of occupants are african american -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_RenterOccupied,african american population living in rented housing units;number of african americans living in rented housing units;percentage of african americans living in rented housing units;share of african americans living in rented housing units -Count_HousingUnit_HouseholderRaceHispanicOrLatino,number of households with a hispanic or latino householder;number of homes with hispanic or latino householders;number of homes with hispanic or latino heads of household;number of homes where the householder is hispanic or latino -Count_HousingUnit_HouseholderRaceHispanicOrLatino_OwnerOccupied,hispanic homeowners;hispanic home owners;hispanic people who own property;hispanic people who are homeowners -Count_HousingUnit_HouseholderRaceHispanicOrLatino_RenterOccupied,housing units occupied by hispanic renters;homes rented by hispanic people;dwellings rented by hispanic people;places of residence rented by hispanic people -Count_HousingUnit_HouseholderRaceNativeHawaiianAndOtherPacificIslanderAlone,native hawaiians or other pacific islanders who own or rent a home;native hawaiians or other pacific islanders who have a roof over their heads;native hawaiians or other pacific islanders who have a place to call home;native hawaiians or other pacific islanders who own or rent homes -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,3 number of residences with a native hawaiian or other pacific islander as the main resident;4 number of dwellings with a native hawaiian or other pacific islander as the primary resident;5 number of households where the householder identifies as native hawaiian or other pacific islander only;number of residences with a native hawaiian or other pacific islander as the primary resident -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_OwnerOccupied,number of housing units occupied by native hawaiian or other pacific islander population;number of native hawaiian or other pacific islander occupied housing units;number of housing units with native hawaiian or other pacific islander occupants;number of housing units that are occupied by native hawaiian or other pacific islanders -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_RenterOccupied,native hawaiian or other pacific islander population in rented housing units;number of native hawaiian or other pacific islander people living in rented housing units;percentage of native hawaiian or other pacific islander people living in rented housing units;share of native hawaiian or other pacific islander people living in rented housing units -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone,number of homes where the householder identifies as some other race alone;number of households where the householder identifies as some other race only;number of homes where the householder identifies as some other race exclusively;number of households where the householder identifies as some other race solely -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_OwnerOccupied,home owned by someone of a different race;1 housing unit occupied by an owner of some other race;2 housing unit owned by someone of some other race;3 housing unit occupied by an owner who is not white -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_RenterOccupied,people of other races living in housing units;housing units occupied by people of other races;housing units occupied by people who are not of the majority race -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,number of homes with householders who identify as two or more races;number of homes with mixed-race householders;number of homes with householders of multiple races;homes with householders identifying as two or more races -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied, -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied, -Count_HousingUnit_HouseholderRaceWhiteAlone,homes with a white householder;homes where the householder is white;homes where the householder identifies as white;5 the number of places of residence with a white occupant -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino,"white people who are not hispanic and have housing units;people who are white, not hispanic, and live in a house or apartment;white, non-hispanic people living in housing units;white, non-hispanic people who live in dwellings" -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_OwnerOccupied,housing units occupied by white and non-hispanic people -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_RenterOccupied,the number of housing units occupied by white non-hispanics;the percentage of housing units occupied by white non-hispanics;the proportion of housing units occupied by white non-hispanics;the share of housing units occupied by white non-hispanics -Count_HousingUnit_HouseholderRaceWhiteAlone_OwnerOccupied,1 housing units occupied by white people;2 housing units with a white majority;3 housing units with a white population of at least 50%;4 housing units where the majority of residents are white -Count_HousingUnit_HouseholderRaceWhiteAlone_RenterOccupied,white population in rental housing units;white people living in rental housing;whites renting housing units;whites as tenants -Count_HousingUnit_IncompleteKitchenFacilities_OccupiedHousingUnit,housing units with kitchens that are not fully equipped;housing units with kitchens that are missing some basic appliances;housing units with kitchens that are not up to code;housing units with kitchens that are not fit for human habitation -Count_HousingUnit_IncompletePlumbingFacilities_OccupiedHousingUnit,homes with missing or broken plumbing;dwellings with incomplete or faulty plumbing;houses with inadequate or damaged plumbing;apartments with deficient or faulty plumbing -Count_HousingUnit_NoCashRent,housing that doesn't require cash rent;housing that doesn't charge rent;no-rent housing -Count_HousingUnit_OccupiedHousingUnit,housing that is occupied by people;residential properties that are being used;dwellings that are inhabited;dwellings that are occupied -Count_HousingUnit_OwnerOccupied,number of homes that are owned by the people who live in them;number of homes that are occupied by their owners;number of homes that are owner-occupied;number of homes that are owned by their occupants -Count_HousingUnit_RenterOccupied,number of homes rented by tenants;number of homes occupied by renters;number of homes that are rented out;number of homes rented -Count_HousingUnit_VacantHousingUnit,number of empty houses;number of vacant properties;number of unsold houses;number of empty homes -Count_HousingUnit_WithCashRent,housing unit with cash rent;housing unit with cash payment;housing unit with cash-based rent;housing unit with rent paid in cash -Count_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied,homes with mortgages;mortgaged homes;houses with mortgages;residential properties with mortgages -Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,homes without a mortgage;homes that are not mortgaged;housing units without a mortgage;housing units free and clear of debt -Count_IceStormEvent,number of ice storms;number of ice storm events;number of ice storms that have occurred;number of ice storm occurrences -Count_LightningEvent,number of lightning strikes;lightning strike count;lightning strike frequency;lightning strike rate -Count_MarineHailEvent,number of marine hail events;number of times it has hailed at sea;number of marine hailstorms;number of times hail has fallen on the ocean -Count_MarineHighWindEvent,number of high wind events at sea;number of marine high wind events;frequency of marine high wind events;rate of marine high wind events -Count_MarineStrongWindEvent,number of marine strong wind events;marine strong wind event count;number of strong wind events in the marine environment;number of marine strong wind events recorded -Count_MarineThunderstormWindEvent,number of marine thunderstorm wind events;marine thunderstorm wind event count;marine thunderstorm wind event frequency;marine thunderstorm wind event occurrence -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_NonSerotypeB,non-b hib infections in children under 5;invasive hib infections in children under 5;hib infections in children under 5;non-b hib invasive disease in children under 5 -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_UnknownSerotype,haemophilus influenzae invasive unknown serotype incidents in children under 5 years old;cases of haemophilus influenzae invasive unknown serotype in children under 5 years old;number of haemophilus influenzae invasive unknown serotype cases in children under 5 years old;number of children under 5 years old with haemophilus influenzae invasive unknown serotype -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_ConfirmedCase,pneumonia cases in children under 5;pneumonia infections in children under 5;pneumococcal illnesses in children under 5;confirmed cases of pneumococcal disease in children under 5 -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease,pneumococcal disease cases in children under 5;pneumococcal disease in children under 5;pneumococcal disease in kids under 5;cases of invasive pneumococcal disease in children under 5 -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,number of people under 5 years old diagnosed with pneumococcal disease -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_ConfirmedCase_FoodborneTransmission,"number of cases of campylobacter jejuni infection, confirmed, foodborne transmission;number of people who got campylobacter jejuni from food, confirmed;number of people who got campylobacter jejuni, confirmed, from food;number of confirmed cases of campylobacter jejuni infection caused by foodborne transmission" -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_FoodborneTransmission,campylobacter jejuni outbreaks caused by food;campylobacter jejuni infections spread by food;campylobacter jejuni outbreaks linked to food;campylobacter jejuni infections spread through food -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_PatientDeceased_ConfirmedCase_FoodborneTransmission,cases of campylobacter jejuni that were confirmed to have been transmitted through food and resulted in death;campylobacter jejuni infections that were caused by food and led to death;deaths from campylobacter jejuni that were foodborne;confirmed cases of campylobacter jejuni that were foodborne and caused death -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_PatientDeceased_FoodborneTransmission,campylobacter jejuni infections in deceased patients with a history of foodborne transmission;campylobacter jejuni infections in patients who died after eating contaminated food;campylobacter jejuni infections in patients who died from eating contaminated food and died from the infection;campylobacter jejuni infections linked to foodborne transmission in deceased patients -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_PatientHospitalized_ConfirmedCase_FoodborneTransmission,number of people hospitalized with campylobacter jejuni infections;people hospitalized with campylobacter jejuni;number of campylobacter jejuni infections in hospitalized patients;campylobacter jejuni infections in hospitalized patients -Count_MedicalConditionIncident_CampylobacterJejuniEtiology_PatientHospitalized_FoodborneTransmission,campylobacter jejuni infections in hospitalized patients with foodborne transmission;campylobacter jejuni infections in hospitalized patients who got sick from contaminated food -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_ConfirmedCase_FoodborneTransmission,cases of clostridium perfringens food poisoning;clostridium perfringens foodborne illness;clostridium perfringens foodborne disease;clostridium perfringens foodborne infection -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_FoodborneTransmission,food poisoning caused by clostridium perfringens;clostridium perfringens incidents involving foodborne transmission -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientDeceased_ConfirmedCase_FoodborneTransmission,cases of food poisoning caused by clostridium perfringens in dead people;clostridium perfringens food poisoning in deceased patients;fatal cases of clostridium perfringens food poisoning;number of people who died from foodborne clostridium perfringens -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientDeceased_FoodborneTransmission,clostridium perfringens infections in deceased patients from foodborne sources;clostridium perfringens outbreaks in deceased patients from foodborne contamination;clostridium perfringens diseases in deceased patients from foodborne exposure;clostridium perfringens infections in deceased patients linked to foodborne transmission -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientDeceased_SuspectedCase_FoodborneTransmission,clostridium perfringens cases in deceased patients suspected of foodborne transmission -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientHospitalized_ConfirmedCase_FoodborneTransmission,food poisoning cases caused by clostridium perfringens in hospitalized patients;confirmed cases of clostridium perfringens food poisoning in hospitalized patients;confirmed cases of clostridium perfringens foodborne transmission in hospitalized patients -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientHospitalized_FoodborneTransmission,clostridium perfringens outbreaks in hospitalized patients;clostridium perfringens infections in hospitalized patients;clostridium perfringens foodborne illness in hospitals;clostridium perfringens cases in hospitalized patients -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_PatientHospitalized_SuspectedCase_FoodborneTransmission,clostridium perfringens cases that may have been caused by foodborne transmission in hospitalized patients;clostridium perfringens cases that may have been spread through food in hospitalized patients;clostridium perfringens cases that may have been acquired through food in hospitalized patients;clostridium perfringens cases that may have been contracted through food in hospitalized patients -Count_MedicalConditionIncident_ClostridiumPerfringensEtiology_SuspectedCase_FoodborneTransmission,clostridium perfringens case count -Count_MedicalConditionIncident_ConditionAIDS, -Count_MedicalConditionIncident_ConditionBotulism,number of botulism cases;number of botulism poisonings;number of botulism outbreaks;number of botulism incidents -Count_MedicalConditionIncident_ConditionBrucellosis,brucellosis cases;number of brucellosis cases;brucellosis incidents reported;brucellosis cases reported -Count_MedicalConditionIncident_ConditionCampylobacteriosis,campylobacteriosis cases;number of campylobacteriosis cases;incidence of campylobacteriosis;number of people with campylobacteriosis -Count_MedicalConditionIncident_ConditionChickenpox,chickenpox cases;number of chickenpox cases;chickenpox occurrences;chickenpox incidents -Count_MedicalConditionIncident_ConditionChikungunya,number of chikungunya cases;number of people infected with chikungunya;number of chikungunya infections;number of chikungunya cases reported -Count_MedicalConditionIncident_ConditionChlamydia,number of chlamydia trachomatis infections;chlamydia trachomatis infection cases;chlamydia trachomatis infection incidents reported;chlamydia trachomatis infections recorded -Count_MedicalConditionIncident_ConditionCongenitalSyphilis,number of congenital syphilis cases;number of congenital syphilis infections;number of congenital syphilis diagnoses;number of congenital syphilis cases reported -Count_MedicalConditionIncident_ConditionCryptosporidiosis,number of cryptosporidiosis incidents reported -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ConfirmedCase,cryptosporidiosis cases;cryptosporidiosis outbreaks;cryptosporidiosis infections;cryptosporidiosis cases reported -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ProbableCase,cryptosporidiosis events;potential cryptosporidiosis outbreaks;cryptosporidiosis incidents that are likely;probable cryptosporidiosis infections -Count_MedicalConditionIncident_ConditionCyclosporiasis,cyclosporiasis cases;number of cyclosporiasis cases;number of people with cyclosporiasis;cyclosporiasis infections -Count_MedicalConditionIncident_ConditionDengueDisease,number of dengue cases;dengue cases;dengue cases reported;dengue cases recorded -Count_MedicalConditionIncident_ConditionGiardiasis,giardiasis cases;number of giardia infections;number of people infected with giardia;giardia cases reported -Count_MedicalConditionIncident_ConditionGonorrhea,number of gonorrhea cases;gonorrhea cases;gonorrhea infections;gonorrhea diagnoses -Count_MedicalConditionIncident_ConditionHIVAIDS,number of hiv/aids cases;hiv/aids cases;number of people with hiv/aids;hiv/aids incidence -Count_MedicalConditionIncident_ConditionHaemophilusInfluenzae_InvasiveDisease,"number of haemophilus influenzae invasive infections, all ages, all serotypes;number of haemophilus influenzae invasive episodes, all ages, all serotypes;number of invasive haemophilus influenzae infections, all ages, all serotypes;number of invasive haemophilus influenzae illnesses, all ages, all serotypes" -Count_MedicalConditionIncident_ConditionHemolyticUremicSyndrome_PostDiarrheal,hemolytic uremic syndrome (hus) cases after diarrhea;hus cases following diarrhea;hus cases associated with diarrhea;hus cases due to diarrhea -Count_MedicalConditionIncident_ConditionHepatitisA_AcuteCondition,number of acute hepatitis a cases;number of people with acute hepatitis a;number of acute hepatitis a infections;number of acute hepatitis a diagnoses -Count_MedicalConditionIncident_ConditionHepatitisB_AcuteCondition,number of acute hepatitis b cases;number of acute hepatitis b infections;number of acute hepatitis b illnesses;number of acute hepatitis b occurrences -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ConfirmedCase,hepatitis c outbreaks;hepatitis c flare-ups;hepatitis c infections;hepatitis c illnesses -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ProbableCase,possible cases of acute hepatitis c;suspected cases of acute hepatitis c;potential cases of acute hepatitis c;probable cases of acute hepatitis c infection -Count_MedicalConditionIncident_ConditionHumanGranulocyticAnaplasmosis,number of anaplasma phagocytophilum infection cases;total number of anaplasma phagocytophilum infections;incidence of anaplasma phagocytophilum infection;frequency of anaplasma phagocytophilum infection -Count_MedicalConditionIncident_ConditionHumanMonocyticEhrlichiosis, -Count_MedicalConditionIncident_ConditionInfantBotulism,number of infant botulism cases;number of infant botulism illnesses;number of infant botulism cases reported;number of infant botulism cases diagnosed -Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,child deaths;deaths among children;mortality in children;pediatric deaths -Count_MedicalConditionIncident_ConditionLegionnairesDisease,number of legionellosis cases;number of legionnaires' disease cases;number of legionella pneumonia cases;number of legionella infections -Count_MedicalConditionIncident_ConditionListeriosis,number of listeriosis cases;number of listeriosis incidents reported;number of people with listeriosis;number of listeriosis infections -Count_MedicalConditionIncident_ConditionListeriosis_ConfirmedCase,listeriosis cases;listeriosis outbreaks;listeriosis infections;listeriosis cases reported -Count_MedicalConditionIncident_ConditionLymeDisease,number of lyme disease cases;number of lyme disease infections;number of lyme disease diagnoses;number of lyme disease cases reported -Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,number of lyme disease cases;lyme disease cases;lyme disease reports;lyme disease diagnoses -Count_MedicalConditionIncident_ConditionLymeDisease_ProbableCase,likely lyme cases;probable lyme infections -Count_MedicalConditionIncident_ConditionMalaria,number of malaria cases;number of malaria infections;number of people with malaria;number of malaria cases reported -Count_MedicalConditionIncident_ConditionMeasles,number of measles cases;measles cases;measles incidents;measles cases reported -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis,"number of meningococcal cases;number of meningococcal infections;number of meningococcal illnesses;number of meningococcal cases, all serogroups" -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease,number of invasive meningococcal disease cases;number of invasive meningococcal disease infections;number of invasive meningococcal disease illnesses;number of invasive meningococcal disease cases reported -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease_UnknownSerogroups,outbreaks of meningitis caused by an unknown strain -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_UnknownSerogroups,cases of meningitis caused by an unknown strain of the meningococcal bacteria;meningitis cases of unknown origin;meningitis cases caused by an unknown serogroup;meningitis cases of unknown type -Count_MedicalConditionIncident_ConditionMumps,number of mumps cases;number of people who have mumps;number of mumps infections;number of mumps cases reported -Count_MedicalConditionIncident_ConditionPertussis,number of pertussis cases;number of pertussis infections;number of pertussis illnesses;number of pertussis cases reported -Count_MedicalConditionIncident_ConditionQFever,number of q fever cases;number of q fever infections;number of people with q fever;number of q fever illnesses -Count_MedicalConditionIncident_ConditionQFever_AcuteCondition,acute cases of q fever;acute q fever cases;acute q fever incidents;number of acute q fever cases -Count_MedicalConditionIncident_ConditionRabiesinhuman,number of rabies cases;rabies cases;rabies incidents;rabies cases reported -Count_MedicalConditionIncident_ConditionSalmonellosisExceptTyphiAndParatyphi,number of salmonellosis cases;number of people who have contracted salmonellosis;number of people who have been diagnosed with salmonellosis;number of people who have been sick with salmonellosis -Count_MedicalConditionIncident_ConditionShigaToxinEColi,number of shiga toxin-producing escherichia coli cases;shiga toxin-producing escherichia coli outbreak data;shiga toxin-producing escherichia coli incidence statistics;shiga toxin-producing escherichia coli cases reported -Count_MedicalConditionIncident_ConditionShigellosis,shigellosis cases;shigellosis incidents;number of shigellosis cases;shigellosis cases reported -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis,number of spotted fever rickettsiosis cases;number of people with spotted fever rickettsiosis;number of spotted fever rickettsiosis infections;number of spotted fever rickettsiosis illnesses -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosisIncludingRockyMountainSpottedFever,count of probable spotted fever rickettsiosis including rmsf incidents;number of probable spotted fever rickettsiosis including rmsf incidents;number of cases of probable spotted fever rickettsiosis including rmsf;number of people with probable spotted fever rickettsiosis including rmsf -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis_ProbableCase,confirmed cases of spotted fever rickettsiosis;suspected cases of spotted fever rickettsiosis;probable cases of spotted fever rickettsiosis;potential cases of spotted fever rickettsiosis -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_ConfirmedCase,pneumococcal cases in all age groups that have been confirmed;pneumococcal infections that have been confirmed in all age groups;confirmed cases of pneumococcal disease in all age groups;pneumococcal infections that have been diagnosed in all age groups -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease,number of invasive pneumococcal disease cases;number of invasive pneumococcal disease events;number of invasive pneumococcal disease occurrences -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,invasive pneumococcal diseases;diseases caused by streptococcus pneumoniae;diseases caused by pneumococcus;pneumococcal infections -Count_MedicalConditionIncident_ConditionSyphilis,number of syphilis cases;number of syphilis infections;number of people with syphilis;number of syphilis diagnoses -Count_MedicalConditionIncident_ConditionSyphilisPrimaryAndSecondary,number of syphilis primary and secondary cases;number of syphilis primary and secondary infections;number of syphilis primary and secondary diagnoses;number of syphilis primary and secondary cases reported -Count_MedicalConditionIncident_ConditionTetanus,number of tetanus cases;number of tetanus infections;number of tetanus illnesses;number of tetanus cases reported -Count_MedicalConditionIncident_ConditionTuberculosis,number of tuberculosis cases;number of people with tuberculosis;number of tuberculosis diagnoses;number of tuberculosis cases reported -Count_MedicalConditionIncident_ConditionTularemia,number of tularemia cases;tularemia cases reported;tularemia incidents reported;tularemia cases recorded -Count_MedicalConditionIncident_ConditionTyphoidFever,number of typhoid fever cases;incidence of typhoid fever;number of people with typhoid fever;number of typhoid fever infections -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera,vibriosis cases;number of vibriosis cases;number of people who have gotten vibriosis;number of vibriosis infections -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ConfirmedCase,"vibriosis cases, not cholera" -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ProbableCase,"vibriosis cases, excluding cholera;cases of vibriosis, not including cholera;vibriosis cases, other than cholera;cases of vibriosis, not cholera" -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NeuroinvasiveDisease,"number of west nile virus disease incidents that affect the nervous system;number of cases of west nile virus disease that affect the nervous system;number of people who have been diagnosed with west nile virus meningitis, encephalitis, or meningoencephalitis;number of people who have been diagnosed with west nile virus encephalitis, meningitis, or meningoencephalitis" -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NonNeuroinvasiveDisease,number of west nile virus non-neuroinvasive cases;west nile virus non-neuroinvasive cases;west nile virus cases that are not neuroinvasive;west nile virus cases that do not affect the nervous system -Count_MedicalConditionIncident_ConditionZikaVirusDisease_NonCongenitalDisease,"number of zika fever cases, excluding congenital cases;number of people who have contracted zika fever, excluding those who have given birth to babies with zika-related birth defects;number of zika cases, excluding congenital cases;number of cases of zika fever, not including congenital cases" -Count_MedicalConditionIncident_ConditionZikaVirusInfection_NonCongenitalDisease,"number of zika virus infections, not including congenital cases;number of people infected with zika virus, not including pregnant women and their babies;number of zika virus cases, not including cases in babies born to infected mothers;number of zika virus cases in people who were not pregnant" -Count_MedicalConditionIncident_CryptosporidiumUnknown_ConfirmedCase_WaterborneTransmission,"cryptosporidium cases linked to unknown waterborne transmission;cryptosporidium cases linked to waterborne transmission, source unknown;cryptosporidium cases linked to waterborne transmission, source undetermined;cryptosporidium cases linked to waterborne transmission, source unidentified" -Count_MedicalConditionIncident_CryptosporidiumUnknown_PatientDeceased_ConfirmedCase_WaterborneTransmission,cases of cryptosporidium infection transmitted through water in deceased patients;cryptosporidium cases in deceased patients caused by waterborne transmission;cryptosporidium cases in deceased patients with waterborne transmission;cases of cryptosporidium in patients who died from waterborne transmission -Count_MedicalConditionIncident_CryptosporidiumUnknown_PatientDeceased_WaterborneTransmission,cryptosporidium outbreaks in dead patients;cryptosporidium infections in deceased patients;cryptosporidium cases in dead patients;cryptosporidium illnesses in deceased patients -Count_MedicalConditionIncident_CryptosporidiumUnknown_PatientHospitalized_ConfirmedCase_WaterborneTransmission,cryptosporidium outbreaks linked to waterborne transmission in hospitalized patients;cryptosporidium cases in hospitalized patients linked to waterborne transmission;waterborne transmission of cryptosporidium in hospitalized patients;cryptosporidium outbreaks in hospitalized patients due to waterborne transmission -Count_MedicalConditionIncident_CryptosporidiumUnknown_PatientHospitalized_WaterborneTransmission,cases of cryptosporidium infection in hospitalized patients;cryptosporidium outbreaks in hospitals;cryptosporidium infections in patients who have been hospitalized;cryptosporidium cases in hospitalized patients -Count_MedicalConditionIncident_CryptosporidiumUnknown_WaterborneTransmission,cryptosporidium outbreaks caused by contaminated water;waterborne transmission of cryptosporidiosis;outbreaks of cryptosporidium caused by contaminated water -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_ConfirmedCase_WaterborneTransmission,legionnaires' disease cases spread by water;legionella pneumophila cases spread through water;cases of legionnaires' disease caused by water;legionnaires' disease cases traced to water -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_PatientDeceased_ConfirmedCase_WaterborneTransmission,waterborne legionnaires' disease cases that resulted in death -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_PatientDeceased_WaterborneTransmission,legionnaires' disease outbreaks caused by waterborne transmission in deceased patients;legionnaires' disease cases linked to waterborne transmission in deceased patients;legionnaires' disease deaths caused by waterborne transmission;legionnaires' disease fatalities linked to waterborne transmission -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_PatientHospitalized_ConfirmedCase_WaterborneTransmission,legionella pneumophila cases confirmed in hospitalized patients with waterborne transmission;legionella pneumophila cases in hospitalized patients spread through water;waterborne transmission of legionella pneumophila confirmed in hospitalized patients;legionella pneumophila cases in hospitalized patients caused by waterborne transmission -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_PatientHospitalized_WaterborneTransmission,legionella pneumophila outbreaks in hospitals caused by water contamination;legionnaires' disease in hospitalized patients spread through water;legionnaires' disease outbreaks in hospitals linked to waterborne transmission;legionnaires' disease outbreaks in hospitals caused by waterborne transmission -Count_MedicalConditionIncident_LegionellaPneumophilaEtiology_WaterborneTransmission,legionnaires' disease cases linked to waterborne bacteria;waterborne legionella pneumophila infections;legionnaires' disease cases from waterborne bacteria;legionella pneumophila outbreaks in water -Count_MedicalConditionIncident_NORSUnknown_PatientDeceased_SuspectedCase_WaterborneTransmission,cases of unknown waterborne nors in deceased patients;cases of nors in deceased patients from unknown waterborne sources;cases of nors in deceased patients with an unknown waterborne source;cases of nors in deceased patients where the waterborne source is unknown -Count_MedicalConditionIncident_NORSUnknown_PatientDeceased_WaterborneTransmission,unknown cases of waterborne transmission in dead patients have been reported to nors;nors has received reports of unknown cases of waterborne transmission in dead patients;there have been unknown cases of waterborne transmission in dead patients reported to nors;nors has been informed of unknown cases of waterborne transmission in dead patients -Count_MedicalConditionIncident_NORSUnknown_PatientHospitalized_SuspectedCase_WaterborneTransmission,cases of hospitalized patients with suspected waterborne nors incidents;hospitalized patients with suspected waterborne nors incidents;suspected waterborne nors incidents in hospitalized patients;waterborne nors incidents in hospitalized patients -Count_MedicalConditionIncident_NORSUnknown_PatientHospitalized_WaterborneTransmission,waterborne illnesses in hospitalized patients;illnesses spread through water in hospitals;waterborne infections in hospitals;waterborne diseases in hospitals -Count_MedicalConditionIncident_NORSUnknown_SuspectedCase_WaterborneTransmission,unknown incidents of waterborne transmission;incidents of waterborne transmission that are not well-understood;unknown incidents where water was the suspected transmission vector;incidents with unknown waterborne transmission -Count_MedicalConditionIncident_NORSUnknown_WaterborneTransmission,unknown waterborne nors incidents;incidents involving nors that occurred on water and are not known about;nors incidents that happened on water and are not public knowledge;waterborne nors incidents that are not well-known -Count_MedicalConditionIncident_NorovirusGenogroupII_ConfirmedCase_FoodborneTransmission,cases of norovirus genogroup ii that have been confirmed to have been transmitted through food;norovirus genogroup ii cases that have been confirmed to be foodborne;confirmed foodborne cases of norovirus genogroup ii;cases of norovirus genogroup ii transmitted through food -Count_MedicalConditionIncident_NorovirusGenogroupII_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,norovirus genogroup ii cases with unknown transmission;norovirus genogroup ii cases with unknown source;norovirus genogroup ii cases with unknown cause;norovirus genogroup ii cases with unknown origin -Count_MedicalConditionIncident_NorovirusGenogroupII_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup ii cases with person-to-person transmission confirmed;norovirus genogroup ii cases with person-to-person transmission -Count_MedicalConditionIncident_NorovirusGenogroupII_FoodborneTransmission,norovirus genogroup ii outbreaks caused by foodborne transmission;norovirus genogroup ii infections spread through food;norovirus genogroup ii illnesses spread through food;norovirus genogroup ii infections caused by food -Count_MedicalConditionIncident_NorovirusGenogroupII_Indeterminate_Other_UnknownTramissionMode,norovirus genogroup ii illnesses that have an unknown transmission route;norovirus genogroup ii cases that have an unknown mode of transmission;norovirus genogroup ii outbreaks with unknown transmission mode;norovirus genogroup ii cases with unknown transmission mode -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_ConfirmedCase_FoodborneTransmission,norovirus genogroup ii outbreak with foodborne transmission in confirmed cases of deceased patients;norovirus genogroup ii outbreak linked to foodborne transmission in confirmed cases of deceased patients;norovirus genogroup ii outbreak caused by foodborne transmission in confirmed cases of deceased patients;norovirus genogroup ii outbreak associated with foodborne transmission in confirmed cases of deceased patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,"norovirus genogroup ii has been confirmed in deceased patients, but the transmission mode is unknown;norovirus genogroup ii has been confirmed in deceased patients the transmission mode is unknown;norovirus genogroup ii has been confirmed in deceased patients, but the mode of transmission is unknown" -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup ii infections that were communicated from person to person in confirmed cases of deceased patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_FoodborneTransmission,norovirus genogroup ii cases of foodborne illness in deceased patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_Indeterminate_Other_UnknownTramissionMode,norovirus genogroup ii fatalities -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_PersonToPersonTransmission,"norovirus genogroup ii can be transmitted between people, even after someone has passed away" -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_SuspectedCase_FoodborneTransmission,there are some suspected cases of norovirus genogroup ii infection that may have been transmitted through food to people who died -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientDeceased_SuspectedCase_PersonToPersonTransmission,norovirus genogroup ii has been suspected of causing person-to-person transmission in deceased patients;there have been suspected cases of norovirus genogroup ii with person-to-person transmission in deceased patients;norovirus genogroup ii has been linked to person-to-person transmission in deceased patients;person-to-person transmission of norovirus genogroup ii has been suspected in deceased patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_ConfirmedCase_FoodborneTransmission,norovirus genogroup ii has been confirmed to be the cause of foodborne illness in hospitalized patients;foodborne illness caused by norovirus genogroup ii has been confirmed in hospitalized patients;foodborne illness caused by norovirus genogroup ii has been identified in hospitalized patients;foodborne transmission of norovirus genogroup ii has been confirmed in hospitalized patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,norovirus genegroup ii has been confirmed in deceased patients the transmission route is unknown;norovirus genegroup ii has been found in deceased patients the source of the infection is unknown;norovirus genegroup ii has been detected in deceased patients the way it spread is unknown;norovirus genegroup ii has been isolated in deceased patients the means of transmission is unknown -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup ii incidents with person-to-person transmission in hospitalized patients have been confirmed;norovirus genogroup ii has been linked to person-to-person transmission in hospitalized patients;norovirus genogroup ii cases with person-to-person transmission in hospitalized patients;norovirus genogroup ii outbreaks with person-to-person transmission in hospitalized patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_FoodborneTransmission,norovirus outbreaks in hospitalized patients due to foodborne transmission;norovirus infections in hospitalized patients due to foodborne transmission;norovirus infections spread through food in hospitals;norovirus infections in hospitals spread by food -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_Indeterminate_Other_UnknownTramissionMode,norovirus genogroup ii outbreaks in hospitalized patients with unknown transmission mode;norovirus genogroup ii infections in hospitalized patients with unknown how it spread;norovirus genogroup ii cases in hospitalized patients with unknown how it was transmitted;norovirus genogroup ii illnesses in hospitalized patients with unknown how it was spread -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_PersonToPersonTransmission,norovirus genogroup ii infections in hospitalized patients that spread from person to person;norovirus genogroup ii infections in hospitalized patients spread from person to person;norovirus genogroup ii spread from person to person in hospitals;norovirus genogroup ii infections in hospitals caused by person-to-person transmission -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_SuspectedCase_FoodborneTransmission,norovirus genogroup ii infections in hospitalized patients that were spread through food;norovirus genogroup ii outbreaks in hospitals that were caused by food;norovirus genogroup ii illnesses in hospitals that were caused by food;norovirus genogroup ii infections in hospitalized patients that were caused by foodborne transmission -Count_MedicalConditionIncident_NorovirusGenogroupII_PatientHospitalized_SuspectedCase_PersonToPersonTransmission,norovirus genogroup ii cases in hospitalized patients that were spread from person to person;norovirus genogroup ii cases transmitted from person to person in hospitalized patients;norovirus genogroup ii cases spread from person to person in hospitalized patients;norovirus genogroup ii cases passed from person to person in hospitalized patients -Count_MedicalConditionIncident_NorovirusGenogroupII_PersonToPersonTransmission,norovirus genogroup ii illnesses that are transmitted from person to person;norovirus genogroup ii illnesses that are passed from one person to another;norovirus genogroup ii illnesses that are transmitted through human contact;norovirus genogroup ii illnesses that are transmitted through human-to-human contact -Count_MedicalConditionIncident_NorovirusGenogroupII_SuspectedCase_FoodborneTransmission,norovirus genogroup ii cases associated with foodborne transmission;suspected cases of norovirus genogroup ii transmitted through food;norovirus genogroup ii cases suspected to have been transmitted through food;foodborne transmission of norovirus genogroup ii suspected in some cases -Count_MedicalConditionIncident_NorovirusGenogroupII_SuspectedCase_PersonToPersonTransmission,person-to-person transmission of norovirus genogroup ii;norovirus genogroup ii spread from person to person;norovirus genogroup ii passed from person to person;norovirus genogroup ii spread through contact with an infected person -Count_MedicalConditionIncident_NorovirusGenogroupI_ConfirmedCase_FoodborneTransmission,cases of norovirus genogroup i that have been confirmed to have been transmitted through food;norovirus genogroup i cases that have been linked to foodborne transmission;norovirus genogroup i cases that have been caused by foodborne transmission;norovirus genogroup i cases that have been transmitted through contaminated food -Count_MedicalConditionIncident_NorovirusGenogroupI_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup 1 has been confirmed to be transmitted from person to person;norovirus genogroup 1 has been found to be contagious;norovirus genogroup 1 can be spread from person to person;norovirus genogroup 1 is a contagious virus -Count_MedicalConditionIncident_NorovirusGenogroupI_FoodborneTransmission,norovirus genogroup i outbreaks caused by foodborne transmission;foodborne transmission of norovirus genogroup i;norovirus genogroup i outbreaks linked to food;1 norovirus genogroup i outbreaks caused by foodborne transmission -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientDeceased_ConfirmedCase_FoodborneTransmission,norovirus genogroup i outbreaks in deceased patients with foodborne transmission;norovirus genogroup i outbreaks with foodborne transmission in deceased patients;norovirus genogroup i outbreaks with foodborne transmission in patients who died;norovirus genogroup i outbreaks with foodborne transmission in patients who passed away -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientDeceased_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup i incidents with person-to-person transmission in confirmed cases of deceased patients;norovirus genogroup i outbreaks with person-to-person transmission in confirmed cases of deceased patients;norovirus genogroup i cases with person-to-person transmission in confirmed cases of deceased patients;norovirus genogroup i infections with person-to-person transmission in confirmed cases of deceased patients -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientDeceased_FoodborneTransmission,norovirus genogroup i outbreaks that killed people;norovirus genogroup i illnesses that were fatal -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientDeceased_PersonToPersonTransmission,norovirus genogroup i transmission between people who have died;norovirus genogroup i passed from person to person in people who have died;norovirus genogroup i transmission from deceased patients;norovirus genogroup i transmission from dead patients -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientDeceased_SuspectedCase_FoodborneTransmission,norovirus genogroup i cases with foodborne transmission in deceased patients;norovirus genogroup i cases with foodborne transmission in patients who died -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientHospitalized_ConfirmedCase_FoodborneTransmission,hospitalized patients with confirmed cases of foodborne norovirus genogroup i;cases of foodborne norovirus genogroup i in hospitalized patients;confirmed cases of foodborne norovirus genogroup i in hospitalized patients;hospitalized patients with foodborne norovirus genogroup i -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientHospitalized_ConfirmedCase_PersonToPersonTransmission,norovirus genogroup i has been confirmed to be transmitted from person to person in hospitalized patients;norovirus genogroup i has been found to be spread from person to person in hospitalized patients;norovirus genogroup i incidents with person-to-person transmission in hospitalized patients have been confirmed;there have been confirmed cases of norovirus genogroup i transmission from person to person in hospitalized patients -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientHospitalized_FoodborneTransmission,norovirus genogroup i infections in hospitalized patients that were spread through food;norovirus genogroup i cases in hospitalized patients that were caused by foodborne transmission;norovirus genogroup i outbreaks in hospitalized patients that were spread through food;norovirus genogroup i illnesses in hospitalized patients that were caused by foodborne transmission -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientHospitalized_PersonToPersonTransmission,norovirus genogroup i infections transmitted person to person in hospitalized patients;norovirus genogroup i outbreaks involving person to person transmission in hospitalized patients;norovirus genogroup i illnesses involving person to person transmission in hospitalized patients;norovirus genogroup i outbreaks that spread from person to person and led to hospitalization -Count_MedicalConditionIncident_NorovirusGenogroupI_PatientHospitalized_SuspectedCase_FoodborneTransmission,cases of foodborne norovirus genogroup i in deceased patients;suspected cases of foodborne norovirus genogroup i in patients who have died -Count_MedicalConditionIncident_NorovirusGenogroupI_PersonToPersonTransmission,norovirus genogroup i infections that are transmitted from person to person;norovirus genogroup i infections that are transmitted through human-to-human contact;norovirus genogroup i diseases that are spread through person-to-person contact;norovirus genogroup i diseases that are transmitted through person-to-person contact -Count_MedicalConditionIncident_NorovirusGenogroupI_SuspectedCase_FoodborneTransmission,suspected foodborne transmission of norovirus genogroup i;suspected foodborne cases of norovirus genogroup i;suspected cases of norovirus genogroup i that were caused by food;suspected cases of norovirus genogroup i transmitted through food -Count_MedicalConditionIncident_NorovirusUnknown_ConfirmedCase_FoodborneTransmission,norovirus outbreak linked to food;foodborne illness outbreak caused by norovirus;norovirus outbreak linked to food service;norovirus outbreak caused by food poisoning -Count_MedicalConditionIncident_NorovirusUnknown_ConfirmedCase_PersonToPersonTransmission,cases of norovirus spread from person to person;norovirus cases transmitted from person to person;people have been infected with norovirus and have spread it to others;there have been confirmed cases of norovirus that have been transmitted from person to person -Count_MedicalConditionIncident_NorovirusUnknown_FoodborneTransmission,norovirus outbreaks transmitted through food -Count_MedicalConditionIncident_NorovirusUnknown_PatientDeceased_ConfirmedCase_FoodborneTransmission,foodborne norovirus outbreaks that have resulted in death;norovirus outbreaks that led to the deaths of confirmed patients and were caused by foodborne transmission;cases of norovirus death from food poisoning -Count_MedicalConditionIncident_NorovirusUnknown_PatientDeceased_ConfirmedCase_PersonToPersonTransmission,norovirus has been confirmed in deceased patients in the us;there have been confirmed cases of norovirus in deceased patients in the us;there have been confirmed cases of norovirus that have been spread from person to person in deceased patients;norovirus may have been a cause of death in some people who died of unknown causes -Count_MedicalConditionIncident_NorovirusUnknown_PatientDeceased_FoodborneTransmission,norovirus outbreaks that have been linked to food poisoning in people who have died;norovirus outbreaks that have resulted in death;norovirus outbreaks that have caused fatalities;norovirus outbreaks that have been fatal -Count_MedicalConditionIncident_NorovirusUnknown_PatientDeceased_PersonToPersonTransmission,norovirus cases in deceased patients with unknown person-to-person transmission confirmed;norovirus cases in deceased patients with unknown person-to-person transmission have been confirmed;norovirus cases in deceased patients with unknown person-to-person transmission have been identified;norovirus cases in deceased patients with unknown person-to-person transmission have been found -Count_MedicalConditionIncident_NorovirusUnknown_PatientDeceased_SuspectedCase_PersonToPersonTransmission,norovirus cases in hospitalized patients with unknown source of transmission;norovirus in hospitalized patients with unknown cause;norovirus in hospitalized patients with unknown etiology;norovirus suspected in hospitalized patients -Count_MedicalConditionIncident_NorovirusUnknown_PatientHospitalized_ConfirmedCase_FoodborneTransmission,foodborne norovirus cases in hospitalized patients -Count_MedicalConditionIncident_NorovirusUnknown_PatientHospitalized_ConfirmedCase_PersonToPersonTransmission,norovirus cases in hospitalized patients with unknown person-to-person transmission;norovirus cases in hospitalized patients with unknown person-to-person transmission confirmed;norovirus cases confirmed in hospitalized patients with unknown person-to-person transmission -Count_MedicalConditionIncident_NorovirusUnknown_PatientHospitalized_FoodborneTransmission,norovirus outbreaks in hospitals;norovirus illnesses in hospitalized patients;norovirus outbreaks in hospitals with unknown source of transmission -Count_MedicalConditionIncident_NorovirusUnknown_PatientHospitalized_PersonToPersonTransmission,norovirus outbreaks in hospitalized patients with unknown source of transmission;norovirus transmission in hospitalized patients with unknown source of transmission -Count_MedicalConditionIncident_NorovirusUnknown_PatientHospitalized_SuspectedCase_PersonToPersonTransmission, -Count_MedicalConditionIncident_NorovirusUnknown_PersonToPersonTransmission,norovirus passed from person to person;3 norovirus passed from person to person -Count_MedicalConditionIncident_NorovirusUnknown_SuspectedCase_PersonToPersonTransmission,norovirus cases with unknown transmission;norovirus cases with unknown person-to-person transmission;norovirus cases with unknown transmission method -Count_MedicalConditionIncident_Norovirus_PatientDeceased_PersonToPersonTransmission, -Count_MedicalConditionIncident_Norovirus_PatientDeceased_SuspectedCase_PersonToPersonTransmission,norovirus may have been spread from person to person among people who died;norovirus may have been spread from deceased patients to others;cases of norovirus transmission from person to person in deceased patients;norovirus may have spread from person to person in people who have died -Count_MedicalConditionIncident_Norovirus_PatientHospitalized_PersonToPersonTransmission,norovirus spread from person to person in hospitals;norovirus transmission in hospitals;norovirus transmission between patients in hospitals;norovirus transmission between hospitalized patients -Count_MedicalConditionIncident_Norovirus_PatientHospitalized_SuspectedCase_PersonToPersonTransmission,norovirus infections in hospitalized patients that may have been caused by person-to-person contact;norovirus infections in hospitals caused by person-to-person transmission;norovirus illnesses in hospitals spread through person-to-person contact -Count_MedicalConditionIncident_Norovirus_PersonToPersonTransmission,person-to-person spread of norovirus;norovirus transmission from person to person;norovirus cases that are caused by person-to-person transmission;person-to-person transmission of norovirus -Count_MedicalConditionIncident_Norovirus_SuspectedCase_PersonToPersonTransmission,norovirus cases that are suspected to have been transmitted through contact with an infected person;possible norovirus cases that may have been spread through person-to-person contact;suspected cases of norovirus spread from person to person;cases of norovirus that may have been spread from person to person -Count_MedicalConditionIncident_PatientDeceased_AnimalContactTransmission,"animals can transmit diseases to humans, even after the animal has died;people can get sick from contact with animals, even if the animal is dead;disease can be spread from animals to humans through contact with dead animals;animals can be a source of infection for humans, even after they have died" -Count_MedicalConditionIncident_PatientDeceased_FoodborneTransmission,foodborne illness in dead people;illness from food in dead people;food poisoning in dead people;foodborne disease in dead people -Count_MedicalConditionIncident_PatientDeceased_Indeterminate_Other_UnknownTramissionMode,deaths from medical conditions with unknown transmission;unexplained medical conditions in dead patients;medical conditions in deceased patients with unknown cause;medical conditions in dead patients with unknown transmission -Count_MedicalConditionIncident_PatientDeceased_PersonToPersonTransmission,medical conditions that can be transmitted from a deceased person to another person;medical conditions that can be passed on from a corpse to a person;medical conditions that can be contracted from a dead person;medical conditions that can be caught from a deceased person -Count_MedicalConditionIncident_PatientDeceased_WaterborneTransmission,waterborne diseases that kill people;illnesses spread by water that can be fatal;waterborne infections that can be deadly;waterborne illnesses that can cause death -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_ConfirmedCase_FoodborneTransmission,confirmed cases of foodborne salmonella enterica transmission;foodborne salmonella enterica transmission cases confirmed;salmonella enterica transmission confirmed in foodborne cases;number of people who got salmonella enterica from food -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,cases of salmonella enterica that have not been traced to a specific source;salmonella enterica cases with an unknown cause;salmonella enterica cases with an unknown origin;salmonella enterica cases with an unknown vector -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_FoodborneTransmission,salmonella outbreaks from contaminated food;salmonella illnesses from foodborne sources -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_Indeterminate_Other_UnknownTramissionMode,salmonella enterica outbreaks with unknown transmission;salmonella enterica infections with unknown cause;salmonella enterica infections with unknown origins;salmonella enterica illnesses with unknown vectors -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientDeceased_ConfirmedCase_FoodborneTransmission,salmonella enterica in deceased patients with foodborne transmission;salmonella enterica in patients who died from food poisoning;salmonella enterica in patients who died after eating contaminated food;salmonella enterica in patients who died from eating food that was not safe to eat -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientDeceased_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,salmonella cases in deceased patients with unknown transmission route;salmonella cases in deceased patients with unknown mode of transmission;salmonella cases in dead patients with unknown transmission;salmonella cases in dead patients with unknown cause -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientDeceased_FoodborneTransmission,salmonella enterica illnesses that were fatal -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientDeceased_Indeterminate_Other_UnknownTramissionMode,salmonella enterica illnesses in deceased patients with unknown mode of transmission;salmonella enterica outbreaks in deceased patients with unknown transmission mode;salmonella enterica infections in deceased patients with unknown transmission mode;salmonella enterica infections in patients who died and the mode of transmission is unknown -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientHospitalized_ConfirmedCase_FoodborneTransmission,foodborne salmonella enterica infections in hospitalized patients;salmonella enterica infections in hospitalized patients from foodborne sources;confirmed cases of salmonella enterica infection in hospitalized patients;salmonella enterica infections in hospitalized patients that were confirmed to be foodborne -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientHospitalized_ConfirmedCase_Indeterminate_Other_UnknownTramissionMode,"cases of salmonella enterica in hospitalized patients with unknown transmission mode;there have been confirmed cases of salmonella enterica in hospitalized patients, and the source of the infection is unknown" -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientHospitalized_FoodborneTransmission,"salmonella enterica, a waterborne bacteria, can infect hospitalized patients;salmonella enterica can be transmitted through water and can infect hospitalized patients;waterborne transmission of salmonella enterica can occur in hospitalized patients;salmonella enterica can be a problem for hospitalized patients, as it can be transmitted through water" -Count_MedicalConditionIncident_SalmonellaEntericaEtiology_PatientHospitalized_Indeterminate_Other_UnknownTramissionMode,salmonella infections in hospitalized patients with unknown modes of transmission;salmonella enterica outbreaks in hospitalized patients with unknown transmission mode -Count_MedicalConditionIncident_ShigaToxinEColi_ConfirmedCase_FoodborneTransmission,confirmed cases of shiga toxin-producing e coli o157;confirmed cases of foodborne shiga toxin e coli;confirmed cases of e coli with shiga toxin;confirmed cases of shiga toxin e coli infection -Count_MedicalConditionIncident_ShigaToxinEColi_FoodborneTransmission,shiga toxin e coli infections from contaminated food -Count_MedicalConditionIncident_ShigaToxinEColi_PatientDeceased_ConfirmedCase_FoodborneTransmission,cases of foodborne shiga toxin e coli in deceased patients;foodborne shiga toxin e coli cases in deceased patients;shiga toxin e coli cases in deceased patients from foodborne illness;shiga toxin e coli cases in deceased patients from food poisoning -Count_MedicalConditionIncident_ShigaToxinEColi_PatientDeceased_FoodborneTransmission,shiga toxin e coli infections that resulted in death;shiga toxin e coli illnesses that were fatal;shiga toxin e coli infections that caused death;cases of shiga toxin e coli with foodborne transmission in deceased patients -Count_MedicalConditionIncident_ShigaToxinEColi_PatientHospitalized_ConfirmedCase_FoodborneTransmission,food poisoning caused by shiga toxin-producing bacteria in hospitalized patients;shiga toxin-producing bacteria infections in hospitalized patients;shiga toxin-producing bacteria outbreaks in hospitals;shiga toxin-producing bacteria infections that have led to hospitalization -Count_MedicalConditionIncident_ShigaToxinEColi_PatientHospitalized_FoodborneTransmission,shiga incidents in hospitalized patients;shiga toxin-producing e coli infections in hospitalized patients;shiga toxin-producing e coli infections in the hospital;shiga toxin-producing e coli infections in the inpatient setting -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_ConfirmedCase_FoodborneTransmission,cases of food poisoning caused by staphylococcus aureus;instances of foodborne illness caused by staphylococcus aureus;incidents of foodborne disease caused by staphylococcus aureus;outbreaks of foodborne illness caused by staphylococcus aureus -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_FoodborneTransmission,number of people who got sick from eating contaminated food that contained staphylococcus aureus;the number of people who have been infected with staphylococcus aureus due to foodborne transmission -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_PatientDeceased_ConfirmedCase_FoodborneTransmission,staph aureus incidents with foodborne transmission in dead patients;staph aureus transmission through food in dead patients;staphylococcus aureus in deceased patients from foodborne transmission -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_PatientDeceased_FoodborneTransmission,deaths caused by food poisoning from staphylococcus aureus;deaths from foodborne staphylococcus aureus;deaths from eating food contaminated with staphylococcus aureus;deaths from staphylococcus aureus-related food poisoning -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_PatientHospitalized_ConfirmedCase_FoodborneTransmission,"number of medical condition incidents involving staphylococcus aureus etiology, patient hospitalized and confirmed case, foodborne transmission" -Count_MedicalConditionIncident_StaphylococcusAureusEtiology_PatientHospitalized_FoodborneTransmission,food poisoning caused by staphylococcus aureus in hospitalized patients;staphylococcus aureus infections spread through food in hospitals;staphylococcus aureus outbreaks in hospitals linked to food;foodborne staphylococcus aureus infections in hospitalized patients -Count_MedicareEnrollee,total number of medicare beneficiaries;medicare enrollment;total number of medicare enrollees -Count_MedicareEnrollee_ConditionDiabetic_Black,number of black medicare enrollees with diabetes;number of black medicare beneficiaries with diabetes;number of black medicare recipients with diabetes;number of black medicare members with diabetes -Count_MedicareEnrollee_ConditionDiabetic_NonBlack,number of medicare enrollees who are diabetic and non-black;number of medicare enrollees with diabetes who are not black;number of medicare enrollees who are diabetic and not black;number of medicare enrollees with diabetes who are not african american -Count_MedicareEnrollee_MedicareA,number of people enrolled in medicare a;medicare a enrollment;medicare a beneficiaries;medicare a participants -Count_MedicareEnrollee_MedicareA_Black,african american medicare a recipient;african american person enrolled in medicare a;african american person with medicare a;african american medicare a beneficiary -Count_MedicareEnrollee_MedicareA_NonBlack,person who is not black and is enrolled in medicare a;person who is not a black medicare a enrollee;person who is not black and is covered by medicare a;person who is not a black medicare a beneficiary -Count_MedicareEnrollee_MedicareB,number of medicare b enrollees;medicare b beneficiaries;people enrolled in medicare b;medicare b participants -Count_MedicareEnrollee_MedicareB_Black,black medicare recipient;black medicare beneficiary;black person who is enrolled in medicare;medicare beneficiary who is black -Count_MedicareEnrollee_MedicareB_NonBlack,the percentage of medicare enrollees who are not black;the proportion of medicare enrollees who are not black;the share of medicare enrollees who are not black;people who are not black and are enrolled in medicare -Count_Person,population size;population count;number of people in a population;total population -Count_Person_15OrMoreYears_Divorced_AmericanIndianAndAlaskaNativeAlone,the number of american indian or alaska native people aged 15 years or more who are divorced;the percentage of american indian or alaska native people aged 15 years or more who are divorced;the proportion of american indian or alaska native people aged 15 years or more who are divorced;the rate of divorce among american indian or alaska native people aged 15 years or more -Count_Person_15OrMoreYears_Divorced_AsianAlone, -Count_Person_15OrMoreYears_Divorced_BlackOrAfricanAmericanAlone,the number of african americans aged 15 or older who are divorced;the percentage of african americans aged 15 or older who are divorced;the proportion of african americans aged 15 or older who are divorced;the rate of divorce among african americans aged 15 or older -Count_Person_15OrMoreYears_Divorced_ForeignBorn,people who were born in another country and are now divorced and are 15 years old or older;people who were born in another country and are now divorced and are at least 15 years old;population of divorced foreign-born people aged 15 years or older;number of divorced foreign-born people aged 15 years or older -Count_Person_15OrMoreYears_Divorced_HispanicOrLatino,the number of hispanic people who have been divorced and are 15 years of age or older;the percentage of hispanic people who have been divorced and are 15 years of age or older;the proportion of hispanic people who have been divorced and are 15 years of age or older;the prevalence of divorce among hispanic people aged 15 years or older -Count_Person_15OrMoreYears_Divorced_Native,the number of native americans aged 15 or older who are divorced;the percentage of native americans aged 15 or older who are divorced;the proportion of native americans aged 15 or older who are divorced;the number of native americans who have been divorced at least once and are currently aged 15 or older -Count_Person_15OrMoreYears_Divorced_NativeHawaiianAndOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the percentage of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the proportion of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the rate of divorce among native hawaiian or other pacific islander people aged 15 years or more -Count_Person_15OrMoreYears_Divorced_OneRace,"population of people who are divorced and are one race, aged 15 years or more;people of one race who are divorced and are aged 15 or older;population of divorced people who are one race and aged 15 years or more;number of divorced people who are one race and aged 15 years or more" -Count_Person_15OrMoreYears_Divorced_SomeOtherRaceAlone,population of divorced people of other races aged 15 years or more;number of divorced people of other races aged 15 years or more;percentage of divorced people of other races aged 15 years or more;proportion of divorced people of other races aged 15 years or more -Count_Person_15OrMoreYears_Divorced_TwoOrMoreRaces,"multiracial people who are divorced and 15 years of age or older;people who are divorced and identify as multiracial and are 15 years of age or older;people who are 15 years of age or older, identify as multiracial, and are divorced;people who are divorced, multiracial, and 15 years of age or older" -Count_Person_15OrMoreYears_Divorced_WhiteAlone,the divorce rate among white people over 15 is high;a lot of white people over 15 are divorced;a large percentage of white people over 15 are divorced;divorce is common among white people over 15 -Count_Person_15OrMoreYears_Divorced_WhiteAloneNotHispanicOrLatino,white and non-hispanic people who have been divorced and are 15 years of age or older;white and non-hispanic people who are divorced and are at least 15 years old;white and non-hispanic people who have been divorced and are aged 15 or more;white and non-hispanic people who are divorced and are aged 15 and up -Count_Person_15OrMoreYears_Female_DivorcedInThePast12Months_OccupiedHousingUnit_ResidesInHousingUnit,number of divorced women aged 15 or older living in housing units;number of divorced female residents aged 15 or older in housing units;number of divorced women living in housing units aged 15 or older;number of female residents aged 15 or older living in housing units who are divorced -Count_Person_15OrMoreYears_Female_MarriedInThePast12Months_OccupiedHousingUnit_ResidesInHousingUnit,the number of occupied housing units with female residents aged 15 years or more who were married in the past 12 months;the number of occupied housing units with female residents aged 15 years or more who have been married in the past year;the number of occupied housing units with female residents aged 15 years or more who are currently married;the number of occupied housing units with female residents aged 15 years or more who are married and living together -Count_Person_15OrMoreYears_Female_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Female,the proportion of women aged 15 or older who smoke;the number of females aged 15 or older who smoke divided by the total number of females aged 15 or older;the number of females aged 15 or older who smoke as a fraction of the total number of females aged 15 or older;the proportion of females aged 15 years or older who smoke -Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,"female labor force participation rate, aged 15 years or older" -Count_Person_15OrMoreYears_Male_DivorcedInThePast12Months_OccupiedHousingUnit_ResidesInHousingUnit,the number of houses occupied by men aged 15 or older who have been divorced in the past 12 months;number of homes occupied by divorced men aged 15 and older in the past year;number of housing units occupied by divorced men aged 15 and older in the past 12 months;number of houses occupied by divorced men aged 15 and older in the past year -Count_Person_15OrMoreYears_Male_MarriedInThePast12Months_OccupiedHousingUnit_ResidesInHousingUnit,the number of homes occupied by men aged 15 or older who were married in the past 12 months;the number of housing units occupied by married men aged 15 or older;the number of homes occupied by married men aged 15 or older in the past 12 months;the number of housing units occupied by males aged 15 years or more who were married in the past 12 months -Count_Person_15OrMoreYears_Male_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Male,what percentage of adult males smoke?;what is the rate of smoking among adult males?;how many adult males smoke?;what is the percentage of adult males who smoke? -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AmericanIndianAndAlaskaNativeAlone,american indians or alaska natives aged 15 and above are married;american indians or alaska natives aged 15 and above are in a marital relationship;american indians or alaska natives aged 15 and above are living together as husband and wife;american indians or alaska natives aged 15 and above are in a committed relationship -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AsianAlone,the number of asian people aged 15 years or more who are married and not separated;the percentage of the asian population aged 15 years or more who are married and not separated;the proportion of the asian population aged 15 years or more who are married and not separated;the number of asian people aged 15 years or more who are in a marital union and not separated -Count_Person_15OrMoreYears_MarriedAndNotSeparated_BlackOrAfricanAmericanAlone,black people over 15 who are married and not separated;african americans over 15 who are married and not divorced;black people over 15 who are married and not living apart;black people over 15 who are married and not living apart from their spouse -Count_Person_15OrMoreYears_MarriedAndNotSeparated_ForeignBorn,"people who are 15 years old or older, married and not separated, and foreign-born;people who are 15 years or older and married but not separated, who were born in another country;people who are 15 years or older, married but not separated, and foreign-born;people who are 15 years or older, married but not separated, and foreign nationals" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_HispanicOrLatino,the number of hispanic people aged 15 years or more who are married;the percentage of hispanic people aged 15 years or more who are married;the proportion of hispanic people aged 15 years or more who are married;the share of hispanic people aged 15 years or more who are married -Count_Person_15OrMoreYears_MarriedAndNotSeparated_Native,the number of native people over 15 years old who are married;the percentage of native people over 15 years old who are married;the proportion of native people over 15 years old who are married;population of native americans who are married and over the age of 15 -Count_Person_15OrMoreYears_MarriedAndNotSeparated_NativeHawaiianAndOtherPacificIslanderAlone,native hawaiian or other pacific islander population above 15 years old who are married and not separated;number of native hawaiian or other pacific islander people above 15 years old who are married and not separated;percentage of native hawaiian or other pacific islander people above 15 years old who are married and not separated;share of native hawaiian or other pacific islander people above 15 years old who are married and not separated -Count_Person_15OrMoreYears_MarriedAndNotSeparated_OneRace,"the number of people who are married and not separated, who are 15 years old or older, and who are of one race;married people of one race aged 15 years or older;people of one race aged 15 years or older who are married and not separated;the population of one race aged 15 years or older who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_SomeOtherRaceAlone,"the percentage of people of some other race who are 15 years or older and married but not separated;the proportion of people of some other race who are 15 years or older and married but not separated;the number of people of some other race who are 15 years or older and married but not separated, expressed as a percentage of the total population of that race;the number of people of some other race who are 15 years or older and married but not separated, expressed as a proportion of the total population of that race" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_TwoOrMoreRaces,"the number of people who are multiracial and married, but not separated, who are 15 years old or older;the number of people who are multiracial and married, but not separated, who are in the age group of 15 years or older;the number of people who are multiracial and married, but not separated, who are in the age group of 15+;the number of people who are multiracial and aged 15 years or more who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAlone,white people who are married and not separated and are 15 years old or older;white people who are married and not separated and are of legal age;white people who are married and not separated and are adults;white people who are married and not separated and are grown-ups -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAloneNotHispanicOrLatino,married white and non-hispanic people aged 15 and older;white and non-hispanic people who are married and not separated and are aged 15 and older;white and non-hispanic people who are married and not separated and are at least 15 years old;white and non-hispanic people who are married and not separated and are older than 14 years old -Count_Person_15OrMoreYears_NeverMarried_AmericanIndianAndAlaskaNativeAlone,the number of american indian or alaska native people who are unmarried and 15 years of age or older;the number of unmarried american indian or alaska native people aged 15 and over;the number of american indian or alaska native people who are unmarried and aged 15 years or older;the number of american indian or alaska native people who are not married and aged 15 years or older -Count_Person_15OrMoreYears_NeverMarried_AsianAlone,the number of never-married asians aged 15 years or older;the proportion of asians aged 15 years or older who have never married;the percentage of asians aged 15 years or older who have never been married;the share of asians aged 15 years or older who have never been married -Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,"unmarried african americans aged 15 and above;african americans who have never been married, aged 15 and above;african americans aged 15 and above who are unmarried;african americans aged 15 and above who have never tied the knot" -Count_Person_15OrMoreYears_NeverMarried_ForeignBorn,"the number of people who were born in another country and are not married, aged 15 years or more;the number of foreign-born people who are not married, aged 15 years or more;the number of unmarried people who were born in another country, aged 15 years or more;the number of people who were born in another country and are not currently married, aged 15 years or more" -Count_Person_15OrMoreYears_NeverMarried_HispanicOrLatino, -Count_Person_15OrMoreYears_NeverMarried_Native,natives aged 15 years or more who have never been married;natives aged 15 years or more who are not married;percentage of the native population aged 15 years or more who have never married;share of the native population aged 15 years or more who are unmarried -Count_Person_15OrMoreYears_NeverMarried_NativeHawaiianAndOtherPacificIslanderAlone,native hawaiian or other pacific islander unmarried people aged 15 years or more;native hawaiian or other pacific islander people who are unmarried and are 15 years old or older;native hawaiian or other pacific islander people who are unmarried and are at least 15 years old;native hawaiian or other pacific islander unmarried population aged 15 years or more -Count_Person_15OrMoreYears_NeverMarried_OneRace,"the unmarried monoracial population aged 15 years or more;the number of unmarried monoracial people aged 15 years or more;people who are unmarried, monoracial, and at least 15 years old;people who are unmarried, monoracial, and over the age of 15" -Count_Person_15OrMoreYears_NeverMarried_SomeOtherRaceAlone,people of some other race who are unmarried and 15 years old or older;people of some other race who are unmarried and are at least 15 years old;people of some other race who are unmarried and 15 years of age or older;people of other races who are unmarried and 15 years of age or older -Count_Person_15OrMoreYears_NeverMarried_TwoOrMoreRaces,unmarried multiracial people over 15;the number of unmarried multiracial people over 15;the percentage of unmarried multiracial people over 15;the percentage of unmarried multiracial people over the age of 15 -Count_Person_15OrMoreYears_NeverMarried_WhiteAlone,white people who have never been married and are 15 years old or older;the number of white people who have never been married and are 15 years old or older;the percentage of white people who have never been married and are 15 years old or older;the proportion of white people who have never been married and are 15 years old or older -Count_Person_15OrMoreYears_NeverMarried_WhiteAloneNotHispanicOrLatino,the number of unmarried white non-hispanic people aged 15 years or older;the number of unmarried white hispanic people aged 15 years or older;the population of unmarried white non-hispanic people aged 15 years or older;the population of unmarried white hispanic people aged 15 years or older -Count_Person_15OrMoreYears_NoIncome,number of working-age people with no income;number of people of working age who are not earning money;number of people who are of working age and not employed;number of people who are of working age and not working -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn,women who were born outside the united states and are 15 years old or older and are not us citizens;foreign-born women who are 15 years old or older and are not us citizens;women who were not born in the united states and are 15 years old or older and are not us citizens;female immigrants who are 15 years old or older and are not us citizens -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,female foreign nationals in us adult prisons;foreign-born women in us adult prisons;women who are not us citizens in us adult prisons;female foreign nationals who are not us citizens and are 15 years of age or older in adult correctional facilities -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"individuals who are 15 years of age or older, not citizens of the united states, female, foreign-born, and living in college or university dormitories" -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInGroupQuarters,female foreign-born non-citizens aged 15 or older living in group quarters;female foreign-born non-citizens aged 15 years or more living in group quarters -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"females who were born outside of the us and are not us citizens, aged 15 or older, who are living in group quarters;women who were not born in the us and are not us citizens, aged 15 or older, who are living in group quarters;females who were not born in the united states and are not citizens of the united states, aged 15 or older, who are living in group quarters;women who were not born in the united states and are not citizens of the united states, aged 15 or older, who are living in group quarters" -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,foreign-born non-us female citizens living in group quarters;non-us female citizens born outside the us living in group quarters;female citizens of other countries living in group quarters in the us;women who are not us citizens and were born outside the us living in group quarters -Count_Person_15OrMoreYears_NotAUSCitizen_Female_ForeignBorn_ResidesInNursingFacilities,female foreign nationals over 15 years old in nursing homes;non-us female citizens aged 15 or older in nursing facilities;foreign-born female citizens of the united states aged 15 or older in nursing homes;female citizens of the united states who were born in another country and are aged 15 or older in nursing homes -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInAdultCorrectionalFacilities,non-us citizens aged 15 or older in adult correctional facilities;non-citizens in american adult correctional facilities;1 non-us citizens who are 15 years old or older and are incarcerated in adult correctional facilities;2 foreign-born people who are 15 years old or older and are serving time in adult prisons -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"people who are 15 years old or older, are not us citizens, were born in another country, and live in dormitories or other housing on college or university campuses;people who are 15 years old or older, are not us citizens, were born in another country, and live in housing that is provided by or affiliated with a college or university;people who are 15 years old or older, are not us citizens, were born in another country, and live in housing that is owned or operated by a college or university;people who are 15 years or older, not us citizens, and foreign-born who live in college or university student housing" -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInGroupQuarters,foreigners who are 15 or older and live in the us in a group setting;foreign-born non-citizens who are 15 years old or older and live in group quarters in the us -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"people who were born in another country and are 15 years old or older living in group quarters such as prisons, nursing homes, or mental hospitals;foreign-born people who are 15 years old or older living in group quarters;people who are 15 years old or older and were born in a foreign country living in group quarters;foreign-born people aged 15 years or more living in group quarters" -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"non-us citizens who were born in other countries and are 15 years of age or older and live in group quarters that are not institutions;people who were not born in the united states, are 15 years of age or older, and live in group quarters that are not institutions;foreign-born people who are not us citizens and are 15 years of age or older and live in group quarters that are not institutions;people who were born in other countries, are not us citizens, and are 15 years of age or older and live in group quarters that are not institutions" -Count_Person_15OrMoreYears_NotAUSCitizen_ForeignBorn_ResidesInNursingFacilities,"people 15 years old or older who are not us citizens and live in nursing homes;people who are 15 years old or older, who are not us citizens, who were born in another country, and who are living in long-term care facilities" -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn,"men who were born outside of the united states and are not us citizens, and who are 15 years of age or older;male immigrants who are not us citizens and are 15 years of age or older;men who were born in another country and are not us citizens, and who are at least 15 years old;foreign-born males who are not us citizens and are 15 years of age or older" -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,foreign nationals in us jails;adult correctional facilities housing foreign-born non-us citizens -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,a male non-citizen who was born outside of the united states and is over the age of 15 is living in university student housing;a male foreign-born non-citizen who is over the age of 15 is living in university student housing;a male non-citizen who was born outside of the united states and is at least 15 years old is living in university student housing;a male foreign-born non-citizen who is at least 15 years old is living in university student housing -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInGroupQuarters,"men who were born outside the united states and are not us citizens, who are 15 years old or older, and who live in group quarters;foreign-born men who are not us citizens, who are 15 years old or older, and who live in group quarters;men who are not us citizens and were not born in the united states, who are 15 years old or older, and who live in group quarters;men who were born outside of the united states and are not us citizens, who are 15 years old or older, and who are living in group quarters" -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"the number of foreign-born, non-us citizen males aged 15 years or more living in institutionalized group quarters;the number of foreign-born, non-us citizen men aged 15 years or more living in group quarters such as prisons, nursing homes, and hospitals;the number of foreign-born, non-us citizen males aged 15 years or older living in institutionalized group quarters;the population of foreign-born, non-us citizen males aged 15 years or older living in group quarters that are not private homes" -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"men who were born outside the united states and are not us citizens, who are 15 years old or older, and who are not living in an institution;non-us citizen males who are 15 years old or older and are not living in an institution;men who were born outside of the united states and are not us citizens, who are 15 years old or older, and who live in group quarters that are not institutions;male non-citizens who were born outside of the united states, who are 15 years old or older, and who live in group quarters that are not institutions" -Count_Person_15OrMoreYears_NotAUSCitizen_Male_ForeignBorn_ResidesInNursingFacilities,male foreign-born non-us citizen population aged 15 years or more in nursing facilities;male population aged 15 years or more in nursing facilities who are foreign-born and non-us citizens;male foreign-born non-us citizens aged 15 years or more in nursing facilities;male population aged 15 years or more in nursing facilities who are not us citizens and were born outside the us -Count_Person_15OrMoreYears_Separated_AmericanIndianAndAlaskaNativeAlone,american indian or alaska native people aged 15 years or older who are separated from their families;american indian or alaska native people aged 15 years or older who are not living with their families;american indian or alaska native people aged 15 years or older who are not living with their legal guardians;american indian or alaska native people aged 15 or older who are not living with their parents -Count_Person_15OrMoreYears_Separated_AsianAlone, -Count_Person_15OrMoreYears_Separated_BlackOrAfricanAmericanAlone,"black or african american population aged 15 and over, separated" -Count_Person_15OrMoreYears_Separated_ForeignBorn, -Count_Person_15OrMoreYears_Separated_HispanicOrLatino,hispanic population aged 15 years or older who are separated from their families;hispanics aged 15 years and older;hispanic population 15 years and up -Count_Person_15OrMoreYears_Separated_Native,"native population aged 15 years or older;native population aged 15 years and older;native population aged 15 and older;population of native americans 15 years of age or older, separated by race" -Count_Person_15OrMoreYears_Separated_NativeHawaiianAndOtherPacificIslanderAlone,native hawaiian or other pacific islander population aged 15 years or more;native hawaiian or other pacific islander population aged 15 and older;native hawaiian or other pacific islander population aged 15+;native hawaiian or other pacific islander population aged 15 years and up -Count_Person_15OrMoreYears_Separated_OneRace,"population by race, 15+;population of people who are 15 years old or older and who identify as a single race;population of people who are 15 years old or older and who identify with a single racial group;population of people who are 15 years old or older and identify as a single race" -Count_Person_15OrMoreYears_Separated_SomeOtherRaceAlone,"population of people of some other race aged 15 years or more, separated by race;population of people of some other race aged 15 years or more, by race;population of people of some other race aged 15 years or more, categorized by race;population of people of some other race aged 15 years or more, classified by race" -Count_Person_15OrMoreYears_Separated_TwoOrMoreRaces,multiracial people aged 15 and older;people who are multiracial aged 15 and older;multiracial people aged 15 years or more;people who are multiracial aged 15 years or more -Count_Person_15OrMoreYears_Separated_WhiteAlone,white people aged 15 or older;the white population aged 15 or older;the white population aged 15 and over;the white population over the age of 15 -Count_Person_15OrMoreYears_Separated_WhiteAloneNotHispanicOrLatino,white people and non-hispanics aged 15 and older -Count_Person_15OrMoreYears_Smoking_AsFractionOf_Count_Person_15OrMoreYears,"number of people aged 15 and over who smoke, as a fraction of the total number of people aged 15 and over;share of people aged 15 and over who smoke;fraction of people who smoke, aged 15 years or older;number of people who smoke, aged 15 years or older, as a percentage of the total population" -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native,native-born women in the united states who are 15 years old or older;female population of the united states who were born in the country and are 15 years of age or older;native-born female population of the united states aged 15 years or older;women who were born in the united states and are 15 years of age or older -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInAdultCorrectionalFacilities,female us natives aged 15 years or older in adult correctional facilities;women in the us who are 15 years old or older and are in adult correctional facilities;female us natives who are incarcerated in adult correctional facilities;women in the us who are 15 years old or older and are serving time in adult correctional facilities -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInCollegeOrUniversityStudentHousing,"female native population aged 15 years or more us citizen in college or university student housing;native american women aged 15 or older who are us citizens and live in college or university student housing;native american women who are at least 15 years old, are us citizens, and live in college or university dorms;native american women who are 15 years old or older, are us citizens, and live in college or university housing" -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInGroupQuarters,native-born us women who are 15 years old or older and living in group quarters;native-born american women aged 15 or older living in group quarters;women who are native-born citizens of the united states and are 15 years old or older living in group quarters;native-born female us citizens aged 15+ in group quarters -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInInstitutionalizedGroupQuarters,"the percentage of native american women living in group quarters in the united states who are 15 years of age or older and have been burned;the proportion of native american women in the united states who are 15 years of age or older and have been burned while living in group quarters;the number of native american women in the united states who are 15 years of age or older and have been burned while living in group quarters, expressed as a percentage of all native american women in the united states;the number of native american women in the united states who are 15 years of age or older and have been burned while living in group quarters, expressed as a percentage of all native american women in the united states who are 15 years of age or older" -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInNoninstitutionalizedGroupQuarters,the average lifespan of a female us citizen born in the united states who is 15 years or older and living in noninstitutionalized group quarters is 785 years -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Female_Native_ResidesInNursingFacilities,number of female us citizens aged 15 or older living in nursing homes;number of native us female citizens aged 15 or older living in nursing homes;number of female us citizens aged 15 or older who are residents of nursing homes;number of native us female citizens aged 15 or older who are residents of nursing homes -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native,the male us citizen population aged 15 years or older;the number of male us citizens aged 15 years or older;the male population of the us aged 15 years or older who are citizens;the male population of the us aged 15 years or older who are us citizens -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInAdultCorrectionalFacilities,us-born male citizens in adult correctional facilities;native-born us male citizens in adult prisons;adult male us citizens born in the us who are incarcerated;us-born male citizens who are incarcerated in adult correctional facilities -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInCollegeOrUniversityStudentHousing,a us-born male citizen of the united states who is at least 15 years old and lives in college or university student housing;a us-born male citizen of the united states who is at least 15 years old and is a student at a college or university;a us-born male citizen of the united states who is at least 15 years old and lives in a college or university residence hall;a native-born male us citizen aged 15 or older who lives in college or university student housing -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInGroupQuarters,american men aged 15 or older who were born in the us and live in group quarters;us-born men aged 15 or older who live in group quarters;native-born american men aged 15 or older who live in group quarters;men who were born in the us and are aged 15 or older and live in group quarters -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInInstitutionalizedGroupQuarters,"the number of native-born males aged 15 years or older who are us citizens and live in institutionalized group quarters;the number of us-born men aged 15 years or older who are citizens and live in group quarters;the number of native-born male citizens aged 15 years or older who live in group quarters, such as prisons, hospitals, and nursing homes;the number of native-born us male citizens aged 15 years or older living in institutional group quarters" -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInNoninstitutionalizedGroupQuarters,native american men aged 15 or older who are us citizens and not in group quarters;native american males aged 15 or older who are us citizens and not institutionalized or in group quarters;native american men aged 15 or older who are us citizens and not institutionalized or living in group quarters;native-born us male citizens aged 15 or older living in non-institutional group quarters -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Male_Native_ResidesInNursingFacilities,the average lifespan of a male us citizen born in the united states who is 15 years or older and lives in a nursing facility;the average number of years a male us citizen born in the united states who is 15 years or older and lives in a nursing facility is expected to live;the average life expectancy of a male us citizen born in the united states who is 15 years or older and lives in a nursing facility;how long does a male us citizen born in the united states who is 15 years or older and lives in a nursing facility typically live -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInAdultCorrectionalFacilities,us citizens born in the us who are 15 years or older in adult correctional facilities;us citizens born in the us who are over 15 years old in adult correctional facilities;us citizens born in the us who are adults in adult correctional facilities;us citizens born in the us who are incarcerated in adult correctional facilities -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInCollegeOrUniversityStudentHousing,us citizens born in the us aged 15 or older living in college or university student housing;us-born college students aged 15 or older living on campus;us-born citizens aged 15 or older living in college or university student housing;native-born americans aged 15 or older living in college or university accommodation -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInGroupQuarters,us citizens aged 15 or older living in group quarters;native-born us citizens aged 15 or older living in group quarters;us citizens who are 15 years old or older and live in group quarters;us citizens who are 15 years old or older and are living in group quarters -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInInstitutionalizedGroupQuarters,the number of people 15 years or older who are native-born us citizens and live in institutionalized group quarters -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInNoninstitutionalizedGroupQuarters,people who were born in the united states and are 15 years old or older and are not living in an institution;native-born us citizens who are 15 or older and not institutionalized -Count_Person_15OrMoreYears_USCitizenBornInTheUnitedStates_Native_ResidesInNursingFacilities,the average lifespan of a us citizen born in the united states who is 15 years or older and lives in a nursing facility;the average number of years a us citizen born in the united states who is 15 years or older and lives in a nursing facility is expected to live;the expected lifespan of a us citizen born in the united states who is 15 years or older and lives in a nursing facility;the average life expectancy of a us citizen born in the united states who is 15 years or older and lives in a nursing facility -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn,female us citizens who naturalized after the age of 15;women who were born in another country and became us citizens after the age of 15;female naturalized us citizens who were 15 years old or older when they naturalized;women who were naturalized as us citizens after the age of 15 -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,female us citizens who naturalized after the age of 15 and are currently in adult correctional facilities;female us citizens who became citizens through naturalization after the age of 15 and are currently in adult prisons;female us citizens who were naturalized after the age of 15 and are currently in adult detention centers;female us citizens who became citizens through naturalization after the age of 15 and are currently in adult jails -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,foreign-born women who are us citizens by naturalization and are 15 years old or older and live in college or university student housing;women who were born outside of the united states and have become citizens through naturalization and are 15 years old or older and live in college or university student housing;female foreign-born naturalized us citizens aged 15 or older living in college or university student housing;female foreign-born us citizens who have become citizens through naturalization and are 15 years old or older and live in college or university student housing -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInGroupQuarters,us citizenship by naturalization for foreign born females in group quarters;female foreign born individuals who have become us citizens and live in group quarters;women who were born outside of the us and have become us citizens through naturalization and live in group quarters;female foreign born individuals who have been naturalized as us citizens and currently reside in group quarters -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"female us citizens by naturalization, foreign born, aged 15 years or more, residing in institutionalized group quarters;us citizens by naturalization, female, foreign born, aged 15 years or more, living in group quarters;foreign-born female us citizens who have naturalized and are 15 years of age or older and are residing in institutionalized group quarters" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"female us citizens who were born in another country and have naturalized as us citizens, aged 15 years or more, who are not living in an institution;female us citizens who were born in another country and have become us citizens through naturalization, aged 15 years or more, and are not living in a nursing home, prison, or other institution;female us citizens who were born in another country and have been granted us citizenship, aged 15 years or more, and are not living in a group home, hospital, or other type of institution;female us citizens who were born in another country and have become us citizens through the process of naturalization, aged 15 years or more, and are not living in a residential care facility, mental hospital, or other type of group living arrangement" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Female_ForeignBorn_ResidesInNursingFacilities,"foreign-born women who are us citizens by naturalization and are 15 years of age or older and are living in nursing homes;women who were born in other countries and became us citizens through the naturalization process, who are 15 years of age or older, and who are living in nursing homes;female us citizens who were not born in the united states but became citizens through the naturalization process and are 15 years of age or older and are living in nursing homes;women who were born in other countries and became us citizens through the naturalization process and are 15 years of age or older and are living in nursing homes" -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInAdultCorrectionalFacilities,the number of foreign-born adults in us correctional facilities who have become us citizens through the process of naturalization;the number of foreign-born adults who are us citizens by naturalization and are incarcerated in adult correctional facilities;the percentage of foreign-born adults who are us citizens by naturalization and are incarcerated in adult correctional facilities;the proportion of foreign-born adults who are us citizens by naturalization and are incarcerated in adult correctional facilities -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,number of foreign-born people aged 15 years or older who are us citizens by naturalization and live in college housing;number of foreign-born people aged 15 years or older who are us citizens by naturalization and are college students;number of foreign-born people aged 15 years or older who are us citizens by naturalization and live in college dormitories;number of foreign-born people aged 15 years or older who are us citizens by naturalization and live in college apartments -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInGroupQuarters,us citizen by naturalization who is 15 years of age or older and living in a group quarters;us citizen by naturalization who is at least 15 years old and living in a group quarters;us citizen by naturalization who is 15 years of age or older and living in a communal living arrangement -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"us citizens who were born in another country and have been naturalized, aged 15 or older, living in group quarters such as prisons, hospitals, or nursing homes;us citizens who were not born in the us but have become citizens through naturalization, aged 15 or older, living in group quarters;us citizens who were born in another country and have become citizens through naturalization, aged 15 or older, living in institutions;us citizens who were not born in the us but have become citizens through naturalization, aged 15 or older, living in group homes" -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,burns in non-institutional group quarters for people who naturalized when they were 16 years old or older;burns in non-institutional group quarters for people who became citizens when they were 16 years old or older;burns in non-institutional group quarters for people who were naturalized at 16 years old or older;burns in non-institutional group quarters for people who became citizens at 16 years old or older -Count_Person_15OrMoreYears_USCitizenByNaturalization_ForeignBorn_ResidesInNursingFacilities,us citizens who were born in other countries and are 15 years old or older living in nursing homes;naturalized us citizens who are 15 years old or older living in nursing homes;immigrants who are 15 years old or older living in nursing homes;us citizens who were born in another country and are 15 years old or older living in nursing homes -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn,naturalized us citizen males aged 15 or older living in nursing homes;us citizens by naturalization who are male and aged 15 years or more who are living in nursing facilities and were born in other countries -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,"the number of male us citizens who were not born in the us but who have become us citizens through naturalization, who are aged 15 years or older, and who are currently serving time in a correctional facility;male us citizens who were born in another country and naturalized as us citizens, aged 15 years or more, who are locked up in adult correctional facilities;male us citizens who were born in other countries and are naturalized citizens, aged 15 years or more, who are in adult correctional facilities;male us citizens who were born in other countries and became citizens through the naturalization process, aged 15 years or more, who are in adult prisons" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"male us citizens who were born outside of the us and have become us citizens through naturalization, aged 15 years and above, living in university dormitories;male us citizens who were born in other countries and have become us citizens through naturalization, aged 15 years and above, living in university residence halls;male us citizens who were born outside of the us and have become us citizens through naturalization, aged 15 years and above, living in university student accommodation;male us citizens who were born in other countries and have become us citizens through naturalization, aged 15 years and above, living in university housing" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInGroupQuarters,"male us citizens who were born outside of the united states and have become us citizens through naturalization, aged 15 years and above, living in group quarters;male us citizens who were naturalized as us citizens, aged 15 years and above, living in group quarters" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"number of male us citizens who were born in another country and have become citizens through naturalization, aged 15 years or more, living in institutionalized group quarters;the number of male us citizens who were born in other countries but have become citizens, aged 15 years or older, who are living in places like prisons, nursing homes, and mental hospitals;male us citizens born outside the country by naturalization, aged 15 or over, in institutionalized group quarters;foreign-born male us citizens who have become citizens through naturalization, aged 15 or over, in institutionalized group quarters" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"the number of male us citizens who were born in another country and have been naturalized, aged 15 years or older, who are not living in an institution;the number of male us citizens who were not born in the us but have become citizens through naturalization, aged 15 years or older, who are not living in a hospital, prison, or other institution;the number of male us citizens who were born in another country but have become citizens through naturalization, aged 15 years or older, who are not living in a residential care facility or other type of institution;the number of male us citizens who were born in another country but have become citizens through naturalization, aged 15 years or older, who are not living in a nursing home or other type of long-term care facility" -Count_Person_15OrMoreYears_USCitizenByNaturalization_Male_ForeignBorn_ResidesInNursingFacilities,"foreign-born male us citizens who naturalized after the age of 15 and are now in nursing homes;male us citizens who were born in other countries and became citizens after the age of 15 and are now in nursing homes;male us citizens who were naturalized after the age of 15 and are now in nursing homes, regardless of their country of origin;male us citizens who were born in other countries and are now in nursing homes, regardless of when they became citizens" -Count_Person_15OrMoreYears_Widowed_AmericanIndianAndAlaskaNativeAlone,widows of american indian or alaska native descent who are 15 years of age or older;american indian or alaska native women who are widowed;american indian or alaska native widows aged 15 years or older;american indian or alaska native widows who are 15 years old or older -Count_Person_15OrMoreYears_Widowed_AsianAlone,the number of asian people aged 15 years or more who are widowed;the percentage of asian people aged 15 years or more who are widowed;the proportion of asian people aged 15 years or more who are widowed;the share of asian people aged 15 years or more who are widowed -Count_Person_15OrMoreYears_Widowed_BlackOrAfricanAmericanAlone,african americans who are widowed and 15 years of age or older;the number of african americans who are widowed and 15 years of age or older;the percentage of african americans who are widowed and 15 years of age or older;the proportion of african americans who are widowed and 15 years of age or older -Count_Person_15OrMoreYears_Widowed_ForeignBorn,widowed foreign-born people aged 15 years or more;foreign-born people aged 15 years or more who are widowed;foreign-born widowed people;the number of foreign-born people aged 15 or more who are widowed -Count_Person_15OrMoreYears_Widowed_HispanicOrLatino,hispanic widows;hispanic women who have lost their husbands;hispanic women who are no longer married;hispanic women who are widowed -Count_Person_15OrMoreYears_Widowed_Native,native widowed people aged 15 and over;native people aged 15 and over who are widowed;native people aged 15 and over who have lost their spouse;native widowed people aged 15 years and older -Count_Person_15OrMoreYears_Widowed_NativeHawaiianAndOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander widows aged 15 years or more;the proportion of native hawaiian or other pacific islander women who are widowed;the number of native hawaiian or other pacific islander women who are widowed and aged 15 years or more;the percentage of native hawaiian or other pacific islander women who are widowed -Count_Person_15OrMoreYears_Widowed_OneRace,"people who are widowed and have one race, aged 15 years or older" -Count_Person_15OrMoreYears_Widowed_SomeOtherRaceAlone,the number of people of some other race who are widowed and 15 years of age or older;the number of people of some other race who are widowed and older than 14;the number of people of some other race who are widowed and at least 15 years old;the number of people of some other race who are widowed and have reached the age of 15 -Count_Person_15OrMoreYears_Widowed_TwoOrMoreRaces,"population of people who are widowed and multiracial, aged 15 years or more;multiracial people who are widowed, aged 15 years or more;people who are widowed and multiracial, aged 15 years or older;multiracial people who are widowed, aged 15 years or older" -Count_Person_15OrMoreYears_Widowed_WhiteAlone,white people who have been widowed for more than 15 years;white people who are no longer married and have been widowed for more than 15 years;white people who are widowed and have been widowed for more than 15 years;white people who are widowed and have been widowed for 15 years or more -Count_Person_15OrMoreYears_Widowed_WhiteAloneNotHispanicOrLatino,the number of white non-hispanic people aged 15 years or more who are widowed;the percentage of white non-hispanic people aged 15 years or more who are widowed;the proportion of white non-hispanic people aged 15 years or more who are widowed;the number of white non-hispanic people aged 15 years or more who have lost their spouse -Count_Person_15OrMoreYears_WithIncome,percentage of people over 15 with income;number of people over 15 with income;proportion of people over 15 with income;share of people over 15 with income -Count_Person_15To19Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To19Years_Female,girls aged 15 to 19 who gave birth in the past year;the number of teenage girls who gave birth in the past year;the number of girls aged 15 to 19 who have had a baby in the past year;number of teenage girls who gave birth in the past year -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPrivateSchool,the number of african americans aged 15 to 19 years enrolled in private schools;the percentage of african americans aged 15 to 19 years enrolled in private schools;the proportion of african americans aged 15 to 19 years enrolled in private schools;the african american student body in private schools -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPublicSchool,the number of african americans aged 15 to 19 years in public schools;the percentage of african americans aged 15 to 19 years in public schools;the proportion of african americans aged 15 to 19 years in public schools;the share of african americans aged 15 to 19 years in public schools -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_ResidesInHousehold,the number of african americans living in households with people aged 15 to 19 years;the number of african american households with members aged 15 to 19 years;the number of african americans living in households with children aged 15 to 19 years;the number of african american households with teenagers -Count_Person_15To19Years_Female_EverMarried_BlackOrAfricanAmericanAlone,number of african american women aged 15 to 19 who have ever been married;number of ever-married african american women aged 15 to 19;percentage of african american women aged 15 to 19 who have ever been married;proportion of african american women aged 15 to 19 who have ever been married -Count_Person_15To19Years_Female_EverMarried_HispanicOrLatino, -Count_Person_15To19Years_Female_EverMarried_WhiteAloneNotHispanicOrLatino,the number of non-hispanic white females aged 15 to 19 years who have ever been married;the percentage of non-hispanic white females aged 15 to 19 years who have ever been married;the proportion of non-hispanic white females aged 15 to 19 years who have ever been married;the number of non-hispanic white females aged 15 to 19 years who have been married at least once -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPrivateSchool,how many hispanic people aged 15 to 19 are in private schools?;what is the hispanic population aged 15 to 19 in private schools?;what percentage of hispanic people aged 15 to 19 are in private schools?;what is the number of hispanic people aged 15 to 19 in private schools as a percentage of the total hispanic population aged 15 to 19? -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPublicSchool,public school students aged 15-19 who are hispanic or latino;students aged 15-19 who are hispanic or latino and attend public schools;hispanic or latino public school students aged 15-19;hispanic or latino students in the public school system aged 15-19 -Count_Person_15To19Years_HispanicOrLatino_ResidesInHousehold,households with hispanic members aged 15 to 19 years;households headed by a hispanic person aged 15 to 19 years;households with hispanic children aged 15 to 19 years;households with hispanic teenagers -Count_Person_15To19Years_Male_EverMarried_BlackOrAfricanAmericanAlone,african american men who are 15 to 19 years old and have ever been married;african american males aged 15 to 19 who have been in a marital relationship;15 to 19 year old african american men who have been married at least once -Count_Person_15To19Years_Male_EverMarried_HispanicOrLatino,the number of hispanic males who have ever been married and are aged 15 to 19 years;the number of hispanic males aged 15 to 19 years who have ever been married;the hispanic male population aged 15 to 19 years who have ever been married;the number of hispanic males aged 15 to 19 years who have been married at least once -Count_Person_15To19Years_Male_EverMarried_WhiteAloneNotHispanicOrLatino,white non-hispanic males who have ever been married and are aged 15 to 19 years;white non-hispanic males aged 15 to 19 years who have been married at least once;white non-hispanic males aged 15 to 19 years who have ever entered into a marriage;white non-hispanic males aged 15 to 19 years who have ever been in a marital relationship -Count_Person_15To19Years_MarriedCoupleFamilyHousehold_BlackOrAfricanAmericanAlone_ResidesInHousehold,african american married couples with children aged 15 to 19;african american married-couple households with children aged 15 to 19;african american married couples with children aged 15 to 19 years;african american families headed by married couples with children aged 15 to 19 years -Count_Person_15To19Years_MarriedCoupleFamilyHousehold_HispanicOrLatino_ResidesInHousehold,hispanic married couples with children aged 15 to 19;hispanic families headed by married couples with children aged 15 to 19;hispanic households headed by married couples with children aged 15 to 19;hispanic families with married couples and children aged 15 to 19 years -Count_Person_15To19Years_MarriedCoupleFamilyHousehold_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,households with married couples who are white and non-hispanic and have children aged 15 to 19;households with married white non-hispanic couples and children aged 15 to 19;households with married white non-hispanic parents and children aged 15 to 19;households with married white non-hispanic couples and teenagers -Count_Person_15To19Years_NonfamilyHousehold_BlackOrAfricanAmericanAlone_ResidesInHousehold,"african american households without parents or other relatives, aged 15 to 19;black people who are not living with their families, aged 15 to 19;african american households headed by someone under the age of 20;black people who are not living with their parents or guardians, aged 15 to 19" -Count_Person_15To19Years_NonfamilyHousehold_HispanicOrLatino_ResidesInHousehold,households of hispanic people aged 15 to 19 who are not living with family members;hispanic people aged 15 to 19 who are living in households without family members;hispanic people aged 15 to 19 who are living in non-family households;households without families of hispanic people aged 15 to 19 years -Count_Person_15To19Years_NonfamilyHousehold_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,the number of white non-hispanic people aged 15 to 19 years living in non-family households;the white non-hispanic population aged 15 to 19 years living in non-family households;the percentage of the white non-hispanic population aged 15 to 19 years living in non-family households;the proportion of the white non-hispanic population aged 15 to 19 years living in non-family households -Count_Person_15To19Years_SingleFatherFamilyHousehold_BlackOrAfricanAmericanAlone_ResidesInHousehold,1 african american children between the ages of 15 and 19 who live with their fathers only;2 african american teenagers who live with their single fathers;3 african american youth aged 15 to 19 who are raised by their fathers;4 african american children in single-father households who are between the ages of 15 and 19 -Count_Person_15To19Years_SingleFatherFamilyHousehold_HispanicOrLatino_ResidesInHousehold,households with hispanic fathers and children aged 15 to 19;hispanic single fathers and their children aged 15 to 19;single hispanic fathers with children aged 15 to 19;hispanic fathers raising children aged 15 to 19 on their own -Count_Person_15To19Years_SingleFatherFamilyHousehold_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,"white, non-hispanic single fathers with children aged 15 to 19;white, non-hispanic single-father households with children aged 15 to 19;households headed by a single father of white, non-hispanic children aged 15 to 19;households with white, non-hispanic children aged 15 to 19 headed by a single father" -Count_Person_15To19Years_SingleMotherFamilyHousehold_BlackOrAfricanAmericanAlone_ResidesInHousehold,african american youth aged 15 to 19 who live in households with a single mother;the number of african american people aged 15 to 19 years living in single-mother households;the proportion of african american people aged 15 to 19 years living in single-mother households;the percentage of african american people aged 15 to 19 years living in single-mother households -Count_Person_15To19Years_SingleMotherFamilyHousehold_HispanicOrLatino_ResidesInHousehold,households with hispanic single mothers and children aged 15 to 19;hispanic single-mother households with children aged 15 to 19;households headed by hispanic single mothers with children aged 15 to 19;households with hispanic single mothers and teenagers -Count_Person_15To19Years_SingleMotherFamilyHousehold_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,households headed by single mothers of white non-hispanic children aged 15 to 19 years;households with white non-hispanic single mothers and children aged 15 to 19 years;households with white non-hispanic children aged 15 to 19 years living with their single mothers;households with white non-hispanic single mothers and their children aged 15 to 19 years -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPrivateSchool,the percentage of white non-hispanic people aged 15 to 19 years enrolled in private schools;the number of white non-hispanic people aged 15 to 19 years enrolled in private schools;the proportion of white non-hispanic people aged 15 to 19 years enrolled in private schools;the share of white non-hispanic people aged 15 to 19 years enrolled in private schools -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPublicSchool,the number of white and non-hispanic people aged 15 to 19 years in public schools;the percentage of white and non-hispanic people aged 15 to 19 years in public schools;the proportion of white and non-hispanic people aged 15 to 19 years in public schools;the share of white and non-hispanic people aged 15 to 19 years in public schools -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,"the population of white alone not hispanic or latino people aged 15 to 19 who live in a household;the number of people who are aged 15 to 19 years, and who live in households headed by someone who is white alone and not hispanic or latino" -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentBachelorsDegreeOrHigher_Female, -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentBachelorsDegreeOrHigher_Female_AsAFractionOf_Count_Person_15To50Years_EducationalAttainmentBachelorsDegreeOrHigher_Female, -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentBachelorsDegreeOrHigher_Female_Unmarried,the number of unmarried women aged 15 to 50 who have a bachelor's degree or higher in the past 12 months;the number of unmarried women aged 15 to 50 who have completed a bachelor's degree or higher in the past 12 months;the number of unmarried women aged 15 to 50 who have earned a bachelor's degree or higher in the past 12 months;the number of unmarried women aged 15 to 50 who have graduated with a bachelor's degree or higher in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentGraduateOrProfessionalDegree_Female,how many babies were born to women aged 15 to 50 with graduate degrees in the past 12 months?;what was the number of births to women aged 15 to 50 with graduate degrees in the past 12 months?;how many women aged 15 to 50 with graduate degrees gave birth in the past 12 months?;what was the total number of births to women aged 15 to 50 with graduate degrees in the past 12 months? -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentGraduateOrProfessionalDegree_Female_AsAFractionOf_Count_Person_15To50Years_EducationalAttainmentGraduateOrProfessionalDegree_Female,"the number of women aged 15 to 50 who gave birth in the past 12 months and have a graduate or professional degree;the percentage of women aged 15 to 50 who gave birth in the past 12 months and have a graduate or professional degree;the proportion of women aged 15 to 50 who gave birth in the past 12 months and have a graduate or professional degree;the number of women aged 15 to 50 who gave birth in the past 12 months who have a graduate or professional degree, expressed as a percentage of the total number of women aged 15 to 50" -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentGraduateOrProfessionalDegree_Female_Unmarried,unmarried women aged 15 to 50 with graduate or professional degrees who have given birth in the past 12 months;unmarried women aged 15 to 50 with graduate or professional degrees who have become mothers in the past 12 months;unmarried women aged 15 to 50 with graduate or professional degrees who are mothers of newborns;unmarried women aged 15 to 50 with graduate or professional degrees who are new mothers -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_Female,number of births to females aged 15 to 50 with high school education or equivalent in the past 12 months;number of live births to females aged 15 to 50 with high school education or equivalent in the past 12 months;number of babies born to women aged 15 to 50 with a high school education in the past 12 months;number of babies born to women aged 15 to 50 with a high school diploma or equivalent in the past year -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_Female_AsAFractionOf_Count_Person_15To50Years_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_Female,the number of females aged 15 to 50 who graduated from high school or obtained an equivalency diploma in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_Female_Unmarried,"women who have given birth in the past 12 months and are unmarried, high school graduates, and aged 15 to 50;women who have given birth in the past 12 months and are unmarried, have a high school diploma, and are 15 to 50 years old;women who are unmarried, have a high school diploma, are aged 15 to 50, and have given birth in the past 12 months;females who are not married, have graduated from high school, are aged 15 to 50, and have given birth in the past year" -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentLessThanHighSchoolGraduate_Female,number of women aged 15 to 50 who have not graduated from high school and have had a baby in the past year;number of women aged 15 to 50 who are not high school graduates and have given birth in the past year;number of women aged 15 to 50 who have not completed high school and have had a baby in the past 12 months;number of women aged 15 to 50 who have not graduated from high school and have had a child in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentLessThanHighSchoolGraduate_Female_AsAFractionOf_Count_Person_15To50Years_EducationalAttainmentLessThanHighSchoolGraduate_Female,female population aged 15 to 50 with no high school diploma -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentLessThanHighSchoolGraduate_Female_Unmarried,number of births to unmarried women aged 15 to 50 with less than a high school diploma in the past 12 months;births to unmarried women aged 15 to 50 with less than a high school diploma in the last year;number of births to unmarried women aged 15 to 50 with less than a high school diploma in the last 12 months;births to unmarried women aged 15 to 50 with less than a high school diploma in the last 365 days -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,number of births to women aged 15 to 50 with some college or associate's degrees in the past 12 months;number of births to women aged 15 to 50 with some college or associate's degrees in the last year;number of births to women aged 15 to 50 with some college or associate's degrees in the 12-month period ending today;number of births to women aged 15 to 50 with some college or associate's degrees in the last 365 days -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female_AsAFractionOf_Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,"number of births to women aged 15-50 in the past 12 months who have some college or an associate's degree;share of births in the past 12 months to women aged 15-50 who have some college or an associate's degree;number of babies born to women aged 15-50 in the past 12 months who have some college or an associate's degree, as a percentage of all births in that age group;the number of babies born to women aged 15 to 50 in the past 12 months who have some college or an associate's degree" -Count_Person_15To50Years_BirthInThePast12Months_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female_Unmarried,unmarried women aged 15 to 50 with some college or associate's degrees who gave birth in the past 12 months;women aged 15 to 50 with some college or associate's degrees who are not married and gave birth in the past 12 months;unmarried women aged 15 to 50 who have given birth in the past 12 months and have some college or an associate's degree;unmarried women aged 15 to 50 with some college or an associate's degree who gave birth in the last 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_1.0OrLessRatioToPovertyLine, -Count_Person_15To50Years_BirthInThePast12Months_Female_1.0OrLessRatioToPovertyLine_AsAFractionOf_Count_Person_15To50Years_Female_1.0OrLessRatioToPovertyLine,females aged 15 to 50 with a low income;females aged 15 to 50 with a low socioeconomic status;the number of women aged 15 to 50 years who are struggling to make ends meet;women aged 15 to 50 who are struggling to make ends meet -Count_Person_15To50Years_BirthInThePast12Months_Female_1To1.99RatioToPovertyLine, -Count_Person_15To50Years_BirthInThePast12Months_Female_1To1.99RatioToPovertyLine_AsAFractionOf_Count_Person_15To50Years_Female_1To1.99RatioToPovertyLine,"what percentage of women aged 15 to 50 have lived below the poverty line for the past 12 years?;what proportion of women aged 15 to 50 have been living in poverty for the past 12 years?;what is the number of women aged 15 to 50 who have lived below the poverty line for the past 12 years, as a percentage of the total number of women in that age group?;what is the percentage of women aged 15 to 50 who have been living in poverty for the past 12 years, out of all women in that age group?" -Count_Person_15To50Years_BirthInThePast12Months_Female_2OrMoreRatioToPovertyLine,the number of births in the past 12 months to females aged 15 to 50 years with a ratio to the poverty line of 2 or more;the number of births in the past year to women aged 15 to 50 years who earn less than twice the poverty line;the number of births to females aged 15 to 50 in the past 12 months who have a ratio of income to poverty line of 2 or more;the number of births to women aged 15 to 50 in the past 12 months who have an income that is at least twice the poverty line -Count_Person_15To50Years_BirthInThePast12Months_Female_2OrMoreRatioToPovertyLine_AsAFractionOf_Count_Person_15To50Years_Female_2OrMoreRatioToPovertyLine,the number of births to women aged 15 to 50 in the past year who are struggling to make ends meet -Count_Person_15To50Years_BirthInThePast12Months_Female_AmericanIndianOrAlaskaNativeAlone,number of births to american indian and alaska native women aged 15 to 50 in the past 12 months;number of births to american indian or alaska native females aged 15 to 50 in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_AmericanIndianOrAlaskaNativeAlone_AsAFractionOf_Count_Person_15To50Years_Female_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native women who gave birth in the past 12 months;the number of american indian or alaska native women who gave birth in the past 12 months;the female population of american indian or alaska native descent who gave birth in the past 12 months;the number of american indian or alaska native women aged 15 to 50 who gave birth in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To50Years_Female, -Count_Person_15To50Years_BirthInThePast12Months_Female_AsianAlone,women of asian descent aged 15 to 50 who gave birth in the last 12 months;asian females who gave birth in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_AsianAlone_AsAFractionOf_Count_Person_15To50Years_Female_AsianAlone,the number of asian women aged 15 to 50 who have given birth in the past 12 months;the percentage of asian women aged 15 to 50 who have given birth in the past 12 months;the proportion of asian women aged 15 to 50 who have given birth in the past 12 months;the number of asian women aged 15 to 50 who have had a baby in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_BlackOrAfricanAmericanAlone_AsAFractionOf_Count_Person_15To50Years_Female_BlackOrAfricanAmericanAlone,black women aged 15 to 50 years old born in the last 12 months;females of african descent aged 15 to 50 years old born in the last 12 months;african american women aged 15 to 50 years old born in the last year;black women aged 15 to 50 years old born in the last 365 days -Count_Person_15To50Years_BirthInThePast12Months_Female_ForeignBorn,female foreign-born population aged 15 to 50 who gave birth in the past 12 months;foreign-born mothers aged 15 to 50 who had a baby in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_ForeignBorn_AsAFractionOf_Count_Person_15To50Years_Female_ForeignBorn,"number of births to foreign-born females aged 15 to 50 in the past 12 months;number of foreign-born females aged 15 to 50 who gave birth in the past 12 months;number of births to foreign-born women aged 15 to 50 in the past 12 months;number of births to foreign-born women in the past 12 months, aged 15 to 50" -Count_Person_15To50Years_BirthInThePast12Months_Female_HispanicOrLatino_AsAFractionOf_Count_Person_15To50Years_Female_HispanicOrLatino,how many babies were born to hispanic women aged 15 to 50 in the past 12 months?;what was the birth rate of hispanic women aged 15 to 50 in the past 12 months?;how many hispanic babies were born in the past 12 months?;what was the number of hispanic births in the past 12 months? -Count_Person_15To50Years_BirthInThePast12Months_Female_Native,native women aged 15 to 50 who gave birth in the past 12 months;native women who gave birth in the past year;native women who have had a baby in the past year;native women who have given birth in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_NativeHawaiianOrOtherPacificIslanderAlone,number of births to native hawaiian or other pacific islander women aged 15 to 50 in the past 12 months;number of native hawaiian or other pacific islander babies born in the past 12 months;births to native hawaiian or other pacific islander women in the past 12 months;native hawaiian or other pacific islander births in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_NativeHawaiianOrOtherPacificIslanderAlone_AsAFractionOf_Count_Person_15To50Years_Female_NativeHawaiianOrOtherPacificIslanderAlone,native hawaiian or other pacific islander women aged 15 to 50 who have given birth in the past 12 months;native hawaiian or other pacific islander women who have had a baby in the past year;native hawaiian or other pacific islander women who have given birth in the last 12 months;women of native hawaiian or other pacific islander descent who have given birth in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_Native_AsAFractionOf_Count_Person_15To50Years_Female_Native, -Count_Person_15To50Years_BirthInThePast12Months_Female_OneRace, -Count_Person_15To50Years_BirthInThePast12Months_Female_OneRace_AsAFractionOf_Count_Person_15To50Years_Female_OneRace, -Count_Person_15To50Years_BirthInThePast12Months_Female_PovertyStatusDetermined,women aged 15 to 50 who gave birth in the past 12 months and are living in poverty;women aged 15 to 50 who gave birth in the past 12 months and have a low income;women aged 15 to 50 who gave birth in the past 12 months and are struggling to make ends meet;women aged 15 to 50 who gave birth in the past 12 months and are living below the poverty line -Count_Person_15To50Years_BirthInThePast12Months_Female_PovertyStatusDetermined_AsAFractionOf_Count_Person_15To50Years_Female_PovertyStatusDetermined,"sure, here are 5 different ways of saying the sentence ""population: 15 - 50 years, birth in the past 12 months, female, poverty status determined (as fraction of count person 15 to 50 years female poverty status determined)"":" -Count_Person_15To50Years_BirthInThePast12Months_Female_SomeOtherRaceAlone,what was the number of births to women of other races aged 15 to 50 in the past 12 months?;what is the total number of births to women of other races aged 15 to 50 in the past 12 months?;how many births were there to women of other races aged 15 to 50 in the past 12 months?;what is the birth rate for women of other races aged 15 to 50 in the past 12 months? -Count_Person_15To50Years_BirthInThePast12Months_Female_SomeOtherRaceAlone_AsAFractionOf_Count_Person_15To50Years_Female_SomeOtherRaceAlone,women of other races born in the past 12 months who are between the ages of 15 and 50;females of other races who were born in the last 12 months and are between the ages of 15 and 50;females of other races who are 15 to 50 years old and were born in the last 12 months;women of other races who are 15 to 50 years old and were born in the last year -Count_Person_15To50Years_BirthInThePast12Months_Female_TwoOrMoreRaces,"number of births to multiracial females aged 15 to 50 in the past 12 months;number of births to women who identify as multiracial aged 15 to 50 in the past 12 months;number of births to women who do not identify as solely white, black, asian, or native american aged 15 to 50 in the past 12 months;number of multiracial female births in the past 12 months" -Count_Person_15To50Years_BirthInThePast12Months_Female_TwoOrMoreRaces_AsAFractionOf_Count_Person_15To50Years_Female_TwoOrMoreRaces,what percentage of births in the past 12 months were to multiracial females aged 15 to 50?;what proportion of multiracial females aged 15 to 50 gave birth in the past 12 months?;what is the rate of births to multiracial females aged 15 to 50 in the past 12 months?;what percentage of multiracial females aged 15 to 50 became mothers in the past 12 months? -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_1.0OrLessRatioToPovertyLine,the number of unmarried women aged 15 to 50 who gave birth in the past 12 months and have a household income at or below the poverty line;the number of births to unmarried women aged 15 to 50 in the past 12 months with a poverty ratio of 1 or less;the number of unmarried women aged 15 to 50 who gave birth in the past 12 months and are living in poverty;the number of births to unmarried women aged 15 to 50 in the past 12 months whose families are living in poverty -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_1To1.99RatioToPovertyLine, -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_2OrMoreRatioToPovertyLine, -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native women aged 15 to 50 who are unmarried and have given birth in the past 12 months;american indian or alaska native women aged 15 to 50 who are unmarried and have had a baby in the past year;american indian or alaska native women aged 15 to 50 who are unmarried and have become mothers in the past year;american indian or alaska native women aged 15 to 50 who are unmarried and have had a child in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_AsianAlone,the number of unmarried asian women aged 15 to 50 who gave birth in the past 12 months;the number of unmarried asian females aged 15 to 50 who have given birth in the last year;the number of unmarried asian women aged 15 to 50 who have become mothers in the last year;the number of unmarried asian females aged 15 to 50 who have had children in the last year -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_BlackOrAfricanAmericanAlone,what is the number of births to unmarried african american women aged 15 to 50 in the past 12 months;how many babies were born to unmarried african american women aged 15 to 50 in the past 12 months;what is the birth rate of unmarried african american women aged 15 to 50 in the past 12 months;how many unmarried african american women aged 15 to 50 had children in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_ForeignBorn,"the number of births to unmarried foreign-born women aged 15 to 50 in the past 12 months;the number of babies born to unmarried foreign-born women aged 15 to 50 in the past year;the number of births to unmarried women who were born outside of the united states and are aged 15 to 50 in the past 12 months;the number of births to women who were not born in the united states and are not married, aged 15 to 50 in the past 12 months" -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_HispanicOrLatino,number of unmarried hispanic women aged 15 to 50 who gave birth in the past 12 months;hispanic women who are unmarried and between the ages of 15 and 50 who gave birth in the past 12 months;hispanic women who are not married and between the ages of 15 and 50 who had a baby in the past year;hispanic women who are unmarried and between the ages of 15 and 50 who became mothers in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_Native,births to unmarried native american women in the past 12 months;the number of babies born to unmarried native american women in the past year;the number of unmarried native american women who gave birth in the past year;the number of births to native american women who are not married in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander women aged 15 to 50 who gave birth in the past 12 months;number of native hawaiian or other pacific islander women aged 15 to 50 who have had a baby in the past year;number of native hawaiian or other pacific islander women aged 15 to 50 who have become mothers in the past year;number of native hawaiian or other pacific islander women aged 15 to 50 who have given birth in the last 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_OneRace,the number of births to unmarried one-raced females aged 15 to 50 in the past 12 months;the number of babies born to unmarried one-raced women aged 15 to 50 in the past year -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_PovertyStatusDetermined, -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_SomeOtherRaceAlone,"women of some other race, unmarried, aged 15 to 50 years, who gave birth in the past 12 months;women of some other race, unmarried, aged 15 to 50 years, who have given birth in the past year;women of some other race, unmarried, aged 15 to 50 years, who have become mothers in the past year;women of some other race, unmarried, aged 15 to 50 years, who have had babies in the past year" -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_TwoOrMoreRaces, -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_WhiteAlone,number of births to unmarried white women aged 15 to 50 in the last 12 months;number of unmarried white women aged 15 to 50 who gave birth in the last 12 months;number of white women aged 15 to 50 who gave birth out of wedlock in the last 12 months;number of births to unmarried white women aged 15 to 50 in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_Unmarried_WhiteAloneNotHispanicOrLatino,"white, non-hispanic, unmarried women aged 15 to 50 who gave birth in the past 12 months;unmarried white non-hispanic women aged 15 to 50 who have given birth in the past year;white, non-hispanic women aged 15 to 50 who have given birth in the past 12 months and are not married;unmarried white non-hispanic women aged 15 to 50 who have become mothers in the past year" -Count_Person_15To50Years_BirthInThePast12Months_Female_WhiteAlone, -Count_Person_15To50Years_BirthInThePast12Months_Female_WhiteAloneNotHispanicOrLatino_AsAFractionOf_Count_Person_15To50Years_Female_WhiteAloneNotHispanicOrLatino,females of hispanic descent born in the past 12 months who are white;white hispanic women born in the past 12 months;hispanic women born in the past 12 months who are white;hispanic women aged 15 to 50 years old who were born in the past 12 months -Count_Person_15To50Years_BirthInThePast12Months_Female_WhiteAlone_AsAFractionOf_Count_Person_15To50Years_Female_WhiteAlone, -Count_Person_15To50Years_EducationalAttainmentLessThanHighSchoolGraduate_Female,women aged 15 to 50 who have not graduated from high school;females aged 15 to 50 who are not high school graduates;females aged 15 to 50 with less than a high school diploma;women aged 15 to 50 who have not completed high school -Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,the number of females aged 15-50 with a college degree or associate's degree;the number of females aged 15-50 who have a college degree or associate's degree;the number of females aged 15-50 who are college-educated;the number of females aged 15-50 who have completed college or an associate's degree program -Count_Person_15To50Years_Female_1.0OrLessRatioToPovertyLine,the number of women aged 15 to 50 years with a ratio of 1 to the poverty line or less;the number of women aged 15 to 50 years with a poverty ratio of 1 or less;the percentage of women aged 15 to 50 who live below the poverty line;the proportion of women aged 15 to 50 who live below the poverty line -Count_Person_15To50Years_Female_1To1.99RatioToPovertyLine, -Count_Person_15To50Years_Female_2OrMoreRatioToPovertyLine,women aged 15 to 50 with a poverty ratio of 2 or more;women aged 15 to 50 living below the poverty line by a factor of 2 or more;the number of females aged 15 to 50 years with a ratio to poverty line of 2 or more;the number of females aged 15 to 50 years with a poverty ratio of 2 or more -Count_Person_15To50Years_Female_ForeignBorn,foreign-born women aged 15 to 50;female foreign-born population aged 15 to 50 years;population of foreign-born females aged 15 to 50 years;women who were born in another country and are currently aged 15 to 50 years -Count_Person_15To50Years_Female_Native,female population of native origin aged 15 to 50 years;native female population aged 15 to 50;native women aged 15 to 50;native female population between the ages of 15 and 50 -Count_Person_15To50Years_Female_OneRace,female population of one race aged 15 to 50;population of women of one race aged 15 to 50;female population aged 15 to 50 who are of one race;population of women aged 15 to 50 who are of one race -Count_Person_15To50Years_Female_PovertyStatusDetermined,the number of females aged 15 to 50 years with determined poverty status;the number of females aged 15 to 50 years who have been determined to be in poverty;the number of females aged 15 to 50 years who have been determined to have a low income;the number of females aged 15 to 50 years who have been determined to be living in poverty -Count_Person_15To64Years_Female_InLaborForce_AsFractionOf_Count_Person_15To64Years_Female,"fraction of females in the labor force aged 15-64;female labor force as a percentage of the female population aged 15-64;fraction of females aged 15-64 who are in the labor force;3 the number of women aged 15 to 64 who are working or looking for work, divided by the total number of women aged 15 to 64" -Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,percentage of people of working age in the workforce;share of people of working age in the labor force;number of people of working age in the labor force as a percentage of the total population;proportion of people of working age in the labor force -Count_Person_15To64Years_Male_InLaborForce_AsFractionOf_Count_Person_15To64Years_Male,men in the labor force aged 15 to 64;men aged 15 to 64 who are in the labor market;men aged 15 to 64 who are part of the labor force -Count_Person_16OrMoreYears_EmployedAndWorking_InLaborForce, -Count_Person_16OrMoreYears_Female_WithEarnings,number of women aged 16 or older with earnings;number of female earners aged 16 or older;number of women who earn money aged 16 or older;women who are 16 years old or older and have earnings -Count_Person_16OrMoreYears_InLaborForce_Female_DivorcedInThePast12Months,"the percentage of women aged 16 and older who are divorced and in the labor force in the past 12 months;the proportion of female workers aged 16 and older who were divorced in the past 12 months;the share of female workers aged 16 and older who were divorced in the past 12 months;the percentage of female workers aged 16 and older who were divorced in the past 12 months, out of all female workers aged 16 and older" -Count_Person_16OrMoreYears_InLaborForce_Female_MarriedInThePast12Months,the number of foreign-born females aged 16 years or more who were married in the past 12 months and are in the labor force;the percentage of foreign-born females aged 16 years or more who were married in the past 12 months and are in the labor force;the proportion of foreign-born females aged 16 years or more who were married in the past 12 months and are in the labor force;the share of foreign-born females aged 16 years or more who were married in the past 12 months and are in the labor force -Count_Person_16OrMoreYears_InLaborForce_Male_DivorcedInThePast12Months,men who have been divorced in the past 12 months and are aged 16 years or more and are in the labor force;men who were divorced in the past year and are 16 years old or older and are working;men who have been divorced in the last 12 months and are 16 years of age or older and are employed;men who have been divorced in the past 12 months and are aged 16 years or more who are in the labor force -Count_Person_16OrMoreYears_InLaborForce_Male_MarriedInThePast12Months,number of married men in the workforce in the past 12 months;number of men in the workforce who got married in the past 12 months -Count_Person_16OrMoreYears_Male_WithEarnings,men aged 16 or older who earn money;number of males aged 16 or over with income;number of males aged 16 or over with earnings;3 number of males aged 16 years or older with jobs -Count_Person_16OrMoreYears_NoHealthInsurance_WithEarnings,"people aged 16 years or older who are not institutionalized, have earnings, and do not have health insurance;people who are not institutionalized, have earnings, and do not have health insurance;people aged 16 years or older who are not institutionalized and have earnings but do not have health insurance;adults aged 16 and older living in the community who are not institutionalized and have earnings but no health insurance" -Count_Person_16OrMoreYears_NoHealthInsurance_Worker,workers aged 16 and older who are not institutionalized and do not have health insurance;non-institutionalized workers aged 16 and older who do not have health insurance;workers aged 16 and older who are not institutionalized and are uninsured;workers aged 16 and older who are not institutionalized and do not have health coverage -Count_Person_16OrMoreYears_NotInLaborForce_Female_DivorcedInThePast12Months,"women who are 16 years old or older, not in the labor force, and divorced in the past 12 months;3 women aged 16 and over who are not employed and have been divorced in the past 12 months;5 women aged 16 and over who are not in the labor market and have been divorced in the past 12 months" -Count_Person_16OrMoreYears_NotInLaborForce_Female_MarriedInThePast12Months,"16 years old or older, not in the labor force, female, and married in the past 12 months" -Count_Person_16OrMoreYears_NotInLaborForce_Male_DivorcedInThePast12Months,men aged 16 and older who are not employed and divorced in the past 12 months -Count_Person_16OrMoreYears_NotInLaborForce_Male_MarriedInThePast12Months, -Count_Person_16OrMoreYears_WithEarnings,people aged 16 or older who have earnings;people aged 16 or older who are earning money;people aged 16 or older who are earning an income;people aged 16 years or older with earnings -Count_Person_16To19Years_InLaborForce_BlackOrAfricanAmericanAlone,african americans aged 16 to 19 in the workforce;the number of african americans aged 16 to 19 who are employed;the percentage of african americans aged 16 to 19 who are employed;the labor force participation rate of african americans aged 16 to 19 -Count_Person_16To19Years_InLaborForce_HispanicOrLatino,hispanic labor force participation rate of 16-19 year olds;percentage of hispanic 16-19 year olds in the labor force;hispanic 16-19 year olds in the workforce;hispanic 16-19 year olds who are employed or looking for work -Count_Person_16To19Years_InLaborForce_WhiteAloneNotHispanicOrLatino,"the number of white people in the us who are between the ages of 16 and 19 and are working or looking for work;the number of white people in the us who are between the ages of 16 and 19 and are employed or unemployed;the number of white people in the us who are between the ages of 16 and 19 and are part of the workforce;the percentage of people aged 16 to 19 who are in the labor force and identify as white alone, not hispanic or latino" -Count_Person_16To19Years_NotInLaborForce_BlackOrAfricanAmericanAlone_NotEnrolledInSchool,percentage of african americans aged 16 to 19 who are not in the labor force and are not enrolled in school;percentage of african americans aged 16 to 19 who are neither employed nor enrolled in school;percentage of african americans aged 16 to 19 who are out of school and out of the labor force;percentage of african americans aged 16 to 19 who are not working and not in school -Count_Person_16To19Years_NotInLaborForce_HispanicOrLatino_NotEnrolledInSchool,the percentage of hispanics aged 16 to 19 who are not in school or the labor force;the number of hispanics aged 16 to 19 who are not in school or the labor force;the proportion of hispanics aged 16 to 19 who are not in school or the labor force;the share of hispanics aged 16 to 19 who are not in school or the labor force -Count_Person_16To19Years_NotInLaborForce_WhiteAloneNotHispanicOrLatino_NotEnrolledInSchool,the number of non-hispanic white people aged 16 to 19 who are not in the labor force and are not enrolled in school;the percentage of non-hispanic white people aged 16 to 19 who are not in the labor force and are not enrolled in school;the proportion of non-hispanic white people aged 16 to 19 who are not in the labor force and are not enrolled in school;the number of non-hispanic white people aged 16 to 19 who are neither employed nor enrolled in school -Count_Person_16To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_16To50Years_Female,"number of births to females aged 16 to 50 in the past 12 months;number of babies born to women aged 16 to 50 in the past year;number of live births to women aged 16 to 50 in the past year;number of births to females aged 16 to 50 in the past 12 months, by age" -Count_Person_16To50Years_BirthInThePast12Months_InLaborForce_Female,females aged 16 to 50 who are working and have had a baby in the past 12 months;women aged 16 to 50 who are mothers of infants -Count_Person_16To50Years_BirthInThePast12Months_InLaborForce_Female_AsAFractionOf_Count_Person_16To50Years_InLaborForce_Female,women who are working and have given birth in the past year;women who have given birth in the past 12 months and are part of the workforce;women who are employed and have given birth in the past year;women aged 16 to 50 who have given birth in the past 12 months and are in the labor force -Count_Person_16To50Years_BirthInThePast12Months_InLaborForce_Female_Unmarried,percentage of unmarried women aged 16 to 50 who gave birth in the past 12 months;number of unmarried women aged 16 to 50 who gave birth in the past 12 months;birth rate among unmarried women aged 16 to 50;share of unmarried women aged 16 to 50 who have given birth in the past 12 months -Count_Person_18OrLessYears_Female_ResidesInCollegeOrUniversityStudentHousing,housing for female college students under 18;dormitories for female college students under 18;on-campus housing for female college students under 18;student housing for female college students under 18 -Count_Person_18OrLessYears_Male_ResidesInCollegeOrUniversityStudentHousing,number of male undergraduates aged 18 or less living in university housing;number of male college students aged 18 or less living in university residence halls;number of male university students aged 18 or less living in campus housing;number of male students aged 18 or less living in university-owned or -operated housing -Count_Person_18OrMoreYears_Civilian,people aged 18 and over;folks aged 18 and above;people who are at least 18 years old;people aged 18 or older -Count_Person_18OrMoreYears_Civilian_ResidesInAdultCorrectionalFacilities,the number of people aged 18 or older in adult correctional facilities;the number of people in correctional facilities who are 18 years or older;number of adults aged 18 or older in adult correctional facilities -Count_Person_18OrMoreYears_Civilian_ResidesInCollegeOrUniversityStudentHousing,college students aged 18 or older;adults aged 18 or older who are enrolled in college or university;people aged 18 or older who are attending college or university;individuals aged 18 or older who are living in student housing -Count_Person_18OrMoreYears_Civilian_ResidesInGroupQuarters,people aged 18 years or older living in group quarters;group quarters residents aged 18 years or older;people 18 years of age or older living in group quarters -Count_Person_18OrMoreYears_Civilian_ResidesInInstitutionalizedGroupQuarters,people 18+ in institutions;the civilian population aged 18 or older living in group quarters;people aged 18 or older in institutional settings -Count_Person_18OrMoreYears_Civilian_ResidesInNoninstitutionalizedGroupQuarters,adults aged 18 and over living in non-institutional group quarters;adults aged 18 and over living in group quarters other than institutions;adults aged 18 and over who are not institutionalized and live in group quarters -Count_Person_18OrMoreYears_Civilian_ResidesInNursingFacilities,people aged 18 or older living in nursing homes;adults aged 18 or older in nursing homes;adults aged 18 or older who live in nursing homes;people aged 18 or older who are residents of nursing homes -Count_Person_18OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,the percentage of women aged 18 or older who have been divorced in the past 12 months and have a bachelor's degree or higher;the proportion of women aged 18 or older who have been divorced in the past 12 months and have a bachelor's degree or higher;the percentage of female divorcees aged 18 or older with a bachelor's degree or higher;the proportion of women over 18 who have been divorced in the past 12 months and have a bachelor's degree or higher -Count_Person_18OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,the percentage of women aged 18 years or older with a bachelor's degree or higher who were married in the past 12 months;the percentage of women aged 18 or older with a bachelor's degree or higher who got married in the past 12 months;the proportion of women aged 18 or older with a bachelor's degree or higher who got married in the past 12 months;the share of women aged 18 or older with a bachelor's degree or higher who got married in the past 12 months -Count_Person_18OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,3 the proportion of men aged 18 and older with a bachelor's degree or higher who have been divorced in the past 12 months -Count_Person_18OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,the proportion of married men aged 18 or older with a bachelor's degree or higher in the past 12 months -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine,the percentage of people aged 1 year or more with a ratio of income to poverty line of 15 or more;the proportion of people aged 1 year or more with an income that is 15 times the poverty line or more;the number of people aged 1 year or more who have an income that is 15 times the poverty line or more;the share of people aged 1 year or more with an income that is 15 times the poverty line or more -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseAbroad,the proportion of people aged 1 year or more living in households with an income-to-poverty ratio of 15 or more in different countries;the number of people aged 1 year or more living in households with an income-to-poverty ratio of 15 or more in different countries;the number of people aged 1 year or more living in households with an income that is 15 times or more the poverty line in different countries;the number of people aged 1 year or more living in households with an income that is 150% or more the poverty line in different countries -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,the number of people aged 1 year or more living in different houses in different counties in different states with a 15 ratio to the poverty line or more;the population of people aged 1 year or more living in different houses in different counties in different states with a 15 ratio to the poverty line or more;the number of people aged 1 year or more living in different households in different counties in different states with a 15 ratio to the poverty line or more;the population of people aged 1 year or more living in different households in different counties in different states with a 15 ratio to the poverty line or more -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountySameState,number of people aged 1 year or more living above the poverty line in a different house in a different county and a different state;number of people aged 1 year or more living in a different house in a different county and a different state with an income above the poverty line;number of people aged 1 year or more living in a different house in a different county and a different state with an income that is greater than the poverty line;number of people aged 1 year or more living in a different house in a different county and a different state with an income that is higher than the poverty line -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInSameCounty,number of people aged 1 year or more living in different households in the same county with a ratio of income to poverty line of 15 or more;number of people aged 1 year or more living in different households in the same county with an income that is 15 times the poverty line or more;number of people aged 1 year or more living in different households in the same county with an income that is 150% of the poverty line or more;number of people aged 1 year or more living in different households in the same county with an income that is 150% or more of the poverty line -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseAbroad, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,number of people aged 1 year or older living below the poverty line in different counties in different states;number of people aged 1 year or older with a poverty ratio of 1 or less in different counties in different states;number of people aged 1 year or more living below the poverty line in different counties in different states;proportion of people aged 1 year or more living below the poverty line in different counties in different states -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountySameState,2 number of people aged 1 year or older living in households with a ratio of income to poverty line of 1 or less in different counties in the same state;number of people aged 1 year or more with a ratio of 1 to the poverty line or less in different houses in the same county in the same state;number of people aged 1 year or more with a poverty rate of 100% or less in different houses in the same county in the same state;number of people aged 1 year or more with a household income that is 100% or less of the poverty line in different houses in the same county in the same state -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInSameCounty,people who have lived in the same county for 1 year or more and have a ratio of income to poverty line of 1 or less;percentage of people living in poverty in the same county for 1 year or more;number of people living in poverty in the same county for 1 year or more;proportion of people living in poverty in the same county for 1 year or more -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine,poverty rate for people over 1 year old;population over 1 year old living below the poverty line;proportion of people over 1 year old living in poverty;percentage of people over 1 year old living in poverty -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseAbroad,"1 year or above, 15 times the poverty line, and living in a different house overseas" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"the number of people aged 1 year or more living in households with a 1 to 15 ratio to the poverty line, by county and state;the number of people aged 1 year or more living in households with income below the poverty line, by county and state;the percentage of people aged 1 year or more living in households with income below the poverty line, by county and state;the number of people aged 1 year or more living in households with a ratio of income to poverty line of 1 to 15, by county and state" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountySameState,"population: 1 years or more, 1 - 15 ratio to poverty line, different house in different county same state" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInSameCounty,number of people aged 1 year or more living in households with an income between 1 and 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is 1 to 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is at or below 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is at or below 150% of the poverty line in the same county -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseAbroad,american indians or alaska natives living in other countries who are 1 year old or older;american indians or alaska natives living outside the united states who are 1 year old or older;american indians or alaska natives living in foreign countries who are 1 year old or older;american indians or alaska natives living in international locations who are 1 year old or older -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountyDifferentState,"american indian or alaska native population by county;american indian or alaska native populations in different households, counties, and states;american indian or alaska native demographics in different households, counties, and states;american indian or alaska native populations by household, county, and state" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountySameState,"american indian or alaska native population in different houses in different counties in the same states, aged 1 year or older;population of american indians or alaska natives aged 1 year or older in different houses in different counties in the same states;number of american indians or alaska natives aged 1 year or older in different houses in different counties in the same states;american indian or alaska native population in different houses in different counties in the same states, aged 1 year or older, by state" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInSameCounty,american indian or alaska native who lived in a different house in the same county at least once in the past 12 months;american indian or alaska native who moved to a different house in the same county at least once in the past 12 months;american indian or alaska native living in a different house in the same county at age 1 or older;american indian or alaska native living in a different household in the same county at age 1 or older -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseAbroad,number of asian people living outside their home country who are 1 year old or older;number of asians living outside their home countries -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountyDifferentState,"the number of asian people living in different houses, counties, and states in the united states;the percentage of asian people living in different houses, counties, and states in the united states;the number of asian people living in each house, county, and state in the united states;the number of asian people aged 1 year or more living in different houses, counties, and states" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountySameState,"the number of people who are asian and live in a different house in a different county in the same state, who are 1 year old or older;the number of people who are asian and live in a different house in a different county in the same state, who are at least 1 year old;the population of asian people who live in a different house in a different county in the same state, who are at least 1 year old;the number of people who are asian and live in a different house in a different county in the same state, who are at least one year old" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInSameCounty,asians in different houses in the same county aged 1 year and above;people of asian descent living in different houses in the same county who are 1 year old or older;asians living in different households in the same county who are at least 1 year old;people of asian origin living in different residences in the same county who are at least 1 year old -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseAbroad,number of african americans living in foreign countries who are 1 year of age or older;number of african americans living in other countries who are 1 year of age or older;number of african americans living outside the us who are at least 1 year old;number of african americans living outside their home country -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountyDifferentState,"the number of african americans aged 1 year or more living in different houses, counties, and states;the total number of african americans aged 1 year or more living in different places;the number of african americans aged 1 year or more who live in different places;the number of african americans aged 1 year or more who live in different households, counties, and states" -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountySameState,african americans living in different houses in the same county but in the same state who are over the age of one;african americans living in different households in the same county but in the same state who are over the age of one;african americans living in different dwellings in the same county but in the same state who are over the age of one;african americans living in different residences in the same county but in the same state who are over the age of one -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInSameCounty,"number of african americans aged 1 year or older in different households in the same county;number of african americans aged 1 year or older in the same county, by household;number of african americans aged 1 year or older in the same county, by household type;number of african americans aged 1 year or older in the same county, by household size" -Count_Person_1OrMoreYears_DifferentHouse1YearAgo,people who were 1 year old or older and living in a different house 1 year ago;people who were living in a different house 1 year ago than they were when they were 1 year old;people who have moved house in the past year;people who lived in a different house a year ago -Count_Person_1OrMoreYears_DifferentHouseInDifferentCounty,population of people aged 1 year or older in different households in different counties;number of people aged 1 year or older in different households in different counties;number of people aged 1 year or older in different homes in different counties;population of people aged 1 year or older in different residences in different counties -Count_Person_1OrMoreYears_DifferentHouseInTheUS,number of people living in the us who are 1 year old or older and living in a different house than they did a year ago;number of people in the us who have moved to a new house in the past year;the number of people in the us who are 1 year old or older and live in a different house than they did a year ago;the number of people in the us who have moved to a new house in the past year -Count_Person_1OrMoreYears_Female_DifferentHouseAbroad,number of women living abroad who are 1 year old or older;number of women living outside their home country;number of women aged 1 year or older living in a different household abroad;number of females aged 1 year or older living in a different household outside of the country -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountyDifferentState,number of women aged 1 year or older living in different houses in different counties in different states;number of female residents aged 1 year or older living in different houses in different counties in different states;number of female citizens aged 1 year or older living in different houses in different counties in different states;number of females aged 1 year or older living in different houses in different counties in different states -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountySameState,women who are 1 year old or older and live in a different house in a different county in the same state;females who are 1 year old or older and live in a different home in a different county in the same state;girls who are 1 year old or older and live in a different residence in a different county in the same state;females aged 1 year or older who live in a different domicile in a different county in the same state -Count_Person_1OrMoreYears_Female_DifferentHouseInSameCounty,number of women aged 1 or more in different houses in the same county;female population aged 1 or more in different households in the same county;number of females aged 1 or more in different households in the same county;female population aged 1 or more in different dwellings in the same county -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseAbroad,population of foreign-born people who are 1 year old or older living in different households abroad;number of foreign-born people who are 1 year old or older living in different households outside of their home country;population of foreign-born people aged 1 year or more living in different households abroad;number of foreign-born people aged 1 year or more living in different households outside of their home country -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountyDifferentState,"people who were born in another country and have lived in a different house in a different county and a different state for at least one year;foreign nationals who have lived in a different house in a different county and a different state for at least one year;foreign-born residents who are at least 1 year old and live in a different house, county, and state than they did when they were 1 year old;the number of foreign-born people who are at least 1 year old and live in a different house in a different county and a different state" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountySameState,"foreign-born people who are 1 year old or older and live in a different house in a different county in the same state;foreign-born people who are 1 year old or older and have moved to a different house in a different county in the same state;people who were born in another country and are now living in the united states, aged 1 year or older, who have changed their residence to a different house in a different county in the same state;people who were born in another country and are at least 1 year old who live in a different house in a different county but the same state" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInSameCounty,population of foreign-born people over 1 year old living in different households in the same county;number of people born outside of the country who are over 1 year old and live in different households in the same county;count of foreign-born people over 1 year old living in different homes in the same county;total of foreign-born people over 1 year old living in different residences in the same county -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseAbroad,number of hispanic people living abroad in different households;hispanic population living in different houses abroad;number of hispanics living in different households abroad;number of hispanic people aged 1 year or more living in different households abroad -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,number of hispanic people aged 1 year or more living in different houses in the same county and state;number of hispanic people aged 1 year or more living in multiple households in the same county and state;number of hispanic people aged 1 year or more living in different residences in the same county and state;number of hispanic people aged 1 year or more living in multiple homes in the same county and state -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountySameState,"hispanic population in different houses in different counties in the same state aged 1 year or more;hispanic population in different houses in different counties in the same state, aged 1 year or more, by county;hispanic population in different counties in the same state, aged 1 year or more, by house and county;number of hispanic people living in different houses in the same county in the same state aged 1 year or more" -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInSameCounty,"number of hispanics living in different houses in the same county, aged 1 year or more;hispanics living in different households in the same county who are 1 year old or older;hispanics who live in different homes in the same county and are 1 year old or older;hispanics who reside in different dwellings in the same county and are 1 year old or older" -Count_Person_1OrMoreYears_Male_DifferentHouseAbroad,number of male residents aged 1 year or more in different households outside of the country;number of male citizens aged 1 year or more living in foreign households;number of male people aged 1 year or more living in households outside their home country;number of male individuals aged 1 year or more living in households in other countries -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountyDifferentState,"number of males over 1 year old in each house, county, and state;male population over 1 year old by house, county, and state;male population over 1 year old by location;male population over 1 year old by jurisdiction" -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountySameState,number of males living in different houses in the same county in a certain state who are 1 year old or older;number of males aged 1 year or older living in different houses in the same county in a certain state;number of males living in different houses in the same county in a certain state who are older than 1 year;number of males living in different houses in the same county in a certain state who are at least 1 year old -Count_Person_1OrMoreYears_Male_DifferentHouseInSameCounty,2 population of males over 1 year old living in different households in the same county;number of males over 1 year old living in different households in the same county;number of males over 1 year old living in the same county but in different households;population of males over 1 year old living in the same county but in different houses -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseAbroad,number of native hawaiian or other pacific islanders aged 1 year or more living in different houses abroad;number of native hawaiian or other pacific islanders aged 1 year or more living in foreign countries;number of native hawaiian or other pacific islanders aged 1 year or more living outside the united states;number of native hawaiian or other pacific islanders aged 1 year or more living in non-us households -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountyDifferentState, -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountySameState,number of native hawaiian or other pacific islander people aged 1 year old or more in different houses in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different households in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different residences in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different dwellings in different counties in the same state -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInSameCounty,native hawaiians or other pacific islanders who are 1 year old or older and live in different houses in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in multiple households in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in separate homes in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in different dwellings in the same county -Count_Person_1OrMoreYears_NoHealthInsurance_ResidesInHousehold,people who are not institutionalized and are 1 year old or older and do not have health insurance;civilians who are not institutionalized and are 1 year old or older and do not have health insurance;people who are not institutionalized and are 1 year old or older and are uninsured;civilians who are not institutionalized and are 1 year old or older and are uninsured -Count_Person_1OrMoreYears_NotAUSCitizen_ForeignBorn_DifferentHouseAbroad,non-us citizens born abroad who are over 1 year old;foreign-born non-us citizens over 1 year old living in a different household;non-us citizens born outside of the us who are over 1 year old and living in a different household;foreign-born non-us citizens over 1 year old who are living in a different household than their parents -Count_Person_1OrMoreYears_NotAUSCitizen_ForeignBorn_DifferentHouseInDifferentCountyDifferentState, -Count_Person_1OrMoreYears_NotAUSCitizen_ForeignBorn_DifferentHouseInDifferentCountySameState,"people who are 1 year old or older, not us citizens, foreign born, and have changed their residence to a different house in a different county in the same state;people who are 1 year old or older, not us citizens, foreign born, and have moved house to a different house in a different county in the same state" -Count_Person_1OrMoreYears_NotAUSCitizen_ForeignBorn_DifferentHouseInSameCounty,number of foreign-born people who are not us citizens aged 1 year or more who live in different houses in the same county;number of foreign-born people who are not us citizens aged 1 year or more who live in multiple households in the same county;number of foreign-born people who are not us citizens aged 1 year or more who live in different homes in the same county;number of foreign-born people who are not us citizens aged 1 year or more who live in separate dwellings in the same county -Count_Person_1OrMoreYears_OneRace_DifferentHouseAbroad,population of one race aged 1 year or older living in a different house abroad;people of one race aged 1 year or older living in a different house abroad -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountyDifferentState,people of one race aged 1 year or older in different houses in different counties and different states;persons of one race aged 1 year or older in different homes in different counties and different states -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountySameState,population of people aged 1 year or older with one race living in different houses in different counties in the same state;number of people aged 1 year or older with one race living in different houses in different counties in the same state;total number of people aged 1 year or older with one race living in different houses in different counties in the same state;count of people aged 1 year or older with one race living in different houses in different counties in the same state -Count_Person_1OrMoreYears_OneRace_DifferentHouseInSameCounty, -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit,residents of homes for at least 12 months;occupants of dwellings for at least a year;residents of homes for more than 12 months;residents who have been living in their homes for at least a year -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit_DifferentHouseAbroad,number of people living in owner-occupied housing units in a different house abroad;population of 1 year or older living in an owner-occupied housing unit in a different house abroad;housing unit occupied by the owner and occupied by someone who is 1 year old or older and not living in a different house abroad;housing unit occupied by the owner and occupied by someone who is at least 1 year old and not living in a house abroad -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit_DifferentHouseInDifferentCountyDifferentState,population of people aged 1 year or more living in owner-occupied housing units in a different house in a different county in a different state;number of people aged 1 year or more living in owner-occupied housing units in a different house in a different county in a different state;count of people aged 1 year or more living in owner-occupied housing units in a different house in a different county in a different state;total number of people aged 1 year or more living in owner-occupied housing units in a different house in a different county in a different state -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit_DifferentHouseInDifferentCountySameState, -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit_DifferentHouseInSameCounty,number of housing units in the same county that are occupied by people who are 1 year old or older;number of occupied housing units in the same county with residents aged 1 year or older who live in different houses;number of housing units with people aged 1 year or older living in different houses in the same county;number of occupied housing units with people aged 1 year or older living in different houses in the same county -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseAbroad,percentage of people aged 1 year or more living in poverty in different countries;number of people aged 1 year or more living in poverty in different countries;proportion of people aged 1 year or more living in poverty in different countries;prevalence of poverty among people aged 1 year or more in different countries -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountyDifferentState,number of people aged 1 year or more in different houses in different counties in different states with determined poverty status;number of people aged 1 year or more in different households in different counties in different states with determined poverty status;number of people aged 1 year or more in different dwellings in different counties in different states with determined poverty status;number of people aged 1 year or more in different residences in different counties in different states with determined poverty status -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountySameState,"number of people aged 1 year or older in different households in the same county and state, categorized by poverty status;number of people aged 1 year or older in different households in the same county and state, categorized by whether they are living in poverty;number of people aged 1 year or older in different households in the same county and state, categorized by whether they are poor;number of people aged 1 year or older living in different households in the same county in the same state, categorized by poverty status" -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInSameCounty,number of people aged 1 year or older living in different houses in the same county with determined poverty status;number of people aged 1 year or older living in multiple households in the same county with determined poverty status;number of people aged 1 year or older living in different dwellings in the same county with determined poverty status;number of people aged 1 year or older living in different residences in the same county with determined poverty status -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit,number of people aged 1 year or older living in rented housing units;number of people aged 1 year or older who rent their homes;number of people aged 1 year or older who live in rental properties;number of people aged 1 year or older who are tenants -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit_DifferentHouseAbroad,number of housing units occupied abroad for one year or more;number of housing units occupied overseas for one year or more;number of housing units occupied outside one's home country for one year or more;housing units occupied abroad for 1 year or more -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit_DifferentHouseInDifferentCountyDifferentState,"number of people aged 1 year or older living in rented housing units, by county and state;number of renter-occupied housing units with at least one person aged 1 year or older, by county and state;number of people aged 1 year or older living in housing units that are rented, by county and state;number of housing units that are rented and have at least one person aged 1 year or older, by county and state" -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit_DifferentHouseInDifferentCountySameState,number of occupied housing units with residents aged 1 year or older from different houses in different counties in the same state;number of housing units occupied by people aged 1 year or older from different houses in different counties in the same state;number of housing units occupied by people aged 1 year or older from different households in different counties in the same state;number of housing units occupied by people aged 1 year or older from different places in different counties in the same state -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit_DifferentHouseInSameCounty,number of people who have rented different houses in the same county for at least 1 year;number of tenants who have lived in different houses in the same county for at least 1 year;number of people who have been tenants in different houses in the same county for at least 1 year;number of people who have rented houses in the same county for at least 1 year -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseAbroad,number of people aged 1 year or more living in adult correctional facilities abroad;number of people aged 1 year or more living in adult correctional facilities overseas -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCounty,number of people aged 1 year or older living in adult correctional facilities in a different house in a different county;number of people aged 1 year or older living in adult correctional facilities in a different household in a different county;number of people aged 1 year or older living in adult correctional facilities in a different home in a different county;number of people aged 1 year or older living in adult correctional facilities in a different residence in a different county -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountyDifferentState,"number of people aged 1 year or more in adult correctional facilities in different houses, counties, and states;number of adults aged 1 year or more in correctional facilities in different houses, counties, and states;adult correctional population aged 1 year or more in different houses, counties, and states;number of people aged 1 year or older in adult correctional facilities in different houses, counties, and states" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountySameState,number of people who have lived in different houses in different counties in different states in adult correctional facilities for 1 year or more;number of people who have lived in multiple houses in multiple counties in multiple states in adult correctional facilities for 1 year or more;number of people who have lived in different residences in different counties in different states in adult correctional facilities for 1 year or more;number of people who have lived in multiple residences in multiple counties in multiple states in adult correctional facilities for 1 year or more -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInSameCounty,number of adults aged 1 year or older in correctional facilities in different parts of the country;number of adults aged 1 year or older in jails and prisons in different parts of the country;the number of people aged 1 year or more in adult correctional facilities in different states in the same country;number of people aged 1 year or more in adult correctional facilities in different states in the same country -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInTheUS,number of people aged 1 year or more living in adult correctional facilities in the united states;number of people living in adult correctional facilities in the united states who are aged 1 year or more;number of people aged 1 year or more in the united states who are living in adult correctional facilities;number of people living in adult correctional facilities in the united states who are 1 year of age or older -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_SameHouse1YearAgo,number of people aged 1 year or older in adult correctional facilities;number of adults in correctional facilities who are 1 year of age or older;number of adults aged 1 year or older who are incarcerated;number of adults aged 1 year or older who are in prison or jail -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseAbroad,number of students aged 1 year or older living in college or university student housing outside of their home country;number of students aged 1 year or older living in college or university student housing abroad;number of people aged 1 year or older living in college or university student housing outside of their home country;number of people aged 1 or older living in a different house abroad in college or university student housing -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCounty,number of people living in college or university student housing in different houses in different counties for one year or more;number of people living in college or university student housing in different counties for at least one year;number of people living in college or university student housing in different counties for more than one year;number of people living in college or university student housing in different counties for a year or more -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountyDifferentState,number of people aged 1 year or more living in university student housing in different houses in different counties and states;count of people aged 1 year or more living in university student housing in different houses in different counties and states;total number of people aged 1 year or more living in university student housing in different houses in different counties and states;sum of the number of people aged 1 year or more living in university student housing in different houses in different counties and states -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountySameState,student housing in different houses in different counties in the same state for 1 year or more;college housing in different houses in different counties in the same state for 1 year or more;dormitory housing in different houses in different counties in the same state for 1 year or more;on-campus housing in different houses in different counties in the same state for 1 year or more -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInSameCounty,students who have lived in different houses in the same county for 1 year or more;students who have moved houses in the same county at least once in the past year;students who have lived in the same county for at least 1 year but have lived in different houses during that time;students who have had at least one address change in the same county in the past year -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInTheUS,number of people living in college or university student housing in the us for 1 year or more;number of people in the us who have lived in college or university student housing for 1 year or more;number of people who have lived in college or university student housing in the us for at least 1 year;number of people who have lived in college or university student housing in the us for more than 1 year -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_SameHouse1YearAgo,the number of people who have lived in the same college or university student housing for 1 year or more is the same as it was 1 year ago;the population of college or university student housing that has been occupied for 1 year or more has not changed in the past year;the number of people who have lived in the same college or university student housing for 1 year or more is the same as the number of people who lived in the same housing 1 year ago;the population of college or university student housing that has been occupied for 1 year or more is unchanged from 1 year ago -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseAbroad,number of people aged 1 year or more living in group quarters in different houses abroad;number of people aged 1 year or more living in group quarters in foreign countries;number of people aged 1 year or more living in group quarters in other countries;number of people aged 1 year or more living in group quarters outside the country -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCounty,number of people aged 1 year or more in group quarters in different houses in different counties;number of people aged 1 year or more living in group quarters in different houses in different counties;number of people aged 1 year or more living in group quarters in different homes in different counties;number of people aged 1 year or more living in group quarters in different dwellings in different counties -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountyDifferentState,people aged 1 year or older living in group quarters with a different house in a different county and state;people aged 1 year or older living in group quarters with a different address in a different county and state;people aged 1 year or older living in group quarters with a different home in a different county and state;people aged 1 year or older living in group quarters with a different residence in a different county and state -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountySameState,number of people aged 1 year or more living in different houses in the same county in the same state in group quarters;the population of people aged 1 year or older living in group quarters in different counties in the same state with different houses;number of people aged 1 year or more who live in different houses in the same county in the same state in group quarters;number of people aged 1 year or more who live in group quarters in the same county in the same state but have different addresses -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInSameCounty,number of people living in different houses in the same county who are older than 1 year;number of people aged more than 1 year who live in different houses in the same county;number of people in the same county who are older than 1 year and live in different houses;number of people aged at least 1 year who live in different houses in the same county -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInTheUS,the number of people living in the us who are 1 year old or older and living in group quarters in a different house;the number of people in the us who are 1 year old or older and living in group quarters in a house other than their own;the number of people in the us who are 1 year old or older and living in group quarters in a house that is not their primary residence;the number of people in the us who are 1 year old or older and living in group quarters in a house that is not their home -Count_Person_1OrMoreYears_ResidesInGroupQuarters_SameHouse1YearAgo,number of people aged 1 year or older living in group quarters and the same house 1 year ago;number of people aged 1 year or older living in group quarters and the same house last year;number of people aged 1 year or older living in group quarters and the same house in the previous year;number of people aged 1 year or older living in group quarters and the same house the year before -Count_Person_1OrMoreYears_ResidesInHousingUnit,total number of people in a dwelling unit who are 1 year old or older;number of people aged 1 year or more in a housing unit;number of residents aged 1 year or more in a housing unit;number of occupants aged 1 year or more in a housing unit -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseAbroad,number of housing units occupied by people aged 1 year or more outside of their home country;number of people aged 1 year or more living in housing units outside of their home country;number of housing units occupied by people aged 1 year or more in foreign countries -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountyDifferentState,number of people aged 1 year or more living in different houses in different counties in different states;number of people aged 1 year or more living in different households in different counties in different states;number of people aged 1 year or more living in different residences in different counties in different states;number of people aged 1 year or more living in different domiciles in different counties in different states -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountySameState,population of people aged 1 year or older living in different housing units in different counties in the same state -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInSameCounty,number of people aged 1 year or more living in different houses in the same county;number of people aged 1 year or more living in multiple houses in the same county;number of people aged 1 year or more living in more than one house in the same county;number of people aged 1 year or more living in separate houses in the same county -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseAbroad,people living in group quarters abroad for one year or more;people living in institutional group quarters abroad for one year or more;people living in group quarters outside of their home country for one year or more;people living in institutional group quarters outside of their home country for one year or more -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,population of people aged 1 year or older living in different houses in different counties in institutionalized group quarters;number of people aged 1 year or older living in different houses in different counties in institutionalized group quarters;people aged 1 year or older living in different houses in different counties in institutionalized group quarters;individuals aged 1 year or older living in different houses in different counties in institutionalized group quarters -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,number of people aged 1 or more institutionalized in group quarters in different houses in different counties in different states;population of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states;number of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states;count of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,the number of people who have lived in different houses in different counties in different states in institutionalized group quarters for 1 year or more;the number of people who have lived in multiple places in multiple states in institutionalized group quarters for 1 year or more;the number of people who have lived in multiple houses in multiple counties in institutionalized group quarters for 1 year or more;the number of people who have lived in institutionalized group quarters for 1 year or more in multiple states in multiple counties -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInSameCounty, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInTheUS,number of people living in the us in group quarters for 1 year or more;number of people in the us living in institutional group quarters for 1 year or more;number of people in the us living in institutional group quarters for at least 1 year;number of people living in group quarters in the us for 1 year or more -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_SameHouse1YearAgo,number of people aged 1 year or more living in institutional group quarters and in the same house 1 year ago;number of people aged 1 year or more living in institutional group quarters and in the same house the previous year;people 1 year or older living in group quarters and same residence 1 year ago;people 1 year or older living in group quarters and same domicile 1 year ago -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseAbroad,number of people living in different houses abroad in non-institutional group quarters for 1 year or more;number of people living in different houses in foreign countries in non-institutional group quarters for 1 year or more;number of people living in different houses outside of their home country in non-institutional group quarters for 1 year or more;number of people living in different houses in other countries in non-institutional group quarters for 1 year or more -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,people who have lived in different houses in the same county for 1 year or more in non-institutionalized group quarters;people who have moved at least once in the past year and are living in a non-institutionalized group quarters in the same county;people who have lived in the same county for at least 1 year but have lived in different houses during that time and are living in a non-institutionalized group quarters;people who have lived in a non-institutionalized group quarters in the same county for at least 1 year and have moved at least once during that time -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"number of people aged 1 year or more living in different houses, counties, and states in non-institutionalized group quarters;number of people aged 1 year or older living in different houses, counties, and states in non-institutionalized group quarters;number of people aged 1 year or older living in non-institutional group quarters, by state;number of people aged 1 year or older living in group quarters, not institutionalized, by state" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,number of people aged 1 year or more living in non-institutional group quarters with a different house in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different address in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different home in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different residence in a different county in the same state -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInSameCounty,people aged 1 year or older living in non-institutional group quarters and different houses in the same county;the number of people aged 1 year or older living in non-institutional group quarters and different houses in the same county;the population of people aged 1 year or older living in non-institutional group quarters and different houses in the same county;the number of people in non-institutional group quarters and different houses in the same county who are aged 1 year or older -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInTheUS,"number of people aged 1 year or more living in us non-institutional group quarters;number of people aged 1 year or more living in us group quarters that are not institutions;number of people aged 1 year or more living in us group quarters that are not hospitals, prisons, or nursing homes;number of people aged 1 year or more living in us group quarters that are not places where people are required to live" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_SameHouse1YearAgo,"people who are 1 year old or older living in group quarters that are not institutions;people who are 1 year old or older living in non-institutional group quarters;people who are 1 year old or older living in group quarters that are not hospitals, prisons, or other types of institutions;people aged 1 year or older living in non-institutional group quarters" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseAbroad,households with people aged 18 or less living abroad in nursing facilities;households with people aged 18 or less living in nursing facilities outside of the united states;households with people aged 18 or less living in nursing homes outside of the united states;households with people aged 18 or less living in nursing facilities in other countries -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCounty,number of people aged 1 year or older living in nursing homes and other residential care facilities in different counties;number of people aged 1 year or older in nursing homes and other types of housing in different counties;number of people aged 1 year or older living in nursing homes and other types of housing in different counties;number of people aged 1 year or older living in nursing homes and other types of housing by county -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountyDifferentState,number of people living in nursing homes for a year or more;number of people living in nursing homes across different states and counties;number of people living in nursing homes in different parts of the country;1 number of people living in nursing homes for 1 year or more in different states and counties -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountySameState,number of people aged 1 year or older living in nursing homes in different counties in the same state;number of residents aged 1 year or older in nursing homes in different counties in the same state;population of nursing home residents aged 1 year or older in different counties in the same state;number of people aged 1 year or older residing in nursing homes in different counties in the same state -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInSameCounty,number of people aged 1 year or more in nursing facilities and other houses in the same county;number of people aged 1 year or more in nursing homes and other houses in the same county;number of people aged 1 year or more in nursing facilities and private homes in the same county;number of people aged 1 year or more in nursing homes and private homes in the same county -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInTheUS,number of people above 1 year old living in nursing homes in the us;number of people above 1 year old living in nursing facilities in the us;number of people above 1 year old living in nursing homes and other residential care facilities in the us;number of people above 1 year old living in nursing homes and other long-term care facilities in the us -Count_Person_1OrMoreYears_ResidesInNursingFacilities_SameHouse1YearAgo,number of people aged 1 year or older living in nursing homes in the same house 1 year ago;number of people aged 1 year or older living in nursing homes in the same house the previous year;number of people aged 1 year or older living in nursing homes in the same house last year;number of people aged 1 year or older living in nursing homes in the same house the year before -Count_Person_1OrMoreYears_SameHouse1YearAgo,population living in the same house for 1 year or more 1 year ago;population living in the same house for at least 1 year 1 year ago;population living in the same house for more than 1 year 1 year ago;population living in the same house for 12 months or more 1 year ago -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseAbroad,people aged 1 year or older of a different race in a different household abroad;people aged 1 year or older of a different race living in a different household abroad;people aged 1 year or older of a different race living in a household outside the united states;people aged 1 year or older of a different race living in a household outside their home country -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountyDifferentState,"distribution of people of other races over 1 year old by house, county, and state;characteristics of people of other races over 1 year old by house, county, and state;other races over 1 year old in different houses, counties, and states;people of other races over 1 year old in different households, counties, and states" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountySameState,"number of people living in different houses in different counties but the same state who are 1 year old or older;total number of people living in different houses in different counties but the same state who are at least 1 year old;number of people living in different houses in different counties but the same state who are at least 1 year old, counted together;total number of people living in different houses in different counties but the same state who are at least 1 year old, counted as a whole" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInSameCounty,population of people who are 1 year or older and identify as some other race alone living in a different house in the same county;number of people who are 1 year or older and identify as some other race alone living in a different house in the same county;people who are 1 year or older and identify as some other race alone living in a different house in the same county;people who are 1 year or older living in a different house in the same county and identify as some other race alone -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseAbroad,multiracial individuals living in different houses in foreign lands;people who are multiracial and are 1 year old or older and live in different homes outside of their home country -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountyDifferentState,people of multiple races living in different homes in different counties in different states for at least 12 months;people of mixed race living in different houses in different counties in different states for a year or more;people of multiple ethnicities living in different homes in different counties in different states for at least 1 year;people of mixed ethnicities living in different houses in different counties in different states for a year or more -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountySameState,multiracial people living in different counties in the same state who are over 1 year old;people who are multiracial and live in different counties in the same state who are over 1 year old;people who are over 1 year old and live in different houses in the same county and are multiracial;people who are over 1 year old and are multiracial and live in different houses in the same county -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInSameCounty,people who are multiracial and live in different houses in the same county and are 1 year old or older;people who are multiracial and live in different dwellings in the same county and are 12 months of age or older -Count_Person_1OrMoreYears_USCitizenBornInTheUnitedStates_Native_DifferentHouseAbroad,us-born citizens who lived abroad for at least one year;us citizens who were born in the us and lived outside the country for at least one year;people who were born in the us and lived in other countries for at least one year of their childhood;us citizens who lived outside of the us for at least one year of their childhood -Count_Person_1OrMoreYears_USCitizenBornInTheUnitedStates_Native_DifferentHouseInDifferentCountyDifferentState,native-born americans who have lived in more than one place in the us -Count_Person_1OrMoreYears_USCitizenBornInTheUnitedStates_Native_DifferentHouseInDifferentCountySameState,us citizen who is a native of the us;person who is a citizen of the us and is a native of the us;person who is a us citizen and is a native of the united states;us citizen born in the us who lives in a different county in the same state -Count_Person_1OrMoreYears_USCitizenBornInTheUnitedStates_Native_DifferentHouseInSameCounty,us citizen born in the us who has lived in the same county for more than a year and is at least 1 year old;us citizen born in the us and lived in the same county for at least 1 year after their first birthday;us citizen born in the us and lived in the same county for at least 12 months after their first birthday;us citizen born in the us who is at least 1 year old and lives in a different address in the same county -Count_Person_1OrMoreYears_USCitizenByNaturalization_ForeignBorn_DifferentHouseAbroad,"us citizen who was born outside the us, became a citizen through naturalization at least 1 year ago, and has lived in more than one home outside the us;us citizen who was born abroad, became a citizen through naturalization at least 1 year ago, and has lived in multiple places outside the us;us citizen who was born outside the us, became a citizen through naturalization at least 1 year ago, and has lived in more than one country outside the us;us citizen who was born abroad, became a citizen through naturalization at least 1 year ago, and has lived in multiple residences outside the us" -Count_Person_1OrMoreYears_USCitizenByNaturalization_ForeignBorn_DifferentHouseInDifferentCountyDifferentState, -Count_Person_1OrMoreYears_USCitizenByNaturalization_ForeignBorn_DifferentHouseInDifferentCountySameState,"us citizen by naturalization who is older than 1 year old and moved to a different house, county, and state;us citizen by naturalization who is older than 1 year old and moved to a different home, county, and state;us citizen by naturalization who is older than 1 year old and moved to a different residence, county, and state;us citizen by naturalization who is older than 1 year old and moved to a different domicile, county, and state" -Count_Person_1OrMoreYears_USCitizenByNaturalization_ForeignBorn_DifferentHouseInSameCounty,"people who were born in another country and are now citizens of the united states by naturalization, who are 1 year old or older, and who live in different houses in the same county;foreign-born people who are now us citizens by naturalization, who are at least 1 year old, and who live in different households in the same county;people who were born in another country and are now us citizens by naturalization, who are at least 1 year old, and who live in different homes in the same county;foreign-born people who are now us citizens by naturalization, who are at least 1 year old, and who live in different residences in the same county" -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseAbroad,the number of non-hispanic white people aged 1 year and above living in different houses abroad;the number of non-hispanic white people aged 1 year and above living in foreign countries;the number of non-hispanic white people aged 1 year and above living in international locations;the number of non-hispanic white people aged 1 year and above living in other countries -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,white non-hispanic population over the age of 1 in different households in different counties and states;number of white non-hispanic people over the age of 1 in different households in different counties and states;percentage of white non-hispanic people over the age of 1 in different households in different counties and states;white non-hispanic population over 1 year old in different households in different counties and states -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountySameState,white people who are not hispanic and are 1 year old or older living in different houses in the same county in the same state;white non-hispanics aged 1 year or older living in different households in the same county in the same state;white people who are not hispanic and are 1 year old or older living in separate homes in the same county in the same state;white non-hispanics aged 1 year or older living in different domiciles in the same county in the same state -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInSameCounty,the number of white people who are not hispanic or latino and who are 1 year old or older who have moved to a different house in the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have changed their residence to a different house in the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have relocated to a different house in the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have moved house within the same county -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseAbroad,number of white people aged 1 year or more with different houses abroad;number of white people aged 1 year or more with multiple homes abroad;number of white people aged 1 year or more with homes in more than one country;number of white people aged 1 year or more with foreign properties -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountyDifferentState,"the number of white people above 1 year old in different houses, counties, and states;the percentage of white people above 1 year old in different houses, counties, and states;the proportion of white people above 1 year old in different houses, counties, and states;the share of white people above 1 year old in different houses, counties, and states" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountySameState,"number of white people aged 1 year or older in different households in the same state;white population in different households in the same state, aged 1 year or older;white people aged 1 year or older in different households in the same state, counted;white population in different households in the same state, aged 1 year or older, counted" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInSameCounty,the number of white people aged 1 year or more living in different houses in the same county;the number of white people aged 1 year or more living in multiple households in the same county;the number of white people aged 1 year or more living in different dwellings in the same county;the number of white people aged 1 year or more living in separate homes in the same county -Count_Person_20To34Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_20To34Years_Female,number of women aged 20 to 34 who gave birth in the past 12 months;number of births to women aged 20 to 34 in the past 12 months;number of women aged 20 to 34 who became mothers in the past 12 months;number of women aged 20 to 34 who had children in the past 12 months -Count_Person_20To79Years_Diabetes_AsFractionOf_Count_Person_20To79Years,the percentage of people aged 20-79 with diabetes;the proportion of people aged 20-79 with diabetes;the number of people aged 20-79 with diabetes divided by the total number of people aged 20-79;the fraction of people aged 20-79 with diabetes -Count_Person_25OrMoreYears_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,people aged 25 or older with a bachelor's degree or higher;people aged 25 or older who have a bachelor's degree or higher;people aged 25 or older who have completed a bachelor's degree;the percentage of people aged 25 or older with a bachelor's degree or higher -Count_Person_25OrMoreYears_Civilian_EducationalAttainmentHighSchoolGraduateGedOrAlternative_NonInstitutionalized,people aged 25 or older who are not institutionalized and have either graduated from high school or obtained a ged;civilians aged 25 or older who have either graduated from high school or obtained a ged;people aged 25 or older who are not institutionalized and have completed high school or obtained a ged;people aged 25 or older who are not institutionalized and have a ged -Count_Person_25OrMoreYears_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears,number of people aged 25 and older with a doctorate degree;percentage of people aged 25 and older with a doctorate degree;share of people aged 25 and older with a doctorate degree;prevalence of people aged 25 and older with a doctorate degree -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Female,the number of girls in 10th grade;the female student body in 10th grade;the proportion of girls in 10th grade;the female population of 10th graders -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Male,how many male 10th graders are there?;what is the number of male 10th graders?;what is the population of male 10th graders?;how many 10th grade boys are there? -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Female,number of girls in 11th grade;female students in 11th grade;female population of 11th graders;female population of 11th grade students -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Male,number of males in 11th grade;number of 11th grade males;male students in 11th grade;number of boys in 11th grade -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Female,female students who have not graduated from high school;the number of girls who have not completed 12th grade;females who did not graduate from 12th grade;the female population without a high school diploma -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Male,number of male students in 12th grade without a diploma;number of males in 12th grade without a diploma;number of male students in 12th grade who do not have a diploma;male students in 12th grade who do not have a diploma -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Female,number of girls in 5th and 6th grade;female students in 5th and 6th grade;girls in 5th and 6th grade;female population in grades 5 and 6 -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Male,number of boys in 5th and 6th grade;male students in 5th and 6th grade;male population in 5th grade and 6th grade;male population in grades 5 and 6 -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Female,number of girls in 7th and 8th grade;female students in 7th and 8th grade;female population in grades 7 and 8;the number of girls in 7th and 8th grade -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Male,number of boys in 7th and 8th grade;number of male students in 7th and 8th grade;male student population in 7th and 8th grade;male student body in 7th and 8th grade -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Female,1 number of girls in 9th grade;2 female students in 9th grade;3 girls in 9th grade;4 female population of 9th grade students -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Male,number of boys in 9th grade;number of male students in 9th grade;number of male 9th graders;male 9th grade population -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,number of women with phds;percentage of women with phds;women who have earned doctorates;female doctorate holders -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,the number of men with phds;the percentage of men who have phds;the number of men who have completed a doctoral degree;the percentage of men who have completed a doctoral program -Count_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateGedOrAlternative_NoHealthInsurance,"adults aged 25 and older, not institutionalized, with no health insurance, who have graduated from high school or obtained a ged;people aged 25 and older, not institutionalized, with no health insurance, who have completed high school or obtained a ged;adults aged 25 and older, not institutionalized, with no health insurance, who have a high school diploma or equivalent;people aged 25 and older, not institutionalized, with no health insurance, who are high school graduates or ged holders" -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Female,the number of women with a master's degree;the percentage of women with a master's degree;the proportion of women with a master's degree;the share of women with a master's degree -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Male,the percentage of men who have a master's degree;the proportion of men with a master's degree;the male population with a master's degree;the percentage of men with a master's degree -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Female,women who have not completed their education;women who have dropped out of school;the number of women who have not completed their education;the number of women who have dropped out of school -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Male,male population who did not finish school;male population who did not graduate from school;male population who dropped out of school;male population who did not complete their education -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Female,female population in nursery to 4th grade;number of females in nursery to 4th grade;female students in nursery to 4th grade;girls in nursery to 4th grade -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Male,total number of male students in kindergarten through fourth grade;number of males in kindergarten through fourth grade -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Female,the percentage of women with professional school degrees;the number of women with professional school degrees;the proportion of women with professional school degrees;the share of women with professional school degrees -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Male,the percentage of men who have professional school degrees;the number of men with professional school degrees;the proportion of men with professional school degrees;the number of men who have completed professional school -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Female,the percentage of women who have been in college for at least one year but do not have a degree;the number of women who have been enrolled in college for at least one year but have not graduated;number of women in college for one or more years without degrees;number of female college students who have not graduated -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Male,men who have some college education but no degree;men who have some college credits but no degree;men who have some college experience but no degree;men who have attended college for at least one year but do not have a degree -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Female,the number of women with less than a year of college education;women with less than one year of college education;the female population with less than one year of college education;the number of women with less than one year of college education -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Male,the number of males who have less than one year of college education;the percentage of males who have less than one year of college education;the proportion of males who have less than one year of college education;the male population with less than one year of college -Count_Person_25OrMoreYears_Female_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,the number of women aged 25 or older with a bachelor's degree or higher;the percentage of women aged 25 or older with a bachelor's degree or higher;the proportion of women aged 25 or older with a bachelor's degree or higher;the number of women aged 25 or older who have completed a bachelor's degree or higher -Count_Person_25OrMoreYears_Female_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Female,women with doctorate degrees who are 25 years old or older;female doctorate holders over 25;women aged 25 or older with phds;female doctoral degree holders aged 25 and up -Count_Person_25OrMoreYears_Female_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,number of females aged 25 or older with a master's degree divided by the total number of females aged 25 or older;the number of women over 25 with a master's degree divided by the total number of women over 25 -Count_Person_25OrMoreYears_Female_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Female,the number of women aged 25 or older who have completed tertiary education;the percentage of women aged 25 or older who have completed tertiary education;the female population with tertiary education;females with a tertiary education who are 25 years old or older -Count_Person_25OrMoreYears_Male_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,the percentage of males aged 25 or older in the united states with bachelor's degrees or higher;the proportion of males aged 25 or older in the united states with bachelor's degrees or higher;the number of males aged 25 or older in the united states with bachelor's degrees or higher as a percentage of the total male population aged 25 or older;the proportion of males aged 25 or older in the united states with bachelor's degrees or higher as a percentage of the total male population aged 25 or older -Count_Person_25OrMoreYears_Male_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Male,"percentage of men aged 25 or older with a doctorate degree;number of men aged 25 or older with a doctorate degree, divided by the total number of men aged 25 or older;proportion of men aged 25 or older with a doctorate degree;share of men aged 25 or older with a doctorate degree" -Count_Person_25OrMoreYears_Male_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,men aged 25 or older with a master's degree or higher;males 25 and older with a master's degree or higher;men over 25 with a master's degree;men aged 25 and above with a master's degree -Count_Person_25OrMoreYears_Male_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Male,number of men aged 25 or older enrolled in college or university;men aged 25 or older in tertiary education;the number of men aged 25 or older in tertiary education;the percentage of men aged 25 or older in tertiary education -Count_Person_25OrMoreYears_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,"percentage of population aged 25 years or more with a master's degree or higher;share of population aged 25 years or more with a master's degree or higher;number of people aged 25 years or more with a master's degree or higher, expressed as a percentage of the total population;proportion of population aged 25 years or more with a master's degree or higher" -Count_Person_25OrMoreYears_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears,people aged 25 or older in tertiary education;people aged 25 years or older enrolled in tertiary education;people aged 25 years or older who are tertiary students;people aged 25 years or older who are pursuing tertiary education -Count_Person_25To64Years_EnrolledInEducationOrTraining_AsAFractionOfCount_Person_25To64Years,number of people aged 25 to 64 enrolled in education or training;number of people aged 25 to 64 who are students or trainees;number of people aged 25 to 64 who are in school or taking classes;number of people aged 25 to 64 who are learning new skills -Count_Person_25To64Years_EnrolledInEducationOrTraining_Female_AsAFractionOfCount_Person_25To64Years_Female,the number of women aged 25 to 64 who are enrolled in education or training;the percentage of women aged 25 to 64 who are enrolled in education or training;the proportion of women aged 25 to 64 who are enrolled in education or training;the share of women aged 25 to 64 who are enrolled in education or training -Count_Person_25To64Years_EnrolledInEducationOrTraining_Male_AsAFractionOfCount_Person_25To64Years_Male,the number of men aged 25 to 64 who are enrolled in education or training;the percentage of men aged 25 to 64 who are enrolled in education or training;the proportion of men aged 25 to 64 who are enrolled in education or training;the number of men aged 25 to 64 who are in school or taking classes -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_AsAFractionOfCount_Person_25To64Years,"the percentage of people aged 25 to 64 who have less than a primary education or a primary education and lower secondary education;the proportion of people aged 25 to 64 who have not completed primary school or have only completed primary school and lower secondary school;the number of people aged 25 to 64 who have not completed primary school or have only completed primary school and lower secondary school, expressed as a fraction of the total number of people aged 25 to 64;fraction of people aged 25-64 with less than primary education or primary education and lower secondary education" -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"fraction of females aged 25 to 64 with less than primary education or primary and lower secondary education;the fraction of females aged 25 to 64 with less than primary education or primary education and lower secondary education, out of all females aged 25 to 64;fraction of females aged 25-64 with less than primary education or primary and lower secondary education" -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,the number of men aged 25 to 64 who have completed primary school;the number of male adults aged 25 to 64 with a primary education;the number of men aged 25 to 64 who have completed primary education or less;the number of male adults aged 25 to 64 with a primary school diploma -Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years,people aged 25 to 64 with a college degree;people aged 25 to 64 with a tertiary education;people aged 25 to 64 with tertiary education;the number of people aged 25 to 64 with tertiary education -Count_Person_25To64Years_TertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,women aged 25 to 64 with a college degree;the number of women aged 25 to 64 who have completed tertiary education;women aged 25 to 64 with a higher education;females aged 25 to 64 with a university degree -Count_Person_25To64Years_TertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,percentage of men aged 25 to 64 who are enrolled in tertiary education;number of men aged 25 to 64 enrolled in tertiary education divided by the total number of men aged 25 to 64;proportion of men aged 25 to 64 who are pursuing tertiary education;men aged 25 to 64 enrolled in tertiary education as a percentage of the total male population aged 25 to 64 -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_AsAFractionOfCount_Person_25To64Years,people aged 25 to 64 with at least upper secondary education;the number of people aged 25 to 64 with at least upper secondary education;the percentage of people aged 25 to 64 with at least upper secondary education;the proportion of people aged 25 to 64 with at least upper secondary education -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Female_AsAFractionOfCount_Person_25To64Years_Female, -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Male_AsAFractionOfCount_Person_25To64Years_Male,the percentage of men aged 25 to 64 who have completed upper secondary education or higher;the proportion of males aged 25 to 64 with upper secondary education or higher;the number of men aged 25 to 64 with upper secondary education or higher as a percentage of the total male population in that age group;the percentage of men aged 25 to 64 who have completed at least upper secondary education -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years,percentage of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education;share of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education;number of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education per 100 people aged 25 to 64 years;proportion of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,number of women aged 25 to 64 years in upper secondary and post-secondary non-tertiary education;percentage of women aged 25 to 64 years in upper secondary and post-secondary non-tertiary education;female participation in upper secondary and post-secondary non-tertiary education;women's enrollment in upper secondary and post-secondary non-tertiary education -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the number of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the percentage of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the proportion of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education -Count_Person_35To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_35To50Years_Female,number of births to women aged 35 to 50 in the past 12 months;birth rate among women aged 35 to 50 in the past 12 months;percentage of women aged 35 to 50 who gave birth in the past 12 months;number of babies born to women aged 35 to 50 in the past 12 months -Count_Person_3OrMoreYears_Female_EnrolledInSchool,number of girls enrolled in school;number of female students;female school enrollment;female student enrollment -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthAfrica_EnrolledInSchool,the percentage of foreign-born people in africa aged 3 years or more who are enrolled in school;the proportion of foreign-born people in africa aged 3 years or more who are enrolled in school;the number of foreign-born people in africa aged 3 years or more enrolled in school as a percentage of the total foreign-born population in africa aged 3 years or more;the number of foreign-born people in africa aged 3 years or more enrolled in school as a proportion of the total foreign-born population in africa aged 3 years or more -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthAsia_EnrolledInSchool,"the number of people who were born in asia, have lived in the us for 3 years or more, and are enrolled in school;the number of asian immigrants who have been in the us for 3 years or more and are enrolled in school;the number of foreign-born asians who are enrolled in school in the us;the number of asian students who have been in the us for 3 years or more" -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthCaribbean_EnrolledInSchool,school enrollment rate of foreign-born population aged 3 years or more;percentage of foreign-born population aged 3 years or more enrolled in school;number of foreign-born students aged 3 years or more enrolled in school;proportion of foreign-born population aged 3 years or more enrolled in school -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_EnrolledInSchool,"central american immigrants who are not mexican and are 3 years old or older who are enrolled in school;central american immigrants who are not mexican and are of school age;central american immigrants who are not mexican and are enrolled in kindergarten through 12th grade;central american immigrants who are not mexican and are enrolled in a pre-school, elementary school, middle school, or high school" -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthEasternAsia_EnrolledInSchool,number of foreign-born people from eastern asia aged 3 or older enrolled in school;number of foreign-born eastern asians aged 3 or older who are students;number of foreign-born students from eastern asia aged 3 or older;number of foreign-born eastern asians aged 3 or older who are enrolled in an educational institution -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthEurope_EnrolledInSchool,what percentage of foreign-born children in europe are enrolled in school;what percentage of foreign-born children in europe are in school;what percentage of foreign-born children in europe are attending school;what percentage of foreign-born children in europe are receiving an education -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthLatinAmerica_EnrolledInSchool,percentage of foreign-born latin americans aged 3 or older enrolled in school;share of foreign-born latin americans aged 3 or older enrolled in school;number of foreign-born latin americans aged 3 or older enrolled in school divided by the total number of foreign-born latin americans aged 3 or older;proportion of foreign-born latin americans aged 3 or older enrolled in school -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthMexico_EnrolledInSchool,number of foreign-born students in mexico aged 3 and older;number of foreign-born students in mexico aged 3 years or older;number of foreign-born students in mexico aged 3 and over;number of foreign-born students in mexico aged 3+ -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthNorthamerica_EnrolledInSchool,the number of foreign-born people aged 3 years or more enrolled in schools in north america;the percentage of foreign-born people aged 3 years or more enrolled in schools in north america;the proportion of foreign-born people aged 3 years or more enrolled in schools in north america;the foreign-born school enrollment rate in north america -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthNorthernWesternEurope_EnrolledInSchool,school enrollment rate of foreign-born population aged 3 years or more in northern western europe;number of foreign-born students aged 3 years or more enrolled in schools in northern western europe;percentage of foreign-born population aged 3 years or more enrolled in schools in northern western europe;share of foreign-born population aged 3 years or more enrolled in schools in northern western europe -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthOceania_EnrolledInSchool,what percentage of foreign-born people in oceania aged 3 years or more are enrolled in school?;what is the school enrollment rate of foreign-born people in oceania aged 3 years or more?;what percentage of foreign-born people in oceania aged 3 years or more are attending school?;what is the percentage of foreign-born people in oceania aged 3 years or more who are enrolled in education? -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthSouthCentralAsia_EnrolledInSchool,south central asian foreign-born population aged 3 years or more enrolled in school;foreign-born south central asians aged 3 years or more enrolled in school;south central asian population born outside the us aged 3 years or more enrolled in school;foreign-born population from south central asia aged 3 years or more enrolled in school -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthSouthEasternAsia_EnrolledInSchool,foreign-born population from southeast asia aged 3 years or more;southeast asian population born outside the us aged 3 years or more;population born in southeast asia and living in the us aged 3 years or more;people from southeast asia who live in the us and are aged 3 years or more -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthSouthamerica_EnrolledInSchool,south american foreign-born students aged 3 or older enrolled in schools;foreign-born students from south america aged 3 or older enrolled in schools;south american students aged 3 or older enrolled in schools who were born outside of the country;south american students aged 3 or older enrolled in schools who are not citizens of the country -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthSouthernEasternEurope_EnrolledInSchool,"the percentage of foreign-born people from southern and eastern europe aged 3 or older enrolled in school;the proportion of foreign-born people from southern and eastern europe aged 3 or older who are enrolled in school;the number of foreign-born people from southern and eastern europe aged 3 or older enrolled in school, divided by the total number of foreign-born people from southern and eastern europe aged 3 or older;the percentage of foreign-born people from southern eastern europe aged 3 years or more who are enrolled in school" -Count_Person_3OrMoreYears_ForeignBorn_PlaceOfBirthWesternAsia_EnrolledInSchool,percentage of foreign-born people from western asia aged 3 years or more enrolled in school;share of foreign-born people from western asia who are 3 years of age or older and are enrolled in school;percentage of foreign-born people from western asia aged 3 and older who are enrolled in school;proportion of people from western asia who were born outside the united states and are 3 years of age or older and are enrolled in school -Count_Person_3OrMoreYears_Male_EnrolledInSchool,boys in school;male students;guys in class;young men in education -Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,number of people age 5 or older who speak african languages at home;number of people age 5 or older who speak an african language at home;number of people age 5 or older who speak a language native to africa at home;number of people age 5 or older who speak a language from africa at home -Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"number of people age 5 or older speaking amharic, somali, or other afro-asiatic languages at home;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages at home;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages as their primary language;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages as their first language" -Count_Person_5OrMoreYears_ArabicSpokenAtHome,number of people aged 5 or over speaking arabic at home;number of arabic speakers aged 5 or over;number of people who speak arabic at home aged 5 or over;number of people aged 5 or over who speak arabic as their main language -Count_Person_5OrMoreYears_ArmenianSpokenAtHome,number of people aged 5 or older who speak armenian at home;number of armenian speakers aged 5 or older;number of people who speak armenian as their first language at home;number of people who speak armenian as their primary language at home -Count_Person_5OrMoreYears_BengaliSpokenAtHome,number of people aged 5 or older who speak bengali at home;number of bengali speakers aged 5 or older;number of people who speak bengali as their first language at home;number of people who speak bengali as their primary language at home -Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,number of people aged 5 or more who speak chinese (including mandarin and cantonese) at home;number of people who speak chinese (including mandarin and cantonese) at home as their first language;number of people age 5 or older who speak chinese (including mandarin and cantonese) at home;number of chinese speakers (including mandarin and cantonese) age 5 or older -Count_Person_5OrMoreYears_ChineseSpokenAtHome,number of people age 5 or older who speak chinese at home;number of chinese speakers age 5 or older;number of people who speak chinese as their primary language at home;number of people who speak chinese as their first language at home -Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,the percentage of people aged 5 or older who speak french creole at home in place name;the number of people aged 5 or older who speak french creole at home in place name as a percentage of the total population;the proportion of people aged 5 or older who speak french creole at home in place name;the share of people aged 5 or older who speak french creole at home in place name -Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome, -Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"number of people aged 5 or older speaking french, including patois and cajun, at home;number of people aged 5 or older who speak french, including patois and cajun, as their main language at home;number of people aged 5 or older who speak french, including patois and cajun, as their first language at home;number of people aged 5 or older who speak french, including patois and cajun, as their only language at home" -Count_Person_5OrMoreYears_GermanSpokenAtHome,the number of people aged 5 or older who speak german at home;the percentage of people aged 5 or older who speak german at home;the proportion of people aged 5 or older who speak german at home;the share of people aged 5 or older who speak german at home -Count_Person_5OrMoreYears_GreekSpokenAtHome,the population of greece;the number of people living in greece;the number of people in greece;how many people live in greece -Count_Person_5OrMoreYears_GujaratiSpokenAtHome,number of people age 5 or older speaking gujarati at home;number of gujarati speakers age 5 or older;number of people who speak gujarati at home and are age 5 or older;number of people age 5 or older who speak gujarati as their primary language -Count_Person_5OrMoreYears_HaitianSpokenAtHome,number of people aged 5 or older who speak haitian at home;number of people aged 5 or older who speak haitian creole at home;number of people aged 5 or older who speak haitian as their primary language;number of people aged 5 or older who speak haitian as their first language -Count_Person_5OrMoreYears_HebrewSpokenAtHome,the number of people age 5 or older who speak hebrew at home in israel;the percentage of people age 5 or older who speak hebrew at home in israel;the proportion of people age 5 or older who speak hebrew at home in israel;the share of people age 5 or older who speak hebrew at home in israel -Count_Person_5OrMoreYears_HindiSpokenAtHome,number of people age 5 or older who speak hindu at home;number of hindu speakers age 5 or older;population of hindu speakers age 5 or older;number of people age 5 or older who speak hindu as their first language -Count_Person_5OrMoreYears_HmongSpokenAtHome,"hmong speakers at home, age 5 and over;hmong speakers at home, 5 years of age and older;hmong speakers at home, ages 5 and up;hmong speakers at home, 5 and older" -Count_Person_5OrMoreYears_HungarianSpokenAtHome,number of people in hungary who speak hungarian at home;number of people age 5 or older who speak hungarian at home;number of hungarian speakers age 5 or older;number of people who speak hungarian as their first language at home -Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages at home;number of people aged 5 or older who speak an austronesian language at home;number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages as their primary language;number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages as their only language" -Count_Person_5OrMoreYears_ItalianSpokenAtHome,number of people in italy who speak italian at home;number of italian speakers in italy;percentage of the italian population who speak italian at home;percentage of italians who speak italian at home -Count_Person_5OrMoreYears_JapaneseSpokenAtHome,the population of japan;the number of people in japan;the number of japanese people;the japanese population -Count_Person_5OrMoreYears_KhmerSpokenAtHome,number of people age 5 or older who speak khmer at home;khmer speakers age 5 or older;proportion of people age 5 or older who speak khmer at home;khmer as a home language for people age 5 or older -Count_Person_5OrMoreYears_KoreanSpokenAtHome,number of people aged 5 or older speaking korean at home in the united states;number of korean speakers aged 5 or older in the united states;number of people in the united states who speak korean at home and are aged 5 or older;number of people aged 5 or older in the united states who speak korean as their primary language -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,number of people aged 5 years or older who speak other languages and are above the poverty level in the past 12 months;number of people aged 5 years or older who speak languages other than english and are above the poverty level in the past 12 months;number of people aged 5 years or older who speak a language other than english as their primary language and are above the poverty level in the past 12 months;people aged 5 years or older who speak other languages and were above the poverty level in the past 12 months -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,what percentage of the english population aged 5 years or more lived below the poverty level in the past 12 months?;what proportion of the english population aged 5 years or more lived in poverty in the past 12 months?;what was the poverty rate for the english population aged 5 years or more in the past 12 months?;how many people in england aged 5 years or more lived below the poverty line in the past 12 months? -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn,people born in other countries who speak languages other than english;people who were not born in the united states and speak languages other than english -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_Native,people who speak languages other than english as their native language;people who are fluent in languages other than english;people who speak more than one language;people who are bilingual or multilingual -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_PovertyStatusDetermined,households that speak english and another language and are at least 5 years old and have been determined to be in poverty;households that speak english and another language and are 5 years old or older and have been determined to be poor;households that speak english and another language and are at least 5 years old and have been determined to have low income;households that speak english and another language and are 5 years old or older and have been determined to have a low socioeconomic status -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,number of people in adult correctional facilities who are fluent in languages other than english;number of people in adult correctional facilities who are not fluent in english;number of people who speak languages other than english in adult prisons;number of adult prisoners who are fluent in languages other than english -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,students who speak languages other than english;students who are multilingual;students who are bilingual;students who speak other languages -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInGroupQuarters,people who speak a language other than english as their native language in group quarters;people who are not native english speakers living in group quarters;people who speak a language other than english as their first language in group quarters;people who speak a language other than english as their primary language in group quarters -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,number of people speaking languages other than english in institutional settings;number of people speaking languages other than english in residential facilities;number of people speaking languages other than english in group homes;what is the distribution of languages spoken by people in group quarters other than english? -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,number of people speaking languages other than english in non-institutional group quarters;number of people speaking languages other than english in non-institutional living arrangements;number of people speaking languages other than english in non-institutional housing;1 number of people speaking languages other than english in non-institutional group quarters -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNursingFacilities,number of people in nursing homes who speak languages other than english;percentage of nursing home residents who are bilingual or multilingual;share of nursing home residents who speak a language other than english as their primary language;number of nursing home residents who are not native english speakers -Count_Person_5OrMoreYears_LaotianSpokenAtHome,laotian people;laotian population;people of laos;people living in laos -Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"number of people who speak malayalam, kannada, or other dravidian languages;how many people speak malayalam, kannada, or other dravidian languages;number of people speaking malayalam, kannada, or other dravidian languages;population of malayalam, kannada, or other dravidian language speakers" -Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,people of cambodia;cambodians;the people of cambodia;the population of cambodia -Count_Person_5OrMoreYears_NavajoSpokenAtHome,the number of navajo people;the population of navajo people;the number of people who are navajo;the number of people who identify as navajo -Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"population of nepali, marathi, or other indic languages;number of people who speak nepali, marathi, or other indic languages;people who speak nepali, marathi, or other indic languages;speakers of nepali, marathi, or other indic languages" -Count_Person_5OrMoreYears_NotAUSCitizen_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn,"people who were born outside of the united states and are now citizens, who are 5 years old or older, and who speak a language other than english;foreign-born citizens of the united states who are 5 years old or older and speak a language other than english;people who were born in another country and are now citizens of the united states, who are 5 years old or older, and who speak a language other than english;people who are not native english speakers and are citizens of the united states, who are 5 years old or older" -Count_Person_5OrMoreYears_NotAUSCitizen_OnlyEnglishSpokenAtHome_ForeignBorn,only english is spoken by the foreign-born population who are not us citizens and are 5 years of age or older;the foreign-born population who are not us citizens and are 5 years of age or older speak only english;the foreign-born population who are not us citizens and are 5 years of age or older do not speak any language other than english;the foreign-born population who are not us citizens and are 5 years of age or older are monolingual in english -Count_Person_5OrMoreYears_NotAUSCitizen_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,"people who were born in another country and speak spanish or spanish creole as their first language, and who are not us citizens, and who are 5 years old or older;people who were born outside of the united states, who speak spanish or spanish creole as their native language, who are not us citizens, and who are at least 5 years old;people who were born in another country, who speak spanish or spanish creole as their primary language, who are not citizens of the united states, and who are 5 years of age or older;people who were born outside of the united states, who speak spanish or spanish creole as their mother tongue, who are not american citizens, and who are at least 5 years old" -Count_Person_5OrMoreYears_NotAUSCitizen_SpanishSpokenAtHome_ForeignBorn,people born in spain who are not us citizens and are 5 years old or older;spanish-born people who are not us citizens and are 5 years old or older;spanish-born non-us citizens who are 5 years old or older;spanish foreign-born non-us citizens who are 5 years old or older -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,"population: 5 years or older, only speaks english, and had an income above the poverty line in the past 12 months" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,number of people aged 5 years or more who speak only english and live below the poverty line in the past 12 months;number of people aged 5 years or more who speak only english and are living in poverty in the past 12 months;number of people aged 5 years or more who speak only english and have a low income in the past 12 months;number of people aged 5 years or more who speak only english and are struggling to make ends meet in the past 12 months -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ForeignBorn,english-speaking foreign-born population;foreign-born population who speak english fluently;foreign-born population with english fluency;foreign-born population who are fluent in english -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_Native,people who only speak english;those who only speak english;english-speaking native population;population that speaks only english as their native language -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_PovertyStatusDetermined,number of people aged 5 or older who speak only english and have their poverty status determined;number of english-only speakers aged 5 or older with poverty status determined;number of people aged 5 or older who speak only english and have their poverty status known;number of english-only speakers aged 5 or older with known poverty status -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,percentage of english speakers in adult prisons;number of english speakers in adult jails;share of english speakers in adult detention centers;proportion of english speakers in adult correctional facilities -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,english-only population in university student housing;only english speakers in university student housing;university student housing for english speakers only;housing for english speakers only in university -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInGroupQuarters,number of people who speak only english in group quarters;number of people in group quarters who speak only english;number of people in group quarters who are english-only speakers;number of people in group quarters who do not speak any other language -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,english-only institutional group quarters;group quarters where only english is spoken;institutional group quarters where only english is spoken;english-only speakers in group quarters -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNursingFacilities,english-only nursing home workers;nursing home workers who only speak english;workers in nursing homes who only speak english;nursing home staff who only speak english -Count_Person_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,languages not specified;languages not otherwise specified;languages not categorized;languages not included elsewhere -Count_Person_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,population of other asian languages;number of people who speak other asian languages;number of speakers of other asian languages;people who speak other asian languages -Count_Person_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,number of people age 5 or older speaking an indic language at home;number of people age 5 or older speaking an indic language at home in the united states;number of people in the us age 5 or older who speak an indic language at home;number of people in the united states who speak an indic language at home who are age 5 or older -Count_Person_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,number of people age 5 or older who speak a language of asia at home;number of people age 5 or older who speak a language from asia at home -Count_Person_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,number of people age 5 or older who speak other native languages of north america at home;number of people age 5 or older who speak native languages of north america at home other than english;number of people age 5 or older who speak languages other than english at home that are native to north america;number of people age 5 or older speaking other native languages of north america at home -Count_Person_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,the number of people who speak native north american languages at home in the united states;the number of people age 5 or older who speak native north american languages at home in the united states;the percentage of people who speak native north american languages at home in the united states;the percentage of people age 5 or older who speak native north american languages at home in the united states -Count_Person_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,how many people age 5 or older speak other pacific island languages at home?;what is the number of people age 5 or older who speak other pacific island languages at home?;what percentage of people age 5 or older speak other pacific island languages at home?;what is the proportion of people age 5 or older who speak other pacific island languages at home? -Count_Person_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,people who speak slavic languages and are 50 years old or older;slavic speakers who are 50+;people who speak a slavic language and are at least 50 years old;slavic speakers aged 50 and above -Count_Person_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,how many people speak other west germanic languages?;how many people speak languages that are part of the west germanic language family?;what is the number of speakers of west germanic languages?;what is the total number of people who speak west germanic languages? -Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,number of people aged 5 or older speaking persian (farsi and dari) at home;number of people aged 5 or older who speak persian (farsi and dari) as their main language at home;number of people aged 5 or older who speak persian (farsi and dari) as their only language at home;number of people aged 5 or older who speak persian (farsi and dari) at home as a first language -Count_Person_5OrMoreYears_PersianSpokenAtHome,number of people aged 5 or older who speak persian at home;number of persian speakers aged 5 or older;proportion of the population aged 5 or older who speak persian;percentage of the population aged 5 or older who speak persian -Count_Person_5OrMoreYears_PolishSpokenAtHome,number of people aged 5 or older who speak polish at home;number of polish speakers aged 5 or older;number of people who speak polish as their primary language at home;number of people who speak polish as their first language at home -Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,how many people age 5 or older speak portuguese or portuguese creole at home?;what is the number of people age 5 or older who speak portuguese or portuguese creole at home?;what percentage of people age 5 or older speak portuguese or portuguese creole at home?;what is the proportion of people age 5 or older who speak portuguese or portuguese creole at home? -Count_Person_5OrMoreYears_PortugueseSpokenAtHome,number of people age 5 or older who speak portuguese at home;number of portuguese speakers age 5 or older;number of people who speak portuguese as their primary language at home;number of people who speak portuguese as their first language at home -Count_Person_5OrMoreYears_PunjabiSpokenAtHome,the number of people aged 5 or older who speak punjabi at home;the percentage of people aged 5 or older who speak punjabi at home;the proportion of people aged 5 or older who speak punjabi at home;the share of people aged 5 or older who speak punjabi at home -Count_Person_5OrMoreYears_ResidesInHousehold,"household size, including people 5 years of age and older;number of people living in a household, including those 5 years of age and older;household population, 5 years and older;household size, 5 years and older" -Count_Person_5OrMoreYears_RussianSpokenAtHome,number of people aged 5 or older who speak russian at home;number of russian speakers aged 5 or older;proportion of the population aged 5 or older who speak russian at home;percentage of the population aged 5 or older who speak russian at home -Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,number of people age 5 or older speaking scandinavian languages at home;number of people age 5 or older speaking scandinavian languages as their main language at home;number of people age 5 or older speaking scandinavian languages as their first language at home;number of people age 5 or older speaking scandinavian languages as their native language at home -Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,number of people aged 5 or older who speak serbo-croatian at home;number of people aged 5 or older who speak serbo-croatian as their main language;number of people aged 5 or older who speak serbo-croatian as their first language;number of people aged 5 or older who speak serbo-croatian as their native language -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_AbovePovertyLevelInThePast12Months,the percentage of spanish creole speakers aged 5 years or more who were above the poverty level in the past 12 months;the proportion of spanish creole speakers aged 5 years or more who were not below the poverty level in the past 12 months;the number of spanish creole speakers aged 5 years or more who were not poor in the past 12 months;the percentage of spanish creole speakers aged 5 years or more who were not living in poverty in the past 12 months -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_BelowPovertyLevelInThePast12Months,the percentage of spanish or spanish creole speaking people aged 5 years or more who were below the poverty level in the past 12 months;the proportion of spanish or spanish creole speaking people aged 5 years or more who were living in poverty in the past 12 months;the number of spanish or spanish creole speaking people aged 5 years or more who were poor in the past 12 months;what percentage of spanish or spanish creole speakers aged 5 years or more were below the poverty level in the past 12 months? -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,the number of people born in another country who are 5 years old or older and speak spanish or spanish creole at home in the united states;the number of foreign-born people age 5 or older who speak spanish or spanish creole at home in the us;the number of people who were born in another country and are 5 years old or older and speak spanish or spanish creole at home in america;the number of foreign-born people age 5 or older who speak spanish or spanish creole at home in the usa -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_Native,"the percentage of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older;the proportion of the population of the united states who speak spanish or spanish creole at home, who are 5 years of age or older;the number of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older, expressed as a percentage of the total population;the number of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older, expressed as a proportion of the total population" -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_PovertyStatusDetermined,the number of people aged 5 or older who speak spanish at home and have been determined to be in poverty;the number of people aged 5 or older who speak spanish at home and have low income;the number of people aged 5 and older who speak spanish at home and have been determined to be in poverty;the number of people aged 5 and older who speak spanish at home and have been designated as low-income -Count_Person_5OrMoreYears_SpanishSpokenAtHome_AbovePovertyLevelInThePast12Months,the number of spanish-speaking people aged 5 and older who were not experiencing economic hardship in the past 12 months;the number of spanish-speaking people aged 5 and older who were not struggling to make ends meet in the past 12 months;what percentage of spanish-speaking people aged 5 and above lived above the poverty level in the past 12 months?;the percentage of spanish speakers aged 5 years and above living above the poverty level in the past 12 months -Count_Person_5OrMoreYears_SpanishSpokenAtHome_BelowPovertyLevelInThePast12Months,what percentage of spanish-speaking people aged 5 or older lived below the poverty line in the past 12 months;what percentage of spanish-speaking people aged 5 or older were living in poverty in the past 12 months;what percentage of spanish-speaking people aged 5 or older were poor in the past 12 months;what percentage of spanish-speaking people aged 5 or older had an income below the poverty line in the past 12 months -Count_Person_5OrMoreYears_SpanishSpokenAtHome_ForeignBorn,what percentage of the foreign-born population in the united states speaks spanish at home;what percentage of foreign-born people in the united states speak spanish at home;what percent of the foreign-born population in the united states speaks spanish at home;what percent of foreign-born people in the united states speak spanish at home -Count_Person_5OrMoreYears_SpanishSpokenAtHome_Native,hablantes nativos de español -Count_Person_5OrMoreYears_SpanishSpokenAtHome_PovertyStatusDetermined,spanish-speaking people aged 5 and older who are considered to be living in poverty;spanish-speaking people aged 5 and older who are living below the poverty line;spanish-speaking people aged 5 and older who are considered to be low-income;spanish-speaking people aged 5 and older who are struggling to make ends meet -Count_Person_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,the number of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home;the percentage of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home;the proportion of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home;the prevalence of swahili or other languages of central eastern and southern africa as a home language among people aged 5 or more -Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,number of people aged 5 or older who speak tagalog and filipino at home;number of people aged 5 or older who speak tagalog and filipino as their main language at home;number of people aged 5 or older who speak tagalog and filipino as their first language at home;number of people aged 5 or older who speak tagalog and filipino as their native language at home -Count_Person_5OrMoreYears_TagalogSpokenAtHome,how many people age 5 or older speak tagalog at home?;what is the number of people age 5 or older who speak tagalog at home?;how many people age 5 or older speak tagalog as their primary language?;what is the number of people age 5 or older who speak tagalog as their primary language? -Count_Person_5OrMoreYears_TamilSpokenAtHome,number of people age 5 or older speaking tamil at home in the united states;number of speakers of tamil at home in the united states aged 5 or older;number of people in the united states who speak tamil at home and are aged 5 or older;number of people in the united states aged 5 or older who speak tamil at home -Count_Person_5OrMoreYears_TeluguSpokenAtHome,number of people age 5 or older speaking telugu at home in the united states;number of telugu speakers age 5 or older in the us;number of people age 5 or older in the us who speak telugu at home;number of people in the us who speak telugu at home and are age 5 or older -Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,number of people age 5 or older speaking tai kadai languages at home;number of people age 5 or older who speak tai kadai languages at home;number of people age 5 or older who use tai kadai languages at home;number of people age 5 or older who speak tai kadai languages as their primary language at home -Count_Person_5OrMoreYears_ThaiSpokenAtHome,number of people in the united states age 5 or older who speak thai at home;number of thai speakers in the united states age 5 or older;number of thai-speaking people in the us age 5 or older;number of people in the us who speak thai as their first language at home -Count_Person_5OrMoreYears_USCitizenByNaturalization_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn,what is the percentage of us citizens by naturalization who speak a language other than english?;what percentage of us citizens by naturalization are not native english speakers?;what percentage of us citizens by naturalization who are 5 years or older speak a language other than english?;what is the percentage of foreign-born us citizens by naturalization who speak a language other than english? -Count_Person_5OrMoreYears_USCitizenByNaturalization_OnlyEnglishSpokenAtHome_ForeignBorn,naturalized us citizens who are 5 years old or older;foreign-born people who have become us citizens and are 5 years old or older;people who were not born in the us but have become us citizens and are 5 years old or older;people who have immigrated to the us and become us citizens and are 5 years old or older -Count_Person_5OrMoreYears_USCitizenByNaturalization_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,"us citizens who were born in another country and have become citizens through naturalization, who are at least 5 years old, and who speak spanish or spanish creole;us citizens who were naturalized after being born in another country, who are at least 5 years old, and who speak spanish or spanish creole;us citizens who were not born in the united states but have become citizens through naturalization, who are at least 5 years old, and who speak spanish or spanish creole;us citizens who are naturalized immigrants, who are at least 5 years old, and who speak spanish or spanish creole" -Count_Person_5OrMoreYears_USCitizenByNaturalization_SpanishSpokenAtHome_ForeignBorn,spanish-speaking naturalized us citizens aged 5 or older;spanish-speaking foreign-born us citizens who have been naturalized for at least 5 years;spanish-speaking us citizens who were born outside of the us and have been naturalized for at least 5 years;spanish-speaking naturalized us citizens 5 years of age or older -Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,the number of people aged 5 or older who speak ukrainian or other slavic languages at home;the percentage of people aged 5 or older who speak ukrainian or other slavic languages at home;the proportion of people aged 5 or older who speak ukrainian or other slavic languages at home;the share of people aged 5 or older who speak ukrainian or other slavic languages at home -Count_Person_5OrMoreYears_UrduSpokenAtHome,number of people age 5 or over speaking urdu at home in the united states;number of people in the united states who speak urdu at home and are 5 years of age or older;number of people who speak urdu at home in the us who are 5 years old or older;number of people in the us who speak urdu at home and are at least 5 years old -Count_Person_5OrMoreYears_VietnameseSpokenAtHome,number of people in the united states 5 years of age or older who speak vietnamese at home;number of vietnamese speakers in the united states who are 5 years of age or older;number of people in the us who speak vietnamese at home as their first language;number of people aged 5 or older who speak vietnamese at home -Count_Person_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,number of people aged 5 or older who speak west germanic languages at home;number of people aged 5 or older who speak a west germanic language at home;number of people aged 5 or older who speak a west germanic language as their main language;number of people aged 5 or older who speak a west germanic language as their first language -Count_Person_5OrMoreYears_YiddishSpokenAtHome,"yiddish speakers at home, age 5 and over;yiddish-speaking population, age 5 and over;yiddish speakers at home, 5 years of age and older;yiddish-speaking population, 5 years of age and older" -Count_Person_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"yoruba, twi, igbo, or other languages of west africa spoken at home;yoruba, twi, igbo, or other west african languages spoken at home;yoruba, twi, igbo, or other west african languages spoken in the home;yoruba, twi, igbo, or other west african languages spoken in the household" -Count_Person_65OrMoreYears_Female_ResidesInNursingFacilities,number of women aged 65 or older in nursing homes;female nursing home population aged 65+;women aged 65+ in nursing homes;female residents of nursing homes aged 65+ -Count_Person_65OrMoreYears_Male_ResidesInNursingFacilities,men aged 65 and older in nursing homes;male nursing home residents aged 65 and older;older men in nursing homes;elderly men in nursing homes -Count_Person_7To14Years_Employed_AsFractionOf_Count_Person_7To14Years,number of people aged 7 to 14 who are employed;number of children aged 7 to 14 who have jobs;number of kids aged 7 to 14 who are working;number of youngsters aged 7 to 14 who are in the workforce -Count_Person_7To14Years_Female_Employed_AsFractionOf_Count_Person_7To14Years_Female,number of employed females aged 7 to 14;number of female workers aged 7 to 14;number of employed girls aged 7 to 14;number of female employees aged 7 to 14 -Count_Person_7To14Years_Male_Employed_AsFractionOf_Count_Person_7To14Years_Male,number of employed males aged 7 to 14;employed males aged 7 to 14;male employees aged 7 to 14;males aged 7 to 14 who are employed -Count_Person_AbovePovertyLevelInThePast12Months,the number of people who were not living in poverty in the past 12 months;the number of people who were not living in a state of poverty in the past 12 months;the number of people who are not considered poor in the past 12 months;the number of people who are not living in poverty in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,what percentage of native americans were not living in poverty in the past year?;what percentage of native americans had an income above the poverty line in the past year?;what percentage of native americans were not considered poor in the past year?;what percentage of native americans were not low-income in the past year? -Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,how many asians were not living in poverty last year?;what percentage of asians were not living in poverty last year?;what is the poverty rate for asians last year?;what is the percentage of asians who were not poor last year? -Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,what percentage of african americans were above the poverty line last year?;how many african americans were not living in poverty last year?;what was the poverty rate for african americans last year?;what percentage of african americans were not poor last year? -Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,how many hispanics were not in poverty last year?;what percentage of hispanics were not in poverty last year?;what is the poverty rate for hispanics last year?;how many hispanics were above the poverty line last year? -Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander alone people who were not living in poverty in the last year;the number of native hawaiian or other pacific islander alone people who were above the poverty line in the last year;the number of native hawaiian or other pacific islander alone people who were not poor in the last year;the number of native hawaiian or other pacific islander alone people who were not living in low-income households in the last year -Count_Person_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,what is the number of people of other races who were not below the poverty line in the past year?;how many people of other races were not poor in the past year?;what is the number of people of other races who were not impoverished in the past year?;number of people who identify as a race other than white and are not in poverty in the past year -Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,what percentage of multi-racial people were above the poverty line in the past year?;what percentage of multi-racial people had an income above the poverty level in the past year?;what percentage of multi-racial people were not poor in the past year?;the number of multi-racial people who were not below the poverty level in the past year -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,how many white people were not below the poverty line in the past year?;what percentage of white people were not below the poverty line in the past year?;what was the number of white people who were not below the poverty line in the past year?;what was the percentage of white people who were not below the poverty line in the past year? -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,what percentage of non-hispanic white people were above the poverty line in the past year?;what proportion of non-hispanic white people were not living in poverty in the past year?;how many non-hispanic white people were not poor in the past year?;what was the percentage of non-hispanic white people who were not poor in the past year? -Count_Person_AmbulatoryDifficulty,the number of people who have difficulty walking;the number of people who have difficulty getting around;the number of people who have difficulty with their mobility;the number of people who have mobility issues -Count_Person_AmericanIndianAndAlaskaNativeAlone,number of american indian and alaska native people;population of american indian and alaska native people;number of people who are american indian and alaska native only;population of american indians and alaska natives -Count_Person_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,american indian and alaska native population;american indian and alaska native demographics;how many people are american indian or alaska native?;what is the number of people who are american indian or alaska native -Count_Person_AmericanIndianOrAlaskaNativeAlone,the number of people who are american indian or alaska native only;the number of people who are solely american indian or alaska native;the number of people who are exclusively american indian or alaska native;number of people who are american indian or alaska native alone -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,how many american indian or alaska native people live in adult correctional facilities?;what is the number of american indian or alaska native people in adult correctional facilities?;what is the population of american indian or alaska native people in adult correctional facilities?;how many american indian or alaska native people are incarcerated? -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,number of american indian or alaska native students living in college or university student housing;number of american indian or alaska native students living on campus;number of american indian or alaska native students living in dormitories;number of american indian or alaska native students living in residence halls -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,"number of american indian or alaska native people living in group quarters;number of american indian or alaska native people living in group quarters, excluding those living in households;the number of american indians or alaska natives living in group quarters;the number of american indians or alaska natives living in group quarters, excluding those living in nursing homes, hospitals, or other long-term care facilities" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,number of american indian or alaska native people living in institutional settings;number of american indian or alaska native people living in group living arrangements;number of american indian or alaska native people living in group care settings;number of american indian or alaska native people living in group quarters or institutionalized -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,"number of american indian or alaska native people living in group quarters that are not hospitals, prisons, or nursing homes;number of american indian or alaska native people living in group quarters that are not government-run facilities;number of american indian or alaska native people living in group quarters that are not run by the government;number of american indian or alaska native people living in group quarters other than nursing homes, hospitals, or correctional facilities" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,how many american indian or alaska native people live in nursing facilities?;what is the number of american indian or alaska native people who live in nursing facilities?;how many american indian or alaska native people are in nursing facilities?;what is the number of american indian or alaska native people who are in nursing facilities? -Count_Person_AsianAlone,the population of people who identify as asian alone -Count_Person_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"the number of people who identify as asian alone, or in combination with one or more other races;the number of people who are of asian descent;number of people who identify as asian in combination with one or more other races;how many people in the united states are of asian descent?" -Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,the number of asian people living in adult correctional facilities;the number of asian americans in adult correctional facilities;the number of asian people in jails and prisons;the number of asian americans in jails and prisons -Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,the number of asian people living in college or university student housing;the number of asian students living in college or university dormitories;the number of asian students living in college or university residence halls;the number of asian students living in college or university housing -Count_Person_AsianAlone_ResidesInGroupQuarters,number of asian people living in group quarters;number of asian people living in group homes;how many asian people live in group quarters?;what is the number of asian people who live in group quarters? -Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,"number of asian people living in institutions;number of asian people living in group quarters or institutions;the number of asian people who live in institutional settings;the number of asian people who live in group quarters, such as nursing homes, prisons, and mental hospitals" -Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,"the number of people who are asian alone and live in noninstitutionalized group quarters;how many people who are asian alone live in noninstitutionalized group quarters;the population of people who are asian alone and live in noninstitutionalized group quarters;the number of people who are asian alone and live in group quarters that are not hospitals, prisons, or nursing homes" -Count_Person_AsianAlone_ResidesInNursingFacilities,number of asian people living in nursing facilities;number of asian people who live in nursing homes;number of asian people who reside in nursing facilities;number of asian people who are in nursing homes -Count_Person_AsianOrPacificIslander,how many people are asian or pacific islander;the number of asian or pacific islanders;the population of asian or pacific islanders;the number of people who identify as asian or pacific islander -Count_Person_BelowPovertyLevelInThePast12Months,2 the number of people who were below the poverty line in the past 12 months;5 the number of people who were experiencing financial hardship in the past 12 months;the number of people who were below the poverty line in the past 12 months;the number of people living below the poverty line in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone, -Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone, -Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander alone people who were below the poverty level in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,number of people below the poverty line in the past 12 months who are some other race alone;the number of people who were below the poverty level in the past 12 months and who identified as some other race alone;the number of people who are below the poverty level and are of some other race alone in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,how many people are below the poverty line and are two or more races;how many people are below the poverty line and identify as two or more races;number of people who are below the poverty line and identify as two or more races in the past 12 months;number of people who are below the poverty line and identify with multiple races in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,number of white people with a household income below the poverty line in the past 12 months;number of white people with a household income below the poverty threshold in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,the number of people who are white and not hispanic or latino and who were below the poverty level in the past 12 months;the number of people who are white and not hispanic or latino and who had an income below the poverty line in the past 12 months;number of white alone not hispanic or latino people with a below poverty level income in the past 12 months;number of white alone not hispanic or latino people living below the poverty line in the past 12 months -Count_Person_BlackOrAfricanAmericanAlone,number of people who are black or african american alone;the number of black or african american residents -Count_Person_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,black or african american population;population of black or african americans;number of people who are black or african american;how many people are black or african american? -Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,the number of black or african american people in adult correctional facilities;the number of black or african american people incarcerated in adult correctional facilities;the number of black or african american people who are in prison or jail;the number of black or african american people who are incarcerated -Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,number of black or african american college students living in student housing;number of black or african american students living in college dormitories;number of black or african american students living in college residence halls;number of black or african american students living in college housing -Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,"number of black or african american people living in group quarters;number of black or african american people living in group quarters, not in families;number of black or african american people in group quarters;number of black or african american people residing in group quarters" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,number of black or african americans institutionalized in group quarters;number of black or african americans institutionalized;number of black or african american people institutionalized;number of black or african american people in group quarters or institutions -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,"number of black or african americans living in non-institutional group quarters;number of black or african americans living in group quarters that are not institutions;number of black or african americans living in group quarters that are not hospitals, prisons, or nursing homes;number of black or african americans living in group quarters that are not government-run facilities" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,how many black or african american people live in nursing homes?;what is the number of black or african american people living in nursing homes?;what is the population of black or african american people living in nursing homes?;how many black or african american people are in nursing homes? -Count_Person_BornInOtherStateInTheUnitedStates,people born in other states in the us;people born outside of their home state in the us;people born in the us but not in the state they currently live in;number of people born in other states in the united states -Count_Person_BornInStateOfResidence,number of people born in a state who live in that state;number of residents of a state who were born in that state;number of people who live in the state where they were born;number of people who were born in a state and still live there -Count_Person_Civilian_Employed,"the percentage of civilians aged 16 years or more who are employed;the employment rate of civilians aged 16 years or more;the number of civilians aged 16 years or more who are employed, as a percentage of the total number of civilians aged 16 years or more;the proportion of civilians aged 16 years or more who are employed" -Count_Person_Civilian_Employed_Female,women who are 16 years old or older and are employed as civilians;civilian women who are 16 years old or older and have a job;females who are 16 years old or older and are employed in the civilian sector;women who are 16 years old or older and are working in the civilian workforce -Count_Person_Civilian_Employed_Female_FullTimeYearRoundWorker,"16-year-old full-time, year-round female civilian employees;female civilian employees who are 16 years old and work full-time, year-round;16-year-old female employees who work full-time, year-round;female civilian employees who are 16 years old and work full-time" -Count_Person_Civilian_Employed_FullTimeYearRoundWorker,"full-time, year-round workers aged 16 years or older;people aged 16 years or older who are employed full-time, year-round;the number of people aged 16 years or older who are employed full-time, year-round;the percentage of people aged 16 years or older who are employed full-time, year-round" -Count_Person_Civilian_Employed_Male,male civilians aged 16 or older with jobs -Count_Person_Civilian_Employed_Male_FullTimeYearRoundWorker,male civilian workers who are employed full-time and year-round and are 16 years of age or older;male civilian workers who are employed full-time and year-round and are aged 16 or over;male civilian workers who are employed full-time and year-round and are aged 16 and up;male civilian workers who are employed full-time and year-round and are aged 16 and older -Count_Person_Civilian_Employed_ResidesInCollegeOrUniversityStudentHousing,"the number of people aged 16 or older who are civilians, employed, and in the labor force, and who live in college or university student housing;the number of people who are 16 years or older, not in the military, and who are working or looking for work, and who live in college or university student housing;the number of people aged 16 or older who are civilians, employed, and in the labor force who live in college or university student housing;the number of people aged 16 or older who are civilians, employed, and in the labor force who live in dormitories or other student housing on a college or university campus" -Count_Person_Civilian_Employed_ResidesInGroupQuarters,people aged 16 and over who are employed and live in group quarters;people aged 16 or older who are employed and live in group quarters -Count_Person_Civilian_Employed_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_Civilian_FamilyHousehold_NonInstitutionalized,households that are not institutionalized and are made up of family members;households that are not institutionalized and are made up of people who are living together as a family;civilian households that are not institutionalized and are made up of family members;civilian households that are not institutionalized and are made up of people who are related to each other -Count_Person_Civilian_Female_NonInstitutionalized,number of non-institutionalized females;number of civilian females who are not institutionalized;number of females who are not institutionalized and are civilians;number of non-institutionalized civilians who are female -Count_Person_Civilian_InLaborForce,people aged 16 or older who are in the labor force;people aged 16 or over who are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthAfrica,the share of foreign-born civilians in africa aged 16 years or more who are part of the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthAfrica_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,the percentage of foreign-born civilians in africa aged 16 years or more who are in the labor force;the proportion of foreign-born civilians in africa aged 16 years or more who are in the labor force;the proportion of foreign-born civilians in africa aged 16 years or more who are economically active;the percentage of foreign-born civilians in africa aged 16 years or more who are part of the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthAsia,foreign-born asian civilians aged 16 years old in the labor force;asian civilians born outside the us who are 16 years old and working;asian foreign-born civilians aged 16 and older in the labor force;asian foreign-born civilians aged 16 and older who are part of the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthAsia_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized, -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthCaribbean,labor force participation rate of foreign-born caribbeans aged 16 and over;percentage of foreign-born caribbeans aged 16 and over in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthCaribbean_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,the number of caribbean-born people who are participating in the labor force;caribbean-born civilians aged 16 or older in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,number of people 16 years or older who are civilians and in the labor force and were born in central america but not mexico;number of central american immigrants who are 16 years or older and are civilians and in the labor force;the number of people aged 16 or older who are civilians and in the labor force and were born in central america but not mexico;the number of people aged 16 or older who are civilians and in the labor force and are foreign-born from central america but not mexico -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,central american-born civilians aged 16 or older who are part of the labor force;central american foreign-born civilians aged 16 and older who are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthEasternAsia,people from eastern asia who are not us citizens and are 16 years old or older who are working or looking for work;people from eastern asia who are not us citizens and are of working age who are in the workforce;people from eastern asia who are not us citizens and are of working age who are participating in the labor force;foreign-born people in eastern asia who are 16 years or older and are either working or looking for work -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthEasternAsia_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,eastern asian foreign-born civilians aged 6 years or more in the labor force;foreign-born civilians in eastern asia who are at least 6 years old and in the labor force;foreign-born civilians in eastern asia who are old enough to work and are working;foreign-born civilians in eastern asia who are of working age and are working or looking for work -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthEurope,foreign-born civilians in europe who are 16 years old or older and are in the labor force;foreign-born civilians in europe aged 16 or older who are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthEurope_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized, -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthLatinAmerica,latin american foreign-born civilians aged 16 years or older in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthLatinAmerica_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,latin american immigrants who are not institutionalized and are working;latin american immigrants who are not institutionalized and are employed -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthMexico, -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthMexico_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,"the proportion of the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and are not us citizens" -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthNorthamerica,north american civilians aged 16 years old who were born in other countries and are working;foreign-born north american civilians aged 16 years old who are working;north american civilians born outside of the country who are 16 years old and working;north american civilians who were born in another country and are 16 years old and employed -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthNorthamerica_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,north american foreign-born civilians aged 16 or older in the labor force;foreign-born civilians in north america aged 16 or older who are in the workforce;foreign-born civilians in north america aged 16 years or more who are in the labor force;civilians in north america who were born outside the country and are aged 16 years or more and are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"the number of people who are 16 years old or older, who are civilians, who are in the labor force, and who were born in northern western europe;the number of people who are 16 years old or older, who are not in the military, who are working or looking for work, and who were born in northern western europe;the number of people who are of working age, who are not in the military, who are working or looking for work, and who were born in northern western europe;the number of people who are of working age, who are civilians, who are working or looking for work, and who were born in northern western europe" -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,"fraction of the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and foreign born from northern western europe;the percentage of the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and foreign born from northern western europe;the proportion of the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and foreign born from northern western europe;the share of the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and foreign born from northern western europe" -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthOceania,civilians in oceania who were born outside of the country and are 16 years of age or older and are working or looking for work -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthOceania_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,the percentage of foreign-born civilians aged 16 years or more in oceania who are in the labor force;the labor force participation rate of foreign-born civilians aged 16 years or more in oceania;the proportion of foreign-born civilians aged 16 years or more in oceania who are employed or unemployed;the percentage of foreign-born civilians aged 16 years or more in oceania who are working or looking for work -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthCentralAsia,"the percentage of foreign-born civilians aged 16 years or more who are in the labor force in south central asia;the labor force participation rate of foreign-born civilians aged 16 years or more in south central asia;the number of foreign-born civilians aged 16 years or more who are either employed or unemployed, divided by the total number of foreign-born civilians aged 16 years or more in south central asia;foreign-born south central asian civilians aged 16 or older in the labor force" -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthCentralAsia_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,what percentage of south central asian immigrants are in the labor force;what is the labor force participation rate of south central asian immigrants;what proportion of south central asian immigrants are employed;what percentage of south central asian immigrants are working -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthEasternAsia,the share of foreign-born civilians in southeast asia aged 16 years or older who are economically active;the percentage of foreign-born civilians in south eastern asia aged 16 years or more who are in the labor force;the share of foreign-born civilians in south eastern asia aged 16 years or more who are economically active -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthEasternAsia_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,the number of foreign-born people in south east asia who are part of the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthamerica,south america's foreign-born civilian labor force aged 16 years or more;south america's civilian labor force aged 16 years or more that is foreign-born;south america's foreign-born civilian workforce;south american labor force participation by foreign-born civilians aged 16 years or more -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthamerica_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,south american foreign-born civilians aged 16 years or older who are in the labor force;south american civilians aged 16 years or older who are foreign-born and in the labor force;south american civilians aged 16 years or older who are in the labor force and foreign-born;foreign-born south american civilians aged 16 years or older who are part of the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthernEasternEurope,foreign-born civilians aged 16 years or more in southern eastern europe who are in the labor force;foreign-born civilians in southern eastern europe aged 16 or over who are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,"the percentage of the civilian non-institutionalized population that is 16 years or older, civilian, in the labor force, and foreign born from southern eastern europe;the proportion of the civilian non-institutionalized population that is 16 years or older, civilian, in the labor force, and foreign born from southern eastern europe;the share of the civilian non-institutionalized population that is 16 years or older, civilian, in the labor force, and foreign born from southern eastern europe;the number of people in the civilian non-institutionalized population who are 16 years or older, civilian, in the labor force, and foreign born from southern eastern europe, divided by the total number of people in the civilian non-institutionalized population" -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthWesternAsia,foreign-born civilians aged 16 years or more from western asia in the labor force;foreign-born civilians aged 16 years or older from western asia who are in the labor market;foreign-born civilians aged 16 years or more in western asia who are in the labor force;foreign-born western asian civilians aged 16 or older who are in the labor force -Count_Person_Civilian_InLaborForce_ForeignBorn_PlaceOfBirthWesternAsia_AsAFractionOf_Count_Person_Civilian_NonInstitutionalized,the percentage of the foreign-born civilian population in western asia aged 16 years or older who are in the labor force;the share of the foreign-born civilian population in western asia aged 16 years or older who are employed;the percentage of the foreign-born civilian population in western asia aged 16 years or older who are part of the workforce;the percentage of foreign-born civilians in western asia aged 16 years or more who are in the labor force -Count_Person_Civilian_InLaborForce_ResidesInCollegeOrUniversityStudentHousing, -Count_Person_Civilian_InLaborForce_ResidesInGroupQuarters,"people aged 16 and over who are in the labor force and live in group quarters, such as dormitories, hotels, prisons, or other group living arrangements;people aged 16 or older who are in the labor force and live in group quarters, such as dormitories, barracks, hospitals, prisons, or other group quarters;civilians aged 16 years or older who are in the labor force and live in group quarters" -Count_Person_Civilian_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,foreign-born civilians aged 16 years who are employed;foreign-born civilians aged 16 years who have jobs;foreign-born civilians aged 16 years who are working;foreign-born civilians aged 16 years who are in the workforce -Count_Person_Civilian_Male_NonInstitutionalized,number of civilian men who are not institutionalized;number of non-institutionalized male civilians;number of male civilians who are not institutionalized or incarcerated;number of male civilians who are not institutionalized or in jail -Count_Person_Civilian_MarriedCoupleFamilyHousehold_NonInstitutionalized,households with married couples who are not institutionalized;households with married couples who are not living in institutions;households with married couples who are not in the military;non-institutionalized civilian married-couple family households -Count_Person_Civilian_NoDisability_NonInstitutionalized,number of able-bodied civilians who are not institutionalized;number of non-disabled civilians who are not institutionalized;number of civilians with no disabilities who are not institutionalized;number of civilians who are not disabled and not institutionalized -Count_Person_Civilian_NonInstitutionalized,civilians who are not institutionalized;people who are not institutionalized;people who are not institutionalized or incarcerated;civilians who are not living in an institution -Count_Person_Civilian_NonInstitutionalized_1.00OrLessRatioToPovertyLine,people who are not institutionalized and whose income is 1 or less times the poverty line;people who are not institutionalized and whose income is less than the poverty line;people who are not institutionalized and whose income is equal to or less than the poverty line;people who are not institutionalized and whose income is not more than the poverty line -Count_Person_Civilian_NonInstitutionalized_1.38OrLessRatioToPovertyLine, -Count_Person_Civilian_NonInstitutionalized_1.38OrMoreRatioToPovertyLine, -Count_Person_Civilian_NonInstitutionalized_1.38To1.99RatioToPovertyLine, -Count_Person_Civilian_NonInstitutionalized_1.38To3.99RatioToPovertyLine, -Count_Person_Civilian_NonInstitutionalized_2.00OrMoreRatioToPovertyLine,civilians not living in institutions with a ratio of 2 to the poverty line;non-institutionalized civilians with a poverty line ratio of 2;civilians not institutionalized with a poverty line ratio of 2;civilians not institutionalized with a poverty line of 2 -Count_Person_Civilian_NonInstitutionalized_2.00To3.99RatioToPovertyLine,people who are not institutionalized and have a ratio of 2 to 40 to the poverty line;people who are not institutionalized and have a ratio of 2 to 40 times the poverty line;people who are not institutionalized and have a ratio of 2 to 40 times the poverty level;people who are not institutionalized and have a ratio of 2 to 40 times the poverty threshold -Count_Person_Civilian_NonInstitutionalized_4.00OrMoreRatioToPovertyLine,people who are not institutionalized and have a ratio of 4 or more to the poverty line;people who are not institutionalized and have a ratio of income to poverty line of 4 or more;civilians who are not institutionalized and have an income that is 4 times the poverty line or more -Count_Person_Civilian_NonInstitutionalized_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native civilian population not living in institutions;american indian or alaska native population living in the community;american indian or alaska native population not institutionalized;american indian or alaska native population living outside of institutions -Count_Person_Civilian_NonInstitutionalized_AsianAlone,civilians of asian descent who are not institutionalized;people of asian descent who are not institutionalized;non-institutionalized asian civilians;asian civilians who are not institutionalized -Count_Person_Civilian_NonInstitutionalized_BlackOrAfricanAmericanAlone,"non-institutionalized african american civilians;african american civilians who are not institutionalized;african american civilians who are not in hospitals, prisons, or other institutions;african american civilians who are living in the community" -Count_Person_Civilian_NonInstitutionalized_ForeignBorn,"foreign-born civilians who are not institutionalized;civilians who were born outside of the united states and are not institutionalized;civilians who were born in another country and are not living in a nursing home, prison, or other institution;civilians who were born in another country and are not in a hospital or other medical facility" -Count_Person_Civilian_NonInstitutionalized_HispanicOrLatino,hispanic non-institutionalized civilians;hispanic civilians who are not institutionalized;hispanic people who are not institutionalized;hispanic people who are not in a mental institution -Count_Person_Civilian_NonInstitutionalized_Native,native civilians who are not institutionalized;non-institutionalized native people;native people who are not institutionalized;civilians who are native and not institutionalized -Count_Person_Civilian_NonInstitutionalized_NativeHawaiianOrOtherPacificIslanderAlone,people who are native hawaiian or other pacific islander and not institutionalized;native hawaiian or other pacific islander people who are not institutionalized;the native hawaiian or other pacific islander population that is not institutionalized;people who are native hawaiian or other pacific islander and not living in an institution -Count_Person_Civilian_NonInstitutionalized_OneRace,non-institutionalized uniracial civilians;civilians who are not institutionalized and who are of one race -Count_Person_Civilian_NonInstitutionalized_PovertyStatusDetermined,people who are not institutionalized and have had their income and assets assessed;people who are not institutionalized and have their poverty status determined;non-institutionalized civilians with determined poverty status;civilians who are not institutionalized and have their poverty status identified -Count_Person_Civilian_NonInstitutionalized_ResidesInHousehold,civilian households that are not institutionalized;households of non-institutionalized people;households of civilians who are not institutionalized;households of non-institutionalized civilians -Count_Person_Civilian_NonInstitutionalized_SomeOtherRaceAlone,population of people of other races who are not institutionalized;population of people of other races who are not institutionalized in any way;other race population not institutionalized;population of non-institutionalized people of other races -Count_Person_Civilian_NonInstitutionalized_TwoOrMoreRaces,people who are not institutionalized and are multiracial;civilians who are not institutionalized and are multiracial;people who are not institutionalized and identify as multiracial -Count_Person_Civilian_NonInstitutionalized_WhiteAlone,non-institutionalized white civilians;civilians of the white race who are not institutionalized;white people who are not institutionalized;civilians who are white and not institutionalized -Count_Person_Civilian_NonInstitutionalized_WhiteAloneNotHispanicOrLatino,"white non-hispanic civilians;non-hispanic white civilians;civilians who are white and not hispanic;non-hispanic, white civilians" -Count_Person_Civilian_NonfamilyHouseholdAndOtherLivingArrangements_NonInstitutionalized,people living in non-traditional living arrangements -Count_Person_Civilian_NotAUSCitizen_NonInstitutionalized_ForeignBorn,foreign-born population not living in institutions;population of foreign-born people not living in institutions;people born outside the united states who are not living in institutions;people born in other countries who are not living in institutions -Count_Person_Civilian_OtherFamilyHousehold_NonInstitutionalized,people who are not institutionalized and live in family households;civilians who are not institutionalized and live in family households;people who are not institutionalized and live with their families;civilians who are not institutionalized and live with their families -Count_Person_Civilian_ResidesInHousehold,civilians -Count_Person_Civilian_SingleFatherFamilyHousehold_NonInstitutionalized,families with a single father;households with a single father as the head of household;families with a single father as the head of the family;households with a single father and no other adults -Count_Person_Civilian_SingleMotherFamilyHousehold_NonInstitutionalized,a single mother living with her children in a non-institutional setting;a single mother and her children living in a non-institutional setting;a household consisting of a single mother and her children who are not institutionalized;a household where the mother is the only parent and the children are not institutionalized -Count_Person_Civilian_USCitizenByNaturalization_NonInstitutionalized_ForeignBorn, -Count_Person_Civilian_Unemployed,the number of unemployed people aged 16 and over who are in the labor force;number of people 16 years or older who are unemployed but are ready to work;number of unemployed civilians aged 16 or older who are part of the labor force;number of people 16 years or older who are unemployed and in the labor force -Count_Person_Civilian_Unemployed_ResidesInCollegeOrUniversityStudentHousing,unemployed people aged 16 or older in the labor force living in college or university student housing;people aged 16 or older who are unemployed and in the labor force and live in college or university student housing;unemployed people aged 16 or older who are part of the labor force and live in college or university student housing;people aged 16 or older who are unemployed and in the labor force and are living in college or university student housing -Count_Person_Civilian_Unemployed_ResidesInGroupQuarters,"the number of people aged 16 or older who are unemployed and living in group quarters;the number of people who are unemployed, 16 years of age or older, and in the labor force, who are living in group quarters;the number of people who are unemployed, aged 16 years or more, and in the labor force, who are living in group quarters;the number of people who are not working, aged 16 years or more, and who are looking for work, who are living in group quarters" -Count_Person_Civilian_Unemployed_ResidesInNoninstitutionalizedGroupQuarters,"people who are 16 years of age or older, are not institutionalized, are in the labor force, and are unemployed;people who are 16 years of age or older, are not institutionalized, are employed or unemployed, and are living in a place where people live together for a common purpose, such as a college dorm or a homeless shelter;unemployed people aged 16 or older who are in the labor force and living in non-institutional group quarters;people aged 16 or older who are unemployed and in the labor force but living in group homes, dormitories, or other non-institutional settings" -Count_Person_Civilian_WithDisability_NonInstitutionalized,number of non-institutionalized civilians with disabilities;number of civilians with disabilities who are not institutionalized;number of civilians with disabilities who live in the community;number of civilians with disabilities who are not in nursing homes or other institutions -Count_Person_CognitiveDifficulty,how many people have cognitive difficulty?;what is the number of people with cognitive difficulty?;how many people suffer from cognitive difficulty?;how many people experience cognitive difficulty? -Count_Person_CorrectionalFacilityLocation_OutOfState,population of people who are not from the state they are currently living in and who are incarcerated;number of people who are not from the state they are currently living in and who are in prison or jail;number of people who are incarcerated and who are not from the state they are currently living in;total number of people who are incarcerated and who are not from the state they are currently living in -Count_Person_DetailedEnrolledInCollegeUndergraduateYears,number of students enrolled in undergraduate studies at colleges and universities;sum of all students currently enrolled in undergraduate programs at colleges and universities;total number of people who are currently enrolled in undergraduate programs at colleges and universities;number of people enrolled in college undergraduate programs -Count_Person_DetailedEnrolledInGrade1,first grade students;students in first grade;children in first grade;1 students in the first grade -Count_Person_DetailedEnrolledInGrade10,number of students in grade 10;total number of students enrolled in grade 10;enrollment in grade 10;grade 10 student population -Count_Person_DetailedEnrolledInGrade11,number of students in grade 11;total number of students in grade 11;grade 11 enrollment;1 number of students enrolled in grade 11 -Count_Person_DetailedEnrolledInGrade12,number of students enrolled in grade 12;total number of students in grade 12;enrollment in grade 12;student population in grade 12 -Count_Person_DetailedEnrolledInGrade2, -Count_Person_DetailedEnrolledInGrade3,third grade enrollment;number of students in grade 3;number of people enrolled in grade 3;number of people in grade 3 -Count_Person_DetailedEnrolledInGrade4,number of students in grade 4;number of kids enrolled in grade 4;number of pupils in grade 4;number of students enrolled in the fourth grade -Count_Person_DetailedEnrolledInGrade5,fifth grade enrollment;number of people enrolled in grade 5;number of people in grade 5;fifth-grade enrollment -Count_Person_DetailedEnrolledInGrade6,number of students in grade 6;number of people enrolled in grade 6;number of people in grade 6;number of people enrolled in the sixth grade -Count_Person_DetailedEnrolledInGrade7,number of students enrolled in grade 7;total number of students enrolled in grade 7;number of students in grade 7;total number of students in grade 7 -Count_Person_DetailedEnrolledInGrade8,eighth graders;eighth-grade students;students in the eighth grade;eighth-year-olds -Count_Person_DetailedEnrolledInGrade9,ninth grade enrollment;3 ninth grade enrollment;number of students in grade 9;number of students enrolled in grade 9 -Count_Person_DetailedEnrolledInKindergarten,number of children enrolled in kindergarten;number of kindergarten students;number of children attending kindergarten;total number of kindergarten students -Count_Person_DetailedEnrolledInNurserySchoolPreschool,number of children enrolled in nursery school;number of nursery school students;nursery school enrollment;number of children attending nursery school -Count_Person_DetailedGraduateOrProfessionalSchool,1 number of people enrolled in graduate or professional schools;2 total number of students in graduate or professional programs;3 size of the graduate or professional school population;number of people enrolled in graduate or professional schools -Count_Person_DetailedHighSchool,high school enrollment;the headcount of high school students;the student population of high school;number of people enrolled in high school -Count_Person_DetailedMiddleSchool,the number of students who attend middle school;the number of people who are in middle school;the number of people who are in the middle school age group;the number of students in middle school -Count_Person_DetailedPrimarySchool, -Count_Person_DidNotWork,people aged 16 to 64 who did not work;people aged 16 to 64 who were not employed;people aged 16 to 64 who were unemployed;people aged 16 to 64 who were not in the labor force -Count_Person_Divorced,the percentage of people in a population who are divorced;the number of people in a population who have been divorced at least once;the number of people in a population who are currently divorced;the number of people in a population who have ever been divorced -Count_Person_DivorcedOrSeparated,population of people who are divorced or separated;people who are not married and have been divorced or separated;population of divorced or separated people in the united states;share of divorced or separated people in the united states -Count_Person_DivorcedOrSeparated_DifferentHouseAbroad,people aged 15 years or older who were separated in different houses abroad;people aged 15 or older who were separated in different houses in other countries;people aged 15 or older who were separated in different households outside of their home country;people aged 15 or older who were separated in different dwellings outside of their home country -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountyDifferentState,people who are divorced or separated and are 15 years of age or older and live in different houses in different states and counties;people who are divorced or separated and are 15 years of age or older and live apart in different states and counties;people who are divorced or separated and are 15 years of age or older and reside in different households in different states and counties;people who are divorced or separated and are 15 years of age or older and live in different domiciles in different states and counties -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountySameState,people who are divorced and live in a different house in a different county in the same state;people who are divorced and live in a different county in the same state than their ex-spouse;people who are divorced and live in a different house than their ex-spouse in the same state;people who are divorced and live in a different county and house than their ex-spouse in the same state -Count_Person_DivorcedOrSeparated_DifferentHouseInSameCounty,number of people aged 15 years or more who are divorced or separated and living in different houses in the same county;number of people aged 15 years or more who are divorced or separated and living apart in the same county;number of people aged 15 years or more who are divorced or separated and living in different households in the same county;number of people aged 15 years or more who are divorced or separated and living in different homes in the same county -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthAfrica,the number of divorced foreign-born people in africa aged 15 years or more;the percentage of divorced foreign-born people in africa aged 15 years or more;the proportion of divorced foreign-born people in africa aged 15 years or more;the share of divorced foreign-born people in africa aged 15 years or more -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthAsia,"the percentage of asian people who were born in another country and are now divorced or separated, aged 15 years or older;the proportion of asian people who were born in another country and are now divorced or separated, aged 15 years or older;the percentage of asian people who were born in another country and are now divorced or separated, aged 15 years or older, out of 100;the number of asian people who were born in another country and are now divorced or separated, aged 15 years or more" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthCaribbean,"the number of people born in the caribbean who are aged 15 years or more and are divorced or separated;the proportion of the caribbean-born population aged 15 years or more who are divorced or separated;the percentage of the caribbean-born population aged 15 years or more who are divorced or separated;the number of people who were born in the caribbean and are now living in the us, who are 15 years old or older, and who are divorced or separated" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american foreign-born people aged 15 and older who are divorced or separated;people from central america who were born in another country and are now divorced or separated;people from central america who were born outside of the united states and are aged 15 and older and are divorced or separated;central american foreign borns aged 15 and older who are divorced or separated -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthEasternAsia,eastern asian foreign-born population above 15 years old who are divorced or separated;population of eastern asian foreign-born people above 15 years old who are divorced or separated;number of people born in eastern asia who live in the united states and are divorced or separated and over 15 years old -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthEurope,the population of europe aged 15 years or more who are divorced and foreign-born;the number of people in europe aged 15 years or more who are divorced and foreign-born;the percentage of the population of europe aged 15 years or more who are divorced and foreign-born;the number of divorced foreign-born people in europe aged 15 years or more -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthLatinAmerica,"latin american foreign-born population who are divorced and 15 years of age or older;people who were born in latin america, are divorced, and are 15 years of age or older;the number of people who were born in latin america, are divorced, and are 15 years of age or older;the divorced population of latin american foreign-born people who are 15 years of age or older" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthMexico,"number of people who were divorced and were born in mexico and are 15 years of age or older;number of people who were born in mexico, are 15 years of age or older, and have been divorced;number of people who were divorced and were born in mexico and are at least 15 years old;number of people who were born in mexico, are at least 15 years old, and have been divorced" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthNorthamerica,foreign-born population in north america who have been divorced and are 15 years of age or older;north american population of foreign-born divorcees who are 15 years of age or older;divorced foreign-born people in north america who are 15 years of age or older;foreign-born people in north america who have been divorced and are at least 15 years old -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"foreign-born people who are divorced and aged 15 years or more in northern western europe;the number of divorced foreign-born people aged 15 years or more in northern western europe;the percentage of divorced foreign-born people aged 15 years or more in northern western europe;divorced foreign-born people in northern western europe aged 15 years or more, as a percentage of the total population" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthOceania,people who were born in oceania and have been divorced for 15 years or more;people who were born in oceania and have been divorced for more than 15 years;people who were born in oceania and have been divorced for at least 15 years;people who were born in oceania and have been divorced for a period of 15 years or more -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthSouthCentralAsia,"the percentage of the foreign-born population in south central asia aged 15 years or more who are divorced or separated;the proportion of the foreign-born population in south central asia aged 15 years or more who are divorced or separated;the share of the foreign-born population in south central asia aged 15 years or more who are divorced or separated;the number of foreign-born people in south central asia aged 15 years or more who are divorced or separated, expressed as a percentage of the total foreign-born population in that age group" -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthSouthEasternAsia,southeast asian foreign-born population aged 15 years or older who are divorced;foreign-born population in southeast asia aged 15 years or older who are divorced;divorced foreign-born population in southeast asia aged 15 years or older;population of southeast asian foreign-born people aged 15 years or older who are divorced -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthSouthamerica,the number of divorced foreign-born people in south america aged 15 years or more;the percentage of divorced foreign-born people in south america aged 15 years or more;the proportion of divorced foreign-born people in south america aged 15 years or more;the incidence of divorce among foreign-born people in south america aged 15 years or more -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the number of divorced foreign-born people in southern eastern europe aged 15 years or more;the percentage of divorced foreign-born people in southern eastern europe aged 15 years or more;the proportion of divorced foreign-born people in southern eastern europe aged 15 years or more;the rate of divorce among foreign-born people in southern eastern europe aged 15 years or more -Count_Person_DivorcedOrSeparated_ForeignBorn_PlaceOfBirthWesternAsia,"the percentage of people who were born in western asia and are now living in another country, who are over the age of 15, and who are divorced or separated;the percentage of people who were born in western asia and are now living in another country, who are above the age of 15, and who are divorced or separated;the number of people who were born in western asia and are now living in another country, who are over the age of 15, and who are divorced or separated;the percentage of the western asia foreign-born population who are over the age of 15 and who are divorced or separated" -Count_Person_Divorced_ResidesInAdultCorrectionalFacilities,people who are divorced and are 15 years old or older in adult correctional facilities;the number of divorced people aged 15 years or older in adult correctional facilities;the percentage of divorced people aged 15 years or older in adult correctional facilities;the proportion of divorced people aged 15 years or older in adult correctional facilities -Count_Person_Divorced_ResidesInCollegeOrUniversityStudentHousing,people who are divorced and aged 15 years or more living in college or university student housing;college or university student housing residents who are divorced and aged 15 years or more;divorced college or university student housing residents aged 15 years or more;college or university student housing residents aged 15 years or more who are divorced -Count_Person_Divorced_ResidesInGroupQuarters,the number of people aged 15 or older who are divorced and living in group quarters;the number of people aged 15 or older who are divorced and living in group facilities;the number of people aged 15 or older who are divorced and living in group settings;number of divorced people aged 15 or older living in group quarters -Count_Person_Divorced_ResidesInInstitutionalizedGroupQuarters,"people who are divorced and aged 15 or older who live in group quarters;people who are divorced and aged 15 or older living in group quarters;people who are divorced and aged 15 or older living in group quarters, such as prisons, nursing homes, and hospitals;people who are divorced and aged 15 or older who are living in group quarters" -Count_Person_Divorced_ResidesInNoninstitutionalizedGroupQuarters,"the number of divorced people aged 15 or older who are not living in institutions;the number of divorced people aged 15 or older who are living in group homes, shelters, or other non-institutional settings;people who are divorced and are 15 years old or older and are living in a group setting that is not an institution;people who are divorced and are 15 years old or older and are living in a group home, halfway house, or other type of non-institutional setting" -Count_Person_Divorced_ResidesInNursingFacilities,people who are divorced and over 15 years old in nursing homes;the number of people who are divorced and over 15 years old in nursing homes;the percentage of people who are divorced and over 15 years old in nursing homes;the proportion of people who are divorced and over 15 years old in nursing homes -Count_Person_EducationalAttainment10ThGrade,number of people with a 10th grade education;percentage of people with a 10th grade education;share of people with a 10th grade education;proportion of people with a 10th grade education -Count_Person_EducationalAttainment11ThGrade,11th graders;students in the 11th grade;12th graders;11th and 12th graders -Count_Person_EducationalAttainment12ThGradeNoDiploma,12th graders who did not earn a diploma -Count_Person_EducationalAttainment1StGrade,1 the number of students in grade 1;4 the student population in grade 1;number of first-grade students;first grade population -Count_Person_EducationalAttainment2NdGrade,the number of people in the second grade;the second grade population;the second grade cohort;the second grade school population -Count_Person_EducationalAttainment3RdGrade,number of third graders;how many third graders are there;how many children are in third grade;third grade population -Count_Person_EducationalAttainment4ThGrade,fourth graders;4th graders;students in the fourth grade;children in the fourth grade -Count_Person_EducationalAttainment5ThGrade,how many students are in the fifth grade?;what is the number of students in the fifth grade?;what is the student body size for fifth grade?;the number of students in 5th grade -Count_Person_EducationalAttainment6ThGrade,6th grade population;number of students in 6th grade;6th grade headcount;number of 6th graders -Count_Person_EducationalAttainment7ThGrade,number of 7th graders;7th grade population;what is the number of 7th grade students?;total number of 7th graders -Count_Person_EducationalAttainment8ThGrade,8th grade population;number of students in 8th grade;eighth grade population;number of students in the 8th grade -Count_Person_EducationalAttainment9ThGrade,number of 9th graders;9th grade population;9th grade school population;how many 9th graders are there -Count_Person_EducationalAttainmentAssociatesDegree,proportion of people with an associate's degree;prevalence of people with an associate's degree -Count_Person_EducationalAttainmentBachelorsDegree,how many people have a bachelor's degree?;what is the number of people with a bachelor's degree?;what is the percentage of people with a bachelor's degree?;how many people have completed a bachelor's degree? -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,number of women with a bachelor's degree or higher who divorced in the past year;number of female college graduates who divorced in the past year;number of women with a post-secondary education who divorced in the past year;number of female college-educated women who divorced in the past year -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,how many women with a bachelor's degree or higher got married in the past year?;what is the number of female college graduates who got married in the past year?;how many women with a college degree got married in the past year?;what is the number of female college graduates who tied the knot in the past year? -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_LanguageOtherThanEnglishSpokenAtHome,percentage of people aged 25 years or more with a bachelor's degree or higher who speak a language other than english;share of people aged 25 years or more with a bachelor's degree or higher who are bilingual;proportion of people aged 25 years or more with a bachelor's degree or higher who are multilingual;share of people aged 25 or older with a bachelor's degree or higher who are bilingual or multilingual -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,the number of men with a bachelor's degree or higher who divorced in the past year;the number of male college graduates who divorced in the past year;the number of men with a post-secondary education who divorced in the past year;the number of men with a college degree who divorced in the past year -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,number of men with bachelor's degrees or higher who got married in the past 12 months;number of male college graduates who got married in the past 12 months;number of men with post-secondary education who got married in the past 12 months;number of male college-educated men who got married in the past 12 months -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_OnlyEnglishSpokenAtHome,english-speaking adults 25 and older with a bachelor's degree or higher;native english speakers 25 and older with a bachelor's degree or higher;english-speaking adults aged 25 and older with a bachelor's degree or higher;native english speakers aged 25 and older with a bachelor's degree or higher -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInAdultCorrectionalFacilities,"the number of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities;the percentage of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities;the proportion of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities;the number of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities, as a percentage of the total population" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInCollegeOrUniversityStudentHousing,people aged 25 or older with a bachelor's degree or higher who live in college or university student housing;people aged 25 or older who have a bachelor's degree or higher and live in college or university dorms;people aged 25 or older who have a bachelor's degree or higher and live in college or university housing;people aged 25 or older who have a bachelor's degree or higher and live in college or university residence halls -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInGroupQuarters,percentage of people with a bachelor's degree or higher aged 25 years or older living in group quarters;number of people with a bachelor's degree or higher aged 25 years or older living in group quarters;share of people with a bachelor's degree or higher aged 25 years or older living in group quarters;proportion of people with a bachelor's degree or higher aged 25 years or older living in group quarters -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInInstitutionalizedGroupQuarters,"the number of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters;the percentage of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters;the proportion of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters;the number of people aged 25 years or older with a bachelor's degree or higher who are living in group quarters, such as prisons, nursing homes, and mental hospitals" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNoninstitutionalizedGroupQuarters,"the number of people aged 25 years or more with a bachelor's degree or higher who are not living institutionalized group quarters;the number of people aged 25 years or more with a bachelor's degree or higher who are not living in nursing homes, prisons, or other group quarters that are not considered to be permanent residences;the number of people aged 25 years or more with a bachelor's degree or higher who are living in non-institutional group quarters;percentage of people aged 25 or older with a bachelor's degree or higher living in non-institutional group quarters" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNursingFacilities,people aged 25 and over living in nursing homes with a bachelor's degree or higher;nursing home residents aged 25 and over with a bachelor's degree or higher;nursing home residents aged 25 and over who have a bachelor's degree or higher;nursing home residents aged 25 and over who are college graduates -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishOrSpanishCreoleSpokenAtHome, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishSpokenAtHome,spanish-speaking population aged 25 years or older with bachelor's degrees or higher;people who speak spanish and are 25 years old or older with bachelor's degrees or higher;the number of spanish-speaking people aged 25 years or older with bachelor's degrees or higher;the percentage of spanish-speaking people aged 25 years or older with bachelor's degrees or higher -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseAbroad,number of people aged 25 or older living abroad with a bachelor's degree;number of people aged 25 or older with a bachelor's degree living outside their home country;number of people aged 25 or older who have a bachelor's degree and are not living in their home country;number of people aged 25 or older who have a bachelor's degree and are living in a foreign country -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountyDifferentState,"prevalence of people aged 25 years or more with a bachelor's degree, by household, county, and state;the prevalence of people aged 25 years or more with a bachelor's degree, by household, county, and state" -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountySameState,number of people aged 25 or older with a bachelor's degree living in different houses in different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different houses in different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different houses and different counties in the same state -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInSameCounty,number of people aged 25 or older with a bachelor's degree living in a different house in the same county;number of people aged 25 or older with a bachelor's degree who live in a different house in the same county;number of people aged 25 or older with a bachelor's degree who live in a different household in the same county;number of people aged 25 or older with a bachelor's degree who live in a different home in the same county -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthAfrica,the number of people born in africa who are 25 years old or older and have a bachelor's degree;the percentage of people born in africa who are 25 years old or older and have a bachelor's degree;the proportion of people born in africa who are 25 years old or older and have a bachelor's degree;the share of people born in africa who are 25 years old or older and have a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthAsia, -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthCaribbean,people born in the caribbean who are 25 years old or older and have bachelor's degrees;people who were born in the caribbean and are 25 years old or older and have bachelor's degrees;people who were born in the caribbean and are at least 25 years old and have bachelor's degrees;people who were born in the caribbean and are over 25 years old and have bachelor's degrees -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people born in central america (excluding mexico) who are 25 years of age or older and have a bachelor's degree;the percentage of people born in central america (excluding mexico) who are 25 years of age or older and have a bachelor's degree;the proportion of people born in central america (excluding mexico) who are 25 years of age or older and have a bachelor's degree;the number of people born in central america (excluding mexico) who are 25 years of age or older and have a bachelor's degree, as a percentage of the total population of central america (excluding mexico)" -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthEasternAsia,people born in eastern asia who are at least 25 years old and have a bachelor's degree;people born in eastern asia who are 25+ years old and have a bachelor's degree;people born in eastern asia who are 25 years old or older and have completed a bachelor's degree;people born in eastern asia who are at least 25 years old and have completed a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthEurope,people who are foreign-born and live in europe and are 25 years old or older and have a bachelor's degree;people who are foreign-born and have a bachelor's degree and are at least 25 years old and live in europe -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthLatinAmerica,population of latin american immigrants aged 25 or less with bachelor's degrees;number of latin american immigrants aged 25 or less with bachelor's degrees;percentage of latin american immigrants aged 25 or less with bachelor's degrees;share of latin american immigrants aged 25 or less with bachelor's degrees -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthMexico,people who were born in another country and are now 25 years old or older with a bachelor's degree;foreign-born adults who are 25 years old or older and have a bachelor's degree;immigrants who are 25 years old or older and have a bachelor's degree;people who were born in another country and are now 25 years old or older with bachelor's degrees -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthNorthamerica,north american foreign-born people aged 25 or older with bachelor's degrees;people born outside of north america who are 25 or older and have bachelor's degrees;foreign-born north americans aged 25 or older with bachelor's degrees;people who were born outside of north america and are 25 or older and have bachelor's degrees -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of foreign-born people in northern western europe aged 25 or more with a bachelor's degree;number of people born outside of northern western europe who are aged 25 or more and have a bachelor's degree;number of people who are not citizens of northern western europe and are aged 25 or more and have a bachelor's degree;number of foreign nationals in northern western europe aged 25 or more with a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthOceania,people who were born in another country and are 25 years old or older and have a bachelor's degree and live in oceania;people who are not citizens of oceania and are 25 years old or older and have a bachelor's degree and live in oceania;people who are foreign-born and are 25 years old or older and have a bachelor's degree and live in oceania;people who were born in another country and are now living in oceania and are at least 25 years old and have a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthSouthCentralAsia,"number of people born in south central asia who are 25 years old or older and have a bachelor's degree;population of south central asian immigrants with bachelor's degrees who are 25 years old or older;population of south central asian immigrants aged 25 years or older with bachelor's degrees;the number of people who were born in south central asia, are 25 years old or older, and have a bachelor's degree" -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthSouthEasternAsia,the number of people born outside of south east asia who are 25 years old or older and have a bachelor's degree;the number of foreign-born people in south east asia who are 25 years old or older and have a bachelor's degree;the number of people who were born outside of south east asia but live in south east asia and are 25 years old or older and have a bachelor's degree;the number of people who are not citizens of south east asia but live in south east asia and are 25 years old or older and have a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthSouthamerica,people born in south america who are over 25 and have a bachelor's degree;south americans over 25 with a bachelor's degree;foreign-born south americans over 25 with a bachelor's degree;south americans who were born in another country and are over 25 with a bachelor's degree -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of foreign-born people in southern eastern europe aged 25 years or more with bachelor degrees;number of foreign-born people in southern eastern europe with bachelor degrees who are 25 years or older;number of people born outside of southern eastern europe who have bachelor degrees and are 25 years or older;number of people who were not born in southern eastern europe but have bachelor degrees and are 25 years or older -Count_Person_EducationalAttainmentBachelorsDegree_ForeignBorn_PlaceOfBirthWesternAsia, -Count_Person_EducationalAttainmentDoctorateDegree,the number of people who have a phd;the number of people who have earned a phd;the number of people who have a doctorate;the number of people who have a doctoral degree -Count_Person_EducationalAttainmentGedOrAlternativeCredential,people with alternative credentials;people with non-traditional credentials -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree,percentage of population with graduate or professional degrees;number of people with graduate or professional degrees;share of population with graduate or professional degrees;number of people with graduate or professional degrees as a percentage of the total population -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseAbroad,number of people aged 25 or older with a graduate degree living in different countries;number of people aged 25 or older with a graduate degree living outside of their home country;number of people aged 25 or older with a graduate degree living in foreign countries;number of people aged 25 or older with a graduate degree living abroad -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountyDifferentState,"number of people aged 25 years or more with graduate or professional degrees, by house, county, and state;number of people aged 25 years or more with graduate or professional degrees, by household, county, and state;number of people aged 25 years or more with graduate or professional degrees, by residence, county, and state;number of people aged 25 years or more with graduate or professional degrees, by domicile, county, and state" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountySameState,number of people with graduate or professional degrees aged 25 and older in different states;number of people aged 25 and older with graduate or professional degrees in different states;number of people with graduate or professional degrees in different states aged 25 and older;number of people aged 25 and older in different states who have graduate or professional degrees -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInSameCounty,"people who are 25 years or older and have a graduate or professional degree and live in a different house in the same county;people who are 25 years or older, have a graduate or professional degree, and have moved to a new house in the same county;people who are 25 years or older, have a graduate or professional degree, and have moved to a different house in the same county;1 people who are 25 years old or older, have a graduate or professional degree, and live in a different house in the same county" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthAfrica,population of foreign-born africans aged 25 or older with a graduate or professional degree;number of foreign-born africans aged 25 or older with a graduate or professional degree;percentage of foreign-born africans aged 25 or older with a graduate or professional degree;population of africa that was born in another country and is 25 years or older with a graduate or professional degree -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthAsia,a majority of asian foreign-born people aged 25 years or more have graduate or professional degrees;the majority of asian foreign-born people aged 25 years or more are college graduates;a large number of asian foreign-born people aged 25 years or more have advanced degrees;the percentage of asian foreign-born people aged 25 years or more with graduate or professional degrees is high -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthCaribbean,the population of the caribbean above 25 years old with graduate or professional degrees;the number of people in the caribbean above 25 years old with graduate or professional degrees;the percentage of the population of the caribbean above 25 years old with graduate or professional degrees;the number of people in the caribbean above 25 years old who have graduated from college or university -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people who were born in central america but now live in the united states and have a graduate or professional degree, aged 25 years or older;the number of central american immigrants in the united states who have a graduate or professional degree, aged 25 years or older;the number of people who were born in central america but now live in the united states and have completed a graduate or professional degree, aged 25 years or older;the number of central american immigrants in the united states who have completed a graduate or professional degree, aged 25 years or older" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthEasternAsia,"the number of people born in eastern asia who are 25 years old or older and have professional degrees;the population of foreign-born eastern asians aged 25 years or older with professional degrees;the number of people who were born in eastern asia, are 25 years old or older, and have professional degrees;number of people born in eastern asia who are 25 years or older and have professional degrees" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthEurope,"people who were born outside of europe and are now living in europe, who are over the age of 25, and who have graduate or professional degrees;people who were born outside of europe and are over 25 years old and have a graduate or professional degree;people who were born in other countries and live in europe and are over 25 years old and have a graduate or professional degree;people who are immigrants to europe and are over 25 years old and have a graduate or professional degree" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthLatinAmerica,latin american immigrants aged 25 or older with a graduate or professional degree;foreign-born latin americans aged 25 or older with a graduate or professional degree;immigrants from latin america who are 25 or older and have a graduate or professional degree;foreign nationals from latin america who are 25 or older and have a graduate or professional degree -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthMexico,the number of people born outside of mexico who are 25 years old or older and have a graduate or professional degree;the number of foreign-born people in mexico who are 25 years old or older and have a graduate or professional degree;the number of people who were born in another country and live in mexico who are 25 years old or older and have a graduate or professional degree;the number of immigrants in mexico who are 25 years old or older and have a graduate or professional degree -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthNorthamerica,number of foreign-born people in north america aged 25 or older with a graduate or professional degree;number of people born outside of north america who have a graduate or professional degree and are aged 25 or older;number of people who are not citizens of north america but have a graduate or professional degree and are aged 25 or older;number of people who were born in another country but live in north america and have a graduate or professional degree and are aged 25 or older -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthNorthernWesternEurope,population of north western europe aged 25 or more who were born outside of the region;people aged 25 or more in north western europe who were born in another country;people in north western europe who were born outside of the region and are aged 25 or more;people aged 25 or more in north western europe who are foreign-born -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthOceania,"the number of people who were born in another country and are now living in oceania, who are 25 years old or older, and who have a graduate or professional degree;the percentage of the population in oceania who were born in another country, are 25 years old or older, and have a graduate or professional degree;the percentage of the foreign-born population in oceania who are 25 years old or older and have a graduate or professional degree;the number of people born outside of oceania who are 25 years old or older and have a graduate or professional degree" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthSouthCentralAsia,"people who were born in south central asia and have a graduate or professional degree, aged 25 years or more;people who were born in south central asia and have completed a graduate or professional degree program, aged 25 years or more;people who were born in south central asia and have completed a master's degree, phd, or other professional degree program, aged 25 years or more;people who were born in south central asia and have a graduate or professional degree, aged 25 years or older" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthSouthEasternAsia,"the share of the foreign-born population from southeast asia who are over 25 years old and have graduate degrees;the number of people from southeast asia who were born in another country and have a graduate degree, and are over 25 years old;population of foreign-born people from southeast asia with graduate degrees who are over 25 years old;number of people who were born in southeast asia, have graduate degrees, and are over 25 years old" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthSouthamerica,number of south american immigrants over 25 with professional degrees;number of foreign-born south americans with professional degrees over 25;number of south american professionals over 25 who were born in another country;number of foreign-born south american professionals over 25 years old -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the number of foreign-born people in southern eastern europe aged 25 years or more with a graduate or professional degree;the percentage of foreign-born people in southern eastern europe aged 25 years or more with a graduate or professional degree;the proportion of foreign-born people in southern eastern europe aged 25 years or more with a graduate or professional degree;the share of foreign-born people in southern eastern europe aged 25 years or more with a graduate or professional degree -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_ForeignBorn_PlaceOfBirthWesternAsia,number of people born in western asia who are 25 years old or older and have graduate or professional degrees;number of foreign-born people from western asia with graduate or professional degrees who are 25 years old or older;population of foreign-born people from western asia aged 25 years or older with graduate or professional degrees;number of people who were born in western asia and have graduate or professional degrees and are 25 years old or older -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency,"people who have graduated from high school, or have obtained an equivalent credential;people who have completed high school, or have passed an equivalency exam;people who have graduated from high school, or have earned an equivalent credential;people who have graduated from high school, or have passed an equivalency exam" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseAbroad,"the number of people who were born in a different country and are 25 years old or older who have completed high school or have an equivalent qualification, living in different countries" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountyDifferentState,"share of people aged 25 or older who have graduated from high school, by county;people who graduated from high school and are 25 years old or older, living in different households and counties;people who are 25 years old or older and have a high school diploma, living in different households and counties;people who have graduated from high school and are at least 25 years old, living in different households and counties" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountySameState,number of people who graduated from high school and are 25 years old or older in different households and counties in the same state;number of people who have completed high school and are 25 years old or older in different dwellings and counties in the same state;number of people who have a high school degree and are 25 years old or older in different residences and counties in the same state;number of people who have a high school certificate and are 25 years old or older in different houses and counties in the same state -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInSameCounty, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthAfrica,foreign-born africans aged 25 or older who have graduated from high school or equivalent;foreign-born africans aged 25 or older with a high school diploma or equivalent;foreign-born africans aged 25 or older who have completed secondary education;foreign-born africans aged 25 or older who have completed 12 years of schooling -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthAsia,the percentage of asian immigrants who are 25 years of age or older and have graduated from high school or obtained an equivalent credential;the proportion of foreign-born asians who are high school graduates or have completed an equivalent program;the number of asian immigrants who have completed a high school education or its equivalent;the percentage of asian immigrants who have a high school diploma or ged -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthCaribbean,"caribbean-born high school graduates aged 25 or older, including equivalency;foreign-born caribbeans aged 25 or older who have completed high school, including equivalency" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people born in central america, excluding mexico, who are 25 years or older and have a high school equivalency diploma;people from central america who have moved to the united states and have a high school diploma or equivalent;central american immigrants who have completed high school or have an equivalent degree" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthEasternAsia,"the percentage of foreign-born people in eastern asia aged 25 years or more who have graduated from high school or equivalent;the proportion of foreign-born people in eastern asia aged 25 years or more who have completed high school or equivalent;the number of foreign-born people in eastern asia aged 25 years or more who have graduated from high school or equivalent, as a percentage of the total population;the number of foreign-born people in eastern asia aged 25 years or more who have completed high school or equivalent, as a proportion of the total population" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthEurope,foreign-born high school graduates in europe who are 25 years old or older;foreign-born europeans who graduated from high school and are 25 years old or older;high school graduates in europe who were born outside of europe and are 25 years old or older;foreign-born high school graduates in europe who are at least 25 years old -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthLatinAmerica,"the number of people who were born in latin america and are 25 years old or older who have graduated from high school or have an equivalency degree;the number of people who were born in latin america and have completed high school or an equivalent program, aged 25 years or older;the number of people who were born in latin america and are 25 years old or older and have a high school diploma or equivalent, including those who have obtained an equivalency degree;the number of people who were born in latin america and are 25 years old or older and have completed high school or have obtained an equivalency degree" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthMexico,the number of foreign-born people in mexico who are 25 years old or older and have a high school diploma or equivalent;the number of people who were born in another country and now live in mexico who are 25 years old or older and have a high school diploma or equivalent;the number of immigrants in mexico who are 25 years old or older and have a high school diploma or equivalent;the number of people who were not born in mexico but now live there who are 25 years old or older and have a high school diploma or equivalent -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthNorthamerica,foreign-born high school graduates or equivalent aged 25 and above in north america;foreign-born north americans aged 25 and above with a high school diploma or equivalent;foreign-born north americans aged 25 and above who have graduated from high school or equivalent;foreign-born north americans aged 25 and above with a secondary education -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"foreign-born high school graduates or equivalent in northwestern europe aged 25 and over;foreign-born adults with a high school diploma or equivalent in northwestern europe aged 25 and over;people who were born outside of northwestern europe and have a high school diploma or equivalent, and are 25 years old or older;foreign-born adults in northwestern europe who have completed high school or equivalent and are 25 years old or older" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthOceania,"the number of people born outside of oceania who are 25 years old or older and have a high school diploma or equivalent, expressed as a percentage of the total population of oceania;the share of the population of oceania who are 25 years old or older and have a high school diploma or equivalent, and who were born outside of the country;the number of people who were born in another country and are now living in oceania, who are 25 years old or older, and who have a high school diploma or equivalent;the number of people who were born in another country and are now living in oceania, who are 25 years old or older, and have completed high school or equivalent" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthSouthCentralAsia,the percentage of south central asians who are foreign-born and have a high school diploma;percentage of south central asian immigrants aged 25 and older who have graduated from high school;share of south central asian immigrants aged 25 and older who are high school graduates;proportion of south central asian immigrants aged 25 and older who have graduated from high school -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthSouthEasternAsia,"people who were born outside of south-eastern asia and graduated from high school there, aged 25 years or more;people who were born outside of south-east asia and finished high school there, aged 25 years or more;people who were born outside of southeast asia and completed high school there, aged 25 years or more;people who were born outside of southeast asia and received a high school diploma there, aged 25 years or more" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthSouthamerica,"percentage of south american immigrants who are high school graduates;proportion of foreign-born south americans who have graduated from high school;number of south american immigrants who have graduated from high school, expressed as a percentage of the total foreign-born south american population;share of south american immigrants who have graduated from high school" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"people who were born in southern eastern europe and are 25 years old or older and have graduated from high school, including equivalency programs" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_ForeignBorn_PlaceOfBirthWesternAsia,the percentage of people born in western asia who have graduated from high school or equivalent;the number of people born in western asia who have completed high school or equivalent;the proportion of people born in western asia who have a high school diploma or equivalent;the share of people born in western asia who have a high school degree or equivalent -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_LanguageOtherThanEnglishSpokenAtHome, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_OnlyEnglishSpokenAtHome,percentage of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;number of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;proportion of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;share of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishOrSpanishCreoleSpokenAtHome,"people who speak spanish creole and have graduated from high school or equivalent, aged 25 years or more;spanish creole speakers who have completed high school or equivalent, aged 25 years or more;people who speak spanish creole and are 25 years of age or older and have graduated from high school or equivalent;spanish creole speakers who are 25 years of age or older and have completed high school or equivalent" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishSpokenAtHome,"people 25 and older who have graduated from high school or obtained an equivalency degree, spanish;people 25 and older who have completed high school or obtained an equivalency degree, speaking spanish" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher,number of people who have completed high school;number of people who have finished high school -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInAdultCorrectionalFacilities,the percentage of people aged 25 or older who have a high school diploma and are incarcerated in adult correctional facilities;the proportion of people aged 25 or older who have a high school diploma and are in prison;the rate of incarceration for people aged 25 or older who have a high school diploma;the percentage of people aged 25 or older who have a high school diploma and are in a correctional facility -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInCollegeOrUniversityStudentHousing,number of people aged 25 years or more with high school diplomas or higher living in college or university student housing;number of people aged 25 years or older with high school diplomas or higher living in college or university dormitories;number of people aged 25 years or more with high school diplomas or higher living in college or university residence halls;number of people aged 25 years or older with high school diplomas or higher living in college or university housing -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInGroupQuarters,the number of people above 25 years old who have graduated from high school and live in group quarters;the number of people above 25 years old who have a high school diploma and live in group quarters;the number of people above 25 years old who are high school graduates and live in group quarters;the number of people above 25 years old who have completed high school and live in group quarters -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInInstitutionalizedGroupQuarters,"people who graduated from high school and are 25 years old or older living in group quarters;people who have completed high school and are 25 years old or older living in group settings;people who have graduated from high school and are 25 years old or older living in group quarters, such as prisons, nursing homes, or mental hospitals;people who are 25 years old or older and have a high school diploma living in group quarters" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNursingFacilities,the percentage of people aged 25 and above in nursing facilities who have a high school diploma;the proportion of people aged 25 and above in nursing facilities who have graduated from high school;the number of people aged 25 and above in nursing facilities who have completed high school;the share of people aged 25 and above in nursing facilities who have a high school degree -Count_Person_EducationalAttainmentKindergarten,number of kids in kindergarten;number of kindergarteners;kids in kindergarten;kindergarten population -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,people who have graduated from high school;people who have completed high school;people who have finished high school;people who have passed high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseAbroad,number of people aged 25 or older who have not graduated from high school living in different countries;number of people aged 25 or older who have not graduated from high school living in other countries;number of people aged 25 or older who have not graduated from high school living in international locations;number of people aged 25 or older who have not completed high school and live in different households in other countries -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState,"percentage of people aged 25 or older with less than a high school diploma in different households, counties, and states;number of people aged 25 or older with less than a high school diploma in different households, counties, and states;proportion of people aged 25 or older with less than a high school diploma in different households, counties, and states;share of people aged 25 or older with less than a high school diploma in different households, counties, and states" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountySameState,percentage of adults over 25 without a high school diploma in different counties in the same state;people over 25 without a high school diploma in different counties in the same state -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInSameCounty,people aged 25 or older who have not graduated from high school and live in a different house in the same county;people aged 25 or older who have not graduated from high school and have moved to a different house in the same county;people aged 25 or older who have not graduated from high school and have changed their residence within the same county;adults over 25 who are not high school graduates and live in a different house in the same county -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthAfrica,the percentage of foreign-born people in africa who are aged 25 years or more and have not graduated from high school;the proportion of foreign-born people in africa who are aged 25 years or more and have not completed high school;the number of foreign-born people in africa who are aged 25 years or more and have not attained a high school diploma;the share of foreign-born people in africa who are aged 25 years or more and have not completed secondary education -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthAsia,the percentage of foreign-born people in asia who are aged 25 years or more and have not completed high school;the proportion of foreign-born people in asia who are aged 25 years or more and have not graduated from high school;the number of foreign-born people in asia who are aged 25 years or more and have not completed secondary education;the share of foreign-born people in asia who are aged 25 years or more and have not completed secondary school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthCaribbean,people who were born in the caribbean and are 25 years old or older but did not graduate from high school;people who were born in the caribbean and are at least 25 years old but did not complete high school;people who were born in the caribbean and are over the age of 25 but did not earn a high school diploma;people who were born in the caribbean and are adults but did not finish high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,the number of people born in central america (excluding mexico) who are 25 years of age or older and have not graduated from high school;the number of people who were born in central america (excluding mexico) and are 25 years of age or older and have not completed high school;the number of people who were born in central america (excluding mexico) and are 25 years of age or older and have not earned a high school diploma;the number of people who were born in central america (excluding mexico) and are 25 years of age or older and have not earned a ged -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthEasternAsia,people who were born in eastern asia and are 25 years old or older and have not graduated from high school;people who were born in eastern asia and are at least 25 years old and have not completed high school;people who were born in eastern asia and are 25 years of age or older and have not earned a high school diploma;people who were born in eastern asia and are 25 years of age or older and have not received a high school degree -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthEurope,foreign-born adults who are 25 years old or older and have not graduated from high school;foreign-born individuals who are 25 years old or older and have not graduated from high school;population of foreign-born people aged 25 years or more who have not graduated from high school;foreign-born people aged 25 years or more who have not completed high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthLatinAmerica,"the percentage of foreign-born latin americans aged 25 or older who have not graduated from high school;the percentage of latin american immigrants who have not completed high school, aged 25 or older;the proportion of latin american immigrants aged 25 or older who have not completed high school;people who were born in latin america and are 25 years old or older and have not graduated from high school" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthMexico, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthNorthamerica, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the percentage of foreign-born people in northern western europe who are 25 years old or older and have not graduated from high school;the proportion of foreign-born people in northern western europe who are 25 years old or older and have less than a high school diploma;the number of foreign-born people in northern western europe who are 25 years old or older and have not completed high school;the share of foreign-born people in northern western europe who are 25 years old or older and have not attained a high school degree -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthOceania,"the percentage of foreign-born people in oceania who are less than high school graduates and aged 25 years or more;the proportion of foreign-born people in oceania who are less than high school graduates and aged 25 years or more;the number of foreign-born people in oceania who are less than high school graduates and aged 25 years or more, expressed as a percentage;the share of foreign-born people in oceania who are less than high school graduates and aged 25 years or more" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthSouthCentralAsia,the percentage of foreign-born people in south central asia who are 25 years or older and have not graduated from high school;the proportion of foreign-born people in south central asia aged 25 and over who are not high school graduates;the share of foreign-born people in south central asia aged 25 and over who are not high school educated;the proportion of foreign-born people in south central asia who are 25 years or older and have not completed high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthSouthEasternAsia,the number of foreign-born people aged 25 years or more in south eastern asia with less than a high school diploma;the percentage of foreign-born people aged 25 years or more in south eastern asia with less than a high school diploma;the proportion of foreign-born people aged 25 years or more in south eastern asia with less than a high school diploma;the number of foreign-born people aged 25 years or more in south eastern asia who have not graduated from high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthSouthamerica,"people who were born in another country and now live in south america, aged 25 or older;people who were born outside of south america but now live there, aged 25 or older;foreigners living in south america, aged 25 or older;people who are not south american citizens but live there, aged 25 or older" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the percentage of foreign-born people in southern eastern europe who are 25 years or older and have less than a high school diploma;the proportion of foreign-born people in southern eastern europe who are 25 years or older and have not completed high school;the percentage of foreign-born people in southern eastern europe who are 25 years or older and have not graduated from high school;the proportion of foreign-born people in southern eastern europe who are 25 years or older and have not completed secondary education -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_ForeignBorn_PlaceOfBirthWesternAsia,the percentage of foreign-born people in western asia who are 25 years or older and have not graduated from high school;the number of foreign-born people in western asia who are 25 years or older and have not completed high school;the number of foreign-born people in western asia who are 25 years or older and are not high school graduates;the share of foreign-born people in western asia who are 25 years or older and have not completed high school -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_LanguageOtherThanEnglishSpokenAtHome,"people who are over 25 and have not completed high school, and who are not native english speakers;people who are over 25 and have not graduated from high school, and who are not fluent in english;people who are over 25 and have not completed high school, and who are not english-speaking;people who are over 25 and have not graduated from high school, and who are not native speakers of english" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_OnlyEnglishSpokenAtHome,"the number of people in the united states who are 25 years or older, have not graduated from high school, and only speak english;the number of people in the us who are 25 years or older, are less than high school graduates, and only speak english;the number of people in the united states who are 25 years or older, have not completed high school, and only speak english;the number of people in the us who are 25 years or older, are high school dropouts, and only speak english" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishOrSpanishCreoleSpokenAtHome,people who graduated from high school in spanish or spanish creole and are 25 years old or older;spanish-speaking high school graduates who are 25 years old or older;people who graduated from high school in spanish or spanish creole and are at least 25 years old;spanish-speaking high school graduates who are at least 25 years old -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishSpokenAtHome,the percentage of spanish people aged 25 or older who have not graduated from high school;the proportion of spanish people aged 25 or older who are not high school graduates;the number of spanish people aged 25 or older who have not completed high school;the number of spanish people aged 25 or older who are high school dropouts -Count_Person_EducationalAttainmentMastersDegree,how many people have a master's degree?;what is the number of people with a master's degree?;what percentage of people have a master's degree?;how many people have completed a master's degree? -Count_Person_EducationalAttainmentNoSchoolingCompleted,number of people who have never attended school;number of people who have not completed any level of schooling;number of people who have not received any formal education;number of people who did not complete any schooling -Count_Person_EducationalAttainmentNurserySchool,number of children in nursery schools;number of students in nursery schools;number of kids in nursery schools;number of pupils in nursery schools -Count_Person_EducationalAttainmentPrimarySchool,the number of children attending primary school;the number of students in primary school;the number of kids in primary school;the number of pupils in primary school -Count_Person_EducationalAttainmentProfessionalSchoolDegree,number of people with professional school degrees;proportion of the population with professional school degrees;percentage of the population with professional school degrees;share of the population with professional school degrees -Count_Person_EducationalAttainmentRegularHighSchoolDiploma,number of people with a high school diploma;number of people who have a high school education;number of people with a regular high school diploma -Count_Person_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree, -Count_Person_EducationalAttainmentSomeCollegeLessThan1Year,people who attended college for less than a year -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,people with some college or associate's degrees;people who have some college or associate's degrees;people who have attended college or earned an associate's degree;people who have some post-secondary education -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseAbroad,"25 years or older, some college or an associate's degree, and living outside of their home country;25 years old or older, some college or associate's degree, living in a country other than one's home country" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountyDifferentState,the number of people aged 25 or older who have some college or an associate's degree and live in different houses in different counties and different states;the population of people aged 25 or older who have some college or an associate's degree and live in different places;the number of people aged 25 or older who have some college or an associate's degree and live in different households in different counties and different states;the population of people aged 25 or older who have some college or an associate's degree and live in different locations -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountySameState,people aged 25 or older with some college or an associate's degree who have moved to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have changed their address to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have relocated to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have moved house to a different house in a different county in the same state -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInSameCounty,number of people aged 25 years or more with some college or associate's degrees living in different households in the same county;number of people aged 25 years or more with some college or associate's degrees living in separate houses in the same county;number of people aged 25 years or more with some college or associate's degrees living in different homes in the same county;number of people aged 25 years or more with some college or associate's degrees living in different dwellings in the same county -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthAfrica,people born in africa who are 25 years old or older and have some college or associate's degree;the number of people born in africa who are 25 years old or older and have some college or associate's degree;the percentage of people born in africa who are 25 years old or older and have some college or associate's degree;the proportion of people born in africa who are 25 years old or older and have some college or associate's degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthAsia,the number of people born outside of asia who are 25 years old or older and have some college or associate's degree;the number of foreign-born people in asia who are 25 years old or older and have some college or associate's degree;the population of foreign-born people in asia who are 25 years old or older and have some college or associate's degree;the number of foreign-born people in asia with some college or associate's degree who are 25 years old or older -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthCaribbean,"the number of people born in the caribbean who are 25 years old or older and have some college education but no bachelor's degree;the number of people born in the caribbean who are 25 years old or older and have some college but no bachelor's degree, as a percentage of the total population of the caribbean;the number of people who were born in the caribbean and have some college education but no bachelor's degree, and who are 25 years old or older;the number of people who are 25 years old or older and have some college education but no bachelor's degree, and who were born in the caribbean" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central americans aged 25 or older who were born outside of mexico and have some college or an associate's degree;people born in central america but not mexico who are 25 or older and have some college or an associate's degree;foreign-born central americans aged 25 or older with some college or an associate's degree;central americans who were not born in the united states and are 25 or older and have some college or an associate's degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthEasternAsia,the number of people born in eastern asia who are at least 25 years old and have some college or associate's degree;the percentage of people born in eastern asia who are at least 25 years old and have some college or associate's degree;the proportion of people born in eastern asia who are at least 25 years old and have some college or associate's degree;the number of people in eastern asia who were born in another country and have some college or associate's degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthEurope,population of europe born outside the country and aged 25 or older with some college degree;population of europe born outside the country and aged 25 or older with some college education;population of europe born outside the country and aged 25 or older with some tertiary education;population of europe born outside the country and aged 25 or older with some post-secondary or tertiary education -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthLatinAmerica,latin american foreign-born college graduates aged 25 and older;college-educated latin american immigrants aged 25 and older;foreign-born latin americans with college degrees aged 25 and older;latin american immigrants with college degrees aged 25 and older -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthMexico,"the number of people born in mexico who are 25 years old or older and have some college education or an associate's degree;the percentage of the mexican population that is foreign-born and has some college education or an associate's degree;the number of people born in mexico who are 25 years old or older and have some college education or an associate's degree, as a percentage of the total mexican population;the number of people born in mexico who are 25 years old or older and have some college education or an associate's degree, as a percentage of the total foreign-born population in mexico" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthNorthamerica,the percentage of people in north america who were born in another country and have at least some college education;the proportion of people in north america who were born in another country and have at least some college education;the proportion of foreign-born people in north america who have some college education;the number of foreign-born people in north america with some college education as a percentage of the total population -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"the percentage of people born outside of northern western europe who are 25 years or older and have some college or associate's degree;the proportion of foreign-born residents in northern western europe who are 25 years or older and have some college or associate's degree;the number of people born outside of northern western europe who are 25 years or older and have some college or associate's degree, divided by the total number of people in northern western europe who are 25 years or older;the share of the population in northern western europe who are 25 years or older and have some college or associate's degree who were born outside of the country" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthOceania,"the number of people who were born in another country and are now living in oceania, who are 25 years of age or older, and who have some college or associate's degree education;the percentage of the population in oceania who were born in another country, are 25 years of age or older, and have some college or associate's degree education;the number of people who were born in another country and are now living in oceania, who are 25 years of age or older, and have some college or associate's degree education, as a percentage of the total population in oceania;the proportion of the population in oceania who were born in another country, are 25 years of age or older, and have some college or associate's degree education" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthSouthCentralAsia,people who were born in south central asia and are 25 years old or older and have some college or an associate's degree;people who were born in south central asia and are at least 25 years old and have some college or an associate's degree;people who were born in south central asia and are 25 years of age or older and have some college or an associate's degree;people who were born in south central asia and are 25 years old or more and have some college or an associate's degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthSouthEasternAsia,"25+ years old, some college or associates degree, born outside the us, south east asia" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthSouthamerica,south american immigrants with college or associate's degrees;people born in south america who are 25 years old or older and have college or associate's degrees;south american-born adults with college or associate's degrees;people who were born in south america and are at least 25 years old who have college or associate's degrees -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthSouthernEasternEurope,share of foreign-born people in southern eastern europe aged 25 years or more with some college or associate's degree;foreign-born people in southern eastern europe aged 25 years or more with some college or associate's degree as a percentage of the total population;foreign-born people in southern eastern europe aged 25 years or more with some college or associate's degree as a share of the total population;percentage of foreign-born people aged 25 or older with some college or associate's degree in southern eastern europe -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_ForeignBorn_PlaceOfBirthWesternAsia,"25 years or older, some college or an associate degree, foreign-born, from western asia;25 years of age or older, with some college or an associate degree, born outside the united states, from western asia;25 years or older, with some college or an associate degree, who are not us citizens and were born in western asia;25 years of age or older, with some college or an associate degree, who are not native-born americans and were born in western asia" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_LanguageOtherThanEnglishSpokenAtHome,people aged 25 or older who speak languages other than english;the number of people aged 25 or older who speak languages other than english;the percentage of people aged 25 or older who speak languages other than english;the proportion of people aged 25 or older who speak languages other than english -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_OnlyEnglishSpokenAtHome,the percentage of people aged 25 or older who speak only english and have some college or associate's degree;the number of people aged 25 or older who speak only english and have some college or associate's degree;the proportion of people aged 25 or older who speak only english and have some college or associate's degree;the share of people aged 25 or older who speak only english and have some college or associate's degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishOrSpanishCreoleSpokenAtHome,"25 years or older, some college or an associate's degree, and spanish or spanish creole speakers;people who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole;those who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole;individuals who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishSpokenAtHome,"the percentage of the spanish population aged 25 years or more with some college or associate's degrees;the proportion of the spanish population aged 25 years or more with some college or associate's degrees;the number of spanish people aged 25 years or more with some college or associate's degrees, expressed as a percentage of the total spanish population;the number of spanish people aged 25 years or more with some college or associate's degrees, expressed as a proportion of the total spanish population" -Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma,the number of people who completed 9th to 12th grade but did not receive a diploma;number of people who completed 9th to 12th grade but did not earn a diploma -Count_Person_EducationalAttainment_LessThan9ThGrade,the number of people who did not complete 9th grade;the number of people who have not completed 9th grade -Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,the number of people who did not graduate from high school;the number of people who did not complete high school;the number of people who do not have a high school diploma;the number of people who did not earn a high school diploma -Count_Person_EducationalAttainment_SomeCollegeNoDegree,the number of college dropouts;the number of people who left college without graduating;the number of people who started college but never finished;the number of people who attended college but did not earn a degree -Count_Person_Employed,number of people with current employment;number of people who are currently employed;number of people currently employed;current workforce -Count_Person_Employed_ForeignBorn_PlaceOfBirthAfrica,number of employed people born in africa;number of people born in africa who are employed and aged 16 or over;number of african-born people who are employed and aged 16 or over;number of people who were born in africa and are currently employed and aged 16 or over -Count_Person_Employed_ForeignBorn_PlaceOfBirthAsia,foreign-born civilians in asia aged 16 or older who are employed;foreign-born civilians in asia aged 16 or older who have a job;foreign-born civilians in asia aged 16 or older who are working;foreign-born civilians in asia aged 16 or older who are gainfully employed -Count_Person_Employed_ForeignBorn_PlaceOfBirthCaribbean,the number of caribbean-born people aged 16 or older who are employed in the civilian workforce;the number of employed caribbean immigrants;the number of employed people who were born in the caribbean and are at least 16 years old;foreign-born caribbeans aged 16 or older in the employed civilian population -Count_Person_Employed_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american foreign-born civilians who are 16 years of age or older and are employed;foreign-born central american civilians who are 16 years of age or older and are in the workforce;central american civilians who were born in another country and are 16 years of age or older and have a job;central american civilians who are not us citizens and are 16 years of age or older and have a job -Count_Person_Employed_ForeignBorn_PlaceOfBirthEasternAsia,foreign-born employed civilians in eastern asia aged 16 years or older;civilians born outside of eastern asia who are employed and aged 16 or older in eastern asia;foreign-born employed civilians in eastern asia aged 16 years or more;foreign-born employed civilians in eastern asia aged 16 and older -Count_Person_Employed_ForeignBorn_PlaceOfBirthEurope,"the number of people who were born outside of europe and are currently employed in europe, aged 16 years or more;the number of people who are employed in europe and were born outside of europe, aged 16 years or more;the number of people who are employed in europe and are not citizens of europe, aged 16 years or more;the number of people who are employed in europe and are not native-born europeans, aged 16 years or more" -Count_Person_Employed_ForeignBorn_PlaceOfBirthLatinAmerica,latin american foreign-born citizens who are employed and at least 16 years old;foreign-born latin americans who are employed and at least 16 years old;latin american citizens who are employed and are 16 years of age or older;foreign-born latin americans who are employed and are 16 years of age or older -Count_Person_Employed_ForeignBorn_PlaceOfBirthMexico,foreign-born people in mexico who are 16 years old or older and working;people who were not born in mexico but live there and are 16 years old or older and have a job;foreigners in mexico who are 16 years old or older and are employed;people who are not mexican citizens but live in mexico and are 16 years old or older and have a job -Count_Person_Employed_ForeignBorn_PlaceOfBirthNorthamerica,foreign-born people employed in north america who are 16 years old or older;civilians who were born in another country and are employed in north america and are 16 years of age or older;employed people in north america who were born in another country and are 16 years of age or older -Count_Person_Employed_ForeignBorn_PlaceOfBirthNorthernWesternEurope,foreign nationals who are living in northern western europe and are 16 years old or older;foreign-born civilians in northern western europe who are 16 years of age or older;civilians in northern western europe who were born in another country and are 16 years of age or older;people who were born in another country and are 16 years of age or older who are living in northern western europe as civilians -Count_Person_Employed_ForeignBorn_PlaceOfBirthOceania,"the number of people who were born in another country and are now living in oceania, aged 16 years or more;the number of immigrants living in oceania, aged 16 years or more;the number of people who are not citizens of oceania but are living there, aged 16 years or more;the number of people who were born outside of oceania but are now living there, aged 16 years or more" -Count_Person_Employed_ForeignBorn_PlaceOfBirthSouthCentralAsia, -Count_Person_Employed_ForeignBorn_PlaceOfBirthSouthEasternAsia,southeast asian foreign-born civilians aged 16 years or older who have jobs;people from south-east asia who are 16 years old or older and are employed as civilians;people from south-east asia aged 16 or older who are employed as civilians;people from south-east asia who are 16 or older and are working as civilians -Count_Person_Employed_ForeignBorn_PlaceOfBirthSouthamerica, -Count_Person_Employed_ForeignBorn_PlaceOfBirthSouthernEasternEurope,people who were born outside of southern eastern europe and are 16 years old or older and are employed;foreign-born people in southern eastern europe who are 16 years old or older and have a job;people who are not citizens of southern eastern europe but live there and are 16 years old or older and have a job;people who were born in another country but live in southern eastern europe and are 16 years old or older and are employed -Count_Person_Employed_ForeignBorn_PlaceOfBirthWesternAsia,employed western asian foreign-born civilians over 16 years old;foreign-born western asian civilians over 16 years old who are employed;civilians from western asia who are foreign-born and over 16 years old and are employed;employed western asian foreign-born civilians aged 16 and over -Count_Person_Employed_NACE/A,"agriculture, forestry, and fishing population" -Count_Person_Employed_NACE/B-E,the workforce in industries other than construction -Count_Person_Employed_NACE/C,the workforce in manufacturing;the number of people who work in manufacturing;the number of people who make things;the manufacturing workforce -Count_Person_Employed_NACE/F, -Count_Person_Employed_NACE/G-I,"the number of people employed in wholesale and retail trade, transport, accommodation, and food service;the workforce in wholesale and retail trade, transport, accommodation, and food service;the number of people working in wholesale and retail trade, transport, accommodation, and food service;the number of people who have jobs in wholesale and retail trade, transport, accommodation, and food service" -Count_Person_Employed_NACE/G-J,"the four largest sources of revenue in the us are wholesale and retail trade, transport, accommodation and food service activities, and information and communication" -Count_Person_Employed_NACE/J,the population that uses information and communication technologies;information and communication technologies and the population -Count_Person_Employed_NACE/K, -Count_Person_Employed_NACE/K-N,"people who work in financial, real estate, professional, scientific, technical, administrative, and support activities make up the majority of the population;financial, real estate, professional, scientific, technical, administrative, and support activities are the most common occupations;financial, real estate, professional, scientific, technical, administrative, and support activities;the population of the united states is made up of people who work in financial, real estate, professional, scientific, technical, administrative, and support activities" -Count_Person_Employed_NACE/L,real estate activities in relation to population;population and real estate activities;real estate activities and population;the relationship between population and real estate activities -Count_Person_Employed_NACE/M-N,"population: professional, scientific and technical activities, administrative and support service activities" -Count_Person_Employed_NACE/O-Q,"public administration, defence, education, human health and social work activities;public sector, military, education, healthcare, and social work;government, armed forces, schools, hospitals, and social services;administration, defense, education, healthcare, and social welfare" -Count_Person_Employed_NACE/O-U,"public administration and defense, compulsory social security, education, human health and social work activities, arts, entertainment and recreation;government, social security, schools, hospitals, museums, movies and sports;the government, social security, schools, hospitals, museums, movies and sports;the public sector, social security, education, health care, culture and recreation" -Count_Person_Employed_NACE/R-U,"activities related to arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies sectors;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies industries;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies fields" -Count_Person_EnrolledInCollegeOrGraduateSchool,number of people enrolled in colleges aged 3 or older;number of college students aged 3 or older;number of people aged 3 or older enrolled in higher education;number of people aged 3 or older enrolled in post-secondary education -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInAdultCorrectionalFacilities,men who have been in prison for three years or more who are enrolled in college or graduate school;male inmates who have been incarcerated for three years or more who are taking college or graduate courses;men who have been in jail for three years or more who are pursuing higher education;male prisoners who have been locked up for three years or more who are studying at a university or college -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInCollegeOrUniversityStudentHousing,number of people aged 3 years or more enrolled in college or graduate school with college or university student housing;number of people aged 3 years or more enrolled in college or graduate school who live in college or university student housing;number of people aged 3 years or more enrolled in college or graduate school who have college or university student housing;number of people aged 3 years or more enrolled in college or graduate school who are living in college or university student housing -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInGroupQuarters,"number of people aged 3 years or older enrolled in college or graduate school living in group quarters;number of people aged 3 years or more enrolled in college or graduate school in group quarters;number of people aged 3 years or more enrolled in college or graduate school who live in group quarters;number of people aged 3 years or more enrolled in college or graduate school who are living in boarding houses, hotels, or other types of group quarters" -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInInstitutionalizedGroupQuarters,1 people aged 3 years or older living in group quarters;2 institutionalized population aged 3 years or older;3 group quarters population aged 3 years or older;4 population in group quarters aged 3 years or older -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNoninstitutionalizedGroupQuarters,people who have lived in group quarters for three years or more and are enrolled in college;people who have been living in group quarters for three years or more and are currently attending college;people who have been living in group quarters for three years or more and are enrolled in a college or university;people who have been living in group quarters for three years or more and are taking college courses -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNursingFacilities,number of people aged 3 years or more enrolled in public college or graduate school in nursing facilities;number of people aged 3 years or older enrolled in public college or graduate school in nursing facilities;number of people enrolled in public college or graduate school in nursing facilities who are aged 3 years or more;number of people enrolled in public college or graduate school in nursing facilities who are 3 years of age or older -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,"number of people enrolled in school from nursery to grade 12, who are 3 years or older, in adult correctional facilities;number of people enrolled in school from nursery to grade 12, who are 3 years or older, in adult prisons;number of people enrolled in school from nursery to grade 12, who are 3 years or older, in adult detention centers;number of people enrolled in school from nursery to grade 12, who are 3 years or older, in adult jails" -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,number of students aged 3 or older enrolled in nursery schools through grades 12 who live in college or university student housing;number of children aged 3 or older enrolled in nursery schools through grades 12 who live in college or university dormitories;number of kids aged 3 or older enrolled in nursery schools through grades 12 who live in college or university residence halls;number of pupils aged 3 or older enrolled in nursery schools through grades 12 who live in college or university student accommodation -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInGroupQuarters_EnrolledInSchool,number of people aged 3 or older enrolled in nursery through 12th grade in group quarters;number of people aged 3 or older enrolled in nursery through 12th grade who live in group quarters;number of people aged 3 or older enrolled in nursery through 12th grade who are living in a group setting;number of people aged 3 or older enrolled in nursery through 12th grade who are living in group quarters -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInInstitutionalizedGroupQuarters_EnrolledInSchool,number of people aged 3 and over enrolled in nursery through grade 12 in institutional group quarters;number of people aged 3 and over enrolled in nursery through grade 12 in group quarters;number of people aged 3 or older enrolled in nursery through grade 12 in group quarters;number of people aged 3 or older enrolled in nursery through grade 12 in institutions -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInNoninstitutionalizedGroupQuarters_EnrolledInSchool,number of people aged 3 or older enrolled in nursery through grade 12 in non-institutional group quarters;number of people aged 3 or older enrolled in nursery through grade 12 who are not institutionalized;number of people aged 3 or older enrolled in nursery through grade 12 who are not living in institutions;number of people aged 3 or older enrolled in nursery through grade 12 in non-institutional settings -Count_Person_EnrolledInNurseryThroughGrade12_ResidesInNursingFacilities_EnrolledInSchool,number of people aged 3 years or older enrolled in nursery through grade 12 in nursing facilities;number of people aged 3 years or older enrolled in nursery through grade 12 who are living in nursing facilities;number of people aged 3 years or older enrolled in nursery through grade 12 who are residents of nursing facilities;number of people aged 3 or older enrolled in nursery through grade 12 in nursing facilities -Count_Person_EnrolledInSchool,how many people are currently enrolled in school?;what is the current enrollment in school?;how many people are enrolled in school right now?;what is the total number of people enrolled in school? -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,households of foreign-born people in africa who have been determined to be in poverty;african households with foreign-born members who have been determined to be in poverty;households in africa with foreign-born members who have been determined to be poor;households of foreign-born people in africa who have been classified as poor -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,families with foreign-born members in asia who are living in poverty;households headed by immigrants in asia who are poor;households with foreign-born members in asia who have been determined to be living in poverty;families in asia with foreign-born members who have been determined to be living in poverty -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,"household size, foreign born, caribbean, poverty status;household composition, immigrant status, caribbean descent, poverty level;number of family members in a household, whether or not someone was born in the united states, from the caribbean, whether or not someone is living in poverty;family household, foreign born, caribbean, poverty status determined" -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,central american immigrant families living in poverty;households of foreign-born central americans living below the poverty line;central american immigrant families with low income;central american immigrant families struggling to make ends meet -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,families of immigrants living in eastern asia who are considered poor;households of foreign-born people in eastern asia who are living in poverty;immigrant families in eastern asia who are poor;families of immigrants in eastern asia who are below the poverty line -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,foreign-born family households in europe poverty statue determined -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,latin american immigrant families living in poverty;foreign-born families from latin america in poverty;latin american immigrant families with low income;families of foreign-born latin americans living in poverty -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,"family household, foreign born, country/mex, poverty status determined" -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,north american households with foreign-born family members who have been determined to be living in poverty;households in north america with foreign-born family members who have been determined to be poor;households in north america with foreign-born family members who have been determined to have low income;households in north america with foreign-born family members who have been determined to be struggling financially -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,foreign-born families in northern western europe living in poverty;northern western european families with foreign-born members living in poverty;families in northern western europe with foreign-born members who are poor;families in northern western europe with foreign-born members who live below the poverty line -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,households with foreign-born family members in oceania that have been determined to be in poverty;oceanian households with foreign-born family members that have been determined to be in poverty;households in oceania with foreign-born family members that have been determined to be living in poverty;households with foreign-born family members in oceania that have been determined to be living below the poverty line -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,how many foreign-born family households in south central asia are considered poor?;what is the number of foreign-born family households in south central asia living in poverty?;how many foreign-born family households in south central asia are below the poverty line?;what is the poverty rate among foreign-born family households in south central asia? -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,southeast asian families born outside the us living in poverty;people born in southeast asia who live in poverty with their families;people born in southeast asia who live in poverty with their immediate family members;people who were born in southeast asia and live in a household with a determined poverty status -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,households of foreign-born people in south america who have been determined to be in poverty;families of immigrants in south america who have been determined to be poor;households headed by immigrants in south america who have been determined to be poor;families of foreign-born people in south america who have been determined to be living in poverty -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,households of people who were born in southeastern europe and are living in poverty;households of people who were born in southeastern europe and are considered to be poor;households of people who were born in southeastern europe and have a low income;households of people who were born in southeastern europe and are struggling to make ends meet -Count_Person_FamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,percentage of foreign-born people from western asia living in poverty;number of foreign-born people from western asia living in poverty;poverty status of foreign-born people from western asia -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,families in africa with foreign-born children under 18 who are living in poverty;households in africa with foreign-born children under 18 who are living in poverty;households in africa with foreign-born children under 18 who have been determined to be living in poverty;families in africa with foreign-born children under 18 who have been determined to be living in poverty -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,"the number of people living in family households with children under 18 who were born outside of the united states and are from asia, and whose poverty status has been determined;the number of people in family households with children under 18 who were born outside of the united states and are from asia, and who have been determined to be living in poverty" -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,"the population of family households with children under 18 who are foreign born from the caribbean and have their poverty status determined;the number of people who live in family households with children under 18 who were born outside of the united states and come from the caribbean, and whose poverty status has been determined;the number of people who live in households with children under 18 who were not born in the united states and come from the caribbean, and whose poverty status has been determined;the number of people who live in family households with children under 18 who are foreign born and come from the caribbean, and whose poverty status has been determined" -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,central american immigrant families with children under 18 who have been determined to be in poverty;central american immigrant families with children under 18 who have been designated as low-income;central american immigrant families with children under 18 who have been classified as impoverished;central american immigrant families with children under 18 who have been identified as poor -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,the percentage of foreign-born people from eastern asia living in families with children under 18 who are in poverty;the proportion of people from eastern asia who were born in another country and live in families with children under 18 who are living in poverty;the number of people from eastern asia who were born in another country and live in families with children under 18 who are living below the poverty line;the percentage of people from eastern asia who were born in another country and live in families with children under 18 who are considered poor -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,households in europe with foreign-born children under 18 whose poverty status is determined;households in europe with children under 18 who were born outside of europe and whose poverty status is determined;households in europe with children under 18 who are not citizens of europe and whose poverty status is determined;households in europe with children under 18 who are not native-born and whose poverty status is determined -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,"households in latin america with foreign-born children under 18 years of age, with poverty status determined;households in latin america with children under 18 years of age who were born outside of the country, with poverty status determined;households in latin america with children under 18 years of age who are not citizens of the country, with poverty status determined;households in latin america with children under 18 years of age who are immigrants, with poverty status determined" -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined, -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,"households with foreign-born parents and children under 18 in north america, categorized by poverty status;north american households with children under 18 and at least one foreign-born parent, categorized by poverty status;households in north america with foreign-born parents and children under 18, categorized by whether or not they are living in poverty;families in north america with children under 18 and at least one foreign-born parent, categorized by whether or not they are living in poverty" -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,families in northern western europe with children under 18 who were born outside of the country and are living in poverty;households in northern western europe with children under 18 who were born outside of the country and are considered poor;families in northern western europe with children under 18 who were born in other countries and are living in low-income conditions;households in northern western europe with children under 18 who were born in other countries and are considered to be in a state of poverty -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,people born outside of oceania living in households with children under 18 who have been determined to be in poverty;people who were not born in oceania and live in households with children under 18 who have been determined to be poor;people who were not born in oceania and live in households with children under 18 who have been determined to be living in poverty;people born outside of oceania who live in family households with children under 18 years old and have been determined to be in poverty -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,households with children under 18 headed by foreign-born people from south central asia with poverty status determined;households with children under 18 headed by people from south central asia who were born in another country with poverty status determined;households with children under 18 headed by immigrants from south central asia with poverty status determined;households with children under 18 headed by people who moved to the united states from south central asia with poverty status determined -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,families of foreign-born people from southeast asia with children under 18 who have been determined to be in poverty;households of foreign-born people from southeast asia with children under 18 who have been determined to be poor;families of people who were born in southeast asia and have moved to the united states with children under 18 who have been determined to be poor;households of people who were born in southeast asia and have moved to the united states with children under 18 who have been determined to be in poverty -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,families in south america with foreign-born parents and children under 18 who have been determined to be living in poverty;households in south america with foreign-born parents and children under 18 who have been determined to be living in low-income conditions;families in south america with foreign-born parents and children under 18 who are struggling to make ends meet;households of foreign-born people from south america with children under 18 who have been determined to be in poverty -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,households of foreign-born people in southern eastern europe with children under 18 who are living in poverty;families of immigrants in southern eastern europe with children under 18 who are poor;foreign-born families in southern eastern europe with children under 18 who are impoverished;households of immigrants in southern eastern europe with children under 18 who are living below the poverty line -Count_Person_FamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,households in western asia with foreign-born family members and children under 18 who have been determined to be in poverty;households in western asia with foreign-born family members and children under 18 who have been determined to have low income;households in western asia with foreign-born family members and children under 18 who have been determined to be poor;households in western asia with foreign-born family members and children under 18 who have been determined to be low-income -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,households in africa with foreign-born parents and children under 5 who have been determined to be in poverty;families in africa with foreign-born parents and children under 5 who have been determined to be living in poverty;households in africa with foreign-born parents and children under 5 who have been determined to have low income;families in africa with foreign-born parents and children under 5 who have been determined to be struggling financially -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,"households in asia with children under 5 who are foreign-born and are considered to be low-income;households with children under 5 years old headed by a foreign-born person from asia, categorized by poverty status;families with children under 5 years old in which the head of household was born in asia, classified by poverty status" -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,poverty status of caribbean foreign-born family households with children under 5;the percentage of caribbean foreign-born family households with children under 5 living in poverty;the number of caribbean foreign-born family households with children under 5 living in poverty;the proportion of caribbean foreign-born family households with children under 5 living in poverty -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,"households with children under 5 years old who were born in central america, except mexico, and have been determined to be in poverty;central american families with children under 5 years old who have been determined to be in poverty;families with children under 5 years old who were born in central america, except mexico, and are living in poverty;households with children under 5 years old who were born in central america, except mexico, and are considered to be poor" -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,households with children under 5 years old who were born in eastern asia and are living in poverty;households with children under 5 years old who were born in eastern asia and are determined to be in poverty;families with children under 5 years old who were born in eastern asia and are considered poor;families with children under 5 years old who were born in eastern asia and are experiencing poverty -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,households with children under 5 years old who were born outside of europe and are living in poverty;households with children under 5 years old who were born in europe and are living in poverty;households headed by parents who were born in europe and are raising children under the age of 5 in poverty;families in europe with children under 5 who have been born outside of the country and are living in poverty -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,people born in latin america who have children under the age of 5 and whose poverty status has been determined;latin american immigrants with children under the age of 5 who have been determined to be living in poverty;foreign-born latin americans with children under the age of 5 who have been classified as poor;latin american immigrants with children under the age of 5 who have been identified as living in low-income households -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,mexican families with children under 5 who live in poverty;families in mexico with children under 5 who are poor;households in mexico with children under 5 who are living in poverty;families in mexico with children under 5 who have been determined to be poor -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,households in north america with foreign-born parents and children under 5 years old whose poverty status has been determined;north american households with foreign-born parents and children under 5 years old whose poverty status has been determined;households in north america with foreign-born parents and children under 5 years old whose poverty status is known;north american households with foreign-born parents and children under 5 years old whose poverty status is known -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,families of immigrants in northern western europe with children under 5 who have been determined to be in poverty;households of foreign-born people in northern western europe with children under 5 who have been determined to be in poverty;immigrant families in northern western europe with children under 5 who have been determined to be in poverty;households of people born outside of northern western europe with children under 5 who have been determined to be in poverty -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,households in oceania with children under 5 years old whose head of household was born outside the country and whose poverty status has been determined;families in oceania with children under 5 years old whose head of household was born outside the country and whose poverty status has been determined;households in oceania with children under 5 years old whose head of household is an immigrant and whose poverty status has been determined;families in oceania with children under 5 years old whose head of household is an immigrant and whose poverty status has been determined -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,"south central asian immigrant families with children under 5, by poverty status;families with foreign-born parents from south central asia and children under 5 years old, categorized by poverty status;families with children under 5 years old whose parents were born in south central asia, categorized by poverty status" -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,households in south eastern asia with foreign-born children under 5 years of age who have been determined to be in poverty;households in south eastern asia with foreign-born children under the age of 5 who have been determined to be living in poverty;households in south eastern asia with foreign-born children under 5 who have been determined to have low income;households in south eastern asia with foreign-born children under 5 who have been determined to be economically disadvantaged -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,families from south america with children under 5 who have been determined to be in poverty;south american families with children under 5 who have been determined to be living in poverty;households from south america with children under 5 who have been determined to be living in poverty;south american households with children under 5 who have been determined to be in poverty -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,number of families in southern eastern europe with foreign-born parents and children under 5 who are living in poverty;number of households in southern eastern europe with foreign-born parents and children under 5 who are living below the poverty line;number of households in southern eastern europe with foreign-born parents and children under 5 who are struggling to make ends meet -Count_Person_FamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,households with foreign-born parents and children under 5 in western asia who are living in poverty;households with foreign-born parents and children under 5 in western asia who are experiencing economic hardship;households with foreign-born parents and children under 5 in western asia who are living in a state of poverty;households in western asia with foreign-born parents and children under 5 who have been determined to have low income -Count_Person_FederalGovernmentOwnedEstablishment_Worker,people 16 or older who work for the federal government;people 16 years of age and older who work for the federal government -Count_Person_Female,number of women;female population;count of females;female headcount -Count_Person_Female_AbovePovertyLevelInThePast12Months,number of women who were not poor in the past year;number of women who had an income above the poverty line in the past year;number of women who were not living in poverty in the past year;number of women who were not experiencing economic hardship in the past year -Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native women who were above the poverty level in the past 12 months;number of american indian or alaska native women who were not poor in the past 12 months;number of american indian or alaska native women who had an income above the poverty line in the past 12 months;number of american indian or alaska native women who had a household income above the poverty line in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,the number of asian women who were above the poverty line in the past 12 months;the number of asian women who were not poor in the past 12 months;the number of asian women who were not living in poverty in the past 12 months;the number of asian women who were not experiencing financial hardship in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,number of african american women above poverty level in the past 12 months;number of african american women not living in poverty in the past 12 months;number of african american women with income above the poverty line in the past 12 months;number of african american women with an income that is not below the poverty line in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,the number of hispanic women who were above the poverty level in the past 12 months;the number of hispanic women who were not poor in the past 12 months;the number of hispanic women who were not living in poverty in the past 12 months;the number of hispanic women who were not experiencing financial hardship in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander women who were above the poverty line in the past 12 months;the number of native hawaiian or other pacific islander women who were not poor in the past 12 months;the number of native hawaiian or other pacific islander women who were not experiencing economic hardship in the past 12 months;number of native hawaiian or other pacific islander women who were above the poverty level in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"the number of females who are above the poverty level in the past 12 months and who are from an unclassified race alone;the number of women who are above the poverty level in the past 12 months and who are from an unclassified race alone;the number of people who are female, above the poverty level in the past 12 months, and from an unclassified race alone;the number of people who are women, above the poverty level in the past 12 months, and from an unclassified race alone" -Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,number of multi-racial females who were above the poverty level in the past 12 months;number of multi-racial women who were above the poverty level in the past 12 months;number of female multi-racial people who were above the poverty level in the past 12 months;number of female multi-racial americans who were above the poverty level in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,number of white females above the poverty line in the past 12 months;number of white females with an income above the poverty line in the past 12 months;number of white women above poverty level in the past 12 months;number of white women with an income above the poverty line in the past 12 months -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,number of white women who are not hispanic or latino and who are above the poverty level in the past 12 months;number of white women who are not hispanic or latino and who have an income above the poverty level in the past 12 months;number of white women who are not hispanic or latino and who are not poor in the past 12 months;number of white women who are not hispanic or latino and who are not experiencing financial hardship in the past 12 months -Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,number of american indian and alaska native females;number of females who identify as american indian and alaska native;number of american indian and alaska native women;number of females who are american indian or alaska native alone or in combination with one or more other races -Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females;number of females who are american indian or alaska native;number of females who are american indian or alaska native only -Count_Person_Female_AsianAlone,the number of females who are asian alone -Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,the number of females who are asian alone or in combination with one or more other races;the number of females who identify as asian;the number of females who are of asian descent;the number of females who are asian american -Count_Person_Female_AsianOrPacificIslander,the number of asian or pacific islander females;the number of females who are asian or pacific islander;the number of females identifying as asian or pacific islander;the number of asian or pacific islander women -Count_Person_Female_BelowPovertyLevelInThePast12Months,the number of females living below the poverty line in the last year;the number of females with an income below the poverty line in the last year;how many women were living below the poverty line in the last year?;what was the percentage of women living below the poverty line in the last year? -Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native women living below the poverty line in the past 12 months;number of american indian or alaska native women living below the poverty line in the past 12 months;number of american indian or alaska native women with incomes below the poverty line in the past 12 months;number of american indian or alaska native females living below the poverty line in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,the number of asian women living below the poverty line in the past year;the number of asian women living in poverty in the past year;the number of asian women who are poor in the past year;the number of asian women who are low-income in the past year -Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,the number of african american women living below the poverty line in the last year;the number of african american females living in poverty in the last year;the number of african american women with an income below the poverty line in the last year;the number of african american women living in economic hardship in the last year -Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,the number of hispanic females below the poverty line in the last year;the number of hispanic women living in poverty in the last year;the number of hispanic females with an income below the poverty line in the last year;how many hispanic females were below the poverty level last year? -Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander women living below the poverty line in the last year;the number of native hawaiian or other pacific islander women who are living in poverty;number of native hawaiian or other pacific islander alone females living below the poverty level in the last year;number of native hawaiian or other pacific islander alone females with an income below the poverty line in the last year -Count_Person_Female_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,number of females living below the poverty line in the past 12 months who are of some other race alone;number of females living in poverty in the past 12 months who are of some other race alone;number of females who are below the poverty level in the past 12 months and who are of some other race alone;number of females below poverty level in the past 12 months who are some other race alone -Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,number of females who are below the poverty line in the past 12 months and who identify as two or more races;number of females who are below the poverty line in the past 12 months and who identify with more than one race;number of females who are below the poverty line in the past 12 months and who identify with more than one ethnicity;the number of women who are below the poverty line and are two or more races in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,number of white females below the poverty line in the past 12 months;number of white females with an income below the poverty line in the past 12 months;number of white females with an income insufficient to meet basic needs in the past 12 months;number of white females with an income that is below the federal poverty level in the past 12 months -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"number of white alone, not hispanic or latino females below the poverty level in the past 12 months;number of white alone, not hispanic or latino females living in poverty in the past 12 months;number of white alone, not hispanic or latino females with an income below the poverty line in the past 12 months" -Count_Person_Female_BlackOrAfricanAmericanAlone,number of black or african american females living in the united states;the number of females who are black or african american alone -Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"number of black or african american females;number of black or african american women;number of females who are of black or african american descent;number of females who are black or african american, alone or in combination with one or more other races" -Count_Person_Female_DidNotWork,women who are not working and are aged 16 to 64;females who are not in the workforce and are aged 16 to 64;female population not in the workforce aged 16 to 64;female non-working population aged 16 to 64 -Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,number of divorced females living below the poverty line in the past 12 months;number of females who have been divorced in the past 12 months and are currently living below the poverty line;number of females who have been divorced in the past 12 months and are currently experiencing poverty;number of females who have been divorced in the past 12 months and are currently living in poverty -Count_Person_Female_DivorcedInThePast12Months_OwnerOccupied_ResidesInHousingUnit,housing units owned by divorced women in the past 12 months;housing units occupied by divorced women in the past 12 months;housing units where the head of household is a divorced woman in the past 12 months;housing units where the primary resident is a divorced woman in the past 12 months -Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,number of females who have been divorced in the past 12 months and have been determined to be in poverty;number of females who have been divorced in the past 12 months and have been determined to be living in poverty;the number of divorced women in the past 12 months who are living in poverty;the number of women who have been divorced in the past year and are living in poverty -Count_Person_Female_DivorcedInThePast12Months_RenterOccupied_ResidesInHousingUnit,female renters who have been divorced in the past 12 months;the number of female renters who have been divorced in the past 12 months;the percentage of female renters who have been divorced in the past 12 months;the proportion of female renters who have been divorced in the past 12 months -Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,number of females who have been divorced in the past 12 months and are the head of household;number of female heads of household who have been divorced in the past 12 months;number of females who are the head of their household and have been divorced in the past 12 months;number of female household heads who have been divorced in the past 12 months -Count_Person_Female_ForeignBorn,number of females who were born in another country;number of females who are foreign-born;the number of women who were born in another country;the number of females who are foreign-born -Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,number of females born in africa;number of girls born in africa;number of female births in africa;number of baby girls born in africa -Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,number of girls born in asia;number of females born in asia;number of baby girls born in asia;number of female babies born in asia -Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean,the number of females born in the caribbean;number of females born in the caribbean -Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,how many females were born in central american countries other than mexico?;what is the number of females born in central american countries other than mexico?;what is the female population of central american countries other than mexico?;what is the number of females born in central america excluding mexico? -Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,female births in eastern asia;the number of female births in eastern asia;the number of girls born in eastern asia;the number of female babies born in eastern asia -Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,number of females born in europe;number of female births in europe;number of girls born in europe;number of female babies born in europe -Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,number of girls born in latin america;number of female births in latin america;number of females born in the latin american region;number of female births in latin america and the caribbean -Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,number of females born in mexico;number of girls born in mexico;number of female births in mexico;number of baby girls born in mexico -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,number of females born in north america;number of female births in north america;number of baby girls born in north america;number of female babies born in north america -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of females born in northwestern europe;number of female births in northwestern europe;number of girls born in northwestern europe;number of female children born in northwestern europe -Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,female births in oceania;number of girls born in oceania;number of female babies born in oceania;number of female births in the pacific ocean region -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,the number of females born in south central asia;the number of female births in south central asia;the female birth rate in south central asia;the number of girls born in south central asia -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of girls born in southeast asia;number of females born in the southeast asian region;number of baby girls born in southeast asia;female births in southeast asia -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,how many females were born in south america?;what is the number of females born in south america?;how many female births were there in south america?;what is the total number of female births in south america? -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of girls born in southern eastern europe;number of female births in southern eastern europe;how many girls were born in southern eastern europe;how many female births were registered in southern eastern europe -Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,how many females are born in western asia?;what is the number of female births in western asia?;how many girls are born in western asia?;what is the number of female babies born in western asia? -Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,number of foreign-born women in adult prisons;number of female inmates born outside the united states;number of women in adult correctional facilities who were born in other countries;number of foreign-born female prisoners -Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,the number of female students in college or university student housing who were born outside of the united states;the number of foreign-born female students living in college or university student housing;the number of female students in college or university student housing who were born in other countries;number of female students in college or university student housing who were born outside of the united states -Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,"number of foreign-born women living in group quarters;number of foreign-born women living in group quarters, such as dormitories, shelters, or other group living arrangements;number of women born outside the united states living in group quarters;number of female international residents living in group quarters" -Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,number of foreign-born women institutionalized in group quarters;number of foreign-born women institutionalized;number of female immigrants institutionalized;number of foreign-born women in group quarters who are institutionalized -Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,the number of foreign-born females living in non-institutional group quarters;number of females born outside the united states living in non-institutional group quarters;number of foreign-born females living in non-institutional group quarters;number of women born outside the united states living in non-institutional group quarters -Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,how many foreign-born women live in nursing homes?;how many female nursing home residents were born outside of the united states?;what is the number of foreign-born female nursing home residents?;what percentage of nursing home residents are foreign-born women? -Count_Person_Female_FullTimeYearRoundWorker,"the number of women aged 16 to 64 who worked full time for the entire year;the number of female full-time workers aged 16 to 64;the number of women aged 16 to 64 who worked full-time, year-round;the number of female full-time, year-round workers aged 16 to 64" -Count_Person_Female_HispanicOrLatino,number of hispanic women;number of hispanic females in the united states;number of hispanic women in the united states;hispanic women -Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,how many hispanic women identify as american indian or alaska native alone or in combination with one or more other races?;what is the number of hispanic women who identify as american indian or alaska native alone or in combination with one or more other races?;what is the percentage of hispanic women who identify as american indian or alaska native alone or in combination with one or more other races?;how many hispanic females identify as american indian and alaska native alone or in combination with one or more other races? -Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,number of hispanic women who identify as american indian or alaska native only;number of hispanic females who identify as american indian or alaska native exclusively;number of hispanic women who identify as american indian or alaska native solely;number of hispanic females who identify as american indian or alaska native only -Count_Person_Female_HispanicOrLatino_AsianAlone,number of hispanic females who identify as asian only;number of hispanic females who identify as asian exclusively;number of hispanic females who identify as only asian;number of hispanic women who identify as asian only -Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,how many hispanic females identify as asian alone or in combination with one or more other races?;what is the number of hispanic females who identify as asian alone or in combination with one or more other races?;what is the percentage of hispanic females who identify as asian alone or in combination with one or more other races?;what is the proportion of hispanic females who identify as asian alone or in combination with one or more other races? -Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,number of hispanic females who identify as asian or pacific islander;number of hispanic females who are asian or pacific islander;number of hispanic women who identify as asian or pacific islander;number of hispanic women who identify with asian or pacific islander heritage -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,the number of hispanic females who identify as black or african american alone;number of hispanic females who identify as black or african american alone -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic females who identify as black or african american;number of hispanic women who identify as black or african american;how many hispanic women identify as black or african american?;what is the number of hispanic women who identify as black or african american? -Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,how many hispanic women identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the number of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the percentage of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the proportion of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races? -Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander hispanic females;number of hispanic females who identify as native hawaiian or other pacific islander alone;number of hispanic females who identify as native hawaiian or other pacific islander only;number of hispanic females who identify as native hawaiian or other pacific islander exclusively -Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,number of hispanic women who identify as multiracial;number of hispanic females who identify as biracial;number of hispanic women who identify as multiethnic;how many hispanic females identify as multiracial? -Count_Person_Female_HispanicOrLatino_WhiteAlone,number of hispanic females who identify as white only;number of hispanic women who identify as white exclusively;number of hispanic females who identify as solely white -Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic females who identify as white alone or in combination with another race;number of hispanic females who identify as white or more than one race;number of hispanic females who identify as white and another race;number of hispanic females who identify as white and any other race -Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,the number of women who got married in the past 12 months and are below the poverty line in the past 12 months;the number of females who got married in the past 12 months and are living in poverty in the past 12 months;the number of women who got married in the past 12 months and are considered poor in the past 12 months;the number of females who got married in the past 12 months and are struggling financially in the past 12 months -Count_Person_Female_MarriedInThePast12Months_OwnerOccupied_ResidesInHousingUnit,a female who owns a house and got married in the past year;a female who owns a dwelling and got married in the past year -Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,number of females who got married in the past 12 months and their poverty status;1 number of females who were married in the past 12 months and have a poverty status;2 number of females who were married in the past 12 months and are considered to be in poverty;4 number of females who were married in the past 12 months and are living in poverty -Count_Person_Female_MarriedInThePast12Months_RenterOccupied_ResidesInHousingUnit,1 the number of housing units occupied by married females in the past 12 months;the number of housing units rented by married females in the past 12 months;the number of married females who rented housing units in the past 12 months;the number of housing units rented by females who were married in the past 12 months -Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,how many females got married in the past 12 months and are now heads of household?;how many females were married in the past 12 months and are now the head of their household?;what is the number of females who got married in the past 12 months and are now heads of household?;what is the number of females who were married in the past 12 months and are now the head of their household? -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone,how many females identify as native hawaiian and other pacific islander alone?;what is the number of females who identify as native hawaiian and other pacific islander alone?;what is the population of females who identify as native hawaiian and other pacific islander alone?;how many native hawaiian and other pacific islander females are there? -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,how many women identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the number of women who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the percentage of women who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;how many women are native hawaiian and other pacific islander alone or in combination with one or more other races? -Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,the number of females who identify as native hawaiian or other pacific islander only;how many females identify as native hawaiian or other pacific islander alone;how many native hawaiian or other pacific islander females are there;what is the number of native hawaiian or other pacific islander females -Count_Person_Female_NoHealthInsurance,"female, no health insurance;female, without health insurance;female, without health care coverage;female with no health insurance" -Count_Person_Female_NotHispanicOrLatino,the number of females who are not hispanic;the number of non-hispanic women;the number of females who are not of hispanic origin;the number of women who are not hispanic -Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,number of american indian and alaska native females who are not hispanic;number of american indian and alaska native women who are not hispanic;number of american indian and alaska native females who are not hispanic or latino;how many non-hispanic american indian and alaska native females are there? -Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native women who are not of hispanic origin;number of american indian or alaska native females who are not of hispanic descent -Count_Person_Female_NotHispanicOrLatino_AsianAlone,"number of asian-alone, non-hispanic females" -Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,the number of non-hispanic females who are asian alone or in combination with one or more other races;the number of asian females who are not hispanic;the number of asian females who are not of hispanic descent;the number of asian females who are not of hispanic ethnicity -Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,the number of asian or pacific islander females who are not hispanic;the number of non-hispanic asian or pacific islander females;the number of asian or pacific islander females who are not of hispanic origin;the number of asian or pacific islander females who are not of hispanic origin by gender -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,black or african american female population without hispanic origin -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,number of black or african american females who are not hispanic;number of black or african american women who are not hispanic;number of black or african american females who are not of hispanic origin;number of black or african american women who are not of hispanic origin -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"the number of native hawaiian and other pacific islander women who are not hispanic, alone or in combination with one or more other races;the number of native hawaiian and other pacific islander females who are not hispanic;the number of native hawaiian and other pacific islander women who are not hispanic or latino;the number of native hawaiian and other pacific islander females who are not hispanic or latina" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander alone females who are not hispanic;number of native hawaiian or other pacific islander alone women who are not hispanic;number of native hawaiian or other pacific islander alone females who are not hispanic or latino;number of native hawaiian or other pacific islander alone females who are not of hispanic origin -Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,the number of multiracial non-hispanic females;the number of females who are both non-hispanic and multiracial;the number of females who are not hispanic and who identify with more than one race;the number of females who are not hispanic and who identify with two or more races -Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of white females who are not hispanic;number of non-hispanic females who are white;number of white females who are not of hispanic origin;number of white females who are not of hispanic or latino origin -Count_Person_Female_ResidesInAdultCorrectionalFacilities,the number of women in adult correctional facilities;the number of female inmates in adult correctional facilities;the number of women incarcerated in adult correctional facilities;the number of female prisoners in adult correctional facilities -Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,the number of female students living in college or university dormitories;the number of female students living in college or university housing;the number of female students living in college or university residence halls;the number of female students living in college or university dorms -Count_Person_Female_ResidesInGroupQuarters,number of women living in group quarters;number of females living in group quarters;number of females residing in group quarters;number of females staying in group homes -Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,number of females institutionalized in group quarters;number of women institutionalized in group quarters;number of women living in institutions;number of institutionalized women -Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,number of women living in non-institutional group quarters;number of females living in non-institutional group quarters;number of females in non-institutional settings;number of females in group quarters not institutionalized -Count_Person_Female_ResidesInNursingFacilities,what is the number of female residents in nursing homes?;what is the percentage of women in nursing homes?;what is the proportion of women in nursing homes?;how many women are in nursing homes? -Count_Person_Female_SomeOtherRaceAlone,number of females who do not identify as any of the listed races;number of females who identify as a race that is not listed;number of females who identify as a race that is not included in the list;number of females who are some other race alone -Count_Person_Female_TwoOrMoreRaces,how many women identify as multiracial?;what is the percentage of women who are multiracial?;what is the proportion of women who are multiracial?;what is the number of women who identify with more than one race? -Count_Person_Female_WhiteAlone,the number of white females;the number of females who are white;the number of white women;the number of females who identify as white -Count_Person_Female_WhiteAloneNotHispanicOrLatino,number of white females who are not hispanic or latino;the number of females who are white alone and not hispanic or latino;the number of women who are white alone and not hispanic or latino;the number of females who are of white race and not hispanic or latino -Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"number of people who identify as white and female in combination with one or more other races;number of people who identify as female and white alone or in combination with one or more other races;how many people are female and white, or white and another race?;what is the number of people who are female and white, or white and another race?" -Count_Person_Female_WithEarnings,the number of women who are employed;the number of women who have jobs;the number of women who earn a living;the number of women who are gainfully employed -Count_Person_Female_WithEarnings_FullTimeYearRoundWorker,women who are 16 years old or older and work full-time all year round and earn money;female full-time year-round workers aged 16 or older who earn money;female workers aged 16 or older who work full-time all year round and are paid;female employees aged 16 or older who work full-time all year round and receive a salary -Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,number of women who are employed in adult correctional facilities;number of female inmates who have jobs;number of incarcerated women who are paid workers;number of female prisoners who are employed -Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,number of female students who are employed while living in college or university student housing;number of female students who have jobs while living in college or university dormitories;number of female students who are earning money while living in college or university apartments;number of female students who are making money while living in college or university housing -Count_Person_Female_WithEarnings_ResidesInGroupQuarters,number of females earning money while staying in group quarters;number of females who are employed and living in group quarters;number of women who earn money and live in group quarters;the number of females who are earning money and staying in group quarters -Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,number of earning females institutionalized in group quarters;number of women who are earning an income and living in a group setting;number of women who are earning an income and living in group facilities -Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,number of earning females living in non-institutional group quarters;number of females who are earning money and living in non-institutional group quarters -Count_Person_Female_WithEarnings_ResidesInNursingFacilities,how many females are employed in nursing facilities?;the number of women who earn a living working in nursing facilities;the number of women who are paid to work in nursing facilities;3 the number of women who are paid to work in nursing facilities -Count_Person_Female_WithHealthInsurance,women with health insurance;female health insurance holders;female population with health insurance;population of women with health insurance -Count_Person_5OrMoreYears_ForeignBorn,people who were born in another country and now live in the united states;immigrants;people who were born in another country;people who were born in other countries -Count_Person_ForeignBorn_PlaceOfBirthAfrica,the number of people born outside of africa who are currently living in africa;the number of immigrants living in africa;the number of people who have moved to africa from other countries;the number of people who are foreign nationals in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1OrLessRatioToPovertyLine,1 population of foreign-born people in africa living below the poverty line;2 number of foreign-born people in africa with a poverty rate of 1 or more;4 proportion of foreign-born people in africa with a household income below the poverty line;5 share of foreign-born people in africa with a per capita income below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1To1.99RatioToPovertyLine,the number of people born outside of africa who live in africa and have an income that is greater than or equal to 1 times the poverty line and less than or equal to 2 times the poverty line -Count_Person_ForeignBorn_PlaceOfBirthAfrica_2OrMoreRatioToPovertyLine,people born outside of africa who live in africa and have a low income;people born outside of africa who live in africa and are struggling to make ends meet;people born outside of africa who live in africa and are below the poverty line;people born in africa who earn less than twice the poverty line -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native people born outside of africa;the number of american indian or alaska native people who live in africa but were born elsewhere;the number of american indian or alaska native people who are not native to africa;the number of american indian or alaska native people who are immigrants to africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AsianAlone,the number of people born in asia who live in africa;the population of africa that was born in asia;the number of asians living in africa;the number of people of asian descent living in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_BlackOrAfricanAmericanAlone,african americans living in africa;the number of african americans living in africa;the african american population in africa;african americans who live in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_HispanicOrLatino,the number of hispanic people who were born in another country and now live in africa;the number of hispanic immigrants in africa;the number of hispanic people who are not citizens of africa;the number of hispanic people who were born outside of africa and now live there -Count_Person_ForeignBorn_PlaceOfBirthAfrica_NativeHawaiianOrOtherPacificIslanderAlone,native hawaiians or other pacific islanders born in africa;native hawaiians and other pacific islanders born in africa;people born in africa who are native hawaiian or other pacific islander;people who are native hawaiian or other pacific islander and were born in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_OneRace,population of people born in africa who are of one race;total number of people in africa who are foreign-born and uniracial;population of foreign-born people in africa who are uniracial;number of people born outside of africa who are uniracial and currently living in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,poverty status of foreign-born population in africa;poverty status of foreign-born people in africa;poverty status of people born outside of africa who live in africa;poverty status of immigrants in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_SomeOtherRaceAlone,population of foreign-born people of some other race in africa;number of people born outside of africa who identify as some other race;people of some other race who were born in another country and now live in africa;foreign-born people of some other race who live in africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_TwoOrMoreRaces,"the population of africa that was born outside of the continent and identifies as multiracial;the number of people in africa who were born in another country and identify as multiracial;the percentage of the population of africa that was born outside of the continent and identifies as multiracial;the number of people in africa who were born in another country and identify as multiracial, as a percentage of the total population" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAlone,number of white immigrants in africa;number of white people born outside of africa who now live in africa;number of white people who have moved to africa from other countries;number of white people who are not native to africa -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAloneNotHispanicOrLatino,the number of white non-hispanic immigrants in africa;the number of white non-hispanic people born outside of africa who live in africa;the number of white non-hispanic people who have moved to africa from other countries;the number of white non-hispanic people who are not native to africa -Count_Person_ForeignBorn_PlaceOfBirthAsia_1OrLessRatioToPovertyLine,the number of people born in another country who live in asia and have a ratio of income to poverty line of 1 or less;the number of people who were not born in asia but live there and have a ratio of income to poverty line of 1 or less;the number of people who are foreign-born and live in asia and have a ratio of income to poverty line of 1 or less;the number of people who are not native-born and live in asia and have a ratio of income to poverty line of 1 or less -Count_Person_ForeignBorn_PlaceOfBirthAsia_1To1.99RatioToPovertyLine,foreign-born people in asia with a 1 to 20 ratio to the poverty line -Count_Person_ForeignBorn_PlaceOfBirthAsia_2OrMoreRatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthAsia_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native foreign-born population;foreign-born population of american indians or alaska natives -Count_Person_ForeignBorn_PlaceOfBirthAsia_AsianAlone,the number of people born in asia who live in other countries in asia;the number of people who were born in asia and now live in other asian countries;the number of asian-born people living in asia;the number of asian immigrants in asia -Count_Person_ForeignBorn_PlaceOfBirthAsia_BlackOrAfricanAmericanAlone,number of african americans living in asia;number of african american immigrants in asia;number of african americans born outside of the united states who are currently living in asia;number of african americans who have moved to asia from the united states -Count_Person_ForeignBorn_PlaceOfBirthAsia_HispanicOrLatino,the number of hispanic people born outside of the united states who live in asia;the number of hispanic immigrants living in asia;the hispanic population of asia;the number of hispanics in asia -Count_Person_ForeignBorn_PlaceOfBirthAsia_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander people who were born in asia and now live in other parts of the world;the number of native hawaiian or other pacific islander people who are living in asia but were not born there;the number of native hawaiian or other pacific islander people who have moved to asia from other parts of the world;the number of native hawaiian or other pacific islander people who are living in asia as immigrants -Count_Person_ForeignBorn_PlaceOfBirthAsia_OneRace,foreign-born population of asia by race;distribution of the foreign-born population of asia by race -Count_Person_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,the number of people who were born in asia and are currently living in poverty;the number of people who were born in asia and are currently living in a state of poverty;number of people born in asia who are living in a state of poverty;number of foreign-born people in asia living in poverty -Count_Person_ForeignBorn_PlaceOfBirthAsia_SomeOtherRaceAlone,asian immigrants;number of asians who are immigrants -Count_Person_ForeignBorn_PlaceOfBirthAsia_TwoOrMoreRaces,multiracial people who are of asian descent;asians who come from multiple ethnic backgrounds;asians who come from a mixed ethnic background;people born in the united states who identify as asian and more than one other race -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAlone,number of white immigrants in asia;white population born outside of asia;white people who live in asia but were not born there;foreign-born white people in asia -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAloneNotHispanicOrLatino,the number of non-hispanic white people born outside of asia who live in asia;the population of non-hispanic white people who were born in another country and now live in asia;the number of non-hispanic white people who are not citizens of asia but live there;the number of non-hispanic white people who have immigrated to asia -Count_Person_ForeignBorn_PlaceOfBirthCaribbean,the number of people born outside of the caribbean who live in the caribbean;the number of immigrants in the caribbean;the number of people who have moved to the caribbean from other countries;the number of people who are foreign nationals in the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1OrLessRatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1To1.99RatioToPovertyLine,the number of people born in the caribbean who live below the poverty line;the percentage of people born in the caribbean who live below the poverty line;the number of people born outside of the caribbean who live below the poverty line;the percentage of foreign-born people in the caribbean who live below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_2OrMoreRatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AmericanIndianOrAlaskaNativeAlone,the population of american indian or alaska native people who were born in another country and are now living in the caribbean;the number of american indian or alaska native people who were born outside of the caribbean but now live there;the number of american indian or alaska native people who are not native to the caribbean but have moved there;the number of american indian or alaska native people who are immigrants to the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AsianAlone,the number of people born in asia who live in the caribbean;the population of the caribbean that was born in asia;the number of asian immigrants in the caribbean;the number of people of asian descent in the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_BlackOrAfricanAmericanAlone,caribbean-born african americans;african americans born in the caribbean;african americans who were born in the caribbean;african americans who are from the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_HispanicOrLatino,the number of people born in the caribbean who now live in the united states and identify as hispanic;the population of hispanic people in the united states who were born in the caribbean;the number of hispanic people in the united states who are foreign-born and come from the caribbean;the number of people born in the caribbean who have immigrated to the united states and identify as hispanic -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_NativeHawaiianOrOtherPacificIslanderAlone,number of people born in hawaii or other pacific islands who live in the caribbean;number of hawaiian or other pacific islander immigrants in the caribbean;population of hawaiian or other pacific islanders in the caribbean;number of hawaiian or other pacific islanders who were born outside of the caribbean but now live there -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_OneRace,foreign-born uniracial population in the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,the percentage of people born in the caribbean who live in poverty;the number of people born in the caribbean who live in poverty;the proportion of people born in the caribbean who live in poverty;the share of people born in the caribbean who live in poverty -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_SomeOtherRaceAlone,"population of foreign-born people of some other race in the caribbean;number of people born outside of the caribbean who identify as some other race;percentage of the caribbean population who are foreign-born and identify as some other race;number of people born outside of the caribbean who identify as some other race, as a percentage of the total population of the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_TwoOrMoreRaces,the caribbean's multiracial foreign-born population;the caribbean's population of people who were born outside the country and identify as multiracial;1 the number of people who were born outside of the caribbean and identify as multiracial;2 the number of people who were born outside of the caribbean and identify with more than one race -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAlone,foreign-born white people in the caribbean;white people who were born in other countries and now live in the caribbean;white people who are not native to the caribbean;white people who are immigrants to the caribbean -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAloneNotHispanicOrLatino, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people who were born in central america and now live in the united states, excluding mexico;the number of central american immigrants in the united states, not including those from mexico;population of central america excluding mexico;number of people born in central america who live outside of mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1OrLessRatioToPovertyLine,the percentage of people born in central america (excluding mexico) with a poverty rate of 1 or less -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1To1.99RatioToPovertyLine,the poverty rate among foreign-born central americans is 1 to 2 times higher than the poverty rate among foreign-born mexicans;the percentage of central americans living below the poverty line is 1 to 2 times higher than the percentage of mexicans living below the poverty line;the percentage of people born in central america who live in the united states and have a household income below the poverty line is 1 to 20;the proportion of central american immigrants living in the united states with a household income below the poverty line is 1 to 20 -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_2OrMoreRatioToPovertyLine,"the number of people born in central america (excluding mexico) who live below the poverty line as a percentage of the total population;the percentage of people born in central america (excluding mexico) who live below the poverty line, expressed as a ratio;the percentage of people in central america (excluding mexico) who were born in another country and live below the poverty line;the proportion of people born in central america (excluding mexico) who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AmericanIndianOrAlaskaNativeAlone,"the number of american indian or alaska native people who were born in central america but live in the united states, excluding mexico;the number of american indian or alaska native immigrants from central america who live in the united states;the number of american indian or alaska native people who were born in central america and now live in the united states, but not mexico;the number of american indian or alaska native people who are foreign-born and live in the united states, but not mexico, and who were born in central america" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AsianAlone, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_BlackOrAfricanAmericanAlone,"african american population in central america, excluding mexico;number of african americans living in central america, excluding mexico;percentage of african americans in central america, excluding mexico;african american immigrants in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_HispanicOrLatino,"central american immigrants;foreign-born hispanics from central america;hispanic immigrants from central america, excluding mexico;hispanics born in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_NativeHawaiianOrOtherPacificIslanderAlone,people who were born in central america or hawaii or other pacific islands and are now living in the united states;people who have moved to the united states from central america or hawaii or other pacific islands;people who are not originally from the united states but are now living there and were born in central america or hawaii or other pacific islands -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_OneRace,"the foreign-born population of uniracial central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,"the number of foreign-born people in central america, excluding mexico, who are living in poverty;the percentage of foreign-born people in central america, excluding mexico, who are living in poverty;the proportion of foreign-born people in central america, excluding mexico, who are living in poverty;the incidence of poverty among foreign-born people in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_SomeOtherRaceAlone,"population of central america, except mexico, that is of a different race than mexican" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_TwoOrMoreRaces,"the number of people who were born in another country and now live in the united states, who are from central america but not mexico, and who identify as two or more races;the number of people who were born in another country and now live in the united states, who are from central america but not mexico, and who identify as more than one race;the number of people born in central america but not mexico who identify as two or more races" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAlone,white people who were born in central america but not mexico;white central americans;white people who were born in central america but are not mexican;white people born in central america but not mexico -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAloneNotHispanicOrLatino,"the number of white non-hispanic foreign-born people in central america, excluding mexico;the population of white non-hispanic immigrants in central america, excluding mexico;the number of people born outside of central america who are white and non-hispanic and currently living in central america, excluding mexico;the number of people who are white, non-hispanic, and foreign-born in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia,people born in eastern asia who live in other countries;people from eastern asia who live abroad;foreign-born people from eastern asia;people who were born in eastern asia but live in other countries -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1OrLessRatioToPovertyLine,the foreign-born population in eastern asia with a ratio of 1 to the poverty line or less -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1To1.99RatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_2OrMoreRatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AmericanIndianOrAlaskaNativeAlone,native american or alaska native population born in eastern asia;people born in eastern asia who are american indian or alaska native;people born in eastern asia who identify as american indian or alaska native;number of american indians or alaska natives born in eastern asia -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AsianAlone,the number of asian immigrants in eastern asia;the number of asian-born people in eastern asia;the number of asian expatriates in eastern asia;the number of people of asian descent living in eastern asia -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_BlackOrAfricanAmericanAlone,african americans living in eastern asia;the number of african americans living in eastern asia;the population of african americans in eastern asia;african americans who live in eastern asia -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_HispanicOrLatino,people born in hispanic countries who live in eastern asia;people of hispanic descent who live in eastern asia;hispanics who live in eastern asia;hispanic immigrants to eastern asia -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiians or other pacific islanders who were born in eastern asia;the number of native hawaiians or other pacific islanders who were born in the eastern asian region;the number of native hawaiians or other pacific islanders who were born in eastern asia and are now living in the united states;the number of native hawaiians or other pacific islanders who were born in eastern asia and are now living in the united states as immigrants -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_OneRace,foreign-born population of eastern asia by race -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,poverty rate of foreign-born people in eastern asia;percentage of foreign-born people in eastern asia living in poverty;number of foreign-born people in eastern asia living below the poverty line;foreign-born population in eastern asia with determined poverty status -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_SomeOtherRaceAlone,number of people born in eastern asia and other races who are living in the united states;number of foreign-born people from eastern asia and other races living in the united states;foreign-born population of eastern asia and some other races;population of eastern asia and some other races who were born outside the us -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_TwoOrMoreRaces,people who were born in another country and live in eastern asia and identify as multiracial;people who were born outside of eastern asia and identify as multiracial;1 the number of people born outside of eastern asia who identify as multiracial;2 the percentage of the population in eastern asia who are foreign-born and multiracial -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAlone,number of white immigrants in eastern asia;population of white expats in eastern asia;white people who live in eastern asia;white people who were born outside of eastern asia but now live there -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAloneNotHispanicOrLatino,"the number of white, non-hispanic foreign-born people in eastern asia;the population of white, non-hispanic immigrants in eastern asia;the number of white, non-hispanic people who were born outside of eastern asia and now live in eastern asia;the population of white, non-hispanic people who have moved to eastern asia from other countries" -Count_Person_ForeignBorn_PlaceOfBirthEurope_1OrLessRatioToPovertyLine,percentage of foreign-born people in europe living below the poverty line;proportion of foreign-born people in europe living below the poverty line;what percentage of foreign-born people in europe live below the poverty line?;the percentage of foreign-born people in europe living below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthEurope_1To1.99RatioToPovertyLine,the foreign-born population in europe with a 1 to 2 ratio to the poverty line -Count_Person_ForeignBorn_PlaceOfBirthEurope_2OrMoreRatioToPovertyLine,the percentage of foreign-born people in europe living below the poverty line is 2 or more times the national average;more than 2 times the national average of foreign-born people in europe live below the poverty line;the percentage of foreign-born people in europe who live below the poverty line is two or more times the national average;more than two times as many foreign-born people in europe live below the poverty line than the national average -Count_Person_ForeignBorn_PlaceOfBirthEurope_AmericanIndianOrAlaskaNativeAlone,the number of american indians or alaska natives living in europe;the population of american indians or alaska natives in europe;the number of american indians or alaska natives who were born in europe;the number of american indians or alaska natives who have moved to europe -Count_Person_ForeignBorn_PlaceOfBirthEurope_AsianAlone,the number of people born in asia who now live in europe;the population of europe that was born in asia;the number of asian immigrants in europe;the number of asian people living in europe who were not born there -Count_Person_ForeignBorn_PlaceOfBirthEurope_BlackOrAfricanAmericanAlone,the percentage of african americans in the united states who were born in europe;the number of african americans in the united states who were born in europe;percentage of african americans born in europe;share of african americans born in europe -Count_Person_ForeignBorn_PlaceOfBirthEurope_HispanicOrLatino,the number of hispanic people who were born in another country and now live in europe;the number of hispanic immigrants in europe;the hispanic population of europe;the number of people of hispanic descent living in europe -Count_Person_ForeignBorn_PlaceOfBirthEurope_NativeHawaiianOrOtherPacificIslanderAlone,foreign-born native hawaiian or other pacific islanders in europe;native hawaiians or other pacific islanders born outside of europe;native hawaiians or other pacific islanders living in europe;native hawaiian or other pacific islander immigrants in europe -Count_Person_ForeignBorn_PlaceOfBirthEurope_OneRace,distribution of the population of europe by race and place of birth -Count_Person_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,the percentage of foreign-born people in europe who are living in poverty;the number of foreign-born people in europe who are living below the poverty line;the proportion of foreign-born people in europe who are living in deprived circumstances;the share of foreign-born people in europe who are experiencing economic hardship -Count_Person_ForeignBorn_PlaceOfBirthEurope_SomeOtherRaceAlone,"population of foreign-born people from other races in europe;people in europe who were born outside of europe and are not of european descent, as a percentage of the total population;population of foreign-born people of other races in europe;number of foreign-born people of other races in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_TwoOrMoreRaces,people born outside of europe who identify as multiracial;3 people born outside of europe who have mixed racial heritage;4 people born outside of europe who identify with more than one racial group;people who are born outside of europe and identify with multiple racial or ethnic groups -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAlone,the number of white immigrants in europe;the percentage of white immigrants in europe;the proportion of white immigrants in europe;the share of white immigrants in europe -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAloneNotHispanicOrLatino,population of white non-hispanic immigrants in europe;number of white non-hispanic immigrants in europe;size of the white non-hispanic immigrant population in europe;white non-hispanic immigrants in europe -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1OrLessRatioToPovertyLine,the percentage of people in latin america who were born outside of the country and live below the poverty line;the percentage of people in latin america who were born in another country and live below the poverty line;the proportion of people in latin america who were born in another country and are poor;the percentage of people born in latin america who live below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1To1.99RatioToPovertyLine,the percentage of foreign-born latin americans living below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_2OrMoreRatioToPovertyLine,the number of people in latin america who were born in another country and have a household income that is between 1 and 2 times the poverty line as a percentage of the total population -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AmericanIndianOrAlaskaNativeAlone,people born in latin america who are american indian or alaska native;latin american american indian or alaska natives;american indian or alaska native latin americans;latin american people who are american indian or alaska native -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AsianAlone,asian immigrants in latin america;people born in asia who live in latin america;asian-born latin americans;the asian diaspora in latin america -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_BlackOrAfricanAmericanAlone,the number of african americans born in latin america;the number of people born in latin america who are african american;the number of african americans who live in latin america;the number of people of african descent living in latin america -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_HispanicOrLatino,latin american hispanic immigrants;hispanic immigrants from latin america;immigrants from latin america who are hispanic;hispanics who are immigrants from latin america -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_NativeHawaiianOrOtherPacificIslanderAlone,native hawaiian or other pacific islander foreign-born population in latin america;native hawaiian or other pacific islander immigrants in latin america;native hawaiian or other pacific islander people who were born in latin america;people of native hawaiian or other pacific islander descent who live in latin america -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_OneRace,people who were born in latin america and are of one race;people who were born in latin america and identify as one race;people who were born in latin america and are not biracial;people born in latin america who are only one race -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,the percentage of people born in latin america who live in poverty;the number of people born in latin america who live below the poverty line;the proportion of people born in latin america who are poor;poverty rate among latin american immigrants -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_SomeOtherRaceAlone,people who live in latin america but were not born there;population of foreign-born people of other races in latin america;number of people born outside of latin america who identify as other races;total number of people in latin america who were born in other countries and identify as other races -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_TwoOrMoreRaces,foreign-born multiracial people in latin america;people born outside of latin america who identify as multiracial;people who identify as multiracial and were born outside of latin america;people who are foreign-born and multiracial in latin america -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAlone,white population born in latin america;white people born in latin america;people born in latin america who are white;latin american white people -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAloneNotHispanicOrLatino,the number of white non-hispanic people born outside of latin america who live in latin america;the population of white non-hispanic people born outside of latin america who live in latin america;the number of people who were born outside of latin america and are white non-hispanic and live in latin america;the population of people who were born outside of latin america and are white non-hispanic and live in latin america -Count_Person_ForeignBorn_PlaceOfBirthMexico,the number of foreign-born residents in mexico;the number of people who have immigrated to mexico;the number of immigrants in mexico;the number of people born in another country who live in mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_1OrLessRatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthMexico_1To1.99RatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthMexico_2OrMoreRatioToPovertyLine,the number of people born outside of mexico who live in mexico and earn more than twice the poverty line;the number of people who were born outside of mexico and live in mexico with an income of more than twice the poverty line;the number of people who were born outside of mexico and live in mexico with an income that is more than twice the poverty line;the number of people born outside of mexico who live in mexico and whose income is 2 times or more the poverty line -Count_Person_ForeignBorn_PlaceOfBirthMexico_AmericanIndianOrAlaskaNativeAlone,mexican and american indian or alaska native people who were born in another country;people of mexican and american indian or alaska native descent who were born outside of the united states;mexican and american indian or alaska native immigrants;mexican and american indian or alaska native people who are not us citizens -Count_Person_ForeignBorn_PlaceOfBirthMexico_AsianAlone,foreign-born asian population in mexico;asian immigrants in mexico;asian people who were born in other countries and now live in mexico;people of asian descent who live in mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_BlackOrAfricanAmericanAlone,number of african americans born in mexico;african american population in mexico;how many african americans live in mexico;african american population of mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_HispanicOrLatino,mexican-born hispanics;hispanics born in mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander immigrants living in mexico;the native hawaiian or other pacific islander foreign-born population in mexico;the number of native hawaiian or other pacific islander people who were born in another country and now live in mexico;the native hawaiian or other pacific islander immigrant community in mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_OneRace, -Count_Person_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,the number of foreign-born people in mexico who have been determined to be living in poverty;the population of foreign-born people in mexico who have been classified as poor;the number of people in mexico who were born in another country and are living in poverty;the population of people in mexico who were born outside of the country and are considered to be poor -Count_Person_ForeignBorn_PlaceOfBirthMexico_SomeOtherRaceAlone,"the population of mexico that was born in another country and identifies as some other race;the number of people in mexico who were born in another country and identify as some other race;the percentage of the population of mexico that was born in another country and identifies as some other race;the number of people in mexico who were born in another country and identify as some other race, as a percentage of the total population" -Count_Person_ForeignBorn_PlaceOfBirthMexico_TwoOrMoreRaces,the multiracial population in mexico;the proportion of the mexican population that is multiracial;people born outside of mexico who identify as multiracial;multiracial people who live in mexico but were born in another country -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAlone,the number of white people born in mexico;the percentage of white people born in mexico;the proportion of white people born in mexico;the white population of mexico that was born outside of mexico -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAloneNotHispanicOrLatino,foreign-born white non-hispanics;white non-hispanic immigrants;white immigrants who were not born in the united states;foreign-born white non-hispanic people -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica,number of people born outside of north america who live in north america;number of foreign-born people in north america;number of immigrants in north america;number of people who have moved to north america from other countries -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1OrLessRatioToPovertyLine,the ratio of foreign-born people in north america living below the poverty line;the percentage of foreign-born people in north america living below the poverty line;the proportion of foreign-born people in north america living below the poverty line;what percentage of the foreign-born population in north america lives below the poverty line? -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1To1.99RatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_2OrMoreRatioToPovertyLine,the percentage of foreign-born people in north america living at or below 2 times the poverty line;the number of foreign-born people in north america living at or below 2 times the poverty line;the proportion of foreign-born people in north america living at or below 2 times the poverty line;the share of foreign-born people in north america living at or below 2 times the poverty line -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native people who were born outside of north america;the number of foreign-born american indian or alaska native people in north america;the number of american indian or alaska native people who live in north america but were born in another country;the number of american indian or alaska native people who are immigrants to north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AsianAlone,the number of people born in asia who live in north america;the number of asian immigrants in north america;the asian population of north america;the number of asians in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_BlackOrAfricanAmericanAlone,african americans born outside of north america;foreign-born people of african descent in north america;the number of african americans who were born in another country and now live in north america;the percentage of the african american population in north america that was born in another country -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_HispanicOrLatino,number of hispanic foreign-born people in north america;hispanic population born outside of north america;number of people born outside of north america who identify as hispanic;number of hispanic people who were not born in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander people born outside of north america who live in north america;the number of native hawaiian or other pacific islander immigrants in north america;the number of native hawaiian or other pacific islander people who have moved to north america from other countries;the number of native hawaiian or other pacific islander people who were not born in north america but now live in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_OneRace,foreign-born population of north america that is monoethnic -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,the percentage of foreign-born people in north america living in poverty;the number of foreign-born people in north america living in poverty;the proportion of foreign-born people in north america living in poverty;the share of foreign-born people in north america living in poverty -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_SomeOtherRaceAlone,population of north america who were born in another country and identify as some other race;foreign-born population of north america who identify as some other race;people who were born in another country and identify as some other race living in north america;people who identify as some other race and were born in another country living in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_TwoOrMoreRaces,foreign-born multiracial people in north america;people born outside of north america who identify as multiracial;people who are multiracial and were born in north america;foreign-born multiracial population in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAlone,the number of white immigrants in north america;the white immigrant population in north america;the number of white people who were born in another country and now live in north america;the white immigrant community in north america -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAloneNotHispanicOrLatino,the number of white non-hispanic people who were born outside of north america and now live there;the population of white non-hispanic people in north america who were not born there;the number of white non-hispanic immigrants in north america;the number of white non-hispanic people who have moved to north america from other countries -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,people who have moved to northern western europe from other countries -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1OrLessRatioToPovertyLine,the percentage of people born outside of northern western europe who live below the poverty line;percentage of foreign-born people in northern western europe living below the poverty line;share of foreign-born people in northern western europe with a poverty rate of 1 or more;number of foreign-born people in northern western europe living on or below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1To1.99RatioToPovertyLine,"the ratio of the foreign-born population to the poverty line in northern western europe is 1 to 20;in northern western europe, the ratio of foreign-born people living below the poverty line is 1 to 2" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_2OrMoreRatioToPovertyLine,the number of people in northern western europe who were born in another country and have a poverty ratio of 2 or more;the number of people in northern western europe who were born in another country and whose income is below the poverty line by a factor of 2 or more -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AmericanIndianOrAlaskaNativeAlone,population of american indians or alaska natives born outside of northern western europe;number of american indians or alaska natives born outside of northern western europe;people born outside of northern western europe who are american indians or alaska natives;american indians or alaska natives who were born outside of northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AsianAlone,foreign-born asian population in northern western europe;asian population born outside of northern western europe;people born in asia who live in northern western europe;asian immigrants in northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_BlackOrAfricanAmericanAlone,african americans living in northwestern europe;black people born in africa who now live in northwestern europe;african americans who have migrated to northwestern europe;african americans who have moved to northwestern europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_HispanicOrLatino,the number of hispanic immigrants in northern western europe;the number of people born in hispanic countries who live in northern western europe;the hispanic population of northern western europe;the number of hispanics in northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_NativeHawaiianOrOtherPacificIslanderAlone,native hawaiian or other pacific islander immigrants in north western europe;foreign-born native hawaiians or other pacific islanders in north western europe;people born in north western europe who are of native hawaiian or other pacific islander descent;people of native hawaiian or other pacific islander descent who live in north western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_OneRace,foreign-born monoracial population in northern western europe;monoracial population born outside of northern western europe;population of northern western europe who are monoracial and foreign-born;foreign-born monoracial people in northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,the number of foreign-born people in northern western europe who are living in poverty;the percentage of foreign-born people in northern western europe who are living in poverty;the proportion of foreign-born people in northern western europe who are living in poverty;the share of foreign-born people in northern western europe who are living in poverty -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_SomeOtherRaceAlone,foreign-born population of some other race in northern western europe;people who were born in another country and now live in northern western europe who are not of european descent;population of foreign-born people of some other race in northern western europe;people of some other race who were born outside of northern western europe and now live there -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_TwoOrMoreRaces,multiracial population in northern western europe that was born outside the country;people born outside of northern western europe who identify as multiracial;the multiracial population of northern western europe;multiracial people born outside of northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAlone,the number of white people who were born outside of northern western europe but now live there;the percentage of the population of northern western europe that is white and was born outside of the region;the number of white immigrants in northern western europe;the white immigrant population in northern western europe -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAloneNotHispanicOrLatino,"the number of white, non-hispanic foreign-born people in northern western europe;the population of white, non-hispanic immigrants in northern western europe;the number of white, non-hispanic people who were born outside of northern western europe and now live there;the number of white, non-hispanic people who have moved to northern western europe from other countries" -Count_Person_ForeignBorn_PlaceOfBirthOceania,the number of immigrants in oceania;population of oceania that was born outside of oceania;number of people in oceania who are not native to oceania;people born outside of oceania who live in oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_1OrLessRatioToPovertyLine,what percentage of the foreign-born population in oceania lives below the poverty line?;what is the poverty rate among foreign-born people in oceania?;what is the percentage of oceania's population that is foreign-born and living in poverty? -Count_Person_ForeignBorn_PlaceOfBirthOceania_1To1.99RatioToPovertyLine,the ratio of foreign-born people in oceania to the poverty line is 1 to 20;half of foreign-born people in oceania live below the poverty line;one in two foreign-born people in oceania live below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthOceania_2OrMoreRatioToPovertyLine,"the percentage of people born outside of oceania who live below the poverty line;the number of people born outside of oceania who live below the poverty line, divided by the total number of people born outside of oceania;the number of people born outside of oceania who live below the poverty line, expressed as a percentage of the total population of oceania;the proportion of people born outside of oceania who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthOceania_AmericanIndianOrAlaskaNativeAlone,foreign-born population of oceania and american indian or alaska native alone;population of oceania and american indian or alaska native alone who were born outside the united states;people born outside the united states who identify as oceanian or american indian or alaska native alone;people who identify as oceanian or american indian or alaska native alone and were born outside the united states -Count_Person_ForeignBorn_PlaceOfBirthOceania_AsianAlone,the number of people born in asia who live in oceania;the number of asian immigrants in oceania;the asian population in oceania;the number of asians living in oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_BlackOrAfricanAmericanAlone,african americans born in oceania;people of african descent born in oceania;black people born in oceania;african-born people living in oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_HispanicOrLatino,people born in hispanic countries who live in oceania;hispanic people who live in oceania;people from hispanic countries who live in oceania;hispanic immigrants in oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_NativeHawaiianOrOtherPacificIslanderAlone,oceania native hawaiian or other pacific islander population who were born in another country;population of oceania native hawaiian or other pacific islanders who were born outside of the united states;oceania native hawaiian or other pacific islander population who are foreign-born;oceania native hawaiian or other pacific islander population who were not born in the united states -Count_Person_ForeignBorn_PlaceOfBirthOceania_OneRace,the number of people who were born in another country and are now living in oceania;the percentage of the population of oceania that was born in another country;the number of people who have migrated to oceania;the percentage of people born outside of oceania who live in oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,poverty rate among foreign-born people in oceania;percentage of foreign-born people in oceania living in poverty;the number of foreign-born people in oceania living in poverty;the percentage of foreign-born people in oceania living in poverty -Count_Person_ForeignBorn_PlaceOfBirthOceania_SomeOtherRaceAlone,"people born outside of oceania who identify as a race other than ""white"" or ""indigenous"";people born outside of oceania who live in oceania and identify as a race other than white;people who were born in oceania but identify as a race other than white;people who were born outside of oceania but moved to oceania and identify as a race other than white" -Count_Person_ForeignBorn_PlaceOfBirthOceania_TwoOrMoreRaces,people born in oceania who identify as multiracial;people of multiple races who were born in oceania;people born outside of oceania who identify as multiracial;people who identify as multiracial and were born outside of oceania -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAlone,the number of white people who were born outside of oceania but now live there;the percentage of the population of oceania that is white and was born outside of the region;the number of white immigrants in oceania;the number of white people who have moved to oceania from other countries -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAloneNotHispanicOrLatino,number of white non-hispanic foreign-born people in oceania;population of white non-hispanic immigrants in oceania;count of white non-hispanic people born outside of oceania who now live in oceania;total number of white non-hispanic people who were born in another country and now live in oceania -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,people born outside of south central asia who currently live in the region;number of people living in south central asia who were born in other countries;the number of people born in south central asia who are living in another country;immigrants to south central asia -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1OrLessRatioToPovertyLine,the percentage of people born in south central asia who live below the poverty line;1 the percentage of people born in south central asia who live below the poverty line;2 the proportion of south central asian immigrants who are poor -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1To1.99RatioToPovertyLine,the percentage of people born in south central asia who live in poverty is 1 to 2 times the poverty line -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_2OrMoreRatioToPovertyLine,the number of people born in south central asia who are living in difficult economic circumstances;the number of people born outside of south central asia who live below the poverty line;the number of people born in south central asia who live above the poverty line;the number of people born in south central asia who have a ratio of income to poverty line of 2 or more -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native people who were born in south central asia;people of american indian or alaska native descent who were born in south central asia;people who were born in south central asia and identify as american indian or alaska native;people who were born in south central asia and have american indian or alaska native ancestry -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AsianAlone,the population of people born in asia who live in south central asia;the number of people born in asia who live in south central asia;the number of asian-born people in south central asia;the asian population of south central asia -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_BlackOrAfricanAmericanAlone,south central asian black or african americans -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_HispanicOrLatino,hispanic population in east asia;hispanic community in east asia;the number of hispanic people born outside of the united states who live in eastern asia;the number of hispanic immigrants living in eastern asia -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander foreign-born people in south central asia;the number of native hawaiian or other pacific islander immigrants in south central asia;the number of native hawaiian or other pacific islander people who were born in another country and now live in south central asia;the number of native hawaiian or other pacific islander people who are not citizens of south central asia but live there -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_OneRace,population of foreign-born people of a single race in south central asia;number of foreign-born people of a single race in south central asia;number of people born outside of south central asia who identify as a single race;population of foreign-born people who identify as a single race in south central asia -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,the number of people born in south central asia who live in poverty;the percentage of people born in south central asia who live in poverty;the proportion of people born in south central asia who live in poverty;the share of people born in south central asia who live in poverty -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_SomeOtherRaceAlone,foreign-born people of south asian descent;people of south asian descent who were born outside of the united states;people of south asian descent who are not native-born americans;people of south asian descent who are immigrants -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_TwoOrMoreRaces,"the population of south central asia that was born outside of the region and identifies as more than one race;the number of people in south central asia who were born in another country and identify as more than one race;the percentage of the population of south central asia that was born outside of the region and identifies as more than one race;the number of people in south central asia who were born in another country and identify as more than one race, as a percentage of the total population" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAlone,foreign-born white population in south central asia;white people born outside of south central asia who now live there;white immigrants to south central asia;white expats in south central asia -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAloneNotHispanicOrLatino,"the number of white, non-hispanic foreign-born people living in south central asia;the population of white, non-hispanic immigrants living in south central asia;the number of white, non-hispanic people who were born outside of south central asia and now live there;the number of white, non-hispanic people who have moved to south central asia from other countries" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,the number of people who were born in another country and now live in south-east asia;the number of people who are not citizens of south-east asia but live there;the number of people who have moved to south-east asia from another country;the number of people who were born in another country but now live in south-east asia -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1OrLessRatioToPovertyLine,the percentage of people born outside of southeast asia who live below the poverty line in southeast asia;the proportion of people who were born in another country and now live in southeast asia who have an income below the poverty line in southeast asia;the percentage of people born outside of southeast asia who live below the poverty line;the share of southeast asia's population that was born elsewhere and is poor -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1To1.99RatioToPovertyLine, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_2OrMoreRatioToPovertyLine,the proportion of foreign-born people in south east asia who live below the poverty line is at least 2 times the proportion of native-born people in south east asia who live below the poverty line;the number of foreign-born people in south east asia who live below the poverty line is at least 2 times the number of native-born people in south east asia who live below the poverty line;the foreign-born population in south east asia is at least 2 times more likely to be poor than the native-born population;the number of foreign-born people in southeast asia who live below the poverty line by a factor of 2 or more -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AmericanIndianOrAlaskaNativeAlone,the number of american indians or alaska natives born outside of the united states who live in southeast asia;the number of american indians or alaska natives who are foreign-born and live in southeast asia;the number of american indians or alaska natives who are immigrants and live in southeast asia;the number of american indians or alaska natives who are expatriates and live in southeast asia -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AsianAlone,number of immigrants living in south-east asia;number of immigrants in south-east asia;number of immigrants in south-eastern asia -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_BlackOrAfricanAmericanAlone,what is the population of african americans in southeast asia?;how many people of african descent live in southeast asia?;what is the number of african americans living in southeast asia?;what is the african american population in southeast asia? -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_HispanicOrLatino,hispanic population in southeast asia;hispanic people living in southeast asia;hispanic residents of southeast asia;hispanic community in southeast asia -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,the number of people born in south eastern asia who are native hawaiian or other pacific islander;the number of native hawaiian or other pacific islander immigrants in south eastern asia;the native hawaiian or other pacific islander population of south eastern asia;the number of native hawaiians or other pacific islanders living in south eastern asia -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_OneRace,1 people born in south east asia who are of one race -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,the number of foreign-born people in southeast asia who have been determined to be living in poverty;the percentage of foreign-born people in southeast asia who live in poverty;the proportion of foreign-born people in southeast asia who have been determined to be living in poverty;the number of foreign-born people in southeast asia who have been determined to be living below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_SomeOtherRaceAlone,foreign-born population of other races in southeast asia;number of foreign-born people of other races in southeast asia;foreign-born population of southeast asia who are not of any of the region's major ethnic groups;people born outside of southeast asia who now live in the region and are not of any of the region's major ethnic groups -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_TwoOrMoreRaces,foreign-born people from southeast asia who identify as two or more races make up a significant portion of the population;people who identify as two or more races and are foreign-born from southeast asia are a significant part of the population;a significant portion of the population is made up of foreign-born people from southeast asia who identify as two or more races -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAlone,the number of white people who were born outside of south east asia and now live there;the number of white immigrants in south east asia;the number of white expats in south east asia;the number of white people who have moved to south east asia from other countries -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAloneNotHispanicOrLatino,"number of white non-hispanic foreign-born people in southeast asia;number of white non-hispanic people born outside of southeast asia who now live in southeast asia;the number of white, non-hispanic foreign-born people in southeast asia;the number of white, non-hispanic people who were born outside of southeast asia and now live there" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica,the number of people born outside of south america who are currently living in south america;the number of immigrants living in south america;the number of people who have moved to south america from other countries;the number of people who are not native to south america -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1OrLessRatioToPovertyLine,population of foreign-born people in south america with a poverty rate of 100%;the number of foreign-born people in south america who live below the poverty line;the share of foreign-born people in south america who live below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1To1.99RatioToPovertyLine,the percentage of people born in south america who live below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_2OrMoreRatioToPovertyLine,foreign-born people from south america who earn twice the poverty line or more;south american immigrants who earn twice the poverty line or more;people from south america who were born in another country and earn twice the poverty line or more;immigrants from south america who earn twice the poverty line or more -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native immigrants in south america;south american citizens who are american indian or alaska native;american indian or alaska native people who live in south america;south american people who are american indian or alaska native by birth -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AsianAlone,people born in asia who live in south america;asian immigrants in south america;south american citizens of asian descent;people of asian descent living in south america -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_BlackOrAfricanAmericanAlone,african americans living in south america;african american immigrants in south america;south american citizens of african american descent;people of african american descent living in south america -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_HispanicOrLatino,hispanic population in south america;hispanic people living in south america;south american population of hispanic descent;hispanic south americans -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander people who were born outside of south america but now live there;the population of native hawaiian or other pacific islander people who are not originally from south america but now live there;the number of native hawaiian or other pacific islander people who have immigrated to south america;the native hawaiian or other pacific islander diaspora in south america -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_OneRace,foreign-born monoracial population in south america;south america's foreign-born monoracial population;the monoracial population of south america that was born outside of the country;the number of people in south america who were born outside of the country and identify as monoracial -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,how many south american immigrants live in poverty?;what percentage of south american immigrants live in poverty?;what is the economic status of south american immigrants?;how many south american immigrants live in poverty in the us? -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_SomeOtherRaceAlone,"foreign-born population of south america by race;foreign-born population of south america, by race;south america's foreign-born population by race;foreign-born people of other races in south america" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_TwoOrMoreRaces,the number of people born outside of south america who identify as multiracial;the percentage of the south american population who are foreign-born and multiracial;the percentage of the south american population that is foreign-born and multiracial;the number of foreign-born multiracial people in south america -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAlone,the number of white people born outside of south america who now live in south america;the number of white immigrants in south america;the white immigrant population in south america;the number of white people who have moved to south america from other countries -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAloneNotHispanicOrLatino,foreign-born south american white non-hispanics;south american white non-hispanics born outside the united states;south american white non-hispanic immigrants;south american white non-hispanics who moved to the united states -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,population of south eastern europe born outside the region;people born outside south eastern europe who live in the region;foreigners in south eastern europe;people from other countries living in south eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1OrLessRatioToPovertyLine,the percentage of people born outside of southern eastern europe who live below the poverty line;the proportion of foreign-born residents in southern eastern europe who are poor;the number of foreign-born people in southern eastern europe who are living below the poverty line;the percentage of foreign-born people in southern eastern europe who are living in poverty -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1To1.99RatioToPovertyLine,the number of people born outside of southern eastern europe who live in poverty is 1 to 2 times the poverty line;the poverty rate for foreign-born people in southern eastern europe is 1 to 2 times the national poverty rate -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_2OrMoreRatioToPovertyLine,people born in southern eastern europe who have a ratio of income to poverty line of 2 or more;people born in southern eastern europe who are at or below the poverty line;people born in southern eastern europe who have a ratio of 2 or more to the poverty line;people born in southern eastern europe who live below the poverty line by a factor of two or more -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native people born in southern eastern europe;the number of people born in southern eastern europe who are american indian or alaska native;the number of american indian or alaska native people who were born in southern eastern europe;the number of people who were born in southern eastern europe and are american indian or alaska native -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AsianAlone,people born in south eastern europe who are of asian descent;asians who were born in south eastern europe;people of asian descent who are citizens of south eastern european countries;asians who have immigrated to south eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_BlackOrAfricanAmericanAlone,black people born outside of southern and eastern europe who now live there;people born in africa who now live in southern eastern europe;people of african descent who now live in southern eastern europe;number of african-americans born outside of the united states who live in southern and eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_HispanicOrLatino,hispanics born in south eastern europe;hispanics who were born in south eastern europe;hispanics who are from south eastern europe;hispanics who have south eastern european ancestry -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_NativeHawaiianOrOtherPacificIslanderAlone,number of people born in native hawaiian or other pacific islander territories who live in southern eastern europe;number of native hawaiian or other pacific islanders who live in southern eastern europe;population of native hawaiian or other pacific islanders in southern eastern europe;native hawaiian or other pacific islander diaspora in southern eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_OneRace,foreign-born monoracial population in southern eastern europe;the number of people born outside of southern eastern europe who identify as monoracial;the percentage of the population in southern eastern europe who are foreign-born and monoracial;monoracial population in southern eastern europe who were born abroad -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,people born in southern eastern europe who have been determined to be living in poverty;people who were born in southern eastern europe and have been determined to be poor;people who were born in southern eastern europe and have been determined to have a low socioeconomic status;people who were born in southern eastern europe and have been determined to be living below the poverty line -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_SomeOtherRaceAlone,population of foreign-born people of some other race in southern eastern europe;number of people born outside of southern eastern europe who identify as some other race;people born outside of southern eastern europe who identify as some other race living in southern eastern europe;foreign-born people of some other race in southern eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_TwoOrMoreRaces,the population of multiracial people who were born in southern and eastern europe is significant;there is a significant population of multiracial people who were born in southern and eastern europe;a significant portion of the population is made up of multiracial people who were born in southern and eastern europe;the population of multiracial people born in southern and eastern europe is significant -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAlone,foreign-born white population in southern eastern europe;white population in southern eastern europe who were born outside of the country;people of white ethnicity who were born outside of southern eastern europe but now live there;white immigrants in southern eastern europe -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAloneNotHispanicOrLatino,white people born in southern and eastern europe who are not hispanic;white people born in southern and eastern europe who do not identify as hispanic;white people born in southern and eastern europe who are not of hispanic origin;white people born in southern and eastern europe who are not hispanic or latino -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia,number of people who have moved to western asia from other countries;number of people who have immigrated to western asia;the number of people who have moved to western asia from other countries -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1OrLessRatioToPovertyLine,the percentage of people born in western asia who live below the poverty line;the percentage of the population of western asia who are foreign-born and live below the poverty line;the proportion of foreign-born people in western asia living below the poverty line;the number of foreign-born people in western asia living below the poverty line as a percentage of the total population -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1To1.99RatioToPovertyLine,people born in western asia who live in the us and earn less than twice the poverty line;people from western asia who live in the us and earn less than twice the poverty line;people who live in the us and were born in western asia and earn less than twice the poverty line;people from western asia who are living in the us and whose income is less than the poverty line -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_2OrMoreRatioToPovertyLine,the percentage of people born in western asia who live below the poverty line by a factor of two or more;the proportion of people born in western asia who live below the poverty line by a factor of two or more;the number of people born in western asia who live below the poverty line by a factor of two or more as a percentage of the total population;the number of people born in western asia who live below the poverty line by a factor of two or more as a percentage of the foreign-born population -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AmericanIndianOrAlaskaNativeAlone,people born in western asia who are american indian or alaska native;american indian or alaska native people who were born in western asia;people born in western asia who identify as american indian or alaska native;american indian or alaska native people who are foreign-born from western asia -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AsianAlone,the number of people born in asia who live in western asia;the population of asian immigrants in western asia;the number of asian-born people in western asia;the asian diaspora in western asia -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_BlackOrAfricanAmericanAlone,african americans living in western asia;african american immigrants in western asia;african americans who were born in other countries and now live in western asia;african americans who have moved to western asia from other countries -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_HispanicOrLatino,hispanic population born outside of western asia;hispanic immigrants living in western asia;the number of hispanic people who were born in another country and now live in western asia;the number of hispanic immigrants in western asia -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_NativeHawaiianOrOtherPacificIslanderAlone,the population of foreign-born people from western asia and native hawaiian or other pacific islander alone is;the number of people born outside of the united states who are from western asia or native hawaiian or other pacific islander alone is;the percentage of the population that is foreign-born from western asia or native hawaiian or other pacific islander alone is;the proportion of the population that is foreign-born from western asia or native hawaiian or other pacific islander alone is -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_OneRace,distribution of the population of western asia by race and place of birth;foreign-born population of one race in western asia -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,people who were born in western asia and are living in poverty;people who were born in western asia and are considered to be poor;people who were born in western asia and are living below the poverty line;foreign-born population of western asia with determined poverty status -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_SomeOtherRaceAlone,population of foreign-born people of other races in western asia;number of people born outside of western asia who identify as other races;percentage of the population of western asia who are foreign-born and identify as other races;proportion of the population of western asia who are foreign-born and identify as other races -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_TwoOrMoreRaces,western asia has a large population of people who were born in other countries and identify as two or more races;a significant portion of the population in western asia is made up of people who were born in other countries and identify as two or more races;people from western asia who were born outside of the united states and identify with two or more races make up a significant portion of the population;the population of the united states includes a large number of people who were born in western asia and identify with two or more races -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAlone,foreign-born white population in western asia;white people born outside of western asia who live in western asia;people of white ethnicity who were born in other countries and now live in western asia;white immigrants in western asia -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAloneNotHispanicOrLatino,foreign-born white non-hispanics from western asia;white non-hispanics born in western asia;people born in western asia who are white and non-hispanic;white non-hispanics who were born in western asia -Count_Person_ForeignBorn_ResidesInAdultCorrectionalFacilities,adults born outside of the united states who are incarcerated;people who were born in another country and are now in prison;people who were born abroad and are now in correctional facilities;adults born outside the us who are in jail or prison -Count_Person_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,the number of foreign-born students living in college or university student housing;the percentage of college or university students who were born outside of the united states;the proportion of college or university students who are international students;the number of international students living in college or university student housing -Count_Person_ForeignBorn_ResidesInGroupQuarters,people who were not born in the united states and live in a place where multiple people share living quarters;people who were born in other countries and live in group quarters -Count_Person_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,foreign-born people living in the us in group quarters or other institutional settings;foreign-born people in group quarters in the us -Count_Person_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,people born in other countries who live in the us in non-institutional group quarters;foreign-born residents of the us living in non-institutional group quarters;people who were born outside of the us and live in the us in non-institutional group quarters;people born in other countries living in non-institutional group quarters -Count_Person_ForeignBorn_ResidesInNursingFacilities,population of nursing homes that were born in another country;foreign-born residents in nursing facilities;the number of foreign-born people in nursing homes;the percentage of nursing home residents who were born outside the united states -Count_Person_FullTimeYearRoundWorker,"number of people aged 16 to 64 who are full-time, year-round workers;number of people aged 16 to 64 who work full-time, year-round;number of people aged 16 to 64 who have full-time, year-round jobs;number of people aged 16 to 64 who are in full-time, year-round employment" -Count_Person_GovernmentOwnedEstablishment_Worker, -Count_Person_HearingDifficulty,how many women have hearing loss?;what is the number of women with hearing impairment?;what percentage of women have hearing problems?;how many women have trouble hearing? -Count_Person_HispanicOrLatino,number of hispanic people;number of hispanics;number of people of hispanic origin;the number of people who identify as hispanic -Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"the number of hispanic people who identify as american indian, either alone or in combination with other races;the number of hispanic people who identify as american indian, alone or in combination with other races;what is the number of hispanic people who identify as american indian, either alone or in combination with other races;how many hispanic people identify as american indian, alone or in combination with other races?" -Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,how many hispanic people identify as american indian?;what is the number of hispanic people who identify as american indian?;what percentage of hispanic people identify as american indian?;what is the proportion of hispanic people who identify as american indian? -Count_Person_HispanicOrLatino_AsianAlone,how many hispanic people identify as asian alone?;what is the number of hispanic people who identify as asian alone?;what is the population of hispanic people who identify as asian alone?;how many people of hispanic descent identify as asian alone? -Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic people who identify as asian alone or in combination with other races;number of hispanic people who identify as asian and another race;number of hispanic people who identify as asian and another race or races;number of hispanic people who identify as asian and/or another race -Count_Person_HispanicOrLatino_AsianOrPacificIslander,how many hispanic people identify as asian or pacific islander?;what is the number of hispanic people who identify as asian or pacific islander?;what percentage of hispanic people identify as asian or pacific islander?;what is the proportion of hispanic people who identify as asian or pacific islander? -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"number of hispanic people who identify as black or african american alone or in combination with one or more other races;what is the number of hispanic people who identify as black or african american, alone or in combination with one or more other races?;how many hispanic people identify as black or african american, alone or in combination with one or more other races?;how many hispanic people identify as black or african american, either alone or in combination with one or more other races?" -Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,how many hispanic people identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the number of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the percentage of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the proportion of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races? -Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,how many hispanic people identify as native hawaiian or other pacific islander alone?;what is the number of hispanic people who identify as native hawaiian or other pacific islander alone?;what is the percentage of hispanic people who identify as native hawaiian or other pacific islander alone?;what is the proportion of hispanic people who identify as native hawaiian or other pacific islander alone? -Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,the number of hispanics in adult correctional facilities;the number of hispanic adults in correctional facilities;the number of hispanics incarcerated in adult correctional facilities;the number of hispanic prisoners -Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,how many hispanic students live in college or university student housing?;what is the percentage of hispanic students who live in college or university student housing?;what is the number of hispanic students who live on campus?;what is the number of hispanic students who live in dormitories? -Count_Person_HispanicOrLatino_ResidesInGroupQuarters,"the number of hispanics living in group quarters, such as dormitories, shelters, or other group living arrangements;what is the hispanic population of group quarters?" -Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,number of hispanics institutionalized in group quarters;number of hispanics institutionalized;number of hispanics institutionalized in group living spaces;the number of hispanics institutionalized -Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"the number of hispanics living in group quarters that are not institutions;the number of hispanics living in non-institutional group quarters;number of hispanics in non-institutional group quarters;number of hispanics in group quarters, not institutionalized" -Count_Person_HispanicOrLatino_ResidesInNursingFacilities,the number of hispanics in nursing homes;the number of hispanic nursing home residents;the number of hispanics living in nursing facilities;the number of hispanic nursing home patients -Count_Person_HispanicOrLatino_TwoOrMoreRaces,number of hispanics who are biracial or multiracial;how many hispanics are multiracial?;what is the percentage of hispanics who are multiracial?;what is the proportion of hispanics who are multiracial? -Count_Person_HispanicOrLatino_WhiteAlone,the number of hispanics who identify as white;the percentage of hispanics who are white;the proportion of hispanics who are white;the number of white hispanics -Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic or latino people who are white alone or in combination with one or more other races;number of people who are hispanic or latino and white alone or in combination with one or more other races;number of people who are hispanic or latino and identify as white alone or in combination with one or more other races;number of people who are hispanic or latino and identify as white alone or in combination with one or more other races in the united states -Count_Person_Houseless, -Count_Person_Houseless_Female,houselessness among women;female houseless people -Count_Person_Houseless_Illiterate,number of homeless illiterates;number of illiterate homeless people;number of homeless people who are illiterate;number of illiterate people who are homeless -Count_Person_Houseless_Illiterate_Female,"female, homeless, and illiterate people;people who are female, homeless, and illiterate" -Count_Person_Houseless_Illiterate_Male,"male, homeless, illiterate" -Count_Person_Houseless_Illiterate_Rural,people who are homeless and illiterate in rural areas;illiterate homeless people in the countryside;homeless people who cannot read or write in rural areas;people who are homeless and cannot read or write in rural areas -Count_Person_Houseless_Illiterate_Rural_Female,illiterate homeless women in rural areas;rural illiterate homeless women;illiterate homeless women living in rural areas;homeless illiterate women in rural areas -Count_Person_Houseless_Illiterate_Rural_Male,men who are homeless and illiterate and live in rural areas;illiterate homeless men in rural areas;homeless men who are illiterate and live in rural areas;illiterate men who are homeless and live in rural areas -Count_Person_Houseless_Illiterate_Urban,people who are homeless and illiterate in urban areas;people who live on the streets and cannot read or write in cities;homeless people who cannot read or write in urban areas;people who are homeless and illiterate in the city -Count_Person_Houseless_Illiterate_Urban_Female,female urban homeless who can't read or write;illiterate homeless women in cities;women who are homeless and can't read or write in urban areas;urban female homeless population who are illiterate -Count_Person_Houseless_Illiterate_Urban_Male,illiterate men in cities;urban male illiterates;illiterate men in urban areas;men who cannot read or write in cities -Count_Person_Houseless_Literate,the number of people who are without shelter and can read and write;2 the number of people who are without a home and can read and write;the number of people who are living without a home and can read and write -Count_Person_Houseless_Literate_Female,"female, homeless, and literate people" -Count_Person_Houseless_Literate_Male,"male, homeless, literate;male, houseless, able to read and write;male, homeless, and literate;male, unhoused, and literate" -Count_Person_Houseless_Literate_Rural,houseless people in rural areas who are literate;the number of homeless people in rural areas who can read and write;the percentage of homeless people in rural areas who can read and write;the proportion of homeless people in rural areas who can read and write -Count_Person_Houseless_Literate_Rural_Female,rural literate women are homeless;rural literate female workers are without shelter;literate female workers in rural areas are without housing;literate women who work in rural areas are homeless -Count_Person_Houseless_Literate_Rural_Male,literate homeless men in rural areas;men who are homeless and literate in rural areas;men who are literate and homeless in rural areas -Count_Person_Houseless_Literate_Urban, -Count_Person_Houseless_Literate_Urban_Female,the number of literate women in cities;the percentage of women in cities who can read and write;the proportion of urban women who are literate;the literacy rate of women in urban areas -Count_Person_Houseless_Literate_Urban_Male,houseless men in cities who can read and write;houseless men in urban areas who are literate -Count_Person_Houseless_MainWorker,core workers;core team;core employees;essential workers -Count_Person_Houseless_MainWorker_AgriculturalLabourers, -Count_Person_Houseless_MainWorker_AgriculturalLabourers_Female, -Count_Person_Houseless_MainWorker_AgriculturalLabourers_Male,men who are homeless and work in agriculture;male agricultural laborers who are homeless;homeless male agricultural workers;agricultural workers who are homeless and male -Count_Person_Houseless_MainWorker_AgriculturalLabourers_Rural,agricultural workers in rural areas who don't have a home;agricultural workers in rural areas who are without a home;agricultural workers in rural areas who are without homes -Count_Person_Houseless_MainWorker_AgriculturalLabourers_Urban, -Count_Person_Houseless_MainWorker_Cultivators,unhoused gardeners -Count_Person_Houseless_MainWorker_Cultivators_Female,female unhoused people who grow their own food -Count_Person_Houseless_MainWorker_Cultivators_Male, -Count_Person_Houseless_MainWorker_Cultivators_Rural,people who grow crops in rural areas;those who cultivate land in rural areas -Count_Person_Houseless_MainWorker_Cultivators_Urban, -Count_Person_Houseless_MainWorker_Female,"here are 5 different ways of saying ""houseless female main workers"" in a colloquial way:" -Count_Person_Houseless_MainWorker_HouseholdIndustries,3 individuals who are without a home and are employed in the domestic workforce;people without a home who work in the household sector;unhoused employees in the home industry;people who are unsheltered and work in the home-based economy -Count_Person_Houseless_MainWorker_HouseholdIndustries_Female, -Count_Person_Houseless_MainWorker_HouseholdIndustries_Male,men who are without a home and work in the domestic workforce;men who are living in poverty and work in the home-based economy -Count_Person_Houseless_MainWorker_HouseholdIndustries_Rural,the main people who work in household industries in rural areas;the main workers in rural household industries;the main people who work in rural areas in household industries;household industry workers in rural areas -Count_Person_Houseless_MainWorker_HouseholdIndustries_Urban,urban houseless people who work in household industries;houseless urbanites who work in household industries;people without homes who work in urban household industries;urban houseless workers in household industries -Count_Person_Houseless_MainWorker_Male, -Count_Person_Houseless_MainWorker_OtherWorkers,other unhoused essential workers;essential workers who are also unhoused;unhoused people who are also essential workers -Count_Person_Houseless_MainWorker_OtherWorkers_Female,other female workers who are without a home;other female workers who are without shelter;other female workers who are unhoused;other female workers who don't have a home -Count_Person_Houseless_MainWorker_OtherWorkers_Male,men who are unhoused and have jobs;unhoused men -Count_Person_Houseless_MainWorker_OtherWorkers_Rural, -Count_Person_Houseless_MainWorker_OtherWorkers_Urban,workers in urban areas who are not in the primary sector;people who work in secondary and tertiary sectors in cities -Count_Person_Houseless_MainWorker_Rural,essential workers without homes in rural areas -Count_Person_Houseless_MainWorker_Rural_Female,women who are the main breadwinners in rural areas;rural women who are the primary income earners;women who are the primary providers for their families in rural areas;women who are the main breadwinners in rural communities -Count_Person_Houseless_MainWorker_Rural_Male, -Count_Person_Houseless_MainWorker_Urban,unhoused essential workers in cities -Count_Person_Houseless_MainWorker_Urban_Female, -Count_Person_Houseless_MainWorker_Urban_Male,male workers in urban areas who are without a home -Count_Person_Houseless_Male,male population without a home -Count_Person_Houseless_MarginalWorker, -Count_Person_Houseless_MarginalWorker_AgriculturalLabourers,number of agricultural workers without homes;number of marginal agricultural workers without homes;number of agricultural workers without permanent housing;number of agricultural workers without housing -Count_Person_Houseless_MarginalWorker_AgriculturalLabourers_Female,female agricultural workers who are on the margins are without housing;female agricultural workers who are at the bottom of the economic ladder are without shelter;female agricultural workers who are struggling to make ends meet are without a place to live;women who work in agriculture and are not well-off are without a place to live -Count_Person_Houseless_MarginalWorker_AgriculturalLabourers_Male,"persons: males, dwellers without shelter, agricultural workers, unskilled laborers, people who work;individuals: menfolk, people without a home, farmhands, day laborers, people who have a job" -Count_Person_Houseless_MarginalWorker_AgriculturalLabourers_Rural, -Count_Person_Houseless_MarginalWorker_AgriculturalLabourers_Urban,unhoused agricultural workers in urban areas;unhoused farm workers in urban areas;people who live and work on farms but don't have a permanent home in cities;agricultural workers who are without a home in urban areas -Count_Person_Houseless_MarginalWorker_Cultivators,unhoused agricultural workers;2 unhoused agricultural workers -Count_Person_Houseless_MarginalWorker_Cultivators_Female,women who cultivate crops without a stable residence -Count_Person_Houseless_MarginalWorker_Cultivators_Male,men who grow crops without a home -Count_Person_Houseless_MarginalWorker_Cultivators_Rural, -Count_Person_Houseless_MarginalWorker_Cultivators_Urban, -Count_Person_Houseless_MarginalWorker_Female, -Count_Person_Houseless_MarginalWorker_HouseholdIndustries, -Count_Person_Houseless_MarginalWorker_HouseholdIndustries_Female,women who are living in poverty and work in domestic service -Count_Person_Houseless_MarginalWorker_HouseholdIndustries_Male,men who work in the informal economy -Count_Person_Houseless_MarginalWorker_HouseholdIndustries_Rural, -Count_Person_Houseless_MarginalWorker_HouseholdIndustries_Urban, -Count_Person_Houseless_MarginalWorker_Male,many rural men are without shelter;many rural men are without a place to call home;many men in rural areas are unable to afford housing;a large number of men in rural areas are living without shelter -Count_Person_Houseless_MarginalWorker_OtherWorkers, -Count_Person_Houseless_MarginalWorker_OtherWorkers_Female, -Count_Person_Houseless_MarginalWorker_OtherWorkers_Male,houseless male marginal other workers -Count_Person_Houseless_MarginalWorker_OtherWorkers_Rural, -Count_Person_Houseless_MarginalWorker_OtherWorkers_Urban, -Count_Person_Houseless_MarginalWorker_Rural, -Count_Person_Houseless_MarginalWorker_Rural_Female,female population in rural areas;1 the number of women in rural areas is relatively small;2 there are not many women living in rural areas;3 women are a minority in rural areas -Count_Person_Houseless_MarginalWorker_Rural_Male, -Count_Person_Houseless_MarginalWorker_Urban, -Count_Person_Houseless_MarginalWorker_Urban_Female,"women who are living in poverty and working in low-skilled jobs in urban areas;women who are without a permanent home and working in low-paying jobs in cities;women who are unhoused and working in low-wage, insecure jobs in urban areas;female urban workers who are living in poverty and lack stable housing" -Count_Person_Houseless_MarginalWorker_Urban_Male,urban homeless men who are struggling to make ends meet;men who live on the streets and have difficulty finding or keeping a job;homeless men in the city who are struggling to make ends meet;men who live on the streets and have difficulty finding work -Count_Person_Houseless_NonWorker,people who are without a home and don't work -Count_Person_Houseless_NonWorker_Female, -Count_Person_Houseless_NonWorker_Male, -Count_Person_Houseless_NonWorker_Rural,rural residents who are without shelter and don't have a job -Count_Person_Houseless_NonWorker_Rural_Female,rural female non-workers who are homeless;homeless rural women who are not employed;rural women who are homeless and not working;homeless women in rural areas who are not employed -Count_Person_Houseless_NonWorker_Rural_Male, -Count_Person_Houseless_NonWorker_Urban,people who are without a home and are not employed in urban centers;urban people without permanent housing;people who don't have a home and don't have a job in cities -Count_Person_Houseless_NonWorker_Urban_Female,female population without a home in urban areas;women without a permanent residence in urban areas;urban female population without a home or job;women living in cities without a home or job -Count_Person_Houseless_NonWorker_Urban_Male,men who are without a home and not employed in cities -Count_Person_Houseless_Rural,the number of people living without a home in rural areas -Count_Person_Houseless_Rural_Female,rural female houseless population;rural areas with a high population of female houseless people -Count_Person_Houseless_Rural_Male, -Count_Person_Houseless_ScheduledCaste,the number of people in the scheduled castes who do not have a home;the number of people in the scheduled castes who are without shelter;the number of people in the scheduled castes who are without a place to live;population of houseless people in scheduled castes -Count_Person_Houseless_ScheduledCaste_Female,houseless women of the scheduled caste -Count_Person_Houseless_ScheduledCaste_Male, -Count_Person_Houseless_ScheduledCaste_Rural,people without homes in rural areas;people who are unhoused in rural areas;houseless people in rural areas;houseless people in rural communities -Count_Person_Houseless_ScheduledCaste_Rural_Female, -Count_Person_Houseless_ScheduledCaste_Rural_Male,number of rural males in scheduled castes;male population in scheduled castes living in rural areas;rural male population of scheduled castes;number of males in scheduled castes living in rural areas -Count_Person_Houseless_ScheduledCaste_Urban,the number of homeless people from the scheduled castes in urban areas;the number of people from the scheduled castes who are homeless in urban areas;the number of people from the scheduled castes who are without shelter in urban areas;the percentage of the scheduled caste population that is homeless in urban areas -Count_Person_Houseless_ScheduledCaste_Urban_Female,houseless women in urban areas who are from scheduled castes;women from scheduled castes who are living without shelter in cities -Count_Person_Houseless_ScheduledCaste_Urban_Male,number of urban-residing males in the scheduled castes;male population of the scheduled castes living in urban areas;scheduled caste males in urban areas;number of urban-dwelling males in the scheduled castes -Count_Person_Houseless_ScheduledTribe,number of people from the scheduled tribes who are without a home;number of scheduled tribe people living without shelter;population of houseless people from scheduled tribes;number of houseless people from scheduled tribes -Count_Person_Houseless_ScheduledTribe_Female, -Count_Person_Houseless_ScheduledTribe_Male, -Count_Person_Houseless_ScheduledTribe_Rural,scheduled tribes in rural areas;number of scheduled tribes in rural areas;scheduled tribes living in rural areas;scheduled tribe population in rural areas -Count_Person_Houseless_ScheduledTribe_Rural_Female,rural female tribals who are homeless;homeless tribal women in rural areas;rural homeless tribal women;tribal women who are homeless and live in rural areas -Count_Person_Houseless_ScheduledTribe_Rural_Male,number of scheduled tribe men who are homeless in rural areas;population of scheduled tribe men who are homeless in rural areas;number of homeless men from scheduled tribes living in rural areas;rural male population of scheduled tribes who are homeless -Count_Person_Houseless_ScheduledTribe_Urban,number of urban scheduled tribe people who do not have a home;number of urban scheduled tribe people who are without shelter;number of urban scheduled tribes without homes;number of urban scheduled tribe people without a permanent residence -Count_Person_Houseless_ScheduledTribe_Urban_Female,urban female population of scheduled tribes;number of urban females from scheduled tribes;female population of scheduled tribes living in urban areas;scheduled tribes female population in urban areas -Count_Person_Houseless_ScheduledTribe_Urban_Male,number of males in urban areas who belong to scheduled tribes;population of urban males in scheduled tribes;number of urban scheduled tribe males;number of males in scheduled tribes living in urban areas -Count_Person_Houseless_Urban,the number of people who are unhoused in urban areas;number of people without homes in cities;number of people who are without shelter in cities -Count_Person_Houseless_Urban_Female, -Count_Person_Houseless_Urban_Male, -Count_Person_Houseless_Workers,people who are homeless and work;people who live and work on the streets;people who are homeless and also work;people who are living on the streets and also have a job -Count_Person_Houseless_Workers_Female, -Count_Person_Houseless_Workers_Male,"male, without a home, and working" -Count_Person_Houseless_Workers_Rural,rural workers without a home;rural workers who don't have a home;rural workers without homes;people who work but don't have a home and live in rural areas -Count_Person_Houseless_Workers_Rural_Female,number of rural female workers who are without shelter;number of rural female workers who are without housing -Count_Person_Houseless_Workers_Rural_Male,unhoused men in rural areas;men who are without homes in rural areas;men without homes in rural areas;men who live without shelter in rural areas -Count_Person_Houseless_Workers_Urban,number of urban workers who are without shelter;number of urban workers without a home -Count_Person_Houseless_Workers_Urban_Female, -Count_Person_Houseless_Workers_Urban_Male,men living in urban areas are homeless;the homeless male population in urban areas;urban males are homeless;there are many homeless men in urban areas -Count_Person_Houseless_YearsUpto6,number of people without homes who are 6 years old or younger;how many people aged 6 or less are living without a home?;how many people aged 6 or less are without housing?;number of people who are 6 years old or younger and do not have a place to live -Count_Person_Houseless_YearsUpto6_Female,houseless females aged 6 years or less;females without a home who are 6 years old or younger;females who are 6 years old or younger and without shelter;the number of unhoused females aged 6 years or less -Count_Person_Houseless_YearsUpto6_Male,number of unhoused males aged 6 years or less;number of males without a home aged 6 years or less;number of males without shelter aged 6 years or less -Count_Person_Houseless_YearsUpto6_Rural,number of people without homes who are under the age of 6 in rural areas;number of unhoused people aged 6 years or less in rural areas -Count_Person_Houseless_YearsUpto6_Rural_Female,girls under the age of 6 who are living in inadequate housing in rural areas -Count_Person_Houseless_YearsUpto6_Rural_Male,"6 years old or younger, male, without a home, rural" -Count_Person_Houseless_YearsUpto6_Urban,children under 6 who are homeless in cities;urban residents under 6 who are homeless;homeless urban children under 6;children under 6 who are homeless in urban areas -Count_Person_Houseless_YearsUpto6_Urban_Female,number of unhoused females living in urban areas under the age of 6;number of girls and women living in cities without a permanent home under the age of 6 -Count_Person_Houseless_YearsUpto6_Urban_Male,number of unhoused male children under 6 in urban areas -Count_Person_Illiterate,people who can't read or write;people who are illiterate;people who are unable to read or write at a basic level;people who are unable to read or write at all -Count_Person_Illiterate_Female,females who are illiterate;illiterate women;female illiterates;women who are illiterate -Count_Person_Illiterate_Male,"male, illiterate;illiterate male" -Count_Person_Illiterate_Rural,illiteracy rate in rural areas;prevalence of illiteracy in rural areas;illiteracy in the countryside;the percentage of people who are illiterate in rural areas -Count_Person_Illiterate_Rural_Female,women who live in rural areas and are illiterate;women in rural areas who are illiterate;women who are illiterate and live in rural areas;the population of illiterate women living in rural areas -Count_Person_Illiterate_Rural_Male,a population of men who are illiterate and live in rural areas;a population of rural men who are illiterate;a population of illiterate men who live in the countryside;population: men who are illiterate and live in rural areas -Count_Person_Illiterate_Urban,illiteracy in cities;the prevalence of illiteracy in cities;illiteracy rates in urban areas;the number of illiterate people in cities -Count_Person_Illiterate_Urban_Female,a female population of illiterate urban dwellers;a population of illiterate urban females;illiterate urban females;urban females who are illiterate -Count_Person_Illiterate_Urban_Male,a population of urban illiterate males;a population of illiterate males living in cities;a population of males who are illiterate and live in urban areas;a population of urban males who are illiterate -Count_Person_InArmedForces,the percentage of the population aged 16 years or more who are in the labor force and are not in the armed forces;the percentage of the population aged 16 years or more who are employed or unemployed and are not in the armed forces;the percentage of the population aged 16 years or more who are working or looking for work and are not in the armed forces;the percentage of the population aged 16 years or more who are in the labor force and are not in the military -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthAfrica,people born outside of africa who are 16 years old or older and are in the labor force or armed forces in africa;foreign-born people in africa who are 16 years old or older and are working or in the military;people who were not born in africa but are 16 years old or older and are working or in the military in africa -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthAsia,number of people born in asia who are 16 years old or older and are in the military;number of foreign-born asians in the military;number of asian immigrants in the military;the number of people born in asia who are 16 years old or older and are in the armed forces -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthCaribbean,the number of people born outside of the caribbean who are 16 years old or older and are in the armed forces or labor force;the number of foreign-born people in the caribbean who are 16 years old or older and are working or in the military;the number of foreign-born people in the caribbean who are 16 years old or older and are employed or in the military;the number of people who were born outside of the caribbean and are 16 years old or older who are in the armed forces or labor force in the caribbean -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people aged 16 and over who are in the armed forces, in the labor force, foreign-born, and from central america except mexico;the population of people aged 16 and over who are in the armed forces, in the labor force, foreign-born, and from central america except mexico;the number of people in the population who are aged 16 and over and who are in the armed forces, in the labor force, foreign-born, and from central america except mexico;the total number of people aged 16 and over who are in the armed forces, in the labor force, foreign-born, and from central america except mexico" -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthEasternAsia,people born in eastern asia who are 16 years old or older and are in the armed forces or the labor force;people who were born in eastern asia and are 16 years old or older and are either working or in the military;people who were born in eastern asia and are 16 years old or older and are part of the workforce or the military;people who were born in eastern asia and are 16 years old or older and are either employed or in the armed services -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthEurope,number of foreign-born people from mexico aged 16 years and above in the armed forces -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthLatinAmerica,"the number of people who are 16 years old or older, are in the armed forces, are in the labor force, were born outside of the united states, and come from latin america;the number of people who are 16 years old or older, are in the military, are working, were born in another country, and come from latin america;the number of people who are 16 years old or older, are in the armed services, are employed, were born abroad, and come from latin america;the number of people who are 16 years old or older, are in the military, are working, were naturalized, and come from latin america" -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthMexico,what percentage of the foreign-born population in mexico above the age of 16 is in the armed forces?;what is the proportion of the foreign-born population in mexico above the age of 16 who are in the armed forces?;what is the percentage of the foreign-born population in mexico above the age of 16 who are serving in the armed forces?;what is the proportion of the foreign-born population in mexico above the age of 16 who are members of the armed forces? -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthNorthamerica,"the population of north america is 16 years or older and is either in the armed forces, in the labor force, or foreign born;the number of people aged 16 or older who are in the armed forces, in the labor force, foreign-born, and live in north america;the number of people aged 16 or older who are in the armed services, working, not native-born, and live in north america;the number of people in north america who are serving in the military" -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthNorthernWesternEurope,foreign-born people in northern western europe who are 16 years old or older who are employed in the armed forces or the labor force;people who were born outside of northern western europe but who live there now and are 16 years old or older and who are employed in the armed forces or the labor force;people who are not citizens of northern western europe but who live there now and are 16 years old or older and who are employed in the armed forces or the labor force;people who were born in another country but who now live in northern western europe and are 16 years old or older and who are employed in the armed forces or the labor force -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthOceania,"people born outside of oceania who are over 16 years old and in the military or working;people born outside of oceania who are over 16 years old and working in the military or in the labor force;people born outside of oceania who are 16 years old or older and are in the armed forces or the workforce;people who were born in another country and are now living in oceania, who are 16 years old or older, and who are either in the military or working" -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthSouthCentralAsia,south central asian-born people in the military;people from south central asia who serve in the armed forces;foreign-born south central asians who are in the military;people who were born in south central asia and are now in the military -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthSouthEasternAsia,people from southeast asia who are 16 years old or older and are in the military or working;southeast asian-born people aged 16 or older who are in the armed forces or the workforce;people who were born in southeast asia and are now 16 or older who are in the military or working;southeast asian-born people aged 16 and over in the armed forces and labor force -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthSouthamerica,people from south america who were born in another country and are 16 years old or older and are working;people born in south america who are 16 years of age or older and are in the armed forces or labor force;south americans aged 16 or older who are in the military or workforce;south americans aged 16 or older who are in the armed forces or working -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthSouthernEasternEurope,foreign-born civilians aged 16 years or more in south-eastern europe who are in the armed forces;foreign-born people aged 16 years or more in south-eastern europe who are in the military;people born outside of south-eastern europe who are aged 16 years or more and are in the armed forces of south-eastern europe;people who are not citizens of south-eastern europe and are aged 16 years or more and are in the armed forces of south-eastern europe -Count_Person_InArmedForces_InLaborForce_ForeignBorn_PlaceOfBirthWesternAsia,the number of people born outside of western asia who are 16 years old or older and are in the armed forces or labor force;the number of people who were born outside of western asia and are 16 years old or older and are in the military or working;the number of foreign-born people in western asia who are 16 years old or older and are either in the military or working;the number of people who were born outside of western asia and are 16 years old or older and are either in the military or employed -Count_Person_InArmedForces_ResidesInCollegeOrUniversityStudentHousing,number of people aged 16 years or more in the armed forces who live in university student housing;number of people aged 16 years or more in the military who live in university dorms;number of people aged 16 years or more in the armed forces who live in university housing;number of people aged 16 years or more in the military who live in university residence halls -Count_Person_InArmedForces_ResidesInGroupQuarters,people aged 16 and older in the armed forces and group quarters labor force;people aged 16 and older in the military and group quarters labor force;people aged 16 and older in the armed services and group quarters labor force;people aged 16 and older in the military and group quarters workforce -Count_Person_InArmedForces_ResidesInNoninstitutionalizedGroupQuarters,foreign-born civilians aged 16 or older who are not institutionalized and are in the labor force or in the armed forces;foreign-born civilians aged 16 or older who are not institutionalized and are working or serving in the military;foreign-born civilians aged 16 or older who are not institutionalized and are either in the labor force or in the armed forces -Count_Person_InLaborForce,number of people who are in the labor market;number of people who are part of the labor market;number of people who are in the labor force -Count_Person_InLaborForce_Female_Divorced,the number of divorced women aged 16 years or more in the labor force;the percentage of divorced women aged 16 years or more in the labor force;the proportion of divorced women aged 16 years or more in the labor force;the share of divorced women aged 16 years or more in the labor force -Count_Person_InLaborForce_Female_DivorcedInThePast12Months,number of female workers who got divorced in the last year;number of females in the workforce who got divorced in the last year;what is the number of women in the labor force who got divorced last year?;what is the number of women in the labor force who got divorced in the last year? -Count_Person_InLaborForce_Female_MarriedAndNotSeparated,"number of married and unseparated women in the workforce aged 16 or older;female labor force participation rate for married and unseparated women aged 16 and older;percentage of married and unseparated women aged 16 and older who are in the labor force;number of married and unseparated women aged 16 and older who are in the labor force, divided by the total number of married and unseparated women aged 16 and older" -Count_Person_InLaborForce_Female_MarriedInThePast12Months,number of women who got married in the last year while in the labor force;number of females in the workforce who got married in the last year;number of females in the labor force who got married in the last 12 months;number of women who got married in the last year while working -Count_Person_InLaborForce_Female_NeverMarried,women above 16 who are never married and in the workforce;percentage of never-married women in the labor force aged 16 and over;number of never-married women in the labor force aged 16 and over;proportion of never-married women in the labor force aged 16 and over -Count_Person_InLaborForce_Female_Separated,the number of women aged 16 years or older who are separated and in the labor force;the number of separated women aged 16 years or older who are working;the number of separated women aged 16 years or older who are employed;the number of separated women aged 16 years or older who are in the workforce -Count_Person_InLaborForce_Female_Widowed,the number of women aged 16 and over who are widowed and in the workforce;the percentage of women aged 16 and over who are widowed and in the workforce;the proportion of women aged 16 and over who are widowed and in the workforce;the number of widowed women aged 16 and over who are employed -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthAfrica,the percentage of foreign-born people aged 16 years or more who are in the labor force;the proportion of foreign-born people aged 16 years or more who are employed or actively looking for work;the number of foreign-born people aged 16 years or more who are in the labor force as a percentage of the total number of foreign-born people aged 16 years or more;the share of the foreign-born population aged 16 years or more who are in the labor force -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthAsia,the number of people born in asia who are 16 years or older and employed;the number of people born in asia who are 16 years or older and working or looking for work;the number of people who were born in asia and are participating in the labor market;the number of foreign-born people from asia who are 16 years or older and in the labor force -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthCaribbean,people born in the caribbean who are 16 or older and are employed or actively looking for work;people who were born in the caribbean and moved to the united states when they were 16 or older and are either employed or unemployed;people who are 16 or older and were born in the caribbean and are currently working or looking for work;foreign-born caribbeans who are 16 years of age or older and are employed or actively looking for work -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the percentage of foreign-born people aged 16 years or more who are in the labor force in central america, excluding mexico;the number of foreign-born people aged 16 years or more who are working or looking for work, expressed as a percentage of the total foreign-born population aged 16 years or more in central america, excluding mexico;the labor force participation rate of foreign-born people aged 16 years or more in central america, excluding mexico;the number of foreign-born people aged 16 years or more who are participating in the labor force in central america, excluding mexico" -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthEasternAsia,the percentage of eastern asian foreign-born people who are 16 years old or older and are in the labor force;the labor force participation rate of eastern asian foreign-born people who are 16 years old or older;the proportion of eastern asian foreign-born people who are 16 years old or older who are employed or unemployed;the share of eastern asian foreign-born people who are 16 years old or older who are working or looking for work -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthEurope,number of foreign-born people in europe aged 16 years or older in the labor force;percentage of foreign-born people in europe aged 16 years or older in the labor force;proportion of foreign-born people in europe aged 16 years or older in the labor force;foreign-born population in europe aged 16 years or older in the labor force as a percentage of the total population -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthLatinAmerica,the percentage of latin american immigrants who are 16 years old or older and are in the labor force;the number of latin american immigrants who are 16 years old or older and are employed or actively looking for work;the proportion of latin american immigrants who are 16 years old or older who are economically active;the labor force participation rate of latin american immigrants -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthMexico,the number of people living in mexico who were born in another country and are over 16 years old;the number of foreign-born people in mexico over 16 years old;the number of people in mexico who were not born there and are over 16 years old;the number of immigrants in mexico over 16 years old -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthNorthamerica,foreign-born north americans aged 16 or older in the labor force;north american immigrants aged 16 or older in the workforce;foreign-born people from north america aged 16 or older who are employed or looking for work;immigrants from north america aged 16 or older who are employed or looking for work -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the percentage of foreign-born people aged 16 years or more who are in the labor force in northern western europe;the proportion of foreign-born people aged 16 years or more who are employed or unemployed in northern western europe;the number of foreign-born people aged 16 years or more who are working or looking for work in northern western europe;the number of foreign-born people aged 16 years or more who are in the workforce in northern western europe -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthOceania,foreign-born population in oceania aged 16 years or older in the labor force;the number of foreign-born people in oceania aged 16 years or older who are part of the labor force;the percentage of the foreign-born population in oceania aged 16 years or older who are part of the labor force;the labor force participation rate of foreign-born people in oceania aged 16 years or older -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthSouthCentralAsia,the number of people born in south central asia who are over 16 and working;the number of people born in south central asia who are over 16 and have a job;the number of people born in south central asia who are over 16 years old and working;the share of people born in south central asia who are over 16 years old and have a job -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of foreign-born people from south-east asia aged 16 years or older who are in the labor force;1 number of foreign-born people from south-east asia aged 16 or older in the labor force;4 number of people who were born in south-east asia and are part of the labor force -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthSouthamerica,number of foreign-born people from south america aged 16 years or older in the labor force;number of foreign-born people from south america who are 16 years or older and are employed or actively looking for work;south american foreign-born population aged 16 years or older in the labor force;south american-born population aged 16 years or older in the workforce -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthSouthernEasternEurope,foreign-born civilians in south eastern europe aged 16 or over in the labor force -Count_Person_InLaborForce_ForeignBorn_PlaceOfBirthWesternAsia,the percentage of foreign-born people from western asia who are 16 years or older and in the labor force;the labor force participation rate of foreign-born people from western asia aged 16 years or older;the percentage of the western asia foreign-born population aged 16 years or older who are either employed or actively looking for work;the share of the western asia foreign-born population aged 16 years or older who are economically active -Count_Person_InLaborForce_Male_Divorced,the number of divorced men aged 16 or older who are employed;the percentage of divorced men aged 16 or older who are employed;the proportion of divorced men aged 16 or older who are employed;the share of divorced men aged 16 or older who are employed -Count_Person_InLaborForce_Male_DivorcedInThePast12Months,the number of men in the workforce who got divorced last year;the number of men who were divorced last year and were in the workforce;the number of men in the workforce who were divorced in the past year;the number of men who were divorced last year and were employed -Count_Person_InLaborForce_Male_MarriedAndNotSeparated,the number of men in the workforce who are married and not separated;the number of married men who are not separated and are part of the labor force;number of married men who are in the workforce and not separated;married men who are not separated and are in the workforce -Count_Person_InLaborForce_Male_MarriedInThePast12Months,what is the number of men in the labor force who got married in the last year?;what is the number of men in the labor force who got married in the past 365 days?;how many men in the labor force got married in the last 12 months?;number of men in the workforce who got married in the last year -Count_Person_InLaborForce_Male_NeverMarried,number of unmarried males aged 16 and over in the labor force;number of unmarried men aged 16 and over who are employed or looking for work;number of unmarried males aged 16 and over who are in the workforce;number of unmarried men aged 16 and over who are part of the labor force -Count_Person_InLaborForce_Male_Separated,share of the male population aged 16 and over in the labor force -Count_Person_InLaborForce_Male_Widowed,the number of men who are widowed and aged 16 or older who are in the workforce;the number of men who are widowed and aged 16 or older who are employed;the number of men who are widowed and aged 16 or older who are working;the number of men who are widowed and aged 16 or older who are part of the labor force -Count_Person_InLaborForce_ResidesInCollegeOrUniversityStudentHousing,"the number of people living in college or university student housing who are 16 years of age or older and are in the labor force;the number of college or university students who are living in student housing and are part of the labor force, aged 16 years or more;the number of college or university students who are living in student housing and are working, aged 16 years or more;the number of college or university students who are living in student housing and are employed, aged 16 years or more" -Count_Person_InLaborForce_ResidesInGroupQuarters,people aged 16 years or older who are in the labor force and living in group quarters;people aged 16 or older who are working in group quarters;people aged 16 or older who are in the labor force and living in group quarters;people aged 16 or older who are working and living in group quarters -Count_Person_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,the number of people aged 16 years or more who are in the labor force or in non-institutionalized group quarters -Count_Person_IndependentLivingDifficulty,the number of people who have difficulty living independently;the number of people who are not able to live on their own;the number of people who are dependent on others for help with daily living;how many people have trouble living independently? -Count_Person_IsInternetUser_PerCapita,what percentage of the population uses the internet?;what is the percentage of people who use the internet?;what is the proportion of people who use the internet?;what is the number of internet users as a percentage of the population? -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthAfrica,"population of foreign-born people in africa who are over 5 years old and speak a language other than english;number of people born outside of africa who live in africa and are over 5 years old and speak a language other than english;percentage of the population in africa who are foreign-born and over 5 years old and speak a language other than english;number of people in africa who are foreign-born, over 5 years old, and speak a language other than english as their first language" -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthAsia,1 people who were born in asia and speak a language other than english have been living in the united states for at least 5 years -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthCaribbean,the percentage of people born in the caribbean who are at least 5 years old and fluent in languages other than english;the proportion of people born in the caribbean who are at least 5 years old and are bilingual or multilingual;the number of people who were born in the caribbean and are at least 5 years old who are fluent in languages other than english;the number of people who were born in the caribbean and are at least 5 years old who are bilingual or multilingual -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,people who were born in central america but live in the united states and are at least 5 years old;central american-born people who live in the us and are at least 5 years old;people who were born in central america and are at least 5 years old and live in the us;central american foreign-born population aged 5 years or more -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthEasternAsia,population of eastern asian immigrants aged 5 or older who speak a language other than english;number of eastern asian immigrants aged 5 or older who speak a language other than english;share of eastern asian immigrants aged 5 or older who speak a language other than english;people who were born in eastern asia and are 5 years old or older and speak a language other than english -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthEurope,foreign-born multilingual population in europe aged 5 years or more;population of multilingual foreigners in europe aged 5 years or more;foreigners in europe who speak more than one language and are aged 5 years or more;multilingual foreign population in europe aged 5 years or more -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthLatinAmerica,"people who have lived in the us for 5 years or more and speak a language other than english, who are foreign-born, and who are from latin america" -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthMexico,the number of mexican immigrants who speak languages other than english;the percentage of mexican immigrants who speak languages other than english;the proportion of mexican immigrants who speak languages other than english;the share of mexican immigrants who speak languages other than english -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthNorthamerica,the number of people who were born outside of north america and who are at least 5 years old who speak languages other than english;the number of people who are foreign-born and who speak languages other than english in north america;the number of people who are not native english speakers in north america who are at least 5 years old;the number of people who were born in another country and live in north america and are at least 5 years old who speak languages other than english -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthNorthernWesternEurope,more foreign-born people in northern and western europe speak languages other than english than english;foreign-born people in northern and western europe are more likely to speak languages other than english than english;english is not the most common language spoken by foreign-born people in northern and western europe;foreign-born people in northern and western europe are more likely to speak a language other than english as their first language -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthOceania,oceania foreign-borns aged 5 years or older who speak languages other than english;oceania foreign-borns aged 5 years or older who are not english speakers;oceania foreign-borns aged 5 years or older who speak languages other than english as their first language;oceania foreign-borns aged 5 years or older who are not native english speakers -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthCentralAsia,people who were born in south central asia and are now 5 years old or older and speak a language other than english;people who were born in south central asia and are now 5 years old or older and are not native english speakers;people who were born in south central asia and are now 5 years old or older and speak a language other than english as their first language;people who were born in south central asia and are now 5 years old or older and are not fluent in english -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthEasternAsia,"foreign-born population in south east asia aged 5 or more speaking languages other than english;foreign-born population in south east asia aged 5 or more who speak languages other than english;foreign-born population in south east asia aged 5 or more who speak languages other than english as their first language;southeast asian-born people who speak languages other than english, aged 5 years or older" -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthamerica,south american-born population aged 5 years or older;people born in south america who are 5 years old or older;south american-born population aged 5 and up;south american-born population aged 5+ -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"people who were born in south eastern europe and who do not speak english as their first language and who are 5 years old or older;foreign-born people from south eastern europe who are not native english speakers and who are 5 years old or older;people who were born in south eastern europe, who do not speak english as their first language, and who are at least 5 years old;people who are not native english speakers and who were born in south eastern europe and who are at least 5 years old" -Count_Person_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthWesternAsia,percentage of foreign-born population in western asia aged 5 years or older who are fluent in languages other than english;number of non-native western asian speakers aged 5 or older who are fluent in other languages;percentage of western asian residents aged 5 or older who are fluent in languages other than english;percentage of people in western asia aged 5 years or older who speak a language other than english fluently -Count_Person_Literate,people who can read and write;people who are well-read;the reading and writing crowd;the wordsmiths -Count_Person_Literate_Female,females who are literate;female literacy rate;number of literate females;percentage of females who can read and write -Count_Person_Literate_Male, -Count_Person_Literate_Rural,the number of people who can read and write in rural areas;the percentage of people in rural areas who are literate;the proportion of people in rural areas who can read and write;the literacy rate in rural areas -Count_Person_Literate_Rural_Female,the female population in rural areas is literate;the rural female population is literate;the literacy rate of women in rural areas is high;a population of females who are literate and live in rural areas -Count_Person_Literate_Rural_Male,"male, literate, rural population;population of males who are literate and live in rural areas;population of rural males who are literate;population of literate males who live in rural areas" -Count_Person_Literate_Urban,the number of people who can read and write in cities;the percentage of people in urban areas who are literate;the proportion of the urban population who are literate;the number of literate people in urban areas -Count_Person_Literate_Urban_Female,"female, literate, and urban population;female, literate, urban population" -Count_Person_Literate_Urban_Male,"male, literate, and urban population;population of males who are literate and live in urban areas;population of urban males who are literate and live in urban areas;the population of urban areas is made up of literate males" -Count_Person_LocalGovernmentOwnedEstablishment_Worker, -Count_Person_MainWorker,the main working population -Count_Person_MainWorker_AgriculturalLabourers,farm workers;farm laborers;agricultural workers;people who work on farms -Count_Person_MainWorker_AgriculturalLabourers_Female, -Count_Person_MainWorker_AgriculturalLabourers_Male,men who work in agriculture;male farmers;male agricultural workers;men who work on farms -Count_Person_MainWorker_AgriculturalLabourers_Rural,the majority of agricultural workers in rural areas;the main workforce in rural agriculture;the main people who work in agriculture in rural areas;the main people who work on farms in rural areas -Count_Person_MainWorker_AgriculturalLabourers_Urban, -Count_Person_MainWorker_Cultivators,principal growers;cultivators;the people who grow the plants -Count_Person_MainWorker_Cultivators_Female, -Count_Person_MainWorker_Cultivators_Male,men who cultivate land;men who grow their own food;men who cultivate the land -Count_Person_MainWorker_Cultivators_Rural,the main occupation of the rural population is cultivation -Count_Person_MainWorker_Cultivators_Urban,urban gardeners;city gardeners;people who grow food in urban areas;people who grow their own food in cities -Count_Person_MainWorker_Female,women are the main workers in this population -Count_Person_MainWorker_HouseholdIndustries,household employees;domestic workers;household workers -Count_Person_MainWorker_HouseholdIndustries_Female, -Count_Person_MainWorker_HouseholdIndustries_Male,men who are the head of household;men who are the main workers in household industries;men who are the primary breadwinners in household industries;men who are the main providers in household industries -Count_Person_MainWorker_HouseholdIndustries_Rural,person who does most of the work in a rural household industry;the person in charge of a rural household industry;the person who works the most in a rural household industry;the person who is responsible for a rural household industry -Count_Person_MainWorker_HouseholdIndustries_Urban,the most prevalent type of worker in household industries in urban areas;the most common occupation in household industries in urban areas;the main workers in household industries in urban areas;the majority of workers in household industries in urban areas -Count_Person_MainWorker_Male,the main worker in the population is male -Count_Person_MainWorker_OtherWorkers,population: main worker and other workers;population: main worker and non-main workers;population: workers: main and other;population: workers: primary and secondary -Count_Person_MainWorker_OtherWorkers_Female,female primary workers and other workers -Count_Person_MainWorker_OtherWorkers_Male,"male workers, the majority of workers, and others" -Count_Person_MainWorker_OtherWorkers_Rural, -Count_Person_MainWorker_OtherWorkers_Urban, -Count_Person_MainWorker_Rural,the main occupations in rural areas -Count_Person_MainWorker_Rural_Female,female population in rural areas who are employed -Count_Person_MainWorker_Rural_Male, -Count_Person_MainWorker_Urban,the majority of workers live in urban areas;most workers live in cities;the largest number of workers live in urban areas;the bulk of workers live in urban areas -Count_Person_MainWorker_Urban_Female,city working men;men who work in cities and are responsible for supporting their families;men who work in cities;male city workers -Count_Person_MainWorker_Urban_Male,men who are the main breadwinners in cities;men who are the main income earners in cities;men who are the primary breadwinners in cities;men who are the primary income earners in cities -Count_Person_Male,male population;number of males;count of males;masculine population -Count_Person_Male_AbovePovertyLevelInThePast12Months,the number of males who were not poor in the past year;the number of males who were not experiencing economic hardship in the past year;the number of males who were not income-deprived in the past year;the number of males who were not experiencing financial hardship in the past year -Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native males who were not below the poverty level in the past year;the number of american indian or alaska native males who were above the poverty line in the past year;how many american indian or alaska native males were above the poverty level last year?;what is the number of american indian or alaska native males who were not below the poverty level last year? -Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,how many asian men were above poverty level last year?;what is the number of asian men who were not below poverty level last year?;what is the percentage of asian men who were above poverty level last year?;what is the proportion of asian men who were not below poverty level last year? -Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,how many african american males have been above the poverty line in the last year;how many african american males have escaped poverty in the last year;what is the number of african american males who have been lifted out of poverty in the last year;what is the number of african american males who have experienced upward mobility in the last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,the number of hispanic males who were not in poverty last year;the number of hispanic males who were above the poverty line last year;the number of hispanic males who were not poor last year;the number of hispanic males who were not low-income last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,what is the number of native hawaiian or other pacific islander males who were above the poverty line last year?;what is the number of native hawaiian or other pacific islander males who were not living in low-income households last year? -Count_Person_Male_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,how many males were above the poverty level last year and are of some other race?;what is the number of males who were above the poverty level last year and are of some other race?;how many males are of some other race and were above the poverty level last year?;what is the number of males who are of some other race and were above the poverty level last year? -Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,the number of multiracial males who were above the poverty level last year;the number of males who are multiracial and above the poverty level;the number of males who are above the poverty level and multiracial;the number of males who identify as more than one race and are above the poverty level -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,the number of white males above the poverty line in the last year;the percentage of white males above the poverty line in the last year;the proportion of white males above the poverty line in the last year;the number of white males who are not poor in the last year -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,how many non-hispanic white males were above the poverty line last year?;what is the number of non-hispanic white males who were not living in poverty last year?;how many non-hispanic white males had an income above the poverty line last year?;what is the percentage of non-hispanic white males who were not poor last year? -Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,number of american indian and alaska native males;number of males who are american indian and alaska native;number of males who are american indian and alaska native alone or in combination with one or more other races;number of males who are american indian and alaska native by race -Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native males;number of males who are american indian or alaska native;number of males who are of american indian or alaska native descent -Count_Person_Male_AsianAlone,number of asian-alone males -Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,number of asian men;count of asian males;how many asian men are there;how many males are asian -Count_Person_Male_AsianOrPacificIslander,the number of asian or pacific islander males;the number of males who are asian or pacific islander;the number of males identifying as asian or pacific islander;the number of males of asian or pacific islander descent -Count_Person_Male_BelowPovertyLevelInThePast12Months,the number of men living in poverty last year;the number of males who were below the poverty line last year;the number of men who were living in poverty last year;the number of males who were living in poverty last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,the number of american indian males living below the poverty line in the last year;the number of american indian men who are poor;the number of american indian males who are struggling financially;the number of american indian men who are living in poverty -Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone, -Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino, -Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,the number of native hawaiian or other pacific islander males living below the poverty line in the last year;the number of native hawaiian or other pacific islander males who are poor;the number of native hawaiian or other pacific islander males who are experiencing economic hardship;the number of native hawaiian or other pacific islander males who are living in poverty -Count_Person_Male_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,number of males who are below the poverty line and are of some other race;number of males who are of some other race and are below the poverty line;number of males who are below the poverty line and are of a race other than white;number of males who are below the poverty line and who are some other race alone -Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,the number of multiracial males who were below the poverty line in the last year;the number of males who are multiracial and below the poverty line;how many multiracial males were below the poverty line last year?;what is the number of multiracial males who were below the poverty line last year? -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,number of white males with an income insufficient to meet basic needs in the last year -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino, -Count_Person_Male_BlackOrAfricanAmericanAlone,number of african american males alone -Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,african american males;black men;male african americans;african-american men -Count_Person_Male_DidNotWork,unemployed men aged 16 to 64;men aged 16 to 64 who are not employed;men aged 16 to 64 who are not working -Count_Person_Male_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,number of males who got divorced and were below the poverty line in the last year;number of males who got divorced and were living in poverty in the last year;number of males who got divorced and had low income in the last year;number of males who got divorced and were poor in the last year -Count_Person_Male_DivorcedInThePast12Months_OwnerOccupied_ResidesInHousingUnit,male-owned homes that have undergone a divorce in the past 12 months;homes owned by men who have been divorced in the past year;housing units occupied by men who have been divorced in the past year;houses owned by men who have been divorced in the past 12 months -Count_Person_Male_DivorcedInThePast12Months_PovertyStatusDetermined,number of male divorcees in the last year with known poverty status;number of men who divorced in the last year and whose poverty status can be determined;number of male divorcees in the last year with determinable poverty status;number of males divorced in the last year whose poverty status can be determined -Count_Person_Male_DivorcedInThePast12Months_RenterOccupied_ResidesInHousingUnit,the number of men who rented housing units and got divorced in the past 12 months;the number of male renters who got divorced in the past 12 months;the number of men who got divorced in the past 12 months while renting housing units;the number of men who rented housing units and got divorced in the past year -Count_Person_Male_DivorcedInThePast12Months_ResidesInHousehold,number of divorced males living in households in the last year;number of males divorced and living in households in the last year;number of males living in households who have been divorced in the last year;number of males who have been divorced and are living in households in the last year -Count_Person_Male_ForeignBorn,number of males born in other countries;number of males who are foreign-born;number of foreign-born males;number of males born in another country -Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,number of males born in africa;number of male births in africa;number of baby boys born in africa;number of male babies born in africa -Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,how many males were born in asia?;how many male babies were born in asia?;what is the number of male births in asia?;what is the number of males born in asia each year? -Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,number of males born in the caribbean;number of male births in the caribbean;number of baby boys born in the caribbean;number of male babies born in the caribbean -Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,count of males born in central american countries other than mexico;total number of males born in central american countries other than mexico;number of central american males born outside of mexico;number of males born in central america excluding mexico -Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,number of males born in eastern asia;number of male births in eastern asia;number of male babies born in eastern asia;number of males born in the eastern asian region -Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,the number of males born in europe;the number of male births in europe;the number of male babies born in europe;the number of boys born in europe -Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,male births in latin america;number of male births in latin america;number of baby boys born in latin america;number of male babies born in latin america -Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,number of males born in mexico;number of male births in mexico;number of newborn boys in mexico;number of baby boys born in mexico -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,how many males were born in north america?;how many male births were there in north america?;what is the number of male births in north america?;how many boys were born in north america? -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of males born in northwestern europe;number of male births in northwestern europe;male births in northwestern europe;number of boys born in northwestern europe -Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,number of males born in oceania;number of male births in oceania;number of oceanian males born;number of oceanian births that were male -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,number of males born in south central asia;number of male births in south central asia;number of baby boys born in south central asia;number of male babies born in south central asia -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of males born in the southeast asian region;the number of males born in the southeast asian region;how many males are born in southeast asia;what is the number of male births in southeast asia -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,number of males born in south america;number of baby boys born in south america;number of male births in south america;number of male babies born in south america -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,how many males were born in southeast europe;how many male births were there in southeast europe;what is the number of male births in southeast europe;what is the number of males born in the southeast europe region -Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,male births in western asia;the number of male births in western asia;the number of boys born in western asia;the number of male babies born in western asia -Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,the number of foreign-born males living in adult correctional facilities;the number of male prisoners who were born outside of the united states;the number of incarcerated males who are not us citizens;the number of foreign-born males who are serving time in prison -Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,number of foreign-born male college students living in university housing;number of male college students born outside the united states living in university housing;number of male college students who are not native-born us citizens living in university housing;number of foreign-born male students living in college or university dormitories -Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,number of foreign-born males living in group quarters;number of foreign-born men living in group quarters;number of foreign-born males in group quarters;the number of foreign-born males living in group quarters -Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,number of foreign-born males institutionalized in group quarters;number of foreign-born males living in institutional settings;number of foreign-born men institutionalized in group quarters;number of foreign-born males who are institutionalized -Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"number of foreign-born males living in group quarters other than institutions;number of foreign-born men living in non-institutional group quarters;number of foreign-born males living in group quarters, not institutionalized;number of foreign-born men living in non-institutional group quarters, not institutionalized" -Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,number of foreign-born males living in nursing homes;number of male nursing home residents who were born outside the united states;number of foreign-born male nursing home residents;number of males living in nursing homes who were born outside the united states -Count_Person_Male_FullTimeYearRoundWorker,"men aged 16 to 64 who work full-time all year round;full-time, year-round male workers aged 16 to 64;men aged 16 to 64 who work full-time for the entire year;male workers aged 16 to 64 who work full-time and year-round" -Count_Person_Male_HispanicOrLatino,number of hispanic males;number of hispanic men;number of males who are hispanic;number of hispanic-american males -Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic and american indian males;number of males who are hispanic and american indian;number of males identifying as hispanic and american indian;number of males who identify as hispanic and american indian -Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone, -Count_Person_Male_HispanicOrLatino_AsianAlone, -Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic and asian males;number of males who are hispanic and asian;number of males identifying as hispanic and asian;number of males who identify as hispanic and asian -Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,number of hispanic and asian or pacific islander males;number of males who are hispanic and asian or pacific islander;number of males who are of hispanic and asian or pacific islander descent;number of males who are hispanic and/or asian or pacific islander -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,count of males who are hispanic and african american alone;number of males who are hispanic and black alone -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic and african american males;number of males who are hispanic and african american;number of males who are both hispanic and african american;number of hispanic and african american men -Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,number of hispanic males who are also native hawaiian or other pacific islander;number of hispanic and native hawaiian or other pacific islander males;number of males who are hispanic and native hawaiian or other pacific islander;number of males who are of hispanic and native hawaiian or other pacific islander descent -Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"number of hispanic males who are native hawaiian or other pacific islander alone;number of hispanic men who are native hawaiian or other pacific islander alone;number of males who are hispanic and native hawaiian or other pacific islander, alone" -Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,number of hispanic males who are biracial;the number of hispanic men who are of mixed race;the number of hispanic men who are biracial -Count_Person_Male_HispanicOrLatino_WhiteAlone,the number of males who are hispanic and white alone -Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,hispanic and white males;hispanic males who are also white;white males who are also hispanic;hispanic and white men -Count_Person_Male_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,the number of men who were below the poverty line last year and got married last year;the number of men who were living in poverty last year and got married last year;number of men who were below the poverty line last year and got married last year;number of men who were living in poverty last year and got married last year -Count_Person_Male_MarriedInThePast12Months_OwnerOccupied_ResidesInHousingUnit,houses owned by married men in the last 12 months;homes owned by married men in the last year;dwellings owned by married men in the last 12 months;residences owned by married men in the last year -Count_Person_Male_MarriedInThePast12Months_PovertyStatusDetermined,the number of men who got married last year and whose poverty status was also determined last year;the number of men who got married in the last year and whose poverty status was also determined in the last year;the number of men who got married in the past year and whose poverty status was also determined in the past year;the number of men who got married in the recent year and whose poverty status was also determined in the recent year -Count_Person_Male_MarriedInThePast12Months_RenterOccupied_ResidesInHousingUnit,number of homes occupied by married men in the last 12 months;number of housing units occupied by married men in the last year;number of housing units occupied by men who got married in the last 12 months;the number of housing units occupied by married men in the past 12 months -Count_Person_Male_MarriedInThePast12Months_ResidesInHousehold,number of married men living in households in the last year;number of male residents of households who have been married in the last year;number of married male household residents in the last year;number of male household residents who have been married in the last year -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,number of males who are native hawaiian and other pacific islander alone -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,the number of native hawaiian or other pacific islander males;the number of males who are native hawaiian or other pacific islander;the number of males who identify as native hawaiian or other pacific islander;the number of males who are of native hawaiian or other pacific islander descent -Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,number of males who are native hawaiian or other pacific islander alone;the number of males who are native hawaiian or other pacific islander alone -Count_Person_Male_NoHealthInsurance,"male, no health insurance;male, without health insurance;male, lacking health insurance;male, not having health insurance" -Count_Person_Male_NotHispanicOrLatino,number of males who are not hispanic;number of non-hispanic males;number of males who are not of hispanic origin;number of males who are not of hispanic descent -Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,number of american indian and alaska native males who identify as solely american indian and alaska native;number of american indian and alaska native males who identify as american indian and alaska native only;number of american indian and alaska native males who identify as american indian and alaska native without any other racial identity;number of american indian and alaska native males who are not of hispanic origin -Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native males who are not hispanic;number of american indian or alaska native males who are not of hispanic origin;number of american indian or alaska native males who do not identify as hispanic;number of males who identify as american indian or alaska native and not hispanic -Count_Person_Male_NotHispanicOrLatino_AsianAlone,the number of males who identify as asian alone and are not hispanic -Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,number of asian males who are not of hispanic origin;number of asian males who are not of hispanic descent;number of asian males who are not of hispanic ethnicity;number of asian men who are not hispanic -Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,number of non-hispanic asian or pacific islander males who are not latino;number of asian or pacific islander males who are not of hispanic origin -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone, -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,number of non-hispanic african american men;number of african american males who are not of hispanic origin;number of non-hispanic males who are african american;number of african american males who are not of hispanic descent -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,number of native hawaiian and other pacific islander males who are not of hispanic origin;number of non-hispanic native hawaiian and other pacific islander males who are not of hispanic descent;number of native hawaiian and other pacific islander males who are not of hispanic ethnicity;how many native hawaiian and other pacific islander males are not hispanic -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian and other pacific islander alone males who are not of hispanic origin;number of native hawaiian and other pacific islander alone males who are not of latino origin;number of native hawaiian and other pacific islander alone males who are not of latin american origin;number of native hawaiian and other pacific islander alone males who are not of spanish origin -Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,number of non-hispanic males who identify as multiracial;number of males who identify as multiracial and are not hispanic;number of non-hispanic males who identify with more than one race;number of males who identify as more than one race and are not hispanic -Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of non-hispanic white males;number of males who identify as white and are not hispanic;number of males who are not hispanic and identify as white;number of males who identify as white and are not of hispanic origin -Count_Person_Male_ResidesInAdultCorrectionalFacilities,how many men are in prison;the number of men in prison;the number of males in prison;the number of incarcerated men -Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,number of male students living in college or university housing;number of male students residing in college or university dormitories;number of male students staying in college or university dorms;number of male students living on campus -Count_Person_Male_ResidesInGroupQuarters,number of males living in group quarters;number of male residents in group quarters;how many men live in group quarters?;what is the number of males living in group quarters? -Count_Person_Male_ResidesInInstitutionalizedGroupQuarters,number of males institutionalized;the number of men living in institutions;the number of men institutionalized;the number of men living in group care -Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,number of men living in non-institutional group housing;number of males living in non-institutional group quarters;number of men living in non-institutional group housing facilities;how many males live in non-institutional group quarters? -Count_Person_Male_ResidesInNursingFacilities,number of men living in nursing homes;number of male nursing home residents;number of males in nursing homes;number of male nursing home patients -Count_Person_Male_SomeOtherRaceAlone,number of males of some other race alone;number of males from some other race alone;number of males who are from some other race alone;number of males who are of some other race alone -Count_Person_Male_TwoOrMoreRaces,count of males who identify as multiracial;number of males who identify with more than one race;the number of males who identify as multiracial;the number of males who are of mixed race -Count_Person_Male_WhiteAlone,the number of males who are white alone;count of males who are white alone;white male population;male population that is white -Count_Person_Male_WhiteAloneNotHispanicOrLatino,number of males who are white alone and not hispanic -Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of white males;number of males who are white;number of males who are of white descent;number of males who are white or mixed-race -Count_Person_Male_WithEarnings,1 number of men who earn money;2 number of males who are employed;3 number of males who have a job;5 number of males who are gainfully employed -Count_Person_Male_WithEarnings_FullTimeYearRoundWorker,"adult males who are employed full-time and year-round;men who are 16 years or older and work full-time for the entire year;men who are 16 years or older and have a full-time job that lasts for the entire year;adult males who are employed full-time, year-round" -Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,number of men in adult correctional facilities who are earning an income;number of men in adult correctional facilities who are gainfully employed;number of male detainees in adult correctional facilities who are earning an income;number of male offenders in adult correctional facilities who are gainfully employed -Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,number of male students who earn money and live in college or university dormitories;number of male students who are employed and live in college or university dormitories;number of male students who are earning an income and live in college or university dormitories;the number of male students who are earning money and living in college or university student housing -Count_Person_Male_WithEarnings_ResidesInGroupQuarters,number of men who earn money and live in group quarters;number of male earners living in group quarters -Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,number of men who have been institutionalized in group quarters and are earning money;number of men who have been institutionalized in group quarters and are employed;number of men who have been institutionalized in group quarters and are earning an income;number of men who have been institutionalized in group quarters and are making money -Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,number of men who earn money and live in non-institutional group quarters;number of males who are earning money and living in non-institutional group housing;number of males who are earning money and living in non-institutional group residences;1 number of males who are earning money and living in non-institutional group quarters -Count_Person_Male_WithEarnings_ResidesInNursingFacilities,what is the number of male nursing home residents who are still employed?;how many men who are still earning a living reside in nursing homes?;what is the number of male nursing home residents who are still earning an income?;number of men who earn money and live in nursing homes -Count_Person_Male_WithHealthInsurance,"male with health insurance;man with health insurance;male, insured;man, insured" -Count_Person_MarginalWorker, -Count_Person_MarginalWorker_AgriculturalLabourers,low-paid agricultural workers;unskilled agricultural workers;seasonal agricultural workers;temporary agricultural workers -Count_Person_MarginalWorker_AgriculturalLabourers_Female, -Count_Person_MarginalWorker_AgriculturalLabourers_Male,"male agricultural laborers who are marginal workers;marginal agricultural laborers, male population;male marginal agricultural laborers;marginal agricultural laborers, male" -Count_Person_MarginalWorker_AgriculturalLabourers_Rural, -Count_Person_MarginalWorker_AgriculturalLabourers_Urban,rural-to-urban migrants working in agriculture;rural-urban migrants who work in agriculture -Count_Person_MarginalWorker_Cultivators, -Count_Person_MarginalWorker_Cultivators_Female,women who cultivate land;women who cultivate;female gardeners -Count_Person_MarginalWorker_Cultivators_Male,men who cultivate land on the margins of society -Count_Person_MarginalWorker_Cultivators_Rural, -Count_Person_MarginalWorker_Cultivators_Urban,people who turn urban spaces into productive gardens;people who turn urban spaces into gardens;people who make use of unused urban spaces to grow food -Count_Person_MarginalWorker_Female,woman who is on the margins of the workforce -Count_Person_MarginalWorker_HouseholdIndustries, -Count_Person_MarginalWorker_HouseholdIndustries_Female,women who work in the informal economy;women who work in the care economy;women in the informal economy;women in the care economy -Count_Person_MarginalWorker_HouseholdIndustries_Male,male who works in the household;male who is a home-based worker;male who is a domestic worker;man who works in the household -Count_Person_MarginalWorker_HouseholdIndustries_Rural, -Count_Person_MarginalWorker_HouseholdIndustries_Urban,urban marginal workers in household industries;urban household industry workers on the margins;urban marginal workers in household industries on the margins;urban household industry workers on the fringes -Count_Person_MarginalWorker_Male, -Count_Person_MarginalWorker_OtherWorkers,contingent workers;freelance workers;marginal workers;peripheral workers -Count_Person_MarginalWorker_OtherWorkers_Female,other women who are not in the mainstream workforce -Count_Person_MarginalWorker_OtherWorkers_Male, -Count_Person_MarginalWorker_OtherWorkers_Rural,other rural workers who are not part of the mainstream economy -Count_Person_MarginalWorker_OtherWorkers_Urban, -Count_Person_MarginalWorker_Rural, -Count_Person_MarginalWorker_Rural_Female,rural women who are facing economic hardship;rural women who are underemployed or unemployed;3 women in rural areas who are facing barriers to employment and economic opportunity -Count_Person_MarginalWorker_Rural_Male,rural male workers who are struggling to make ends meet;men in rural areas who are underemployed or unemployed;men in rural areas who are working in low-wage jobs;men in rural areas who are facing economic hardship -Count_Person_MarginalWorker_Urban, -Count_Person_MarginalWorker_Urban_Female,urban women on the margins of society;women in cities who are struggling to make ends meet;urban women on the outskirts of society;women who live on the margins of urban life -Count_Person_MarginalWorker_Urban_Male,the percentage of urban males who work at least once a week;the number of urban males who work at least once a week;the proportion of urban males who work at least once a week -Count_Person_MarriedAndNotSeparated,number of married people who are not separated or divorced;number of married people who are not legally separated;number of married people who are still in their marriages;number of married people who are not separated -Count_Person_MarriedAndNotSeparated_DifferentHouseAbroad,1 population of married people aged 15 years or more who are not separated and live in different houses abroad;2 population of married people aged 15 years or more who are not separated and live in different houses outside of their home country;3 population of married people aged 15 years or more who are not separated and live in different houses in other countries;4 population of married people aged 15 years or more who are not separated and live in different houses in foreign countries -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountyDifferentState,"population of married people aged 15 years or more who live in different houses, counties, and states;number of married people aged 15 years or more who live in different houses, counties, and states;percentage of married people aged 15 years or more who live in different houses, counties, and states;share of married people aged 15 years or more who live in different houses, counties, and states" -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountySameState,married people aged 15 years or older in different counties of the same state;people who are married and not separated aged 15 years or older in different counties of the same state;married people aged 15 years or older in different counties of the same state who are not separated;married people aged 15 or older in different counties of the same state -Count_Person_MarriedAndNotSeparated_DifferentHouseInSameCounty,number of people aged 15 or older who are married and not separated in the same county;number of married people aged 15 or older who are not separated in the same county;number of people aged 15 or older who are married and living together in the same county;number of people aged 15 or older who are married and not living apart in the same county -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthAfrica,married foreign-born africans aged 15 or older;foreign-born africans who are married and not separated and are aged 15 or older;foreign-born africans who are married and not separated and are 15 years of age or older;foreign-born africans who are married and not separated and are at least 15 years old -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthAsia,number of married foreign-born people in asia who have been married for more than 15 years;number of foreign-born people in asia who have been married for more than 15 years and are not separated;number of married foreign-born people in asia who have been married for at least 15 years;number of foreign-born people in asia who have been married for at least 15 years and are not separated -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthCaribbean,"the number of people who were born in the caribbean and are currently married and not separated, aged 15 years or more;the number of foreign-born caribbean people who are married and not separated, aged 15 years or more;the number of people in the caribbean who were born in another country and are married and not separated, aged 15 years or more;the number of foreign-born people in the caribbean who are married and not separated, aged 15 years or more" -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american immigrants who are 15 years of age or older and are not married;central american immigrants who are unmarried and 15 years of age or older;foreign-born central americans who are unmarried and 15 years of age or older;unmarried immigrants from central america who are 15 years of age or older -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthEasternAsia,"foreign-born married and unseparated people from western asia aged 15 years or more;people from western asia who were born outside of the country and are married and unseparated, aged 15 years or more;people from western asia who were born outside of the country and are married, aged 15 years or more;people from western asia who were born outside the us and are married and not separated, and who are at least 15 years old" -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthEurope,"the percentage of foreign-born people in europe aged 15 years or more who are married;the proportion of foreign-born people in europe aged 15 years or more who are married;the number of foreign-born people in europe aged 15 years or more who are married, expressed as a percentage of the total foreign-born population in europe aged 15 years or more;the number of foreign-born people in europe aged 15 years or more who are married, expressed as a proportion of the total population of europe aged 15 years or more" -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthLatinAmerica, -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthMexico,foreign-born mexicans who are married and separated and are 15 years of age or older;foreign-born mexicans who are married and separated and are at least 15 years old;foreign-born mexicans who are married and separated and are aged 15 or older;foreign-born mexicans who are married and separated and are aged 15 and up -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthNorthamerica,north american foreign-born population aged 15 years or more who are married and not separated;the number of foreign-born people in north america aged 15 years or more who are married and not separated;the percentage of foreign-born people in north america aged 15 years or more who are married and not separated;the proportion of foreign-born people in north america aged 15 years or more who are married and not separated -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"foreign-born people in north western europe who are married and not separated, aged 15 years or more;people who were born outside of north western europe, are married and not separated, and are 15 years of age or older;people who were born outside of north western europe, are married and not separated, and are aged 15 or older;people who were born outside of north western europe, are married and not separated, and are 15+ years old" -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthOceania,the number of people born in oceania who have been married for 15 years or more;the number of people born in oceania who have been married for more than 15 years;the number of people born in oceania who have been married for at least 15 years;the number of people born in oceania who have been married for a period of 15 years or more -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthSouthCentralAsia,"people who are 15 years of age or older, married and not separated, and are citizens of south central asia" -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthSouthEasternAsia, -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthSouthamerica,the number of foreign-born people over 15 years old who are married and not separated in south america;the percentage of foreign-born people over 15 years old who are married and not separated in south america;the proportion of foreign-born people over 15 years old who are married and not separated in south america;the share of foreign-born people over 15 years old who are married and not separated in south america -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthSouthernEasternEurope,foreign-born people who are married and above 15 years old in southern eastern europe;the number of married foreign-born people above 15 years old in southern eastern europe;the percentage of married foreign-born people above 15 years old in southern eastern europe;the proportion of married foreign-born people above 15 years old in southern eastern europe -Count_Person_MarriedAndNotSeparated_ForeignBorn_PlaceOfBirthWesternAsia,"the number of people who were born in western asia and are currently married and not separated, aged 15 years or more;the number of foreign-born people in western asia who are married and not separated, aged 15 years or more;the number of people who are not citizens of western asia and are currently married and not separated, aged 15 years or more, in western asia;the number of people who were born outside of western asia and are currently married and not separated, aged 15 years or more, in western asia" -Count_Person_MarriedAndNotSeparated_ResidesInAdultCorrectionalFacilities,married people in adult correctional facilities;married adults in prison;married prisoners;married people who are incarcerated -Count_Person_MarriedAndNotSeparated_ResidesInCollegeOrUniversityStudentHousing,the number of married people aged 15 years and older living in university housing;the number of married students aged 15 years and older living in university housing;the number of married people aged 15 years and older who are students and living in university housing;the number of married students aged 15 years and older who are living in university housing -Count_Person_MarriedAndNotSeparated_ResidesInGroupQuarters,married people aged 15 years or older who are not separated and do not live in group quarters;people aged 15 years or older who are married and not separated and do not live in group quarters;the number of people aged 15 years or older who are married and not separated and do not live in group quarters;the population of people aged 15 years or older who are married and not separated and do not live in group quarters -Count_Person_MarriedAndNotSeparated_ResidesInInstitutionalizedGroupQuarters,married people aged 15 years or more living in group quarters;people aged 15 years or more who are married and living in group quarters;people aged 15 years or more who are married and institutionalized;people aged 15 years or more who are married and living in a group setting -Count_Person_MarriedAndNotSeparated_ResidesInNoninstitutionalizedGroupQuarters,married people aged 15 and older living in group quarters that are not hospitals or other medical facilities;married people aged 15 and older living in group quarters that are not schools or other educational institutions;married people aged 15 and above living in group quarters that are not prisons or jails;people aged 15 and over who are married and not separated and live in non-institutional group quarters -Count_Person_MarriedAndNotSeparated_ResidesInNursingFacilities,married people in nursing homes;people who are married and in nursing homes;the percentage of married people in nursing homes;the proportion of married people in nursing homes -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,households of foreign-born couples in africa;african households with foreign-born spouses;households in africa headed by foreign-born couples;households in africa with foreign-born husbands and wives -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,households with married couples who were born in africa and have had their poverty status determined;households with married couples who were born in africa and have been determined to be poor;households with married couples who were born in africa and have been determined to have low income;households with foreign-born african married couples and poverty status determined -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,households with married couples and foreign-born members in asia;asian households with married couples who were born outside of asia;households in asia with married couples who are not citizens of asia;households in asia with married couples who are immigrants -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,households of asian foreign-born married couples with determined poverty status;asian foreign-born married couples living in poverty-stricken households;households of asian foreign-born married couples that have been determined to be in poverty;households of asian foreign-born married couples that have been identified as living in poverty -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,caribbean married couples who live in the united states with their children;foreign-born caribbean couples who are married and have children living with them in the united states;caribbean families in the united states with parents who are married and have children;caribbean married couples and their children who live in the united states -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,foreign-born married couples in the caribbean who have been determined to be in poverty;foreign-born married couples in the caribbean who have been classified as poor;foreign-born married couples in the caribbean who have been determined to have low income;foreign-born married couples in the caribbean who have been classified as low-income -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,households in central america with foreign-born married couples;married couples in central america who were born outside of the country;central american households with married couples who are not from mexico;households in central america with married couples who were not born in mexico -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,households with married couples who were born in central america (except mexico) and are living in poverty;households with married couples who were born in central america (except mexico) and are considered to be low-income;households with married couples who were born in central america (except mexico) and are living below the poverty line;households with married couples who were born in central america (except mexico) and are experiencing economic hardship -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,households in eastern asia with foreign-born married couples;married couples in eastern asia who were born in other countries;families in eastern asia with married couples who were born outside of the country;households in eastern asia headed by a married couple who was born outside of the country -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,families in eastern asia with foreign-born married couples and determined poverty status;eastern asian married-couple families with foreign-born members who have been determined to be in poverty;eastern asian families with married couples who were born in other countries and have been determined to be poor;eastern asian families with married couples who are not us citizens and have been determined to be poor -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,household of a european-born married couple;married couple household with european-born members;household with a european-born married couple;european immigrant married couple household -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,what is the poverty status of foreign-born people in europe who live in married-couple families?;what percentage of foreign-born people in europe live in married-couple families that are below the poverty line?;what is the poverty rate for foreign-born people in europe who live in married-couple families?;what is the percentage of foreign-born people in europe who live in married-couple families that are considered poor? -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,households with married couples who were born in latin america;households headed by married couples who were born in latin america;households with married couples who are foreign-born from latin america;households with married couples who are immigrants from latin america -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,poverty status of foreign-born population in latin america in married couple family households;proportion of foreign-born population in latin america living in married couple family households in poverty;poverty rate of foreign-born population in latin america living in married couple family households;percentage of foreign-born population in latin america living in married couple family households in poverty -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,a married couple and their children who were born in mexico;a family unit consisting of a married couple and their children who were born in mexico;a household headed by a married couple and their children who were born in mexico;a family of mexican descent living in the united states -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,households with married couples who were born in mexico and have been determined to be in poverty;households with married couples who were born in mexico and are living in poverty;households with married couples who were born in mexico and have been identified as impoverished;households with married couples who were born in mexico and are considered to be poor -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,north american married couple family households with foreign-born members;north american married couple family households with at least one foreign-born member;foreign-born people living in north america in married couple family households;married couple family households in north america with at least one foreign-born member -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,households in north america with married couples who were born outside the country and have been determined to be living in poverty;north american households with married couples who were born in other countries and are considered poor;households in north america with married couples who are immigrants and are living in poverty;north american households with married couples who are not citizens and are living in poverty -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,households in northern western europe with married couples and foreign-born members;households in northern western europe with married couples and immigrants;households in northern western europe with married couples and people who were born outside of the country;households in northern western europe with married couples and people who are not citizens of the country -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,households of foreign-born married couples in northern western europe with determined poverty status;foreign-born married couples in northern western europe living in poverty;married couples of foreign origin in northern western europe who are poor;foreign-born married couples in northern western europe who are living below the poverty line -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,households in oceania with married couples who were born in other countries;families in oceania with married couples who are immigrants;households in oceania with married couples who are not citizens of oceania;families in oceania with married couples who are foreign-born -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,households with married couples who were born in oceania and are considered to be in poverty;households with married couples who were born in oceania and are living below the poverty line;households with married couples who were born in oceania and are experiencing financial hardship;households with married couples who were born in oceania and have been determined to be in poverty -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"households of foreign-born married couples in south central asia;foreign-born married couples living in south central asia as a family unit;south central asian households headed by foreign-born married couples;foreign-born married couples living in south central asia as a family unit, with or without children" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,"households with married couples, foreign born in south central asia, and determined poverty status;households with married couples who were born in south central asia and are determined to be poor;households with married couples who were born in south central asia and are living in poverty;households with married couples who were born in south central asia and are at or below the poverty line" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,a family of a married couple who were born in southeast asia;a married couple and their children who were born in southeast asia;a married couple and their offspring who were born in southeast asia;south east asian immigrant couple with children -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"families of foreign-born married couples in southeast asia who have been determined to be in poverty;married couples who were born outside of southeast asia and are now living in the region, and who have been determined to be poor;southeast asian families headed by a married couple who were born outside of the region, and who have been determined to be living in poverty;families of foreign-born married couples in south-east asia with poverty status determined" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,households in south america with married couples who were born in another country;south american households with married couples who are immigrants;families in south america headed by a married couple who were born in another country;households in south america with married immigrant parents -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,how do we know if foreign-born married couples in south america are living in poverty?;what are the factors that determine whether or not foreign-born married couples in south america are living in poverty?;how is poverty status determined for foreign-born married couples in south america?;what are the different ways to determine poverty status for foreign-born married couples in south america? -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,1 the number of foreign-born people who are married in south eastern europe;2 the percentage of foreign-born people who are married in south eastern europe;3 the proportion of foreign-born people who are married in south eastern europe;4 the share of foreign-born people who are married in south eastern europe -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,households of foreign-born married couples with poverty status determined in southern eastern europe;households of married couples who were born outside of southern eastern europe and have been determined to be poor;households of married couples who were not born in southern eastern europe and have been determined to be living in poverty;households of married couples who were not born in southern eastern europe and have been determined to have a low income -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,households in western asia with married couples and immigrants;households with married couples and people who were born in western asia -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined, -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,households in africa with foreign-born married couples and children under 18 with poverty status determined;households in africa with married couples who were born in another country and have children under 18 with poverty status determined;households in africa with married couples who are not citizens of the country and have children under 18 with poverty status determined;households in africa with married couples who were not born in the country and have children under 18 with poverty status determined -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,households of married couples with children under 5 who were born in asia and are living in poverty;families with married parents and children under 5 who were born in asia and are living in poverty;households with married couples and children under 5 who were born in asia and are considered poor;families with married parents and children under 5 who were born in asia and are considered poor -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,"a household with a married couple and their children under 18, who are all citizens of the caribbean, and who are living in the united states below the poverty line;a household with a married couple and their children under 18, who are all from the caribbean, and who are living in the united states in poverty;a household with a married couple and their children under 18, who are all caribbean immigrants, and who are living in the united states in poverty;a household consisting of a married couple with children under the age of 18, who were born outside of the united states and are of caribbean descent, and whose poverty status has been determined" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,households with married couples and children under 18 years of age who were born in central america but not mexico and have been determined to be living in poverty;households headed by married couples with children under 18 who were born in central america but not mexico and have been determined to be living in poverty;households headed by a married couple with children under 18 who were born in central america but not mexico and who were determined to be in poverty;households headed by a married couple with children under 18 who were born in central america but not mexico and who are considered to be low-income -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,a married couple from eastern asia with children under 18 who have been classified as low-income -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,the number of foreign-born people in europe who live in married-couple family households with children under 5 years old and whose poverty status has been determined;the percentage of foreign-born people in europe who live in married-couple family households with children under 5 years old and are considered to be in poverty;the proportion of foreign-born people in europe who live in married-couple family households with children under 5 years old and have a low income;the number of foreign-born people in europe who live in married-couple family households with children under 5 years old and are struggling to make ends meet -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,population of latin american immigrants in the united states with children under 18 who live in married-couple families and have been determined to be in poverty;number of latin american immigrants in the united states with children under 18 who live in married-couple families and have been determined to be in poverty;percentage of latin american immigrants in the united states with children under 18 who live in married-couple families and have been determined to be in poverty;share of latin american immigrants in the united states with children under 18 who live in married-couple families and have been determined to be in poverty -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,the number of mexican-born married couples with children under 18 who live in poverty;the percentage of mexican-born married couples with children under 18 who live in poverty;the proportion of mexican-born married couples with children under 18 who live in poverty;the incidence of poverty among mexican-born married couples with children under 18 -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,north american immigrant married couples with children under 18 who have been determined to be living in poverty;north american immigrant married couples with children under 18 who have been classified as poor;north american immigrant married couples with children under 18 who have been determined to have low income;households headed by married couples with foreign-born children under 18 who are living in poverty in north america -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,households of married couples with foreign-born children under 18 in northern western europe who have been determined to be living in poverty;households of married couples with foreign-born children under 18 in northern western europe who have been officially classified as poor;households of married couples with foreign-born children under 18 in northern western europe who have been determined to be experiencing economic hardship;households of married couples with foreign-born children under 18 in northern western europe who have been officially classified as living below the poverty line -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,people born outside of oceania who are living in married couple family households with children under the age of 18 and have been determined to be living in poverty;people who were born outside of oceania and are living in oceania in married couple family households with children under the age of 18 who have been determined to be living in poverty;people who were born outside of oceania and are living in oceania in married couple family households with children under the age of 18 who have been determined to have a low income;people who were born outside of oceania and are living in oceania in married couple family households with children under the age of 18 who have been determined to be struggling to make ends meet -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,married couples with children under 18 who were born in south central asia and live in poverty;south central asian married couples with children under 18 who are living in poverty;families with children under 18 headed by a married couple who were born in south central asia and are living in poverty;households with children under 18 headed by a married couple who were born in south central asia and are living in poverty -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"southeast asian married couples with children under 18 in the united states, grouped by poverty status;south east asian families with married couples and children under 18, grouped by poverty status" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,"a group of people living together as a family, consisting of a married couple with children under 18 who were born in south america and have been determined to be in poverty;a family unit consisting of a married couple and their children under the age of 18, who were all born in south america and have been determined to be in poverty;a group of people living together as a family, consisting of a married couple and their children under the age of 18, who were all born in south america and have been determined to be in poverty;a family unit consisting of a married couple and their children under the age of 18, who were born in south america and have been determined to be living in poverty" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,foreign-born married couples in south eastern europe with children under 18 who have been determined to be in poverty;foreign-born married couples in south eastern europe with children under 18 who have been identified as poor;foreign-born married couples in south eastern europe with children under 18 who have been classified as impoverished;foreign-born married couples in south eastern europe with children under 18 who have been designated as low-income -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,households in western asia with foreign-born married couples and children under 18 who are living in poverty;households in western asia with foreign-born married couples and children under 18 who are considered poor;households in western asia with foreign-born married couples and children under 18 who are experiencing financial hardship;households in western asia with foreign-born married couples and children under 18 who are living below the poverty line -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,percentage of african foreign-born married couples with children under 5 years old who are living in poverty;share of african foreign-born married couples with children under 5 years old who are poor;number of african foreign-born married couples with children under 5 years old who are living in poverty;proportion of african foreign-born married couples with children under 5 years old who are poor -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,"households with immigrant married couples and young children whose poverty status was determined in asia;households with married couples who are immigrants and have young children whose poverty status was determined in asia;married couples who immigrated from asia and have children under the age of 5, and whose poverty status was determined in asia;married couples who immigrated from asia and have children under the age of 5, and who were determined to be living below the poverty line in asia" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,caribbean immigrant married couples with children under 5 who have been determined to be in poverty;caribbean immigrant married couples with children under 5 who have been determined to be poor;caribbean immigrant married couples with children under 5 who have been determined to have low income;caribbean immigrant married couples with children under 5 who have been determined to be living in poverty -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,central american foreign-born married couples with children under 5 who have been determined to be living in poverty;central american married couples who have immigrated to the united states and have children under 5 who have been determined to be living in poverty;households with married couples and children under 5 years old who were born in central america but not mexico and are struggling to make ends meet;central american immigrant families with young children who are struggling to make ends meet -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,families headed by single mothers with children under 5 years old who were born in eastern asia and have been determined to be in poverty;families headed by single mothers with children under 5 years old who were born in eastern asia and are living in poverty;families headed by single mothers with children under 5 years old who were born in eastern asia and have been identified as poor;families headed by single mothers with children under 5 years old who were born in eastern asia and are considered to be poor -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,"european families with married parents and children under 5 who are experiencing financial hardship;european households with married parents and children under 5 who are struggling to make ends meet;european families with married parents and children under 5 who are living below the poverty line;households headed by a married couple of foreign origin with children under the age of 5, whose poverty status was determined in europe" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,households with single mothers and children under 5 years old who were born in latin america and are living in poverty;families headed by single mothers with children under 5 years old who were born in latin america and are living in poverty;households with single mothers and children under 5 years old who immigrated from latin america and are living in poverty;families headed by single mothers with children under 5 years old who immigrated from latin america and are living in poverty -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,"mexican-born married couples with children under 5 who are living in poverty;mexican-born married couples with children under 5 who are living in low-income households;households with married couples who were born in mexico and have children under 5 who are considered to be low-income;households with married couples who were born in mexico and have children under the age of 5, and who have been determined to be low-income" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,"a family unit consisting of a married couple with children under 5 who were born outside of north america and have been determined to be in poverty;a group of people living together as a family unit, consisting of a married couple with children under 5 who were born outside of north america and have been determined to be in poverty;a family unit consisting of a married couple and children under the age of 5 who were born outside of north america and who are struggling to make ends meet;a group of people living together under one roof who are related by marriage and have children under the age of 5 who were born outside of north america and who are not able to afford basic necessities" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,"the number of foreign-born people in eastern asia who live in married-couple family households with children under 5 years old and have had their poverty status determined;the number of immigrants who live in eastern asia in married-couple family households with children under 5 years old and have had their poverty status determined;the number of people born in eastern asia who are living in married couple family households with children under 5 years old, with poverty status determined;the number of foreign-born people from eastern asia living in married couple family households with children under 5 years old, with poverty status determined" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,foreign-born married couples with children under 5 in oceania who have been determined to be living in poverty;foreign-born married couples in oceania with children under 5 who have been determined to be poor;foreign-born married couples in oceania with children under 5 who have been determined to have low income;foreign-born married couples in oceania with children under 5 who have been determined to be living below the poverty line -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,households with married couples who were born in south central asia and have children under the age of 5 who have been determined to be in poverty;households with married couples who were born in south central asia and have children under the age of 5 who have been officially classified as poor;households with married couples who were born in south central asia and have children under the age of 5 who have been determined to have low income;households with married couples who were born in south central asia and have children under the age of 5 who are living in poverty -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"foreign-born population in southeast asian married couple family households with a determined poverty status;foreign-born population in southeast asian married couple family households whose poverty status has been determined;foreign-born population in southeast asian married couple family households with a determined poverty level;foreign-born people in southeast asia who are married, have children under 5, and have been determined to be in poverty" -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,south american married couples with children under 5 who have been determined to be living in poverty;south american married couples with young children who have been classified as poor;south american married couples with young children who have been determined to be low-income;south american married couples with young children who have been designated as impoverished -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,a married couple with children under 5 who were born in southern eastern europe and are living in poverty;a family of a married couple with children under 5 who were born in southern eastern europe and are living in poverty;a married couple with children under 5 who were born in southern eastern europe and are living below the poverty line;a family of a married couple with children under 5 who were born in southern eastern europe and are living below the poverty line -Count_Person_MarriedCoupleFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,"a married couple with children under the age of 5 who live in western asia and have been determined to be living in poverty;a family unit consisting of a married couple and their children under the age of 5, who reside in western asia and have been classified as impoverished;a household headed by a married couple with children under the age of 5, who live in western asia and have been designated as poor;a family group with a married couple and their children under the age of 5, who are citizens of western asia and have been identified as living in poverty" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction,"percentage of the population aged 16 or over employed in agriculture, forestry, fishing, hunting, and mining;share of the population aged 16 or over employed in agriculture, forestry, fishing, hunting, and mining;number of people aged 16 or over employed in agriculture, forestry, fishing, hunting, and mining as a percentage of the total population;proportion of the population aged 16 or over employed in agriculture, forestry, fishing, hunting, and mining" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction_SOCManagementBusinessScienceArtsOccupation,"civilians aged 16 and over employed in the agricultural, forestry, fishing, hunting, and mining industries;number of employed civilians above 16 years of age in agriculture, forestry, fishing, and hunting, and mining industries;percentage of employed civilians over 16 years old in agriculture, forestry, fishing and hunting, and mining industries;share of employed civilians over 16 years old in agriculture, forestry, fishing and hunting, and mining industries" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction_SOCNaturalResourcesConstructionMaintenanceOccupation,"people who are 16 years old or older and work in agriculture, forestry, fishing and hunting, mining, natural resources, construction, and maintenance;people who are not in the military and are 16 years old or older and work in agriculture, forestry, fishing and hunting, mining, natural resources, construction, and maintenance;people who are 16 years of age or older and are employed in agriculture, forestry, fishing and hunting, mining, and natural resources, construction, and maintenance occupations;civilian workers who are 16 years of age or older and are employed in the agricultural, forestry, fishing and hunting, mining, and natural resources, construction, and maintenance industries" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction_SOCProductionTransportationMaterialMovingOccupation,"civilians aged 16 and over who are employed in the agricultural, forestry, fishing, hunting, and mining industries;people aged 16 or older who work in agriculture, forestry, fishing, hunting, and mining;people aged 16 or older who work in agriculture, forestry, fishing, hunting, or mining;civilians aged 16 or older who are employed in the agricultural, forestry, fishing, hunting, and mining industries" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction_SOCSalesOfficeOccupation,"the number of people aged 16 and over who are employed in agriculture, forestry, fishing and hunting, and mining (naics/11_21) and sales and office occupations, expressed as a number per 100,000 people;the number of people aged 16 or older who are working in agriculture, forestry, fishing and hunting, and mining (naics/11_21), sales and office occupations" -Count_Person_NAICSAgricultureForestryFishingHuntingMiningQuarryingOilGasExtraction_SOCServiceOccupation,"the number of people aged 16 or older who are employed in agriculture, forestry, fishing, and hunting, and mining (naics/11_21) service occupations;the number of people aged 16 and over who are employed in agriculture, forestry, fishing and hunting, and mining (naics/11_21) service occupations;the number of people aged 16 and over who are employed in service occupations in the agriculture, forestry, fishing and hunting, and mining (naics/11_21) subsector;the number of people aged 16 or older who are employed in agriculture, forestry, fishing and hunting, and mining (naics/11_21) service occupations" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices,"people aged 16 and over who work in the arts, entertainment, recreation, and accommodation and food services industries;civilians aged 16 and over who are employed in the arts, entertainment, recreation, and accommodation and food services sectors;people aged 16 and over who have jobs in the arts, entertainment, recreation, and accommodation and food services industries;people aged 16 or older who work in the arts, entertainment, recreation, and accommodation and food services industries" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices_SOCManagementBusinessScienceArtsOccupation,"civilians aged 16 and over who are employed in the arts, entertainment, recreation, accommodation, food services, management, business, science and arts sectors;civilians aged 16 and over who work in the arts, entertainment, recreation, accommodation, food services, management, business, science and arts fields;civilians 16 years of age or older employed in arts, entertainment, recreation, accommodation, food services, management, business, science, and arts occupations;civilians 16 years of age or older who are employed in the arts, entertainment, recreation, accommodation, food services, management, business, science, and arts industry" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices_SOCNaturalResourcesConstructionMaintenanceOccupation,"people aged 16 or older who work in the arts, entertainment, recreation, accommodation, food services, natural resources, construction, and maintenance sectors;people aged 16 or older who work in the arts, entertainment, recreation, accommodation, food services, natural resources, construction, and maintenance industries;people aged 16 and older who work in the arts, entertainment, recreation, accommodation, food services, natural resources, construction, and maintenance industries;people aged 16 and over who work in the arts, entertainment, recreation, accommodation, food services, natural resources, construction, and maintenance industries" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices_SOCProductionTransportationMaterialMovingOccupation,"people aged 16 and over who work in the arts, entertainment, recreation, accommodation, food services, production, transportation, and material moving occupations;civilians aged 16 and over who are employed in the arts, entertainment, recreation, accommodation, food services, production, transportation, and material moving industries;people aged 16 and over who have jobs in the arts, entertainment, recreation, accommodation, food services, production, transportation, and material moving sectors;civilians aged 16 and over who are gainfully employed in the arts, entertainment, recreation, accommodation, food services, production, transportation, and material moving fields" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices_SOCSalesOfficeOccupation,"people aged 16 or older who work in the arts, entertainment, recreation, accommodation, and food services sales and office occupations;civilians aged 16 or older who are employed in the arts, entertainment, recreation, accommodation, and food services sales and office occupations;civilians aged 16 or older who are employed in the arts, entertainment, recreation, accommodation, and food services sales and office sectors;people aged 16 and older who work in arts, entertainment, and recreation, and accommodation and food services sales and office occupations" -Count_Person_NAICSArtsEntertainmentRecreationAccommodationFoodServices_SOCServiceOccupation,"civilians who are employed in service occupations in the arts, entertainment, recreation, accommodation, and food services industries;people who are 16 years of age or older and work in the service sector, specifically in the arts, entertainment, recreation, accommodation, and food services industries" -Count_Person_NAICSConstruction,people aged 16 or older who work in construction;construction workers aged 16 or older;civilians aged 16 or older who are employed in the construction industry;people aged 16 or older who are employed in the construction sector -Count_Person_NAICSConstruction_SOCManagementBusinessScienceArtsOccupation,"people in the construction, management, business, science, and arts sectors aged 16 and above;people in the construction, management, business, science, and arts fields aged 16 and above" -Count_Person_NAICSConstruction_SOCNaturalResourcesConstructionMaintenanceOccupation,"people aged 16 or older who work in construction, natural resources, and maintenance;people aged 16 or older who have jobs in construction, natural resources, and maintenance;people aged 16 or older who are employed in the construction, natural resources, and maintenance industries;1 people aged 16 and over who work in construction, natural resources, and maintenance" -Count_Person_NAICSConstruction_SOCProductionTransportationMaterialMovingOccupation, -Count_Person_NAICSConstruction_SOCSalesOfficeOccupation,"people aged 16 and older who work in construction, sales, or office jobs;civilians aged 16 and older who are employed in construction, sales, or office occupations;people aged 16 and older who are working in construction, sales, or office jobs;civilians aged 16 and older who are employed in the construction, sales, or office sectors" -Count_Person_NAICSConstruction_SOCServiceOccupation,the number of people aged 16 years or more who are employed in construction establishments;the number of people aged 16 years or older who are working in construction;the number of people aged 16 years or older who are employed in the construction industry;the number of people aged 16 years or older who are working in the construction field -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance,"civilians over 16 working in education, healthcare, and social assistance;civilians 16 years or older employed in education, health care, and social assistance" -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance_SOCManagementBusinessScienceArtsOccupation,"the number of people who are 16 years or older, who are civilians, who are employed, and who work in educational services, health care and social assistance (naics/61-62), management, business, science, and arts occupations" -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance_SOCNaturalResourcesConstructionMaintenanceOccupation,"people aged 16 or older who work in educational services, healthcare and social assistance, natural resources, construction, and maintenance occupations;civilians aged 16 or older who are employed in educational services, healthcare and social assistance, natural resources, construction, and maintenance occupations;civilians aged 16 or older who work in the fields of education, healthcare, social assistance, natural resources, construction, and maintenance;civilians aged 16 or older who are employed in the fields of education, healthcare, social assistance, natural resources, construction, and maintenance" -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance_SOCProductionTransportationMaterialMovingOccupation,"people aged 16 and over employed in education, healthcare, and social assistance;people aged 16 and over who work in education, healthcare, and social assistance;people aged 16 and over who are employed in the education, healthcare, and social assistance sectors;people aged 16 and over who have jobs in education, healthcare, and social assistance" -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance_SOCSalesOfficeOccupation,"the percentage of the civilian population aged 16 years or more employed in educational services and health care and social assistance;the number of people aged 16 years or more employed in educational services and health care and social assistance, as a percentage of the total civilian population;the proportion of the civilian population aged 16 years or more employed in educational services and health care and social assistance;the share of the civilian population aged 16 years or more employed in educational services and health care and social assistance" -Count_Person_NAICSEducationalServicesHealthCareSocialAssistance_SOCServiceOccupation,the number of people aged 16 years or older who work in educational services and health care and social assistance occupations;the number of people aged 16 years or older who have jobs in educational services and health care and social assistance occupations -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing,"civilians aged 16 and over who are employed in the finance, insurance, real estate, and rental and leasing industries;civilians aged 16 and over who are gainfully employed in the finance, insurance, real estate, and rental and leasing fields;civilians who are employed in the finance, insurance, real estate, and rental and leasing fields;civilians aged 16 and older who are employed in the finance, insurance, real estate, and rental and leasing industries" -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing_SOCManagementBusinessScienceArtsOccupation,"number of people aged 16 or older employed in finance, insurance, real estate, and rental and leasing;number of people aged 16 or older working in finance, insurance, real estate, and rental and leasing;number of people aged 16 or older with a job in finance, insurance, real estate, and rental and leasing;number of people aged 16 or older who are employed in finance, insurance, real estate, and rental and leasing" -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing_SOCNaturalResourcesConstructionMaintenanceOccupation,"1 the number of people aged 16 years or more employed in finance and insurance, real estate, rental and leasing, and natural resources, construction, and maintenance occupations in the united states;2 the number of people aged 16 years or more employed in finance, insurance, real estate, rental and leasing, natural resources, construction, and maintenance occupations in the us;4 the number of people aged 16 years or more employed in the finance, insurance, real estate, rental and leasing, natural resources, construction, and maintenance industries in the us;5 the number of people aged 16 years or more employed in the finance and insurance, real estate, rental and leasing, and natural resources, construction, and maintenance fields in the united states" -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing_SOCProductionTransportationMaterialMovingOccupation,"the number of people who are 16 years or older, who are not in the military and who have jobs, and who work in the finance and insurance, real estate and rental and leasing, production, transportation, or material moving industries;the number of people who are 16 years or older, who are not in the military and who are working, and who work in the finance and insurance, real estate and rental and leasing, production, transportation, or material moving fields;the number of people who are old enough to work, who are not in the military, who have jobs, and who work in the finance and insurance, real estate and rental and leasing, production, transportation, and material moving industries;the number of people who are old enough to work, who are not in the military, who have jobs, and who work in the finance and insurance, real estate and rental and leasing, production, transportation, and material moving fields" -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing_SOCSalesOfficeOccupation,"people who are working in finance, insurance, real estate, or leasing and are at least 16 years old;people who are employed in the finance, insurance, real estate, or leasing fields and are at least 16 years old;people who are 16 years old or older and are working in finance, insurance, real estate, and rental and leasing;people who are not in the military and are 16 years old or older and work in finance, insurance, real estate, or rental and leasing" -Count_Person_NAICSFinanceInsuranceRealEstateRentalLeasing_SOCServiceOccupation,"people aged 16 or older who work in finance, insurance, or real estate;finance, insurance, and real estate workers aged 16 or older;civilians aged 16 or older who are employed in the finance, insurance, and real estate industries;civilians aged 16 or older who work in the finance, insurance, and real estate sectors" -Count_Person_NAICSInformation,people aged 16 or older who work in the information industry;civilians aged 16 or older who are employed in information-related occupations;people aged 16 or older who work in information-producing industries;civilians aged 16 or older who are employed in information-based occupations -Count_Person_NAICSInformation_SOCManagementBusinessScienceArtsOccupation,"the number of people in the united states who are 16 years or older and are employed in information (naics/51) management, business, science, and arts occupations;the number of people in the united states who are 16 years or older and are employed in management, business, science, and arts occupations in the information (naics/51) sector" -Count_Person_NAICSInformation_SOCNaturalResourcesConstructionMaintenanceOccupation, -Count_Person_NAICSInformation_SOCProductionTransportationMaterialMovingOccupation, -Count_Person_NAICSInformation_SOCSalesOfficeOccupation,the number of people aged 16 and above who are employed in sales and office occupations;the number of people aged 16 and above who work in sales and office jobs;the number of people aged 16 and above who are employed in the sales and office sector;the number of people aged 16 and above who work in the sales and office industry -Count_Person_NAICSInformation_SOCServiceOccupation,the number of people aged 16 years or more who are employed in information and cultural service occupations;the number of people aged 16 years or older who are working in information and cultural service occupations;the number of people aged 16 years or more who have jobs in information and cultural service occupations;the number of people aged 16 years or older who are employed in the information and cultural service sector -Count_Person_NAICSManufacturing,"the number of people aged 16 or older who are employed in manufacturing;the percentage of the civilian population aged 16 or older who are employed in manufacturing;the number of people aged 16 or older who are working in factories, mills, and other manufacturing establishments;the percentage of the civilian workforce who are employed in manufacturing" -Count_Person_NAICSManufacturing_SOCManagementBusinessScienceArtsOccupation,"the number of people 16 years or older who are employed in manufacturing (naics/33) management, business, science, and arts occupations" -Count_Person_NAICSManufacturing_SOCNaturalResourcesConstructionMaintenanceOccupation, -Count_Person_NAICSManufacturing_SOCProductionTransportationMaterialMovingOccupation,"people aged 16 or older who work in manufacturing, transportation, or material moving occupations;people aged 16 or older who work in factories, warehouses, or on transportation or material moving equipment;people aged 16 or older who are employed in occupations that involve the production of goods or the movement of people or goods;people aged 16 or older who work in occupations that involve the use of machinery, tools, or equipment to produce goods or move people or goods" -Count_Person_NAICSManufacturing_SOCSalesOfficeOccupation,"children under 16 working in manufacturing, sales, and office jobs;young people under the age of 16 employed in industrial, commercial, and clerical positions;children aged 16 or younger working in manufacturing, sales, and office jobs;minors employed in manufacturing, sales, and office occupations" -Count_Person_NAICSManufacturing_SOCServiceOccupation,"the number of people who are 16 years or older, civilian, employed, in manufacturing (naics/33), and in service occupations;the number of people who are 16 years or older, not in the military, working, in manufacturing (naics/33), and in service occupations;the number of people who are 16 years or older, not in the military, employed, in the manufacturing industry (naics/33), and in service occupations;the number of people who are 16 years or older, not in the military, working in the manufacturing industry (naics/33), and in service occupations" -Count_Person_NAICSOtherServices,"the number of people aged 16 and over who are employed in the service sector excluding public administration;the number of people aged 16 and over who are employed in non-public administration services;number of people aged 16 or older employed in services, except public administration;number of people aged 16 or older working in services, except public administration" -Count_Person_NAICSOtherServices_SOCManagementBusinessScienceArtsOccupation,"people aged 16 or older who are employed in services other than public administration, management, business, science, and the arts;people who are 16 years old or older and are employed in services other than public administration, management, business, science, and arts;people who are 16 years old or older and are employed in service occupations other than government, management, business, science, and arts;people who are 16 years or older and are employed in services other than public administration, management, business, science, and arts" -Count_Person_NAICSOtherServices_SOCNaturalResourcesConstructionMaintenanceOccupation,"people who are 16 years or older and work in natural resources, construction, maintenance, and other services (except public administration);people who are 16 years or older and work in non-public administration jobs in natural resources, construction, maintenance, and other services;people who are 16 years or older and work in non-government jobs in natural resources, construction, maintenance, and other services;people who are 16 years or older and work in natural resources, construction, maintenance, or other services (except public administration)" -Count_Person_NAICSOtherServices_SOCProductionTransportationMaterialMovingOccupation,civilians who are 16 years or older and are employed in non-public service jobs;civilians who are 16 years or older and are employed in non-government jobs;people who are 16 years or older and are employed in services other than government;people who are 16 years or older and are working in non-government services -Count_Person_NAICSOtherServices_SOCSalesOfficeOccupation,"people aged 16 and over who are employed in services other than public administration, sales, and office occupations;people aged 16 and over who are employed in non-public administration, non-sales, and non-office services;people aged 16 or older who are employed in services other than public administration, sales, and office occupations;people aged 16 or older who are employed in non-governmental services" -Count_Person_NAICSOtherServices_SOCServiceOccupation,number of people aged 16 or older employed in other services occupations;number of people aged 16 or older working in other services occupations;number of people aged 16 or older with jobs in other services occupations;number of people aged 16 or older with other services occupations as their main job -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices,"civilians aged 16 or older who are employed in professional, scientific, management, administrative, and waste management services;civilians aged 16 or older who are employed in the professional, scientific, management, administrative, and waste management sector;civilians aged 16 or older who are employed in the professional, scientific, management, administrative, and waste management industries;civilians aged 16 and over who are employed in professional, scientific, management, administrative, and waste management services" -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices_SOCManagementBusinessScienceArtsOccupation,"the percentage of the total population aged 16 and over who are employed in professional, scientific, and management occupations, and administrative and waste management services (naics/54-56), management, business, science, and arts occupations;the proportion of the total population aged 16 and over who are employed in professional, scientific, and management occupations, and administrative and waste management services (naics/54-56), management, business, science, and arts occupations;the number of people aged 16 and over who are employed in professional, scientific, and management, and administrative and waste management services (naics/54-56), management, business, science, and arts occupations;the percentage of the population aged 16 and over who are employed in professional, scientific, and management, and administrative and waste management services (naics/54-56), management, business, science, and arts occupations" -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices_SOCNaturalResourcesConstructionMaintenanceOccupation,"the number of people aged 16 or older employed in professional and scientific management, administrative, waste management services, natural resources, construction, and maintenance occupations;the percentage of the civilian population aged 16 or older employed in professional and scientific management, administrative, waste management services, natural resources, construction, and maintenance occupations;the proportion of the civilian population aged 16 or older employed in professional and scientific management, administrative, waste management services, natural resources, construction, and maintenance occupations;the share of the civilian population aged 16 or older employed in professional and scientific management, administrative, waste management services, natural resources, construction, and maintenance occupations" -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices_SOCProductionTransportationMaterialMovingOccupation,"the number of people aged 16 or older who are employed in professional, scientific, and management and administrative and waste management services;the percentage of the civilian population aged 16 or older who are employed in professional, scientific, and management and administrative and waste management services;the proportion of the civilian population aged 16 or older who are employed in professional, scientific, and management and administrative and waste management services;the share of the civilian population aged 16 or older who are employed in professional, scientific, and management and administrative and waste management services" -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices_SOCSalesOfficeOccupation,"people aged 16 and over working in professional, scientific, management, administrative, waste management, service sales, and office occupations;people aged 16 or older who work in professional, scientific, management, administrative, waste management service sales, and office occupations;civilians who are 16 years or older and are employed in professional, scientific, management, administrative, waste management service sales, and office occupations;people who are 16 years or older and are employed in occupations that are professional, scientific, management, administrative, waste management service sales, and office occupations" -Count_Person_NAICSProfessionalScientificTechnicalServicesManagementOfCompaniesEnterprisesAdministrativeSupportWasteManagementRemediationServices_SOCServiceOccupation,"people aged 16 or older who work in professional, scientific, and management and administrative waste services;people aged 16 or older who are employed in waste services in professional, scientific, and management and administrative roles;people aged 16 or older who are employed in waste services in professional, scientific, and management and administrative positions;people aged 16 or older who are employed in waste services in professional, scientific, and management and administrative jobs" -Count_Person_NAICSPublicAdministration,number of people aged 16 and above employed in public administration;number of people aged 16 and above working in government;number of people aged 16 and above working for the government;number of people aged 16 and above employed in the public sector -Count_Person_NAICSPublicAdministration_SOCManagementBusinessScienceArtsOccupation,people aged 16 and older who work in government agencies;people 16 and older who work for the public sector;civilians aged 16 and older who are employed in the public administration sector;people aged 16 or older working in government offices -Count_Person_NAICSPublicAdministration_SOCNaturalResourcesConstructionMaintenanceOccupation,"number of people employed in public administration, natural resources, construction, and maintenance occupations, 16 years or older, civilian;number of people employed in public administration, natural resources, construction, and maintenance occupations, civilian, 16 years or older" -Count_Person_NAICSPublicAdministration_SOCProductionTransportationMaterialMovingOccupation,"the number of people aged 16 and over employed in public administration, production, transportation, and material moving occupations;the number of people aged 16 and over who work in public administration, production, transportation, and material moving occupations;the number of people aged 16 and over who are employed in public administration, production, transportation, and material moving industries;the number of people aged 16 and over who have jobs in public administration, production, transportation, and material moving occupations" -Count_Person_NAICSPublicAdministration_SOCSalesOfficeOccupation,civilians employed in public administration over 16 years old -Count_Person_NAICSPublicAdministration_SOCServiceOccupation,"the number of people who are 16 years or older, are civilians, are employed, and work in public administration (naics/92) service occupations;the number of people who are 16 years or older, are not in the military, are working, and work in public administration (naics/92) service occupations;the number of people who are 16 years old or older, who are civilians, who are employed, and who work in public administration (naics/92) service occupations;the number of people who are 16 years old or older, who are not in the military, who have a job, and who work in public administration (naics/92) service occupations" -Count_Person_NAICSRetailTrade,the number of people aged 16 years or older employed in retail trade;the number of people aged 16 years or older who work in retail;the number of people aged 16 years or older who have a job in retail;the number of people aged 16 years or older who are employed in the retail sector -Count_Person_NAICSRetailTrade_SOCManagementBusinessScienceArtsOccupation,"people aged 16 or older who work in retail, management, business, science, or the arts;people aged 16 or older who are employed in retail, management, business, science, or the arts;people aged 16 or older who have jobs in retail, management, business, science, or the arts;people aged 16 or older who are working in retail, management, business, science, or the arts" -Count_Person_NAICSRetailTrade_SOCNaturalResourcesConstructionMaintenanceOccupation, -Count_Person_NAICSRetailTrade_SOCProductionTransportationMaterialMovingOccupation,"people aged 16 or older working in retail, production, transportation, and material moving occupations;people 16 and older employed in retail, production, transportation, and material moving jobs;people 16 and over working in retail, production, transportation, and material moving industries;people 16 and over employed in retail, production, transportation, and material moving sectors" -Count_Person_NAICSRetailTrade_SOCSalesOfficeOccupation,"1 people aged 16 and over who work in retail sales and office jobs;2 civilians aged 16 and over who are employed in retail trade and office occupations;3 people aged 16 and over who work in retail stores and offices;people aged 16 or older working in retail trade, sales, and office occupations" -Count_Person_NAICSRetailTrade_SOCServiceOccupation,people who are 16 years old or older and are employed in retail trade for service occupations;people who are 16 years old or older and are employed in the service sector of the retail industry -Count_Person_NAICSTransportationWarehousingUtilities,"people aged 16 or older who work in transportation, warehousing, and utilities;civilians aged 16 or older who are employed in transportation, warehousing, and utilities;civilians aged 16 or older who work in the transportation, warehousing, and utilities sector;people aged 16 or older who are employed in the transportation, warehousing, and utilities sector" -Count_Person_NAICSTransportationWarehousingUtilities_SOCManagementBusinessScienceArtsOccupation,"the share of the civilian population aged 16 and older employed in transportation, warehousing, and utilities occupations in management, business, science, and arts occupations;the number of people aged 16 years old employed in transportation and warehousing and utilities in management, business, science and arts occupations;the number of people aged 16 years old who are employed in transportation and warehousing and utilities in management, business, science and arts occupations;the number of people aged 16 years old who have jobs in transportation and warehousing and utilities in management, business, science and arts occupations" -Count_Person_NAICSTransportationWarehousingUtilities_SOCNaturalResourcesConstructionMaintenanceOccupation,"people who are 16 years old or older and are employed in transportation and warehousing, utilities, natural resources, construction, and maintenance;people who are 16 years old or older and are working in transportation and warehousing, utilities, natural resources, construction, and maintenance;people who are 16 years old or older and are employed in the transportation and warehousing, utilities, natural resources, construction, and maintenance industries;people who are 16 years old or older and are working in the transportation and warehousing, utilities, natural resources, construction, and maintenance sectors" -Count_Person_NAICSTransportationWarehousingUtilities_SOCProductionTransportationMaterialMovingOccupation,"the number of people aged 16 or older employed in transportation and warehousing, utilities, production, transportation, and material moving occupations;the number of people aged 16 or older who have a job in transportation and warehousing, utilities, production, transportation, and material moving occupations;the number of people aged 16 or older who are working in transportation and warehousing, utilities, production, transportation, and material moving occupations;the number of people aged 16 or older who are employed in the transportation and warehousing, utilities, production, transportation, and material moving industries" -Count_Person_NAICSTransportationWarehousingUtilities_SOCSalesOfficeOccupation,"16-year-old civilian employed in transportation and warehousing, and utilities of sales and office occupations;16-year-old civilian working in transportation and warehousing, and utilities of sales and office occupations;16-year-old civilian employed in the transportation and warehousing industry, and utilities of sales and office occupations;16-year-old civilian working in the transportation and warehousing industry, and utilities of sales and office occupations" -Count_Person_NAICSTransportationWarehousingUtilities_SOCServiceOccupation,"the number of people aged 16 or older employed in transportation, warehousing, and utilities occupations;the number of people aged 16 or older working in transportation, warehousing, and utilities;the number of people aged 16 or older who have a job in transportation, warehousing, and utilities;the number of people aged 16 or older who are employed in transportation, warehousing, and utilities" -Count_Person_NAICSWholesaleTrade,people over 16 years old who work in wholesale trade;civilians aged 16 and over employed in wholesale trade;civilians aged 16 and over who are employed in the wholesale sector;civilians employed in wholesale trade who are 16 years of age or older -Count_Person_NAICSWholesaleTrade_SOCManagementBusinessScienceArtsOccupation,"the share of the population 16 years or older who are employed in wholesale trade and management, business, science, and arts occupations" -Count_Person_NAICSWholesaleTrade_SOCNaturalResourcesConstructionMaintenanceOccupation,"people who are 16 years or older and work in wholesale trade, natural resources, construction, or maintenance;civilians who are 16 years or older and are employed in wholesale trade, natural resources, construction, or maintenance;people who are 16 years or older and are working in the wholesale trade, natural resources, construction, or maintenance sector;people who are at least 16 years old and are employed in wholesale trade, natural resources, construction, or maintenance" -Count_Person_NAICSWholesaleTrade_SOCProductionTransportationMaterialMovingOccupation,percentage of people aged 16 and over employed in wholesale trade;number of people aged 16 and over employed in wholesale trade;share of the population aged 16 and over employed in wholesale trade;number of people employed in wholesale trade as a percentage of the total population aged 16 and over -Count_Person_NAICSWholesaleTrade_SOCSalesOfficeOccupation,people aged 16 or older who work in wholesale trade sales and office occupations;civilians aged 16 or older who are employed in wholesale trade sales and office occupations;civilians aged 16 or older who work in wholesale trade sales and office jobs;people aged 16 or older who are employed in wholesale trade sales and office jobs -Count_Person_NAICSWholesaleTrade_SOCServiceOccupation,people aged 16 or older who work in wholesale trade service occupations;people aged 16 or older who are employed in wholesale trade service occupations;people aged 16 or older who have jobs in wholesale trade service occupations;people aged 16 or older who are working in wholesale trade service occupations -Count_Person_Native,people who were born as a US native;natives;people who are native to the country -Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,the number of people who are native hawaiian and other pacific islander by themselves;the number of people who are native hawaiian and other pacific islander alone;number of native hawaiian and other pacific islander alone people;number of people who are native hawaiian and other pacific islander alone -Count_Person_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,how many people are native hawaiian and other pacific islander alone or in combination with one or more other races;how many people identify as native hawaiian and other pacific islander alone or in combination with one or more other races;what is the number of people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races;what is the population of native hawaiian and other pacific islander alone or in combination with one or more other races -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,how many people are native hawaiian or other pacific islander alone;what is the population of native hawaiian or other pacific islander alone;how many native hawaiian or other pacific islander alone people are there;number of people who are native hawaiian or other pacific islander alone -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,how many native hawaiian or other pacific islander people are in adult correctional facilities?;what is the number of native hawaiian or other pacific islander people in adult correctional facilities?;how many native hawaiian or other pacific islander people are incarcerated in adult correctional facilities?;what is the number of native hawaiian or other pacific islander people incarcerated in adult correctional facilities? -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,number of native hawaiian or other pacific islander students living in college or university student housing;number of native hawaiian or other pacific islander students residing in college or university dorms;number of native hawaiian or other pacific islander students living in college or university residence halls;number of native hawaiian or other pacific islander students residing in college or university housing -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,"number of native hawaiian or other pacific islander alone residents in group quarters;number of native hawaiian or other pacific islander alone people living in group quarters;number of native hawaiian or other pacific islander alone people residing in dormitories, group homes, shelters, or other group quarters;how many native hawaiian or other pacific islander people live in group quarters?" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,how many native hawaiian or other pacific islander people are institutionalized in group quarters?;what is the number of native hawaiian or other pacific islander people who are institutionalized in group quarters?;what is the population of native hawaiian or other pacific islander people who are institutionalized in group quarters?;number of native hawaiian or other pacific islander alone people institutionalized in group quarters -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,how many native hawaiian or other pacific islander people reside in non-institutionalized group quarters?;how many native hawaiian or other pacific islanders reside in non-institutional group quarters?;number of native hawaiian or other pacific islander alone residents in non-institutional group quarters;number of native hawaiian or other pacific islander alone people living in non-institutional group quarters -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,how many native hawaiian or other pacific islander people live in nursing homes?;what is the number of native hawaiian or other pacific islander people who live in nursing homes?;how many native hawaiian or other pacific islander people are in nursing homes?;what is the population of native hawaiian or other pacific islander people in nursing homes? -Count_Person_NeverMarried,people who have never been married;number of people who have never married;never-married population;the number of people who have never been married -Count_Person_NeverMarried_DifferentHouseAbroad,people aged 15 years or more who have never been married and live in a different country;people who are 15 years old or older and have never been married and live outside of their home country;people who are 15 years old or older and have never been married and live abroad;number of people aged 15 or older who have never been married and live in a different country than their parents -Count_Person_NeverMarried_DifferentHouseInDifferentCountyDifferentState,"people aged 15 or older who have never been married and live in a different house, county, and state" -Count_Person_NeverMarried_DifferentHouseInDifferentCountySameState,number of people aged 15 years or more living in different houses in different counties but in the same state;number of people aged 15 years or more living in different households in different counties but in the same state;number of people aged 15 years or more living in different dwellings in different counties but in the same state;number of people aged 15 years or more living in different residences in different counties but in the same state -Count_Person_NeverMarried_DifferentHouseInSameCounty,unmarried people aged 15 years or older who live in different houses in the same county;people aged 15 years or older who have never been married and live in different houses in the same county;people aged 15 years or older who are not married and live in different houses in the same county;people aged 15 years or older who are single and live in different houses in the same county -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthAfrica,people who have never been married and were born in africa;people who were born in africa and have never been married;people who were born in africa and have never been married to anyone;people who were born in africa and have never been in a marriage -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthAsia,the percentage of people who were born in asia and are over 15 years old who have never married;the number of people who were born in asia and are over 15 years old who have never been married;the percentage of people who were born in asia and are over 15 years old who are not currently married;the number of people born in asia who are over 15 years old and have never married -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthCaribbean,the number of caribbean-born people aged 15 years or more who are married;the percentage of caribbean-born people aged 15 years or more who are married;the proportion of caribbean-born people aged 15 years or more who are married;the share of caribbean-born people aged 15 years or more who are married -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people who were born in central america and have never married, aged 15 years or older;the number of people who were born in central america and have never been married, aged 15 years or older;the number of people who were born in central america and have never entered into a marriage, aged 15 years or older;the number of people who were born in central america and have never been in a marital relationship, aged 15 years or older" -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthEasternAsia, -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthEurope, -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthLatinAmerica, -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthMexico,foreign-born people who have never been married and are 15 years of age or older;foreign-born individuals who have never been married and are at least 15 years old;foreign-born people who have never been married and are aged 15 years or more;foreign-born people who have never been married and are at least 15 years old -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthNorthamerica,number of unmarried foreign-born people in north america aged 15 years or older;number of unmarried immigrants in north america aged 15 years or older;the number of unmarried foreign-born people in north america who are 15 years of age or older;the number of unmarried people in north america who were born in another country and are 15 years of age or older -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthNorthernWesternEurope,number of people born in northern western europe who have been unmarried for 15 years or more;number of unmarried people born in northern western europe who have been unmarried for 15 years or more;number of people born in northern western europe who have not been married for 15 years or more;number of unmarried people born in northern western europe who have not been married for 15 years or more -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthOceania,"the number of unmarried foreign-born people in oceania who are 15 years old or older;the number of people who were born outside of oceania and are not married, and who are 15 years old or older;the number of people who were born outside of oceania, are not married, and are at least 15 years old;the number of unmarried foreign-born people living in oceania who are 15 years of age or older" -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthSouthCentralAsia,the percentage of foreign-born people in south central asia aged 15 years or more who have never married;the proportion of foreign-born people in south central asia aged 15 years or more who are unmarried;the number of foreign-born people in south central asia aged 15 years or more who have never been married;the percentage of foreign-born people in south central asia aged 15 years or more who have never been in a marital union -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthSouthEasternAsia,"people who were born in southeast asia and are now living in the united states, who are 15 years old or older, and who have never been married;people who were born in southeast asia and are now living in the us, who are over the age of 15, and who are not married;foreign-born people from southeast asia who are 15 years old or older and have never married;people who are 15 years old or older and were born in southeast asia, and who have never been married" -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthSouthamerica,a majority of south american immigrants aged 15 and above have never been married;a large percentage of south american immigrants aged 15 and above have never been married;the majority of foreign-born south americans aged 15 and above have never been married;a large number of foreign-born south americans aged 15 and above are not married -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the number of people born in southern eastern europe who are aged 15 years or more and are not married;the percentage of people born in southern eastern europe who are aged 15 years or more and are not married;the proportion of people born in southern eastern europe who are aged 15 years or more and are not married;the number of people born in southern eastern europe who are aged 15 years or more and are not currently married -Count_Person_NeverMarried_ForeignBorn_PlaceOfBirthWesternAsia,"people who were born in western asia and are unmarried, aged 15 years and above;the number of unmarried people who were born in western asia and are 15 years old or older;the number of people who were born in western asia and are not married, and are 15 years old or older;the number of unmarried people who are foreign-born and are from western asia, and are 15 years old or older" -Count_Person_NeverMarried_ResidesInAdultCorrectionalFacilities,the number of adults over 15 years old who are never married and are in jail or prison;the number of people aged 15 and over who have never been married and are currently in prison or jail -Count_Person_NeverMarried_ResidesInCollegeOrUniversityStudentHousing,college students who are unmarried and 15 years or older living in student housing;unmarried people aged 15 or older living in college or university student housing;unmarried people aged 15 or older living in student housing at a college or university;the number of unmarried people aged 15 years or more living in college or university student housing -Count_Person_NeverMarried_ResidesInGroupQuarters,people aged 15 years or older who have never married and live in group quarters;people aged 15 years or older who are never-married and live in group quarters;people aged 15 years or older who are unmarried and never married and live in group quarters;people aged 15 years or older who have never been married and are living in group quarters -Count_Person_NeverMarried_ResidesInInstitutionalizedGroupQuarters,number of unmarried people aged 15 or older living in group quarters;number of unmarried people aged 15 or older living in group living arrangements;number of unmarried people aged 15 or older living in group homes;people who are unmarried and 15 years or older living in group quarters -Count_Person_NeverMarried_ResidesInNoninstitutionalizedGroupQuarters,the number of people aged 15 or older who have never been married and are not living in an institution;the number of people aged 15 years or more who have never been married and are not living in an institution;people aged 15 or older who have never been married and are not living in an institution;people aged 15 or older who have never been married and are not institutionalized -Count_Person_NeverMarried_ResidesInNursingFacilities,number of unmarried people aged 15 or older in nursing homes;percentage of unmarried people aged 15 or older in nursing homes;share of unmarried people aged 15 or older in nursing homes;proportion of unmarried people aged 15 or older in nursing homes -Count_Person_NoDisability,the number of people who are not disabled;the number of people who do not have any physical or mental impairments;number of people without disabilities;number of people without any physical or mental impairments -Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,the number of people in adult correctional facilities who are not disabled;the number of people in adult correctional facilities who do not have any physical or mental impairments;the number of people in adult correctional facilities who are not impaired in any way;the number of people without any disability in adult correctional facilities -Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,number of non-disabled people living in college or university student housing;number of people without disabilities living in college or university dorms;number of people without physical or mental impairments living in college or university housing;number of people who are not disabled living in college or university housing -Count_Person_NoDisability_ResidesInGroupQuarters,the number of people who are not disabled and live in group quarters;number of non-disabled people in group quarters;number of people without disability living in group quarters -Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,number of non-disabled people institutionalized in group quarters -Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,number of people who do not have a disability and live in non-institutional group quarters;number of people without disabilities living in non-institutional group quarters -Count_Person_NoDisability_ResidesInNursingFacilities,the number of people without any disability in nursing facilities;the number of people in nursing facilities who are not disabled;the number of people without disabilities in nursing facilities;percentage of people without disabilities in nursing homes -Count_Person_NoHealthInsurance,the number of people who do not have health insurance;the number of people who are not covered by health insurance;the number of people who do not have access to health insurance;the number of people who are without health coverage -Count_Person_NoHealthInsurance_0.5OrLessRatioToPovertyLine,"population: no health insurance, 05 ratio to poverty line or less;people who do not have health insurance and have a ratio to the poverty line of 05 or less;the number of people who do not have health insurance and have a ratio of income to poverty line of 05 or less" -Count_Person_NoHealthInsurance_0.5To0.99RatioToPovertyLine, -Count_Person_NoHealthInsurance_1.00OrLessRatioToPovertyLine, -Count_Person_NoHealthInsurance_1.38OrLessRatioToPovertyLine, -Count_Person_NoHealthInsurance_1.38To1.99RatioToPovertyLine, -Count_Person_NoHealthInsurance_1.38To3.99RatioToPovertyLine, -Count_Person_NoHealthInsurance_1.5To1.99RatioToPovertyLine, -Count_Person_NoHealthInsurance_1To1.49RatioToPovertyLine,the percentage of people without health insurance who live between 1 and 15 times the poverty line;the number of people without health insurance who live between 1 and 15 times the poverty line;the proportion of people without health insurance who live between 1 and 15 times the poverty line;the share of people without health insurance who live between 1 and 15 times the poverty line -Count_Person_NoHealthInsurance_2.00OrMoreRatioToPovertyLine,"percent of population without health insurance, with ratio to poverty line of 2 or more;number of people without health insurance who are 2 times or more above the poverty line;the share of people who do not have health insurance and live 2 times or more above the poverty line" -Count_Person_NoHealthInsurance_2.00To3.99RatioToPovertyLine,the number of people without health insurance who live 2-4 times below the poverty line;the number of people who live 2-4 times below the poverty line and do not have health insurance -Count_Person_NoHealthInsurance_2.0To2.99RatioToPovertyLine,the percentage of people without health insurance who live below 2 to 3 times the poverty line;the number of people without health insurance who live in households with incomes below 2 to 3 times the poverty line;the population of people without health insurance who live 2 to 3 times below the poverty line;the number of people without health insurance who live 2 to 3 times below the poverty line -Count_Person_NoHealthInsurance_3OrMoreRatioToPovertyLine,number of people without health insurance who live 3 times or more above the poverty line;share of people without health insurance who live 3 times or more above the poverty line;proportion of people without health insurance who live 3 times or more above the poverty line;the poverty rate for people without health insurance is three times the national average -Count_Person_NoHealthInsurance_4.00OrMoreRatioToPovertyLine,the number of people without health insurance who are 4 times or more above the poverty line;four times as many people in poverty as the national average do not have health insurance -Count_Person_NoHealthInsurance_AmericanIndianOrAlaskaNativeAlone,american indian or alaska native alone without health insurance;the prevalence of no health insurance among american indian or alaska native people;american indian or alaska native without health insurance -Count_Person_NoHealthInsurance_AsianAlone,asian people without health insurance;people of asian descent without health insurance;asians without health insurance -Count_Person_NoHealthInsurance_BlackOrAfricanAmericanAlone,black or african americans without health insurance;black or african american people without health insurance -Count_Person_NoHealthInsurance_FamilyHousehold, -Count_Person_NoHealthInsurance_ForeignBorn,people who do not have health insurance and were born in another country;foreign-born people without health insurance;people without health insurance who were born outside the united states;people without health insurance who were not born in the united states -Count_Person_NoHealthInsurance_HispanicOrLatino,hispanic or latino people without health insurance;people of hispanic or latino descent who do not have health insurance;people of hispanic or latino origin who do not have health insurance;people without health insurance who are hispanic or latino -Count_Person_NoHealthInsurance_MarriedCoupleFamilyHousehold,a married couple with no health insurance;a married couple who do not have health insurance;a married couple that does not have health insurance;a married couple without health insurance -Count_Person_NoHealthInsurance_Native,"people without health insurance, who are native;native people without health insurance;the native population without health insurance;people who are native and do not have health insurance" -Count_Person_NoHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"the number of native hawaiian or other pacific islanders who do not have health insurance;the prevalence of no health insurance among native hawaiian or other pacific islanders;native hawaiian or other pacific islander alone, without health insurance;native hawaiian or other pacific islander alone, uninsured" -Count_Person_NoHealthInsurance_NoDisability, -Count_Person_NoHealthInsurance_NonfamilyHouseholdAndOtherLivingArrangements,"people without health insurance, non-family households, and other living arrangements" -Count_Person_NoHealthInsurance_OneRace,"the population of people without health insurance is all one race;no health insurance, one race;population without health insurance, one race;one race, no health insurance" -Count_Person_NoHealthInsurance_OtherFamilyHousehold,people without health insurance in other family households;other family households without health insurance;people in other family households who are without health coverage;households with other people and no health insurance -Count_Person_NoHealthInsurance_PovertyStatusDetermined,"people without health insurance and whose poverty status is unknown;the number of people without health insurance and their poverty status have been determined;poverty status of people without health insurance;number of people without health insurance, poverty status determined" -Count_Person_NoHealthInsurance_ResidesInHousehold,non-institutionalized civilian population without health insurance;civilian non-institutionalized population without health insurance;civilian population without health insurance who are not institutionalized;population of civilians without health insurance who are not institutionalized -Count_Person_NoHealthInsurance_SingleFatherFamilyHousehold,a single father with no health insurance;a father who is the sole provider for his family and does not have health insurance;a family with no health insurance and a single father as the head of household;a household with a single father and no health insurance -Count_Person_NoHealthInsurance_SingleMotherFamilyHousehold,a family with a single mother and no health insurance;a household with a single mother and no health insurance;a family headed by a single mother with no health insurance;a household headed by a single mother with no health insurance -Count_Person_NoHealthInsurance_SomeOtherRaceAlone, -Count_Person_NoHealthInsurance_TwoOrMoreRaces,number of people with no health insurance who identify as two or more races -Count_Person_NoHealthInsurance_WhiteAlone,white people without health insurance;white people without coverage;the number of white people without health insurance;the proportion of white people without health insurance -Count_Person_NoHealthInsurance_WhiteAloneNotHispanicOrLatino,"population: no health insurance, white alone not hispanic or latino" -Count_Person_NoHealthInsurance_WithDisability,people with disabilities who do not have health insurance;people with disabilities who are without health insurance;people with disabilities who do not have health coverage -Count_Person_NonWorker,population of non-workers;non-working population -Count_Person_NonWorker_Female,female non-working population -Count_Person_NonWorker_Male,male non-worker;male non-worker population;population of males who are not working;number of males who are not working or looking for work -Count_Person_NonWorker_Rural,rural residents who are not employed;rural non-workers;people who live in the countryside and are not employed;rural residents who are unemployed -Count_Person_NonWorker_Rural_Female, -Count_Person_NonWorker_Rural_Male,"a rural, male, non-worker population;a population of rural, male, non-workers;a population of males who are rural and not working;a population of people who are male, rural, and not working" -Count_Person_NonWorker_Urban,those who don't have jobs in cities -Count_Person_NonWorker_Urban_Female,5 women who are not employed and live in cities;females who live in cities and are not in the workforce -Count_Person_NonWorker_Urban_Male,"people who are male, live in cities, and do not have a job;male, urban, non-worker;male, city-dwelling, non-employed" -Count_Person_Nonveteran,civilians who are not veterans;civilians who have never served in the military;civilians who are not active duty military personnel;civilians who are not members of the military -Count_Person_NotAUSCitizen,number of non-us citizens;number of people who are not us citizens;number of people who are not citizens of the united states;number of people who are not american citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAfrica,people born in africa who are not us citizens;foreign-born africans who are not us citizens;people from africa who are not us citizens;africans who are not us citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAsia,people born in asia who are not citizens of the united states;foreign nationals from asia who are not citizens of the united states;people who were born in asia but do not have us citizenship;people who are not us citizens but were born in asia -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCaribbean,people born outside of the united states who are not us citizens living in the caribbean;non-us citizens born outside of the united states living in the caribbean;people who are not us citizens and were born outside of the united states living in the caribbean;foreigners who were not born in the united states and are not us citizens living in the caribbean -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people who were born in central america and are not us citizens;the number of non-us citizens who were born in central america;number of non-us citizens born in central america, excluding mexico;number of people living in the us who were born in central america, excluding mexico" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEasternAsia,people born in eastern asia who are not us citizens;foreigners born in eastern asia who are not us citizens;people from eastern asia who are not us citizens;non-us citizens who were born in eastern asia -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEurope,non-us citizens born in europe;people born in europe who are not us citizens;europeans who are not us citizens;people from europe who are not us citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthLatinAmerica,people born in latin america who are not us citizens;people who are not us citizens and were born in latin america;latin american-born people who are not us citizens;latin american nationals living in the us -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthMexico,the number of people living in mexico who were born outside of the united states;the number of non-us citizens living in mexico;the number of foreign nationals living in mexico;the number of people who are not mexican citizens living in mexico -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthamerica,non-us citizens living in north america;people born outside of the us who live in north america;north american residents who are not us citizens;the number of people living in north america who were born in another country and are not us citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the number of people born in northern western europe who are not us citizens;the number of non-us citizens born in northern western europe;the number of people in northern western europe who are not us citizens and were born in another country;the number of foreign-born people in northern western europe who are not us citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthOceania,person born outside the us but living in oceania;non-us citizen born in oceania;person born in oceania who is not a us citizen;person who is not a us citizen and was born in oceania -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthCentralAsia,people born in south central asia who are not us citizens;south central asian-born non-us citizens;foreign-born south central asians who are not us citizens;non-us citizens who were born in south central asia -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthEasternAsia,non-us citizens living in southeast asia;people who are not us citizens and live in southeast asia;people who were born in other countries and are not us citizens who live in the southeast asian region;people who were born in another country and are not us citizens living in south east asia -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthamerica,number of south americans who were born in other countries;number of people in south america who were not born in south america -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthernEasternEurope,people who were born outside of the united states and are not us citizens living in southern eastern europe;non-us citizens who were born outside of the united states living in southern eastern europe;foreigners who were born outside of the united states and are not us citizens living in southern eastern europe;immigrants who were born outside of the united states and are not us citizens living in southern eastern europe -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthWesternAsia,people born in western asia who are not us citizens;people from western asia who are not us citizens;people who were born in western asia and are not us citizens;people who are not us citizens and were born in western asia -Count_Person_NotAUSCitizen_NoHealthInsurance_ForeignBorn,"people who are not citizens of the united states, do not have health insurance, and are not from the united states" -Count_Person_NotAUSCitizen_WithHealthInsurance_ForeignBorn,"non-us citizens with health insurance who were born outside of the united states;people who are not us citizens, have health insurance, and were born in another country;foreign-born people who are not us citizens and have health insurance;people who were born outside of the united states, are not us citizens, and have health insurance" -Count_Person_NotEnrolledInSchool,number of people not in school;number of people not enrolled in school;number of people not attending school;number of people not taking classes -Count_Person_NotHispanicOrLatino,non-hispanic population;population of non-hispanic people;number of people who are not hispanic;number of people who do not identify as hispanic -Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not hispanic;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of hispanic origin;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of latino origin;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of hispanic or latino origin" -Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,number of people who identify as american indian or alaska native alone;number of american indian or alaska native people who do not identify as hispanic;number of american indian or alaska native people who do not identify as hispanic or any other race;number of american indian or alaska native people who identify as american indian or alaska native only -Count_Person_NotHispanicOrLatino_AsianAlone,number of people who identify as asian alone -Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,the number of people who identify as asian and are not hispanic;the number of asian non-hispanics;the number of people who identify as asian and are not of hispanic origin;the number of people who identify as asian and are not of hispanic descent -Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,the number of people who identify as asian or pacific islander and are not hispanic;the number of asian or pacific islander people who are not hispanic;the number of people who are not hispanic and identify as asian or pacific islander;the number of people who identify as asian or pacific islander and are not of hispanic origin -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"the number of people who identify as black or african american alone, excluding hispanic or latino people" -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,number of non-hispanic black or african americans;population of black or african americans who are not hispanic;number of black or african americans who are not hispanic or latino;number of black or african americans who are not of hispanic or latino origin -Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,how many people identify as native hawaiian or other pacific islander and are not hispanic;the number of people who identify as native hawaiian or other pacific islander and are not hispanic;the number of native hawaiian or other pacific islander people who are not hispanic;the number of people who are not hispanic and identify as native hawaiian or other pacific islander -Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander alone people who are not hispanic;number of people who identify as native hawaiian or other pacific islander alone and are not hispanic;number of people who are not hispanic and identify as native hawaiian or other pacific islander alone;number of people who identify as native hawaiian or other pacific islander alone only -Count_Person_NotHispanicOrLatino_ResidesInGroupQuarters,"number of non-hispanics living in group quarters;number of non-hispanics in group quarters;number of non-hispanics living in group quarters other than households;number of non-hispanics living in group quarters, such as dormitories, group homes, or other communal living spaces" -Count_Person_NotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,number of non-hispanics living in institutional group quarters;number of non-hispanics living in group facilities;number of non-hispanics living in institutional or group quarters -Count_Person_NotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"number of non-hispanics living in non-institutional group quarters;number of non-hispanics living in group quarters that are not institutions;number of non-hispanics living in group quarters that are not hospitals, prisons, or nursing homes;number of non-hispanics living in group quarters that are not educational institutions" -Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,how many non-hispanic people identify as multiracial?;what is the number of non-hispanic people who identify as multiracial?;what percentage of non-hispanic people identify as multiracial?;what is the proportion of non-hispanic people who identify as multiracial? -Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"the number of people who identify as non-hispanic white alone or in combination with one or more other races in the us;the number of people who identify as white, alone or in combination with one or more other races, and who are not hispanic;the number of white people, including those who identify as white in combination with one or more other races, who are not hispanic;the number of people who are not hispanic and who identify as white, alone or in combination with one or more other races" -Count_Person_NotInLaborForce,people aged 16 years or more who are not in the labor force;people aged 16 years or more not in the labor force;people aged 16 or older who are not in the labor force;people aged 16 or older who are not part of the labor force -Count_Person_NotInLaborForce_Female_DivorcedInThePast12Months,number of females who got divorced last year and are not in the labor force;number of females who are not in the labor force and got divorced last year;number of females who got divorced last year and are not currently employed;number of females who are not currently employed and got divorced last year -Count_Person_NotInLaborForce_Female_MarriedInThePast12Months,number of women who got married last year and are not in the labor force;number of women who got married last year and are not employed;number of women who got married last year and are not working;number of women who got married last year and are not in the workforce -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthAfrica,the percentage of foreign-born people in africa who are over 16 years old and not in the labor force;the number of foreign-born people in africa who are over 16 years old and not working;the proportion of foreign-born people in africa who are over 16 years old and not employed;the percentage of foreign-born people in africa who are over 16 years old and not economically active -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthAsia,"number of people who were born in asia and are 16 years old but not working;the number of people who were born in asia, are 16 years old, and are not working;the number of people who were born in asia, are 16 years old, and are not employed;the number of people who were born in asia, are 16 years old, and are not working or looking for work" -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthCaribbean,the number of people aged 16 years or more who were born in the caribbean and are not in the labor force;the number of people aged 16 years or more who were born in the caribbean and are not working or looking for work;the number of people aged 16 years or more who were born in the caribbean and are not employed;the number of people aged 16 years or more who were born in the caribbean and are not in the workforce -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american foreign-born people aged 16 years or older who are not in the labor force;people born in central america who are 16 years or older and not in the workforce;central american immigrants who are 16 years or older and not working;people who were born in central america and are 16 years or older and not working or looking for work -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthEasternAsia,the number of people born in eastern asia who are over 16 years old and not employed;the number of people born in eastern asia who are over 16 years old and not working or looking for work;the proportion of the population in eastern asia who are over 16 years old and not working;the number of people in eastern asia who are over 16 years old and not employed -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthEurope,people who were born outside of europe and are 16 years old or older and are not in the labor force;people who are not citizens of europe and are 16 years old or older and are not working;people who were not born in europe and are 16 years old or older and are not employed;people who are not native to europe and are 16 years old or older and are not working -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthLatinAmerica,latin american immigrants who are 16 years old or older and not in the labor force;foreign-born latin americans who are 16 years old or older and not working;latin american immigrants who are not employed;foreign-born latin americans who are not in the workforce -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthMexico,people who were born in mexico and are 16 years old or older but are not in the labor force;people who were born in mexico and are not currently in the labor force;people who were born in mexico and are 16 years of age or older but are not in the labor force;people who were born in mexico and are of working age but are not working -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthNorthamerica,"the number of people born in north america who are 16 years or older and not in the labor force;the number of people who were born in north america, are 16 years or older, and are not working;the number of people who were born in north america, are 16 years or older, and are not employed;the number of people who were born in north america, are 16 years or older, and are not working or looking for work" -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"people who were born in other countries and live in the northern and western parts of the united states and are not part of the labor force;foreign-born residents of the northern and western united states who are 16 years old or older and are not in the labor force;people who were born in other countries and live in the northern and western parts of the country, who are 16 years old or older, and who are not part of the labor force;foreign-born people in the northern and western us who are 16 years old or older and not working" -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthOceania,the number of people who were born outside of oceania and are over the age of 16 who are not in the labor force;the number of people who were not born in oceania and are over the age of 16 who are not employed or actively looking for employment;the number of people who were born outside of oceania and are over the age of 16 who are not working;the number of people who were not born in oceania and are over the age of 16 who are not participating in the labor force -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthSouthCentralAsia,the number of people born outside of south central asia who are 16 years old or older and not in the labor force;the percentage of foreign-born people aged 16 years or more who are not in the labor force in south central asia;the proportion of foreign-born people aged 16 years or more who are not working in south central asia;the number of foreign-born people aged 16 years or more who are not employed in south central asia -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthSouthEasternAsia,southeast asian immigrants who are 16 years of age or older and not in the labor force;southeast asian immigrants who are not employed or actively looking for work;southeast asian immigrants who are not working;southeast asian immigrants who are unemployed -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthSouthamerica,the number of unemployed south american immigrants aged 16 or older;the percentage of south american immigrants aged 16 or older who are unemployed;the proportion of south american immigrants aged 16 or older who are not employed;the number of south american immigrants aged 16 or older who are not in the workforce -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthSouthernEasternEurope,people who were born in southern eastern europe and are 16 years old or older and are not in the labor force;people who were born in southern eastern europe and are at least 16 years old and are not working;people who were born in southern eastern europe and are of working age and are not in the workforce;the number of people who were born in southern eastern europe and are 16 years of age or older and are not in the labor force -Count_Person_NotInLaborForce_ForeignBorn_PlaceOfBirthWesternAsia,the number of people who were born in western asia and are not working or looking for work;the number of people who were born in western asia and are not part of the labor force;people who were born in western asia and are 16 years or older but are not working;the number of foreign-born people from western asia who are not working -Count_Person_NotInLaborForce_Male_DivorcedInThePast12Months,the number of men who are not in the labor force and got divorced in the last year;the number of men who got divorced in the last year and are not in the labor force;the number of men who are not in the labor force and got divorced in the last 12 months;the number of men who got divorced in the last 12 months and are not in the labor force -Count_Person_NotInLaborForce_Male_MarriedInThePast12Months,number of men who got married last year and are not in the labor force;number of men who are not in the labor force and got married in the last year;number of men who got married in the last year and are not currently working;number of men who are not currently working and got married in the last year -Count_Person_NotInLaborForce_ResidesInAdultCorrectionalFacilities,number of adults aged 16 or older who are not in the labor force and are living in correctional facilities;number of people aged 16 or older who are not working and are living in jail or prison;number of adults who are not in the labor force and are in a correctional facility;the number of people aged 16 or older who are not in the labor force and are residing in adult correctional facilities -Count_Person_NotInLaborForce_ResidesInCollegeOrUniversityStudentHousing,the number of people aged 16 years or more living in college or university student housing who are not in the labor force;the number of people aged 16 years or more who are enrolled in college or university and are not working;the number of people aged 16 years or more who are living in college or university student housing and are not employed;the number of people aged 16 years or more who are attending college or university and are not working or looking for work -Count_Person_NotInLaborForce_ResidesInGroupQuarters,number of people aged 16 years or more not in the labor force living in group quarters;number of people aged 16 years or older not in the workforce living in group quarters;number of people aged 16 years or older not in the labor force and living in group quarters;people aged 16 years or older who are not in the labor force and live in group quarters -Count_Person_NotInLaborForce_ResidesInNoninstitutionalizedGroupQuarters,"people aged 16 or older who are not in the labor force and live in non-institutional group quarters;people aged 16 or older who are not employed and live in group quarters;people aged 16 years or older who are not in the labor force and live in non-institutional group quarters;people aged 16 years or older who are not working and live in group homes, dormitories, or other non-institutional settings" -Count_Person_NotInLaborForce_ResidesInNursingFacilities,number of people aged 16 or older who are not in the labor force in nursing facilities;number of people aged 16 or older who are not working in nursing facilities;number of people aged 16 or older who are not employed in nursing facilities;number of people aged 16 or older who are not in the workforce in nursing facilities -Count_Person_NotWorkedFullTime,women who work part-time;female employees who work less than 40 hours per week;women who have a job but work fewer hours than they would like;women who work part-time jobs -Count_Person_NowMarried,number of married women;female population who are married;population of married females;female population that is married -Count_Person_OneRace,population of a single race;number of people of a certain race;total number of people identifying as a single race;count of people of a single race -Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,how many people of a single race are in jail?;how many people of a single race are in prison?;what is the number of people of a single race in correctional facilities?;how many people of a single race are incarcerated? -Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,number of students of a single race living in college or university dorms;number of students of a single race living in college or university housing;number of students of a single race living in college or university residence halls;number of students of a single race living in college or university dormitories -Count_Person_OneRace_ResidesInGroupQuarters,number of people of the same race living in group quarters;number of people of a single race living in group quarters;number of people of a single race living in other group quarters -Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,number of people of a single race who are institutionalized in group quarters;number of people of a single race who are institutionalized in group homes;number of people of a single race who are institutionalized in group facilities;number of people of a single race who are institutionalized in group settings -Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,number of people of a single race living in non-institutional group quarters;number of people of a single race living in group quarters outside of institutions;number of people of a single race living in group quarters not in institutions;number of people of a single race living in group quarters not institutionalized -Count_Person_OneRace_ResidesInNursingFacilities,how many people of a single race reside in nursing homes?;what is the number of people of a single race living in nursing homes?;how many people of a single race are in nursing homes?;what is the population of people of a single race in nursing homes? -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthAfrica,"people who were born in africa and are fluent in english only, aged 5 years or more" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthAsia,"the number of people who were born in asia and are now living in the united states, who are 5 years old or older, and who speak only english;the number of people who were born in asia and are now living in the united states, who are 5 years old or older, and whose primary language is english;the number of people who were born in asia and are now living in the united states, who are 5 years old or older, and who do not speak any other language;the number of people who were born in asia and are now living in the united states, who are 5 years old or older, and who are monolingual english speakers" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthCaribbean,population of caribbean-born people over 5 years old who speak only english;number of caribbean-born people over 5 years old who speak only english;percentage of caribbean-born people over 5 years old who speak only english;share of caribbean-born people over 5 years old who speak only english -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the number of people born in central america (excluding mexico) who are 5 years old or older and speak only english;the number of people who were born in central america (excluding mexico) and are 5 years old or older and speak only english;the number of people who were born in central america (excluding mexico) and are 5 years old or older and speak english as their only language;1 the number of people who were born in central america, but live in the united states, and are over the age of 5, who only speak english" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthEasternAsia,"population: 5 years or more, only english, foreign born, eastern asia" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthEurope,"foreign-born english speakers in europe aged 5 or older;the number of english speakers in europe who were born abroad and are 5 years old or older;the number of people in europe who were born outside of europe, speak english, and are at least 5 years old;the english-speaking population in europe that was born outside of europe and is at least 5 years old" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthLatinAmerica,the ratio of english speakers to the poverty line for foreign-born latin americans aged 5 years or more;the proportion of english speakers to the poverty line for foreign-born latin americans aged 5 years or more;the percentage of english speakers to the poverty line for foreign-born latin americans aged 5 years or more;the number of english speakers per capita below the poverty line for foreign-born latin americans aged 5 years or more -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthMexico, -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthNorthamerica,number of people born outside of north america who are 5 years of age or older;number of foreign-born people in north america aged 5 and older;number of people born outside of north america who are currently living in north america and are 5 years of age or older;number of foreign-born residents of north america aged 5 years or older -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"the number of people who were born outside of northern western europe and who are now living there, who are 5 years old or older, and who speak only english;the number of people who were born outside of northern western europe and who are now living there, who are 5 years old or older, and who have english as their only language;the number of people who were born outside of northern western europe and who are now living there, who are 5 years old or older, and who are monolingual english speakers;the number of people who were born outside of northern western europe and who are now living there, who are 5 years old or older, and who do not speak any language other than english" -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthOceania,foreign-born english speakers in oceania aged 5 years and above;english speakers in oceania who were born outside the country and are 5 years old or older;english speakers in oceania who are not native-born and are 5 years old or older;english speakers in oceania who are immigrants and are 5 years old or older -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthCentralAsia,the percentage of people born in south central asia who are 5 years old or older and speak english only;the number of people born in south central asia who are 5 years old or older and speak english as their only language;the number of people born in south central asia who are 5 years old or older and are english-only speakers;the number of people born in south central asia who are 5 years old or older and do not speak any language other than english -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthEasternAsia,english-speaking immigrants to south east asia who are 5 years old or older;english-speaking immigrants in south east asia who are 5 years old or older;people who are not native to south east asia but now live there and are 5 years old or older -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthamerica,percent of foreign-born south americans aged 5 years or older who are fluent in english;percentage of foreign-born south americans aged 5 years or older who speak english fluently;share of foreign-born south americans aged 5 years or older who are english-fluent;number of foreign-born south americans aged 5 years or older who are english-fluent -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthSouthernEasternEurope,english-speaking immigrants in southern eastern europe who are 5 years old or older;only english-speaking foreign-born people in southern and eastern europe aged 5 and over -Count_Person_OnlyEnglishSpokenAtHome_ForeignBorn_PlaceOfBirthWesternAsia,"the number of people who were born in western asia and are now living in the united states, who are 5 years old or older, and who only speak english;the number of people who were born in western asia and are now living in the united states, who are 5 years old or older, and whose native language is english;the number of people who were born in western asia and are now living in the united states, who are 5 years old or older, and who are monolingual english speakers;the number of people who were born in western asia and are now living in the united states, who are 5 years old or older, and who do not speak any language other than english" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,households with at least one member who was born outside of africa;households of foreign-born people in africa that are not nuclear families;non-nuclear families of foreign-born people in africa;households of foreign-born people in africa that include extended family members -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,households in asia with foreign-born members;households in asia with members who are immigrants -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,the foreign-born population of other family households in the caribbean;the number of people born outside of the caribbean who live in other family households in the caribbean;the percentage of the population of other family households in the caribbean who were born outside of the caribbean;the number of people born outside of the caribbean who live in other family households as a percentage of the total population of other family households in the caribbean -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,central american household with members who were born outside of mexico -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,people from other family households who were born in eastern asia -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"the percentage of the foreign-born population living in other family households in europe;the proportion of the foreign-born population living in other family households in europe;the number of foreign-born people living in other family households in europe, as a percentage of the total population;the number of foreign-born people living in other family households in europe, as a proportion of the total population" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,people born in latin america living with other family members;foreign-born latin americans living with other family members;people from latin america who are not citizens of the country they live in living with other family members;immigrants from latin america living with other family members -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,number of people in other family households born in mexico;number of people in mexico-born other family households;number of people born in mexico living in other family households;number of people living in other family households who were born in mexico -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,population of north america born in other countries living in family households;people born in other countries living in family households in north america;population of north america living in family households who were born in other countries;people living in family households in north america who were born in other countries -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the number of people born outside of northern western europe who live in other family households;the percentage of the population in other family households who were born outside of northern western europe;people born outside of northern western europe living in other family households;foreigners born outside of northern western europe living in other family households -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"other family household, foreign born, and oceania" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,population of south central asian immigrants living with other family members;people born in south central asia who live with other family members;immigrants from south central asia who live with other family members;foreign-born south central asians who live with other family members -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,foreign-born families in southeast asia;families in southeast asia with foreign-born members;families in southeast asia headed by a foreign-born person;families in southeast asia with at least one foreign-born child -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,foreign-born family households in south america;households in south america with at least one member who was born outside of south america;family members who were born in south america but live in the us;people who were born in south america but live in the us with their families -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,families of immigrants in southern eastern europe;households headed by immigrants in southern eastern europe;households of foreign-born people in southern eastern europe;households of people born outside of southern eastern europe -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,foreign-born families in western asia;households with foreign-born members from western asia;households with members who were born in western asia but are now living in the united states;western asian families -Count_Person_PerArea,the number of people per unit area;the concentration of people in a given area;the number of people living in a given area per unit of land area;the number of people per square kilometer -Count_Person_PlaceOfBirthAsia,the number of people born outside of asia who live in asia;the number of people who have moved to asia from other countries;the number of people who are foreign-born in asia;the number of people who were born in another country and now live in asia -Count_Person_PlaceOfBirthEurope,the number of people living in europe who were born in another country;the percentage of the european population that is foreign-born;the number of immigrants living in europe;the number of people who have moved to europe from another country -Count_Person_PlaceOfBirthLatinAmerica,the number of people born in other countries who live in latin america;the number of foreign-born people in latin america;the number of people who were not born in latin america but live there now;the number of immigrants in latin america -Count_Person_PovertyStatusDetermined,determine the poverty status of the population;determine the poverty rate;determine the poverty level;determine poverty status of population -Count_Person_PovertyStatusDetermined_ResidesInGroupQuarters,number of people living in group quarters who had their poverty status determined;number of people in group quarters who had their poverty status determined;number of people living in group quarters whose poverty status was determined;number of people in group quarters whose poverty status was determined -Count_Person_PovertyStatusDetermined_ResidesInNoninstitutionalizedGroupQuarters,number of people living in non-institutional group quarters who had their poverty status determined;the number of people living in non-institutional group quarters who had their poverty status determined;how many people living in group quarters outside of institutions had their poverty status determined;how many people living in group quarters outside of institutions had their poverty status assessed -Count_Person_PrivatelyOwnedEstablishment_UnincorporatedBusinessOwnerOrUnpaidFamilyWorker,people aged 16 or older who are employed in privately owned businesses and are unpaid family workers;civilians aged 16 or older who work for family-owned businesses without pay;people aged 16 or older who are employed by their families without pay;civilians aged 16 or older who work for their families without being compensated -Count_Person_PrivatelyOwnedForProfitEstablishment_IncorporatedBusinessOwner,business owners who are 16 years or older and are employed by privately owned for-profit industries;business owners who are 16 years or older and work for privately owned for-profit companies;business owners who are 16 years or older and are employed by privately owned businesses that make a profit;business owners who are 16 years or older and work for privately owned businesses that are not government-run -Count_Person_PrivatelyOwnedForProfitEstablishment_PaidEmployee,"paid civilian employees aged 16 or older working in private industries;paid civilian employees aged 16 or older working in private, for-profit businesses;people working for private companies aged 16 or older" -Count_Person_PrivatelyOwnedForProfitEstablishment_PaidWorker,"people aged 16 or older who are employed in privately owned for-profit establishments;people aged 16 or older who are working in privately owned businesses;civilians aged 16 or older who are working in the for-profit economy;people aged 16 or older who are employed in the private, for-profit sector" -Count_Person_PrivatelyOwnedNotForProfitEstablishment_PaidWorker,paid employees aged 16 or older working in privately owned non-profit organizations;people who are paid to work in privately owned non-profit organizations and are at least 16 years old;civilians who are at least 16 years old and are paid to work in non-profit organizations that are privately owned;people who are paid to work in non-profit organizations that are not owned by the government and are at least 16 years old -Count_Person_Producer, -Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,how many american indian and native american farmers are there?;how many people identify as american indian or native american farmers?;what is the number of american indian and native american farmers?;what is the population of american indian and native american farmers? -Count_Person_Producer_AsianAlone,number of farmers in asia;number of people who farm in asia;number of people who work in agriculture in asia;number of people who make a living from farming in asia -Count_Person_Producer_BlackOrAfricanAmericanAlone,how many african american farmers are there?;what is the number of african american farmers?;what is the population of african american farmers?;how many people identify as african american farmers? -Count_Person_Producer_HispanicOrLatino,number of hispanic farmers;number of hispanic people who are farmers;number of farmers who are hispanic;number of hispanic people who work in agriculture -Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,how many native hawaiians are farmers?;what is the number of native hawaiian farmers?;what is the population of native hawaiian farmers?;how many native hawaiians are involved in farming? -Count_Person_Producer_TwoOrMoreRaces,the number of farmers of mixed race in the united states;the number of mixed-race farmers in the us;the number of farmers in the us who are of mixed race;the number of farmers in the us who identify as mixed race -Count_Person_Producer_WhiteAlone,the number of white farmers;the amount of white farmers;the total number of white farmers;the white farmer population -Count_Person_ResidesInAdultCorrectionalFacilities,number of people in adult correctional facilities;number of adults in correctional facilities;adult correctional facility population;number of adults incarcerated -Count_Person_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,number of people aged 3 or older enrolled in school in adult correctional facilities;number of people in adult correctional facilities who are enrolled in school;number of people aged 3 or older who are enrolled in school while in adult correctional facilities;number of people aged 3 or older who are students while in adult correctional facilities -Count_Person_ResidesInAdultCorrectionalFacilities_Veteran,adults who are veterans and are in jail;adults who are veterans and are in prison;adults who are veterans and are incarcerated;adults who are veterans and are serving time -Count_Person_ResidesInCollegeOrUniversityStudentHousing,number of students living in college or university dormitories;number of students living in college or university housing;number of students living in college or university residence halls;number of students living in college or university dorms -Count_Person_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,number of people aged 3 or older living in college or university student housing who are enrolled in school;number of people aged 3 or older enrolled in school who are living in college or university student housing;number of people aged 3 or older who are both enrolled in school and living in college or university student housing;number of people aged 3 or older who are enrolled in school and living in college or university housing -Count_Person_ResidesInCollegeOrUniversityStudentHousing_Veteran,college or university student housing for civilians aged 18 years or older who are veterans;student housing for veterans at colleges or universities;housing for veterans at colleges or universities;student housing for civilians aged 18 years or older who are veterans at colleges or universities -Count_Person_ResidesInGroupQuarters,number of people living in group quarters;people living in group quarters;group quarters population;population living in group quarters -Count_Person_ResidesInGroupQuarters_EnrolledInSchool,population aged 3 years or more in group quarters enrolled in school;number of people aged 3 years or more in group quarters who are enrolled in school;number of people aged 3 years or more in group quarters who are students;number of people aged 3 years or more in group quarters who are enrolled in an educational institution -Count_Person_ResidesInGroupQuarters_Veteran,people who are veterans and are at least 18 years old and live in group quarters;veterans who are 18 years old or older and live in group housing;adult veterans who live in group quarters;veterans who are 18 years old or older and live in shared housing -Count_Person_ResidesInHousehold,homes;residences;households -Count_Person_ResidesInInstitutionalizedGroupQuarters,institutionalized group quarters population -Count_Person_ResidesInInstitutionalizedGroupQuarters_EnrolledInSchool,"the number of people over 3 years old who are enrolled in school and live in institutionalized group quarters;the number of children who are enrolled in school and live in group quarters, such as group homes, foster homes, or correctional facilities;number of people over 3 years old institutionalized in group quarters enrolled in school;number of people over 3 years old institutionalized in group quarters who are students" -Count_Person_ResidesInInstitutionalizedGroupQuarters_Veteran,veterans aged 18 and older who are institutionalized and live in group quarters;adults aged 18 and older who are veterans and are institutionalized and live in group quarters -Count_Person_ResidesInNoninstitutionalizedGroupQuarters,people living in non-institutional group quarters;number of people living in non-institutional group quarters;population of non-institutional group quarters;the number of people living in non-institutional group quarters -Count_Person_ResidesInNoninstitutionalizedGroupQuarters_EnrolledInSchool,number of people over 3 years old enrolled in non-institutional schools;number of people over the age of 3 enrolled in schools in non-institutional group quarters;number of people over the age of 3 enrolled in schools in non-residential settings -Count_Person_ResidesInNoninstitutionalizedGroupQuarters_Veteran, -Count_Person_ResidesInNursingFacilities,nursing homes;assisted living facilities;skilled nursing facilities -Count_Person_ResidesInNursingFacilities_EnrolledInSchool,number of people aged 3 or older enrolled in schools living in nursing facilities;number of people aged 3 or older enrolled in school who live in nursing facilities;number of people aged 3 or older enrolled in schools who are residents of nursing facilities;number of people aged 3 or older who are enrolled in schools and live in nursing facilities -Count_Person_ResidesInNursingFacilities_Veteran,number of veterans aged 18 years or more in nursing facilities;number of veterans in nursing facilities who are 18 years of age or older;number of veterans aged 18 years or more who are living in nursing facilities;number of veterans aged 18 years or older who are receiving care in nursing facilities -Count_Person_ResidingLessThan5MetersAboveSeaLevel_AsFractionOf_Count_Person,percentage of people living in areas below 5 meters above sea level;share of people living in areas below 5 meters above sea level;number of people living in areas below 5 meters above sea level as a percentage of the total population;proportion of people living in areas below 5 meters above sea level -Count_Person_Rural,rural population;people living in rural areas;number of people living in rural areas;population of rural areas -Count_Person_Rural_Female,female rural population;rural female population;population of rural females;the female population in rural areas -Count_Person_Rural_Male,male rural population;rural male population;population of rural males;male population in rural areas -Count_Person_SOCManagementBusinessScienceArtsOccupation,"people aged 16 or older who work in management, business, science, or the arts;adults aged 16 or older who work in professional occupations;adults aged 16 or older who work in professional and managerial occupations;adults aged 16 or older who are employed in management, business, science, or the arts" -Count_Person_SOCNaturalResourcesConstructionMaintenanceOccupation, -Count_Person_SOCProductionTransportationMaterialMovingOccupation,"the number of people in the united states who are employed in production, transportation, and material moving occupations;civilians who are 16 years or older and are employed in occupations that involve making things, moving things, or transporting things" -Count_Person_SOCSalesOfficeOccupation,people aged 16 or older who work in sales or office jobs;civilians aged 16 or older who are employed in sales and office occupations;people aged 16 or older who have a job in sales or an office;civilians aged 16 or older who are employed in the sales and office sector -Count_Person_SOCServiceOccupation,the percentage of civilians aged 16 years or more employed in service occupations;the number of civilians aged 16 years or more employed in service occupations;the proportion of civilians aged 16 years or more employed in service occupations;the share of civilians aged 16 years or more employed in service occupations -Count_Person_ScheduledCaste,population of scheduled castes;scheduled caste demographics;scheduled caste census data;scheduled caste population statistics -Count_Person_ScheduledCaste_Female,"females from the scheduled castes;the female population of the scheduled castes;female, scheduled caste;female, oppressed caste" -Count_Person_ScheduledCaste_Illiterate,illiterate scheduled castes;illiterate members of the scheduled castes -Count_Person_ScheduledCaste_Illiterate_Female,illiterate women from the scheduled castes;illiterate scheduled caste women;scheduled caste women who are illiterate;illiterate women of the scheduled castes -Count_Person_ScheduledCaste_Illiterate_Male,"male, illiterate, scheduled caste;illiterate male from a scheduled caste;a male from a scheduled caste who is illiterate;a scheduled caste male who is illiterate" -Count_Person_ScheduledCaste_Illiterate_Rural,illiterate scheduled caste population in rural areas;rural scheduled caste illiterate population;scheduled caste population in rural areas who are illiterate -Count_Person_ScheduledCaste_Illiterate_Urban,urban illiterates from scheduled castes -Count_Person_ScheduledCaste_Literate,the percentage of people in scheduled castes who can read and write;the number of people in scheduled castes who are literate;the level of literacy among scheduled castes;the rate of literacy among scheduled castes -Count_Person_ScheduledCaste_Literate_Female,"females who are literate and belong to a scheduled caste;females who are literate and belong to a lower caste;female, literate, scheduled caste population;population of females who are literate and scheduled caste" -Count_Person_ScheduledCaste_Literate_Male,"male, literate, scheduled caste;male, literate, and from a scheduled caste;male, literate, and a member of a scheduled caste;male, literate, scheduled caste population" -Count_Person_ScheduledCaste_Literate_Rural,"the percentage of people in rural areas who are from scheduled castes and can read and write;the number of people in rural areas who are from scheduled castes and can read and write, expressed as a percentage of the total population of rural areas;the proportion of people in rural areas who are from scheduled castes and can read and write;the literacy rate of people from scheduled castes in rural areas" -Count_Person_ScheduledCaste_Literate_Urban,people from scheduled castes who can read and write;urban people from scheduled castes who are literate;people from scheduled castes who are literate and live in cities;people from scheduled castes who are literate and live in urban areas -Count_Person_ScheduledCaste_MainWorker,principal employee;primary worker;key worker;essential worker -Count_Person_ScheduledCaste_MainWorker_AgriculturalLabourers, -Count_Person_ScheduledCaste_MainWorker_Cultivators,cultivators from the scheduled castes;the main caste that cultivates land -Count_Person_ScheduledCaste_MainWorker_Female,scheduled caste women workers;women workers from scheduled castes;main female workers from scheduled castes;female workers from the scheduled castes who are the main breadwinners -Count_Person_ScheduledCaste_MainWorker_HouseholdIndustries, -Count_Person_ScheduledCaste_MainWorker_Male, -Count_Person_ScheduledCaste_MainWorker_OtherWorkers,what are the main occupations of people in the scheduled castes?;what do most people in the scheduled castes do for a living?;what are the most common occupations of people in the scheduled castes?;what are the most popular occupations of people in the scheduled castes? -Count_Person_ScheduledCaste_MainWorker_Rural,rural main workers from scheduled castes;main workers from scheduled castes in rural areas;rural workers from scheduled castes;scheduled castes who are main workers in rural areas -Count_Person_ScheduledCaste_MainWorker_Urban,workers in urban areas who are from scheduled tribes;people from scheduled tribes who live in cities and work;people from scheduled tribes who live and work in cities -Count_Person_ScheduledCaste_Male,"male, scheduled caste;male, from a caste that is considered to be lower in the social hierarchy;male, from a caste that is considered to be oppressed;male, from a caste that is considered to be discriminated against" -Count_Person_ScheduledCaste_MarginalWorker, -Count_Person_ScheduledCaste_MarginalWorker_AgriculturalLabourers,"sure here are five different ways of saying ""marginal agricultural labourers"":" -Count_Person_ScheduledCaste_MarginalWorker_Cultivators,scheduled caste farmers with marginal land -Count_Person_ScheduledCaste_MarginalWorker_Female,"women who are members of scheduled tribes and who work in low-paying, insecure jobs;women from scheduled tribes who are employed in marginal occupations;women from tribal groups who are engaged in informal, low-status work;women from scheduled tribes who work in low-paying jobs" -Count_Person_ScheduledCaste_MarginalWorker_HouseholdIndustries,scheduled caste workers in the informal economy;scheduled caste workers in the home-based sector;scheduled caste workers in home-based businesses -Count_Person_ScheduledCaste_MarginalWorker_Male,men who belong to the scheduled castes and are working in marginal jobs;male members of the scheduled castes who are employed in low-paying or insecure jobs;male scheduled castes who are engaged in low-skilled or low-wage work;men who belong to the scheduled castes and are employed in marginal jobs -Count_Person_ScheduledCaste_MarginalWorker_OtherWorkers,"scheduled caste, marginal, and other workers;workers who are scheduled caste, marginal, or other;workers from scheduled caste, marginal, or other backgrounds;workers who identify as scheduled caste, marginal, or other" -Count_Person_ScheduledCaste_MarginalWorker_Rural, -Count_Person_ScheduledCaste_MarginalWorker_Urban,urban marginal workers on a schedule;urban workers with irregular schedules;urban workers with unpredictable schedules;urban workers with variable schedules -Count_Person_ScheduledCaste_NonWorker,people who are not employed in scheduled castes;scheduled castes who are not working;scheduled castes who are unemployed;scheduled castes who are not in the workforce -Count_Person_ScheduledCaste_NonWorker_Female,a woman who is not employed and belongs to a scheduled caste -Count_Person_ScheduledCaste_NonWorker_Male, -Count_Person_ScheduledCaste_NonWorker_Rural,rural scheduled caste non-workers -Count_Person_ScheduledCaste_NonWorker_Urban,urban residents of scheduled castes who are not employed;urban scheduled caste non-workers;urban scheduled caste non-working people -Count_Person_ScheduledCaste_Rural,the population of scheduled castes in rural areas;rural scheduled caste population;population of scheduled castes in rural areas;the number of people from scheduled castes living in rural areas -Count_Person_ScheduledCaste_Rural_Female,women from rural scheduled caste communities;scheduled caste women in rural areas;scheduled caste women living in rural areas -Count_Person_ScheduledCaste_Rural_Male,a male from a rural area who is a member of a scheduled caste;a man who lives in a rural area and is a member of a scheduled caste;a male who is from a rural area and is a member of a scheduled caste;a man who is a member of a scheduled caste and lives in a rural area -Count_Person_ScheduledCaste_Urban,caste-based discrimination in urban areas;urban scheduled caste population -Count_Person_ScheduledCaste_Urban_Female,"female, urban, scheduled caste;female, city-dwelling, from a lower caste;a woman who lives in a city and is from a lower caste;a female urban scheduled caste" -Count_Person_ScheduledCaste_Urban_Male,"male, urban, scheduled caste;male, city-dwelling, lower caste;male, from a city, from a lower caste;male, urbanite, from a lower caste" -Count_Person_ScheduledCaste_Workers,dalits -Count_Person_ScheduledCaste_Workers_Female,a female worker from a historically disadvantaged caste -Count_Person_ScheduledCaste_Workers_Male,"male, scheduled caste, worker" -Count_Person_ScheduledCaste_Workers_Rural,workers in scheduled castes who live in rural areas;workers from scheduled castes living in rural areas;people from scheduled castes who live in rural areas;people from scheduled castes who work in rural areas -Count_Person_ScheduledCaste_Workers_Urban,scheduled caste workers in urban areas;urban scheduled caste workers;scheduled caste workers in cities;scheduled caste workers in urban settings -Count_Person_ScheduledCaste_YearsUpto6,number of people aged 6 years or less in scheduled castes;number of children aged 6 years or less in scheduled castes;population of scheduled castes aged 6 years or less;scheduled castes population aged 6 years or less -Count_Person_ScheduledCaste_YearsUpto6_Female,scheduled caste female children aged 6 years or less;the number of scheduled caste girls aged 6 or less;the population of scheduled caste girls under the age of 6;the number of scheduled caste females aged 6 or younger -Count_Person_ScheduledCaste_YearsUpto6_Male,population of scheduled caste males aged 6 years or less;number of scheduled caste males aged 6 years or less;scheduled caste male population under 6 years of age;number of scheduled caste males under 6 years of age -Count_Person_ScheduledCaste_YearsUpto6_Rural,people from scheduled castes who have lived in rural areas for six years or less;people from scheduled castes who have been settled in rural areas for six years or less;scheduled castes in rural areas for 6 years or less;people of scheduled castes in rural areas for 6 years or less -Count_Person_ScheduledCaste_YearsUpto6_Rural_Female,number of rural scheduled caste females aged 6 years or less;scheduled caste female population in rural areas aged 6 years or less;scheduled caste females aged 6 years or less in rural areas;the number of rural scheduled caste girls aged 6 or less -Count_Person_ScheduledCaste_YearsUpto6_Rural_Male,number of scheduled caste males aged 6 years or less in rural areas;population of scheduled caste males aged 6 years or less in rural areas;scheduled caste male population in rural areas aged 6 years or less;number of rural scheduled caste males aged 6 or less -Count_Person_ScheduledCaste_YearsUpto6_Urban,"population: 6 years or less, urban, scheduled caste;less than 6 years old, living in a city, and from a scheduled caste;6 years old or younger, living in an urban area, and from a scheduled caste;6 years or younger, living in a city, and from a scheduled caste" -Count_Person_ScheduledCaste_YearsUpto6_Urban_Female,number of girls aged 6 years or less in urban areas belonging to scheduled castes;female population of scheduled castes in urban areas aged 6 years or less;number of female children aged 6 years or less in urban areas belonging to scheduled castes;female population of scheduled castes aged 6 years or less in urban areas -Count_Person_ScheduledCaste_YearsUpto6_Urban_Male,"6 years old or younger, male, living in a city, and from a lower caste" -Count_Person_ScheduledTribe,scheduled tribe population;population of scheduled tribes;number of scheduled tribes people;scheduled tribe people population -Count_Person_ScheduledTribe_Female,female member of a scheduled tribe;female member of a tribal group;female member of an indigenous group;woman from a scheduled tribe -Count_Person_ScheduledTribe_Illiterate,population of scheduled tribes who are illiterate;percentage of scheduled tribe people who are illiterate;proportion of scheduled tribe people who are illiterate;number of illiterate people in scheduled tribes -Count_Person_ScheduledTribe_Illiterate_Female,women who are illiterate and belong to a scheduled tribe;illiterate women from scheduled tribes;scheduled tribe women who are illiterate;illiterate women who belong to a scheduled tribe -Count_Person_ScheduledTribe_Illiterate_Male,illiterate male from the scheduled tribe;male from the scheduled tribe who is illiterate;illiterate scheduled tribe male;scheduled tribe male who is illiterate -Count_Person_ScheduledTribe_Illiterate_Rural,the number of illiterate people in rural areas who belong to scheduled castes;the number of people in rural areas who belong to scheduled castes and are illiterate;the percentage of people in rural areas who belong to scheduled castes and are illiterate;the percentage of illiterate people in rural areas who belong to scheduled castes -Count_Person_ScheduledTribe_Illiterate_Urban,"people who are illiterate, live in urban areas, and belong to scheduled tribes;people who are illiterate, live in cities, and belong to scheduled tribes;people who are illiterate, live in urban areas, and are indigenous peoples;illiterate, urban, scheduled tribe population" -Count_Person_ScheduledTribe_Literate,population of scheduled tribes who can read and write;number of scheduled tribes who are literate;proportion of scheduled tribes who are literate;percentage of scheduled tribes who are literate -Count_Person_ScheduledTribe_Literate_Female,women who are literate and belong to scheduled tribes;female members of scheduled tribes who can read and write;literate women who are members of scheduled tribes;women who are literate and are members of scheduled tribes -Count_Person_ScheduledTribe_Literate_Male,"male, literate, scheduled tribe;male, literate, indigenous;male, educated, indigenous;male, literate, tribal" -Count_Person_ScheduledTribe_Literate_Rural,people who can read and write from scheduled tribes living in rural areas;rural literate scheduled tribes;scheduled tribes who can read and write in rural areas;people from scheduled tribes who can read and write in rural areas -Count_Person_ScheduledTribe_Literate_Urban,"the percentage of people in scheduled tribes who can read and write in urban areas;the proportion of scheduled tribes people who are literate in urban areas;the number of scheduled tribes people who can read and write in urban areas, expressed as a percentage of the total scheduled tribes population in urban areas;the number of scheduled tribes people who are literate in urban areas, expressed as a proportion of the total population in urban areas" -Count_Person_ScheduledTribe_MainWorker,main workers from scheduled tribes -Count_Person_ScheduledTribe_MainWorker_AgriculturalLabourers, -Count_Person_ScheduledTribe_MainWorker_Cultivators,scheduled tribes who are main cultivators;main cultivators among scheduled tribes;scheduled tribes who are the main cultivators;main cultivators from scheduled tribes -Count_Person_ScheduledTribe_MainWorker_Female,female scheduled tribe breadwinners;scheduled tribe women who are the main earners in their families -Count_Person_ScheduledTribe_MainWorker_HouseholdIndustries,the majority of workers in household industries belong to the scheduled castes;the scheduled castes make up the majority of workers in household industries;household industries employ the most people from the scheduled castes;the scheduled castes are the most represented group in household industries -Count_Person_ScheduledTribe_MainWorker_Male,5 male scheduled tribe heads of household;men from scheduled tribes who are the main providers for their families -Count_Person_ScheduledTribe_MainWorker_OtherWorkers,employees other than the main one;employees other than the main ones -Count_Person_ScheduledTribe_MainWorker_Rural,scheduled tribe main workers in rural areas;main workers from scheduled tribes in rural areas;scheduled tribe workers who are the main breadwinners in rural areas;main workers in rural areas who are from scheduled tribes -Count_Person_ScheduledTribe_MainWorker_Urban,main workers in urban areas who belong to scheduled tribes;urban workers who are from scheduled tribes;main workers in urban areas who are classified as scheduled tribes;urban workers who are classified as scheduled tribes -Count_Person_ScheduledTribe_Male,"male, scheduled tribe;male, scheduled tribes;male, scheduled tribe member;male, tribal" -Count_Person_ScheduledTribe_MarginalWorker,scheduled tribe workers on the margins -Count_Person_ScheduledTribe_MarginalWorker_AgriculturalLabourers,agricultural laborers who are part of scheduled tribes;agricultural laborers who are from tribal communities;agricultural laborers who are members of scheduled tribes;tribal agricultural laborers -Count_Person_ScheduledTribe_MarginalWorker_Cultivators,cultivators from scheduled tribes with small landholdings -Count_Person_ScheduledTribe_MarginalWorker_Female,"women from indigenous groups who are engaged in informal, low-status work;tribal women who are involved in precarious, low-paying employment;women from indigenous groups who work in informal sectors;women from tribal communities who have low-paying, unstable jobs" -Count_Person_ScheduledTribe_MarginalWorker_HouseholdIndustries,"people from scheduled tribes, people who work in household industries, marginal workers, and workers;people who belong to scheduled tribes, people who work in home-based businesses, people who are employed part-time or irregularly, and people who are employed;people who are tribal, people who work in home-based businesses, people who are part-time workers, and people who are employed" -Count_Person_ScheduledTribe_MarginalWorker_Male,men from marginalized scheduled tribes;men from indigenous communities;men from tribal groups;male scheduled tribe laborers -Count_Person_ScheduledTribe_MarginalWorker_OtherWorkers,people who work less than full-time and are from scheduled tribes;people who work in marginal occupations and are members of scheduled tribes;people who belong to scheduled tribes and work part-time -Count_Person_ScheduledTribe_MarginalWorker_Rural,rural male workers belonging to scheduled tribes;scheduled tribe male workers in rural areas;male workers belonging to scheduled tribes in rural areas;rural scheduled tribe male workers -Count_Person_ScheduledTribe_MarginalWorker_Urban,urban scheduled tribe workers who are not part of the formal economy;urban marginal workers from scheduled tribes;scheduled tribe marginal workers in urban areas;urban workers from scheduled tribes who are marginal -Count_Person_ScheduledTribe_NonWorker,people from scheduled tribes who are not employed;scheduled tribe members who are not working;scheduled tribe folks who are not working;scheduled tribe individuals who are not employed -Count_Person_ScheduledTribe_NonWorker_Female,"female, scheduled tribe, non-worker;a female non-worker from a scheduled tribe;a female who is not employed and belongs to a scheduled tribe" -Count_Person_ScheduledTribe_NonWorker_Male, -Count_Person_ScheduledTribe_NonWorker_Rural,the number of people from scheduled tribes who are unemployed and living in rural areas;the percentage of scheduled tribes people who are unemployed and living in rural areas;the number of unemployed scheduled tribes people living in rural areas;rural scheduled tribes unemployed population -Count_Person_ScheduledTribe_NonWorker_Urban,people who don't work in cities;city dwellers who don't have jobs;non-employed people in urban areas;people who don't have jobs in cities -Count_Person_ScheduledTribe_Rural,number of people living in rural areas who are from scheduled tribes;number of people from scheduled tribes living in rural areas;population of scheduled tribes in rural areas;number of rural residents who are from scheduled tribes -Count_Person_ScheduledTribe_Rural_Female,women living in rural areas who belong to scheduled tribes;scheduled tribe women living in rural areas;women from scheduled tribes living in rural areas;women in rural areas who are scheduled tribe members -Count_Person_ScheduledTribe_Rural_Male,"man, living in rural area, from a scheduled tribe;male, rural, scheduled tribe;man from rural area, scheduled tribe;male, rural, scheduled tribe member" -Count_Person_ScheduledTribe_Urban,1 population of scheduled tribes in urban areas;2 people of scheduled tribes living in cities;3 scheduled tribes living in urban areas;4 scheduled tribes in urban areas -Count_Person_ScheduledTribe_Urban_Female,"a female, urban, scheduled tribe population;urban female from a scheduled tribe" -Count_Person_ScheduledTribe_Urban_Male,"a person who is male, lives in an urban area, and is a member of a scheduled tribe;male, urban, scheduled tribe;male, city-dwelling, scheduled tribe member;urban male, scheduled tribe member" -Count_Person_ScheduledTribe_Workers,scheduled tribes;tribal workers;workers from scheduled tribes;workers from indigenous tribes -Count_Person_ScheduledTribe_Workers_Female,a female worker who is a member of a tribal community -Count_Person_ScheduledTribe_Workers_Male,a worker who is male and from a scheduled tribe -Count_Person_ScheduledTribe_Workers_Rural,number of rural workers;number of rural employees -Count_Person_ScheduledTribe_Workers_Urban,number of urban workers;total urban workforce;number of city workers;number of people working in urban areas -Count_Person_ScheduledTribe_YearsUpto6,the number of people in the scheduled tribes who are 6 years old or younger;the population of the scheduled tribes aged 6 or less;the number of scheduled tribes people aged 6 or less;the number of people in the scheduled tribes who are under the age of 6 -Count_Person_ScheduledTribe_YearsUpto6_Female,the number of girls under the age of 6 in scheduled tribes;the number of female children under 6 in scheduled tribes;the number of female tribal children under 6;the number of female children in scheduled tribes under 6 -Count_Person_ScheduledTribe_YearsUpto6_Male,"6 years old or younger, male, and from a scheduled tribe;6 and under, male, and a member of a scheduled tribe;6 years or less, male, and a tribal person;6 years old or younger, male, and an indigenous person" -Count_Person_ScheduledTribe_YearsUpto6_Rural,"under 6 years old, rural, scheduled tribe;less than 6 years old, rural, scheduled tribe;6 years old or less, rural, scheduled tribe;less than 6 years old, rural, and from a scheduled tribe" -Count_Person_ScheduledTribe_YearsUpto6_Rural_Female,number of rural scheduled tribe females aged 6 years or less;number of rural scheduled tribe girls aged 6 years or less;number of scheduled tribe females aged 6 years or less living in rural areas;number of scheduled tribe girls aged 6 years or less living in rural areas -Count_Person_ScheduledTribe_YearsUpto6_Rural_Male,number of male children aged 6 years or less in rural areas who belong to scheduled tribes;number of male children aged 6 years or less in rural areas who are tribals;number of male children aged 6 years or less in rural areas who are from scheduled tribes;number of male children aged 6 years or less in rural areas who are indigenous -Count_Person_ScheduledTribe_YearsUpto6_Urban, -Count_Person_ScheduledTribe_YearsUpto6_Urban_Female,number of girls aged 0 to 6 in cities;number of female children aged 0 to 6 in urban areas;female population aged 0 to 6 in urban areas;number of females aged 0 to 6 in urban areas -Count_Person_ScheduledTribe_YearsUpto6_Urban_Male,urban scheduled tribe males under 6 years old;scheduled tribe males under 6 years old in urban areas;urban males under 6 years old who are from scheduled tribes;scheduled tribe males under 6 years old who live in urban areas -Count_Person_SelfCareDifficulty,how many people have trouble taking care of themselves?;what is the number of people who have difficulty with self-care?;how many people struggle with self-care?;what is the number of people who have trouble taking care of themselves on a daily basis? -Count_Person_Separated,number of people who are married but living apart;the number of people who are married but separated;the number of people who are legally married but living apart;the number of people who are married but not living as a couple -Count_Person_Separated_ResidesInAdultCorrectionalFacilities, -Count_Person_Separated_ResidesInCollegeOrUniversityStudentHousing,2 people aged 15 and over living in college housing -Count_Person_Separated_ResidesInGroupQuarters, -Count_Person_Separated_ResidesInInstitutionalizedGroupQuarters,"people aged 15 years or older in group quarters, institutionalized" -Count_Person_Separated_ResidesInNoninstitutionalizedGroupQuarters,population aged 15 and older in non-institutional group quarters -Count_Person_Separated_ResidesInNursingFacilities,workers who have been laid off from nursing facilities;employees who have been terminated from their jobs at nursing facilities;personnel who have been fired from nursing facilities;people who have been separated from their jobs at nursing facilities -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,poverty rate of single-mother households in africa with foreign-born heads of household;percentage of foreign-born single mothers living in poverty in africa;poverty rate of foreign-born single-parent households in africa;percentage of foreign-born single parents living in poverty in africa -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,single mother households with foreign-born parents in asia who are living in poverty;households with single mothers who are immigrants from asia and are living in poverty;single mothers in asia who have immigrated and are living in poverty;single-parent households in asia headed by immigrant mothers who are living in poverty -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,people born in the caribbean who live in the us with a single mother and are living in poverty;people born in the caribbean who live in the us with a single mother and are considered poor;people born in the caribbean who live in the us with a single mother and have a low income;people born in the caribbean who live in the us with a single mother and are below the poverty line -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,"the number of people born in central america who live in the united states and are part of single-mother households with a determined poverty status;the number of foreign-born central americans living in the united states who are part of single-mother households and have been determined to be living in poverty;the number of people who were born in central america and now live in the united states, who are part of single-mother households, and who have been determined to be living in poverty;the number of central american immigrants living in the united states who are part of single-mother households and have been determined to be living in poverty" -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,single mothers who immigrated from eastern asia and live in poverty;single-parent households headed by foreign-born mothers from eastern asia who are living in poverty;poor single-mother families with immigrant mothers from eastern asia;families headed by single mothers who immigrated from eastern asia and are living in poverty -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,single-mother households headed by foreign-born people in europe with a poverty status;families in europe headed by a single mother who was born outside of the country and are living in poverty;households in europe headed by a single mother who was born outside of the country and are living in poverty -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,how many foreign-born families in latin america live in poverty?;what is the number of foreign-born families in latin america who are living in poverty?;what is the percentage of foreign-born families in latin america who are living in poverty?;what is the poverty rate among foreign-born families in latin america? -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,foreign-born single mothers in north america living in poverty;single-parent households headed by foreign-born women in north america with low incomes;north american households headed by foreign-born single mothers with low incomes;low-income single-parent households headed by foreign-born women in north america -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,foreign-born single mothers in north american households living in poverty -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,single-parent households in northern western europe headed by a mother who was born outside of the country and is living in poverty;households in northern western europe headed by a single mother who was born outside of the country and is living in poverty;families in northern western europe headed by a single mother who was born outside of the country and is living in poverty;households with a single mother who was born outside of the country and is living in poverty in northern western europe -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,household in oceania with a single mother and poverty status determined;household in oceania with a single mother and poverty status determined due to immigration -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,south asian foreign-born single mothers living in poverty;poverty status of foreign-born single mothers from south central asia;single mothers from south central asia living in poverty who were born outside the united states;single mothers from south central asia who have immigrated to the united states and are living in poverty -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,southeast asian single mothers living in poverty who were not born in the country -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,the proportion of single-mother households in south america with determined poverty status;the percentage of single-mother households in south america with determined poverty status;the percentage of single-mother households in south america with foreign-born parents living in poverty;the number of single-mother households in south america with foreign-born parents living below the poverty line -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,single mothers who were born outside of southern eastern europe and are living in poverty;mothers who were born outside of southern eastern europe and are raising children alone while living in poverty;mothers who were born outside of southern eastern europe and are struggling to make ends meet while raising children alone;mothers who were born outside of southern eastern europe and are facing financial hardship while raising children alone -Count_Person_SingleMotherFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,households headed by single mothers of foreign origin in western asia with established poverty status;single-mother households of foreign-born people in western asia who are living in poverty;single mother households in western asia with foreign-born mothers who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,"households headed by single mothers who were born in another country and have children under the age of 18 in africa, with their poverty status determined;families in africa with children under 18 headed by a single mother who was born in another country, with their poverty status determined;households in africa headed by single mothers who were born outside of the country and have children under the age of 18, with their poverty status determined;families in africa with children under 18 years old, headed by a single mother who was born outside of the country, with their poverty status determined" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,households with single foreign-born mothers and children under 18 in asia who have been determined to be in poverty;single foreign-born mothers in asia who are living in poverty with their children under 18;families in asia headed by single foreign-born mothers with children under 18 who have been determined to be in poverty;households in asia with single foreign-born mothers and children under 18 who have been determined to be living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,households headed by single mothers with children aged 18 years or younger who were born in the caribbean and are living in poverty;families with children under 18 years of age headed by a single mother who was born in the caribbean and is living in poverty;households with children under 18 years of age headed by a single mother who was born in the caribbean and is considered to be poor;families with children under 18 years of age headed by a single mother who was born in the caribbean and has a low income -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,central american single mothers living with minor children;households in central america headed by foreign-born single mothers with children under 18;families in central america with children under 18 headed by single foreign-born mothers;single foreign-born mothers in central america with children under 18 -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,single mothers in eastern asia with children under 18 who are living in poverty;single-parent households in eastern asia with children under 18 who are living in poverty;households headed by single mothers in eastern asia with children under 18 who are living in poverty;families headed by single mothers in eastern asia with children under 18 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,"households with single mothers who were born in europe and have children under the age of 18, and whose poverty status has been determined" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,latin american immigrant single-parent households with children under 18 who are living in poverty;latin american immigrant single-parent households with children under 18 who are considered to be low-income;households headed by a single mother who was born in latin america and has children under 18 who are considered to be low-income;single latin american mothers with children under 18 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined, -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,single-parent households in north america headed by a foreign-born mother with children under 18 who are living in poverty;households with children under 18 headed by a single mother who was born outside of north america and are living in poverty;single-parent households with children under 18 headed by a mother who was born outside of north america and are living in poverty;north american families with children under 18 headed by a single mother who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,a single mother lives in a household with children under 18 the mother was born in northern western europe and her poverty status has been determined;a single mother from northern western europe lives in a household with children under 18 her poverty status has been determined;a single mother with children under 18 lives in a household the mother was born in northern western europe and her poverty status has been determined;a household with children under 18 is headed by a single mother the mother was born in northern western europe and her poverty status has been determined -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,single mothers in oceania who have children under 18 and live in poverty;single mothers in oceania with children under 18 who are poor;single mothers in oceania who are poor and have children under 18;single mothers in oceania who are living in poverty with children under 18 -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,"households in south central asia with single foreign-born parents and children under 18 who have been determined to be living in poverty;foreign-born single parents in south central asia with children under 18 who have been determined to be living in poverty;single-parent households in south central asia with foreign-born parents and children under 18 who have been determined to be living in poverty;households in south central asia with foreign-born parents and children under 18 who have been determined to be living in poverty, headed by a single parent" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"a household headed by a single mother with foreign-born children under the age of 18 in southeast asia, where the poverty status has been determined;a family headed by a single mother with foreign-born children under the age of 18 in southeast asia, where the poverty status has been determined;a household or family headed by a single mother with foreign-born children under the age of 18 in southeast asia, where the poverty status has been determined;a household headed by a single mother with foreign-born children under the age of 18 in southeast asia, with their poverty status determined" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,single mothers from south america who have children under 18 and live in poverty;households headed by single mothers from south america with children under 18 who are living in poverty;families with children under 18 headed by single mothers from south america who are living in poverty;households with children under 18 headed by single mothers from south america who have been determined to be living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,single mothers in southern eastern europe with children under 18 who live in poverty;single-parent households in southern eastern europe headed by a mother with children under 18 who are living in poverty;families in southern eastern europe with a single mother and children under 18 who are living in poverty;households in southern eastern europe with a single mother and children under 18 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder18_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,the number of foreign-born people in western asia who live in single-mother households with children under 18 and have been determined to be in poverty;the number of foreign-born people in western asia who are single mothers with children under 18 and live in poverty;the number of foreign-born people in western asia who are single parents with children under 18 and live in poverty;the number of foreign-born people in western asia who are single heads of household with children under 18 and live in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,households with single mothers and children under 5 years old who were born in africa and are living in poverty;families headed by single mothers with children under 5 years old who were born in africa and are living in poverty;households with single mothers and young children who were born in africa and are living in poverty;families headed by single mothers with young children who were born in africa and are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,households with foreign-born single mothers and children under 5 years old in asia that are living in poverty;families with foreign-born single mothers and children under 5 years old in asia that are living in poverty;households with foreign-born single mothers and children under 5 years old in asia that are considered poor;families with foreign-born single mothers and children under 5 years old in asia that are considered poor -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined, -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined, -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,the number of people born in eastern asia who live in single-mother households with children under 5 years old and have been determined to be living in poverty;the percentage of the foreign-born population in eastern asia who live in single-mother households with children under 5 years old and have been determined to be living in poverty;the number of children under 5 years old living in single-mother households in eastern asia whose parents were born outside of the country and have been determined to be living in poverty;the percentage of children under 5 years old in eastern asia who live in single-mother households whose parents were born outside of the country and have been determined to be living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,single mothers with children under 5 in europe who are living in poverty;families in europe with foreign-born single mothers and children under 5 who are living in poverty;households in europe with foreign-born single mothers and children under 5 who are living in poverty;households in europe with single mothers who were born outside of europe and have children under 5 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,how many single mothers in latin america live below the poverty line with children under 5?;what is the percentage of single mothers in latin america with children under 5 who live below the poverty line?;what is the number of single mothers in latin america with children under 5 who live in poverty?;what is the poverty rate among single mothers in latin america with children under 5? -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,households in mexico with foreign-born single mothers and children under 5 whose poverty status has been determined;families in mexico headed by foreign-born single mothers with children under 5 who have been determined to be living in poverty;households in mexico with foreign-born single mothers and children under 5 who have been classified as poor;households in mexico with foreign-born single mothers and children under 5 who have been determined to have low income -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,single mothers in north america with children under 5 who are living in poverty;north american households headed by single mothers with children under 5 who are living in poverty;north american single-mother households with children under 5 who are living in poverty;households in north america headed by single mothers with children under 5 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,poverty status of single mother family households with foreign-born children under 5 years in northern western europe;poverty rate of single mother family households with foreign-born children under 5 years in northern western europe;percentage of single mother family households with foreign-born children under 5 years in northern western europe living in poverty;number of single mother family households with foreign-born children under 5 years in northern western europe living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,"the number of people born outside of oceania who live in oceania with children under the age of 5 and who are single mothers with a household income below the poverty line;the percentage of the population in oceania who are foreign-born, have children under the age of 5, are single mothers, and live in poverty;the number of foreign-born children under the age of 5 living in oceania with single mothers who are below the poverty line;the number of single mothers in oceania who are foreign-born, have children under the age of 5, and live in poverty" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,a single mother from south central asia with children under 5 has been determined to be low-income -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined, -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,"single mothers in south america who have children under 5 and live in poverty;south american households headed by single mothers with children under 5 who are living in poverty;families in south america with single mothers, children under 5, and a determined poverty status;households in south america with single mothers, children under 5, and a confirmed poverty status" -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,single mothers in southern eastern europe who have children under 5 and are living in poverty;single-parent households in southern eastern europe headed by a foreign-born mother with children under 5 who are living in poverty;single mothers in southern eastern europe with children under 5 who are living in poverty and are foreign-born;households in southern eastern europe headed by a single mother who is foreign-born and has children under 5 who are living in poverty -Count_Person_SingleMotherFamilyHousehold_WithChildrenUnder5_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,single-parent households in western asia headed by a foreign-born mother with children under 5 who are living in poverty -Count_Person_SomeOtherRaceAlone,number of people who identify as some other race alone;number of people who identify as a race other than the three major races;number of people who identify as a race other than the three largest races;number of people who identify as a race other than the three most common races -Count_Person_SomeOtherRaceAlone_ResidesInAdultCorrectionalFacilities,"the number of people who identify as some other race alone residing in adult correctional facilities;the number of people who identify as a race other than white, black, or hispanic residing in adult correctional facilities;number of people in adult correctional facilities who identify as some other race alone;number of people who identify as some other race alone in adult correctional facilities" -Count_Person_SomeOtherRaceAlone_ResidesInCollegeOrUniversityStudentHousing,number of students who identify as some other race and live alone in college or university student housing;number of college students who identify as some other race and live alone in student housing;number of people who identify as some other race and live alone in college or university student housing;number of students who identify as some other race and live in student housing by themselves -Count_Person_SomeOtherRaceAlone_ResidesInGroupQuarters,number of people who identify as some other race alone living in group quarters;number of people who identify as some other race alone living in other group quarters;number of people who identify as some other race alone residing in group quarters;number of people who identify as some other race alone staying in group quarters -Count_Person_SomeOtherRaceAlone_ResidesInInstitutionalizedGroupQuarters,how many people who identify as some other race alone live in institutionalized group quarters?;what is the number of people who identify as some other race alone who live in institutionalized group quarters?;what is the population of people who identify as some other race alone who live in institutionalized group quarters?;how many people who identify as some other race alone are living in institutionalized group quarters? -Count_Person_SomeOtherRaceAlone_ResidesInNoninstitutionalizedGroupQuarters,"number of people who identify as some other race alone living in non-institutional group quarters;number of people who identify as some other race alone living in group quarters that are not hospitals, prisons, or nursing homes;number of people who identify as some other race alone living in group quarters that are not owned or operated by the government;number of people who identify as some other race alone living in non-institutionalized group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInNursingFacilities,number of residents of nursing facilities who identify as some other race alone;number of people who identify as some other race alone living in nursing facilities;number of people who identify as some other race alone who live in nursing facilities;number of people who identify as some other race alone who are residents of nursing facilities -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,english is spoken moderately in african languages;african languages have a moderate level of english proficiency;english is a moderate second language in african languages;african languages are moderately english-speaking -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,the number of people who speak english moderately in the amhara and somali regions;the percentage of people who speak english moderately in the amhara and somali regions;the proportion of people who speak english moderately in the amhara and somali regions;the share of people who speak english moderately in the amhara and somali regions -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArabicSpokenAtHome,a significant portion of the arabic-speaking population is moderately fluent in english;a large number of arabic speakers are able to communicate in english at a moderate level;a significant portion of arabic speakers are moderately fluent in english;many arabic speakers have a moderate level of english proficiency -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArmenianSpokenAtHome,armenians who speak english poorly;armenians who don't speak english very well;the percentage of armenians who speak english less than very well;the number of armenians who do not speak english very well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_BengaliSpokenAtHome,bengali people speak english very well;bengalis are fluent in english;bengalis have a good command of english;bengalis speak english proficiently -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseSpokenAtHome,the number of chinese people who speak english a little bit;the percentage of chinese people who speak english at a basic level;the number of chinese people who are able to speak english in a simple way;the number of chinese people who speak english well is small -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,"a large number of people in this area speak english less than very well, and french creole is also spoken;english is not spoken very well by many people in this area, and french creole is also spoken;english is not the primary language of many people in this area, and french creole is also spoken;a lot of people in this area speak english less than very well, and french creole is also spoken here" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"people who speak english, french, and cajun patois to a moderate degree;people who are bilingual in english and french, and also speak cajun patois;people who speak a mix of english, french, and cajun patois;people who speak a dialect of english that is influenced by french and cajun patois" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GermanSpokenAtHome,"the percentage of the german population aged 50 years or more who are moderately fluent in english;the proportion of germans aged 50 and over who are moderately fluent in english;the number of germans aged 50 and over who are moderately fluent in english, expressed as a percentage of the total population;the percentage of the german population aged 50 years or more who can speak english moderately well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GreekSpokenAtHome,the percentage of the greek population that speaks english at a moderate level;the proportion of greeks who speak english at an intermediate level;the number of greeks who can speak english at a level that is sufficient for everyday communication;the percentage of greeks who speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GujaratiSpokenAtHome,the number of gujaratis who speak english moderately;the percentage of gujaratis who speak english moderately;the proportion of gujaratis who speak english moderately;the gujarati population who speak english at an intermediate level -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HaitianSpokenAtHome,what percentage of haitians speak english?;what is the english proficiency rate in haiti?;how many haitians are fluent in english?;what proportion of haitians can speak english? -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HebrewSpokenAtHome,the number of hebrew speakers who are fluent in english;the percentage of hebrew speakers who are fluent in english;the hebrew-speaking population that is fluent in english;the hebrew-speaking population that speaks english fluently -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HindiSpokenAtHome,the number of hindus below 5 years old who speak moderate english in india;the percentage of hindus below 5 years old who speak moderate english in india;the proportion of hindus below 5 years old who speak moderate english in india;the share of hindus below 5 years old who speak moderate english in india -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HmongSpokenAtHome,hmong people who speak english less than very well;hmong people who don't speak english very well;hmong people who do not speak english very well;hmong speakers who speak english less than very well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HungarianSpokenAtHome,many hungarians speak english moderately well;a sizeable percentage of hungarians can communicate in english at an intermediate level;hungarians speak english moderately well;hungarians have a moderate level of english proficiency -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"number of people who speak ilocano, samoan, hawaiian, or other austronesian languages and also speak english fluently;number of people who are fluent in both ilocano, samoan, hawaiian, or other austronesian languages and english;number of people who speak ilocano, samoan, hawaiian, or other austronesian languages as a first language and also speak english fluently;number of people who speak ilocano, samoan, hawaiian, or other austronesian languages as a second language and also speak english fluently" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ItalianSpokenAtHome,italians who have a moderate command of english;italians with a moderate level of english proficiency -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_JapaneseSpokenAtHome,japanese speakers of english;english-speaking japanese people;japanese who are fluent in english;japanese people who speak english well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KhmerSpokenAtHome,the number of khmer people who speak english moderately;the percentage of khmer people who speak english moderately;the proportion of khmer people who speak english moderately;the khmer population that speaks english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KoreanSpokenAtHome,the percentage of koreans who speak english moderately;the number of koreans who have a moderate level of english proficiency;the proportion of koreans who are intermediate english speakers;1 the percentage of koreans who speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,english proficiency rate;percentage of people who speak english moderately well;number of people who can speak english at an intermediate level;share of the population who are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,percentage of inmates in adult correctional facilities who speak english very well;proportion of inmates in adult correctional facilities who have a good command of english;extent to which inmates in adult correctional facilities speak english well;number of people in adult correctional facilities who are highly proficient in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,proportion of students in college or university student housing who are moderately fluent in english;percentage of students in college or university student housing who are moderately fluent in english;number of students in college or university student housing who are moderately fluent in english;share of students in college or university student housing who are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInGroupQuarters,percent of people in group quarters who are moderately fluent in english;percentage of people in group quarters who speak english moderately well;share of people in group quarters who speak english moderately well;proportion of people in group quarters who speak english moderately well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,1 english fluency rate in institutionalized group quarters;2 percentage of people in institutionalized group quarters who are moderately fluent in english;3 number of people in institutionalized group quarters who speak english moderately well;4 proportion of people in institutionalized group quarters who are able to communicate in english at a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,people who live in non-institutionalized group quarters speak english at a moderate level;english is spoken at a moderate level by people who live in non-institutionalized group quarters;people who live in non-institutionalized group quarters speak english at a level that is considered moderate;people who live in group quarters outside of institutions have a moderate command of the english language -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNursingFacilities,the percentage of nursing home residents who speak english moderately well;the proportion of nursing home residents who have a moderate level of english proficiency;the number of nursing home residents who speak english at a moderate level;the number of nursing home residents who have a moderate understanding of english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LaotianSpokenAtHome,what is the percentage of the laotian population that speaks english moderately?;what is the proportion of the laotian population that speaks english moderately?;what is the percentage of laotians who speak english at a moderate level?;percentage of laotians who speak english at a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"malayalam, kannada, and other dravidian languages are spoken moderately in the united states;malayalam, kannada, and other dravidian languages are spoken in a moderate way in the united states;malayalam, kannada, and other dravidian languages are spoken to a moderate degree in the united states;malayalam, kannada, and other dravidian languages are spoken at a moderate level in the united states" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,cambodians who speak english moderately well;mon khmer cambodian language speaking population with moderate english skills;population of cambodians who speak mon khmer and have moderate english skills;cambodian people who speak english moderately well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NavajoSpokenAtHome,not many navajo people are fluent in english;a small percentage of navajo people are fluent in english;not a large number of navajo people are fluent in english;not a lot of navajo people are very good at speaking english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,the percentage of nepali and marathi speakers who speak english moderately;the number of nepali and marathi speakers who speak english at a moderate level;the proportion of nepali and marathi speakers who have a moderate command of english;the share of nepali and marathi speakers who are proficient in english at a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,population speaking english and languages not otherwise specified;number of people speaking english and unspecified languages;number of people speaking english and languages not specified;number of people who speak english and unspecified languages -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,people from other asian countries have a moderate command of the english language;people who speak other asian languages are able to communicate in english at a moderate level;people who speak other asian languages can understand and be understood in english to a moderate degree;people who speak other asian languages have a moderate command of the english language -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,other indic languages spoken by people who speak english less than very well;people who speak english less than very well and other indic languages;indic languages spoken by people who do not speak english very well;people who speak other indic languages and do not speak english very well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndoEuropeanLanguagesSpokenAtHome,people who speak other indo-european languages and english are not doing well;the health of people who speak other indo-european languages and english is not good;the well-being of people who speak other indo-european languages and english is poor;people who speak other indo-european languages and english are not healthy -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,2 how many people in asia speak moderate english?;4 what is the number of people in asia who speak moderate english as a second language?;what is the proportion of the population of asia that speaks english moderately?;what percentage of the population in asia speaks english at a moderate level? -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,native languages of north america that are spoken by english speakers with a moderate level of fluency -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,what native american languages are spoken by english speakers with a moderate level of fluency?;native north american languages that are spoken by english speakers with a moderate level of fluency;which native american languages are spoken by people who have a moderate level of english proficiency? -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,what other pacific island languages are spoken moderately well by english speakers?;what pacific island languages are spoken by people who have a moderate level of english proficiency?;what pacific island languages are spoken by people who are not fluent in english but can communicate effectively?;what pacific island languages are spoken by people who have a basic understanding of english? -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,number of people who speak english and other slavic languages fluently;number of people who are fluent in english and other slavic languages;number of people who speak both english and other slavic languages fluently;number of people who are bilingual in english and other slavic languages -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,people who speak other west germanic languages and are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianSpokenAtHome,english-speaking persians;persians who are fluent in english;persians who speak english well;persians who are good at english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PolishSpokenAtHome,a lot of people in poland don't speak english very well;a significant portion of the polish population speaks english poorly;a large number of poles have a limited command of the english language;many poles struggle to communicate in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,the number of people who speak portuguese creole and english moderately;the percentage of people who speak portuguese creole and english moderately;the proportion of people who speak portuguese creole and english moderately;the number of people who speak portuguese creole and english to a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseSpokenAtHome,a significant portion of portuguese people are moderately fluent in english;a large number of portuguese people have a moderate level of english proficiency;a significant portion of the portuguese population is proficient in english;a good number of portuguese people are fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PunjabiSpokenAtHome,punjabi people speak english moderately;a moderate number of punjabis speak english;the majority of punjabis speak english moderately well;the english proficiency of punjabis is moderate -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_RussianSpokenAtHome,the percentage of russians who speak english moderately;the percentage of russians who can communicate in english at a basic level;the proportion of russians who have a moderate command of english;the number of russians who can speak english reasonably well -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,english speakers with a moderate proficiency in scandinavian languages;scandinavian speakers with a moderate proficiency in english;people who speak english and scandinavian languages at a moderate level;english as a second language in scandinavia -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,people who speak serbo-croatian and english at a moderate level;serbo-croatian speakers who speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,spanish creole speakers who speak english moderately;people who speak spanish creole and english at an intermediate level;spanish creole speakers with a moderate command of english;spanish creole speakers who are intermediate english speakers -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishSpokenAtHome,the number of spanish speakers in the united states who speak english moderately;the percentage of spanish speakers in the united states who speak english moderately;the proportion of spanish speakers in the united states who speak english moderately;the share of spanish speakers in the united states who speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,"people who speak swahili or other languages of central, eastern, and southern africa and are fluent in english;people who are fluent in english and speak swahili or another language of central, eastern, and southern africa;people who are bilingual in english and a language of central, eastern, and southern africa;people who speak swahili or other languages of central eastern and southern africa and are fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,"a lot of people in this area speak tagalog and filipino, but not very well;there are a lot of people in this area who speak tagalog and filipino, but they're not native speakers;tagalog and filipino are common languages in this area, but many people don't speak them very well;tagalog and filipino are spoken by many people in this area, but not everyone is fluent" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogSpokenAtHome,the number of tagalog speakers who speak english moderately;the percentage of tagalog speakers who speak english moderately;the proportion of tagalog speakers who speak english moderately;the tagalog-speaking population who speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TamilSpokenAtHome,percentage of tamils who speak english moderately;number of tamils who speak english moderately;proportion of tamils who speak english moderately;tamils who speak english moderately as a percentage of the total tamil population -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TeluguSpokenAtHome,the percentage of telugu speakers who speak english moderately;the number of telugu speakers who speak english at a moderate level;the proportion of telugu speakers who speak english at an intermediate level;the number of telugu speakers who have a moderate command of english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"people who speak thai, lao, or other tai kadai languages and are moderately fluent in english;people who are moderately fluent in english and speak thai, lao, or other tai kadai languages;people who are bilingual in thai, lao, or other tai kadai languages and english;people who are proficient in thai, lao, or other tai kadai languages and english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiSpokenAtHome,a large portion of the thai population is proficient in english;a significant number of thais are fluent in english;a significant portion of the thai population is proficient in english;a significant portion of the thai population is fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,the number of people who speak ukrainian or other slavic languages and english is unwell;the percentage of people who speak ukrainian or other slavic languages and english is unwell;the proportion of people who speak ukrainian or other slavic languages and english is unwell;the share of people who speak ukrainian or other slavic languages and english is unwell -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UrduSpokenAtHome,"population: speak english less than very well, urdu" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_VietnameseSpokenAtHome,the percentage of vietnamese people who are fluent in english;the proportion of vietnamese people who are english-speaking;the number of vietnamese people who are proficient in english;the number of vietnamese people who are conversant in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"someone who speaks yiddish, pennsylvania dutch, or another west germanic language may not speak english very well;someone who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty understanding english;a person who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty speaking english;someone who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty communicating in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishSpokenAtHome,1 number of people speaking english and yiddish;2 number of speakers of english and yiddish;3 population speaking both english and yiddish;4 number of people who speak english and yiddish -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"people who speak yoruba, twi, igbo, or other languages of western africa and who speak english less than very well;people who speak yoruba, twi, igbo, or other languages from western africa and don't speak english very well;people from western africa who speak languages other than english;people from west africa who speak languages other than english as their first language" -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthAfrica,the percentage of people born in africa who are aged 5 years or older and are moderately fluent in english;the proportion of people born in africa who are aged 5 years or older and can speak english moderately well;the number of people born in africa who are aged 5 years or older and have a moderate level of english proficiency;the percentage of people born in africa who are 5 years old or older and are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthAsia,english fluency among foreign-born asians aged 5 and older;the percentage of foreign-born asians aged 5 and older who are moderately fluent in english;the number of foreign-born asians aged 5 and older who are moderately fluent in english;the proportion of foreign-born asians aged 5 and older who are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthCaribbean,caribbean children under 5 who speak english moderately;children in the caribbean under 5 who speak english moderately;foreign-born children in the caribbean under 5 who speak english moderately;children in the caribbean who were born outside of the country and speak english moderately -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,people who were born in central america and have lived in the united states for at least 5 years and speak english at a moderate level;central american immigrants who have been living in the united states for at least 5 years and speak english at a moderate level;central american immigrants who speak english at an intermediate level;people who were born in central america but live in the us and speak english at a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthEasternAsia,population of people born outside of eastern asia who live in eastern asia;number of people born outside of eastern asia who live in eastern asia;foreigners living in eastern asia;number of people born outside of eastern asia who currently live in eastern asia -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthEurope,the percentage of people born outside of europe who are at least 5 years old and speak english moderately well;the proportion of the european population who were born in another country and speak english at a moderate level;the percentage of the european population who are foreign-born and speak english at a moderate level;the percentage of people living in europe who were born in another country and are at least 5 years old who speak english at a moderate level -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthLatinAmerica,"half of all 29-year-old females have positive w-2 earnings;the median percentage of 29-year-old females with positive w-2 earnings is 50%;50% of 29-year-old females have positive w-2 earnings, on average;the 50th percentile of 29-year-old females have positive w-2 earnings" -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthMexico,the percentage of people who were born in mexico and are 5 years old or older who speak english poorly or not at all;the percentage of foreign-born people from mexico who are 5 years old or older who speak english poorly or not at all;people who were born in mexico and are 5 years old or older who do not speak english well;people who were born in mexico and are 5 years old or older who have poor english skills -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthNorthamerica,"percentage of people in north america who speak english less than very well, have been living in north america for 5 years or more, and only speak english;percentage of people in north america who speak english less than very well, have been living in north america for 5 years or more, and do not speak any other language;percentage of people in north america who speak english less than very well, have been living in north america for 5 years or more, and are foreign-born;the number of people who speak english less than very well and have been in north america for 5 years or more and were born outside of north america" -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the percentage of people born in northern western europe who are aged 5 years or more and speak english less than very well;the share of people born in northern western europe who are aged 5 years or more and have a poor command of english;the percentage of people born in northern western europe who are aged 5 years or more and are not fluent in english;people who were born in northern western europe and are aged 5 years or older who speak english less than very well -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthOceania,english proficiency among foreign-born people aged 5 years or more in oceania is poor;a large proportion of foreign-born people aged 5 years or more in oceania do not speak english well;a large percentage of foreign-born people aged 5 years or more in oceania have difficulty speaking english;english proficiency among foreign-born people aged 5 or more in oceania is poor -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthSouthCentralAsia,the percentage of people born in south central asia who are 5 years old or older and speak english at a moderate level;1 the percentage of people who were born in south central asia and are 5 years old or older who speak english at a moderate level;2 the proportion of people who were born in south central asia and are 5 years old or older who have a moderate level of english proficiency;3 the number of people who were born in south central asia and are 5 years old or older who speak english at a level that is considered to be moderate -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthSouthEasternAsia,southeast asian foreign-born population aged 5 years or more who are fluent in english;southeast asian foreign-born population aged 5 years or more who speak english fluently;southeast asian foreign-born population aged 5 years or more who are english speakers;southeast asian foreign-born population aged 5 years or more who are english-fluent -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthSouthamerica,south american immigrants who have lived in the us for 5 years or more and speak english less than very well;south american people who have moved to the us and have lived here for 5 years or more and speak english less than very well;south american people who are not native english speakers and have lived in the us for 5 years or more;how many people who were born in south america and have been in the us for 5 years or more speak english less than very well? -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthSouthernEasternEurope,people who were born in southern eastern europe and speak english less than very well;people who were born in southern eastern europe and do not speak english very well;people who were born in southern eastern europe and have a limited command of english;people who were born in southern eastern europe and are not fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_ForeignBorn_PlaceOfBirthWesternAsia,the number of people born in western asia who are over 5 years old and are moderately fluent in english;the percentage of people born in western asia who are over the age of 5 and are moderately fluent in english;the percentage of people born in western asia who are over 5 years old and moderately fluent in english;the percentage of people born in western asia who are over 5 years old and are able to speak english at a level that is considered to be moderately fluent -Count_Person_SpeakEnglishNotAtAll,1 population that does not speak english;4 population that is not native english speakers;people who don't speak english;the non-english-speaking community -Count_Person_SpeakEnglishNotWell,people who don't speak english very well;people who are not fluent in english;people who do not speak english fluently;people who don't speak english well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,english speakers who are fluent in african languages;people who speak english fluently and also speak one or more african languages;those who are fluent in english and african languages;people who can speak english and african languages fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"a person who speaks english very well and is fluent in amharic, somali, or another afro-asiatic language;someone who is a native speaker of amharic, somali, or another afro-asiatic language and is also fluent in english;an individual who is proficient in both amharic, somali, or another afro-asiatic language and english;a person who is a polyglot and speaks amharic, somali, or another afro-asiatic language as well as english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArabicSpokenAtHome,the number of arabic speakers who can speak english fluently;the number of arabic speakers who are proficient in english;the number of arabic speakers who are able to speak english well;the percentage of arabic speakers who are able to communicate in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArmenianSpokenAtHome,many armenians speak english fluently;a large number of armenians are fluent in english;english is a common language spoken by armenians;english is widely spoken in armenia -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_BengaliSpokenAtHome,number of people who speak bengali and english fluently;number of people who are fluent in bengali and english;number of people who speak both bengali and english;number of people who are bilingual in bengali and english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"people who speak english very well, including those who speak mandarin or cantonese" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseSpokenAtHome,chinese people are fluent in english;chinese people speak english well;chinese people are good at english;chinese people have a good command of english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,english-fluent french creole speakers;french creole speakers who speak english fluently;french creole speakers who are bilingual in english and french creole;french creole speakers who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome,"cajuns in the united states who are also fluent in english;people who speak french, including cajuns, and who are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,the percentage of french people who speak english very well;the number of french people who are fluent in english;the proportion of french people who have a good command of english;the number of french people who can speak english well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GermanSpokenAtHome,the percentage of germans who are fluent in english;the number of germans who can speak english fluently;the proportion of germans who are english-speaking;the number of germans who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GreekSpokenAtHome,the percentage of greeks who are fluent in english;the number of greeks who can speak english fluently;the number of greeks who are proficient in english;the number of greeks who are able to communicate in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GujaratiSpokenAtHome,the percentage of gujaratis who are fluent in english;the number of gujaratis who can speak english fluently;the number of gujaratis who are proficient in english;the number of gujaratis who are conversant in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HaitianSpokenAtHome,"haitians who speak english very well;haitians speak english very well;many people in this area speak english very well, as well as haitian creole;this is a very diverse area, with people from all over the world as a result, you'll find that many people here speak english and haitian creole" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HebrewSpokenAtHome, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HindiSpokenAtHome,english-speaking hindus;hindus who are fluent in english;hindus who speak english fluently;hindus who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HmongSpokenAtHome,the percentage of hmong people who speak fluent english;the number of hmong people who speak english as their first language;the proportion of hmong people who are english-fluent;the hmong population's english proficiency rate -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HungarianSpokenAtHome,the percentage of hungarians who are fluent in english;the number of hungarians who can speak english fluently;the number of hungarians who are proficient in english;the proportion of hungarians who speak english fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"people who speak fluent english and are native to ilocano, samoan, hawaiian, or other austronesian languages;english speakers who are fluent in ilocano, samoan, hawaiian, or other austronesian languages;people who speak ilocano, samoan, hawaiian, or other austronesian languages and are fluent in english;speakers of ilocano, samoan, hawaiian, or other austronesian languages who are also fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ItalianSpokenAtHome,italians speak english well;italians are fluent in english;italians have a good command of english;italians are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_JapaneseSpokenAtHome,1 the percentage of japanese people who are fluent in english;2 the number of japanese people who can speak english fluently;3 the proportion of japanese people who are english-fluent;4 the number of japanese people who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KhmerSpokenAtHome,the percentage of khmer people who speak english fluently;the number of khmer people who are fluent in english;the proportion of khmer people who can speak english fluently;the percentage of khmer people who are able to communicate effectively in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KoreanSpokenAtHome,english-speaking koreans;koreans who are fluent in english;koreans who can speak english well;koreans who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,english-fluent population -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LaotianSpokenAtHome,laotian english speakers;laotians who speak english well;laotians with a good command of english;laotians who are fluent in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,speakers of other dravidian languages who are fluent in english;people who speak other dravidian languages and are also fluent in english;individuals who are fluent in english and speak other dravidian languages;those who are able to communicate in english and other dravidian languages -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,people from cambodia who speak english at an intermediate level;khmer speakers from cambodia who have a good command of english;cambodians who are fluent in english;cambodians who are able to communicate effectively in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NavajoSpokenAtHome,the percentage of navajo people who speak fluent english;the number of navajo people who speak english as their first language;the number of navajo people who are monolingual english speakers;the number of navajo people who are bilingual in english and navajo -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"what percentage of the population speaks moderate english in nepali, marathi, or other indic languages?;what proportion of people in nepali, marathi, or other indic languages speak moderate english?;what percentage of the population in nepali, marathi, or other indic languages speaks english at a moderate level?;what proportion of people in nepali, marathi, or other indic languages speak english at a level that is considered to be moderate?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,english-speaking asians;asians who are fluent in english;the asian population that speaks english fluently;the percentage of asians who speak english fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,people who speak indic languages and are fluent in english;indic language speakers who are english-fluent;english-fluent speakers of indic languages;indic language speakers who are proficient in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,how many people in asia speak english fluently?;what is the percentage of english speakers in asia? -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,people who speak english and other native languages of north america fluently;population who speak english very well and other native languages of north america -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,other native american speakers of english;native north americans who speak english well;native speakers of english from north america;native north americans who are fluent in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,the number of people who speak other pacific island languages and english very well;the percentage of people who speak other pacific island languages and english very well;the proportion of people who speak other pacific island languages and english very well;the share of people who speak other pacific island languages and english very well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,number of people who speak other slavic languages and english very well;the percentage of people who speak other slavic languages and english very well;the number of people who speak other slavic languages and english very well;the proportion of people who speak other slavic languages and english very well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,people who speak other west germanic languages and are also fluent in english;speakers of other west germanic languages who are also fluent in english;people who are fluent in english and also speak other west germanic languages;english speakers who are also fluent in other west germanic languages -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,the percentage of persian speakers who speak english fluently;the number of persian speakers who can speak english well;the percentage of persian speakers who have a good command of english;the number of persian speakers who can speak english fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianSpokenAtHome,the number of persian people who speak english fluently;the percentage of persian people who are fluent in english;the proportion of persian people who are english-fluent;the number of persian speakers who are also english speakers -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PolishSpokenAtHome,how many polish people speak english fluently?;what is the level of english proficiency in poland?;how well do polish people speak english?;what is the english language ability of poles? -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,"a lot of people in this area speak english very well, portuguese, or portuguese creole;english, portuguese, and portuguese creole are all widely spoken in this area;you'll be able to find people who speak english, portuguese, or portuguese creole in this area;if you speak english, portuguese, or portuguese creole, you'll be able to communicate with most people in this area" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseSpokenAtHome,how many portuguese people speak english fluently?;the number of portuguese people who are able to speak english fluently;the number of portuguese people who have a good command of english;number of portuguese speakers who can speak english fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PunjabiSpokenAtHome,punjabis who speak english fluently;english-speaking punjabis;punjabis who are fluent in english;punjabis who speak english well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_RussianSpokenAtHome,what percentage of russians speak english?;how many russians are fluent in english?;what is the level of english proficiency in russia?;how well do russians speak english? -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,people from scandinavia who speak english very well;scandinavians who are fluent in english;english speakers from scandinavia;scandinavians who speak english like native speakers -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,serbo-croatian speakers who are fluent in english;people who speak serbo-croatian and english fluently;serbo-croatian speakers who have a good command of english;people who are bilingual in serbo-croatian and english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,english fluency rate in spain;proportion of spanish people who are bilingual in english;share of spanish people who are proficient in english;english proficiency of the spanish population -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,the percentage of swahili speakers who are fluent in english;the number of swahili speakers who can speak english fluently;the proportion of swahili speakers who are english-fluent;the number of swahili speakers who speak english as a second language -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,tagalog speakers who are fluent in english;english-speaking filipinos;people who can speak tagalog and english fluently;filipinos who are fluent in english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogSpokenAtHome,what is the number of tagalog speakers who can speak english fluently? -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TamilSpokenAtHome,tamil speakers who are fluent in english;tamils who speak english very well;tamils who are highly proficient in english;tamils who are very good at english -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TeluguSpokenAtHome,the number of telugu people who speak english fluently;the percentage of telugu people who speak english fluently;the proportion of telugu people who speak english fluently;the share of telugu people who speak english fluently -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"thai and lao people who speak english very well also speak other tai kadai languages;people who speak thai, lao, or other tai kadai languages also speak english very well;english is a common language among thai, lao, and other tai kadai speakers;thai, lao, and other tai kadai speakers are able to communicate effectively in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiSpokenAtHome,thais speak english very well;thai people are good at english;english is widely spoken in thailand;english is a second language for many thais -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,ukrainians or other slavic people who speak english very well;people from ukraine or other slavic countries who are fluent in english;ukrainians or other slavic people who have a good command of english;ukrainians and other slavic people who speak english very well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UrduSpokenAtHome,english proficiency of urdu speakers;how well do urdu speakers speak english?;the level of english proficiency among urdu speakers;the percentage of urdu speakers who speak english well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_VietnameseSpokenAtHome,how many vietnamese people speak fluent english?;what percentage of vietnamese people speak fluent english?;what is the number of vietnamese people who speak fluent english?;what is the percentage of vietnamese people who are fluent in english? -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"number of people who speak english fluently as well as yiddish, pennsylvania dutch, or another west germanic language;number of people who speak fluent english, yiddish, pennsylvania dutch, or other west germanic languages;population of fluent english, yiddish, pennsylvania dutch, or other west germanic language speakers;number of people who speak english, yiddish, pennsylvania dutch, or other west germanic languages as their first language" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishSpokenAtHome,number of people who speak yiddish and english fluently;people who are bilingual in yiddish and english;yiddish-english speakers;yiddish-english bilinguals -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"what percentage of people in western africa who speak twi, igbo, or other languages are fluent in english;what proportion of the population in western africa who speak twi, igbo, or other languages are fluent in english;what percentage of people in western africa who speak twi, igbo, or other languages speak english fluently;what proportion of the population in western africa who speak twi, igbo, or other languages speak english fluently" -Count_Person_SpeakEnglishWell,number of people who speak english fluently;number of people who can speak english well;the number of people who speak english fluently;the number of people who have a good command of english -Count_Person_StateGovernmentOwnedEstablishment_Worker,the number of people aged 16 and above who are employed in state-owned establishments;the number of people aged 16 and above who are working in government-owned businesses;the number of people aged 16 and above who are employed in state-run enterprises;number of people aged 16 and over employed in state-owned establishments -Count_Person_TwoOrMoreRaces,multiracial population;number of people identifying as multiracial;number of people who identify as multiracial;number of people who identify as multiethnic -Count_Person_TwoOrMoreRaces_ResidesInAdultCorrectionalFacilities,how many multiracial people are in adult correctional facilities?;what is the number of multiracial people in adult correctional facilities?;what is the percentage of multiracial people in adult correctional facilities?;how many multiracial people are incarcerated in the united states? -Count_Person_TwoOrMoreRaces_ResidesInCollegeOrUniversityStudentHousing,multiracial students in college housing;number of multiracial college students living in dorms;multiracial college students in residence halls;number of multiracial college students living on campus -Count_Person_TwoOrMoreRaces_ResidesInGroupQuarters,number of multiracial people living in group quarters;number of people who identify as multiracial living in group quarters;the number of multiracial people living in group quarters;the number of people who identify as multiracial and are living in group quarters -Count_Person_TwoOrMoreRaces_ResidesInInstitutionalizedGroupQuarters,"people who identify as multiracial and live in group quarters;how many multiracial people live in group homes, prisons, and other institutions?;what is the number of multiracial people living in institutionalized group quarters?;what is the number of multiracial people living in group quarters, prisons, and other institutions as a percentage of the total multiracial population?" -Count_Person_TwoOrMoreRaces_ResidesInNoninstitutionalizedGroupQuarters,number of multiracial people living in non-institutional group quarters;number of people who identify as multiracial living in non-institutional group quarters;what is the number of multiracial people living in non-institutional group quarters?;what is the population of multiracial people living in non-institutional group quarters? -Count_Person_TwoOrMoreRaces_ResidesInNursingFacilities,multiracial people in nursing homes;number of multiracial residents in nursing homes;number of multiracial people living in nursing homes;multiracial people in long-term care facilities -Count_Person_USCitizenBornAbroadOfAmericanParents,number of american citizens born outside the united states to american parents;number of us citizens born overseas to american parents;number of us citizens born abroad to us citizens;number of us citizens born to american parents outside the us -Count_Person_USCitizenBornInPuertoRicoOrUSIslandAreas,the number of us citizens born in puerto rico;the population of puerto rico that is us citizens by birth;the number of people in puerto rico who are us citizens by birth;the number of people born in puerto rico who are us citizens -Count_Person_USCitizenBornInTheUnitedStates,number of people born in the united states who are us citizens;number of us citizens who were born in the united states;number of native-born us citizens;number of us citizens by birth -Count_Person_USCitizenBornInTheUnitedStates_NoHealthInsurance_Native,"native-born us citizen without health insurance;person born in the united states, a citizen of the united states, and without health insurance;native-born us citizen who does not have health insurance;native-born us citizen with no health insurance" -Count_Person_USCitizenByNaturalization,number of people who have become us citizens through naturalization;number of people who have been granted us citizenship through naturalization;number of people who have become us citizens by going through the naturalization process;how many people have become us citizens through naturalization? -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAfrica,foreign-born africans who have become us citizens through naturalization;africans who have been naturalized as us citizens;africans who have been granted us citizenship;us citizens who were born in africa and naturalized in the us -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAsia,the number of people born in asia who are now us citizens by naturalization;the number of naturalized us citizens from asia;the number of people who were born in asia and have become us citizens through the process of naturalization;the number of asian-born people who are now us citizens -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCaribbean,the number of people born in the caribbean who have become us citizens through naturalization;the number of caribbean immigrants who have become us citizens;the number of people who were born in the caribbean and now hold us citizenship;the number of people who have been naturalized as us citizens from the caribbean -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"number of us citizens in central america, except mexico, who naturalized;number of central american immigrants who became us citizens;number of central american immigrants who naturalized in the us;the number of people who were born in central america and have become us citizens through naturalization" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEasternAsia,the number of naturalized us citizens from eastern asia;the number of people from eastern asia who have become us citizens through naturalization;the number of eastern asians who have been granted us citizenship;the number of eastern asian immigrants who have become us citizens -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEurope,number of naturalized us citizens in europe;number of people who have become us citizens through naturalization in europe;the number of naturalized us citizens in europe;the number of people who were born in another country but have become us citizens and live in europe -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthLatinAmerica,naturalized us citizen from latin america;us citizen by naturalization from latin america;us citizen who naturalized in latin america;us citizen who became a citizen through naturalization in latin america -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthMexico,mexican immigrants who have become us citizens;foreign-born mexicans who have naturalized as us citizens;mexican nationals who have become us citizens;people from mexico who have become us citizens -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthamerica,the number of people born in north america who have become us citizens through naturalization;the number of people who were born in north america and have become us citizens through the process of naturalization;the number of people who were born in north america and have chosen to become us citizens;the number of people who have been granted us citizenship through naturalization after having been born in north america -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthernWesternEurope,naturalized us citizens from northern western europe;people from northern western europe who are us citizens by naturalization;people who were born in northern western europe and are now us citizens;people born in northern western europe who have become us citizens through the process of naturalization -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthOceania,the number of naturalized us citizens in oceania;the number of people who have been granted us citizenship after having been born in oceania;the number of people who have been naturalized as us citizens from oceania;the number of people who have become us citizens through the process of naturalization after having been born in oceania -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthCentralAsia,people born in south central asia who are us citizens by naturalization;south central asian immigrants who are us citizens by naturalization;us citizens by naturalization who were born in south central asia;us citizens who were born in south central asia and naturalized -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthEasternAsia,southeast asian naturalized us citizens;southeast asian immigrants who are now us citizens;us citizens from southeast asia who naturalized;southeast asian immigrants who became us citizens -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthamerica,number of us citizens by naturalization from south america;number of south american immigrants who have become us citizens;number of south american naturalized us citizens;number of south americans who have naturalized as us citizens -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthernEasternEurope,number of naturalized us citizens from southern eastern europe;number of southern eastern europeans who have become us citizens;number of people who were born in southern eastern europe and have become us citizens through naturalization;number of people who have been granted us citizenship through naturalization after having been born in southern eastern europe -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthWesternAsia,the number of people from western asia who have been granted us citizenship;the number of western asian people who have been granted us citizenship;the number of western asians who have been naturalized as us citizens;the number of western asian immigrants who have been granted us citizenship -Count_Person_USCitizenByNaturalization_NoHealthInsurance_ForeignBorn,"people who are us citizens by naturalization and do not have health insurance;people who are us citizens by naturalization and do not have health insurance and were born outside of the us;people who are us citizens by naturalization, do not have health insurance, and are immigrants" -Count_Person_USCitizenByNaturalization_WithHealthInsurance_ForeignBorn,"number of naturalized us citizens with health insurance;number of people who were born outside the us and have become us citizens through naturalization and have health insurance;number of people who were born outside the us, have become us citizens through naturalization, and have health insurance;us citizens by naturalization with health insurance" -Count_Person_Unemployed,unemployed people;the unemployed workforce;the unemployed population -Count_Person_Upto4Years_Female_Overweight_AsFractionOf_Count_Person_Upto4Years_Female,number of overweight female children under 4 years old divided by the total number of female children under 4 years old;number of female children under 4 years old who are overweight divided by the total number of female children under 4 years old -Count_Person_Upto4Years_Female_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Female,fraction of female children under 4 years old with severe wasting;female children under 4 years old with severe wasting as a fraction of the total number of female children under 4;female children under 4 years old with severe wasting as a percentage of the total number of female children under 4;proportion of female children under 4 years old with severe wasting -Count_Person_Upto4Years_Female_Wasting_AsFractionOf_Count_Person_Upto4Years_Female,"female children under 4 years old who are wasting as a fraction of the total number of female children under 4;the fraction of female children under 4 years old who are wasted;the number of girls under 4 who are wasting, divided by the total number of female children under 4;number of female children under 4 years old who are wasting per 100 female children under 4 years old" -Count_Person_Upto4Years_Male_Overweight_AsFractionOf_Count_Person_Upto4Years_Male,number of male children under 4 years old who are overweight divided by the total number of male children under 4 years old;proportion of male children under 4 years old who are overweight;male children under 4 years old who are overweight as a percentage of all male children under 4 years old;percentage of males under 4 years old who are overweight -Count_Person_Upto4Years_Male_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Male,the percentage of males under 4 years old with severe wasting;the proportion of males under 4 years old with severe wasting;the number of males under 4 years old with severe wasting divided by the total number of males under 4 years old;the fraction of males under 4 years old with severe wasting -Count_Person_Upto4Years_Male_Wasting_AsFractionOf_Count_Person_Upto4Years_Male,number of male children under 4 years old who are wasting per 100 male children under 4 years old;the number of males under 4 years old who are wasting divided by the total number of males under 4 years old -Count_Person_Upto4Years_Overweight_AsFractionOf_Count_Person_Upto4Years,fraction of children under 4 years old who are overweight;percentage of children under 4 years old who are overweight;proportion of children under 4 years old who are overweight;number of children under 4 years old who are overweight divided by the total number of children under 4 years old -Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,the prevalence of severe wasting syndrome in children under 4;what percentage of children under the age of 4 have severe cachexia (wasting syndrome)?;what is the rate of severe cachexia (wasting syndrome) in children under the age of 4?;what is the prevalence of severe cachexia (wasting syndrome) in children under the age of 4? -Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,what percentage of children under 4 have cachexia?;how many children under 4 have cachexia?;what's the percentage of children under 4 with cachexia?;what is the percentage of children under 4 with cachexia? -Count_Person_Urban,the number of people living in urban areas;the percentage of people living in urban areas;the proportion of people living in urban areas;the urbanization rate -Count_Person_Urban_Female,"female, city-dwelling;female, urban-dwelling;female, living in a city;women living in cities" -Count_Person_Urban_Male,male urban population;urban male population;population of males in urban areas;population of urban males -Count_Person_Veteran,ex-servicemen and women;people who have served in the military;veterans;veterans who are not currently serving in the military -Count_Person_VisionDifficulty,how many people have vision problems?;what is the number of people with vision impairment?;what is the prevalence of vision impairment?;how many people have difficulty seeing? -Count_Person_WhiteAlone,number of people who identify as white;number of people who identify as white alone;number of people who identify as white only;the number of people who identify as white alone -Count_Person_WhiteAloneNotHispanicOrLatino,number of white people who do not identify as hispanic;number of people who identify as white alone and are not hispanic -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInAdultCorrectionalFacilities,number of non-hispanic white people in adult correctional facilities;number of non-hispanic white people who identify as white alone in adult correctional facilities;number of white people who are not hispanic and identify as white alone in adult correctional facilities;number of non-hispanic white adults in correctional facilities -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,number of non-hispanic white students who identify as white alone living in college or university student housing;number of students who identify as white alone and are not hispanic living in college or university student housing;number of non-hispanic white students living in college or university dormitories -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInGroupQuarters,how many non-hispanic white people live in group quarters?;what is the number of non-hispanic white people who live in group quarters?;what is the population of non-hispanic white people living in group quarters?;how many non-hispanic white people reside in group quarters? -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,number of non-hispanic white people living in institutional settings;number of non-hispanic white people living in group settings;number of non-hispanic white people living in institutions or group quarters;the number of non-hispanic white people living in institutional group quarters -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNursingFacilities,number of white non-hispanics living in nursing homes;number of white non-hispanics in nursing homes;number of white non-hispanics residing in nursing facilities;number of white non-hispanics who identify as white alone and live in nursing homes -Count_Person_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,number of people who identify as white alone or in combination with one or more other races;number of people who identify as white and one or more other races;the number of people who identify as white alone or in combination with one or more other races;the number of people who identify as white only or as white in combination with one or more other races -Count_Person_WhiteAlone_ResidesInAdultCorrectionalFacilities,number of white people in adult correctional facilities;number of white inmates in adult correctional facilities;number of white people incarcerated in adult correctional facilities;number of white people serving time in adult correctional facilities -Count_Person_WhiteAlone_ResidesInCollegeOrUniversityStudentHousing,number of white students living in college or university student housing;number of white students living in college dorms;number of white students living in college housing;number of white students living on campus -Count_Person_WhiteAlone_ResidesInGroupQuarters,"number of white alone people living in group quarters;number of white alone people living in other group quarters;number of white people living in group quarters;number of white people living in group quarters, not in households" -Count_Person_WhiteAlone_ResidesInInstitutionalizedGroupQuarters,the number of white people who are institutionalized;number of people who identify as white alone residing in institutional group quarters;number of white people living in institutional group quarters;number of white people institutionalized -Count_Person_WhiteAlone_ResidesInNoninstitutionalizedGroupQuarters,the number of white people who identify as white alone and reside in non-institutional group quarters;the number of white people who identify as white alone and live in non-institutional group quarters;the number of white people who identify as white alone and are living in non-institutional group quarters;number of people who identify as white alone living in non-institutional group quarters -Count_Person_WhiteAlone_ResidesInNursingFacilities,number of white people living in nursing homes;number of white people in nursing facilities;number of white people who identify as white alone living in nursing homes;number of white people who identify as white alone in nursing facilities -Count_Person_Widowed,people who are widowed;the widowed;the population of people who are widowed;the population of people who are bereaved spouses -Count_Person_Widowed_DifferentHouseAbroad,number of widows aged 15 years or more living in a different house abroad;number of widows aged 15 years or more living outside their home country;number of widows aged 15 years or more living in a foreign country;number of widows aged 15 years or more living in a non-native country -Count_Person_Widowed_DifferentHouseInDifferentCountyDifferentState,widows aged 15 years or older living in different houses in different counties in different states;population of widows aged 15 years or older living in different houses in different counties in different states;number of widows aged 15 years or older living in different houses in different counties in different states;count of widows aged 15 years or older living in different houses in different counties in different states -Count_Person_Widowed_DifferentHouseInDifferentCountySameState,people who are widowed and aged 15 years or more who live in different houses in the same county in the same state;people who are widowed and aged 15 years or more who live in different households in the same county in the same state;people who are widowed and aged 15 years or more who live in different residences in the same county in the same state;people who are widowed and aged 15 years or more who live in different domiciles in the same county in the same state -Count_Person_Widowed_DifferentHouseInSameCounty,number of widowed people aged 15 and over living in different households in the same county;number of widowed people over 15 years old living in different households in the same county;number of widowed people over 15 years old living in separate houses in the same county;number of widowed people over 15 years old living in separate dwellings in the same county -Count_Person_Widowed_ForeignBorn_PlaceOfBirthAfrica,number of people born in africa who have been widowed for 15 years or more;number of foreign-born africans who have been widowed for 15 years or more;number of widows born in africa;number of foreign-born african widows -Count_Person_Widowed_ForeignBorn_PlaceOfBirthAsia,"the percentage of the foreign-born population in asia who have been widowed for more than 15 years;the proportion of the foreign-born population in asia who have been widowed for more than 15 years;the share of the foreign-born population in asia who have been widowed for more than 15 years;the number of foreign-born people in asia who have been widowed for more than 15 years, as a percentage of the total foreign-born population in asia" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthCaribbean,the number of foreign-born people aged 15 years or more who are widows in the caribbean;the number of widows in the caribbean who were born outside of the caribbean;the number of widows in the caribbean who are not native-born;the number of widows in the caribbean who are immigrants -Count_Person_Widowed_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"people who are 15 years or older, widowed, and foreign-born from central america except mexico;people who are 15 years or older, widowed, and have immigrated from central america except mexico;people who are 15 years or older, widowed, and were born in central america except mexico;people who are 15 years or older, widowed, and have moved to the us from central america except mexico" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthEasternAsia,"the number of widowed foreign-born people in eastern asia aged 15 years or more;the number of people who were born in another country and are now widowed and live in eastern asia, aged 15 years or more;the number of foreign-born people in eastern asia aged 15 years or more who have lost their spouse;the number of widowed people in eastern asia aged 15 years or more who were born in another country" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthEurope,european foreign-born people who have been widowed at least 15 years ago;european foreign-born people who are widowed and have been widowed for at least 15 years;european foreign-born people who are widowed and have been widowed for more than 15 years;european foreign-born people who are widowed and have been widowed for a long time -Count_Person_Widowed_ForeignBorn_PlaceOfBirthLatinAmerica,the number of latin american immigrants who are widowed and over the age of 15;the number of latin american immigrants who have lost their spouse and are over the age of 15;the number of latin american immigrants who are widowed and are at least 15 years old;the number of latin american immigrants who have lost their spouse and are at least 15 years old -Count_Person_Widowed_ForeignBorn_PlaceOfBirthMexico,widows from mexico who are 15 years old or older;widows from mexico who are at least 15 years old;widows from mexico who are aged 15 and above;widows from mexico who are 15 years old and up -Count_Person_Widowed_ForeignBorn_PlaceOfBirthNorthamerica,"1 the number of widowed people who were born outside of north america and are aged 15 years or more;2 the number of people who were born outside of north america, are widowed, and are aged 15 years or more;3 the population of widowed people who were born outside of north america and are aged 15 years or more;4 the number of widowed people in north america who were born outside of the country" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthNorthernWesternEurope,widows who were born in northern western europe and are 15 years of age or older;widows from northern western europe who are 15 years of age or older;widows in northern western europe who are 15 years of age or older;widows who were born in northern western europe and are at least 15 years old -Count_Person_Widowed_ForeignBorn_PlaceOfBirthOceania,the number of widowed foreign-born people above 15 years old in oceania;the proportion of foreign-born people above 15 years old in oceania who are widowed;the percentage of foreign-born people above 15 years old in oceania who are widowed;the number of widowed foreign-born people above 15 years old per 100 foreign-born people above 15 years old in oceania -Count_Person_Widowed_ForeignBorn_PlaceOfBirthSouthCentralAsia,"the number of people who were born in south central asia and are now widowed, and who are 15 years old or older;the number of people who were born in south central asia, are now widowed, and are at least 15 years old;the number of people who were born in south central asia, are now widowed, and are aged 15 or older;the number of people who were born in south central asia, are now widowed, and are aged 15 and above" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthSouthEasternAsia,number of widows in south-eastern asia aged 15 or older who were born abroad;number of widowed foreign-born people in south-eastern asia aged 15 or older;number of people in south-eastern asia aged 15 or older who were born abroad and are widowed;number of widows in south-eastern asia who were born abroad and are aged 15 or older -Count_Person_Widowed_ForeignBorn_PlaceOfBirthSouthamerica,"1 the number of people who were born in south america and are now widowed, aged 15 years or more;2 the population of south america who are foreign-born and widowed, aged 15 years or more;3 the number of foreign-born widowed people in south america, aged 15 years or more;4 the number of people in south america who are widowed and were born in another country, aged 15 years or more" -Count_Person_Widowed_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the number of widows aged 15 years or more who were born in southern eastern europe;the number of foreign-born widows aged 15 years or more in southern eastern europe;the number of widows aged 15 years or more in southern eastern europe who were born outside of southern eastern europe;the number of widows aged 15 years or more in southern eastern europe who are not citizens of southern eastern europe -Count_Person_Widowed_ForeignBorn_PlaceOfBirthWesternAsia,widows in western asia who were born in other countries;the percentage of widows in western asia who were born outside of the region;widows in western asia who are not citizens of the country they live in;women in western asia who are widowed and were not born in the country they live in -Count_Person_Widowed_ResidesInAdultCorrectionalFacilities,the number of adults in prison who are widowed and over the age of 15;the number of people in prison who are widowed and over the age of 15;the number of people in prison who are widowed;the number of people aged 15 years or more who are widowed and are in adult correctional facilities -Count_Person_Widowed_ResidesInCollegeOrUniversityStudentHousing,students who are widowed and aged 15 years or older living in college or university student housing;college or university student housing residents who are widowed and aged 15 years or older;widowed college or university student housing residents aged 15 years or older;widowed students aged 15 years or older living in college or university student housing -Count_Person_Widowed_ResidesInGroupQuarters,widows who are 15 years old or older living in group quarters;widows aged 15 years or older in group housing;widows 15 years of age or older in group living arrangements;widows 15 and older in group quarters -Count_Person_Widowed_ResidesInInstitutionalizedGroupQuarters,the number of widowed people aged 15 years or older living in group quarters;the number of people aged 15 or older who are widowed and living in group quarters;people who are widowed and 15 years or older living in group quarters;people aged 15 and older who are widowed and live in group quarters -Count_Person_Widowed_ResidesInNoninstitutionalizedGroupQuarters,the number of people who are widowed and aged 15 years or more who are not living in an institution;the number of people who are widowed and aged 15 years or more who are living in the community;the number of people who are widowed and aged 15 years or more who are not institutionalized;the number of people who are widowed and aged 15 years or more who are living in non-institutional group quarters -Count_Person_Widowed_ResidesInNursingFacilities,number of widowed people aged 15 or older in nursing homes;number of people aged 15 or older who are widowed and living in nursing homes;number of people aged 15 or older who are widowed and are residents of nursing homes;number of people aged 15 or older who are widowed and are cared for in nursing homes -Count_Person_WithDirectPurchaseHealthInsurance,direct health insurance purchasers;people who bought their own health insurance;people who bought their own health insurance policy;people who purchased health insurance directly from an insurance company -Count_Person_WithDirectPurchaseHealthInsuranceOnly,the number of people who bought their health insurance without going through an employer or government program -Count_Person_WithDisability,the number of people with disabilities;the percentage of people with disabilities;the prevalence of disabilities;how many people have disabilities -Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,the number of american indian or alaska native people with disabilities;the number of american indian or alaska native people who have disabilities;the number of american indian or alaska native people who are disabled;the number of american indian or alaska native people who live with disabilities -Count_Person_WithDisability_AsianAlone,how many asian people have disabilities?;what is the number of asian people with disabilities?;how many people with disabilities are asian?;what is the percentage of asian people with disabilities? -Count_Person_WithDisability_BlackOrAfricanAmericanAlone,how many black or african americans have disabilities?;what is the number of black or african americans with disabilities?;what is the percentage of black or african americans with disabilities?;how many black or african americans live with disabilities? -Count_Person_WithDisability_Female,female population with disabilities;number of women with disabilities;number of female persons with disabilities;female population with physical or mental disabilities -Count_Person_WithDisability_HispanicOrLatino,the number of hispanic or latino people with disabilities;how many hispanic or latino people have disabilities;the percentage of hispanic or latino people with disabilities;the proportion of hispanic or latino people with disabilities -Count_Person_WithDisability_Male,number of men with disabilities;number of disabled men;number of males with disabilities;number of men who have disabilities -Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,how many native hawaiian or other pacific islander people have disabilities?;what is the number of native hawaiian or other pacific islander people with disabilities?;what is the percentage of native hawaiian or other pacific islander people with disabilities?;how many native hawaiian or other pacific islander people are living with disabilities? -Count_Person_WithDisability_OneRace,number of people with disabilities in each race;how many people with disabilities are of a single race?;what is the number of people with disabilities of a single race?;what is the number of people of a single race who have disabilities? -Count_Person_WithDisability_ResidesInAdultCorrectionalFacilities,how many people with disabilities are living in adult correctional facilities?;what is the number of people with disabilities living in adult correctional facilities?;what is the population of people with disabilities living in adult correctional facilities?;how many people with disabilities are incarcerated in adult correctional facilities? -Count_Person_WithDisability_ResidesInCollegeOrUniversityStudentHousing,how many people with disabilities live in college or university student housing?;what is the number of people with disabilities living in college or university student housing?;what is the percentage of people with disabilities living in college or university student housing?;how many students with disabilities live in college or university student housing? -Count_Person_WithDisability_ResidesInGroupQuarters,number of people with disabilities living in group quarters;number of people with disabilities living in group homes;the number of people with disabilities living in group quarters;the number of people with disabilities living in group homes -Count_Person_WithDisability_ResidesInInstitutionalizedGroupQuarters,number of people with disabilities living in institutional settings;number of people with disabilities living in group care facilities -Count_Person_WithDisability_ResidesInNoninstitutionalizedGroupQuarters, -Count_Person_WithDisability_ResidesInNursingFacilities,how many people with disabilities live in nursing homes?;how many people with disabilities live in nursing facilities?;what is the number of people with disabilities living in nursing homes?;what is the number of people with disabilities living in nursing facilities? -Count_Person_WithDisability_SomeOtherRaceAlone,number of people with disabilities who identify as a race other than white;number of people with disabilities who are not of european descent;the number of people with disabilities who identify as a race other than white;the number of people with disabilities who are not of european descent -Count_Person_WithDisability_TwoOrMoreRaces,people with disabilities who identify as two or more races;people with disabilities who identify with more than one race;people with disabilities who identify with multiple races;people with disabilities of two or more races -Count_Person_WithDisability_WhiteAlone,how many white people have disabilities;the number of white people with disabilities;the percentage of white people with disabilities;the proportion of white people with disabilities -Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,number of non-hispanic or latino white people with disabilities;number of non-hispanic or latino white people who are disabled;number of white people with disabilities who are not hispanic or latino;number of people with disabilities who are white and not hispanic or latino -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,foreign-born africans aged 16 and over with earnings;people born in africa who are 16 years old or older and have earnings;africans who were not born in the united states and are 16 years old or older and have earnings;people who were born in africa and are 16 years old or older and have income -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthAsia,foreign-born asians aged 16 or older with earnings;asian immigrants aged 16 or older with earnings;people born in asia who are 16 or older and have earnings;people who were born in asia and are 16 or older and have income -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,the number of people born in the caribbean who are 16 years old or older and have earnings;the population of foreign-born caribbean people aged 16 years or older who have earnings;the number of foreign-born caribbean people aged 16 years or older who are earning money;the population of foreign-born caribbean people aged 16 or older with earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,people born in central america (excluding mexico) who are 16 years or older and have earnings;people who were born in central america (excluding mexico) and are 16 years or older and have income;central american immigrants aged 16 or older with earnings;foreign-born central americans aged 16 or older with earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,"number of people born in eastern asia who are 16 years or older and have earnings;number of people who were born in eastern asia, are at least 16 years old, and have earned money;number of people who were born in eastern asia, are at least 16 years old, and have received money for their work;number of foreign-born people from eastern asia aged 16 years or more with earnings" -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthEurope,people born outside of europe who are 16 years or older and have earnings;foreigners in europe who are 16 years or older and have earnings;people who were not born in europe but are 16 years or older and have earnings in europe;foreign-born residents of europe who are 16 years or older and have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,people born in latin america who are 16 years of age or older and have earnings;latin american-born people aged 16 or older with earnings;latin american immigrants aged 16 or older with earnings;people born in latin america who are 16 or older and have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthMexico,people who were born in mexico and are 16 years of age or older and have earnings;mexican-born people aged 16 or older with earnings;mexican-born people who are at least 16 years old and have an income;people who were born in mexico and are 16 years old or older and have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,foreign-born people in north america aged 16 years or more who have earnings;people born outside of north america who are 16 years or older and have earnings;people who were not born in north america but are now living there and are 16 years or older and have earnings;immigrants to north america who are 16 years or older and have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,people born outside of northern western europe who are 16 years old or older and have earnings;foreigners in northern western europe aged 16 years or older who have earnings;people who were not born in northern western europe but live there and are 16 years old or older and have earnings;immigrants in northern western europe aged 16 years or older who have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthOceania,people born outside of oceania who are 16 years or older and have earnings;people who were not born in oceania but live there and are 16 years or older and have earnings;people who are foreign-born and live in oceania and are 16 years or older and have earnings;people who are not citizens of oceania but live there and are 16 years or older and have earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,people born in south central asia who are 16 years old or older and have earnings;people who were born in south central asia and are 16 years old or older and make money;people who were born in south central asia and are 16 years old or older and have an income;south central asian immigrants over 16 with earnings -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,"the population of southeast asian immigrants in the united states, aged 16 years or more;the number of southeast asian-born people living in the united states, aged 16 years or more;the number of southeast asian-born immigrants living in the united states, aged 16 years or more;the southeast asian-born population in the united states, aged 16 years or more" -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,south american immigrants aged 64 or younger with earnings;foreign-born south americans aged 64 or younger with earnings;south american immigrants with earnings who are 64 or younger;foreign-born south americans with earnings who are 64 or younger -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,people born in southern eastern europe who are 16 years of age or older and have earnings;foreign-born people from southern eastern europe who are 16 years of age or older and have income;people who were born in southern eastern europe and are 16 years of age or older and have a job;people who were born in southern eastern europe and are 16 years of age or older and make money -Count_Person_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,people born in western asia who are 16 years old or older and have earnings;people who were born in western asia and are 16 years old or older and make money;people who were born in western asia and are 16 years old or older and have an income;people born in western asia who are 16 years or older and have earnings -Count_Person_WithEarnings_FullTimeYearRoundWorker,"number of people who work full-time, year-round and are aged 16 or older with earnings;number of people who work full-time, year-round and are 16 years or older and have earnings;number of people who work full-time, year-round and are 16 years or older and are paid;number of people who work full-time, year-round and are 16 years or older and are earning money" -Count_Person_WithEmployerBasedHealthInsurance,how many people have health insurance through their employer?;what is the percentage of people with health insurance through their employer?;what is the number of people who get health insurance through their employer?;how many people are covered by employer-based health insurance? -Count_Person_WithEmployerBasedHealthInsuranceOnly,the number of people who only have employer-based health insurance;the number of people who have only employer-based health insurance;number of people who have only employer-based health insurance;number of people with employer-based health insurance as their only source of health insurance -Count_Person_WithFoodStampsInThePast12Months_ResidesInAdultCorrectionalFacilities,number of people who received food stamps in the past 12 months and lived in adult correctional facilities;number of people who received food stamps and lived in adult correctional facilities in the past 12 months;number of people who received food stamps and were incarcerated in adult correctional facilities in the past 12 months;number of people who received food stamps and were in adult correctional facilities in the past 12 months -Count_Person_WithFoodStampsInThePast12Months_ResidesInCollegeOrUniversityStudentHousing,how many people received food stamps in the past 12 months and lived in college or university student housing?;how many people who received food stamps in the past 12 months also lived in college or university student housing?;what is the number of people who received food stamps in the past 12 months and lived in college or university student housing?;what is the percentage of people who received food stamps in the past 12 months who also lived in college or university student housing? -Count_Person_WithFoodStampsInThePast12Months_ResidesInGroupQuarters,number of people who received snap benefits in the past year and lived in group quarters;the number of people who received food stamps in the past 12 months and lived in group quarters;the number of people who received snap benefits in the past 12 months and lived in group quarters;the number of people who received supplemental nutrition assistance program benefits in the past 12 months and lived in group quarters -Count_Person_WithFoodStampsInThePast12Months_ResidesInInstitutionalizedGroupQuarters,how many people received food stamps in the past 12 months and lived in institutionalized group quarters?;how many people received food stamps and lived in institutionalized group quarters in the past 12 months?;how many people lived in institutionalized group quarters and received food stamps in the past 12 months?;how many people received food stamps in the past 12 months while living in institutionalized group quarters? -Count_Person_WithFoodStampsInThePast12Months_ResidesInNoninstitutionalizedGroupQuarters,"how many people received food stamps in the last year and lived in group quarters that are not hospitals, nursing homes, or prisons;number of people who received food stamps in the past 12 months and lived in group quarters that are not institutions;number of people who received food stamps in the past 12 months and lived in group quarters that are not hospitals, nursing homes, or other types of institutions;number of people who received food stamps in the past 12 months and lived in group quarters that are not hospitals, nursing homes, or other institutions" -Count_Person_WithFoodStampsInThePast12Months_ResidesInNursingFacilities,how many people received food stamps in the past 12 months and lived in nursing facilities?;how many people who received food stamps in the past 12 months also lived in nursing facilities?;what is the number of people who received food stamps in the past 12 months and lived in nursing facilities?;what is the number of people who lived in nursing facilities and received food stamps in the past 12 months? -Count_Person_WithHealthInsurance,how many people have health insurance?;what is the number of people with health insurance?;how many people are covered by health insurance?;what is the percentage of people with health insurance? -Count_Person_WithHealthInsurance_1.00OrLessRatioToPovertyLine,"sure here are 5 different ways to say ""population: with health insurance, 1 ratio to poverty line or less"":;population with health insurance at or below 1:1 poverty ratio" -Count_Person_WithHealthInsurance_1.38OrLessRatioToPovertyLine,the proportion of people with health insurance who live below 14 times the poverty line;the percentage of people with health insurance who live below 14 times the poverty line;the share of people with health insurance who live below 14 times the poverty line;the number of people with health insurance who live at or below 14 times the poverty line -Count_Person_WithHealthInsurance_1.38To1.99RatioToPovertyLine, -Count_Person_WithHealthInsurance_1.38To3.99RatioToPovertyLine, -Count_Person_WithHealthInsurance_2.00To3.99RatioToPovertyLine,"the percentage of the population with health insurance who live 2-4 times below the poverty line;the number of people with health insurance who live 2-4 times below the poverty line;the percentage of people with health insurance who live 2-4 times below the poverty line, expressed as a decimal;2 out of every 4 people with health insurance live below the poverty line" -Count_Person_WithHealthInsurance_4.00OrMoreRatioToPovertyLine,the percentage of people with health insurance who live at 4 times the poverty line or more;the proportion of people with health insurance who have a household income of 4 times the poverty line or more;the number of people with health insurance who have a household income that is 4 times the poverty line or more;the share of people with health insurance who have a household income that is 4 times the poverty line or more -Count_Person_WithHealthInsurance_AmericanIndianOrAlaskaNativeAlone,american indian or alaska natives with health insurance;american indian or alaska natives who have health insurance;the number of american indian or alaska natives with health insurance;the percentage of american indian or alaska natives with health insurance -Count_Person_WithHealthInsurance_AsianAlone,the population of asian americans with health insurance;the number of asian americans with health insurance;the percentage of asian americans with health insurance;the proportion of asian americans with health insurance -Count_Person_WithHealthInsurance_BlackOrAfricanAmericanAlone,black or african american people with health insurance;the number of black or african americans with health insurance;the percentage of black or african americans with health insurance;the proportion of black or african americans with health insurance -Count_Person_WithHealthInsurance_FamilyHousehold,number of family households with health insurance coverage -Count_Person_WithHealthInsurance_ForeignBorn,population of foreign-born people with health insurance;number of foreign-born people with health insurance;percentage of foreign-born people with health insurance;share of foreign-born people with health insurance -Count_Person_WithHealthInsurance_HispanicOrLatino,hispanic or latino population with health insurance;number of hispanics or latinos with health insurance;percentage of hispanics or latinos with health insurance;proportion of hispanics or latinos with health insurance -Count_Person_WithHealthInsurance_MarriedCoupleFamilyHousehold,married couples with health insurance;population of married couples with health insurance;households with married couples and health insurance;households with married couples who have health insurance -Count_Person_WithHealthInsurance_Native,population of native americans with health insurance;number of native americans with health insurance;percentage of native americans with health insurance;proportion of native americans with health insurance -Count_Person_WithHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"population: with health insurance, native hawaiian or other pacific islander alone;the percentage of native hawaiian or other pacific islanders with health insurance;the number of native hawaiian or other pacific islanders with health insurance;the proportion of native hawaiian or other pacific islanders with health insurance" -Count_Person_WithHealthInsurance_NoDisability, -Count_Person_WithHealthInsurance_NonfamilyHouseholdAndOtherLivingArrangements,number of people with health insurance who live in nonfamily households or other living arrangements;number of people with health insurance living in non-family households and other living arrangements;number of people with health insurance who live in nonfamily households and other living arrangements;number of people who have health insurance and live in nontraditional living arrangements -Count_Person_WithHealthInsurance_OtherFamilyHousehold,people with health insurance in other family households;other family households with health insurance;households with health insurance that are not nuclear families;people in other family households who have health insurance -Count_Person_WithHealthInsurance_PovertyStatusDetermined,how many people have health insurance and are in poverty?;what is the number of people with health insurance who are also in poverty?;what percentage of the population has health insurance and is also in poverty?;population with health insurance and poverty status determined -Count_Person_WithHealthInsurance_ResidesInHousehold,non-institutionalized civilian population with health insurance;civilian population with health insurance who are not institutionalized;civilian population with health insurance who are not living in institutions;civilian population with health insurance who are living in the community -Count_Person_WithHealthInsurance_SingleFatherFamilyHousehold,population of single father households with health insurance;number of single father households with health insurance;percentage of single father households with health insurance;share of single father households with health insurance -Count_Person_WithHealthInsurance_SingleMotherFamilyHousehold,household of a single mother with health insurance;single mother household with health insurance;household with health insurance headed by a single mother;household with a single mother who has health insurance -Count_Person_WithHealthInsurance_SomeOtherRaceAlone,"population of people with health insurance who identify as some other race alone;population of people who identify as some other race alone and have health insurance;population of people with health insurance who are not white, black, or asian;population of people who are not white, black, or asian and have health insurance" -Count_Person_WithHealthInsurance_TwoOrMoreRaces,number of people with health insurance who identify as two or more races;number of people with health insurance who identify with more than one race;number of people with health insurance who identify with two or more racial groups;population of people with health insurance who identify as two or more races -Count_Person_WithHealthInsurance_WhiteAlone,white people with health insurance;the number of white people with health insurance;the percentage of white people with health insurance;the proportion of white people with health insurance -Count_Person_WithHealthInsurance_WhiteAloneNotHispanicOrLatino,white people who are not hispanic or latino and have health insurance;the number of white people who are not hispanic or latino and have health insurance;the percentage of white people who are not hispanic or latino and have health insurance;the proportion of white people who are not hispanic or latino and have health insurance -Count_Person_WithHealthInsurance_WithDisability,percentage of people with disabilities who have health insurance;proportion of people with disabilities who have health insurance;share of people with disabilities who have health insurance;prevalence of health insurance among people with disabilities -Count_Person_WithMedicaidOrMeansTestedPublicCoverage,the number of people with medicaid or means-tested public coverage;the number of people covered by medicaid or means-tested public programs;the number of people enrolled in medicaid or means-tested public programs;the number of people receiving medicaid or means-tested public benefits -Count_Person_WithMedicaidOrMeansTestedPublicCoverageOnly,number of people with only medicaid or means-tested public coverage;number of people with medicaid or means-tested public coverage only;number of people covered by medicaid or means-tested public coverage only;number of people with medicaid or means-tested public coverage as their only source of health insurance -Count_Person_WithMedicareCoverage,how many people have medicare coverage?;what is the number of people with medicare coverage?;what is the percentage of people with medicare coverage?;how many people are covered by medicare? -Count_Person_WithMedicareCoverageOnly,number of people with medicare as their only health insurance;number of people who only have medicare;number of people who are covered by medicare but not by any other health insurance;number of people who have medicare and no other health insurance -Count_Person_WithOwnChildrenUnder18,number of people with children under 18;number of people who have children under 18;number of people who are parents of children under 18;number of people who are raising children under 18 -Count_Person_WithOwnChildrenUnder18_Female,female population with children under 18;number of females with children under 18;percentage of females with children under 18;female population with dependent children -Count_Person_WithOwnChildrenUnder18_Female_FamilyHousehold_DivorcedInThePast12Months_ResidesInHousehold,number of divorced families with female children under 18 in the past 12 months;number of divorced families with female children under 18 in the past year;number of divorced families with daughters under 18 in the past year;number of divorced families with girl children under 18 in the past year -Count_Person_WithOwnChildrenUnder18_Female_FamilyHousehold_MarriedInThePast12Months_ResidesInHousehold,households with girls under 18 who got married in the last year;households with married girls under 18;households with underage married girls;households with girls under 18 who were married in the past 12 months -Count_Person_WithOwnChildrenUnder18_Male,male population with children under 18;male population with dependent children;male population with minor children;male population with children at home -Count_Person_WithOwnChildrenUnder18_Male_FamilyHousehold_DivorcedInThePast12Months_ResidesInHousehold,families with children under 18 who have divorced in the past 12 months;households with children under 18 who have divorced in the past 12 months;divorced families with children under 18;divorced households with children under 18 -Count_Person_WithOwnChildrenUnder18_Male_FamilyHousehold_MarriedInThePast12Months_ResidesInHousehold,married men with children under 18;families with married men and children under 18;families with married fathers and children under 18;households with a married male head of household and children under 18 -Count_Person_WithPrivateHealthInsurance,how many people have private health insurance?;what is the number of people with private health insurance?;how many people in the us have private health insurance?;what is the number of people in the us with private health insurance? -Count_Person_WithPrivateHealthInsuranceOnly,"the number of people with private health insurance only;the number of people with private health insurance, and no other type of health insurance;the number of people who are only covered by private health insurance;the number of people who have private health insurance as their only source of health insurance" -Count_Person_WithPrivateHealthInsurance_1.38OrLessRatioToPovertyLine,the percentage of people with private health insurance who live at or below 14 times the poverty line;the proportion of people with private health insurance who live at or below 14 times the poverty line;the number of people with private health insurance who are at or below 140% of the federal poverty line;the number of people with private health insurance who live below 14 times the poverty line -Count_Person_WithPrivateHealthInsurance_1.38OrMoreRatioToPovertyLine,the number of people with private health insurance who have a ratio of income to poverty line of 14 or more;the number of people with private health insurance who have an income that is 14 times or more the poverty line;the number of people with private health insurance who have an income that is 140% or more the poverty line;the proportion of people with private health insurance who have an income that is 14 times or more the poverty line -Count_Person_WithPublicHealthInsurance,the number of people with public health insurance;how many people have public health insurance;the percentage of people with public health insurance;the number of people covered by public health insurance -Count_Person_WithPublicHealthInsuranceOnly,the number of people with only public health insurance;the number of people who only have public health insurance;the number of people who have public health insurance as their only form of health insurance;how many people have only public health insurance -Count_Person_WithPublicHealthInsurance_1.38OrLessRatioToPovertyLine,the percentage of people with public health insurance who live at or below 14 times the poverty line;the proportion of people with public health insurance who have a household income of 14 times or less than the poverty line;the number of people with public health insurance who are at or below the poverty line;the number of people with public health insurance who are below the poverty line -Count_Person_WithPublicHealthInsurance_1.38OrMoreRatioToPovertyLine,the proportion of people with public health insurance who have an income of 14 times the poverty line or more;the number of people with public health insurance who have an income that is at least 14 times the poverty line;the percentage of people with public health insurance who have an income that is 14 times the poverty line or higher;the number of people with public health insurance who are at or above 14 times the poverty line -Count_Person_WithTricareMilitaryHealthCoverage,how many people have tricare military health coverage?;how many people are covered by tricare?;what is the number of people with tricare?;how many people are enrolled in tricare? -Count_Person_WithTricareMilitaryHealthCoverageOnly,how many people have tricare as their only health insurance?;how many people rely on tricare for their health care?;how many people have only tricare military health coverage;how many people have tricare as their only health insurance -Count_Person_WithVAHealthCare,how many people have va health care?;how many people are covered by va health care?;how many people are enrolled in va health care?;how many people use va health care? -Count_Person_WithVAHealthCareOnly,how many people use va health care exclusively?;how many people only have va health insurance?;how many people use va healthcare exclusively?;what is the number of people who only have va healthcare? -Count_Person_WorkedFullTime,the number of men who worked full-time;the number of male full-time workers;the number of men who worked full-time jobs;the number of men who were employed full-time -Count_Person_Workers,the working population -Count_Person_Workers_Female, -Count_Person_Workers_Male,male worker population;male working population;male working-age population;the working male population -Count_Person_Workers_Rural,people who work in rural areas;rural workers;people who live and work in the countryside;people who live and work in rural communities -Count_Person_Workers_Rural_Female, -Count_Person_Workers_Rural_Male,the population of men who live in rural areas and work -Count_Person_Workers_Urban,people who work in cities;urbanites who work;city workers;people who have jobs in urban areas -Count_Person_Workers_Urban_Female,women who live in cities and work;a female who lives and works in an urban area -Count_Person_Workers_Urban_Male, -Count_Person_Years25Onwards_EducationalAttainment_5ThAnd6ThGrade,the fifth and sixth grade population -Count_Person_Years25Onwards_EducationalAttainment_7ThAnd8ThGrade,seventh- and eighth-graders;seventh graders and eighth graders;7th and 8th grade students;seventh and eighth graders -Count_Person_Years25Onwards_EducationalAttainment_NurseryTo4ThGrade,number of kids in preschool through fourth grade;number of children in kindergarten through fourth grade -Count_Person_YearsUpto6_Rural,number of people under the age of 6 in rural areas;number of people under the age of 6 living in rural areas;number of rural residents under the age of 6;number of people aged 6 years or less living in rural areas -Count_Person_YearsUpto6_Rural_Female,number of girls under 6 in rural areas;number of female children under 6 in rural areas;female population under 6 in rural areas;number of rural girls under 6 -Count_Person_YearsUpto6_Rural_Male,1 number of boys under 6 in rural areas;2 rural male population under 6;4 male population under 6 in rural areas (rural);5 population of boys under 6 in rural areas -Count_Person_YearsUpto6_Urban,number of people under the age of 6 living in cities;number of urban residents under 6 years old;number of people living in urban areas who are under 6 years old;number of people under 6 years old in urban areas -Count_Person_YearsUpto6_Urban_Female,the number of girls living in cities who are younger than 6 years old;the population of urban females under the age of 6;the number of girls living in cities who are not yet 6 years old;girls under 6 living in cities -Count_Person_YearsUpto6_Urban_Male,6-year-old boys in cities;urban 6-year-old males;boys aged 6 in urban areas;6-year-old males living in cities -Count_PrescribedFireEvent,number of prescribed fire events;number of prescribed burns -Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,mobile phone penetration rate;mobile phone subscription rate;mobile phone subscription per capita;mobile phone subscriptions per 100 people -Count_RipCurrentEvent,number of rip current events;number of times a rip current occurred;number of rip currents;frequency of rip currents -Count_SolarInstallation,number of solar installations;count of solar installations;total solar installations;number of solar panels installed -Count_SolarInstallation_Commercial,solar panel installation for businesses;commercial solar panel installation;commercial solar power installation;solar power installation for businesses -Count_SolarInstallation_Residential,solar panel installation for homes;putting solar panels on a house;getting solar panels for your home;installing solar panels on a residential property -Count_SolarInstallation_UtilityScale,large-scale solar power plants -Count_SolarThermalInstallation_NonUtility,non-utility solar thermal systems;solar thermal systems for non-utility purposes;solar thermal systems for non-commercial purposes;solar thermal systems for residential use -Count_StormSurgeTideEvent,number of storm surge tide events;frequency of storm surge tide events;how often do storm surge tide events occur?;how many storm surge tide events have there been? -Count_StrongWindEvent,number of strong wind events;frequency of strong wind events;how often do strong winds occur?;how many strong wind events have there been? -Count_Student_English_ToBeDetermined_SchoolGrade13_EnglishLanguageArts,"english class, 13th grade, number of students: tbd;english class, 13th grade, student count: tbd;the number of students taking english in grade 13 english language arts is unknown;there are an unknown number of students taking english in grade 13 english language arts" -Count_Student_English_ToBeDetermined_SchoolGrade13_Mathematics,"number of students in english, to be determined, school grade 13, mathematics;how many students are in english, to be determined, school grade 13, mathematics;how many students are enrolled in english, to be determined, school grade 13, mathematics;what is the student body size for english, to be determined, school grade 13, mathematics" -Count_ThunderstormWindEvent,number of thunderstorm wind events;thunderstorm wind event count;thunderstorm wind event tally;thunderstorm wind event total -Count_TornadoEvent,number of tornadoes;tornado count;number of tornado events;tornado occurrences -Count_UnemploymentInsuranceClaim_ShortTimeCompensation,unemployment insurance for reduced hours;short-time work allowance -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim,short-term compensation for continued unemployment insurance claims;short-term compensation for continued unemployment benefits;short-term compensation for continued unemployment payments -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim_ScaledForPartTimeUnemploymentBenefits, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim,1 claims for unemployment benefits;4 filing for unemployment;5 making a claim for unemployment;claims for unemployment benefits -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim_ScaledForPartTimeUnemploymentBenefits,initial claims for short-time compensation;initial claims for partial unemployment benefits;initial claims for temporary layoffs;initial claims for reduced work hours -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ScaledForPartTimeUnemploymentBenefits, -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,number of unemployment claims filed in the states;number of people who filed for unemployment in the states;number of people who filed for unemployment benefits in the states;number of people who filed for state unemployment benefits -Count_UnemploymentInsuranceClaim_StateUnemploymentInsuranceOrShortTimeCompensation_ContinuedClaim_MovingAverage1WeekWindow,"the number of state unemployment insurance or short-time compensation continued claims, moving average over 1 week;the average number of state unemployment insurance or short-time compensation continued claims over the past 7 days;the number of people who have filed for state unemployment insurance or short-time compensation in the past 7 days, on average;the number of people who are still receiving state unemployment insurance or short-time compensation, on average, over the past 7 days" -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_ContinuedClaim,state-run unemployment benefits;unemployment benefits provided by the state;unemployment insurance from the state;state-level unemployment insurance -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_InitialClaimExcludingIntrastateTransitional,"number of state unemployment insurance claims, initial claims excluding intrastate transitional;state unemployment insurance initial claims excluding intrastate transitional;number of initial claims for state unemployment insurance excluding intrastate transitional;initial claims for state unemployment insurance excluding intrastate transitional" -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance,federal unemployment benefits;unemployment insurance for federal workers;compensation for federal employees who are out of work;benefits for federal employees who have lost their jobs -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_ContinuedClaim,continued claims for federal unemployment compensation;federal unemployment compensation continued claims;claims for continued federal unemployment compensation;federal unemployment compensation claims continued -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_InitialClaim,claims for unemployment compensation for federal employees;federal employee unemployment compensation claims;federal employee unemployment claims;claiming unemployment as a federal employee -Count_UnemploymentInsuranceClaim_UCXOnly,number of unemployment claims for ex-servicemembers;number of unemployment insurance claims for unemployment compensation for ex-servicemembers;number of unemployment compensation claims for ex-servicemembers;count of unemployment insurance claims for ex-servicemembers -Count_UnemploymentInsuranceClaim_UCXOnly_ContinuedClaim,unemployment assistance for ex-service members;unemployment benefits for ex-military personnel;unemployment assistance for former service members;claims for unemployment insurance by ex-service members -Count_UnemploymentInsuranceClaim_UCXOnly_InitialClaim,unemployment assistance for ex-servicemembers who are making their first claim;unemployment assistance for ex-servicemembers who are filing their first claim;unemployment benefits for former service members who are filing a claim for the first time;unemployment help for ex-servicemembers who are making their first application -Count_Variable_AdministrativeArea1,the headcount of administrative area 1;the tally of administrative area 1;headcount in administrative area 1;what is the headcount of administrative area 1? -Count_Variable_AdministrativeArea1_ClimateAndEnvironment,how many climate and environment variables are there in administrative area 1?;what is the number of climate and environment variables in administrative area 1?;what is the count of climate and environment variables in administrative area 1?;what is the total number of climate and environment variables in administrative area 1? -Count_Variable_AdministrativeArea1_Demographics,population of administrative area 1;how many people live in administrative area 1;census of administrative area 1;the population of administrative area 1 -Count_Variable_AdministrativeArea1_Economy,number of economic variables in administrative area 1;number of economic statistics in administrative area 1;number of economic indicators in administrative area 1;number of economic measures in administrative area 1 -Count_Variable_AdministrativeArea1_HealthAndEducation,the number of people in administrative area 1 who are in the health and education sector;the number of people in administrative area 1 who work in the health and education sector;the number of people in administrative area 1 who are employed in the health and education sector;the number of people in administrative area 1 who have jobs in the health and education sector -Count_Variable_AdministrativeArea2,headcount of administrative area 2;how many people are there in administrative area 2;headcount in administrative area 2 -Count_Variable_AdministrativeArea2_ClimateAndEnvironment,how many climate and environment variables are there in administrative area 2?;what is the number of climate and environment variables in administrative area 2?;what is the count of climate and environment variables in administrative area 2?;how many climate and environment variables are counted in administrative area 2? -Count_Variable_AdministrativeArea2_Demographics,the population of administrative area 2;the census of administrative area 2;how many people live in administrative area 2;population of administrative area 2 -Count_Variable_AdministrativeArea2_Economy,number of economic variables in administrative area 2;number of economic statistics in administrative area 2;number of economic indicators in administrative area 2;number of economic measures in administrative area 2 -Count_Variable_AdministrativeArea2_HealthAndEducation,number of people in administrative area 2 who work in health and education;number of people in administrative area 2 who are employed in health and education;number of people in administrative area 2 who have a job in health and education;number of people in administrative area 2 who are working in health and education -Count_Variable_Country,count of statistical variable: country;number of people in a specific country -Count_Variable_Country_ClimateAndEnvironment,number of countries by climate and environment;number of countries by climate and environmental conditions;number of countries by climate and environmental factors;number of countries by climate and environmental characteristics -Count_Variable_Country_Demographics,demographics of a country;statistical data on demographics by country;demographics by country;demographics of each country -Count_Variable_Country_Economy,country with the largest economy;country with the highest gdp;country with the most money;country with the highest gdp per capita -Count_Variable_Country_HealthAndEducation,number of people in each country by health and education status;health and education statistics by country;health and education data by country;health and education statistics for each country -Count_WaterspoutEvent,number of waterspout events;waterspout count;how many waterspouts have occurred;how many waterspouts have been reported -Count_WetBulbTemperatureEvent,number of wet bulb temperature events;wet bulb temperature event count;wet bulb temperature event frequency;wet bulb temperature event occurrence -Count_WildfireEvent,how many wildfires have there been?;how many wildfires have occurred?;what is the number of wildfires?;how many wildfires have been reported? -Count_WildlandFireEvent,number of wildland fire events;number of wildland fire incidents;number of wildland fire occurrences;wildland fire count -Count_WinterStormEvent,winter storm frequency;winter storm occurrence;winter storm incidents;winter storm events -Count_WinterWeatherEvent,number of winter weather events;frequency of winter weather events;winter weather event tallies;winter weather event totals -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,federal government accommodation and food service workers;federal government employees who work in accommodation and food services;people who work in accommodation and food services that are owned by the federal government;federal government workers who provide accommodation and food services -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,number of people working in federal government-owned administrative and support and waste management services;number of people employed in federal government-owned administrative and support and waste management services;number of people working for the federal government in administrative and support and waste management services;number of people employed by the federal government in administrative and support and waste management services -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"employees of federal government-owned agriculture, forestry, fishing, and hunting establishments;people who work for the federal government in agriculture, forestry, fishing, and hunting establishments;federal government employees who work in agriculture, forestry, fishing, and hunting;people who are employed by the federal government in the agriculture, forestry, fishing, and hunting industries" -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"federal government employees who work in arts, entertainment, and recreation establishments;people who work in arts, entertainment, and recreation establishments that are owned by the federal government;federal government workers in the arts, entertainment, and recreation industry;federal government employees who work in the arts, entertainment, and recreation sector" -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSEducationalServices,number of people enrolled in federal government-owned educational institutions;number of students attending federal government-owned schools;total number of people who are enrolled in or attending schools that are owned by the federal government;count of people who are enrolled in or attending federal government-run educational institutions -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSFinanceInsurance,people who work in the finance and insurance industries that are owned by the federal government;people who work in the finance and insurance establishments that are owned by the federal government;federal government employees who work in the finance and insurance industries;federal government employees who work in the finance and insurance establishments -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSGoodsProducing,federal government-owned goods-producing establishments employees;federal government-owned goods-producing establishment workers;employees of federal government-owned goods-producing establishments;workers at federal government-owned goods-producing establishments -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,federal government employees in healthcare and social assistance;federal government workers in healthcare and social services;federal government staff in healthcare and social assistance;federal government workers in the healthcare and social assistance sector -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSInformation,employees of government-owned information establishments;federal government employees who work in information establishments;people who work in information establishments that are owned by the federal government;federal government-owned information establishment employees -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSNonclassifiable,"population of people who are owned by the federal government and are not classified;sum of people who are owned by the federal government and are not classified;persons owned by the federal government, unclassified (naics/99);people who are owned by the federal government and are not classified (naics/99)" -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSOtherServices,"number of people in the federal government owned, other services, except public administration (naics/81);count of people in the federal government owned, other services, except public administration (naics/81);total people in the federal government owned, other services, except public administration (naics/81);sum of people in the federal government owned, other services, except public administration (naics/81)" -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"federal government employees in professional, scientific, and technical services;federal government workers in professional, scientific, and technical services;federal government workers in the professional, scientific, and technical services sector;federal government employees in the professional, scientific, and technical services sector" -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSPublicAdministration,federal government employees;government workers;government administration workers;federal employees -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSServiceProviding,federal government service workers;employees of federal government service-providing establishments;people who work for the federal government in service-providing establishments;federal government employees who work in service-providing establishments -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,total number of people employed by the federal government;total number of federal employees;number of federal workers;number of people employed by the federal government -Count_Worker_FederalGovernmentOwnedEstablishment_NAICSUtilities,number of people in federal government owned utilities (naics/22);number of people employed in federal government owned utilities (naics/22);number of people working in federal government owned utilities (naics/22);number of people who work in federal government owned utilities (naics/22) -Count_Worker_GovernmentOwnedEstablishment_NAICSTotalAllIndustries,people who work in government-owned metal mines;government-employed metal miners;metal miners who work for the government;people who mine metal in government-owned mines -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,local government employees in the accommodation and food services sector;people who work in accommodation and food services that are owned by the local government;staff in local government-owned accommodation and food services;local government-employed workers in the accommodation and food services industry -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,local government workers in administrative and support services and waste management establishments;workers in local government-owned establishments that provide administrative and support services and waste management;employees of local governments who work in administrative and support services and waste management;people who work for local governments in administrative and support services and waste management -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"the number of people who work in local government-owned arts, entertainment, and recreation establishments;the number of employees in local government-owned arts, entertainment, and recreation establishments;the workforce of local government-owned arts, entertainment, and recreation establishments;the number of people who are employed by local government-owned arts, entertainment, and recreation establishments" -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSConstruction,people who work in construction industries owned by local governments;construction workers in local government-owned industries;employees of local government-owned construction industries;local government-owned construction industry workers -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSEducationalServices,number of people enrolled in local government-run schools;number of students attending schools owned by the local government;number of pupils in local government-operated educational institutions;number of children learning in local government-controlled schools -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSGoodsProducing,workers in government-owned production facilities;employees of local government-owned factories;factory workers in government-owned establishments;laborers in local government-owned factories -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,local government employees in the healthcare and social assistance sector;people who work in healthcare and social assistance for local governments;local government-employed healthcare and social assistance workers;healthcare and social assistance workers employed by local governments -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSInformation,local government information workers;information workers in local government;workers who work with information in local government;people who work in local government and deal with information -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSNonclassifiable,local government workers in unclassified positions;unclassified workers in local government;local government employees in non-classified roles;unclassified local government employees -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSOtherServices,local government-owned services other than public administration;services provided by local governments other than public administration;local government services other than public administration;local government services that are not public administration -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"professionals, scientists, and technicians who work for local governments;people who work in professional, scientific, and technical services for local governments;local government employees who work in professional, scientific, and technical fields;local government workers in professional, scientific, and technical occupations" -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSPublicAdministration,the number of people who work in local government-owned public administration (naics/92);the number of people who are employed in local government-owned public administration (naics/92);the number of people who work for local government-owned public administration (naics/92);the number of people who are employed by local government-owned public administration (naics/92) -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSRealEstateRentalLeasing,number of people working in local government-owned building material and supplies dealers;number of employees in local government-owned building material and supplies dealers;number of people employed by local government-owned building material and supplies dealers;number of people working for local government-owned building material and supplies dealers -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSServiceProviding,local government employees in service-providing industries;local government workers in service industries;local government workers who provide services;local government employees who work in services -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,people who work in metal mining industries that are owned by local governments;employees of local government-owned metal mining companies;staff at local government-owned metal mines;workers in the metal mining industry who are employed by local governments -Count_Worker_LocalGovernmentOwnedEstablishment_NAICSUtilities,local government utility workers;employees of local government-owned utilities;people who work for local government-owned utilities;staff at local government-owned utilities -Count_Worker_NAICSAccommodationFoodServices,how many people work in the accommodation and food services industry?;what is the number of people employed in the accommodation and food services industry?;what is the workforce size of the accommodation and food services industry?;how many people are employed in the accommodation and food services sector? -Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,number of people working in the administrative and support and waste management services industry;number of people employed in the administrative and support and waste management services industry;number of people working in administrative and support and waste management services;number of people employed in administrative and support and waste management services -Count_Worker_NAICSAgricultureForestryFishingHunting,"number of people working in agriculture, forestry, fishing, and hunting;people employed in agriculture, forestry, fishing, and hunting;workers in agriculture, forestry, fishing, and hunting;number of people employed in the agriculture, forestry, fishing, and hunting industry" -Count_Worker_NAICSArtsEntertainmentRecreation,"number of people working in the arts, entertainment, and recreation industry;number of people employed in the arts, entertainment, and recreation industry;number of people who work in the arts, entertainment, and recreation industry;number of people who have jobs in the arts, entertainment, and recreation industry" -Count_Worker_NAICSConstruction,how many people work in the construction industry?;what is the number of people employed in the construction industry?;what is the workforce of the construction industry?;how many people are employed in construction? -Count_Worker_NAICSEducationalServices,number of people working in the field of education;number of people employed in the educational services sector -Count_Worker_NAICSFinanceInsurance,number of people working in the finance and insurance industry;how many people work in the finance and insurance industry;how many people are employed in the finance and insurance industry;what is the workforce size of the finance and insurance industry -Count_Worker_NAICSGoodsProducing,people who work in the manufacturing sector;people who produce goods;people who make things;people who work in factories -Count_Worker_NAICSHealthCareSocialAssistance,number of people working in the health care and social assistance industry;how many people work in the health care and social assistance industry;what is the population of people working in the health care and social assistance industry;what is the number of people employed in the health care and social assistance industry -Count_Worker_NAICSInformation,number of people working in the information industry;number of people employed in the information industry;number of people working in information technology;number of people employed in information technology -Count_Worker_NAICSManagementOfCompaniesEnterprises,number of people working in management of companies and enterprises;size of the workforce in management of companies and enterprises;number of employees in management of companies and enterprises;workforce in management of companies and enterprises -Count_Worker_NAICSMiningQuarryingOilGasExtraction,"1 number of people employed in the mining, quarrying, and oil and gas extraction industry;2 number of people working in the mining, quarrying, and oil and gas extraction sector;3 size of the workforce in the mining, quarrying, and oil and gas extraction industry;4 number of people who work in the mining, quarrying, and oil and gas extraction industry" -Count_Worker_NAICSNonclassifiable,number of workers in non-classifiable industries;number of workers in industries that cannot be classified;number of workers in industries that are not classified;number of workers in unclassified industries -Count_Worker_NAICSOtherServices,"number of people working in other services, excluding public administration;number of people employed in other services, excluding public administration;number of people working in non-public administration services;number of people employed in non-public administration services" -Count_Worker_NAICSProfessionalScientificTechnicalServices,"number of people employed in professional, scientific, and technical services;number of professional, scientific, and technical service workers;number of people working in professional, scientific, and technical services;number of professional, scientific, and technical service employees" -Count_Worker_NAICSPublicAdministration,how many people work in public administration?;what is the number of public administration workers?;how many people are employed in public administration?;what is the workforce of public administration? -Count_Worker_NAICSRealEstateRentalLeasing,how many people work in real estate and rental and leasing?;what is the number of real estate and rental and leasing workers?;what is the workforce size of real estate and rental and leasing?;how many people are employed in real estate and rental and leasing? -Count_Worker_NAICSServiceProviding,people who work in service industries;service industry workers;employees in the service sector;service workers -Count_Worker_NAICSTotalAllIndustries,total number of people employed in all industries;number of people working in all sectors of the economy;total workforce;number of people with jobs -Count_Worker_NAICSUtilities,how many people work in utilities?;what is the number of people employed in utilities?;what is the workforce size of the utilities industry?;how many people are employed in the utilities sector? -Count_Worker_NAICSWholesaleTrade,1 how many people work in wholesale trade?;2 what is the number of wholesale trade workers?;3 what is the workforce of wholesale trade?;4 how many people are employed in wholesale trade? -Count_Worker_PrivatelyOwnedEstablishment_NAICSAccommodationFoodServices,privately-owned accommodation and food service workers;workers in the accommodation and food services sector;workers in the hospitality industry;workers in the restaurant industry -Count_Worker_PrivatelyOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,the number of people working in privately owned administrative and support and waste management services;the number of people employed in privately owned administrative and support and waste management services;the number of people who work in privately owned administrative and support and waste management services;the number of people who have jobs in privately owned administrative and support and waste management services -Count_Worker_PrivatelyOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"number of people in the privately owned agriculture, forestry, fishing, and hunting industry (naics/11);population of people working in the privately owned agriculture, forestry, fishing, and hunting industry (naics/11);number of people working in the privately owned agriculture, forestry, fishing, and hunting sector (naics/11);population of people employed in the privately owned agriculture, forestry, fishing, and hunting sector (naics/11)" -Count_Worker_PrivatelyOwnedEstablishment_NAICSArtsEntertainmentRecreation,"people who work in the arts, entertainment, and recreation industries that are privately owned;employees of privately owned arts, entertainment, and recreation businesses;people who are paid to work in the arts, entertainment, and recreation industries that are not owned by the government;workers in the private sector of the arts, entertainment, and recreation industries" -Count_Worker_PrivatelyOwnedEstablishment_NAICSConstruction,people who work in privately owned construction establishments;people who work in privately owned construction industries;privately employed construction workers;construction workers in the private sector -Count_Worker_PrivatelyOwnedEstablishment_NAICSEducationalServices,number of people employed in privately owned educational services;number of people working in private education;number of people working in privately owned schools;number of people employed in private schools -Count_Worker_PrivatelyOwnedEstablishment_NAICSFinanceInsurance,privately employed finance and insurance workers;finance and insurance workers in the private sector;privately owned finance and insurance companies' employees;people who work in privately owned finance and insurance -Count_Worker_PrivatelyOwnedEstablishment_NAICSGoodsProducing,people who work in privately owned businesses that make things;employees of privately owned companies that produce goods;workers in privately owned factories and shops;employees of privately owned businesses that manufacture goods -Count_Worker_PrivatelyOwnedEstablishment_NAICSHealthCareSocialAssistance,people who work in privately owned health care and social assistance establishments;employees of privately owned health care and social assistance establishments;workers in the private health care and social assistance sector;private sector employees in the health care and social assistance field -Count_Worker_PrivatelyOwnedEstablishment_NAICSInformation,people who work in privately-owned information industries;employees of privately-owned information companies;workers in the private information sector;people who are employed by private information businesses -Count_Worker_PrivatelyOwnedEstablishment_NAICSManagementOfCompaniesEnterprises,people working in management positions in private companies;people working in privately owned companies and enterprises;people employed by privately owned companies and enterprises;people who are employed in privately owned businesses in management positions -Count_Worker_PrivatelyOwnedEstablishment_NAICSMiningQuarryingOilGasExtraction,"employees in privately owned mining, quarrying, oil and gas extraction establishments;people who work in privately owned mining, quarrying, oil and gas extraction establishments;workers in privately owned mining, quarrying, oil and gas extraction businesses;people who are employed in privately owned mining, quarrying, oil and gas extraction businesses" -Count_Worker_PrivatelyOwnedEstablishment_NAICSNonclassifiable,private-sector workers in unclassified establishments;employees in privately owned businesses that are not classified by industry -Count_Worker_PrivatelyOwnedEstablishment_NAICSOtherServices,non-ferrous foundries that are not die-casting industries and are privately owned;privately owned foundries that cast non-ferrous metals but do not make die-castings;privately owned foundries that cast non-ferrous metals other than iron and steel;non-ferrous foundries that are privately owned and do not make die-castings -Count_Worker_PrivatelyOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"employees of privately owned professional, scientific, and technical services firms;people who work for privately owned professional, scientific, and technical services companies;workers in the privately owned professional, scientific, and technical services sector;workers at privately owned professional, scientific, and technical services organizations" -Count_Worker_PrivatelyOwnedEstablishment_NAICSRealEstateRentalLeasing,people who work in the privately owned real estate and rental and leasing industries;people who are employed in the privately owned real estate and rental and leasing industries;people who have jobs in the privately owned real estate and rental and leasing industries;people who work for privately owned real estate and rental and leasing companies -Count_Worker_PrivatelyOwnedEstablishment_NAICSServiceProviding,employees in privately owned service-providing industries;people who work in privately owned service-providing businesses;workers in the private service sector;privately employed service workers -Count_Worker_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,total number of people employed by privately owned businesses in all industries (naics/10);total number of people working for private companies in all industries (naics/10);total number of people working in the private sector in all industries (naics/10);total number of people employed in private businesses in all industries (naics/10) -Count_Worker_PrivatelyOwnedEstablishment_NAICSUtilities,private utility workers;employees of privately owned utilities;people who work for privately owned utilities;workers in the private utility sector -Count_Worker_PrivatelyOwnedEstablishment_NAICSWholesaleTrade,number of people employed in privately owned wholesale trades;number of people working in privately owned wholesale businesses -Count_Worker_StateGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,state government employees who work in administrative and support services or waste management;state government workers who provide administrative and support services or manage waste;state government employees who work in office jobs or clean up trash;state government workers who do office work or collect garbage -Count_Worker_StateGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"number of people working in state-owned arts, entertainment, and recreation establishments;number of employees in state-owned arts, entertainment, and recreation establishments;number of workers in state-owned arts, entertainment, and recreation businesses;number of staff in state-owned arts, entertainment, and recreation companies" -Count_Worker_StateGovernmentOwnedEstablishment_NAICSConstruction,state government construction workers;construction workers employed by the state government;people who work in construction for the state government;state government-employed construction workers -Count_Worker_StateGovernmentOwnedEstablishment_NAICSEducationalServices,number of people in state-owned educational services (naics/61);people working in state-owned educational services (naics/61);population of people employed in state-owned educational services (naics/61);number of people employed in state-owned educational services (naics/61) -Count_Worker_StateGovernmentOwnedEstablishment_NAICSGoodsProducing,people who work in state-owned factories;people who work in state-owned manufacturing plants;people who work in state-owned industrial facilities;people who work in state-owned production facilities -Count_Worker_StateGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,number of people working in state-owned healthcare and social assistance establishments;number of people working in state-run healthcare and social services;number of people working in state-owned health care and social assistance establishments;number of employees in state-owned health care and social assistance establishments -Count_Worker_StateGovernmentOwnedEstablishment_NAICSInformation,state government information workers;information workers in state government establishments;state government employees who work with information;information workers who are employed by the state government -Count_Worker_StateGovernmentOwnedEstablishment_NAICSNonclassifiable,state-employed workers in unclassified industries;government workers in unclassified industries;employees of state-owned companies in unclassified industries;state-employed people in non-classified industries -Count_Worker_StateGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"number of people working in state-owned professional, scientific, and technical services;number of people in state-owned professional, scientific, and technical services;number of people employed by the state government in professional, scientific, and technical services;number of people employed in state government-owned professional, scientific, and technical services" -Count_Worker_StateGovernmentOwnedEstablishment_NAICSPublicAdministration,state government employees;public servants working for the state;people who work for the state government;state government workers -Count_Worker_StateGovernmentOwnedEstablishment_NAICSServiceProviding, -Count_Worker_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,total number of workers in state-owned industries;all workers in state-owned industries;state government-owned industries' total number of workers;total number of workers in all state-owned industries -Covid19MobilityTrend_GroceryStoreAndPharmacy,people are going to the grocery store and pharmacy more often during the covid-19 pandemic;grocery store and pharmacy visits have increased since the start of the covid-19 pandemic;more people are going to the grocery store and pharmacy now than they were before the covid-19 pandemic;there has been an increase in the number of people going to the grocery store and pharmacy since the start of the covid-19 pandemic -Covid19MobilityTrend_LocalBusiness,how has the covid-19 pandemic affected local businesses?;what has been the impact of covid-19 on local businesses?;how have local businesses been affected by covid-19?;what has covid-19 done to local businesses? -Covid19MobilityTrend_Park,covid-19 mobility trends for parks;how people are moving around parks during covid-19;changes in park usage during covid-19;how covid-19 has affected park usage -Covid19MobilityTrend_Residence,how has mobility changed in relation to residence during the covid-19 pandemic?;what are the trends in mobility in relation to residence during the covid-19 pandemic?;how has the way people move around changed in relation to their residence during the covid-19 pandemic?;what are the changes in the way people move around in relation to their residence during the covid-19 pandemic? -Covid19MobilityTrend_TransportHub,how has mobility changed at transport hubs during the covid-19 pandemic?;what are the trends in mobility at transport hubs during the covid-19 pandemic?;how has the use of transport hubs changed during the covid-19 pandemic?;what are the changes in the use of transport hubs during the covid-19 pandemic? -Covid19MobilityTrend_Workplace,workplace mobility trends during the covid-19 pandemic;how people have been moving around for work during the covid-19 pandemic;changes in how people have been getting to and from work during the covid-19 pandemic;the impact of the covid-19 pandemic on workplace mobility -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedCase,covid-19 cases reported -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,total number of covid-19 cases;sum of all covid-19 cases;running total of covid-19 cases;accumulated number of covid-19 cases -CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,total number of covid-19 deaths;number of people who have died from covid-19;death toll from covid-19;covid-19 death count -CumulativeCount_MedicalTest_ConditionCOVID_19,total number of covid-19 tests conducted;sum of all covid-19 tests ever done;number of covid-19 tests performed to date;cumulative number of covid-19 tests -CumulativeCount_Vaccine_COVID_19_Administered,number of covid-19 vaccines given;number of covid-19 vaccinations;number of people who have received covid-19 vaccines;number of covid-19 vaccine doses administered -DewPointTemperature_SurfaceLevel,dew point temperature at the surface;dew point at the surface;surface dew point;dew point temperature at ground level -DifferenceAcrossModels_Humidity_RelativeHumidity,relative humidity difference between models;difference in relative humidity between models;how relative humidity varies between models;how much relative humidity varies between models -DifferenceAcrossModels_Humidity_RelativeHumidity_SSP245,relative humidity difference between models based on rcp 45 and ssp 2;difference in relative humidity between models based on rcp 45 and ssp 2;relative humidity change between models based on rcp 45 and ssp 2;relative humidity variation between models based on rcp 45 and ssp 2 -DifferenceAcrossModels_Humidity_RelativeHumidity_SSP585, -DifferenceAcrossModels_Humidity_SpecificHumidity,"specific humidity across models;humidity differences between models;specific humidity in different models;humidity in models, compared" -DifferenceAcrossModels_Humidity_SpecificHumidity_SSP245,specific humidity based on rcp 45;specific humidity based on the rcp 45 scenario;specific humidity under the rcp 45 scenario;specific humidity in the rcp 45 scenario -DifferenceAcrossModels_Humidity_SpecificHumidity_SSP585,"humidity based on rcp 85 specific humidity, ssp 5;specific humidity based on rcp 85, ssp 5;rcp 85 specific humidity, ssp 5 humidity;rcp 85, ssp 5 specific humidity humidity" -DifferenceAcrossModels_Max_Temperature,maximum temperature difference between models;the highest temperature predicted by any model minus the lowest temperature predicted by any model;the range of temperatures predicted by the models;the difference in maximum temperatures between models -DifferenceAcrossModels_Max_Temperature_RCP26,"the difference in maximum temperature between models based on rcp 26;the difference between the maximum temperatures predicted by different models based on rcp 26;the maximum temperature predicted by the models based on rcp 26, with the differences between the models shown;the maximum temperature predicted by the models based on rcp 26, with the range of temperatures predicted by the models shown" -DifferenceAcrossModels_Max_Temperature_RCP45,the maximum temperature difference between models based on rcp 45;the difference in maximum temperatures between models based on rcp 45;the maximum temperature change between models based on rcp 45;the maximum temperature variation between models based on rcp 45 -DifferenceAcrossModels_Max_Temperature_RCP60,the maximum temperature difference between models based on rcp 60;the maximum temperature change between models based on rcp 60;the maximum temperature variation between models based on rcp 60;the maximum temperature deviation between models based on rcp 60 -DifferenceAcrossModels_Max_Temperature_RCP85,the difference between the maximum temperatures of models based on rcp 85 -DifferenceAcrossModels_Max_Temperature_SSP245,the difference between the highest and lowest temperature projections from different models based on the ssp 2 scenario;the range of temperature projections from different models based on the ssp 2 scenario;the spread of temperature projections from different models based on the ssp 2 scenario;the variation in temperature projections from different models based on the ssp 2 scenario -DifferenceAcrossModels_Max_Temperature_SSP585, -DifferenceAcrossModels_Mean_WindSpeed,"the average wind speed, as calculated by different models;the difference in wind speed between different models;the variation in wind speed between different models;the range of wind speeds between different models" -DifferenceAcrossModels_Mean_WindSpeed_SSP245,mean wind speed based on rcp 45ssp 2;mean wind speed under rcp 45ssp 2;average wind speed based on rcp 45ssp 2;the average velocity of the wind based on rcp 45ssp 2 -DifferenceAcrossModels_Mean_WindSpeed_SSP585,"mean wind speed difference across models, based on rcp 85 and ssp 5;the difference in mean wind speed between models, based on rcp 85 and ssp 5;the variation in mean wind speed between models, based on rcp 85 and ssp 5;the range of mean wind speed between models, based on rcp 85 and ssp 5" -DifferenceAcrossModels_Min_Temperature,minimum temperature (difference between models);lowest temperature (difference between models);smallest temperature (difference between models);lowest temperature difference between models -DifferenceAcrossModels_Min_Temperature_RCP26,the smallest variation in temperature between models based on rcp 26;minimum temperature (difference across models): based on rcp 26;minimum temperature (difference between models): based on rcp 26;minimum temperature (difference in models): based on rcp 26 -DifferenceAcrossModels_Min_Temperature_RCP45,the minimum temperature difference between models based on rcp 45;the lowest temperature difference between models based on rcp 45;the smallest temperature difference between models based on rcp 45;the least temperature difference between models based on rcp 45 -DifferenceAcrossModels_Min_Temperature_RCP60,minimum temperature (difference between models): based on rcp 60;lowest temperature (difference between models): based on rcp 60;smallest temperature (difference between models): based on rcp 60;least temperature (difference between models): based on rcp 60 -DifferenceAcrossModels_Min_Temperature_RCP85,the lowest temperature projected by different models based on rcp 85;the minimum temperature difference between models based on rcp 85;the lowest temperature that is projected by any of the models based on rcp 85;the temperature that is projected to be the lowest by any of the models based on rcp 85 -DifferenceAcrossModels_Min_Temperature_SSP245,"the least amount by which the temperature is expected to change, according to different models, under the rcp 45 and ssp 2 scenarios;the smallest change in temperature that is expected to occur, according to different models, under the rcp 45 and ssp 2 scenarios;the minimum temperature difference that is predicted by different models for the rcp 45 and ssp 2 scenarios;the minimum temperature difference between the models, as calculated using the rcp 45 and ssp 2 scenarios" -DifferenceAcrossModels_Min_Temperature_SSP585,the minimum temperature difference between the rcp 85 and ssp 5 scenarios;the smallest difference in temperature between the rcp 85 and ssp 5 scenarios;the lowest temperature difference between the rcp 85 and ssp 5 scenarios;the least temperature difference between the rcp 85 and ssp 5 scenarios -DifferenceAcrossModels_PrecipitationRate,the amount of precipitation (as predicted by different models);the difference in precipitation rates (between different models);the variation in precipitation rates (between different models);the range of precipitation rates (predicted by different models) -DifferenceAcrossModels_PrecipitationRate_RCP26,"change in precipitation rate across models, based on rcp 26;difference in precipitation rate between models, based on rcp 26;variation in precipitation rate between models, based on rcp 26;the variation in precipitation rates between models based on rcp 26" -DifferenceAcrossModels_PrecipitationRate_RCP45,precipitation rate (difference across models): based on rcp 45;the difference in precipitation rates between models based on rcp 45;the variation in precipitation rates between models based on rcp 45;the range of precipitation rates between models based on rcp 45 -DifferenceAcrossModels_PrecipitationRate_RCP60,the difference in precipitation rates across models based on rcp 60;the variation in precipitation rates across models based on rcp 60;the range of precipitation rates across models based on rcp 60;the spread of precipitation rates across models based on rcp 60 -DifferenceAcrossModels_PrecipitationRate_RCP85,the difference in precipitation rates between models based on rcp 85;the variation in precipitation rates between models based on rcp 85;the variation in precipitation rates as predicted by different models based on rcp 85;the difference in precipitation rates across models based on rcp 85 -DifferenceAcrossModels_PrecipitationRate_SSP245,precipitation rate in the rcp 45ssp 2 model -DifferenceAcrossModels_PrecipitationRate_SSP585, -DifferenceAcrossModels_Radiation_Downwelling_LongwaveRadiation,downward longwave radiation;longwave radiation from the atmosphere -DifferenceAcrossModels_Radiation_Downwelling_LongwaveRadiation_SSP245,downwelling longwave radiation based on rcp 45;longwave radiation downwelling based on rcp 45;downwelling longwave radiation based on the rcp 45 scenario;longwave radiation downwelling based on the rcp 45 scenario -DifferenceAcrossModels_Radiation_Downwelling_LongwaveRadiation_SSP585,longwave radiation based on rcp 85 downwelling ssp 5;downwelling longwave radiation based on rcp 85 ssp 5;ssp 5 downwelling longwave radiation based on rcp 85;rcp 85 ssp 5 downwelling longwave radiation -DifferenceAcrossModels_Radiation_Downwelling_ShortwaveRadiation, -DifferenceAcrossModels_Radiation_Downwelling_ShortwaveRadiation_SSP245,radiation in rcp 45;radiation based on the rcp 45 scenario;radiation under the rcp 45 pathway;radiation in the rcp 45 model -DifferenceAcrossModels_Radiation_Downwelling_ShortwaveRadiation_SSP585,downward shortwave radiation based on rcp 85 and ssp 5;downward shortwave radiation based on the rcp 85 scenario and the ssp 5 scenario;downwelling shortwave radiation based on rcp 85 and ssp 5 -DifferenceAcrossModels_Temperature,difference in temperature between models;variation in temperature across models;spread of temperatures across models;temperature deviation across models -DifferenceAcrossModels_Temperature_SSP245,"the difference in temperature between the rcp 45 and ssp 2 scenarios, as predicted by different models;the variation in temperature predicted by different models for the rcp 45 and ssp 2 scenarios;the range of temperatures predicted by different models for the rcp 45 and ssp 2 scenarios;the spread of temperatures predicted by different models for the rcp 45 and ssp 2 scenarios" -DifferenceAcrossModels_Temperature_SSP585,"the difference in temperature between the rcp 85 and ssp 5 scenarios, as predicted by different models;the range of temperature predictions from different models for the rcp 85 and ssp 5 scenarios;the spread of temperature predictions from different models for the rcp 85 and ssp 5 scenarios;the variation in temperature predictions from different models for the rcp 85 and ssp 5 scenarios" -DifferenceRelativeToBaseDate1990_Humidity_RelativeHumidity,relative humidity compared to 1990;difference in relative humidity between 1990 and now;change in relative humidity from 1990 to present;difference between relative humidity in 1990 and relative humidity now -DifferenceRelativeToBaseDate1990_Humidity_SpecificHumidity,specific humidity relative to 1990;specific humidity change from 1990;the change in humidity from 1990 to now;the humidity now minus the humidity in 1990 -DifferenceRelativeToBaseDate1990_Max_Temperature, -DifferenceRelativeToBaseDate1990_Mean_WindSpeed,the difference between the mean wind speed now and in 1990;the change in mean wind speed from 1990 to now;how much has the mean wind speed changed since 1990;how much faster or slower is the mean wind speed now than in 1990 -DifferenceRelativeToBaseDate1990_Min_Temperature,the minimum temperature today is lower than it was in 1990;today's minimum temperature is below the 1990 average;today's minimum temperature is colder than it was in 1990;today's minimum temperature is below the 1990 baseline -DifferenceRelativeToBaseDate1990_PrecipitationRate,change in precipitation rate from 1990;change in precipitation rate relative to 1990;difference in precipitation rate relative to 1990;precipitation rate relative to 1990 -DifferenceRelativeToBaseDate1990_Radiation_Downwelling_LongwaveRadiation,longwave radiation from above;downward-directed longwave radiation -DifferenceRelativeToBaseDate1990_Radiation_Downwelling_ShortwaveRadiation,downwelling shortwave radiation in 2023 compared to 1990;the difference between downwelling shortwave radiation in 2023 and 1990;the change in downwelling shortwave radiation from 1990 to 2023;downwelling shortwave radiation in 2023 minus downwelling shortwave radiation in 1990 -DifferenceRelativeToBaseDate1990_Temperature,temperature change relative to 1990;difference between current temperature and temperature in 1990;how much warmer/colder is it now than in 1990;temperature deviation from 1990 -DifferenceRelativeToBaseDate2006_Max_Temperature_RCP26,"the maximum temperature deviation from the base date of 2006, based on rcp 26" -DifferenceRelativeToBaseDate2006_Max_Temperature_RCP60,"the maximum temperature difference from the base date of 2006, based on rcp 60;the maximum temperature change from the base date of 2006, based on rcp 60;the maximum temperature increase from the base date of 2006, based on rcp 60;the maximum temperature rise from the base date of 2006, based on rcp 60" -DifferenceRelativeToBaseDate2006_Min_Temperature_RCP26,"the minimum temperature that is expected to occur relative to the base date of 2006, according to the rcp 26 scenario;the minimum temperature that is predicted to occur relative to the base date of 2006, based on the rcp 26 scenario;the minimum temperature that is projected to occur relative to the base date of 2006, according to the rcp 26 scenario;the minimum temperature that is likely to occur relative to the base date of 2006, based on the rcp 26 scenario" -DifferenceRelativeToBaseDate2006_Min_Temperature_RCP60,"the minimum temperature difference from the base date (2006) based on rcp 60;temperature difference from 2006, based on rcp 60;temperature change from 2006, based on rcp 60;temperature variation from 2006, based on rcp 60" -DifferenceRelativeToBaseDate2006_PrecipitationRate_RCP26,change in precipitation rate from 2006 to 2026 based on rcp 26;how precipitation rate has changed since 2006 based on rcp 26;difference in precipitation rate from 2006 to 2026 based on rcp 26;increase or decrease in precipitation rate from 2006 to 2026 based on rcp 26 -DifferenceRelativeToBaseDate2006_PrecipitationRate_RCP60,rate of precipitation based on rcp 60;the rate of precipitation based on rcp 60 -DifferenceRelativeToObservationalData_Max_Temperature_ACCESS-CM2,"the access-cm2 (australia - csiro, arccss) model shows that the maximum temperature in the cmip6 historical run is higher than the observed data;the access-cm2 (australia - csiro, arccss) model predicts that the maximum temperature in the cmip6 historical run will be warmer than the observed data;the access-cm2 (australia - csiro, arccss) model projects that the maximum temperature in the cmip6 historical run will be higher than the observed data;the access-cm2 (australia - csiro, arccss) model forecasts that the maximum temperature in the cmip6 historical run will be warmer than the observed data" -DifferenceRelativeToObservationalData_Max_Temperature_ACCESS-ESM1-5,the maximum temperature difference between the access-esm1-5 climate model and observed data;the amount by which the access-esm1-5 climate model predicts temperatures to be higher than observed data;the difference between the access-esm1-5 climate model's predicted temperatures and observed temperatures;the access-esm1-5 climate model's prediction of the maximum temperature difference from observed data -DifferenceRelativeToObservationalData_Max_Temperature_BCC-CSM2-MR,the maximum temperature difference between the bcc-csm2-mr (china - bcc) model and observed data in the cmip6 historical run;the amount by which the bcc-csm2-mr (china - bcc) model predicts the temperature to be higher than observed data in the cmip6 historical run;the amount by which the bcc-csm2-mr (china - bcc) model overestimates the temperature in the cmip6 historical run;the amount by which the bcc-csm2-mr (china - bcc) model underestimates the temperature in the cmip6 historical run -DifferenceRelativeToObservationalData_Max_Temperature_CANESM5,the difference between the maximum temperature predicted by the canesm5 climate model and the observed maximum temperature;the amount by which the canesm5 climate model predicts the maximum temperature to be higher than the observed maximum temperature;the canesm5 climate model's prediction of the maximum temperature minus the observed maximum temperature;the canesm5 climate model's prediction of the maximum temperature minus the actual maximum temperature -DifferenceRelativeToObservationalData_Max_Temperature_CMCC-CM2-SR5,cmcc-cm2-sr5 (italy - cmcc) historical run max temperature;cmcc-cm2-sr5 (italy - cmcc) historical run max temperature difference relative to observed data;cmcc-cm2-sr5 (italy - cmcc) historical run maximum temperature;cmcc-cm2-sr5 (italy - cmcc) historical run maximum temperature difference relative to observed data -DifferenceRelativeToObservationalData_Max_Temperature_CMCC-ESM2,cmcc-esm2 (italy - cmcc) historical run max temperature relative to observed data;cmcc-esm2 (italy - cmcc) in the cmip6 historical run has a maximum temperature that is higher than observed data;the cmcc-esm2 (italy - cmcc) model in the cmip6 historical run predicts a higher maximum temperature than observed data;the cmcc-esm2 (italy - cmcc) model in the cmip6 historical run shows a higher maximum temperature than observed data -DifferenceRelativeToObservationalData_Max_Temperature_CNRM-CM6-1,how much warmer is the climate model cnrm-cm6-1 than observed data;the difference between the climate model cnrm-cm6-1 and observed data in terms of temperature;the temperature difference between the climate model cnrm-cm6-1 and observed data;the climate model cnrm-cm6-1's temperature deviation from observed data -DifferenceRelativeToObservationalData_Max_Temperature_CNRM-ESM2-1,"the cnrm-esm2-1 model from france (cnrm, cerfacs) shows a maximum temperature difference relative to observed data in the cmip6 historical run;the cnrm-esm2-1 model from france (cnrm, cerfacs) shows a maximum temperature that is higher than observed data in the cmip6 historical run;the cnrm-esm2-1 model from france (cnrm, cerfacs) shows a maximum temperature that is warmer than observed data in the cmip6 historical run;the cnrm-esm2-1 model from france (cnrm, cerfacs) shows a maximum temperature that is hotter than observed data in the cmip6 historical run" -DifferenceRelativeToObservationalData_Max_Temperature_EC-EARTH3,how much warmer is ec-earth 3 than observed data?;how much does ec-earth 3 deviate from observed data in terms of temperature?;the maximum temperature difference between the ec-earth 3 climate model and observed data;the maximum temperature difference between the ec-earth 3 climate model and reality -DifferenceRelativeToObservationalData_Max_Temperature_EC-EARTH3-VEG-LR,maximum temperature difference between the ec-earth3-veg-lr climate model and observed data;maximum temperature difference between the ec-earth3-veg-lr climate model and the real world;maximum temperature difference between the ec-earth3-veg-lr climate model and reality;maximum temperature difference between the ec-earth3-veg-lr climate model and the observed temperature -DifferenceRelativeToObservationalData_Max_Temperature_FGOALS-G3,the maximum temperature difference between the fgoals-g3 (china - cas) model and observed data in the cmip6 historical run;the amount by which the fgoals-g3 (china - cas) model predicts the temperature to be higher than observed data in the cmip6 historical run;the amount by which the fgoals-g3 (china - cas) model predicts the temperature to be lower than observed data in the cmip6 historical run;the amount by which the fgoals-g3 (china - cas) model predicts that temperatures will be higher than observed in the cmip6 historical run -DifferenceRelativeToObservationalData_Max_Temperature_GFDL-CM4,the maximum temperature difference from observed data in the gfdl-cm4 (usa - noaa) model run in the cmip6 historical run;the difference between the maximum temperature in the gfdl-cm4 (usa - noaa) model run in the cmip6 historical run and the observed temperature;the amount by which the maximum temperature in the gfdl-cm4 (usa - noaa) model run in the cmip6 historical run exceeded the observed temperature;the amount by which the maximum temperature in the gfdl-cm4 (usa - noaa) model run in the cmip6 historical run was higher than the observed temperature -DifferenceRelativeToObservationalData_Max_Temperature_GFDL-ESM4, -DifferenceRelativeToObservationalData_Max_Temperature_GISS-E2-1-G, -DifferenceRelativeToObservationalData_Max_Temperature_HADGEM3-GC31-LL,the maximum temperature difference between the climate model hadgem3-gc31-ll and observed data;the difference between the maximum temperature of the climate model hadgem3-gc31-ll and observed data;the climate model hadgem3-gc31-ll's maximum temperature compared to observed data;the maximum temperature of the climate model hadgem3-gc31-ll relative to observed data -DifferenceRelativeToObservationalData_Max_Temperature_HADGEM3-GC31-MM, -DifferenceRelativeToObservationalData_Max_Temperature_INM-CM4-8, -DifferenceRelativeToObservationalData_Max_Temperature_INM-CM5-0,the difference between the maximum temperature predicted by the inm-cm5-0 climate model and the observed maximum temperature;the amount by which the inm-cm5-0 climate model over- or underestimates the maximum temperature;the error in the inm-cm5-0 climate model's prediction of the maximum temperature;the deviation of the inm-cm5-0 climate model's prediction of the maximum temperature from the observed maximum temperature -DifferenceRelativeToObservationalData_Max_Temperature_IPSL-CM6A-LR,difference between observed and simulated maximum temperature for ipsl-cm6a-lr climate model;observed maximum temperature minus simulated maximum temperature for ipsl-cm6a-lr climate model;maximum temperature as observed minus maximum temperature as simulated by the ipsl-cm6a-lr climate model;observed maximum temperature minus simulated maximum temperature for the ipsl-cm6a-lr climate model -DifferenceRelativeToObservationalData_Max_Temperature_KACE-1-0-G, -DifferenceRelativeToObservationalData_Max_Temperature_KIOST-ESM,how much warmer is the kiost-esm climate model than observed data?;what is the difference between the kiost-esm climate model and observed data in terms of temperature?;how does the kiost-esm climate model compare to observed data in terms of temperature?;what is the temperature difference between the kiost-esm climate model and observed data? -DifferenceRelativeToObservationalData_Max_Temperature_MIROC-ES2L, -DifferenceRelativeToObservationalData_Max_Temperature_MIROC6,how much warmer is miroc6 than observed data;the temperature difference between miroc6 and observed data in the maximum;the temperature difference between miroc6 and observed data in the maximum temperature;the difference between the maximum temperature predicted by the miroc6 climate model and the observed maximum temperature -DifferenceRelativeToObservationalData_Max_Temperature_MPI-ESM1-2-HR,the temperature difference between the mpi-esm1-2-hr climate model and observed data;the mpi-esm1-2-hr climate model's temperature prediction compared to observed data;the mpi-esm1-2-hr climate model's temperature error;the mpi-esm1-2-hr climate model's temperature bias -DifferenceRelativeToObservationalData_Max_Temperature_MPI-ESM1-2-LR, -DifferenceRelativeToObservationalData_Max_Temperature_MRI-ESM2-0,how much warmer is the mri-esm2-0 climate model than observed data;how much does the mri-esm2-0 climate model overestimate temperature;how much does the mri-esm2-0 climate model underestimate temperature;how much does the mri-esm2-0 climate model deviate from observed temperature -DifferenceRelativeToObservationalData_Max_Temperature_NESM3,the maximum temperature difference between the nesm3 climate model and observed data;the difference between the maximum temperature in the nesm3 climate model and observed data;the nesm3 climate model's maximum temperature compared to observed data;the maximum temperature in the nesm3 climate model versus observed data -DifferenceRelativeToObservationalData_Max_Temperature_NORESM2-LM,how much warmer is the noresm2-lm climate model than observed data;how does the noresm2-lm climate model compare to observed data in terms of temperature;how much does the noresm2-lm climate model deviate from observed data in terms of temperature;the difference between the maximum temperature predicted by the climate model noresm2-lm and the observed maximum temperature -DifferenceRelativeToObservationalData_Max_Temperature_NORESM2-MM,how much warmer is the climate model noresm2-mm than observed data?;how much does the climate model noresm2-mm deviate from observed data in terms of temperature?;what is the temperature anomaly of noresm2-mm relative to observed data;difference between observed and simulated maximum temperature for climate model noresm2-mm -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_ACCESS-CM2, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_ACCESS-ESM1-5, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_BCC-CSM2-MR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_CANESM5, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_CMCC-CM2-SR5,"the difference between the maximum temperature predicted by the climate model cmcc-cm2-sr5 and the observed temperature, based on the rcp 45, ssp 2 emission scenario;the amount by which the maximum temperature predicted by the climate model cmcc-cm2-sr5 exceeds the observed temperature, based on the rcp 45, ssp 2 emission scenario;the amount by which the observed temperature is lower than the maximum temperature predicted by the climate model cmcc-cm2-sr5, based on the rcp 45, ssp 2 emission scenario;the difference between the maximum temperature predicted by the climate model cmcc-cm2-sr5 and the observed temperature, under the rcp 45, ssp 2 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_CMCC-ESM2,"the maximum temperature difference relative to observed data for cmcc-esm2 (italy - cmcc), based on rcp 45, ssp 2 is;the maximum temperature difference between the cmcc-esm2 model and observed data is based on rcp 45 and ssp 2;the cmcc-esm2 model predicts a maximum temperature difference of 2 degrees celsius compared to observed data, based on rcp 45 and ssp 2;the cmcc-esm2 model predicts a maximum temperature difference of 2 degrees celsius compared to observed data, based on the representative concentration pathway 45 and shared socioeconomic pathway 2" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_CNRM-CM6-1, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_CNRM-ESM2-1, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_EC-EARTH3, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_EC-EARTH3-VEG-LR,the maximum temperature in the ec-earth 3-veg-lr model based on the rcp 45 emission scenario;the highest temperature predicted by the ec-earth 3-veg-lr model under the rcp 45 emission scenario;the hottest temperature that the ec-earth 3-veg-lr model predicts will occur under the rcp 45 emission scenario;the maximum temperature that the ec-earth 3-veg-lr model projects for the rcp 45 emission scenario -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_FGOALS-G3, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_GFDL-CM4,the maximum temperature forecast by rcp 45ssp 2 -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_GFDL-ESM4,gfdl-esm4 (usa - noaa) predicts that the maximum temperature will be higher than observed data;gfdl-esm4 (usa - noaa) projects that the maximum temperature will be higher than observed data;gfdl-esm4 (usa - noaa) max temperature (difference relative to observed data);gfdl-esm4 (usa - noaa) max temperature (change relative to observed data) -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_GISS-E2-1-G,the maximum temperature based on the giss-e2-1-g model and the rcp 45 emission scenario;the maximum temperature projected by the giss-e2-1-g model under the rcp 45 emission scenario;the highest temperature that the giss-e2-1-g model predicts could be reached under the rcp 45 emission scenario;the upper limit of the temperature range projected by the giss-e2-1-g model under the rcp 45 emission scenario -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_HADGEM3-GC31-LL,"the highest temperature projected by the ssp 2 emission scenario, based on the median of all models, using rcp 45;the median temperature projected by all models, based on the highest value, using rcp 45 in the ssp 2 emission scenario;the highest temperature projected by the ssp 2 emission scenario, using rcp 45, as calculated by the median of all models;the median temperature projected by all models, using rcp 45 in the ssp 2 emission scenario, as calculated by the highest value" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_INM-CM4-8,"1 the difference between the maximum temperature predicted by the inm-cm4-8 climate model and the observed maximum temperature, based on the rcp 45 emission scenario;2 the amount by which the inm-cm4-8 climate model predicts that the maximum temperature will increase, relative to observed data, under the rcp 45 emission scenario;3 the projected increase in maximum temperature, relative to observed data, under the rcp 45 emission scenario, as predicted by the inm-cm4-8 climate model;4 the difference between the maximum temperature predicted by the inm-cm4-8 climate model and the observed maximum temperature, under the rcp 45 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_INM-CM5-0,"the difference between the maximum temperature observed and the maximum temperature predicted by the inm-cm5-0 climate model based on the rcp 45 emission scenario;the amount by which the maximum temperature predicted by the inm-cm5-0 climate model based on the rcp 45 emission scenario is higher than the maximum temperature observed;the amount by which the maximum temperature observed is lower than the maximum temperature predicted by the inm-cm5-0 climate model based on the rcp 45 emission scenario;the difference between the maximum temperature predicted by the inm-cm5-0 climate model based on the rcp 45 emission scenario and the maximum temperature observed, expressed as a percentage" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_IPSL-CM6A-LR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_KACE-1-0-G, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_KIOST-ESM,"what is the projected temperature increase, relative to observed data, under the rcp 45, ssp 2 emission scenario?;how much will the temperature change, relative to observed data, under the rcp 45, ssp 2 emission scenario?;what is the estimated temperature difference, relative to observed data, under the rcp 45, ssp 2 emission scenario?;what is the projected temperature change, relative to observed data, under the rcp 45, ssp 2 emission scenario, in degrees celsius?" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_MIROC-ES2L,the maximum temperature in japan under the rcp 45 and ssp 2 emission scenarios;the highest temperature that japan is expected to reach under the rcp 45 and ssp 2 emission scenarios;the hottest temperature that japan is expected to experience under the rcp 45 and ssp 2 emission scenarios;the peak temperature that japan is expected to reach under the rcp 45 and ssp 2 emission scenarios -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_MIROC6, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_MPI-ESM1-2-HR,the maximum temperature in germany under the rcp 45 ssp 2 emission scenario;the highest temperature that germany is expected to reach under the rcp 45 ssp 2 emission scenario;the projected maximum temperature in germany under the rcp 45 ssp 2 emission scenario;the upper limit of the temperature range that germany is expected to experience under the rcp 45 ssp 2 emission scenario -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_MPI-ESM1-2-LR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_MRI-ESM2-0,"the maximum temperature in japan, based on the mri model and the rcp 45ssp 2 emission scenario;the highest temperature that japan is expected to experience, based on the mri model and the rcp 45ssp 2 emission scenario;the hottest temperature that japan is expected to see, based on the mri model and the rcp 45ssp 2 emission scenario;the peak temperature that japan is expected to reach, based on the mri model and the rcp 45ssp 2 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_NESM3,"nesm3's maximum temperature based on the rcp 45, ssp 2 emission scenario;the maximum temperature of nesm3 according to the rcp 45, ssp 2 emission scenario;the maximum temperature that nesm3 is expected to reach based on the rcp 45, ssp 2 emission scenario;the highest temperature that nesm3 is projected to reach based on the rcp 45, ssp 2 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_NORESM2-LM,the noresm2-lm model from norway's ncc predicts that the maximum temperature will be higher than observed data under rcp 45 and ssp 2;the noresm2-lm model from norway's ncc predicts that the maximum temperature will increase under rcp 45 and ssp 2;the noresm2-lm model from norway's ncc predicts that the maximum temperature will be warmer than observed data under rcp 45 and ssp 2;the noresm2-lm model from norway's ncc predicts that the maximum temperature will be hotter than observed data under rcp 45 and ssp 2 -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_NORESM2-MM,"noresm2-mm (norway - ncc)'s projected maximum temperature relative to observed data under rcp 45 and ssp 2;noresm2-mm (norway - ncc)'s projected temperature increase relative to observed data under rcp 45 and ssp 2;the maximum temperature difference from observed data for noresm2-mm (norway - ncc), based on rcp 45, ssp 2;the maximum temperature change from observed data for noresm2-mm (norway - ncc), based on rcp 45, ssp 2" -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_TAIESM1,the maximum temperature based on the rcp 45 ssp2 emission scenario;the highest temperature expected under the rcp 45 ssp2 emission scenario;the projected maximum temperature under the rcp 45 ssp2 emission scenario;the upper limit of the projected temperature range under the rcp 45 ssp2 emission scenario -DifferenceRelativeToObservationalData_Max_Temperature_SSP245_UKESM1-0-LL,"the maximum temperature (difference relative to observed data) for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2 is:;the maximum temperature difference relative to observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2;the maximum temperature change relative to observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2;the maximum temperature increase relative to observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_ACCESS-CM2,"the maximum temperature projected by the access-cm2 model under the rcp 85 emission scenario;the highest temperature that the access-cm2 model predicts could be reached under the rcp 85 emission scenario;the upper limit of the temperature range projected by the access-cm2 model under the rcp 85 emission scenario;the maximum temperature that could be reached under the rcp 85 emission scenario, according to the access-cm2 model" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_ACCESS-ESM1-5,the maximum temperature that the usa could reach based on rcp 85 ssp 5 -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_BCC-CSM2-MR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_CANESM5,"the highest temperature in canada based on the rcp 85, ssp 5 emission scenario;the maximum temperature in canada projected by the rcp 85, ssp 5 emission scenario;the projected maximum temperature in canada under the rcp 85, ssp 5 emission scenario;the highest temperature that canada is projected to reach under the rcp 85, ssp 5 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_CMCC-CM2-SR5, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_CMCC-ESM2, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_CNRM-CM6-1, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_CNRM-ESM2-1, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_EC-EARTH3,"the maximum temperature in europe under the rcp 85, ssp 5 emission scenario;the highest temperature that europe could reach under the rcp 85, ssp 5 emission scenario;the upper limit of the temperature range that europe could experience under the rcp 85, ssp 5 emission scenario;the maximum temperature that europe is projected to reach under the rcp 85, ssp 5 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_EC-EARTH3-VEG-LR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_FGOALS-G3,the maximum temperature in china under the rcp 85 and ssp 5 emission scenarios;the highest temperature that china is expected to reach under the rcp 85 and ssp 5 emission scenarios;the upper limit of temperature in china under the rcp 85 and ssp 5 emission scenarios;the maximum temperature that china is projected to reach under the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_GFDL-CM4, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_GFDL-ESM4,"the highest temperature in the united states based on the rcp 85, ssp 5 emission scenario;the projected maximum temperature in the united states under the rcp 85, ssp 5 emission scenario;the highest possible temperature in the united states under the rcp 85, ssp 5 emission scenario;the upper limit of the projected temperature range in the united states under the rcp 85, ssp 5 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_GISS-E2-1-G, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_HADGEM3-GC31-LL, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_HADGEM3-GC31-MM, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_INM-CM4-8,the maximum temperature in russia under the rcp 85 and ssp 5 emission scenarios;the highest temperature that russia is expected to reach under the rcp 85 and ssp 5 emission scenarios;the upper limit of the temperature range that russia is expected to experience under the rcp 85 and ssp 5 emission scenarios;the maximum temperature that russia is projected to reach under the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_INM-CM5-0,"the maximum temperature difference between the inm-cm5-0 model and observed data in russia, based on rcp 85 and ssp 5;the maximum temperature change in russia, as predicted by the inm-cm5-0 model, based on rcp 85 and ssp 5;the maximum temperature increase in russia, as predicted by the inm-cm5-0 model, based on rcp 85 and ssp 5;the maximum temperature deviation from observed data in russia, as predicted by the inm-cm5-0 model, based on rcp 85 and ssp 5" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_IPSL-CM6A-LR, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_KACE-1-0-G, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_KIOST-ESM, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_MIROC-ES2L,"the maximum temperature change relative to observed data for miroc-es2l (japan - miroc), based on rcp 85, ssp 5 is:;the maximum temperature difference between the miroc-es2l model and observed data, based on the rcp 85 scenario and the ssp 5 pathway;the maximum temperature difference between the miroc-es2l model and observed data, based on the rcp 85 pathway and the ssp 5 scenario;the maximum temperature (difference relative to observed data) for miroc-es2l (japan - miroc), based on rcp 85, ssp 5 is:" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_MIROC6,"the difference between the maximum temperature in japan and the observed data, based on the rcp 85 and ssp 5 emission scenarios;the estimated difference between the maximum temperature in japan and the observed data, based on the rcp 85 and ssp 5 emission scenarios;the difference between the maximum temperature in japan and the observed data based on the rcp 85 and ssp 5 emission scenarios;the maximum temperature in japan relative to the observed data based on the rcp 85 and ssp 5 emission scenarios" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_MPI-ESM1-2-HR,"the maximum temperature (difference relative to observed data) for mpi-esm1-2-hr (germany - mpi, dwd, dkrz), based on rcp 85, ssp 5 is:" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_MPI-ESM1-2-LR,"mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz) shows that the maximum temperature will be higher than observed data under rcp 85 and ssp 5;the maximum temperature will be higher than observed data under rcp 85 and ssp 5, according to mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz);mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz) predicts that the maximum temperature will be higher than observed data under rcp 85 and ssp 5;the maximum temperature is expected to be higher than observed data under rcp 85 and ssp 5, based on mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz)" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_MRI-ESM2-0,"the divergence of the maximum temperature in japan from the observed temperature in japan based on the rcp 85 and ssp 5 emission scenarios;the predicted difference between the maximum temperature in japan and the observed temperature in japan, based on the rcp 85 and ssp 5 emission scenarios;the difference between the observed temperature in japan and the projected temperature in japan, based on the rcp 85 and ssp 5 emission scenarios" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_NESM3,the maximum temperature difference between china's observed data and the rcp 85 and ssp 5 emission scenarios;the maximum temperature change in china relative to observed data under the rcp 85 and ssp 5 emission scenarios;the maximum temperature increase in china relative to observed data under the rcp 85 and ssp 5 emission scenarios;the maximum temperature decrease in china relative to observed data under the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_NORESM2-LM,"the difference between the maximum temperature observed in the nor esm2-lm climate model and the maximum temperature observed in reality, based on the rcp 85 emission scenario;the maximum temperature that the nor esm2-lm climate model predicts will be higher than the maximum temperature that has been observed in reality, based on the rcp 85 emission scenario;the maximum temperature that the nor esm2-lm climate model predicts will be higher than the observed maximum temperature, based on the rcp 85 emission scenario;the maximum temperature that the nor esm2-lm climate model predicts will be higher than the observed maximum temperature, according to the rcp 85 emission scenario" -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_NORESM2-MM,the maximum temperature difference between norway and observed data based on the rcp 85 and ssp 5 emission scenarios;the maximum temperature change in norway compared to observed data based on the rcp 85 and ssp 5 emission scenarios;the maximum temperature increase in norway compared to observed data based on the rcp 85 and ssp 5 emission scenarios;the maximum temperature rise in norway compared to observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_TAIESM1, -DifferenceRelativeToObservationalData_Max_Temperature_SSP585_UKESM1-0-LL,"the maximum temperature difference relative to observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 85, ssp 5 is;the maximum temperature variation from observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 85, ssp 5" -DifferenceRelativeToObservationalData_Max_Temperature_TAIESM1,1 the difference between the maximum temperature in taiwan and the observed data in the cmip6 historical run;2 the amount by which the maximum temperature in taiwan changed from the observed data in the cmip6 historical run;3 the increase or decrease in the maximum temperature in taiwan from the observed data in the cmip6 historical run;4 the variation in the maximum temperature in taiwan from the observed data in the cmip6 historical run -DifferenceRelativeToObservationalData_Max_Temperature_UKESM1-0-LL,what is the hottest day on record in the uk?;what is the record high temperature in the uk?;what is the hottest day ever in the uk?;what's the hottest day on record in the uk? -DifferenceRelativeToObservationalData_Mean_Temperature_ACCESS-CM2,access-cm2's mean temperature difference relative to observed data;the difference between access-cm2's mean temperature and observed data;access-cm2's mean temperature compared to observed data;what is the difference between the climate model access-cm2 and observed data in terms of temperature? -DifferenceRelativeToObservationalData_Mean_Temperature_ACCESS-ESM1-5, -DifferenceRelativeToObservationalData_Mean_Temperature_BCC-CSM2-MR,the average temperature difference between the bcc-csm2-mr (china - bcc) model and observed data in the cmip6 historical run;the difference between the average temperature in the bcc-csm2-mr (china - bcc) model and observed data in the cmip6 historical run;the average temperature in the bcc-csm2-mr (china - bcc) model minus the average temperature in observed data in the cmip6 historical run;the average temperature in the cmip6 historical run minus the average temperature in the bcc-csm2-mr (china - bcc) model -DifferenceRelativeToObservationalData_Mean_Temperature_CANESM5, -DifferenceRelativeToObservationalData_Mean_Temperature_CESM2,the cesm2 (usa - ncar) cmip6 historical run shows the mean temperature relative to observed data;the cesm2 (usa - ncar) cmip6 historical run shows how much the temperature has changed compared to observed data;the cesm2 (usa - ncar) cmip6 historical run shows the difference between the temperature and observed data;the cesm2 (usa - ncar) cmip6 historical run shows the temperature deviation from observed data -DifferenceRelativeToObservationalData_Mean_Temperature_CESM2-WACCM, -DifferenceRelativeToObservationalData_Mean_Temperature_CMCC-CM2-SR5, -DifferenceRelativeToObservationalData_Mean_Temperature_CMCC-ESM2, -DifferenceRelativeToObservationalData_Mean_Temperature_CNRM-CM6-1,"the mean temperature difference between observed data and the cnrm-cm6-1 (france - cnrm, cerfacs) model in the cmip6 historical run;the difference between the mean temperature of observed data and the cnrm-cm6-1 (france - cnrm, cerfacs) model in the cmip6 historical run;the cnrm-cm6-1 (france - cnrm, cerfacs) model's mean temperature difference from observed data in the cmip6 historical run;the mean temperature of observed data minus the cnrm-cm6-1 (france - cnrm, cerfacs) model's mean temperature in the cmip6 historical run" -DifferenceRelativeToObservationalData_Mean_Temperature_CNRM-ESM2-1,the difference between the average temperature predicted by the cnrm-esm2-1 climate model and the average temperature observed in reality;the amount by which the cnrm-esm2-1 climate model predicts the average temperature to be different from the average temperature observed in reality;the discrepancy between the average temperature predicted by the cnrm-esm2-1 climate model and the average temperature observed in reality;the deviation of the average temperature predicted by the cnrm-esm2-1 climate model from the average temperature observed in reality -DifferenceRelativeToObservationalData_Mean_Temperature_EC-EARTH3,what is the difference between the climate model ec-earth3 and observed data;how does the climate model ec-earth3 compare to observed data;the difference between the average temperature predicted by the ec-earth3 climate model and the average temperature observed in the real world;the amount by which the average temperature predicted by the ec-earth3 climate model is higher or lower than the average temperature observed in the real world -DifferenceRelativeToObservationalData_Mean_Temperature_EC-EARTH3-VEG-LR,mean temperature difference relative to observed data based on the ec-earth3-veg-lr climate model;difference between observed and modeled mean temperatures based on the ec-earth3-veg-lr climate model;observed mean temperature minus modeled mean temperature based on the ec-earth3-veg-lr climate model;modeled mean temperature minus observed mean temperature based on the ec-earth3-veg-lr climate model -DifferenceRelativeToObservationalData_Mean_Temperature_FGOALS-G3,"sure here are five different ways of saying ""mean temperature difference relative to observed data based for climate model fgoals-g3"" in a colloquial way:;the difference between the average temperature predicted by the climate model fgoals-g3 and the average temperature observed in reality;the average temperature predicted by the climate model fgoals-g3, minus the average temperature observed in reality;the amount by which the average temperature predicted by the climate model fgoals-g3 is higher or lower than the average temperature observed in reality" -DifferenceRelativeToObservationalData_Mean_Temperature_GFDL-CM4, -DifferenceRelativeToObservationalData_Mean_Temperature_GFDL-ESM4, -DifferenceRelativeToObservationalData_Mean_Temperature_GISS-E2-1-G,"giss-e2-1-g climate model's mean temperature difference relative to observed data;the difference between the mean temperature predicted by the giss-e2-1-g climate model and the mean temperature observed;the giss-e2-1-g climate model's prediction of the mean temperature minus the observed mean temperature;the difference between the mean temperature predicted by the giss-e2-1-g climate model and the mean temperature observed, in degrees celsius" -DifferenceRelativeToObservationalData_Mean_Temperature_HADGEM3-GC31-LL,"hadgem3-gc31-ll (uk - mohc, nerc), cmip6 historcial run mean temperature difference relative to observed data;the difference between hadgem3-gc31-ll (uk - mohc, nerc), cmip6 historcial run mean temperature and observed data;hadgem3-gc31-ll (uk - mohc, nerc), cmip6 historcial run mean temperature minus observed data;observed data minus hadgem3-gc31-ll (uk - mohc, nerc), cmip6 historcial run mean temperature" -DifferenceRelativeToObservationalData_Mean_Temperature_HADGEM3-GC31-MM,"the difference between the average temperature predicted by the climate model hadgem3-gc31-mm and the average temperature observed in the united states;the climate model hadgem3-gc31-mm's prediction of the change in temperature in the united states;the change in temperature predicted by the climate model hadgem3-gc31-mm for the united states;the difference between the average temperature predicted by the climate model hadgem3-gc31-mm and the average temperature observed in the united states, relative to the observed temperature" -DifferenceRelativeToObservationalData_Mean_Temperature_IITM-ESM,the difference between the mean temperature of the climate model iitm-esm and the observed data;the climate model iitm-esm's mean temperature compared to the observed data;the climate model iitm-esm's mean temperature minus the observed data;the observed data minus the climate model iitm-esm's mean temperature -DifferenceRelativeToObservationalData_Mean_Temperature_INM-CM4-8,how much warmer is the climate model inm-cm4-8 than observed data;how much does the climate model inm-cm4-8 deviate from observed data in terms of temperature;how does the climate model inm-cm4-8 compare to observed data in terms of temperature;how does the climate model inm-cm4-8 differ from observed data in terms of temperature -DifferenceRelativeToObservationalData_Mean_Temperature_INM-CM5-0,the difference between the average temperature predicted by climate models and the average temperature observed in the real world for inm-cm5-0;the average temperature predicted by climate models for inm-cm5-0 minus the average temperature observed in the real world;the amount by which the average temperature predicted by climate models for inm-cm5-0 is higher or lower than the average temperature observed in the real world;the discrepancy between the average temperature predicted by climate models and the average temperature observed in the real world for inm-cm5-0 -DifferenceRelativeToObservationalData_Mean_Temperature_IPSL-CM6A-LR,the difference between the average temperature predicted by the ipsl-cm6a-lr climate model and the average temperature observed in reality;the amount by which the average temperature predicted by the ipsl-cm6a-lr climate model is higher or lower than the average temperature observed in reality;the deviation of the average temperature predicted by the ipsl-cm6a-lr climate model from the average temperature observed in reality;the discrepancy between the average temperature predicted by the ipsl-cm6a-lr climate model and the average temperature observed in reality -DifferenceRelativeToObservationalData_Mean_Temperature_KACE-1-0-G,the mean temperature difference between the climate model kace-1-0-g cmp6 and observed data;the difference between the mean temperature of the climate model kace-1-0-g cmp6 and observed data;the climate model kace-1-0-g cmp6's mean temperature compared to observed data;the difference in mean temperature between the climate model kace-1-0-g cmp6 and observed data -DifferenceRelativeToObservationalData_Mean_Temperature_KIOST-ESM, -DifferenceRelativeToObservationalData_Mean_Temperature_MIROC-ES2L,how much warmer is the miroc-es2l climate model than observed data;the difference between the miroc-es2l climate model and observed data in terms of temperature;the miroc-es2l climate model's temperature difference from observed data;the miroc-es2l climate model's temperature deviation from observed data -DifferenceRelativeToObservationalData_Mean_Temperature_MIROC6, -DifferenceRelativeToObservationalData_Mean_Temperature_MPI-ESM1-2-HR,difference between the mean temperature of the climate model mpi-esm1-2-hr and the observed data;the difference between the mean temperature of the climate model mpi-esm1-2-hr and the observed data;the climate model mpi-esm1-2-hr's mean temperature compared to the observed data;the climate model mpi-esm1-2-hr's mean temperature minus the observed data -DifferenceRelativeToObservationalData_Mean_Temperature_MPI-ESM1-2-LR,mean temperature difference between observed data and mpi-esm1-2-lr climate model;difference between observed temperature and mpi-esm1-2-lr climate model temperature;temperature difference between mpi-esm1-2-lr climate model and observed data;mpi-esm1-2-lr climate model temperature minus observed temperature -DifferenceRelativeToObservationalData_Mean_Temperature_MRI-ESM2-0, -DifferenceRelativeToObservationalData_Mean_Temperature_NESM3, -DifferenceRelativeToObservationalData_Mean_Temperature_NORESM2-LM,the difference between the mean temperature of the climate model noresm2-lm and the observed data;the deviation of the mean temperature of the climate model noresm2-lm from the observed data;the discrepancy between the mean temperature of the climate model noresm2-lm and the observed data;the disparity between the mean temperature of the climate model noresm2-lm and the observed data -DifferenceRelativeToObservationalData_Mean_Temperature_NORESM2-MM,how does the climate model noresm2-mm compare to observed data in terms of temperature;what is the difference between the climate model noresm2-mm and observed data in terms of temperature;how does the climate model noresm2-mm deviate from observed data in terms of temperature;what is the temperature difference between the climate model noresm2-mm and observed data -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_ACCESS-CM2,the difference between the average temperature predicted by the climate model ssp245_access-cm2 and the average temperature observed in the united states;the change in temperature predicted by the climate model ssp245_access-cm2 relative to the average temperature observed in the united states;the average temperature predicted by the climate model ssp245_access-cm2 minus the average temperature observed in the united states;the difference between the predicted and observed temperatures in the united states according to the climate model ssp245_access-cm2 -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_ACCESS-ESM1-5,ssp245_access-esm1-5 climate model mean temperature difference relative to observed data;mean temperature difference between ssp245_access-esm1-5 climate model and observed data;difference between ssp245_access-esm1-5 climate model and observed data in terms of mean temperature;observed data minus ssp245_access-esm1-5 climate model mean temperature -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_BCC-CSM2-MR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CANESM5,"the change in temperature predicted by the canesm5 climate model compared to the real world, based on the rcp 45 scenario;the change in temperature predicted by the canesm5 climate model compared to the real world, under the rcp 45 scenario;the change in temperature predicted by the canesm5 climate model compared to the observed temperature, based on the rcp 45 scenario;the change in temperature predicted by the canesm5 climate model compared to the observed temperature, under the rcp 45 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CESM2, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CESM2-WACCM,"the difference between the average temperature predicted by the cesm2-waccm climate model and the average temperature observed in the real world, based on the rcp 45 scenario;the change in temperature predicted by the cesm2-waccm climate model compared to the observed temperature, based on the rcp 45 scenario;the difference between the predicted and observed temperatures in the cesm2-waccm climate model, based on the rcp 45 scenario;the change in temperature in the cesm2-waccm climate model, based on the rcp 45 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CMCC-CM2-SR5,"the difference between the climate model cmcc-cm2-sr5 based on the rcp 45 scenario and observed data in terms of temperature;the average temperature predicted by the climate model cmcc-cm2-sr5, minus the average temperature observed in the real world, based on the rcp 45 scenario;the average temperature predicted by the climate model cmcc-cm2-sr5, relative to the average temperature observed in the real world, based on the rcp 45 scenario;the average temperature predicted by the cmcc-cm2-sr5 climate model, minus the average temperature observed in reality, based on the rcp 45 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CMCC-ESM2, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CNRM-CM6-1, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_CNRM-ESM2-1,"the average temperature change in france, based on the cnrm-esm2-1 model, rcp 45, and ssp 2;the difference between the average temperature in france and the observed data, based on the cnrm-esm2-1 model, rcp 45, and ssp 2;the average temperature in france, as compared to the observed data, based on the cnrm-esm2-1 model, rcp 45, and ssp 2;the average temperature change in france, as predicted by the cnrm-esm2-1 model, rcp 45, and ssp 2, relative to the observed data" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_EC-EARTH3, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_EC-EARTH3-VEG-LR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_FGOALS-G3,difference between fgoals-g3 climate model and observed data for mean temperature in rcp 45 ssp 2 scenario;fgoals-g3 climate model mean temperature deviation from observed data in rcp 45 ssp 2 scenario;observed data minus fgoals-g3 climate model mean temperature in rcp 45 ssp 2 scenario;fgoals-g3 climate model mean temperature minus observed data in rcp 45 ssp 2 scenario -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_GFDL-CM4, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_GFDL-ESM4, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_GISS-E2-1-G,the mean temperature as projected by rcp 45;the mean temperature according to rcp 45;the mean temperature as estimated by rcp 45 -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_HADGEM3-GC31-LL, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_IITM-ESM,"1 the difference between the average temperature predicted by the iitm-esm climate model and the average temperature observed in the real world, based on the rcp 45 and ssp 2 scenarios;2 the iitm-esm climate model's prediction of how much the average temperature will change compared to the average temperature observed in the real world, based on the rcp 45 and ssp 2 scenarios;3 the difference between the average temperature predicted by the iitm-esm climate model and the average temperature observed in the real world, under the rcp 45 and ssp 2 scenarios;4 the iitm-esm climate model's prediction of how much the average temperature will change compared to the average temperature observed in the real world, under the rcp 45 and ssp 2 scenarios" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_INM-CM4-8,"the difference between the mean temperature predicted by the inm-cm4-8 climate model and the observed temperature data, based on the ssp 2 scenario;the change in temperature predicted by the inm-cm4-8 climate model, relative to observed temperature data, based on the ssp 2 scenario;the projected temperature change, based on the ssp 2 scenario, as predicted by the inm-cm4-8 climate model;the temperature difference between the inm-cm4-8 climate model's prediction and observed data, based on the ssp 2 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_INM-CM5-0, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_IPSL-CM6A-LR,how much warmer is the ipsl-cm6a-lr climate model than observed data for the rcp 45 ssp 2 scenario;what is the difference between the ipsl-cm6a-lr climate model and observed data for the rcp 45 ssp 2 scenario;what is the temperature difference between the ipsl-cm6a-lr climate model and observed data for the rcp 45 ssp 2 scenario;what is the change in temperature between the ipsl-cm6a-lr climate model and observed data for the rcp 45 ssp 2 scenario -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_KACE-1-0-G, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_KIOST-ESM,"mean temperature change relative to observed data for kiost-esm (korea - kiost) based on rcp 45, ssp 2;difference between observed and projected temperature for kiost-esm (korea - kiost) based on rcp 45, ssp 2;the mean temperature of kiost-esm (korea - kiost), based on rcp 45, ssp 2;the temperature difference between kiost-esm (korea - kiost) and observed data, based on rcp 45, ssp 2" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_MIROC-ES2L,"how much warmer is it in the miroc-es2l climate model than in observed data, based on the rcp 45 ssp 2 scenario?;what is the difference between the temperature in the miroc-es2l climate model and observed data, based on the rcp 45 ssp 2 scenario?;what is the temperature anomaly in the miroc-es2l climate model, relative to observed data, based on the rcp 45 ssp 2 scenario?;what is the temperature change in the miroc-es2l climate model, relative to observed data, based on the rcp 45 ssp 2 scenario?" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_MIROC6, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_MPI-ESM1-2-HR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_MPI-ESM1-2-LR,"the difference between the mean temperature of the climate model mpi-esm1-2-lr and the observed data for the rcp 45, ssp 2 scenario;the change in the mean temperature of the climate model mpi-esm1-2-lr relative to the observed data for the rcp 45, ssp 2 scenario;the deviation of the mean temperature of the climate model mpi-esm1-2-lr from the observed data for the rcp 45, ssp 2 scenario;the discrepancy between the mean temperature of the climate model mpi-esm1-2-lr and the observed data for the rcp 45, ssp 2 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_MRI-ESM2-0,how much warmer is the mri csm 26 climate model than observed data for the rcp 45 ssp 2 scenario;how much does the mri csm 26 climate model differ from observed data for the rcp 45 ssp 2 scenario in terms of temperature;what is the temperature difference between the mri csm 26 climate model and observed data for the rcp 45 ssp 2 scenario;how does the mri csm 26 climate model compare to observed data for the rcp 45 ssp 2 scenario in terms of temperature -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_NESM3,"the mean temperature difference between the climate model nesm3 and observed data for the rcp 45, ssp 2 scenario;the difference between the mean temperature of the climate model nesm3 and observed data for the rcp 45, ssp 2 scenario;the climate model nesm3's mean temperature compared to observed data for the rcp 45, ssp 2 scenario;the mean temperature of the climate model nesm3 relative to observed data for the rcp 45, ssp 2 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_NORESM2-LM, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_NORESM2-MM, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_TAIESM1,"the average temperature change predicted by the climate model taiesm1, based on the rcp 45 scenario;the change in temperature predicted by the taiesm1 climate model based on the rcp 45 scenario compared to observed temperatures;the predicted temperature change for the taiesm1 climate model based on the rcp 45 scenario relative to observed temperatures;the temperature change predicted by the taiesm1 climate model based on the rcp 45 scenario compared to observed temperatures" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP245_UKESM1-0-LL,"the average temperature in the ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa) model, based on rcp 45 and ssp 2, is different from the observed data;the ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa) model predicts a different average temperature than the observed data, based on rcp 45 and ssp 2;the ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa) model's prediction of the average temperature is different from the observed data, based on rcp 45 and ssp 2;the ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa) model's prediction of the average temperature is not the same as the observed data, based on rcp 45 and ssp 2" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_ACCESS-CM2, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_ACCESS-ESM1-5,"the difference between the average temperature predicted by the climate model access-esm1-5 and the average temperature observed in the past, based on the rcp 85 and ssp 5 scenarios;the change in temperature predicted by the climate model access-esm1-5 compared to the average temperature observed in the past, based on the rcp 85 and ssp 5 scenarios;the projected temperature change predicted by the climate model access-esm1-5, based on the rcp 85 and ssp 5 scenarios;the difference between the average temperature predicted by the climate model access-esm1-5 and the average temperature observed in the past, under the rcp 85 and ssp 5 scenarios" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_BCC-CSM2-MR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CANESM5,"the difference between the average temperature predicted by the canesm5 climate model and the average temperature observed in the real world, based on the rcp 85 and ssp 5 scenarios;the change in temperature predicted by the canesm5 climate model compared to the observed temperature, based on the rcp 85 and ssp 5 scenarios;the deviation of the predicted temperature from the observed temperature, based on the canesm5 climate model and the rcp 85 and ssp 5 scenarios;the difference between the average temperature predicted by the canesm5 climate model and the average temperature observed in the real world, under the rcp 85 and ssp 5 scenarios" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CESM2,"the mean temperature difference between observed data and the cesm2 climate model based on the rcp 85, ssp 5 scenario;the difference between the mean temperature of observed data and the cesm2 climate model based on the rcp 85, ssp 5 scenario;the change in mean temperature between observed data and the cesm2 climate model based on the rcp 85, ssp 5 scenario;the deviation of mean temperature from observed data in the cesm2 climate model based on the rcp 85, ssp 5 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CESM2-WACCM, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CMCC-CM2-SR5,"the difference between the average temperature predicted by the climate model cmcc-cm2-sr5 and the average temperature observed in the real world, based on the rcp 85 and ssp 5 scenarios;the change in temperature predicted by the climate model cmcc-cm2-sr5 compared to the observed temperature, based on the rcp 85 and ssp 5 scenarios;the deviation of the predicted temperature from the observed temperature, based on the climate model cmcc-cm2-sr5, rcp 85, and ssp 5 scenarios;the difference between the mean temperature of the climate model cmcc-cm2-sr5 and the observed data for the rcp 85, ssp 5 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CMCC-ESM2,"how much warmer is it in the cmcc-esm2 climate model than observed data, based on the rcp 85, ssp 5 scenario;how much does the cmcc-esm2 climate model predict the temperature to increase relative to observed data, based on the rcp 85, ssp 5 scenario;what is the difference between the cmcc-esm2 climate model's predicted temperature and observed data, based on the rcp 85, ssp 5 scenario;what is the predicted temperature increase in the cmcc-esm2 climate model, relative to observed data, based on the rcp 85, ssp 5 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CNRM-CM6-1,"the difference between the average temperature predicted by the climate model cnrm-cm6-1 and the average temperature observed in the real world, based on the rcp 85 scenario;the change in temperature predicted by the climate model cnrm-cm6-1 compared to the observed temperature, based on the rcp 85 scenario;the difference between the predicted and observed temperatures, based on the rcp 85 scenario, as predicted by the climate model cnrm-cm6-1;the change in temperature, as predicted by the climate model cnrm-cm6-1, compared to the observed temperature, based on the rcp 85 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_CNRM-ESM2-1, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_EC-EARTH3, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_EC-EARTH3-VEG-LR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_FGOALS-G3, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_GFDL-CM4, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_GFDL-ESM4, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_GISS-E2-1-G, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_HADGEM3-GC31-LL, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_HADGEM3-GC31-MM, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_IITM-ESM, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_INM-CM4-8, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_INM-CM5-0,"the difference between the mean temperature predicted by the inm-cm5-0 climate model and the mean temperature observed in the real world, based on the rcp 85 emissions scenario;the difference between the mean temperature predicted by the inm-cm5-0 climate model and the mean temperature observed in the real world, under the rcp 85 emissions scenario;the difference between the average temperature predicted by the inm-cm5-0 climate model and the average temperature observed in the real world, based on the rcp 85 emissions scenario;the amount by which the average temperature is expected to change, according to the inm-cm5-0 climate model, based on the rcp 85 emissions scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_IPSL-CM6A-LR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_KACE-1-0-G, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_KIOST-ESM,"the difference between the average temperature predicted by the kiost-esm climate model and the average temperature observed in the real world, based on the rcp 85 emissions scenario;the change in temperature predicted by the kiost-esm climate model compared to the observed temperature, based on the rcp 85 emissions scenario;the deviation of the average temperature predicted by the kiost-esm climate model from the observed temperature, based on the rcp 85 emissions scenario;the difference between the predicted and observed temperatures, based on the kiost-esm climate model and the rcp 85 emissions scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_MIROC-ES2L, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_MIROC6, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_MPI-ESM1-2-HR,the mpi-esm1-2-hr climate model predicts that the average temperature in the united states will be 23 degrees celsius warmer than observed data by the end of the century under the rcp 85 emissions scenario;the mpi-esm1-2-hr climate model predicts that the average temperature in the united states will increase by 23 degrees celsius by the end of the century under the rcp 85 emissions scenario;the mpi-esm1-2-hr climate model predicts that the average temperature in the united states will be 23 degrees celsius warmer than it is today by the end of the century under the rcp 85 emissions scenario;the mpi-esm1-2-hr climate model predicts that the average temperature in the united states will increase by 23 degrees celsius from today's levels by the end of the century under the rcp 85 emissions scenario -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_MPI-ESM1-2-LR, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_MRI-ESM2-0, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_NESM3, -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_NORESM2-LM,"the average temperature difference between noresm2-lm (norway - ncc) and observed data, based on rcp 85 and ssp 5;the average temperature change between noresm2-lm (norway - ncc) and observed data, based on rcp 85 and ssp 5;the average temperature deviation between noresm2-lm (norway - ncc) and observed data, based on rcp 85 and ssp 5;the average temperature variation between noresm2-lm (norway - ncc) and observed data, based on rcp 85 and ssp 5" -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_NORESM2-MM,the difference between the average temperature in the noresm2-mm climate model and the observed temperature in the rcp 85 scenario;the noresm2-mm climate model's prediction of the average temperature difference from observed data in the rcp 85 scenario;the average temperature difference between the noresm2-mm climate model and observed data in the rcp 85 scenario;the noresm2-mm climate model's prediction of the average temperature in the rcp 85 scenario relative to observed data -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_TAIESM1,how much warmer is the taiesm1 climate model than observed data under the rcp 85 scenario;how much does the taiesm1 climate model predict the temperature to increase relative to observed data under the rcp 85 scenario;what is the difference between the taiesm1 climate model and observed data in terms of temperature under the rcp 85 scenario;what is the temperature difference between the taiesm1 climate model and observed data under the rcp 85 scenario -DifferenceRelativeToObservationalData_Mean_Temperature_SSP585_UKESM1-0-LL,"the average temperature difference between the climate model ukesm1-0-ll and observed data, based on the rcp 85 scenario;the difference between the average temperature predicted by the climate model ukesm1-0-ll and the average temperature observed, based on the rcp 85 scenario;the change in temperature predicted by the climate model ukesm1-0-ll, relative to observed data, based on the rcp 85 scenario;the temperature anomaly predicted by the climate model ukesm1-0-ll, relative to observed data, based on the rcp 85 scenario" -DifferenceRelativeToObservationalData_Mean_Temperature_TAIESM1, -DifferenceRelativeToObservationalData_Mean_Temperature_UKESM1-0-LL,what is the difference between the ukesm1-0-ll climate model and observed data in terms of temperature;what is the temperature difference between the ukesm1-0-ll climate model and observed data;the difference between the average temperature predicted by the climate model ukesm1-0-ll and the average temperature observed in the real world;the climate model ukesm1-0-ll's prediction of the earth's temperature compared to the actual temperature -DifferenceRelativeToObservationalData_Min_Temperature_ACCESS-CM2,how much warmer or cooler is the access-cm2 climate model than observed data?;how much does the access-cm2 climate model deviate from observed data in terms of temperature?;the minimum temperature difference between the access-cm2 climate model and observed data;the minimum temperature difference between the access-cm2 climate model and actual data -DifferenceRelativeToObservationalData_Min_Temperature_ACCESS-ESM1-5,the minimum temperature difference between the access-esm1-5 climate model and observed data;the difference between the access-esm1-5 climate model and observed data for the minimum temperature;the access-esm1-5 climate model's minimum temperature compared to observed data;the access-esm1-5 climate model's minimum temperature minus observed data -DifferenceRelativeToObservationalData_Min_Temperature_BCC-CSM2-MR, -DifferenceRelativeToObservationalData_Min_Temperature_CANESM5, -DifferenceRelativeToObservationalData_Min_Temperature_CMCC-CM2-SR5,the minimum temperature difference between the climate model cmcc-cm2-sr5 and observed data;the difference between the minimum temperature in the climate model cmcc-cm2-sr5 and observed data;the minimum temperature in the climate model cmcc-cm2-sr5 is lower than observed data by;the climate model cmcc-cm2-sr5 predicts a lower minimum temperature than observed data -DifferenceRelativeToObservationalData_Min_Temperature_CMCC-ESM2,how much colder is the climate model cmcc-esm2 than observed data;how does the climate model cmcc-esm2 compare to observed data in terms of temperature;what is the temperature difference between the climate model cmcc-esm2 and observed data;what is the temperature difference between the climate model cmcc-esm2 and real-world data -DifferenceRelativeToObservationalData_Min_Temperature_CNRM-CM6-1,the minimum temperature difference between the observed data and the cnrm-cm6-1 climate model;the difference between the observed minimum temperature and the minimum temperature predicted by the cnrm-cm6-1 climate model;the difference between the minimum temperature observed in the real world and the minimum temperature predicted by the cnrm-cm6-1 climate model;the minimum temperature predicted by the cnrm-cm6-1 climate model minus the observed minimum temperature -DifferenceRelativeToObservationalData_Min_Temperature_CNRM-ESM2-1, -DifferenceRelativeToObservationalData_Min_Temperature_EC-EARTH3,the minimum temperature difference between the ec-earth3 climate model and observed data;the minimum temperature difference between the ec-earth3 climate model and actual temperatures;the minimum temperature difference between the ec-earth3 climate model and real-world temperatures;the minimum temperature difference between the ec-earth3 climate model and measured temperatures -DifferenceRelativeToObservationalData_Min_Temperature_EC-EARTH3-VEG-LR,the minimum temperature difference between the ec-earth3-veg-lr climate model and observed data;the minimum temperature difference between the ec-earth3-veg-lr climate model and the real world;the minimum temperature difference between the ec-earth3-veg-lr climate model and reality;the minimum temperature difference between the ec-earth3-veg-lr climate model and the actual temperature -DifferenceRelativeToObservationalData_Min_Temperature_FGOALS-G3, -DifferenceRelativeToObservationalData_Min_Temperature_GFDL-CM4,"the minimum temperature difference between the gfdl-cm4 climate model and observed data;the difference between the minimum temperature in the gfdl-cm4 climate model and observed data;the gfdl-cm4 climate model's minimum temperature compared to observed data;the difference between the minimum temperature in the gfdl-cm4 climate model and observed data, in degrees fahrenheit" -DifferenceRelativeToObservationalData_Min_Temperature_GFDL-ESM4, -DifferenceRelativeToObservationalData_Min_Temperature_GISS-E2-1-G, -DifferenceRelativeToObservationalData_Min_Temperature_HADGEM3-GC31-LL,"the minimum temperature in the hadgem3-gc31-ll (uk - mohc, nerc) cmip6 historical run is lower than the observed data;the hadgem3-gc31-ll (uk - mohc, nerc) cmip6 historical run shows a lower minimum temperature than observed data;the hadgem3-gc31-ll (uk - mohc, nerc) cmip6 historical run has a lower minimum temperature than observed data;the hadgem3-gc31-ll (uk - mohc, nerc) cmip6 historical run indicates a lower minimum temperature than observed data" -DifferenceRelativeToObservationalData_Min_Temperature_HADGEM3-GC31-MM,the minimum temperature difference between the hadgem3-gc31-mm climate model and observed data;the difference between the minimum temperature in the hadgem3-gc31-mm climate model and observed data;the amount by which the minimum temperature in the hadgem3-gc31-mm climate model is different from observed data;the hadgem3-gc31-mm climate model's minimum temperature compared to observed data -DifferenceRelativeToObservationalData_Min_Temperature_INM-CM4-8,the minimum temperature in the inm-cm4-8 (russia - inm) model run from the cmip6 historical experiment is lower than the observed data;the inm-cm4-8 (russia - inm) model run from the cmip6 historical experiment underestimates the minimum temperature;the inm-cm4-8 (russia - inm) model run from the cmip6 historical experiment is too cold;the inm-cm4-8 (russia - inm) model run from the cmip6 historical experiment is not as warm as the observed data -DifferenceRelativeToObservationalData_Min_Temperature_INM-CM5-0,"the minimum temperature difference between the climate model inm-cm5-0 and observed data;the difference between the minimum temperature in the climate model inm-cm5-0 and the minimum temperature in observed data;the climate model inm-cm5-0's minimum temperature minus the observed minimum temperature;the difference between the minimum temperature in the climate model inm-cm5-0 and the observed minimum temperature, in degrees celsius" -DifferenceRelativeToObservationalData_Min_Temperature_IPSL-CM6A-LR, -DifferenceRelativeToObservationalData_Min_Temperature_KACE-1-0-G,the minimum temperature difference between the climate model kace-1-0-g and observed data;the difference between the minimum temperature in the climate model kace-1-0-g and observed data;the minimum temperature in the climate model kace-1-0-g is lower than observed data by;the climate model kace-1-0-g underestimates the minimum temperature by -DifferenceRelativeToObservationalData_Min_Temperature_KIOST-ESM,the difference between the minimum temperature predicted by the kiost-esm climate model and the observed minimum temperature;the minimum temperature predicted by the kiost-esm climate model minus the observed minimum temperature;the observed minimum temperature minus the minimum temperature predicted by the kiost-esm climate model;the amount by which the minimum temperature predicted by the kiost-esm climate model differs from the observed minimum temperature -DifferenceRelativeToObservationalData_Min_Temperature_MIROC-ES2L,the minimum temperature in the miroc-es2l (japan - miroc) cmip6 historical run is lower than the observed data;the miroc-es2l (japan - miroc) cmip6 historical run shows a lower minimum temperature than the observed data;the minimum temperature in the miroc-es2l (japan - miroc) cmip6 historical run is below the observed data;the miroc-es2l (japan - miroc) cmip6 historical run shows a below-average minimum temperature -DifferenceRelativeToObservationalData_Min_Temperature_MIROC6, -DifferenceRelativeToObservationalData_Min_Temperature_MPI-ESM1-2-HR, -DifferenceRelativeToObservationalData_Min_Temperature_MPI-ESM1-2-LR, -DifferenceRelativeToObservationalData_Min_Temperature_MRI-ESM2-0, -DifferenceRelativeToObservationalData_Min_Temperature_NESM3,"the minimum temperature difference between the nesm3 climate model and observed data;the difference between the nesm3 climate model and observed data, in terms of minimum temperature;the nesm3 climate model's minimum temperature, compared to observed data;the difference between the nesm3 climate model's minimum temperature and observed data" -DifferenceRelativeToObservationalData_Min_Temperature_NORESM2-LM, -DifferenceRelativeToObservationalData_Min_Temperature_NORESM2-MM, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_ACCESS-CM2,"the minimum temperature difference between the access-cm2 climate model and observed data, based on the rcp 45 scenario;the minimum temperature difference between the access-cm2 climate model and observed data, as projected under the rcp 45 scenario;the minimum temperature difference between the access-cm2 climate model and observed data, as projected under the rcp 45 emissions scenario;the minimum temperature difference between the access-cm2 climate model and observed data, as projected under the rcp 45 pathway" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_ACCESS-ESM1-5, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_BCC-CSM2-MR,"the difference between the minimum temperature observed and the minimum temperature predicted by the climate model bcc-csm2-mr based on the rcp 45 scenario;the amount by which the minimum temperature predicted by the climate model bcc-csm2-mr based on the rcp 45 scenario is higher or lower than the minimum temperature observed;the change in the minimum temperature predicted by the climate model bcc-csm2-mr based on the rcp 45 scenario compared to the minimum temperature observed;the difference between the minimum temperature predicted by the climate model bcc-csm2-mr based on the rcp 45 scenario and the minimum temperature observed, expressed as a percentage" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_CANESM5,"the difference between the minimum temperature predicted by the canesm5 climate model and the observed minimum temperature for the rcp 45 and ssp 2 scenarios;the canesm5 climate model's prediction of the minimum temperature relative to observed data for the rcp 45 and ssp 2 scenarios;the minimum temperature difference between the canesm5 climate model's prediction and observed data for the rcp 45 and ssp 2 scenarios;the canesm5 climate model's prediction of the minimum temperature for the rcp 45 and ssp 2 scenarios, minus the observed minimum temperature" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_CMCC-CM2-SR5,the difference between the minimum temperature predicted by the cmcc-cm2-sr5 climate model and the observed minimum temperature for the rcp 45 and ssp 2 scenarios;the change in minimum temperature predicted by the cmcc-cm2-sr5 climate model compared to observed minimum temperature for the rcp 45 and ssp 2 scenarios;the deviation of minimum temperature predicted by the cmcc-cm2-sr5 climate model from observed minimum temperature for the rcp 45 and ssp 2 scenarios;the variation of minimum temperature predicted by the cmcc-cm2-sr5 climate model from observed minimum temperature for the rcp 45 and ssp 2 scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_CMCC-ESM2,"the minimum temperature difference between the cmcc-esm2 model and observed data, based on rcp 45 and ssp 2;the minimum temperature difference between the cmcc-esm2 model and observed data, based on the rcp 45 scenario and the ssp 2 scenario;the minimum temperature difference between the cmcc-esm2 model and observed data, based on the rcp 45 pathway and the ssp 2 pathway;the minimum temperature difference between the cmcc-esm2 model and observed data, based on the rcp 45 representative concentration pathway and the ssp 2 shared socioeconomic pathway" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_CNRM-CM6-1,"the minimum temperature in the cnrm-cm6-1 model, based on rcp 45 and ssp 2, is different from the observed data;the cnrm-cm6-1 model predicts a minimum temperature that is different from the observed data, based on rcp 45 and ssp 2;the cnrm-cm6-1 model, based on rcp 45 and ssp 2, predicts a minimum temperature that is not the same as the observed data;the cnrm-cm6-1 model, based on rcp 45 and ssp 2, predicts a minimum temperature that is not in line with the observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_CNRM-ESM2-1,minimum temperature difference compared to observational data in the rcp 45 climate model scenario;minimum temperature difference between the rcp 45 climate model scenario and observational data;the difference between the minimum temperature in the rcp 45 climate model scenario and observational data;the minimum temperature in the rcp 45 climate model scenario minus observational data -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_EC-EARTH3,the ec-earth3 model predicts that the minimum temperature will be lower than observed data under rcp 45 and ssp 2;the ec-earth3 model projects a decrease in minimum temperature relative to observed data under rcp 45 and ssp 2;the ec-earth3 model suggests that the minimum temperature will be cooler than observed data under rcp 45 and ssp 2;the ec-earth3 model indicates that the minimum temperature will be lower than observed data under rcp 45 and ssp 2 -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_EC-EARTH3-VEG-LR,how much warmer is the ec-earth3-veg-lr climate model than observed data in the rcp 45 scenario;the difference between the ec-earth3-veg-lr climate model and observed data in the rcp 45 scenario;the ec-earth3-veg-lr climate model's temperature difference from observed data in the rcp 45 scenario;the temperature difference between the ec-earth3-veg-lr climate model and observed data in the rcp 45 scenario -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_FGOALS-G3,"the minimum temperature difference between the fgoals-g3 climate model and observed data, based on the rcp 45 scenario;the difference between the minimum temperature predicted by the fgoals-g3 climate model and the minimum temperature observed in reality, based on the rcp 45 scenario;the minimum temperature that the fgoals-g3 climate model predicts will be reached, minus the minimum temperature that has actually been observed, based on the rcp 45 scenario;the minimum temperature that the fgoals-g3 climate model predicts will be reached, compared to the minimum temperature that has actually been observed, based on the rcp 45 scenario" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_GFDL-CM4, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_GFDL-ESM4,the minimum temperature difference between the gfdl-esm4 climate model and observed data for the rcp 45 scenario;the difference between the minimum temperature in the gfdl-esm4 climate model and observed data for the rcp 45 scenario;the minimum temperature in the gfdl-esm4 climate model minus the minimum temperature in observed data for the rcp 45 scenario;the minimum temperature in the gfdl-esm4 climate model for the rcp 45 scenario minus the minimum temperature in observed data -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_GISS-E2-1-G, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_HADGEM3-GC31-LL,"minimum temperature based on rcp 45, ssp 2;minimum temperature in rcp 45, ssp 2;lowest temperature based on rcp 45, ssp 2" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_INM-CM4-8, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_INM-CM5-0, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_IPSL-CM6A-LR, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_KACE-1-0-G, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_KIOST-ESM,"the minimum temperature difference between the kiost-esm (korea - kiost) model and observed data, based on rcp 45 and ssp 2;the minimum temperature change predicted by the kiost-esm (korea - kiost) model, based on rcp 45 and ssp 2, compared to observed data;the minimum temperature difference between the kiost-esm (korea - kiost) model and observed data, under the rcp 45 and ssp 2 scenarios;the minimum temperature change predicted by the kiost-esm (korea - kiost) model, under the rcp 45 and ssp 2 scenarios, compared to observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_MIROC-ES2L, -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_MIROC6,"how much warmer is the miroc6 climate model than observed data for the rcp 45, ssp 2 scenario;how much does the miroc6 climate model predict the temperature to increase relative to observed data for the rcp 45, ssp 2 scenario;what is the difference between the miroc6 climate model and observed data for the rcp 45, ssp 2 scenario in terms of temperature;what is the temperature difference between the miroc6 climate model and observed data for the rcp 45, ssp 2 scenario" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_MPI-ESM1-2-HR,"the minimum temperature difference between the climate model mpi-esm1-2-hr and observed data, based on the rcp 45 and ssp 2 scenarios;the difference between the minimum temperature in the climate model mpi-esm1-2-hr and the minimum temperature in observed data, based on the rcp 45 and ssp 2 scenarios;the minimum temperature in the climate model mpi-esm1-2-hr, minus the minimum temperature in observed data, based on the rcp 45 and ssp 2 scenarios;the minimum temperature in the climate model mpi-esm1-2-hr, as compared to observed data, based on the rcp 45 and ssp 2 scenarios" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_MPI-ESM1-2-LR,"the minimum temperature difference relative to observed data for mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz), based on rcp 45, ssp 2;the minimum temperature change relative to observed data for mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz), based on rcp 45, ssp 2;the minimum temperature deviation from observed data for mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz), based on rcp 45, ssp 2;the minimum temperature variation from observed data for mpi-esm1-2-lr (germany - mpi, awi, dwd, dkrz), based on rcp 45, ssp 2" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_MRI-ESM2-0,"the minimum temperature difference between the observed data and the mri-esm2-0 model, based on rcp 45 and ssp 2;the minimum temperature change from the observed data to the mri-esm2-0 model, based on rcp 45 and ssp 2;the minimum temperature deviation from the observed data in the mri-esm2-0 model, based on rcp 45 and ssp 2;the minimum temperature discrepancy between the observed data and the mri-esm2-0 model, based on rcp 45 and ssp 2" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_NESM3,"the minimum temperature difference between the nesm3 climate model and observed data in china, based on the rcp 45 and ssp 2 emission scenarios;the minimum temperature difference between the nesm3 climate model and observed data in china, under the rcp 45 and ssp 2 emission scenarios;the minimum temperature difference between the nesm3 climate model and observed data in china, as projected by the rcp 45 and ssp 2 emission scenarios;the minimum temperature difference between the nesm3 climate model and observed data in china, as predicted by the rcp 45 and ssp 2 emission scenarios" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_NORESM2-LM,"the minimum temperature in the noresm2-lm model (norway - ncc), based on rcp 45, ssp 2, is lower than the observed data;the noresm2-lm model (norway - ncc), based on rcp 45, ssp 2, predicts a lower minimum temperature than the observed data;the noresm2-lm model (norway - ncc), based on rcp 45, ssp 2, shows a lower minimum temperature than the observed data;the noresm2-lm model (norway - ncc), based on rcp 45, ssp 2, projects a lower minimum temperature than the observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_NORESM2-MM,"noresm2-mm (norway - ncc) minimum temperature, relative to observed data, under rcp 45 and ssp 2;noresm2-mm (norway - ncc) minimum temperature, relative to observed data, under the rcp 45 and ssp 2 scenarios;noresm2-mm (norway - ncc) minimum temperature, relative to observed data, under the rcp 45 and ssp 2 pathways;noresm2-mm (norway - ncc) minimum temperature, relative to observed data, under the rcp 45 and ssp 2 projections" -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_TAIESM1,the minimum temperature based on the rcp 45 and ssp 2 emission scenarios;lowest temperature based on rcp 45 and ssp 2 emission scenario;temperature floor based on rcp 45 and ssp 2 emission scenario;temperature lower bound based on rcp 45 and ssp 2 emission scenario -DifferenceRelativeToObservationalData_Min_Temperature_SSP245_UKESM1-0-LL,"the minimum temperature difference relative to observed data for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2;the lowest temperature difference between the observed data and the model output for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2;the minimum temperature difference between the observed data and the model output for ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa), based on rcp 45, ssp 2, at any point in time;the minimum temperature in the ukesm1-0-ll (uk, korea, new zealand - mohc, nerc, nims-kma, niwa) model, based on rcp 45 and ssp 2, is lower than the observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_ACCESS-CM2,mean temperatures based on the rcp 85 emission scenario -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_ACCESS-ESM1-5,"the minimum temperature difference between observed data and the rcp 85, ssp 5 scenario;the minimum temperature difference between the observed data and the data based on rcp 85 and ssp 5;the minimum temperature difference between the observed data and the data based on the rcp 85 projection and the ssp 5 projection" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_BCC-CSM2-MR,the minimum temperature in china based on the rcp 85 and ssp 5 emission scenarios;the lowest temperature in china predicted by the rcp 85 and ssp 5 emission scenarios;the lowest temperature that china is likely to experience under the rcp 85 and ssp 5 emission scenarios;the minimum temperature in china that is projected to occur under the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_CANESM5,1 the lowest temperature in canada based on the rcp 85 emission scenario;2 the coldest temperature in canada according to the rcp 85 emission scenario;3 the minimum temperature in canada predicted by the rcp 85 emission scenario;4 the lowest temperature that canada is expected to experience based on the rcp 85 emission scenario -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_CMCC-CM2-SR5, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_CMCC-ESM2,"the lowest temperature in the cmcc-esm2 model, based on rcp 85 and ssp 5, is different from the observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_CNRM-CM6-1,"the minimum temperature in the cnrm-cm6-1 model, based on rcp 85 and ssp 5, is lower than the observed data;the cnrm-cm6-1 model predicts a lower minimum temperature than observed data, based on rcp 85 and ssp 5;the cnrm-cm6-1 model, based on rcp 85 and ssp 5, predicts a minimum temperature that is lower than the observed data;the cnrm-cm6-1 model, based on rcp 85 and ssp 5, predicts a minimum temperature that is less than the observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_CNRM-ESM2-1,"the median of the highest temperature difference relative to observed data in 2015, based on the rcp 45 and ssp 2 emissions scenarios;the median of the highest temperature difference relative to 2015 observed data, based on the rcp 45 and ssp 2 emissions scenarios;the median of the highest temperature difference relative to the observed data in 2015, based on the rcp 45 and ssp 2 emissions scenarios;the median of the highest temperature difference, relative to the observed data in 2015, based on the rcp 45 and ssp 2 emissions scenarios" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_EC-EARTH3,the difference between the minimum temperature in europe and the observed data based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in europe compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the variation in the minimum temperature in europe compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the deviation of the minimum temperature in europe from the observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_EC-EARTH3-VEG-LR, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_FGOALS-G3,minimum temperature fgoals based on rcp 85 and ssp 5 emission scenario;minimum temperature fgoals under rcp 85 and ssp 5 emission scenario;minimum temperature fgoals with rcp 85 and ssp 5 emission scenario;minimum temperature fgoals for rcp 85 and ssp 5 emission scenario -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_GFDL-CM4,the difference between the minimum temperature and the observed data based on the rcp 85 and ssp 5 emission scenarios;the minimum temperature change from the observed data based on the rcp 85 and ssp 5 emission scenarios;the minimum temperature deviation from the observed data based on the rcp 85 and ssp 5 emission scenarios;the minimum temperature variation from the observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_GFDL-ESM4,the lowest temperature in the usa according to the rcp 85 and ssp 5 emission scenarios;the lowest temperature in the usa projected by the rcp 85 and ssp 5 emission scenarios;the minimum temperature in the usa under the rcp 85 and ssp 5 emission scenarios;the lowest temperature that is expected in the usa under the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_GISS-E2-1-G,"the minimum temperature in the giss-e2-1-g model, based on rcp 85 and ssp 5, is lower than the observed data;the giss-e2-1-g model predicts a lower minimum temperature than observed data, based on rcp 85 and ssp 5;the giss-e2-1-g model, based on rcp 85 and ssp 5, predicts a minimum temperature that is lower than the observed data;the giss-e2-1-g model, based on rcp 85 and ssp 5, predicts a temperature that is lower than the observed minimum temperature" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_HADGEM3-GC31-LL,1 the difference between the minimum temperature in the uk and the observed data based on rcp 85 and ssp 5 emission scenarios;2 the change in the minimum temperature in the uk compared to the observed data based on rcp 85 and ssp 5 emission scenarios;3 the variation in the minimum temperature in the uk compared to the observed data based on rcp 85 and ssp 5 emission scenarios;4 the deviation of the minimum temperature in the uk from the observed data based on rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_HADGEM3-GC31-MM,"hadgem3-gc31-mm (uk - mohc) minimum temperature relative to observed data, based on rcp 85, ssp 5;the minimum temperature difference between hadgem3-gc31-mm (uk - mohc) and observed data, based on rcp 85, ssp 5;the minimum temperature change between hadgem3-gc31-mm (uk - mohc) and observed data, based on rcp 85, ssp 5;the minimum temperature deviation between hadgem3-gc31-mm (uk - mohc) and observed data, based on rcp 85, ssp 5" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_INM-CM4-8,"the difference between the minimum temperature predicted by the inm-cm4-8 climate model and the observed temperature in russia based on the rcp 85 and ssp 5 emission scenarios;the minimum temperature predicted by the inm-cm4-8 climate model for russia, minus the observed temperature in russia based on the rcp 85 and ssp 5 emission scenarios;the amount by which the minimum temperature predicted by the inm-cm4-8 climate model for russia is higher or lower than the observed temperature in russia based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in russia predicted by the inm-cm4-8 climate model, relative to the observed temperature in russia based on the rcp 85 and ssp 5 emission scenarios" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_INM-CM5-0,the difference between the minimum temperature in russia and the observed data based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in russia compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the variation in the minimum temperature in russia relative to the observed data based on the rcp 85 and ssp 5 emission scenarios;the deviation of the minimum temperature in russia from the observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_IPSL-CM6A-LR,"the difference between the minimum temperature in france and the observed data, based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in france, based on the rcp 85 and ssp 5 emission scenarios;the variation in the minimum temperature in france, based on the rcp 85 and ssp 5 emission scenarios;the deviation of the minimum temperature in france from the observed data, based on the rcp 85 and ssp 5 emission scenarios" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_KACE-1-0-G, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_KIOST-ESM, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_MIROC-ES2L, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_MIROC6,"the minimum temperature difference between the miroc6 model and observed data, based on rcp 85 and ssp 5;the lowest temperature that the miroc6 model predicts, compared to observed data, based on rcp 85 and ssp 5;the amount by which the miroc6 model predicts the minimum temperature will change, compared to observed data, based on rcp 85 and ssp 5;the difference between the miroc6 model's prediction of the minimum temperature and observed data, based on rcp 85 and ssp 5" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_MPI-ESM1-2-HR,the difference between the minimum temperature in germany and the observed data based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in germany compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the variation in the minimum temperature in germany compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the deviation of the minimum temperature in germany from the observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_MPI-ESM1-2-LR,"what is the difference between the projected temperature in germany and the observed temperature, under the rcp 85 emissions scenario?;the difference between the minimum temperature in germany and the minimum temperature observed in the past, based on the rcp 85 emission scenario;the change in the minimum temperature in germany, compared to the past, based on the rcp 85 emission scenario;the amount by which the minimum temperature in germany is expected to increase, based on the rcp 85 emission scenario" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_MRI-ESM2-0,"mri-esm2-0 (japan - mri) minimum temperature, based on rcp 85 and ssp 5;mri-esm2-0 (japan - mri) minimum temperature, based on rcp 85 and ssp 5, relative to observed data;the minimum temperature of mri-esm2-0 (japan - mri), based on rcp 85 and ssp 5;the minimum temperature of mri-esm2-0 (japan - mri), based on rcp 85 and ssp 5, relative to observed data" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_NESM3, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_NORESM2-LM, -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_NORESM2-MM,"the difference between the minimum temperature predicted by the noresm2-mm climate model and the observed minimum temperature in norway under the rcp 85 emission scenario;the minimum temperature that the noresm2-mm climate model predicts for norway under the rcp 85 emission scenario, minus the observed minimum temperature in norway;the amount by which the noresm2-mm climate model predicts that the minimum temperature in norway will increase under the rcp 85 emission scenario;the amount by which the noresm2-mm climate model predicts that the minimum temperature in norway will change under the rcp 85 emission scenario" -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_TAIESM1,the difference between the minimum temperature in taiwan and the observed data based on the rcp 85 and ssp 5 emission scenarios;the change in the minimum temperature in taiwan compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the variation in the minimum temperature in taiwan compared to the observed data based on the rcp 85 and ssp 5 emission scenarios;the deviation of the minimum temperature in taiwan from the observed data based on the rcp 85 and ssp 5 emission scenarios -DifferenceRelativeToObservationalData_Min_Temperature_SSP585_UKESM1-0-LL, -DifferenceRelativeToObservationalData_Min_Temperature_TAIESM1,"the minimum temperature difference between the observed data and the climate model tas m1 in taiwan;the difference between the observed temperature in taiwan and the temperature predicted by the climate model tas m1;the climate model tas m1's prediction of the temperature in taiwan compared to the observed temperature;the difference between the observed temperature in taiwan and the temperature predicted by the climate model tas m1, in degrees celsius" -DifferenceRelativeToObservationalData_Min_Temperature_UKESM1-0-LL,how much warmer is the ukesm1-0-ll climate model than observed data;how does the ukesm1-0-ll climate model compare to observed data in terms of temperature;how much does the ukesm1-0-ll climate model deviate from observed data in terms of temperature;how does the ukesm1-0-ll climate model deviate from observed data in terms of temperature -ExchangeRate_Currency_Standardized,international exchange rates;foreign exchange rates;cross rates;exchange rates between currencies -Expenses_Farm,the total cost of running a farm;the total amount of money spent on a farm;the sum of all the costs associated with running a farm;the total cost of doing business on a farm -FemaCommunityResilience_NaturalHazardImpact,how communities can prepare for and recover from natural disasters;how to make communities more resistant to natural disasters;how to build community resilience to natural disasters;how to make communities more sustainable in the face of natural disasters -FemaNaturalHazardRiskIndex_NaturalHazardImpact,"fema's national risk index for natural hazard impact;the national risk index for natural hazard impact from fema;the national risk index for natural hazard impact, as calculated by fema;the national risk index for natural hazard impact, which is used by fema" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_AvalancheEvent,avalanche risk index;avalanche hazard index;avalanche risk rating;avalanche hazard rating -FemaNaturalHazardRiskIndex_NaturalHazardImpact_CoastalFloodEvent,fema's national risk index for coastal flood;the fema national risk index for coastal flooding;the fema national risk index for coastal flooding impact;the fema national risk index for coastal flooding risk -FemaNaturalHazardRiskIndex_NaturalHazardImpact_ColdWaveEvent,fema's national risk index for the impact of cold waves;the national risk index for cold waves from fema;the risk of cold waves from fema;fema's assessment of the risk of cold waves -FemaNaturalHazardRiskIndex_NaturalHazardImpact_DroughtEvent,fema national risk index for natural hazard impact: drought;fema's national risk index for natural hazard impact: drought;fema's national risk index for drought impact;fema's national risk index for natural hazard impacts: drought -FemaNaturalHazardRiskIndex_NaturalHazardImpact_EarthquakeEvent,fema's national risk index for natural hazard impact: earthquake;the fema national risk index for earthquakes;the national risk index for earthquakes from fema;fema's national risk index for earthquake impact -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HailEvent,fema's national risk index for hail;the national risk index for hail from fema;the fema national risk index for hail damage;the national risk index for hail damage from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HeatWaveEvent,fema's national risk index for the impact of heat waves;the fema national risk index for the impact of extreme heat;the fema national risk index for the impact of heat stress;fema's national risk index for the impact of extreme heat -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HurricaneEvent,fema's national risk index for hurricane impact;what is the risk of a hurricane in a particular area;the fema national risk index for hurricane impact;the national risk index for hurricane impact from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_IceStormEvent,"fema's national risk index for the impact of ice storms;the national risk index for ice storms, as calculated by fema;the risk of ice storms, as calculated by fema;the impact of ice storms on the united states, as calculated by fema" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LandslideEvent,the fema national risk index for landslide impact;the fema national risk index for landslide hazards;the fema national risk index for landslide threats;the fema national risk index for landslide risks -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LightningEvent,fema's national risk index for lightning impact;fema national risk index for natural hazard impact: lightning -FemaNaturalHazardRiskIndex_NaturalHazardImpact_RiverineFloodingEvent,fema's national risk index for riverine flooding;fema's national risk index for river flooding;fema's national risk index for flooding from rivers;fema's national risk index for flooding from rivers and streams -FemaNaturalHazardRiskIndex_NaturalHazardImpact_StrongWindEvent,fema's national risk index for natural hazard impact: strong wind;fema's national risk index for strong wind impact;fema's national risk index for the impact of strong wind;fema's national risk index for the impact of wind -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TornadoEvent,"fema's national risk index for natural hazard impact: tornado;the national risk index for natural hazard impact: tornado, as determined by fema;fema's ranking of the impact of tornadoes on the united states;fema's assessment of the risk of tornadoes in the united states" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TsunamiEvent,fema national risk index for natural hazard impact: tsunami;what is the risk of a tsunami in the united states;what is the risk of a tsunami in the united states?;how much of a threat are tsunamis to the united states? -FemaNaturalHazardRiskIndex_NaturalHazardImpact_VolcanicActivityEvent,fema's national risk index for volcanic activity;the national risk index for volcanic activity from fema;fema's ranking of the risk of volcanic activity;the risk of volcanic activity as ranked by fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WildfireEvent,fema's national risk index for wildfire impact;the national risk index for wildfire impact from fema;fema's national risk index for wildfire impacts;the national risk index for wildfire impacts from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WinterWeatherEvent,fema national risk index for natural hazard impact: winter weather;winter weather risk index by fema;fema's winter weather risk index;fema's ranking of winter weather risk -FemaSocialVulnerability_NaturalHazardImpact,the impact of natural hazards on socially vulnerable populations;the effects of natural disasters on people who are already at a disadvantage;the ways in which natural hazards can exacerbate social inequality;the ways in which natural hazards can worsen the lives of people who are already marginalized -FertilityRate_Person_Female,the number of children that a woman is expected to have in her lifetime;the average number of children that a woman has in her lifetime;the rate at which women have children;the rate of reproduction -GenderIncomeInequality_Person_15OrMoreYears_WithIncome,the gap in earnings between men and women of working age;the difference in pay between men and women who are working;the disparity in salaries between men and women who are employed;the inequality in wages between men and women who are in the workforce -GiniIndex_EconomicActivity,economic inequality;economic stratification;economic polarization;economic concentration -GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,gdp growth rate;rate of change in gdp;annual change in gdp;year-over-year change in gdp -GrowthRate_Count_Person,how fast is the population growing?;what is the growth rate of the population?;what is the rate of change in the population?;how much is the population increasing? -HeavyPrecipitationIndex,heavy precipitation index;index of heavy precipitation;index of heavy rainfall;index of heavy rain -Humidity_RelativeHumidity,the percentage of water vapor in the air relative to the amount of water vapor the air could hold at the same temperature;how much water vapor is in the air;relative humidity -Humidity_RelativeHumidity_SSP245,the humidity level based on rcp 45;relative humidity based on rcp 45;relative humidity in rcp 45;relative humidity in the rcp 45 scenario -Humidity_RelativeHumidity_SSP585,"relative humidity in the ssp 5 scenario, based on rcp 85;relative humidity in the ssp 5 scenario, based on the rcp 85 emissions pathway;humidity in the united states based on rcp 85 relative humidity, ssp 5;relative humidity in the united states based on rcp 85, ssp 5" -Humidity_SpecificHumidity,mass of water vapor per unit mass of dry air;ratio of mass of water vapor to mass of dry air;amount of water vapor in a given volume of air;water vapor content of air -Humidity_SpecificHumidity_SSP245,"the amount of humidity in the air, as determined by the rcp 45 and ssp 2;specific humidity under rcp 45 ssp 2;the amount of moisture in the air, as calculated by the rcp 45 and ssp 2;specific humidity based on rcp 45 and ssp 2" -Humidity_SpecificHumidity_SSP585,humidity based on rcp 85 ssp 5;humidity in rcp 85 ssp 5;humidity in the rcp 85 ssp 5 scenario;humidity in the rcp 85 ssp 5 model -Income_Farm,income from farming;the amount of money made from farming;the total amount of money earned from agricultural activities;the sum of all the money earned from farming -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedCase, -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase, -IncrementalCount_MedicalConditionIncident_COVID_19_PatientDeceased, -IncrementalCount_MedicalTest_ConditionCOVID_19,increase in covid-19 tests;rising number of covid-19 tests;more covid-19 tests being administered;growing number of covid-19 tests -IncrementalCount_Person,demographic shift;change in the composition of a population;the population is fluctuating;the population is shifting -IncrementalCount_Vaccine_COVID_19_Administered,daily covid-19 vaccine doses administered;number of covid-19 vaccines administered per day;daily covid-19 vaccination rate;number of covid-19 vaccines given each day -InflationAdjustedGDP,"inflation-adjusted gross domestic product (gdp);gdp, adjusted for inflation;gdp, deflated;gross domestic product (gdp), adjusted for inflation" -InsuredUnemploymentRate_Person_WithCoveredEmployment_MovingAverage1WeekWindow,unemployment rate for people with unemployment insurance -Intensity_HeatWaveEvent,how intense is the heat wave?;what is the level of intensity of the heat wave?;how intense is the heat wave;how hot is the heat wave -InterannualRange_Monthly_MaxTemperature,maximum monthly temperature range over multiple years;highest monthly temperature variation over multiple years;greatest monthly temperature difference between the highest and lowest temperatures over multiple years;widest monthly temperature spread over multiple years -InterannualRange_Monthly_MinTemperature,lowest temperature (interannual range of monthly aggregate);minimum temperature (interannual range of monthly aggregate);smallest temperature (interannual range of monthly aggregate);least temperature (interannual range of monthly aggregate) -InterannualRange_Monthly_Precipitation,"monthly precipitation range over multiple years;the average amount of precipitation that falls each month, over a period of years;the range of precipitation amounts that fall each month, over a period of years;the variation in precipitation amounts that fall each month, over a period of years" -LandCoverFraction_BareSparseVegetation,percentage of bare and sparse vegetation cover;proportion of bare and sparse vegetation cover;area covered by bare and sparse vegetation as a percentage of total area;bare and sparse vegetation cover as a percentage of total area -LandCoverFraction_BuiltUp,the percentage of land that is covered by buildings and other human-made structures;the share of land that is built up;the proportion of land that is built up;percentage of land that is developed -LandCoverFraction_Cropland,percentage of land used for crops;percentage of land area used for crops;percentage of land area devoted to agriculture;percentage of land used for growing crops -LandCoverFraction_Forest,what percentage of the united states is covered by forests;what is the forest cover of the united states;what is the percent of forest cover in the united states;what percentage of the land area of the united states is forested -LandCoverFraction_HerbaceousVegetation,what percentage of the land is covered in grass?;what is the percentage of grass cover?;what proportion of the land is covered in grass?;what is the grass cover ratio? -LandCoverFraction_PermanentWater,the percentage of the earth's surface that is covered by permanent water;the proportion of the earth's surface that is always wet;the fraction of the earth's surface that is always covered by liquid water;percentage of land covered by water -LandCoverFraction_SeasonalWater,percent of area covered by water seasonally;percentage of area covered by water seasonally;amount of area covered by water seasonally;proportion of area covered by water seasonally -LandCoverFraction_Shrubland,percent of area covered by shrubs;shrub coverage;area covered by shrubs as a percentage;percentage of land covered by shrubs -LandCoverFraction_SnowIce,how much of the land is covered in snow?;what percentage of the land is covered in snow?;what is the snow cover percentage?;how much of the land is snow-covered? -LifeExpectancy_Person,the average number of years that a person in a population is expected to live;the average lifespan of a population;the life expectancy of a population;the longevity of a population -LifeExpectancy_Person_Female,how long do women live?;what is the average lifespan of a woman?;the average number of years a woman lives;the life expectancy of a woman -LifeExpectancy_Person_Male,how long do men live?;what is the average lifespan of a man?;what is the life expectancy for men?;how long do men typically live? -MarketValue_Farm_AgriculturalProducts,1 the total value of all agricultural farms in the united states;3 the total amount of money that could be made by selling all agricultural farms in the united states;4 the total cost of buying all agricultural farms in the united states;5 the total value of the agricultural industry in the united states -MarketValue_Farm_Crops,the monetary worth of agricultural land used to grow crops;the estimated price of farmland used for crop production;the estimated value of land used to grow crops;value of farms growing crops -MarketValue_Farm_LivestockAndPoultry,the worth of farm animals and birds;the price of livestock and poultry on a farm;the cost of farm animals and birds;the value of livestock and poultry on a farm -MarketValue_Farm_MachineryAndEquipment,the value of farm machinery and equipment on the open market;the price that a buyer would be willing to pay for farm machinery and equipment;the amount of money that a seller could expect to receive for farm machinery and equipment;the worth of farm machinery and equipment in terms of dollars and cents -Max_BarometricPressure,greatest air pressure;most intense air pressure;maximum air pressure;peak barometric pressure -Max_Concentration_AirPollutant_Ozone,maximum ozone concentration;highest ozone concentration;highest level of ozone;maximum level of ozone -Max_Concentration_AirPollutant_PM2.5,maximum pm25 concentration;highest pm25 concentration;peak pm25 concentration;highest level of pm25 -Max_Concentration_AirPollutant_SmokePM25,maximum concentration of smoke pm25;the highest concentration of smoke pm25;the upper limit of smoke pm25 concentration;the maximum level of smoke pm25 -Max_Humidity_RelativeHumidity,the percentage of water vapor in the air relative to the maximum amount of water vapor that the air can hold;the amount of water vapor in the air as a percentage of the maximum amount it could hold;maximum humidity -Max_PopulationWeighted_Concentration_AirPollutant_SmokePM25,maximum population-weighted concentration of fine particulate matter;maximum smoke concentration weighted by population;maximum smoke concentration per capita;maximum population-weighted concentration of particulate matter with an aerodynamic diameter of 25 micrometers or less -Max_PrecipitableWater_Atmosphere,maximum precipitable water;maximum water vapor content;maximum water content in the atmosphere;maximum amount of water that can be held in the atmosphere -Max_Radiation_Downwelling_ShortwaveRadiation,maximum downwelling shortwave radiation;maximum downward shortwave radiation;maximum incoming shortwave radiation;maximum shortwave radiation from above -Max_Rainfall,maximum rainfall;highest rainfall;greatest rainfall;heaviest rainfall -Max_Snowfall,maximum amount of snowfall;maximum snowfall;greatest snowfall;heaviest snowfall -Max_Temperature,the highest temperature;the peak temperature;the maximum temperature;the upper limit of temperature -Max_Temperature_RCP26,maximum temperature based on rcp 26;the highest temperature expected based on rcp 26;the upper limit of temperature expected based on rcp 26;the maximum temperature that is expected based on rcp 26 -Max_Temperature_RCP45,"the maximum temperature that is expected based on rcp 45;the maximum temperature, based on rcp 45;the upper limit of temperature, based on rcp 45;the peak temperature, based on rcp 45" -Max_Temperature_RCP60,the maximum temperature based on rcp 60;the highest temperature based on rcp 60;the peak temperature based on rcp 60;the upper limit of temperature based on rcp 60 -Max_Temperature_RCP85,the maximum temperature that could be reached if the rcp 85 scenario plays out;the peak temperature that could be reached if the rcp 85 scenario is realized -Max_Temperature_SSP245,the maximum temperature based on the rcp 45 and ssp 2 emission scenarios;the maximum temperature expected under the rcp 45 and ssp 2 emission scenarios;the highest temperature that could be reached under the rcp 45 and ssp 2 emission scenarios;the upper limit of the temperature range expected under the rcp 45 and ssp 2 emission scenarios -Max_Temperature_SSP585,the hottest temperature that could occur under the rcp 85 and ssp5 emission scenarios;the maximum temperature that could be reached under the rcp 85 and ssp5 emission scenarios;the highest possible temperature under the rcp 85 and ssp5 emission scenarios;the hottest temperature that could be recorded under the rcp 85 and ssp5 emission scenarios -Max_WindSpeed_UComponent_Height10Meters,the strongest wind at 10 meters;the fastest wind at 10 meters;the highest wind speed at 10 meters;the peak wind speed at 10 meters -Max_WindSpeed_VComponent_Height10Meters,the maximum wind speed at 10 meters -MeanMothersAge_BirthEvent,the age at which mothers typically give birth;the age at which most mothers give birth;2 the typical age of a mother when she gives birth -Mean_Area_Farm,the average area of a farm;the average land area of a farm;the average size of a farm;average area of a farm -Mean_BarometricPressure,barometric pressure;standard pressure -Mean_BirthWeight_BirthEvent_LiveBirth,average weight of a newborn baby in grams;average weight of a live birth in grams;average weight of a baby at birth in grams;average weight of a newborn in grams -Mean_BirthWeight_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,5 average weight of babies born to mothers who did not earn a high school diploma;average weight of babies born to mothers who were enrolled in high school but did not complete their education;the average weight of babies born to mothers who were in high school but did not earn a diploma;average birth weight of mothers without a diploma in grades 9-12 -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,average weight of babies born to american indian or alaska native mothers;average height of babies born to american indian or alaska native mothers;average live birth weight for american indian or alaska native mothers;average live birth height for american indian or alaska native mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianIndian,what is the average weight of a baby born to an asian indian mother?;what is the average birth weight of asian indian babies?;how much do asian indian babies weigh on average at birth?;what is the average live birth weight for asian indian mothers? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,average birth weight for asian or pacific islander mothers;average weight of babies born to asian or pacific islander mothers;average weight of babies born to asian or pacific islander women;average weight of babies born to asian or pacific islander women in the united states -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAssociatesDegree,average birth weight of babies born to mothers with associate's degrees;the average weight of babies born to mothers who have completed an associate's degree program at a community college or four-year university;the average weight of babies born to mothers with associate degrees;the average weight of babies born to women with associate degrees -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBachelorsDegree,the average weight of babies born to mothers with a bachelor's degree;the average birth weight of babies born to mothers with a college degree;the average weight of babies born to mothers who have completed a bachelor's degree;the average birth weight of babies born to mothers who have a college education -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,the average weight of a baby born to an african american mother;the average weight of a live birth to an african american mother;the average weight of a newborn born to an african american mother;the average weight of a baby at birth to an african american mother -Mean_BirthWeight_BirthEvent_LiveBirth_MotherChinese,the average weight of a baby born to a chinese mother;the average weight of chinese newborns;the average weight of babies born to chinese women;the average weight of live births in china -Mean_BirthWeight_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,average weight of babies born to mothers with doctorate degrees and professional school degrees -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average weight of babies born to mothers with a cdc education;the average weight of babies born to mothers with a cdc level of education;the average weight of babies born to mothers who have a cdc education;the average weight of babies born to mothers who have a cdc level of education -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,"average birth weight in grams for mothers of cdc ethnicity;average birth weight in grams of babies born to mothers of cdc ethnicity;average birth weight in grams of babies born to mothers who identify with cdc ethnicity;average weight of a baby at birth in grams, where the mother's ethnicity is cdc" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherFilipino,the average weight of a baby born to a filipino mother in grams;the average live birth weight of filipino babies;the average weight of a filipino baby at birth;the average weight of a baby born to a filipino woman -Mean_BirthWeight_BirthEvent_LiveBirth_MotherForeignBorn,the average weight of babies born to foreign-born mothers in the united states;the average weight of babies born to mothers who are not us citizens;the average weight of live births to foreign-born mothers in the united states;the average weight of live-born babies born to mothers who are not us citizens -Mean_BirthWeight_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,the average weight of babies born to guamanian or chamorro mothers;the average weight of live births to guamanian or chamorro mothers;the average weight of newborn babies born to guamanian or chamorro mothers;the average weight of live-born infants born to guamanian or chamorro mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"the average weight of a baby born to a mother with a high school diploma, ged, or equivalent;the average birth weight of babies born to mothers with a high school diploma, ged, or equivalent;the average weight of babies born to mothers who have graduated from high school, earned a ged, or have an equivalent credential;the average birth weight of babies born to mothers who have completed high school, earned a ged, or have an equivalent level of education" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHispanicOrLatino,the average weight of babies born to hispanic mothers;the average weight of live births to hispanic mothers;the average weight of newborn babies born to hispanic mothers;the average weight of hispanic newborns -Mean_BirthWeight_BirthEvent_LiveBirth_MotherJapanese,what is the average weight of a baby born to a japanese mother?;what is the average live birth weight of japanese babies?;what is the average weight of a newborn baby born to a japanese mother?;what is the average weight of a full-term baby born to a japanese mother? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherKorean,the average weight of a baby born to a korean mother in grams;the average weight of a live birth to a korean mother in grams;the average weight of a newborn baby born to a korean mother in grams;the average weight of a baby at birth to a korean mother in grams -Mean_BirthWeight_BirthEvent_LiveBirth_MotherLessThan9ThGrade,the average weight of babies born to mothers with less than a 9th grade education;the average weight of babies born to mothers with a low level of education;average birth weight of babies born to mothers with less than a high school education;average weight of babies born to mothers who did not finish high school -Mean_BirthWeight_BirthEvent_LiveBirth_MotherMastersDegree, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNative, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativeHawaiian,the average weight of babies born to native hawaiian mothers;the average weight of native hawaiian newborns;the average birth weight of babies born to native hawaiian women;the average weight of native hawaiian infants at birth -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average weight of a baby born to a non-hispanic mother in grams;the average weight of a live birth to a non-hispanic mother in grams;the average weight of a baby born alive to a non-hispanic mother in grams;the average weight of a newborn baby born to a non-hispanic mother in grams -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNowMarried,the average weight of babies born to married mothers in the united states;the average weight of babies born to married women in the us;the average weight of babies born to married couples in the us;the average weight of live births to married mothers in the us -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherAsian,the average weight of a baby born to an asian mother;the average weight of a newborn baby born to an asian mother;the average weight of a live birth to an asian mother;the average weight of a live-born baby to an asian mother -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherPacificIslander,how much do babies born to pacific islander mothers weigh on average;what is the average weight of babies born to pacific islander mothers;what is the average live birth weight of babies born to pacific islander mothers;what is the average birth weight of babies born to pacific islander mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSamoan,samoan mothers' average live birth weights;the average weight of babies born to samoan mothers;the average weight of live births to samoan mothers;the average weight of babies born to samoan women -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,"average birth weight of babies born to mothers who have some college education but do not have a college degree;average weight of babies born to mothers who have some college education but do not have a college diploma;average weight of babies born to mothers who have some college but have not graduated;the average weight of a baby born to a mother with some college but no degree, in grams" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,the average number of live births to multiracial mothers;the average number of live births to women of mixed race;the average number of live births to mothers of mixed race;the average number of live births to women with more than one racial background -Mean_BirthWeight_BirthEvent_LiveBirth_MotherUnmarried,the average weight of babies born to unmarried mothers;the average weight of babies born to single mothers;the average weight of babies born to mothers who are not in a relationship;the average weight of babies born to mothers who are not living with the father of their child -Mean_BirthWeight_BirthEvent_LiveBirth_MotherVietnamese,what is the average birth weight of vietnamese babies?;what is the average weight of a vietnamese baby at birth?;how much do vietnamese babies weigh on average when they are born?;what is the typical weight of a vietnamese newborn? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherWhiteAlone,the average weight of a baby born to a white mother in grams;the average weight of a live birth to a white mother in grams;the average weight of a white baby at birth in grams;the average weight of a live-born white baby in grams -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAfrica,the average amount of cash assistance given to households with foreign-born residents in africa;the average amount of money given to households with foreign-born residents in africa to help them cover their basic needs;the average amount of financial assistance given to households with foreign-born residents in africa to help them meet their basic expenses;the average amount of aid given to households with foreign-born residents in africa to help them get by -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAsia,the average amount of cash assistance received by foreign-born households in asia;the mean amount of cash assistance given to foreign-born households in asia;the average amount of money that foreign-born households in asia receive in cash assistance;the mean amount of money that foreign-born households in asia are given in cash assistance -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCaribbean,the average amount of cash assistance received by foreign-born households in the caribbean;the average amount of financial assistance provided to foreign-born households in the caribbean;the average amount of aid given to foreign-born households in the caribbean to help them meet their basic needs;how much cash assistance do foreign-born households in the caribbean receive on average? -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"average cash assistance for households owned by foreign-born people in central america, excluding mexico;the typical amount of cash assistance given to households owned by foreign-born people in central america, excluding mexico;the average amount of money that households owned by foreign-born people in central america, excluding mexico, receive in cash assistance;the typical amount of money that households owned by foreign-born people in central america, excluding mexico, receive in cash assistance each year" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEasternAsia,mean cash assistance to foreign-born householders in eastern asia;mean cash assistance to households with foreign-born members in east africa;mean cash assistance to households with foreign-born residents in east africa;mean cash assistance to households with foreign-born members or heads in east africa -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEurope,how much cash assistance do foreign-born householders in europe receive on average?;what is the average amount of cash assistance given to foreign-born householders in europe?;what is the average amount of money that foreign-born householders in europe receive in cash assistance?;how much money do foreign-born householders in europe receive on average in cash assistance? -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthLatinAmerica,average amount of cash assistance provided to foreign-born people in latin america;average amount of money given to foreign-born people in latin america to help them with their expenses;average amount of financial assistance provided to foreign-born people in latin america;average amount of aid given to foreign-born people in latin america to help them meet their basic needs -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthMexico,the average amount of cash assistance received by foreign-born households in mexico;the typical amount of cash assistance given to foreign-born households in mexico;the usual amount of cash assistance provided to foreign-born households in mexico;the amount of cash assistance that most foreign-born households in mexico receive -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthamerica,the average amount of cash assistance received by foreign-born households in north america;the mean amount of cash assistance received by foreign-born households in north america;the average amount of money given to foreign-born households in north america in the form of cash assistance;the mean amount of money given to foreign-born households in north america in the form of cash assistance -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,cash assistance for foreign-born householders in northern-western europe;the amount of cash assistance received by foreign-born householders in northern-western europe;the mean amount of cash assistance received by foreign-born householders in northern-western europe;what is the mean cash assistance of foreign-born householders in northern-western europe? -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,the average amount of cash assistance received by foreign-born households in south central asia;the average amount of financial aid given to foreign-born households in south central asia;the average amount of money that foreign-born households in south central asia receive in the form of cash assistance;the average amount of money that foreign-born households in south central asia receive in the form of financial aid -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the customary amount of cash assistance given to households whose head of household was born in southeast asia;the typical amount of cash assistance given to households in south east asia that are headed by immigrants;the customary amount of cash assistance given to households in south east asia that are headed by people who are not citizens of the country;the standard amount of cash assistance provided to households in south east asia that are headed by people who are not native to the country -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthamerica,cash assistance for foreign-born owned households in south america;cash assistance for households in south america owned by foreign-born people;cash assistance for households in south america owned by people who were born in other countries;cash assistance for households in south america owned by immigrants -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the average amount of cash assistance received by foreign-born people in southern eastern europe;the mean amount of cash assistance received by foreign-born people in southern eastern europe;the median amount of cash assistance received by foreign-born people in southern eastern europe;the typical amount of cash assistance received by foreign-born people in southern eastern europe -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthWesternAsia,households of foreign-born people in western asia who receive cash assistance on average;the average amount of cash assistance received by households of foreign-born people in western asia;the average amount of money that households of foreign-born people in western asia receive in cash assistance -Mean_Concentration_AirPollutant_DieselPM,average amount of diesel particulate matter in the air;amount of diesel particulate matter in the air;concentration of diesel particulate matter in the air;level of diesel particulate matter in the air -Mean_Concentration_AirPollutant_Ozone,average ozone concentration;ozone air pollutant concentration;level of ozone in the air;ozone concentration in the air -Mean_Concentration_AirPollutant_PM2.5,average concentration of pm25 air pollutant;average level of pm25 air pollution;average amount of pm25 air pollution;average pm25 air pollution levels -Mean_Concentration_AirPollutant_SmokePM25,average concentration of smoke pm25;mean amount of smoke pm25;average level of smoke pm25 -Mean_CoverageArea_SolarInstallation_Commercial,the area that can be covered by a solar installation;the size of the area that can be covered by solar panels;the extent of the area that can be covered by solar power;the scope of the area that can be covered by solar energy -Mean_CoverageArea_SolarInstallation_Residential,how much space does a residential solar installation cover?;what is the area covered by a residential solar installation?;residential solar panel coverage area;area covered by residential solar panels -Mean_CoverageArea_SolarInstallation_UtilityScale,the size of a solar power plant;the footprint of a solar power plant -Mean_CoverageArea_SolarThermalInstallation_NonUtility,non-utility solar thermal installation coverage area;area covered by non-utility solar thermal installations;the amount of land covered by non-utility solar thermal installations;the area covered by non-utility solar thermal installations -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAfrica,the typical amount of money earned by families with african-born heads of household;the typical earnings of households with african immigrant heads;the average salary of households with african-born heads;typical earnings of households with african-born heads of household -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAsia,average earnings of foreign-born families in asia;the average amount of money earned by households with foreign-born members in asia;the average amount of money earned by households with foreign-born residents in asia;the average household earnings of foreign-born residents in asia -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCaribbean,the average household earnings in the caribbean for households with foreign-born residents;the average amount of money that households in the caribbean with foreign-born residents make;the mean earnings of households headed by foreign-born people in the caribbean -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average amount of money that foreign-born households in central america, excluding mexico, earn;the average salary of foreign-born households in central america, excluding mexico;the average wage of foreign-born households in central america, excluding mexico;the average earnings of foreign-born households in central america, excluding mexico" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEasternAsia,the typical amount of money that foreign-born households in eastern asia earn;the usual amount of money that foreign-born households in eastern asia make;the typical earnings of foreign-born households in eastern asia;how much money do foreign-born households in eastern asia earn on average -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEurope,the typical amount of money that households headed by foreign-born people in europe make;the typical earnings of households headed by foreign-born people in europe;the typical household earnings of people who were born outside of europe;2 the typical amount of money earned by households in europe that are headed by someone who was born in another country -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average salary of people who were born in latin america but now live in the united states;the typical amount of money that people from latin america earn;the usual amount of money that people who were born in latin america but now live in the united states make;the general amount of money that people from latin america earn -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthMexico,"the typical amount of money earned by households with foreign-born heads;the typical amount of money earned by families with foreign-born parents;how much money do foreign-born households make, on average?;what are the average earnings of foreign-born households?" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthamerica,the typical earnings of households headed by immigrants in north america;the typical earnings of foreign-born households in north america;the average earnings of foreign-born households in north america -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the average income of households with foreign-born members in northern western europe;the average amount of money that households with foreign-born members earn in northern western europe;the average household income of foreign-born people in northern western europe;the average amount of money that foreign-born people earn per household in northern western europe -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthOceania,how much money do foreign-born households in oceania earn on average?;what are the average earnings of foreign-born households in oceania?;what is the average salary of foreign-born households in oceania?;what is the average wage of foreign-born households in oceania? -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,the typical amount of money that households headed by people who were born in south-central asia earn;the usual amount of money that households headed by people who were born in south-central asia make;the overall earnings of households headed by people who were born in south-central asia;the expected amount of money that households headed by people who were born in south-central asia bring in -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the typical amount of money that households headed by people who were born in southeast asia make;the typical earnings of households headed by people who were born in southeast asia;the typical household earnings of people who were born in southeast asia;the typical amount of money that households headed by people born in southeast asia earn -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthamerica,how much money do foreign-born people in south america make on average?;what are the average earnings of foreign-born people in south america?;what is the average salary of foreign-born people in south america?;what do foreign-born people in south america typically earn? -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the typical earnings of foreign-born households in southern eastern europe;what are the average earnings of foreign-born households in southern eastern europe?;the usual amount of money that foreign-born households in southern eastern europe make -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthWesternAsia,the average salary of foreign-born people in western asia;the median earnings of people who were born outside of western asia and now live there;the typical amount of money that foreign-born people in western asia make;the average amount of money that immigrants in western asia make -Mean_Earnings_Person_Female,how much do women earn on average?;what is the average salary for women?;what are women's average earnings?;what is the average income for women? -Mean_Earnings_Person_Female_FullTimeYearRoundWorker,the mean annual income of full-time female workers aged 16 or older who have earnings;the mean compensation of full-time female workers aged 16 or older who have earnings;the mean annual income of female full-time workers aged 16 years or older who have earnings;the mean annual wage of female full-time workers aged 16 years or older who have earnings -Mean_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,how much money do women in prison make?;what is the average salary for women in jail?;what is the average income of women in correctional facilities?;what do women in prison earn on average? -Mean_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,how much money do female college students living in student housing typically earn?;what are the average earnings of female college students living in student housing?;what is the average income of female college students living in student housing?;what is the typical salary of female college students living in student housing? -Mean_Earnings_Person_Female_ResidesInGroupQuarters,how much money do women living in group quarters earn on average?;what is the average income of women living in group quarters?;what is the average salary of women living in group quarters?;what is the average wage of women living in group quarters? -Mean_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters, -Mean_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters, -Mean_Earnings_Person_Female_ResidesInNursingFacilities,how much do females living in nursing facilities earn?;what are the average earnings of females living in nursing facilities?;what is the average salary for females living in nursing facilities?;what is the average income for females living in nursing facilities? -Mean_Earnings_Person_Male,how much do men earn on average?;what is the average salary for men?;what is the average income for men?;what is the average wage for men? -Mean_Earnings_Person_Male_FullTimeYearRoundWorker,"the mean annual income of a full-time, year-round worker who is 16 years or older and male;the typical annual earnings of a full-time, year-round male worker who is 16 years or older" -Mean_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,how much money do men in prison make?;what are the average earnings of male prisoners?;what is the average salary for men in jail?;what is the typical income for men in prison? -Mean_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,how much money do male college students living in student housing typically earn?;what is the average income for male college students living in student housing?;what is the typical salary for male college students living in student housing?;what is the average amount of money that male college students living in student housing make? -Mean_Earnings_Person_Male_ResidesInGroupQuarters,how much money do men who live in group quarters earn on average?;what is the average income for men who live in group quarters?;what is the average salary for men who live in group quarters?;what is the average wage for men who live in group quarters? -Mean_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,the average amount of money that males living in institutionalized group quarters earn;the typical salary for males living in institutionalized group quarters;the typical earnings for males living in institutionalized group quarters;the average pay for males living in institutionalized group quarters -Mean_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"the usual amount of money earned by men living in group quarters that are not jails, hospitals, or other types of institutions" -Mean_Earnings_Person_Male_ResidesInNursingFacilities,how much money do men in nursing homes make?;what are the average earnings of men living in nursing homes?;what is the average salary for men in nursing homes?;what is the average income for men in nursing homes? -Mean_Earnings_Person_WithEarnings_FullTimeYearRoundWorker,the mean yearly pay of full-time workers aged 16 or older;the mean annual wage of full-time employees aged 16 or older;yearly earnings of full-time employees aged 16 or older;usual income of full-time employees aged 16 or older -Mean_Expenses_Farm,what is the average cost of running a farm? -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,the average family size in africa of households where the head of household is foreign born;the average number of people in a family household in africa where the household head is not a native of the country;the average family size of households with a foreign-born head from africa;mean family size of households with foreign-born african residents -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAsia,the average size of a family household with foreign-born parents from asia -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,the average family size of caribbean-born households -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average size of a family household headed by a foreign-born person from central america, excluding mexico;the average family size of a household with a foreign-born head of household from central america, excluding mexico" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,the average family size of households with foreign-born parents from eastern asia;the average family size of a household with foreign-born members from eastern asia -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEurope,what is the average family size of foreign-born households in europe?;what is the typical family size of foreign-born households in europe?;average family size in europe for households with foreign-born members;the average family size of households in europe with at least one foreign-born member -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,the mean number of people in a family household headed by someone born in latin america;the mean size of a family household headed by someone born in latin america;what is the average family size of a latin american family household with foreign-born parents? -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthMexico, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,size of a household with foreign-born family members in north america;average household size with foreign-born family members in north america;the average family size of households in north america that include at least one person who was born outside of the country -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"the average family size in oceania, including families with foreign-born members" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,the average size of a family household with foreign-born parents from south central asia -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,the average family size of a household headed by a foreign-born person from south america;the average family size of a south american foreign-born household -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the average family size of a household headed by a foreign-born person from southern eastern europe -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,the average household size of a foreign-born western asian family;the average family size of households with foreign-born parents from western asia -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAfrica,average number of people in households owned by foreign-born people in africa;average household size of foreign-born households in africa;mean number of people living in households owned by foreign-born people in africa;mean household size of households owned by people who were born outside of africa -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAsia,mean household size of households with foreign-born members in asia;the average household size of people who were born in another country and now live in asia;average household size of households in asia with at least one foreign-born member;mean number of people per household in asia for foreign-born residents -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCaribbean,the average household size of caribbean immigrants;the average household size for caribbean-born people;average household size of caribbean immigrants;average household size of caribbean-born people -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,average number of people in a household of foreign-born central americans;typical number of individuals in a household of foreign-born central americans;how many people live in a typical household of foreign-born central americans;what is the average household size of foreign-born central americans -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEurope,average number of people born outside europe per household in europe;average number of foreign-born people living in households in europe;average number of people born outside europe living in households in europe;average number of households in europe with foreign-born residents -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average household size of foreign-born latin american householders;the average number of people in a household with a foreign-born latin american householder;average household size of latin american foreign-born householders -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthMexico,average number of people in households owned by foreign-born people in mexico;average household size of foreign-born households in mexico;mean number of people living in households owned by foreign-born people in mexico;mean household size of households owned by people who were born outside of mexico -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,the average household size in north america for households headed by a foreign-born person;typical household size of foreign-born people in north america;size of a typical household of foreign-born people in north america;average household size of foreign-born households in north america -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the average size of a foreign-born household in northern western europe;the average household size of foreign-born people in northern western europe;average household size of foreign-born people in northern western europe;size of foreign-born households in northern western europe -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthOceania,average household size of foreign-born people in oceania;2 average household size of foreign-born people in oceania;5 mean number of people living in households where the head of household was not born in oceania;the average size of a foreign-born household in oceania -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,average number of people in a household of foreign-born residents in south central asia;average household size of foreign-born people in south central asia;average number of people living in a household with a foreign-born resident in south central asia;average number of people living in a household with at least one foreign-born resident in south central asia -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,average household size of foreign-born households in southeast asia;size of households in southeast asia with a foreign-born head of household;typical household size of foreign-born people in southeast asia;size of a typical foreign-born household in southeast asia -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,the average number of people in a household with a south american immigrant as the head of household -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the number of people born outside of southern eastern europe;the number of foreign-born people in southern eastern europe;the number of immigrants in southern eastern europe;the number of people born outside of southern eastern europe who are currently living there -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,average number of people in a household of foreign-born people in western asia;average household size of foreign-born people in western asia;what is the average household size of foreign-born people in western asia;what is the mean household size of foreign-born people in western asia -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthAsia,what is the average household size of homeowners who were born in asia?;what is the average number of people in a household of homeowners who were born in asia?;how many people live in the average household of homeowners who were born in asia?;what is the typical household size of homeowners who were born in asia? -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthCaribbean,"the average household size of housing units occupied by foreign-born caribbean people who own their homes;the average household size of housing units occupied by foreign-born caribbean people who are homeowners;the average household size of housing units occupied by foreign-born people from the caribbean who own their homes;mean household size of occupied housing units, owner occupied, for foreign-born people from the caribbean" -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthCentralAmericaExceptMexico,"the average number of people in a household of foreign-born people in central america, excluding mexico, with occupied housing units;the average household size of foreign-born people in central america, excluding mexico, with occupied housing units;the mean number of people in a household of foreign-born people in central america, excluding mexico, with occupied housing units;the mean household size of foreign-born people in central america, excluding mexico, with occupied housing units" -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthCountry/MEX,"what is the average household size: foreign born, occupied housing unit, owner occupied, country/mex" -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthEasternAsia,"mean number of people per household in eastern asia for occupied, owner-occupied housing units where the head of the household was born in another country" -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthEurope,the number of foreign-born homeowners in europe;the number of people born outside of europe who live in owner-occupied housing units in europe;the percentage of people born outside of europe who live in owner-occupied housing units in europe;the number of foreign-born people in europe who live in owner-occupied housing units -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthLatinAmerica,average number of foreign-born people from latin america living in occupied housing units;average number of latin american immigrants living in occupied housing units;average number of people born in latin america living in occupied housing units;average number of foreign-born latin americans living in occupied housing units -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthNorthernWesternEurope,foreigners who live in northern western europe and own their own houses;foreign-born homeownership rate in northern western europe -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthCentralAsia, -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthEasternAsia,average household size of housing units occupied by people who were born outside of southeast asia -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthamerica,the average number of people living in a household occupied by foreign-born people in south america;average number of people living in a household occupied by foreign-born people in south america -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthSouthernEasternEurope,the average number of foreign-born people per household in southern eastern europe with housing units;the average household size of foreign-born people in southern eastern europe with housing units;the average number of people in a household with housing units in southern eastern europe who were born outside of the country;the average number of foreign-born people in a household with housing units in southern eastern europe -Mean_HouseholdSize_HousingUnit_ForeignBorn_OwnerOccupied_PlaceOfBirthWesternAsia,the average number of foreign-born people living in housing units in south central asia;the average number of foreign-born people per housing unit in south central asia;the average percentage of foreign-born people in housing units in south central asia;the average proportion of foreign-born people in housing units in south central asia -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthAsia, -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthCaribbean,average size of rental housing units occupied by foreign-born tenants in the caribbean;average rental housing unit size for foreign-born tenants in the caribbean;mean size of rental housing units occupied by foreign-born tenants in the caribbean region;average size of rental housing units occupied by foreign-born tenants in the caribbean islands -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthCentralAmericaExceptMexico,average number of people in a household of foreign-born people in central america (excluding mexico) living in rented housing units;average household size of foreign-born people in central america (excluding mexico) living in rented housing units;mean number of people in a household of foreign-born people in central america (excluding mexico) living in rented housing units;mean household size of foreign-born people in central america (excluding mexico) living in rented housing units -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthCountry/MEX,average household size of housing units occupied by people who were born outside the united states;average number of people per household in housing units occupied by foreign-born people;average household size of housing units occupied by people who were not born in the united states;average household size of housing units occupied by immigrants -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthEasternAsia,average number of people in a household of foreign-born people from eastern asia who rent their homes;average household size of foreign-born people from eastern asia who are renters;number of people in a household of foreign-born people from eastern asia who rent their homes on average;average number of people in a household of foreign-born people from eastern asia who are renters on average -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthEurope,the average number of people living in rental housing units occupied by foreign-born tenants in europe;the average household size of rental housing units occupied by foreign-born tenants in europe;the average number of people per household in rental housing units occupied by foreign-born tenants in europe;the average number of people living in each rental housing unit occupied by foreign-born tenants in europe -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthLatinAmerica,the average household size of housing units occupied by foreign-born people from latin america;the average number of people per household in housing units occupied by foreign-born people from latin america;the average household size in housing units occupied by foreign-born people from latin america;average household size of housing units occupied by foreign-born population in latin america -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthNorthernWesternEurope,average number of people living in a household of foreign-born people in northern western europe who rent their home;average household size of foreign-born people in northern western europe who are renters;number of people per household of foreign-born people in northern western europe who rent their home;size of households of foreign-born people in northern western europe who rent their home -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthCentralAsia,housing units occupied by foreign-born renters from south central asia;housing units occupied by renters who were born in south central asia;the number of occupied housing units with foreign-born renters in south central asia;the percentage of occupied housing units with foreign-born renters in south central asia -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthEasternAsia,the average number of people living in a rented household in south east asia who were born outside the country;the average household size of foreign-born renters in south east asia;the average number of people living in a rented household in south east asia who are not citizens;the average household size of foreign-born residents of south east asia who rent their homes -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthamerica,the average household size of housing units occupied by foreign-born people in south america;the average household size of housing units occupied by people who were born in another country and are now living in south america;average number of people living in a household occupied by foreign-born people in south america;average household size of housing units occupied by foreign-born people in south america -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthSouthernEasternEurope,the average number of people living in a household occupied by foreign-born tenants from southern and eastern europe;the average household size of housing units occupied by tenants who were born in southern and eastern europe;average number of people living in households occupied by foreign-born tenants from southern and eastern europe;average household size of housing units occupied by tenants who were born in southern and eastern europe -Mean_HouseholdSize_HousingUnit_ForeignBorn_RenterOccupied_PlaceOfBirthWesternAsia,average number of foreign-born people living in housing units in western asia;average percentage of foreign-born people living in housing units in western asia;average proportion of foreign-born people living in housing units in western asia;average number of foreign-born people per housing unit in western asia -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit,the average number of occupied housing units;the average number of dwellings that are occupied;average number of occupied dwellings;average number of occupied residences -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_OwnerOccupied,average household size of owner-occupied housing units;average household size of homes that are owned by the occupants;number of people per household in owner-occupied housing units;average number of people per household in housing units that are owner-occupied -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_RenterOccupied,average household size of tenant-occupied housing units;average household size in tenant-occupied housing units;number of people per household in tenant-occupied housing units;the average household size of tenant-occupied housing units -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAfrica,the average household size of foreign-born workers in africa;average household size of foreign-born african workers;mean household size of foreign-born workers from africa;average household size of foreign-born workers from africa -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAsia, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCaribbean,the average household size of foreign-born caribbean workers;average household size of foreign-born caribbeans who are household workers;average household size for foreign-born caribbean households with household workers;what is the typical household size of foreign-born caribbean workers? -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"average number of people in a household of foreign-born central americans, excluding mexico;mean number of people in a household of foreign-born central americans, excluding mexico" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,the average number of people in a household headed by a foreign-born worker in eastern asia;the average number of people in a household that is headed by a foreign-born worker in eastern asia;average number of people in households of foreign-born workers in eastern asia;mean number of people per household of foreign-born workers in eastern asia -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEurope,the average number of household workers in europe among the foreign-born population;the mean household worker size of the foreign-born population in europe;the average number of people who work in a household in europe who were born outside of europe;the mean number of people who work in a household in europe who were not born in europe -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average number of people in a household of foreign-born latin americans;the average household size of latin american immigrants;the average number of people living in a household with a latin american immigrant;the average number of people in a household headed by a latin american immigrant -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthMexico,average household size of foreign-born people in mexico;household size of foreign-born people in mexico on average;the average household size of foreign-born people in mexico;average household size of foreign-born mexicans -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,the average number of people in a household with a foreign-born worker in north america;the average household size of foreign-born workers in north america;the average number of people in a household headed by a foreign-born worker in north america;average household size of foreign-born workers in north america -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,average number of household workers in foreign-born households in northern western europe -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthOceania,the average number of household workers per foreign-born person in oceania;the average number of people who work in households per foreign-born person in oceania;the average number of people who are employed as household workers per foreign-born person in oceania;the average number of people who are employed as household workers in households per foreign-born person in oceania -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,the average number of household workers in foreign-born households in south central asia;the average size of foreign-born households in south central asia that have household workers;the average number of people who work in households in south central asia that are headed by foreign-born people;the average number of people who are employed as household workers in south central asia by foreign-born households -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the average number of foreign-born workers per household in southeast asia;the average household size of foreign-born workers in southeast asia;the average number of people in a household with a foreign-born worker in southeast asia;the average number of foreign-born workers per 100 households in southeast asia -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,average number of foreign-born workers per household in south america;average household size of foreign-born workers in south america;number of foreign-born workers per household in south america;household size of foreign-born workers in south america -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,average household size of foreign-born workers in southern eastern europe;mean household size of households with foreign-born workers in southern eastern europe;the average household size of foreign-born workers in southern eastern europe;the average household size of foreign-born workers from southern eastern europe -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,average number of household workers per household with foreign-born population in western asia;average number of household workers per household in western asia with foreign-born population;average household worker size in western asia for households with foreign-born population;mean household worker size in western asia for households with foreign-born population -Mean_Humidity_RelativeHumidity,the amount of water vapor in the air;the amount of water vapor in the air relative to the saturation point;the amount of water vapor in the air relative to the amount that the air could hold at that temperature;the amount of moisture in the air -Mean_IncomeDeficit_Household_FamilyHousehold,"the average income deficit of a family household;4 family households typically have a deficit in their income;the average deficit in income for family households in the united states;the average deficit in income for family households in the united states, on average" -Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold,married couple family households typically have a negative income deficit;married couple family households typically have a budget deficit;1 the average income deficit of a married couple family household;2 the amount of money that a married couple family household typically loses each year -Mean_IncomeDeficit_Household_SingleMotherFamilyHousehold,the average amount of money that a single mother household earns is less than the average amount of money that other households earn;the average amount of money that a single mother family household earns is less than the average amount of money that other households earn;the average amount of money that single-mother households earn is less than the average amount of money that other households earn;the average amount of money that a single mother family household earns is less than the average amount of money that a household earns -Mean_Income_Household,how much money do households make on average?;what's the average amount of money that households make? -Mean_Income_Household_FamilyHousehold,"how much money do families make, on average?;what's the average salary for a family?;what's the average amount of money that families make?;what's the typical income for a family?" -Mean_Income_Household_MarriedCoupleFamilyHousehold,how much money do married couples make on average?;what is the typical income for a married couple?;what is the average household income for married couples?;what is the average salary for married couples? -Mean_Income_Household_NonfamilyHousehold,how much money do people in nonfamily households make on average? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth,"interval since last birth;time since last birth;interval between live births;time between live births, in months" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,average time between births for mothers without diplomas;average interval between births for mothers without diplomas;average number of months between births for mothers without diplomas;average interval between live births for mothers without diplomas -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,what is the average time between births for american indian or alaska native mothers?;how long do american indian or alaska native mothers typically wait to have another child after giving birth?;what is the average interval between births for american indian or alaska native mothers?;how long do american indian or alaska native mothers go between having children? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAsianIndian,what is the average interval in months between live births for asian indian mothers?;what is the typical interval in months between live births for asian indian mothers?;the average amount of time that elapses between one live birth and the next for asian indian women;what is the average time between births for asian indian mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAssociatesDegree,what is the average interval between live births for mothers with an associate's degree;what is the average time between live births for mothers with an associate's degree;average time between births for mothers with an associate degree;average interval in months between live births for mothers with an associate degree -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBachelorsDegree,what is the average time between births for mothers with a bachelor's degree;how many months do mothers with a bachelor's degree typically wait between births;what is the average interval in months between live births for mothers with a bachelor's degree;average time between births for mothers with a bachelor's degree -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,the average number of months between live births for african american mothers;the average time it takes african american mothers to have another child after giving birth;the average interval between pregnancies for african american women;the average length of time african american women wait to have another child -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherChinese,the average number of months between a chinese mother's last live birth and her next pregnancy;the average time it takes a chinese mother to conceive after giving birth;the average interval between a chinese mother's live births;the average time it takes a chinese mother to have another child after giving birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,the average interval between births for mothers with doctorate degrees and professional school degrees;average time between births for mothers with doctorate degrees and professional school degrees;average interval in months between live births for mothers with doctorate degrees and professional school degrees;average number of months it takes for mothers with doctorate degrees and professional school degrees to have another child -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,"the average number of months between a mother's last live birth and her next pregnancy, according to the cdc;the average interval between a mother's last live birth and her next pregnancy, as reported by the cdc;average number of months between live births for mothers with cdc;average time between live births for mothers with cdc" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,how long do mothers of unknown ethnicity wait to have another child after giving birth;the average time between births for mothers of unknown ethnicity;the average interval between live births for mothers of unknown ethnicity;the average number of months between births for mothers of unknown ethnicity -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherFilipino,1 the average number of months between a filipino mother's last live birth and her next live birth;2 the average time it takes a filipino mother to have another child after giving birth;3 the average interval between live births for filipino mothers;4 the average time between pregnancies for filipino mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherForeignBorn,what is the average time between births for foreign-born mothers?;what is the average interval in months since last live birth by foreign-born mothers?;what is the average number of months between births for foreign-born mothers?;what is the average length of time between births for foreign-born mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,average time between births for guamanian or chamorro mothers;average interval in months between live births for guamanian or chamorro mothers;average number of months between live births for guamanian or chamorro mothers;average time it takes for a guamanian or chamorro mother to have another child -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"what is the average interval in months between live births for mothers with a high school diploma or ged?;what is the average time between live births for mothers with a high school diploma or ged?;what is the typical interval in months between live births for mothers with a high school diploma or ged?;average time between births for mothers with a high school diploma, ged, or equivalent" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHispanicOrLatino,the average time it takes a hispanic mother to have another child after giving birth;what is the average interval in months between live births for hispanic mothers?;what is the average time between live births for hispanic mothers?;what is the average interval between live births for hispanic mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherJapanese,average time between pregnancies for japanese mothers who did not give birth;average number of months between pregnancies for japanese mothers who did not have a live birth;average interval in months between pregnancies for japanese mothers who did not have a baby;average time lapse in months between pregnancies for japanese mothers who did not have a live birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherKorean,the average number of months between live births for korean mothers;the average time it takes for korean mothers to have another live birth after giving birth;the average interval between live births for korean mothers;the average length of time between live births for korean mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherLessThan9ThGrade,"average time between live births for mothers with less than a high school education;average interval in months between live births for mothers with less than a high school education;average months between live births for mothers with less than a high school education;the average number of months between a mother's last live birth and her next live birth, for mothers with less than a ninth-grade education" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherMastersDegree,"average time between births for mothers with a master's degree;average interval between live births for mothers with a master's degree;average number of months between live births for mothers with a master's degree;average interval between live births for mothers with a master's degree, in months" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNative,average interval in months since last live birth where mother's nativity is usc -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativeHawaiian,the average number of months between live births for native hawaiian mothers;the average time between live births for native hawaiian mothers;the average interval between live births for native hawaiian mothers;the average spacing between live births for native hawaiian mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,"how long did it take mothers with unstated nativity to have another child after their last live birth?;what is the average time interval between live births for mothers with unstated nativity?;on average, how many months after a live birth did mothers with unstated nativity have another child?;what is the average interval in months between a mother's last live birth and her next live birth if her nativity is unstated?" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average interval between births for non-hispanic mothers;the average time between live births for non-hispanic women;what is the average time between births for non-hispanic mothers?;what is the average interval in months since last live birth among non-hispanic mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNowMarried,average number of months between a married mother's last live birth and her next pregnancy;average interval between live births for married mothers;average time between pregnancies for married mothers;the average number of months between a married woman's last live birth and her next live birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherAsian,"the average number of months between a mother's last live birth and her next pregnancy, among asian mothers;the average interval between births, among asian mothers;the average length of time between births for asian mothers;the average interval between live births for asian mothers" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherPacificIslander,the average number of months between live births for other pacific islander mothers;the average time between births for other pacific islander mothers;the average interval between pregnancies for other pacific islander mothers;the average length of time between live births for other pacific islander mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSamoan,the average number of months between a samoan mother's last live birth and her next live birth;the average time it takes a samoan mother to have another child after giving birth;the average interval between births for samoan mothers;the average number of months between a samoan mother's live births -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,what is the average time it takes for a mother with some college education or without degrees to conceive again?;average time between births for mothers with some college education or without degrees;average interval between live births for mothers with some college education or without degrees;average number of months between births for mothers with some college education or without degrees -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,the average number of months between live births for multiracial mothers;the average interval between live births for multiracial mothers;the average length of time between live births for multiracial mothers;average time between live births for multiracial mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherUnmarried,average time between live births for unmarried mothers;average interval between births for unmarried women;average time between pregnancies for unmarried women;average time between live births for single mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherVietnamese,how long do vietnamese mothers wait between births?;what is the average interval in months between live births for vietnamese mothers?;what is the average time between live births for vietnamese mothers?;what is the average number of months between live births for vietnamese mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherWhiteAlone,the average time between live births for white mothers;the average number of months between live births for white mothers;the average interval in months between live births for white mothers;the average time it takes white mothers to have another child -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth,interval between pregnancies not ending in live birth;interval since last pregnancy;months since last pregnancy -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,average time between last pregnancy and next pregnancy for mothers with 9-12th grade education but no diploma;average interval in months between last pregnancy and next pregnancy for mothers with 9-12th grade education but no diploma;average number of months between last pregnancy and next pregnancy for mothers with 9-12th grade education but no diploma;average months since last pregnancy for mothers with 9-12th grade education but no diploma -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,how long do american indian or alaska native women wait between pregnancies that don't result in a live birth?;what is the average interval in months between pregnancies that don't result in a live birth for american indian or alaska native women?;what is the average number of months that american indian or alaska native women wait between pregnancies that don't result in a live birth?;what is the typical amount of time that american indian or alaska native women wait between pregnancies that don't result in a live birth? -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherAsianIndian,average interval in months since last pregnancy outcome not live birth for asian indian mothers;average time between pregnancies for asian indian mothers;average interval in months since last pregnancy for asian indian mothers;average number of months between pregnancies for asian indian mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherAssociatesDegree,"how long do mothers with associate degrees wait to get pregnant again after a non-live birth?;what is the average time it takes for mothers with associate degrees to get pregnant again after a non-live birth?;on average, how long do mothers with associate degrees wait to get pregnant again after a non-live birth?;how long do mothers with associate degrees typically wait to get pregnant again after a non-live birth?" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherBachelorsDegree,"average number of months between last pregnancy outcome and current pregnancy, excluding live births, for mothers with a bachelor's degree;average time between last pregnancy outcome and current pregnancy, excluding live births, for mothers with a bachelor's degree;average interval in months between last pregnancy outcome and current pregnancy, excluding live births, for mothers with a bachelor's degree;average months since last pregnancy outcome, excluding live births, for mothers with a bachelor's degree" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,how long do african american mothers wait to have another child after a stillbirth;what is the average interval in months between a stillbirth and the next pregnancy for african american mothers;the average number of months that african american mothers wait to have another child after a stillbirth;the average time it takes african american mothers to have another child after a stillbirth -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherChinese,the average time between pregnancies for chinese mothers;the average length of time between pregnancies for chinese mothers;the average amount of time that chinese mothers wait between pregnancies;the average gap between pregnancies for chinese mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,how long do women with phds typically stay pregnant?;what is the average length of pregnancy for women with doctorate degrees?;what is the typical gestation period for mothers with phds?;how many months do women with phds typically carry their babies to term? -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,average time between last pregnancy and current pregnancy for mothers with unknown education level;average time since last pregnancy for mothers with unknown education level;average number of months between last pregnancy and current pregnancy for mothers with unknown education level;average number of years between last pregnancy and current pregnancy for mothers with unknown education level -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,"the average number of months between a mother's last pregnancy outcome that was not a live birth and her next pregnancy, by ethnicity, according to the cdc;the average time it takes for a mother to get pregnant again after a pregnancy outcome that was not a live birth, by ethnicity, according to the cdc;the average length of time between a mother's last pregnancy outcome that was not a live birth and her next pregnancy, by ethnicity, according to the cdc;the average interval between a mother's last pregnancy outcome that was not a live birth and her next pregnancy, by ethnicity, according to the cdc" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherFilipino,how long do filipino mothers wait to conceive after a stillbirth;the average number of months filipino mothers wait to conceive after a stillbirth;the average interval in months between a stillbirth and the next conception in filipino mothers;the average time it takes filipino mothers to conceive after a stillbirth -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherForeignBorn,"how long do foreign-born mothers wait to have another child after a non-live birth;how long do foreign-born mothers wait to have another child after a miscarriage, stillbirth, or abortion;what is the average interval in months between a foreign-born mother's last pregnancy outcome that was not a live birth and her next pregnancy;how long do foreign-born mothers typically wait to have another child after a pregnancy that did not result in a live birth" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,average time between last pregnancy and death of guamanian or chamorro mothers;average interval in months since last pregnancy outcome dead of guamanian or chamorro mothers;average number of months between last pregnancy and death of guamanian or chamorro mothers;average months since last pregnancy outcome dead of guamanian or chamorro mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"average interval between a stillbirth and the next pregnancy for mothers with a high school diploma, ged, or equivalent;average interval in months between a stillbirth and the next pregnancy for mothers with a high school diploma, ged, or equivalent;what is the average monthly interval between stillbirths for mothers with a high school diploma, ged, or alternative credential?" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherHispanicOrLatino,average number of months between a hispanic mother's last pregnancy and a non-live birth;how long it takes on average for a hispanic mother to have another non-live birth after her last pregnancy;the average time it takes for a hispanic mother to have another non-live birth after her last pregnancy;the average interval in months between a hispanic mother's last pregnancy and a non-live birth -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherJapanese,the average time between pregnancies for japanese mothers;the average interval between pregnancies for japanese mothers;the average time between deliveries for japanese mothers;average interval since last pregnancy for japanese mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherKorean,average time between pregnancies for korean mothers whose last pregnancy did not result in a live birth;average interval in months between pregnancies for korean mothers whose last pregnancy was not a live birth;average number of months between pregnancies for korean mothers whose last pregnancy was not a live birth;average time between pregnancies for korean mothers whose last pregnancy ended in a miscarriage or stillbirth -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherLessThan9ThGrade,average time between last pregnancy and stillbirth for mothers with less than a 9th grade education;average interval between last pregnancy and stillbirth for mothers with less than a high school education;average time between last pregnancy and stillbirth for mothers with less than a high school diploma;average interval between last pregnancy and stillbirth for mothers with less than a high school diploma -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherMastersDegree,how long do mothers with master's degrees wait between pregnancies that don't result in a live birth?;what is the average interval in months between pregnancies that don't result in a live birth for mothers with master's degrees?;what is the average time it takes mothers with master's degrees to get pregnant again after a pregnancy that doesn't result in a live birth?;what is the average number of months that mothers with master's degrees wait before getting pregnant again after a pregnancy that doesn't result in a live birth? -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherNative,how long do native usc mothers typically carry their pregnancies?;what is the average length of pregnancy for native usc mothers?;how many months do native usc mothers typically carry their pregnancies?;how many months do native usc mothers typically carry their babies? -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherNativeHawaiian,average time between pregnancies for native hawaiian mothers with a non-live birth;average interval in months since last pregnancy outcome not live birth for native hawaiian mothers;average time since last pregnancy outcome not live birth for native hawaiian mothers;average time between pregnancies for native hawaiian mothers with a non-live birth outcome -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,average number of months since last pregnancy outcome that was not a live birth for mothers of unknown native origin;average time between pregnancies that did not result in a live birth for mothers of unknown native origin;average interval in months between pregnancies that did not result in a live birth for mothers of unknown native origin;average number of months since last pregnancy that did not result in a live birth for mothers of unknown native origin -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average time between pregnancies for non-hispanic mothers;the average interval between pregnancies for non-hispanic mothers;the average gap between pregnancies for non-hispanic mothers;the average time it takes for a non-hispanic mother to get pregnant again after having a baby -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherNowMarried,average time between a stillbirth and the next live birth for married mothers;average number of months between a stillbirth and the next live birth for married mothers;average interval in months between a stillbirth and the next live birth for married mothers;average duration of time between a stillbirth and the next live birth for married mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherOtherAsian,how long do asian mothers wait to get pregnant again after a non-live birth;how long do asian women wait to get pregnant again after a miscarriage;what is the average interval in months between a non-live birth and the next pregnancy for asian mothers;what is the average time it takes for asian women to get pregnant again after a miscarriage -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherOtherPacificIslander,"what is the average interval in months between a non-live birth and the next pregnancy for other pacific islander mothers?;on average, how many months elapse between a non-live birth and the next pregnancy for other pacific islander mothers?;what is the average time interval between a non-live birth and the next pregnancy for other pacific islander mothers?;how long do other pacific islander mothers wait between pregnancies that do not result in a live birth" -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherSamoan,average time between pregnancies for samoan mothers;4 samoan mothers' average interpregnancy interval;5 samoan mothers' average time between pregnancies;average time between pregnancies for samoan women -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,how long did it take mothers with some college education but no degree to have another child after a stillbirth;how long did mothers with some college education but no degree wait to have another child after a stillbirth;how long did mothers with some college education but no degree go between having a stillbirth and having another child;what was the average interval in months between a stillbirth and having another child for mothers with some college education but no degree -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,average time between last pregnancy and dead birth in multiracial mothers;average number of months between last pregnancy and dead birth in multiracial mothers;average interval in months between last pregnancy and dead birth in multiracial mothers;average length of time between last pregnancy and dead birth in multiracial mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherUnmarried,average number of months between a stillbirth and a subsequent birth for unmarried mothers;how long do unmarried mothers wait on average to have another child after a stillbirth;the average interval in months between a stillbirth and a subsequent birth for unmarried mothers;time between a stillbirth and a subsequent birth for unmarried mothers -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherVietnamese,average time between pregnancies for vietnamese mothers whose last pregnancy did not result in a live birth;average number of months between pregnancies for vietnamese mothers whose last pregnancy did not result in a live birth;length of time between pregnancies for vietnamese mothers whose last pregnancy did not result in a live birth;average interval in months between pregnancies for vietnamese mothers whose last pregnancy did not result in a live birth -Mean_IntervalSinceLastPregnancyOutcomeNotLiveBirth_BirthEvent_LiveBirth_MotherWhiteAlone,how long do white mothers wait between pregnancies that don't result in a live birth;the average time between pregnancies that don't result in a live birth for white mothers;the average interval in months between pregnancies that don't result in a live birth for white mothers;the average number of months between pregnancies that don't result in a live birth for white mothers -Mean_LmpGestationalAge_BirthEvent_LiveBirth,average gestational age at last menstrual period (lmp) in weeks;average gestational age based on last menstrual period (lmp) in weeks;average weeks of gestation at last menstrual period (lmp);average gestational age in weeks from last menstrual period (lmp) -Mean_LmpGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,"here are five different ways of saying ""average lmp gestational age in weeks of mothers without diplomas"" in a colloquial way:" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,what is the average gestational age of american indian or alaska native mothers at lmp? -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,average gestational age of asian indian mothers at last menstrual period;average gestational age of asian indian mothers at lmp;average gestational age of asian indian mothers at last month of period;average gestational age of asian indian mothers at lmp in weeks -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,"what is the average lmp gestational age of asian or pacific islander mothers;what is the average lmp gestational age of asian or pacific islander mothers, in weeks;the average gestational age of asian or pacific islander mothers at lmp is how many weeks?;what is the average gestational age of asian or pacific islander mothers at lmp?" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,average gestational age at lmp for mothers with an associate's degree;average weeks pregnant at lmp for mothers with an associate's degree;average gestational age at lmp by maternal education level: associates degree;average gestational age at last menstrual period (lmp) by maternal education level: associates degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,average gestational age at lmp for mothers with a bachelor's degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,what is the average lmp gestational age for african american mothers?;the average gestational age at lmp for african american mothers;the average number of weeks pregnant african american mothers are at lmp;the average gestational age of african american mothers at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherChinese,the average number of weeks a chinese mother is pregnant at lmp is -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,the average gestational age at lmp in mothers with doctorate and professional school degrees;the average number of weeks pregnant at lmp in mothers with doctorate and professional school degrees;the average gestational age of mothers with doctorate and professional school degrees at lmp;the average number of weeks pregnant mothers with doctorate and professional school degrees were at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average gestational age at lmp among mothers with cdc education;the average number of weeks pregnant at lmp among mothers with cdc education;the average gestational age at lmp among mothers who have received education from the centers for disease control and prevention -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,average gestational age at lmp for mothers with unknown or unstated ethnicity;average gestational age at lmp for mothers of unknown or unstated ethnicity;average gestational age at lmp where mother's ethnicity is cdc_ ethnicity unknown or not stated -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherFilipino,"the average gestational age of filipino mothers at the time of lmp;the average number of weeks that filipino mothers are pregnant at the time of lmp;the average gestational age of filipino mothers at the time of their last menstrual period, in weeks;the average gestational age of filipino mothers at the time of their lmp" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,average gestational age at lmp for foreign-born mothers;average gestational age at lmp for mothers who were born outside the united states;average gestational age at lmp for mothers who are not us citizens -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,the average gestational age at lmp for guamanian or chamorro mothers;the average number of weeks pregnant at lmp for guamanian or chamorro mothers;the average gestational age at lmp for women of guamanian or chamorro descent;the average number of weeks pregnant at lmp for women of guamanian or chamorro descent -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"the average gestational age at lmp (last menstrual period) in weeks for mothers with a high school diploma, ged, or alternative education;average gestational age at lmp where mother has high school diploma, ged, or equivalent;average gestational age at lmp for mothers with a high school diploma, ged, or equivalent;average gestational age at lmp for mothers who have completed high school, have a ged, or have an equivalent credential" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,the average gestational age at lmp for hispanic mothers;the average gestational age of hispanic mothers at lmp;the average number of weeks of gestation at lmp for hispanic mothers;the average number of weeks that hispanic mothers are pregnant at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherJapanese,"the average gestational age of japanese mothers at lmp;what is the average lmp gestational age of japanese mothers;what is the average gestational age of japanese mothers at the time of their last menstrual period, in weeks;the average gestational age of japanese mothers at the time of their last menstrual period (lmp)" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherKorean,the average gestational age at lmp for korean mothers is 394 weeks;the average gestational age at lmp for korean mothers;the average number of weeks pregnant korean mothers are at lmp;the average gestational age of korean mothers at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,the average gestational age at lmp for mothers with less than a 9th grade education;average gestational age at lmp where mothers have less than a 9th grade education;average gestational age at lmp for mothers with less than a 9th grade education;average gestational age at lmp for mothers who have not completed 9th grade -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,average lmp (last menstrual period) gestational age in weeks for mothers with a master's degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNative, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,the average gestational age at lmp for native hawaiian mothers;the average number of weeks pregnant native hawaiian mothers are at lmp;the average gestational age of native hawaiian mothers at lmp;the average number of weeks native hawaiian mothers are pregnant at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,average gestational age at lmp for mothers of unstated nativity;average gestational age at last menstrual period for mothers of unstated nativity;average gestational age at lmp for mothers of unknown nativity;average gestational age at delivery for mothers of unstated nativity -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average gestational age of non-hispanic mothers at the time of their lmp;the average number of weeks pregnant non-hispanic mothers are at the time of their lmp;the average gestational age of non-hispanic mothers at lmp;the average number of weeks pregnant non-hispanic mothers are at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,the average gestational age of married mothers at lmp;the average number of weeks pregnant married mothers are at lmp;the average time married mothers are pregnant at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,the average gestational age at lmp for asian mothers;the average number of weeks pregnant asian mothers are at lmp;the average gestational age of asian mothers at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,average number of weeks pregnant at lmp for other pacific islander mothers;the average gestational age at lmp for mothers of other pacific islander race;the average number of weeks pregnant at lmp for mothers of other pacific islander race;the average gestational age of mothers of other pacific islander race at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSamoan,the average gestational age of samoan mothers at lmp;the average number of weeks that samoan mothers carry their babies at lmp;the average gestational age at lmp for samoan mothers;the average number of weeks of gestation at lmp for samoan mothers -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,average gestational age at last menstrual period (lmp) in weeks for multiracial mothers;average gestational age at lmp for mothers of multiple races;average gestational age at lmp for women of multiple races;average gestational age at last menstrual period (lmp) in weeks of multiracial mothers -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,"sure, here are 5 different ways of saying ""average lmp gestational age in weeks for unmarried mothers"":" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,average gestational age at lmp for vietnamese mothers;average gestational age for vietnamese mothers at lmp;average gestational age of vietnamese mothers at lmp;average gestational age of vietnamese mothers based on lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,the average gestational age of white mothers at lmp;the average number of weeks of gestation for white mothers at lmp;the average gestational age of white mothers at the time of their lmp;the average number of weeks that white mothers are pregnant at the time of their lmp -Mean_MarketValue_Farm_AgriculturalProducts,the median price of an agricultural property -Mean_MarketValue_Farm_LandAndBuildings,the average price of farmland and buildings in the united states;the average cost of farmland and buildings in the united states;the average value of farmland and buildings in the united states;the average worth of farmland and buildings in the united states -Mean_MarketValue_Farm_MachineryAndEquipment, -Mean_MaxTemperature,the average high temperature;the average temperature at its peak;the average temperature at its highest point -Mean_MaxTemperature_Forest,the average high temperature in forests;the peak temperature in wooded areas;the highest temperature in forests;the hottest temperature in forests -Mean_MothersAge_BirthEvent_LiveBirth,the average age of a mother;the average age of mothers at the time of their child's birth;the average age of mothers at childbirth;how old are mothers on average? -Mean_MothersAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,average age of mothers who have completed 9th to 12th grade but do not have a high school diploma;average age of mothers who have completed 9-12th grade but do not have a diploma;the average age of mothers with 9th to 12th grade education and no diploma;the average age of mothers who have completed 9th to 12th grade but do not have a diploma -Mean_MothersAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,the average age of american indian or alaska native mothers;the average age at which american indian or alaska native women become mothers;the average age at which american indian or alaska native women have their first child;the average age of motherhood for american indian or alaska native women -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianIndian,average age of asian indian mothers;average age of mothers who are asian indian;average age of asian indian women who are mothers;average age of mothers with asian indian ethnicity -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,the average age of asian or pacific islander mothers;the average age at which asian or pacific islander women become mothers;the average age of first-time mothers of asian or pacific islander descent;the average age at which asian or pacific islander women have their first child -Mean_MothersAge_BirthEvent_LiveBirth_MotherAssociatesDegree,the average age of mothers with associate's degrees;the average age at which women with associate's degrees become mothers;the average age of women who have associate's degrees and have children;the average age of mothers who have completed an associate's degree -Mean_MothersAge_BirthEvent_LiveBirth_MotherBachelorsDegree,the average age of mothers with bachelor's degrees;the average age at which women with bachelor's degrees have children;the average age of first-time mothers with bachelor's degrees;the average age of mothers who have completed a bachelor's degree -Mean_MothersAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,the average age of african american mothers;the average age at which african american women become mothers;the average age of first-time mothers among african americans;the average age of african american women who have children -Mean_MothersAge_BirthEvent_LiveBirth_MotherChinese,the average age of chinese mothers;the average age at which chinese women become mothers;the average age of first-time mothers in china;the average age of mothers in china -Mean_MothersAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,the average age of mothers with doctorate degrees and professional degrees;the average age of women with doctorate degrees and professional degrees who are mothers;the average age of mothers who have doctorate degrees and professional degrees;the average age of mothers who are also doctorate degree holders and professional degree holders -Mean_MothersAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average age of mothers whose education level is unstated;the average age of mothers whose education is not stated;the average age of mothers with unstated education;the average age of mothers with unknown educational attainment -Mean_MothersAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,average age of mothers whose ethnicity is unknown by the cdc;average age of mothers with unknown ethnicity;average age of mothers whose ethnicity is not reported by the cdc;average age of mothers whose ethnicity is not known to the cdc -Mean_MothersAge_BirthEvent_LiveBirth_MotherFilipino,the average age at which filipino women have their first child;the typical age of filipino mothers;the age when most filipino women become mothers;the age at which filipino women are most likely to have children -Mean_MothersAge_BirthEvent_LiveBirth_MotherForeignBorn,the average age of foreign-born mothers when they give birth;the average age of mothers who were born in another country when they give birth;the average age of foreign-born mothers;the average age of mothers who were born in another country -Mean_MothersAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,guamanian mothers' average age in years;the average age of a guamanian mother;the average age at which guamanian women become mothers;how old are guamanian mothers on average -Mean_MothersAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,average age of mothers who are high school graduates;average age of mothers with a high school diploma;average age of mothers who have completed high school;average age of mothers who have a high school education -Mean_MothersAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,the average age of hispanic women who become mothers;the average age of hispanic women who have become mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherJapanese,average age of mothers who are japanese;average age of japanese mothers;average age of mothers of japanese descent;average age of mothers who identify as japanese -Mean_MothersAge_BirthEvent_LiveBirth_MotherKorean,the average age of korean mothers when they give birth;the average age at which korean women become mothers;the average age of first-time mothers in korea;the average age of korean mothers at childbirth -Mean_MothersAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,what's the average age of mothers with less than a 9th grade education?;what's the average age of mothers who have less than a high school diploma?;what's the average age of mothers who have not completed 9th grade?;the average age of mothers with less than a 9th grade education -Mean_MothersAge_BirthEvent_LiveBirth_MotherMastersDegree,average age of mothers with a master's degree;the average age of mothers who have a master's degree;the average age of women with a master's degree who are mothers;the average age of mothers who have completed a master's degree -Mean_MothersAge_BirthEvent_LiveBirth_MotherNative,the average age of usc native mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativeHawaiian,the average age of native hawaiian mothers;how old are native hawaiian mothers on average;what is the average age of native hawaiian mothers;the average age of native hawaiian women who have become mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,the average age of mothers who have not disclosed their nativity;the average age of mothers whose place of birth is unknown;the average age of mothers who have not disclosed their place of birth;the average age of mothers with unknown nativity -Mean_MothersAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average age of hispanic mothers;the average age at which hispanic women become mothers;the average age of hispanic women who have children;the average age of hispanic women who are mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNowMarried,average age of mothers who are now married;average age of married mothers;average age of mothers with a current marital status of married;average age of mothers who are currently married -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherAsian,the average age of asian mothers;the average age at which asian women become mothers;the average age of first-time mothers in asia;the average age of asian mothers when they give birth -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,the average age of other pacific islander mothers;the average age at which other pacific islander women have children;the average age of other pacific islander women who give birth;the average age of other pacific islander women who become mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherSamoan,how old are samoan mothers on average?;what is the average age of a samoan mother?;what is the average age at which samoan women become mothers?;what is the average age of first-time mothers in samoa? -Mean_MothersAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,the average age of college-educated mothers without degrees;the average age of mothers who have a college education but no degree;the average age of mothers who have attended college but do not have a degree;the average age of mothers who have some college but no degree -Mean_MothersAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,the average age of mothers who identify as two or more races;the average age of mothers who identify with more than one race;the average age of mothers who are mixed race;the average age of mothers who identify with two or more racial groups -Mean_MothersAge_BirthEvent_LiveBirth_MotherUnmarried,average age of unmarried mothers;average age of mothers who are not married;average age of single mothers;average age of mothers who are not in a relationship -Mean_MothersAge_BirthEvent_LiveBirth_MotherVietnamese,the average age of vietnamese mothers;the average age at which vietnamese women have children;the average age of first-time mothers in vietnam;the average age of mothers in vietnam -Mean_MothersAge_BirthEvent_LiveBirth_MotherWhiteAlone,the average age of white mothers when they have their first child;the average age of white women who become mothers;the average age of white mothers at the time of their child's birth;average age of white mothers -Mean_NetMeasure_Income_Farm, -Mean_OeGestationalAge_BirthEvent_LiveBirth,the average number of weeks of gestation for an uncomplicated pregnancy;average gestational age -Mean_OeGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,the average number of weeks that mothers without diplomas carry their babies to term;the average gestational age of babies born to mothers without diplomas;the average gestation period for mothers without diplomas;average gestational age at birth for mothers without diplomas -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,the average gestational age of american indian or alaska native mothers;the average length of pregnancy for american indian or alaska native mothers;the average gestation period for american indian or alaska native mothers;how many weeks pregnant are american indian or alaska native mothers on average -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,average gestational age for asian indian babies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,the average gestational age of asian mothers;the average gestation period for asian mothers;the average gestational age of asian babies at birth;the average gestational age at birth for asian mothers is 40 weeks -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,the average number of weeks that mothers with an associate's degree carry their babies;the average gestation period of mothers with an associate's degree;average gestational age at birth for mothers with an associate's degree;average number of weeks pregnant at birth for mothers with an associate's degree -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,average gestational age at birth for mothers with a bachelor's degree;average gestation period for mothers with a bachelor's degree;the average gestational age of babies born to mothers with a bachelor's degree;the average gestation period for babies born to mothers with a bachelor's degree -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,the average gestational age of african american babies at birth;the average gestation period for african american mothers;what is the average gestational age of african american mothers?;what is the average gestation period for african american mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherChinese,average gestational age at birth for chinese mothers;average gestation period for chinese mothers;the average gestation period of chinese mothers;the average gestational age at delivery for chinese mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,average gestational age at birth for mothers with doctorate degrees and professional school degrees;average gestation period for mothers with doctorate degrees and professional school degrees;average gestational age of mothers with doctorate and professional school degrees;average gestation period for mothers with doctorate and professional school degrees -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average gestational age in weeks for mothers with unknown educational attainment is not stated;the average number of weeks of gestation for mothers with unknown educational attainment is not known;the average gestational period for mothers with unknown educational attainment is not documented;the average gestational age in weeks for mothers with an unspecified educational attainment is unknown -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,average number of weeks pregnant when mothers of unstated ethnicity give birth;average gestational age of babies born to mothers of unstated ethnicity;average gestational age at birth for mothers of unstated ethnicity;average gestational age for babies born to mothers of unstated ethnicity -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherFilipino,average gestational age of filipino pregnancies;average gestational age for filipino pregnancies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,the average gestation period of foreign-born mothers;the average number of weeks that foreign-born mothers carry their pregnancies;gestational age at birth for foreign-born mothers;average weeks of gestation for foreign-born mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,the average gestational age of guamanian mothers;the average number of weeks that a guamanian mother carries her baby;the average time that a guamanian mother is pregnant;the average gestation period for guamanian mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,the average gestational age of babies born to mothers who have graduated from high school;the average gestation period for babies born to mothers with a high school education;the average gestational age of mothers who are high school graduates;the average number of weeks that mothers who are high school graduates carry their babies to term -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,the average gestational age of hispanic mothers;the average gestation period for hispanic mothers;the average gestation period for hispanic women;what is the average gestational age of hispanic mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherJapanese,"1 what is the average gestational age of japanese mothers?;what is the average gestational age for japanese women?;sure, here are five different ways of saying ""average oe gestational age in weeks where mothers race is japanese"":" -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherKorean,the average gestational age of korean mothers;the average gestation period for korean mothers;what is the average gestational age of korean mothers?;what is the average gestation period for korean mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,the average gestational age of mothers in 9th grade;the average number of weeks a mother in 9th grade is pregnant;the average time a mother in 9th grade has been pregnant;the average length of pregnancy for mothers in 9th grade -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,the average gestational age of mothers with a master's degree;the average gestation period for mothers with a master's degree;the average gestational age of mothers with a master's degree in weeks;the average time that mothers with a master's degree are pregnant -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNative,the average gestational age of usc native mothers;the average gestation period of usc native mothers;the average gestational age at delivery for usc native mothers;average gestational age of usc native mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,the average gestational age of native hawaiian babies at birth;the average gestation period for native hawaiian mothers;the average gestation period for native hawaiian babies;the average gestational age of native hawaiian mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,the average gestational age of mothers with unknown cdc nativity;the average gestation period for mothers with unknown cdc nativity;the average number of weeks that mothers with unknown cdc nativity carry their pregnancies;the average gestational period of mothers with unknown cdc nativity -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,"sure here are five different ways of saying ""average oe gestational age in weeks of non-hispanic mothers"" in a colloquial way:" -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,the average gestational age of babies born to mothers who are now married;the average number of weeks that babies born to mothers who are now married gestate;the average gestation period for babies born to mothers who are now married;average gestational age of babies born to married mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,what is the average gestational age of asian babies?;what is the typical gestational age of asian babies at birth? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,the average gestational age of other pacific islander mothers;the average gestation period for other pacific islander mothers;the average gestational age at delivery for other pacific islander mothers;the average gestational age of other pacific islander babies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSamoan,the average gestational age of babies born to samoan mothers;the average gestational age of samoan newborns;the average length of gestation for samoan mothers;the average gestational period for samoan mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,the average number of weeks a woman with some college education without a degree carries her baby before giving birth;the average gestation period for women with some college education but no degree;the average gestational age of babies born to women with some college education but no degree;the average number of weeks a woman with some college education carries her baby before it is born -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,what is the average gestational age of multiracial mothers?;what is the typical gestational age of multiracial mothers?;the average gestational age of multiracial babies;the average gestation period for multiracial mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,the average gestational age of babies born to unmarried mothers;what is the average gestational age of babies born to unmarried mothers?;what is the average age of gestation for babies born to unmarried mothers?;what is the typical gestational age for babies born to unmarried mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,what is the average gestational age of babies born to vietnamese mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,the average gestational age of white alone babies at birth;the average gestation period for white alone babies -Mean_PalmerDroughtSeverityIndex,pdsi index;pdsi: a measure of drought severity;pdsi: a way of measuring how dry or wet it is;pdsi: a drought index -Mean_PalmerDroughtSeverityIndex_Forest,mean palmer drought severity index (pdsi) in forested areas;mean palmer drought severity index (pdsi) in forests;mean palmer drought severity index (pdsi) in wooded areas;mean palmer drought severity index (pdsi) in forested land -Mean_PopulationWeighted_Concentration_AirPollutant_SmokePM25,"average concentration of smoke pm25, weighted by population;mean concentration of smoke pm25, weighted by population;population-weighted mean of smoke pm25 concentration;population-weighted mean of smoke pm25 concentration levels" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth,average body mass index before pregnancy;average body mass index before becoming pregnant;average body mass index (bmi) before pregnancy;average pre-pregnancy bmi -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,the average pre-pregnancy bmi for mothers with a 9th to 12th grade education without a diploma is;the average body mass index for mothers who have completed 9th to 12th grade but do not have a diploma before becoming pregnant is;the average bmi of mothers who have completed high school but do not have a diploma before becoming pregnant is;the average body mass index of mothers who have completed 9th to 12th grade but do not have a diploma before becoming pregnant is -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAsianIndian,"the average body mass index (bmi) of asian indian mothers before pregnancy;the average weight of asian indian mothers before pregnancy, relative to their height;the average percentage of body fat in asian indian mothers before pregnancy;the average amount of body mass in asian indian mothers before pregnancy, relative to their height and frame size" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAssociatesDegree,the average bmi of mothers with associates degrees before pregnancy;the average body mass index of mothers with associates degrees before they became pregnant;the average body weight of mothers with associates degrees before they conceived;the average body fat percentage of mothers with associates degrees before they got pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBachelorsDegree,body mass index (bmi) of mothers with a bachelor's degree before pregnancy;the average bmi of mothers with a bachelor's degree before pregnancy;the average bmi of mothers who have a bachelor's degree before pregnancy;the average bmi of mothers who have completed a bachelor's degree before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,"the average bmi of black or african american mothers before pregnancy;the average body mass index of black or african american mothers before pregnancy;the average body weight of black or african american mothers before pregnancy, relative to their height;the average amount of body fat in black or african american mothers before pregnancy" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherChinese,the average body mass index (bmi) of chinese mothers before pregnancy;the average weight-to-height ratio of chinese mothers before pregnancy;the average body fat percentage of chinese mothers before pregnancy;the average level of adiposity of chinese mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,average bmi of mothers with a doctorate degree or professional school degree before pregnancy;average body mass index of mothers with a doctorate degree or professional school degree before pregnancy;average body mass index of pregnant women with a doctorate degree or professional school degree;average pre-pregnancy body mass index of mothers with a doctorate degree or professional school degree -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average pre-pregnancy bmi for mothers with different levels of education is available from the cdc;the cdc has data on the average pre-pregnancy bmi for mothers by education level;the cdc provides data on the average pre-pregnancy bmi for mothers with different levels of education;the cdc has information on the average pre-pregnancy bmi for mothers by education level -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,average bmi of cdc mothers before pregnancy;average body mass index of cdc mothers before pregnancy;average body weight index of cdc mothers before pregnancy;average body mass index of cdc mothers before conceiving -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherFilipino,the average body mass index (bmi) of filipino mothers before pregnancy;the typical bmi of filipino mothers before they become pregnant;the usual bmi of filipino mothers before they conceive;the common bmi of filipino mothers before they get pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherForeignBorn,average bmi of foreign-born mothers before pregnancy;average body mass index of foreign-born mothers before pregnancy;mean body mass index of foreign-born mothers before pregnancy;average pre-pregnancy bmi of foreign-born mothers -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,average bmi for guamanian or chamorro mothers before pregnancy;average body mass index of guamanian or chamorro mothers before pregnancy;average pre-pregnancy body mass index of guamanian or chamorro mothers;average bmi of guamanian or chamorro mothers before they became pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"average bmi of mothers who have a high school diploma, ged, or equivalent before pregnancy;average bmi of mothers who have a ged before pregnancy;what is the average pre-pregnancy bmi for mothers with a high school diploma, ged, or equivalent?;what is the average body mass index (bmi) of mothers who have graduated from high school, obtained a ged, or have an equivalent educational credential?" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHispanicOrLatino,what is the average body mass index for hispanic women before pregnancy?;what is the average body mass index of hispanic women before they conceive?;what is the average bmi of hispanic women before they start a family?;what is the average body mass index of hispanic women before pregnancy? -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherJapanese,1 the average body mass index (bmi) of japanese mothers before pregnancy;2 the typical bmi of japanese mothers before they become pregnant;3 the usual bmi of japanese mothers before they conceive;4 the common bmi of japanese mothers before they are expecting -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherKorean,the average bmi of korean mothers before pregnancy;the average body mass index of korean women before they become pregnant;the average weight-to-height ratio of korean women before they conceive;the average body fat percentage of korean women before they get pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherLessThan9ThGrade,the average bmi of mothers with less than a 9th grade education before pregnancy;the average body mass index of mothers with less than a 9th grade education before pregnancy;the average body mass index of mothers who have not completed 9th grade before pregnancy;average bmi of mothers with less than a high school diploma before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherMastersDegree,average bmi of mothers with master's degrees before pregnancy;average body mass index of mothers with master's degrees before pregnancy;average body mass index of women with master's degrees before pregnancy;average pre-pregnancy bmi of mothers with master's degrees -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNative,- what is the average bmi of usc mothers before pregnancy?;- what is the typical bmi of usc mothers before pregnancy?;- what is the usual bmi of usc mothers before pregnancy?;- what is the common bmi of usc mothers before pregnancy? -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativeHawaiian,"the average body mass index (bmi) of native hawaiian mothers before they become pregnant;the average weight of native hawaiian mothers before they become pregnant, relative to their height;the average body size of native hawaiian mothers before they become pregnant;the average amount of body fat in native hawaiian mothers before they become pregnant" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,the average bmi of mothers whose nativity is cdc_ nativity unknown or not stated;the average bmi of mothers with unknown or unstated nativity;the average bmi of mothers whose nativity is not known or not stated;the average bmi of mothers whose nativity is unknown or not reported -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,the average body mass index (bmi) of non-hispanic mothers before pregnancy;the average weight-to-height ratio of non-hispanic mothers before pregnancy;the average body fat percentage of non-hispanic mothers before pregnancy;the average amount of body fat that non-hispanic mothers have before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNowMarried,the average body mass index (bmi) of married mothers before they get pregnant;the average weight-to-height ratio of married women before they conceive;the average body fat percentage of married women before they become pregnant;the average size of married women before they have a baby -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherAsian,average bmi before pregnancy for mothers who identify as other asian;the average body mass index (bmi) of women who identify as other asian before pregnancy;the average bmi of women who identify as other asian before they become pregnant;the average bmi of women who identify as other asian before they conceive -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherPacificIslander,"the average body mass index (bmi) of other pacific islander mothers before pregnancy;the average weight of other pacific islander mothers before pregnancy, relative to their height;the average amount of body fat in other pacific islander mothers before pregnancy;the average size of other pacific islander mothers before pregnancy" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSamoan,average bmi of samoan women before pregnancy;average body mass index of samoan women before pregnancy;average pre-pregnancy bmi of samoan women;average body mass index of samoan women before they become pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,the average bmi of mothers with some college education before pregnancy;the average body mass index of mothers with some college education before pregnancy;the average body mass index of mothers who have some college education before pregnancy;the average body mass index of mothers who have some college education before they became pregnant -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,the average body mass index (bmi) of pregnant women who identify as multiracial;the average bmi of multiracial women before pregnancy;the average bmi of pregnant women who are not of a single race;the average bmi of pregnant women who identify as more than one race -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherUnmarried,the average body mass index (bmi) of unmarried mothers before pregnancy;the average bmi of unmarried women before they become pregnant;the average bmi of women who are unmarried when they conceive;the average bmi of women who are not married when they conceive a child -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherVietnamese,the average body mass index (bmi) of vietnamese mothers before pregnancy;the typical bmi of vietnamese mothers before they become pregnant;the usual bmi of vietnamese mothers before they conceive;the common bmi of vietnamese mothers before they start a family -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherWhiteAlone,the average body mass index (bmi) of white women before pregnancy;the typical bmi of white women before they become pregnant;the average weight-to-height ratio of white women before they conceive;the average body mass index (bmi) of white mothers before pregnancy -Mean_PrecipitableWater_Atmosphere, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,how often do mothers with a 9th to 12th grade education without a diploma typically go to prenatal appointments? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,how many prenatal visits do american indian or alaska native mothers typically have?;what is the average number of prenatal visits for american indian or alaska native mothers?;what is the typical number of prenatal visits for american indian or alaska native mothers?;how many prenatal visits do most american indian or alaska native mothers have? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAsianIndian,how many prenatal visits do asian and indian mothers typically have?;what is the average number of prenatal visits for asian and indian mothers?;how often do asian and indian mothers go to the doctor during pregnancy?;what is the recommended number of prenatal visits for asian and indian mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAssociatesDegree,"how many prenatal visits do mothers with an associate's degree typically have?;what is the average number of prenatal visits for mothers with an associate's degree?;on average, how many prenatal visits do mothers with an associate's degree make?;what is the typical number of prenatal visits for mothers with an associate's degree?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBachelorsDegree,average number of prenatal visits for mothers with a bachelor's degree;average number of prenatal checkups for mothers with a bachelor's degree;average number of prenatal appointments for mothers with a bachelor's degree;the average number of prenatal visits for mothers with a bachelor's degree -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,"how many prenatal visits do african american mothers typically have?;what is the average number of prenatal visits for african american mothers?;on average, how many times do african american mothers visit their doctor during pregnancy?;what is the typical number of prenatal visits for african american mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherChinese,how many times do chinese mothers go to the doctor during pregnancy?;what is the average number of prenatal visits for chinese mothers?;how often do chinese mothers go to the doctor for prenatal care?;what is the typical number of prenatal visits for chinese mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,the average number of prenatal visits for mothers with a doctorate degree or professional school degree;the average number of times a mother with a doctorate degree or professional school degree visits her doctor during pregnancy;the average number of prenatal appointments for mothers with a doctorate degree or professional school degree;the average number of prenatal checkups for mothers with a doctorate degree or professional school degree -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,the average number of prenatal visits for mothers with unknown educational attainment;the average number of prenatal care visits for mothers with unknown educational attainment;the average number of prenatal appointments for mothers with unknown educational attainment;the average number of prenatal checkups for mothers with unknown educational attainment -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,how many prenatal visits do mothers typically have in the cdc?;what is the average number of prenatal visits for mothers in the cdc?;what is the typical number of prenatal visits for mothers in the cdc?;how many times do mothers typically go to the doctor for prenatal care in the cdc? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherFilipino,"how many prenatal visits do filipino mothers typically have?;what is the average number of prenatal visits for filipino mothers?;on average, how many times do filipino mothers visit their doctor during pregnancy?;what is the typical number of prenatal visits for filipino mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherForeignBorn,average number of prenatal visits for foreign-born mothers in the us;average number of times foreign-born mothers in the us visit their doctor during pregnancy;average number of prenatal checkups for foreign-born mothers in the us;average number of prenatal appointments for foreign-born mothers in the us -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,how many prenatal visits do guamanian or chamorro mothers typically have?;what is the average number of prenatal visits for guamanian or chamorro mothers?;how often do guamanian or chamorro mothers go to the doctor for prenatal care?;what is the typical number of prenatal visits for guamanian or chamorro mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,the average number of prenatal visits for mothers with a high school diploma;the average number of prenatal care appointments for mothers who have graduated from high school;the average number of prenatal visits for mothers with a high school education;the average number of prenatal appointments for mothers with a high school diploma -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHispanicOrLatino,how many prenatal visits do hispanic mothers typically have?;what is the average number of prenatal visits for hispanic mothers?;how often do hispanic mothers see their doctor during pregnancy?;what is the typical number of prenatal visits for hispanic mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherJapanese,how many prenatal visits do japanese mothers typically have?;what is the average number of prenatal visits for japanese mothers?;what is the typical number of prenatal visits for japanese mothers?;how many times do japanese mothers typically go to the doctor for prenatal care? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherKorean,"how many prenatal visits do korean mothers typically have?;what is the average number of prenatal visits for korean mothers?;on average, how many times do korean mothers visit the doctor during pregnancy?;what is the typical number of prenatal visits for korean mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherLessThan9ThGrade,the average number of prenatal visits for mothers with less than a 9th grade education;the average number of times mothers with less than a 9th grade education see a doctor during pregnancy;the average number of prenatal checkups for mothers with less than a 9th grade education;the average number of prenatal appointments for mothers with less than a 9th grade education -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherMastersDegree,how many prenatal visits do mothers with master's degrees typically have?;what is the average number of prenatal visits for mothers with master's degrees?;what is the typical number of prenatal visits for mothers with master's degrees?;how many times do mothers with master's degrees typically see their doctor during their pregnancy? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNative,average number of prenatal visits for usc native mothers;average number of times usc native mothers go to the doctor for prenatal care;average number of prenatal checkups for usc native mothers;average number of prenatal visits to the doctor for usc native mothers -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativeHawaiian,how often do native hawaiian mothers go to the doctor during pregnancy;the average number of prenatal visits for native hawaiian mothers;the number of prenatal visits made by native hawaiian mothers;the average number of times native hawaiian mothers see their doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,the cdc has data on the average number of prenatal visits for mothers by nativity;the cdc reports the average number of prenatal visits for mothers by nativity;the cdc has information on the average number of prenatal visits for mothers by nativity;the cdc has statistics on the average number of prenatal visits for mothers by nativity -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,average number of times a mother who is not hispanic or latino sees her doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNowMarried,"how many prenatal visits do married mothers typically have?;what is the average number of prenatal visits for married mothers?;on average, how many times do married mothers visit the doctor during pregnancy?;what is the typical number of prenatal visits for married mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherAsian,how many prenatal visits do asian mothers typically have?;what is the average number of prenatal visits for asian mothers?;what is the typical number of prenatal visits for asian mothers?;how often do asian mothers go to the doctor during pregnancy? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherPacificIslander,the average number of prenatal visits for pacific islander mothers;the average number of times pacific islander mothers go to the doctor during pregnancy;the average number of doctor's appointments pacific islander mothers have during pregnancy;the average number of times pacific islander mothers see their doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSamoan,how many prenatal visits do samoan mothers typically have?;what is the average number of prenatal visits for samoan mothers?;what is the typical number of prenatal visits for samoan mothers?;how often do samoan mothers see their doctor during pregnancy? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,women with some college education but no degree make prenatal visits;mothers who have some college but no degree go to prenatal appointments;women with some college but no degree see their doctor during pregnancy;mothers who have some college but no degree see their healthcare provider during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,"how many prenatal visits do multiracial mothers typically have?;on average, how many prenatal visits do multiracial mothers have?;what is the average number of prenatal visits for multiracial mothers?;what is the typical number of prenatal visits for multiracial mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherUnmarried,1 how many prenatal visits do unmarried mothers typically have?;2 what is the average number of prenatal visits for unmarried mothers?;3 what is the typical number of prenatal visits for unmarried mothers?;4 how often do unmarried mothers typically go to the doctor for prenatal care? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherVietnamese,"how many prenatal visits do vietnamese mothers typically make?;what is the average number of prenatal visits for vietnamese mothers?;on average, how many times do vietnamese mothers visit their doctor during pregnancy?;how often do vietnamese mothers see their doctor during pregnancy?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherWhiteAlone,the average number of prenatal visits for white mothers;the average number of times white mothers go to the doctor during pregnancy;the average number of doctor's appointments white mothers make during pregnancy;the average number of times white mothers see their doctor during pregnancy -Mean_Radiation_Downwelling_ShortwaveRadiation, -Mean_Rainfall,average rainfall;mean precipitation;mean annual rainfall;mean annual precipitation -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAfrica,average retirement income of foreign-born african households;the average amount of money that foreign-born african households earn in retirement;the typical retirement income of foreign-born african households;the amount of money that foreign-born african households typically earn in retirement -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAsia,the average income that households with foreign-born members in asia will receive after they retire;the average retirement income of households headed by foreign-born asians;the typical retirement income of households headed by foreign-born asians;the median retirement income of households headed by foreign-born asians -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,average retirement income of foreign-born households in the caribbean;the average amount of money that foreign-born households in the caribbean earn in retirement;the typical amount of money that foreign-born households in the caribbean have saved up for retirement;the median retirement income of foreign-born households in the caribbean -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,average retirement income of foreign-born households in central america excluding mexico;the average amount of money that foreign-born households in central america excluding mexico have saved for retirement;the typical amount of money that foreign-born households in central america excluding mexico have saved for retirement;the median amount of money that foreign-born households in central america excluding mexico have saved for retirement -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,the average retirement income of households with foreign-born residents from eastern asia;the average amount of money that households with foreign-born residents from eastern asia earn in retirement;the expected amount of money that households with foreign-born residents from eastern asia will have in retirement;average retirement income of households with foreign-born residents from eastern asia -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEurope,the average retirement income of foreign-born householders in europe;the average amount of money that foreign-born householders in europe earn in retirement;the typical income of foreign-born householders in europe who are retired;the typical amount of money that foreign-born householders in europe make after they retire -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average retirement income of foreign-born latin american households;the typical amount of money that foreign-born latin american households make in retirement;the amount of money that most foreign-born latin american households make after they retire;the typical income of foreign-born latin american households after they retire -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthMexico,the average retirement income of households in mexico with foreign-born members;the average amount of money that households in mexico with foreign-born members receive in retirement;the average income of households in mexico with foreign-born members after they retire;the average amount of money that households in mexico with foreign-born members have saved for retirement -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,the average retirement income of foreign-born households in north america;the average amount of money that foreign-born households in north america have saved for retirement;the average income that foreign-born households in north america receive after they retire;the average amount of money that foreign-born households in north america earn after they retire -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the average retirement income of households with foreign-born populations in northern western europe;the average amount of money that households with foreign-born populations in northern western europe earn after they retire;the typical amount of money that households with foreign-born populations in northern western europe have saved up for retirement;the usual amount of money that households with foreign-born populations in northern western europe receive from pensions and other retirement benefits -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthOceania,the average retirement income of foreign-born households in oceania;the average amount of money that foreign-born households in oceania receive in retirement;the typical amount of money that foreign-born households in oceania have saved up for retirement;the median retirement income of foreign-born households in oceania -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,how much money do foreign-born south asian homeowners make in retirement;what is the average retirement income of south asian homeowners who were born outside of the united states;what is the average amount of money that south asian homeowners who were born outside of the united states make in retirement;how much money do south asian homeowners who were born outside of the united states typically make in retirement -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the average retirement income of foreign-born households in southeast asia;the average amount of money that foreign-born households in southeast asia earn in retirement;the median retirement income of foreign-born households in southeast asia;the middle-ground retirement income of foreign-born households in southeast asia -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,households in south america with foreign-born members and their average retirement income;the average retirement income of households in south america with foreign-born members;the average income of households in south america with foreign-born members who are retired;the average income of households in south america whose members are retired and were born outside of the country -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the average income of foreign-born households in southern eastern europe after retirement;the average amount of money that foreign-born households in southern eastern europe make after they retire;the average amount of money that foreign-born households in southern eastern europe have saved up for retirement;the average amount of money that foreign-born households in southern eastern europe receive from pensions and other sources of income after they retire -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,the average retirement income of foreign-born households in western asia;the mean retirement income of foreign-born households in western asia;the typical retirement income of foreign-born households in western asia;the median retirement income of foreign-born households in western asia -Mean_Snowfall,average snowfall;typical snowfall;usual snowfall;annual snowfall -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,the average social security income of households owned by foreign-born people;the mean social security income of households owned by people who were born in other countries;the average social security income of households owned by people who were not born in the united states;the average social security income for households owned by foreign-born people -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,1 the average social security income of households with foreign-born asian residents;2 the average social security income of households with asian immigrants;4 the average social security income of households with people who are asian;5 the average social security income of households with people who are of asian descent -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,the average income of caribbean-born households in the united states;the typical household income of people from the caribbean who live in the us;the amount of money that the average caribbean-born household makes in the us;the average amount of money earned by caribbean-born households in the united states -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average social security income of foreign-born households in central america, excluding mexico;the mean social security income of foreign-born households in central america, excluding mexico;the average social security income of households in central america, excluding mexico, that are headed by someone who was born in another country;the mean social security income of households in central america, excluding mexico, that are headed by someone who was born in another country" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,the mean social security household income for people from eastern asia who were born in another country;the mean social security income for households with a head of household who was born in eastern asia;the mean social security household income of people from eastern asia who were born outside the united states;the mean social security income of households with a head of household from eastern asia who was born outside the united states -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,1 the average social security income of foreign-born householders in europe;2 the mean social security income of householders born outside of europe;3 the average social security income of householders who are not citizens of europe;4 the mean social security income of householders who were not born in europe -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average social security income for households with foreign-born latin american members;the typical social security income for households with latin american immigrants;the usual social security income for households with people from latin america who were born in other countries;the median social security income for households with latin american immigrants -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,the average social security income of households with foreign-born members;the average social security income of households with at least one foreign-born member;average social security income of foreign-born population households;the average amount of social security income received by foreign-born population households -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,1 average social security income of foreign-born households in north america;2 the average social security income of households with foreign-born members in north america;3 the mean social security income of households with foreign-born members in north america;4 the average amount of social security income received by households with foreign-born members in north america -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the average social security income of households in north western europe with foreign-born members;the average amount of social security income received by households in north western europe with foreign-born members;the average social security income of households in north western europe that have at least one foreign-born member;the average social security income of households in north western europe that include at least one foreign-born member -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthOceania,the average social security income of foreign-born householders in oceania;the average amount of social security income received by foreign-born householders in oceania;the mean social security income of foreign-born householders in oceania;the average social security income of foreign-born householders in the pacific islands -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,average social security income of foreign born households in south central asia;the average social security income of households with foreign-born members in south central asia;the mean social security income of households with foreign-born members in south central asia;the social security income of households with foreign-born members in south central asia on average -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the average social security income of households owned by foreign-born people in southeast asia;the mean social security income of households owned by people who were born in another country and now live in southeast asia;the average amount of money that social security pays to households owned by people who were born in another country and now live in southeast asia;the mean amount of money that social security pays to households owned by foreign-born people in southeast asia -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,1 average social security income of foreign-born households in south america;2 the average amount of social security income received by foreign-born households in south america;3 the mean social security income of households in south america that were founded by immigrants;4 the average social security income of households in south america that have at least one foreign-born member -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,income from social security for immigrants in southern eastern europe;social security benefits for foreign-born people in southern eastern europe;how much social security do immigrants in southern eastern europe get?;what is the social security income of foreign-born people in southern eastern europe? -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,average social security income of foreign-born households in western asia;the average amount of social security income received by foreign-born households in western asia;the mean social security income of foreign-born households in western asia;the average social security income of households with foreign-born members in western asia -Mean_SolarInsolation,average solar radiation;average solar irradiance;average solar flux;average solar intensity -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,the average supplemental security income of foreign-born households in africa;the average amount of supplemental security income received by foreign-born households in africa;the average supplemental security income benefit for foreign-born households in africa;the average supplemental security income payment for foreign-born households in africa -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,the average supplemental security income of households of foreign-born people in asia;the average amount of supplemental security income received by households of foreign-born people in asia;the average supplemental security income benefit for households of foreign-born people in asia;the average amount of money that households of foreign-born people in asia receive from supplemental security income -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,the average supplemental security income for foreign-born caribbean households;the average amount of supplemental security income received by foreign-born caribbean households;the average supplemental security income benefit for foreign-born caribbean households;the average amount of money that foreign-born caribbean households receive in supplemental security income -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average supplemental security income (ssi) for foreign-born people in central america, excluding mexico;the mean supplemental security income (ssi) for foreign-born people in central america, excluding mexico;the average amount of supplemental security income (ssi) received by foreign-born people in central america, excluding mexico;the mean amount of supplemental security income (ssi) received by foreign-born people in central america, excluding mexico" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,the average supplemental security income of foreign-born households in eastern asia;the mean supplemental security income of households in eastern asia with foreign-born members;the average supplemental security income of households in eastern asia whose members were born outside of the united states;the average supplemental security income of households in eastern asia whose members are immigrants -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,the average supplemental security income of households with foreign-born members in europe;the mean supplemental security income of households in europe with foreign-born members;the average amount of supplemental security income received by households with foreign-born members in europe;the mean amount of supplemental security income received by households in europe with foreign-born members -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,the average supplemental security income for foreign-born latin americans;the average amount of supplemental security income received by foreign-born latin americans;the average supplemental security income per household of foreign-born latin americans;the average supplemental security income received by a household of foreign-born latin americans -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,the average supplemental security income of foreign-born households in mexico;the mean supplemental security income of households in mexico with foreign-born members;the average amount of supplemental security income received by households in mexico with foreign-born members;the mean supplemental security income received by foreign-born households in mexico -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,average supplemental security income of foreign-born households in north america;the average amount of supplemental security income received by foreign-born households in north america;the mean supplemental security income of foreign-born households in north america;the average supplemental security income received by households in north america that are headed by immigrants -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"supplemental security income for foreign-born people from northern western europe;mean supplemental security income for households with foreign-born members from northern western europe;supplemental security income for households with foreign-born members from northern western europe, on average;the average supplemental security income for households with foreign-born members from northern western europe" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,the average supplemental security income for foreign-born householders in south central asia;the mean supplemental security income for householders who were born in south central asia but now live in the united states;the average amount of supplemental security income that foreign-born householders in south central asia receive;the mean supplemental security income that householders who were born in south central asia but now live in the united states receive -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,the average supplemental security income of foreign-born households in southeast asia;the mean supplemental security income of foreign-born households in southeast asia;the average amount of supplemental security income received by foreign-born households in southeast asia;the mean amount of supplemental security income received by foreign-born households in southeast asia -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,the average supplemental security income for south american foreign-born people;the mean supplemental security income for south american immigrants;the average amount of supplemental security income received by south american immigrants;the mean supplemental security income received by south american foreign-born people -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the average supplemental security income of households in south eastern europe with foreign-born populations;the mean supplemental security income of households in south eastern europe with foreign-born residents;the average amount of supplemental security income received by households in south eastern europe with foreign-born members;the mean amount of supplemental security income received by households in south eastern europe with foreign-born people -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,the average supplemental security income for households of foreign-born people in western asia;the mean amount of supplemental security income received by households of foreign-born people in western asia;the typical supplemental security income for households of foreign-born people in western asia;the supplemental security income that households of foreign-born people in western asia typically receive -Mean_Temperature,average temperature;mean temperature;central tendency of temperature;the average temperature -Mean_UsualHoursWorked_Person_Female_WorkedInThePast12Months,average number of hours worked by women aged 16 to 64 who worked in the past 12 months;mean number of hours worked by females aged 16 to 64 who worked in the past year;average working hours of females aged 16 to 64 in the past 12 months;mean working hours of women aged 16 to 64 in the past year -Mean_UsualHoursWorked_Person_Male_WorkedInThePast12Months,how many hours did the average male aged 16 to 64 work in the past 12 months?;what was the average number of hours worked by males aged 16 to 64 in the past 12 months?;what is the mean number of hours worked by males aged 16 to 64 in the past 12 months?;what is the average usual number of hours worked by males aged 16 to 64 in the past 12 months? -Mean_UsualHoursWorked_Person_WorkedInThePast12Months,the average number of hours worked in the past 12 months by people aged 16 to 64;the typical number of hours worked in the past 12 months by people aged 16 to 64;the usual number of hours worked in the past 12 months by people aged 16 to 64;the average number of hours worked in the past 12 months by people aged 16 to 64 years -Mean_VaporPressureDeficit,mean vapor pressure deficit (vpd);mean vapor pressure;mean vapor pressure difference;mean vapor pressure differential -Mean_VaporPressureDeficit_Forest,the average vapor pressure deficit (vpd) in forested areas;the mean vpd in forested areas;the typical vpd in forested areas;the usual vpd in forested areas -Mean_Visibility,how visible is something?;how well can something be seen?;how noticeable is something?;how conspicuous is something? -Mean_WindSpeed, -Mean_WindSpeed_SSP245,mean wind speed based on rcp 45 and ssp 2;mean wind speed based on the rcp 45 scenario and the ssp 2 scenario;mean wind speed based on the rcp 45 climate model and the ssp 2 socioeconomic model;mean wind speed based on the rcp 45 emissions scenario and the ssp 2 development pathway -Mean_WindSpeed_SSP585,the average wind speed based on rcp 85;the estimated wind speed based on rcp 85;the projected mean wind speed based on rcp 85;the estimated mean wind speed projected by rcp 85 -Mean_WindSpeed_UComponent_Height10Meters,mean 10-meter wind speed in the u-direction;average 10-meter wind speed in the u-direction;mean wind speed at 10 meters in the u-direction;average wind speed at 10 meters in the u-direction -Mean_WindSpeed_VComponent_Height10Meters,mean wind speed component;average wind speed component;mean wind speed vector -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Humidity_RelativeHumidity,humidity compared to the 1990 median across models;relative humidity compared to the 1990 median across models;humidity as a percentage of the 1990 median across models;relative humidity as a percentage of the 1990 median across models -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Humidity_SpecificHumidity, -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature,"the difference between the maximum temperature in a given year and the median temperature in 1990, across all models;the maximum temperature in a given year, minus the median temperature in 1990, across all models;the difference between the maximum temperature in a given year and the median temperature in 1990, across all models, expressed as a percentage;the maximum temperature in a given year, minus the median temperature in 1990, across all models, expressed as a percentage" -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Mean_WindSpeed,the median wind speed relative to 1990;the median change in wind speed from 1990;the median difference between wind speed in 1990 and wind speed now;the median change in wind speed over time -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature,difference between minimum temperature and 1990 median across models;minimum temperature change relative to 1990 median across models;minimum temperature change relative to 1990 median for all models;minimum temperature change relative to 1990 median for all model results -MedianAcrossModels_DifferenceRelativeToBaseDate1990_PrecipitationRate,median precipitation rate across models relative to 1990;average precipitation rate across models relative to 1990;mean precipitation rate across models relative to 1990;middle precipitation rate across models relative to 1990 -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_LongwaveRadiation,"radiation downwelling, median across models, relative to 1990, longwave;downwelling radiation, median across models, relative to 1990, longwave" -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_ShortwaveRadiation,"median radiation levels compared to 1990;radiation levels relative to 1990, median;radiation levels in 1990, median;median radiation levels in 1990" -MedianAcrossModels_DifferenceRelativeToBaseDate1990_Temperature,the difference between the temperature in each model and the median temperature in 1990;the deviation of the temperature in each model from the median temperature in 1990;the variation in temperature between each model and the median temperature in 1990;temperature change relative to the 1990 median across models -MedianMothersAge_BirthEvent,what is the median age of mothers at childbirth;the average age of mothers when they give birth;the most common age for mothers to give birth;the age at which half of all mothers give birth -Median_Age_Person,the average age of a person in the population;the middle age of the population;age of the typical person in a population;the middle age in a population -Median_Age_Person_1OrMoreYears,aged 1 or more;at least 1 year old;older than 0 years old;1 year or older -Median_Age_Person_1OrMoreYears_DifferentHouseAbroad,population aged 1 year or more with a different house abroad;population aged 1 year or more with a house in another country;population aged 1 year or more with a house outside of the country;population aged 1 year or more with a house in a foreign country -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountyDifferentState,the average age of people living in different houses in different counties in different states;the age that half of the people living in different houses in different counties in different states are older than and half are younger than;the age at which half of the people living in different houses in different counties in different states have already reached that age and half have not yet reached it;the average age of people in different counties in different states -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountySameState,the age that most people who live in a different county in the same state than they were born in are;the average age of people who live in a different house in a different county in the same state;the median age of people who live in a different house in a different county in the same state;the middle age of people who live in a different house in a different county in the same state -Median_Age_Person_1OrMoreYears_DifferentHouseInSameCounty,the average age of people in different households in the same county;the middle age of people in different houses in the same county;the age that half of the people in different households in the same county are older than and half are younger than;the age that is in the middle of the range of ages of people in different households in the same county -Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,"the average age of an american indian or alaska native person;the middle age of an american indian or alaska native person;the age at which half of american indian or alaska native people are older and half are younger;the age that divides the population of american indian or alaska native people into two equal groups, half younger and half older" -Median_Age_Person_AsianAlone,the average age of people of asian descent;the midpoint of the age range of people of asian descent;the age at which half of the asian population is younger and half is older;the age at which half of the people of asian descent are younger than that age and half are older than that age -Median_Age_Person_BlackOrAfricanAmericanAlone,the middle age of black or african americans;age of the average black person;the average age of a black person;the median age of black people -Median_Age_Person_Female,the average age of women;the midpoint of the age range for women;the age at which 50% of women are older and 50% are younger;the age at which half of all women are older and half are younger -Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,the average age of an american indian or alaska native woman;the middle age of american indian or alaska native women;the age at which half of american indian or alaska native women are older and half are younger;the age at which american indian or alaska native women are equally likely to be older or younger -Median_Age_Person_Female_AsianAlone,the average age of asian women;the middle age of asian women;the age that most asian women are;the age that half of asian women are older than and half are younger than -Median_Age_Person_Female_BlackOrAfricanAmericanAlone,the average age of a black or african american woman in the united states;the middle age of black or african american women in the us;the age at which half of black or african american women are younger and half are older;the age at which black or african american women are evenly divided between younger and older -Median_Age_Person_Female_DivorcedInThePast12Months,the average age of divorced women in the past 12 months;the age at which most women got divorced in the past year;the most common age for women to get divorced in the past year;what is the average age of divorced women in the past 12 months? -Median_Age_Person_Female_ForeignBorn,the average age of women who were born in another country;the age at which half of all women who were born in another country are older and half are younger;the age at which half of all foreign-born women are older and half are younger;the age at which the number of women who were born in another country who are older is equal to the number of women who were born in another country who are younger -Median_Age_Person_Female_HispanicOrLatino,the average age of hispanic or latino women;the middle age of hispanic or latino women;the age at which hispanic or latino women are most common;the age at which half of hispanic or latino women are older and half are younger -Median_Age_Person_Female_MarriedInThePast12Months,average age of married women in the past year;the age at which most women get married;the median age of married women in the past 12 months;the average age of women who got married in the past year -Median_Age_Person_Female_Native,"the average age of a female born in the united states;the age at which half of all females born in the united states are older and half are younger;the middle age of females born in the united states;the age that divides females born in the united states into two equal groups, half older and half younger" -Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,the average age of native hawaiian or other pacific islander females;the median age of native hawaiian or other pacific islander women;the midpoint of the age range for native hawaiian or other pacific islander females;the age at which half of native hawaiian or other pacific islander females are older and half are younger -Median_Age_Person_Female_SomeOtherRaceAlone,the average age of females of some other race;the middle age of females of some other race;the age at which 50% of females of some other race are younger and 50% are older;the age at which 50% of females of some other race are older and 50% are younger -Median_Age_Person_Female_TwoOrMoreRaces,"1 the average age of women who identify as two or more races;2 the middle age of women who identify as more than one race;3 the age that divides women who identify as two or more races in half, with half being older and half being younger;4 the age at which half of women who identify as two or more races are older and half are younger" -Median_Age_Person_Female_WhiteAlone,the average age of white women;the middle age of white women;the age at which half of white women are older and half are younger;the age at which white women are evenly divided between older and younger -Median_Age_Person_Female_WhiteAloneNotHispanicOrLatino,"the average age of non-hispanic or latino white women;the middle age of non-hispanic or latino white women;the age that half of non-hispanic or latino white women are older than and half are younger than;the age that divides non-hispanic or latino white women into two equal groups, with half older and half younger" -Median_Age_Person_Female_WorkedInThePast12Months,half of all female workers aged 16 to 64 years have been employed in the past 12 months;the average female worker aged 16 to 64 years has been employed in the past 12 months;the most common number of months that a female worker aged 16 to 64 years has been employed in the past 12 months is 12;the number of months that female workers aged 16 to 64 years have been employed in the past 12 months is evenly distributed around 12 months -Median_Age_Person_ForeignBorn,"the average age of people who were born in another country;the age that half of the foreign-born population is older than and half is younger than;the age that divides the foreign-born population into two equal groups, half older and half younger;the age at which half of the people who were born in another country are younger and half are older" -Median_Age_Person_ForeignBorn_PlaceOfBirthAfrica,what is the median age of the african foreign-born population?;what is the average age of people who were born in africa and now live in the united states?;what is the middle age of the african immigrant population?;what is the age at which half of the african foreign-born population is older and half is younger? -Median_Age_Person_ForeignBorn_PlaceOfBirthAsia,the average age of people born in asia who live in the united states;the age that half of the people born in asia who live in the us are older than and half are younger than;the age that is halfway between the youngest and oldest people born in asia who live in the us;the age that is the most common age for people born in asia who live in the us -Median_Age_Person_ForeignBorn_PlaceOfBirthCaribbean,"the average age of the foreign-born population in the caribbean;the middle age of the foreign-born population in the caribbean;the age that divides the foreign-born population in the caribbean into two equal groups, half younger and half older;the age at which half of the foreign-born population in the caribbean is younger and half is older" -Median_Age_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average age of foreign-born people in central america, excluding mexico;the age that half of the foreign-born population in central america, excluding mexico, is;the age that divides the foreign-born population in central america, excluding mexico, into two equal groups;the age at which half of the foreign-born people in central america, excluding mexico, are younger and half are older" -Median_Age_Person_ForeignBorn_PlaceOfBirthEasternAsia,"the average age of foreign-born people in eastern asia;the age that half of foreign-born people in eastern asia are older than and half are younger than;the age that divides foreign-born people in eastern asia into two equal groups, half older and half younger;the age that is the halfway point between the youngest and oldest foreign-born people in eastern asia" -Median_Age_Person_ForeignBorn_PlaceOfBirthEurope,the average age of foreign-born people in europe;the median age of immigrants in europe;the age at which half of the foreign-born population in europe is older and half is younger;the age at which half of the immigrants in europe are older and half are younger -Median_Age_Person_ForeignBorn_PlaceOfBirthLatinAmerica,the average age of foreign-born people in latin america;the middle age of foreign-born people in latin america;the age that half of foreign-born people in latin america are older than and half are younger than;the age that divides the foreign-born population in latin america into two equal groups -Median_Age_Person_ForeignBorn_PlaceOfBirthMexico,"the average age of people born in mexico who live in the united states;the age that divides the population of people born in mexico who live in the united states into two equal groups, half younger and half older;the age at which half of the people born in mexico who live in the united states are older and half are younger;the age that is halfway between the youngest and oldest people born in mexico who live in the united states" -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthamerica,"1 the average age of immigrants in north america;3 the age that most immigrants in north america are;4 the age at which half of the immigrants in north america are older and half are younger;5 the age that divides the immigrant population in north america into two equal groups, with half being older and half being younger" -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,the percentage of people in northern western europe who were born in another country;the number of people in northern western europe who are not citizens of the country they live in;the proportion of the population of northern western europe that is foreign-born;the number of people living in northern western europe who were not born there -Median_Age_Person_ForeignBorn_PlaceOfBirthOceania,"the average age of foreign-born people from oceania;the middle age of people from oceania who were born in another country;the age at which half of the foreign-born people from oceania are older and half are younger;the age that divides the foreign-born population of oceania into two equal groups, half older and half younger" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,the average age of immigrants in south central asia;the middle age of foreign-born people in south central asia;the halfway point in the age range of immigrants in south central asia;the age at which half of the foreign-born population in south central asia is older and half is younger -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,"the age that half of the foreign-born population in southeast asia is older than and half is younger than;the age that divides the foreign-born population in southeast asia into two equal groups, with half older and half younger;the age that divides the foreign-born population in southeast asia into two equal groups, half younger and half older;what is the middle age of foreign-born people in southeast asia?" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthamerica,the average age of foreign-born people in south america;the middle age of people who were born in another country and now live in south america;the age that half of all foreign-born people in south america are;the age that divides the foreign-born population of south america in half -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,the median age of the foreign-born population from southern eastern europe;the average age of people who were born in southern eastern europe and now live in the united states;the middle age of people who were born in southern eastern europe and now live in the united states;the age at which half of the foreign-born population from southern eastern europe is younger and half is older -Median_Age_Person_ForeignBorn_PlaceOfBirthWesternAsia,average age of foreign-born people in western asia;half of the foreign-born population in western asia is this age;the age that divides the foreign-born population in western asia into two equal groups;the age at which half of the foreign-born population in western asia falls -Median_Age_Person_HispanicOrLatino,"the age in the middle of the range of ages for hispanic or latino people;the age that divides the hispanic or latino population into two equal groups, half younger and half older;the age at which half of hispanic or latino people are older and half are younger;the age that is halfway between the youngest and oldest hispanic or latino people" -Median_Age_Person_Male,the average age of men;the age that most men are;the average age of a man;the age at which half of the men are older and half are younger -Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,the average age of an american indian or alaska native male;the middle age of an american indian or alaska native male;the age at which half of american indian or alaska native males are older and half are younger;the age at which an american indian or alaska native male is equally likely to be older or younger -Median_Age_Person_Male_AsianAlone,"the age at which half of asian males are older and half are younger;the age that divides the asian male population into two equal groups, half younger and half older;the age at which half of all asian males are younger and half are older;the age that marks the midpoint of the asian male age distribution" -Median_Age_Person_Male_BlackOrAfricanAmericanAlone,the average age of black or african american men;the middle age of black or african american men;the age that most black or african american men are;the age that half of black or african american men are older than and half are younger than -Median_Age_Person_Male_DivorcedInThePast12Months,average age of men who got divorced in the past year;the typical age of men who got divorced in the past year;the middle age of men who got divorced in the past year;the age at which most men got divorced in the past year -Median_Age_Person_Male_ForeignBorn,the average age of foreign-born men;the age at which half of all foreign-born men are older and half are younger;the middle age of foreign-born men;the age at which half of all foreign-born men are younger than that age and half are older than that age -Median_Age_Person_Male_HispanicOrLatino,the average age of hispanic or latino males;the middle age of hispanic or latino males;the age at which half of hispanic or latino males are older and half are younger;the age at which hispanic or latino males are most common -Median_Age_Person_Male_MarriedInThePast12Months,the average age of married men in the past 12 months;the middle age of married men in the past 12 months;the most common age of married men in the past 12 months;the age that most married men were in the past 12 months -Median_Age_Person_Male_Native,the average age of a male at birth in the united states;the middle age of males born in the united states;the age at which half of all males born in the united states are older and half are younger;the age at which 50% of males born in the united states are older and 50% are younger -Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,the average age of native hawaiian or other pacific islander males;the age that half of native hawaiian or other pacific islander males are older than and half are younger than;the midpoint of the age range for native hawaiian or other pacific islander males;the age that is most common among native hawaiian or other pacific islander males -Median_Age_Person_Male_SomeOtherRaceAlone,the average age of men of some other race;the middle age of men of some other race;the age at which men of some other race are at their median age;the average age of men of other races -Median_Age_Person_Male_TwoOrMoreRaces,the average age of men who identify as two or more races;the middle age of men who identify as multiple races;the age that most men who identify as two or more races are;the age at which half of men who identify as two or more races are older and half are younger -Median_Age_Person_Male_WhiteAlone,the average age of white males;the middle age of white males;the age at which half of white males are older and half are younger;the age at which white males are most numerous -Median_Age_Person_Male_WhiteAloneNotHispanicOrLatino,the average age of non-hispanic or latino white males;the middle age of non-hispanic or latino white males;the age that most non-hispanic or latino white males are;the age that half of non-hispanic or latino white males are older than and half are younger than -Median_Age_Person_Male_WorkedInThePast12Months,the number of men aged 16 to 64 who worked in the past 12 months;the number of employed men aged 16 to 64;the number of men in the workforce aged 16 to 64;men aged 16 to 64 who worked in the past 12 months -Median_Age_Person_Native,the age at which a native-born person is equally likely to be older or younger;the age at which a native-born person is in the middle of the age distribution;the average age of a native-born person;the age at which half of all native-born people are older and half are younger -Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,the average age of native hawaiian or other pacific islander people;the middle age of native hawaiian or other pacific islander people;the age at which half of native hawaiian or other pacific islander people are older and half are younger;the age at which native hawaiian or other pacific islander people are evenly divided between older and younger -Median_Age_Person_NoHealthInsurance,average age of people without health insurance;half of the population without health insurance are this age;the age at which the population is evenly split between those with and without health insurance;the average age of people without health insurance -Median_Age_Person_NotAUSCitizen_Female_ForeignBorn,the average age of foreign-born women who are not us citizens;the middle age of foreign-born women who are not us citizens;the age at which half of foreign-born women who are not us citizens are older and half are younger;the age at which foreign-born women who are not us citizens are most likely to be found -Median_Age_Person_NotAUSCitizen_ForeignBorn,the average age of foreign-born non-us citizens;the middle age of people who were born in other countries and are not us citizens;the age that most people who were born in other countries and are not us citizens are;the age that half of the people who were born in other countries and are not us citizens are older than and half are younger than -Median_Age_Person_NotAUSCitizen_Male_ForeignBorn,average age of foreign-born men who are not us citizens;the middle age of foreign-born men who are not us citizens;the age that half of foreign-born men who are not us citizens are older than and half are younger than;the age that is most common for foreign-born men who are not us citizens -Median_Age_Person_ResidesInAdultCorrectionalFacilities,the average age of people in adult correctional facilities;the middle age of people in adult correctional facilities;the age that most people in adult correctional facilities are;the age that is most common among people in adult correctional facilities -Median_Age_Person_ResidesInCollegeOrUniversityStudentHousing,what is the average age of college students living in dorms?;what is the median age of people living in college or university student housing?;what is the typical age of a college student living in a dorm?;what is the age range of most college students living in dorms? -Median_Age_Person_ResidesInGroupQuarters,average age of people living in group quarters;middle age of people in group quarters;halfway point in the age range of people in group quarters;age that divides the population of group quarters into two equal groups -Median_Age_Person_ResidesInInstitutionalizedGroupQuarters,what is the median age of people institutionalized in group quarters?;what is the middle age of people living in group quarters?;what is the age of the average person institutionalized in group quarters?;the average age of people in institutionalized group quarters -Median_Age_Person_ResidesInNoninstitutionalizedGroupQuarters,the age at which the median person living in non-institutional group quarters is this age;the middle age of people living in non-institutional group quarters;mean age of people living in non-institutional group quarters;the median age of people living in non-institutional group quarters -Median_Age_Person_ResidesInNursingFacilities,the average age of people living in nursing homes;the middle age of people who live in nursing facilities;the age that is in the middle of the range of ages of people who live in nursing homes;the middle age of people in nursing facilities -Median_Age_Person_SomeOtherRaceAlone,the average age of people of some other race;the age at which the population of some other race is evenly divided between younger and older people;the age at which 50% of people of some other race are younger and 50% are older;what is the average age of people of some other race? -Median_Age_Person_TwoOrMoreRaces,the average age of people who identify as multiracial;the middle age of people who identify as more than one race;the age at which half of the population who identify as multiracial are older and half are younger;the age at which the number of people who identify as multiracial who are older is equal to the number of people who identify as multiracial who are younger -Median_Age_Person_USCitizenByNaturalization_Female_ForeignBorn,average age of naturalized female immigrants;typical age of female immigrants who have become us citizens;age at which most female immigrants become us citizens;the median age of foreign-born women who have become us citizens through naturalization -Median_Age_Person_USCitizenByNaturalization_ForeignBorn,the average age of a naturalized us citizen;the average age of naturalized us citizens;the age at which most foreign-born us citizens become citizens;the average age of a foreign-born us citizen at the time of naturalization -Median_Age_Person_USCitizenByNaturalization_Male_ForeignBorn,the median age of foreign-born men who have become us citizens through naturalization;the middle age of foreign-born men who have been naturalized as us citizens;the age at which half of foreign-born men have become us citizens through naturalization;the age at which half of foreign-born men have been naturalized as us citizens -Median_Age_Person_WhiteAlone,the average age of white people in the united states;the middle age of white people in the united states;the age at which half of white people are older and half are younger in the united states;the age at which white people are evenly divided between being older and younger in the united states -Median_Age_Person_WhiteAloneNotHispanicOrLatino,"the middle age of non-hispanic or latino white people;the age that divides the non-hispanic or latino white population into two equal groups, half younger and half older;the age at which half of the non-hispanic or latino white population is older and half is younger;the age at which half of the non-hispanic or latino white population is younger than that age and half is older than that age" -Median_Age_Person_WorkedInThePast12Months,the average age of people who worked in the past 12 months and are aged 16 to 64;the middle age of people who worked in the past 12 months and are aged 16 to 64;the age that most people who worked in the past 12 months and are aged 16 to 64 are;the age that half of people who worked in the past 12 months and are aged 16 to 64 are older than and half are younger than -Median_Area_Farm,the size of a farm that is the 50th percentile of farm sizes;the size of a farm that falls in the middle of the range of farm sizes;the size of a farm that is in the 50th percentile of farm sizes -Median_Concentration_AirPollutant_Ozone,the middle ozone concentration;the ozone concentration that is in the middle;the ozone concentration that is halfway between the highest and lowest ozone concentrations;the ozone concentration that is at the 50th percentile -Median_Concentration_AirPollutant_PM2.5,the average concentration of particulate matter with a diameter of 25 micrometers or less -Median_Cost_HousingUnit_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,the average price of a home owned by its occupants;the middle value of the prices of homes that are owned by their occupants;the price of a home that is owned by its occupants that is in the middle of the range of prices;the average cost of a home owned by an individual -Median_Cost_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,the average price of a home with a mortgage;the typical cost of a house with a mortgage;the middle value of home prices with mortgages;the most common price of a house with a mortgage -Median_Cost_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,the average price of a house without a mortgage;the median price of a house without a mortgage;the middle price of a house without a mortgage;the typical price of a house without a mortgage -Median_Earnings_Female_AsAFractionOf_Male_Civilian_Employed,"the middle value of the earnings of women in the us, aged 16 or older and employed" -Median_Earnings_Person,"the amount of money that half of all people in the united states earn;the middle value of all the earnings in the united states;the amount of money that is in the middle of the range of earnings for all people;what is the amount of money that half of all people earn, and half of all people earn more than?" -Median_Earnings_Person_25OrMoreYears,the average amount of money earned by people aged 25 or older;the amount of money that half of the population aged 25 or older makes;the amount of money that the middle 50% of people aged 25 or older makes;the amount of money that the median person aged 25 or older makes -Median_Earnings_Person_25OrMoreYears_Female,how much money do women make on average after age 25?;what is the average woman's salary after 25 years old?;what is the median income for women over 25?;what is the average female wage after age 25? -Median_Earnings_Person_25OrMoreYears_Male,how much money do men aged 25 earn on average?;what is the median income of men aged 25?;what is the average salary of men aged 25?;what is the typical income of men aged 25? -Median_Earnings_Person_Civilian_Employed,"the average amount of money that employed civilians over the age of 16 make;the middle value of the earnings of employed civilians over the age of 16;the amount of money that half of employed civilians over the age of 16 make, and half make less;the amount of money that an employed civilian over the age of 16 can expect to make, on average" -Median_Earnings_Person_Civilian_Employed_Female,working women aged 16 or older;women aged 16 or older who are employed;women who are 16 or older and have a job;women aged 16 or older who are in the workforce -Median_Earnings_Person_Civilian_Employed_FullTimeYearRoundWorker,people who are employed and are at least 16 years old and work full time for a year and have earnings;people who are employed and are at least 16 years old and work full time for a year and earn money;people who are employed and are at least 16 years old and work full time for a year and get paid;people who are employed and are at least 16 years old and work full time for a year and receive compensation -Median_Earnings_Person_Civilian_Employed_Male, -Median_Earnings_Person_Female,the median income for women;what is the median income for women?;the middle value of the earnings of women in the us;what's the median income for women? -Median_Earnings_Person_Female_FullTimeYearRoundWorker,the average yearly salary of full-time working women aged 16 and older;the amount of money that the average full-time working woman aged 16 and older makes in a year;the typical salary of a full-time working woman aged 16 and older;the middle value of the salaries of full-time working women aged 16 and older -Median_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,what are the median earnings for women in correctional facilities?;what are the median earnings of female inmates?;what are the average earnings of female inmates?;what is the median income for women in jail? -Median_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,what is the median salary for female college students living in student housing? -Median_Earnings_Person_Female_ResidesInGroupQuarters,"what is the median income for women who live in group quarters?;the middle value of the earnings of women living in group quarters;the amount of money that half of women living in group quarters earn more than, and half earn less than;the amount of money that half of the women living in group homes make more than, and half make less than" -Median_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,"the amount of money that half of the women living in institutions earn more than, and half earn less than" -Median_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters, -Median_Earnings_Person_Female_ResidesInNursingFacilities,"what is the median income for women living in nursing homes?;the middle amount of money that women living in nursing facilities make;the amount of money that half of women living in nursing facilities make, and half of women living in nursing facilities make less" -Median_Earnings_Person_Male,what is the median income for men? -Median_Earnings_Person_Male_FullTimeYearRoundWorker,average yearly income of full-time male workers aged 16 and older;typical annual salary of full-time male employees aged 16 and older;the amount of money that a typical full-time male employee aged 16 and older makes in a year;the middle value of the annual salaries of full-time male employees aged 16 and older -Median_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,"the median income of men living in adult correctional facilities;what is the median income for male inmates?;the middle amount of money that men in adult correctional facilities make;the amount of money that half of the men in adult correctional facilities make, and the other half make less" -Median_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,what is the median income for male college students living in student housing?;what is the median salary of male college students living in student housing?;what is the median salary for male college students living in student housing? -Median_Earnings_Person_Male_ResidesInGroupQuarters,"the middle value of the earnings of men who live in group quarters;the amount of money that half of men who live in group quarters earn more than, and the other half earn less than;the amount of money that half of men living in group quarters earn, and half earn less;what is the median income for men who live in group quarters?" -Median_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters, -Median_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters, -Median_Earnings_Person_Male_ResidesInNursingFacilities,what is the median salary for men living in nursing homes?;what is the middle value of the earnings of men living in nursing facilities?;what is the median income of men living in nursing facilities? -Median_GrossRent_HousingUnit_WithCashRent_OccupiedHousingUnit_RenterOccupied,the average monthly rent for housing units with cash rent;the middle value of monthly rents for housing units with cash rent;the half-way point of monthly rents for housing units with cash rent;the median gross rent of housing units with cash rent -Median_HomeValue_HousingUnit_OccupiedHousingUnit_OwnerOccupied,the median value of a home that is occupied by its owner;the middle value of homes that are owned by their occupants;the price of a home that is in the middle of the range of all homes that are owned by their occupants;the median home value for owner-occupied housing units is -Median_Income_Household,"the amount of money that half of all households in the united states make, with the other half making more or less;the middle value of all household incomes in the united states;the income level at which half of all households in the united states earn more and half earn less;the amount of money that a typical household in the united states makes" -Median_Income_Household_FamilyHousehold,"the amount of money that half of all families in the us make;the amount of money that half of all family households in the us make, with the other half making more;the income that divides the family households in the us into two equal groups, half with higher incomes and half with lower incomes" -Median_Income_Household_ForeignBorn_PlaceOfBirthAfrica,households with members who are immigrants to africa;households headed by immigrants in africa -Median_Income_Household_ForeignBorn_PlaceOfBirthAsia,"the average income of households with foreign-born residents in asia;the middle value of household incomes for people who were born in another country and now live in asia;the amount of money that half of all households with foreign-born residents in asia make, with the other half making more or less;the typical amount of money that households with foreign-born residents in asia make" -Median_Income_Household_ForeignBorn_PlaceOfBirthCaribbean,foreign-born people in caribbean households;people born outside of the caribbean who live in caribbean households;caribbean households with foreign-born members;caribbean households that include foreign-born people -Median_Income_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"the average income of households with foreign-born residents from central america, excluding mexico;the middle income of households with foreign-born residents from central america, excluding mexico;the midpoint of the income range of households with foreign-born residents from central america, excluding mexico;the income level that half of households with foreign-born residents from central america, excluding mexico earn more than and half earn less than" -Median_Income_Household_ForeignBorn_PlaceOfBirthEasternAsia,the median household income of foreign-born people in eastern asia;the average income of foreign-born households in eastern asia;median household income of foreign-born people in eastern asia;average income of households headed by foreign-born people in eastern asia -Median_Income_Household_ForeignBorn_PlaceOfBirthEurope,the average income of households with foreign-born members in europe;the median household income of foreign-born people in europe;the middle value of household incomes for people who were born outside of europe;what is the average income of foreign-born households in europe? -Median_Income_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"the average amount of money that households headed by foreign-born people in latin america make;the middle value of the incomes of households headed by foreign-born people in latin america;the amount of money that half of households headed by foreign-born people in latin america make, while the other half make more;the amount of money that is typical for households headed by foreign-born people in latin america to make" -Median_Income_Household_ForeignBorn_PlaceOfBirthMexico,"how much money do foreign-born households in mexico make, on average?;what is the median income of foreign-born households in mexico?;what is the average income of foreign-born households in mexico?;what is the typical income of foreign-born households in mexico?" -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthamerica,the average income of households headed by immigrants in north america;the amount of money that the typical immigrant household in north america makes;the typical income of households headed by immigrants in north america;the median household income of immigrants in north america -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,foreign-born population in northern western europe with two parents;population of northern western europe with two parents who were born abroad;number of people born outside of northern western europe who live there with two parents;percentage of the population of northern western europe who were born abroad and have two parents -Median_Income_Household_ForeignBorn_PlaceOfBirthOceania,what is the median income of foreign-born households in oceania?;what is the typical income of foreign-born households in oceania?;what is the average income of foreign-born households in oceania?;what is the middle-income of foreign-born households in oceania? -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,the middle-of-the-road income of households in south central asia headed by a foreign-born person;the middle-of-the-road income for households headed by foreign-born people in south central asia;the middle 50% of household incomes for foreign-born people in south central asia;household income of people who were born in south central asia but now live in another country -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"the average amount of money that foreign-born households earn in south east asia;the middle value of the incomes of foreign-born households in south east asia;the amount of money that half of foreign-born households in south east asia earn more than, and half earn less than;the amount of money that is typical for foreign-born households in south east asia to earn" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthamerica,"the median household income of foreign-born people in south america;the average income of a household in south america headed by a foreign-born person;the middle 50% of household incomes in south america, for people who were born in another country;the amount of money that half of all households in south america headed by a foreign-born person earn, with the other half earning more or less" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"the average income of foreign-born households in southern eastern europe;the income that half of foreign-born households in southern eastern europe earn more than, and half earn less than;the income that divides the foreign-born households in southern eastern europe into two equal groups, half with higher incomes and half with lower incomes;the income that is in the middle of the range of incomes of foreign-born households in southern eastern europe" -Median_Income_Household_ForeignBorn_PlaceOfBirthWesternAsia,"1 the average income of households headed by foreign-born people in western asia;2 the middle value of the incomes of households headed by foreign-born people in western asia;3 the amount of money that half of the households headed by foreign-born people in western asia earn, while the other half earn more;5 the amount of money that most households headed by foreign-born people in western asia earn" -Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,the median household income of american indians or alaska natives;the average income of households identifying as american indian or alaska native;the amount of money that the typical american indian or alaska native household makes;the typical income of an american indian or alaska native household -Median_Income_Household_HouseholderRaceAsianAlone,the average income of households identifying as asian;the amount of money that the average asian household makes;the typical income of an asian household;the middle-ground income of asian households -Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,the average income of black or african american households;the amount of money that black or african american households typically earn;the typical income of black or african american households;the middle income of black or african american households -Median_Income_Household_HouseholderRaceHispanicOrLatino,the average income of hispanic or latino households;the amount of money that the typical hispanic or latino household earns;the typical income of hispanic or latino households;the median household income of hispanic or latino people -Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,how much money do native hawaiian or other pacific islander households make on average?;what is the typical income for a native hawaiian or other pacific islander household?;what is the median household income for native hawaiian or other pacific islanders?;what is the average household income for native hawaiian or other pacific islanders? -Median_Income_Household_HouseholderRaceSomeOtherRaceAlone,how much money do households of other races make on average?;what is the median income of households of other races?;what is the average income of households of other races?;what is the typical income of households of other races? -Median_Income_Household_HouseholderRaceTwoOrMoreRaces,"1 the median household income for multiracial families;2 the amount of money that the typical multiracial family earns in a year;3 the middle point in the range of household incomes for multiracial families;4 the amount of money that half of all multiracial families earn more than, and half earn less than" -Median_Income_Household_HouseholderRaceWhiteAlone,the average amount of money that white households make;the middle value of the incomes of white households;the amount of money that half of white households make more than and half of white households make less than;the typical income of white households -Median_Income_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,"the average income of white and non-hispanic households;the middle income of white and non-hispanic households;the amount of money that half of white and non-hispanic households make, with the other half making more;the amount of money that is typical for white and non-hispanic households to make" -Median_Income_Household_MarriedCoupleFamilyHousehold,the median income for married couple family households;the middle income of married couple family households;the half-way point in the income distribution of married couple family households;the income level at which half of married couple family households earn more and half earn less -Median_Income_Household_NoHealthInsurance,the average income for households without health insurance;the middle-of-the-road income for households without health insurance;the typical income for households without health insurance;the most common income for households without health insurance -Median_Income_Household_NonfamilyHousehold,"the amount of money that half of nonfamily households make more than and half make less than;the amount of money that is in the middle of the range of incomes for nonfamily households;the amount of money that half of nonfamily households in the united states earn, with the other half earning more;the middle value of the incomes of all nonfamily households in the united states" -Median_Income_Household_WithFoodStampsInThePast12Months,the average amount of money earned by households that received food stamps in the past year;the middle value of the incomes of households that received food stamps in the past year;the typical income of households that received food stamps in the past year;the middle value of the incomes of households that received food stamps in the last year -Median_Income_Household_WithoutFoodStampsInThePast12Months,the middle value of the incomes of households that did not use food stamps in the last year;the middle income of households that did not receive food stamps in the past year;the middle value of the incomes of households that did not use food stamps in the past year;the middle income of households that did not use food stamps in the past year -Median_Income_Person_15OrMoreYears_WithIncome_BornInOtherStateInTheUnitedStates,income of people born in other states in the united states;the average income of people born in other states in the united states;the amount of money that people born in other states in the united states typically make;the typical income of people born in other states in the united states -Median_Income_Person_15OrMoreYears_WithIncome_BornInStateOfResidence,"average income of people born in the state they live in;income of people born in the state they live in, on average;how much money people born in the state they live in make, on average;the amount of money people born in the state they live in make, on average" -Median_Income_Person_15OrMoreYears_WithIncome_ForeignBorn,"how much money do foreign-born people make?;what is the average income of people who were born in another country?;the typical income of people who were born in a different country;the amount of money that half of all foreign-born people in the us make, with the other half making more or less" -Median_Income_Person_15OrMoreYears_WithIncome_NativeBornOutsideTheUnitedStates,how much money do native-born people living outside the us make on average?;what is the median income of native-born americans living abroad?;how much money do native-born people living outside the united states make on average?;what is the typical income of a native-born person living outside the united states? -Median_Income_Person_16OrMoreYears_NoHealthInsurance_WithEarnings,the median income for people aged 16 and over who are employed but don't have health insurance;the average income for people aged 16 and over who are employed but don't have health insurance;the middle income for people aged 16 and over who are employed but don't have health insurance;the half-way point income for people aged 16 and over who are employed but don't have health insurance -Median_Income_Person_18OrMoreYears_Civilian_WithIncome,people who earn a median wage;people who earn an average income -Median_Income_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_WithIncome,the average salary of people with a bachelor's degree;the typical income of people with a bachelor's degree;the median income of people with a bachelor's degree;the middle income of people with a bachelor's degree -Median_Income_Person_25OrMoreYears_EducationalAttainmentGraduateOrProfessionalDegree_WithIncome,average salary of people with professional degrees;the amount of money that people with professional degrees typically earn;the typical income of people with professional degrees;the median income of people with professional degrees -Median_Income_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_WithIncome,"the median income of a high school graduate, including equivalency, is;the average salary of a high school graduate, including equivalency, is;the typical income of a high school graduate, including equivalency, is;the expected earnings of a high school graduate, including equivalency, are" -Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome,what is the average income of people who did not graduate from high school?;what is the median income of people with less than a high school diploma?;what is the typical income of people who did not finish high school?;what is the average salary of people who did not graduate from high school? -Median_Income_Person_25OrMoreYears_EducationalAttainmentSomeCollegeOrAssociatesDegree_WithIncome,the median income of people with some college or an associate's degree;the amount of money that half of people with some college or an associate's degree make;the typical income of people with some college or an associate's degree;the average income of people with some college or an associate's degree -Median_Income_Person_DifferentHouseAbroad,the average income of people aged 15 or more who live in different houses abroad;the median income of people aged 15 or more who live in different houses abroad;the typical income of people aged 15 or more who live in different houses abroad;the usual income of people aged 15 or more who live in different houses abroad -Median_Income_Person_DifferentHouseInDifferentCountyDifferentState,average income for people aged 15 and over living in different households in different counties in different states with income;the amount of money that the average person aged 15 and over living in different households in different counties in different states with income makes;the typical amount of money that a person aged 15 and over living in different households in different counties in different states with income makes;the middle amount of money that a person aged 15 and over living in different households in different counties in different states with income makes -Median_Income_Person_DifferentHouseInDifferentCountySameState,"average income of people aged 15 or older from different households in different counties in the same state;the middle value of the incomes of people aged 15 or older from different households in different counties in the same state;the income level that divides the population aged 15 or older from different households in different counties in the same state into two equal groups, half having higher incomes and half having lower incomes;the income level that is higher than half of the incomes of people aged 15 or older from different households in different counties in the same state and lower than half of the incomes of people aged 15 or older from different households in different counties in the same state" -Median_Income_Person_DifferentHouseInSameCounty,"the average income of people aged 15 years or more who live in different houses in the same county;the middle income of people aged 15 years or more who live in different houses in the same county;the half-way point of the income range of people aged 15 years or more who live in different houses in the same county;the income level that half of the people aged 15 years or more who live in different houses in the same county earn more than, and half earn less than" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAfrica,1 the average number of rooms in housing units occupied by foreign-born people in africa;2 the median number of rooms in housing units occupied by people born outside of africa;3 the middle number of rooms in housing units occupied by people who were not born in africa;4 the number of rooms in half of the housing units occupied by people who were not born in africa -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,how many rooms are there in housing units occupied by foreign-born people from asia?;how many rooms do foreign-born people from asia occupy in housing units?;what is the number of rooms in housing units occupied by people who were born in asia?;what is the number of rooms occupied by foreign-born people from asia in housing units? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,what is the median number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the average number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the most common number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the middle number of rooms in housing units occupied by foreign-born people in the caribbean? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"the average number of rooms per housing unit occupied by foreign-born people in central america, excluding mexico;the number of rooms in the middle of the range of rooms per housing unit occupied by foreign-born people in central america, excluding mexico;the number of rooms that half of the foreign-born people in central america, excluding mexico, live in, and half live in more or fewer rooms;the number of rooms that is typical for housing units occupied by foreign-born people in central america, excluding mexico" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,"average number of rooms in housing units occupied by foreign-born people from eastern asia;the number of rooms in housing units occupied by foreign-born people from eastern asia, on average;the median number of rooms in housing units occupied by foreign-born people from eastern asia;the middle number of rooms in housing units occupied by foreign-born people from eastern asia" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,"the median number of rooms in a housing unit occupied by people who were born outside of europe;the number of rooms in a housing unit occupied by people who are not native to europe, on average;how many rooms are there in the average occupied housing unit in europe that is occupied by a foreign-born person?;what is the median number of rooms in a housing unit in europe that is occupied by a foreign-born person?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,what is the median number of rooms in a housing unit occupied by foreign-born latin americans?;what is the average number of rooms in a housing unit occupied by a latin american immigrant?;what is the median number of rooms in a housing unit occupied by a person who was born in latin america but now lives in the united states?;what is the median number of rooms in housing units occupied by foreign-born latin americans? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthMexico,how many rooms do foreign-born people live in on average?;what is the median number of rooms in housing units occupied by foreign-born people?;what is the average number of rooms in housing units occupied by people who were born outside of the united states?;what is the middle number of rooms in housing units occupied by people who were not born in the united states? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthamerica,how many rooms do foreign-born people live in on average in north america?;what is the average number of rooms occupied by foreign-born people in north america?;what is the median number of rooms occupied by foreign-born people in north america?;how many rooms do most foreign-born people live in in north america? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,"the average number of rooms in housing units occupied by foreign-born people in northern western europe;the number of rooms in housing units occupied by foreign-born people in northern western europe, on average;the median number of rooms in housing units occupied by foreign-born people in northern western europe;the middle number of rooms in housing units occupied by foreign-born people in northern western europe" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthOceania,how many rooms are in housing units occupied by foreign-born people in oceania?;what is the average number of rooms in housing units occupied by foreign-born people in oceania?;how many rooms do foreign-born people in oceania live in on average?;what is the number of rooms in housing units occupied by foreign-born people in oceania? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,how many rooms do foreign-born people in south central asia live in on average?;what is the median number of rooms occupied by foreign-born people in south central asia?;what is the average number of rooms occupied by foreign-born people in south central asia?;what is the typical number of rooms occupied by foreign-born people in south central asia? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,what is the average number of rooms occupied by foreign-born people in southeast asia?;what is the typical number of rooms occupied by foreign-born people in southeast asia?;the average number of rooms occupied by foreign-born people in southeast asia;the typical number of rooms occupied by foreign-born people in southeast asia -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,how many rooms do foreign-born people living in south america typically live in?;what is the average number of rooms in a housing unit occupied by foreign-born people in south america?;what is the median number of rooms in a housing unit occupied by foreign-born people in south america?;what is the typical number of rooms in a housing unit occupied by foreign-born people in south america? -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,occupied housing units with residents born in southern eastern europe;housing units occupied by foreign-born people from southern eastern europe;occupied housing units with foreign-born residents from southern eastern europe;people born in southern eastern europe who live in occupied housing units -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,the average number of housing units occupied by foreign-born people in western asia;the median number of housing units occupied by foreign-born people in western asia;the number of housing units occupied by foreign-born people in western asia that is in the middle 50% of the range;the number of housing units occupied by foreign-born people in western asia that is neither the highest nor the lowest -Min_Humidity_RelativeHumidity,the lowest amount of moisture in the air;the least amount of humidity in the air;the lowest level of relative humidity in the air;the minimum relative humidity -Min_PrecipitableWater_Atmosphere,minimum precipitable water;minimum water vapor content;minimum water content in the atmosphere;minimum water content in the air -Min_Radiation_Downwelling_ShortwaveRadiation,minimum surface downwelling shortwave radiation;minimum surface irradiance;minimum surface solar radiation;minimum surface solar irradiance -Min_Rainfall,minimum rainfall;lowest rainfall;least rainfall;least amount of rainfall -Min_Snowfall,the least amount of snow that falls;the smallest amount of snow that falls;the lowest amount of snow that falls;the minimum amount of snow that falls -Min_Temperature,lowest temperature;minimum temperature;least temperature -Min_Temperature_RCP26,temperature minimum based on rcp 26;the coldest temperature based on rcp 26;the temperature minimum based on rcp 26;rcp 26 minimum temperature -Min_Temperature_RCP45,the minimum temperature according to rcp 45;the lowest temperature predicted by rcp 45;the temperature that is expected to be the lowest according to rcp 45;the temperature that is expected to be reached at the lowest point according to rcp 45 -Min_Temperature_RCP60,lowest temperature based on rcp 60;temperature threshold based on rcp 60;lowest temperature: based on rcp 60;lowest possible temperature: based on rcp 60 -Min_Temperature_RCP85,lowest temperature based on rcp 85;minimum temperature: based on rcp 85;lowest temperature: based on rcp 85;coldest temperature: based on rcp 85 -Min_Temperature_SSP245,"lowest temperature projected in the rcp 45 and ssp 2 emission scenarios;the temperature that is most likely to be the lowest under the rcp 45 and ssp 2 emission scenarios;the minimum temperature that is projected for the future, based on the rcp 45 and ssp 2 emission scenarios" -Min_Temperature_SSP585, -Min_WindSpeed_UComponent_Height10Meters,the least amount of wind needed;the lowest wind speed;the minimum wind velocity;the least wind speed required -Min_WindSpeed_VComponent_Height10Meters,"the wind speed at 10 meters, at its minimum;wind speed at 10 meters, lowest" -MonetaryValue_Farm_GovernmentPayment,how much money does the government give to farms?;what is the total amount of money that the government pays to farmers?;what is the monetary value of the government's subsidies to farmers?;how much money does the government spend on farm subsidies? -Monthly_AshContent_Fuel_ForElectricityGeneration_BituminousCoal,"the quality of ash content in bituminous coal used for electricity generation each year;the annual quality of ash content in bituminous coal used to generate electricity;the quality of ash content in bituminous coal used to generate electricity each year;the annual quality of bituminous coal used to generate electricity, in terms of ash content" -Monthly_AshContent_Fuel_ForElectricityGeneration_Coal,"ash content of coal for electricity generation each month;the amount of ash in coal used to generate electricity each month;the monthly percentage of ash in coal used to generate electricity;the amount of ash in coal used to generate electricity each month, expressed as a percentage" -Monthly_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"coal quality in electric power, month by month;the quality of coal used in electricity generation, on a monthly basis;the monthly fluctuations in the quality of coal used in electricity generation;the quality of coal used in electricity generation, as it changes from month to month" -Monthly_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal,the quality of subbituminous coal used in electricity generation varies from month to month;the quality of subbituminous coal used to generate electricity changes each month;the quality of subbituminous coal used to produce electricity fluctuates from month to month;the quality of subbituminous coal used to make electricity is not consistent from month to month -Monthly_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the quality of subbituminous coal used in electricity generation each month;the average quality of subbituminous coal used in electricity generation each month;the quality of subbituminous coal used in electricity generation on a monthly basis;the total monthly quality of subbituminous coal used in electricity generation -Monthly_Average_Cost_Fuel_ForElectricityGeneration_Coal_ElectricPower,the average monthly cost of coal and electric power for electricity generation;the monthly average cost of coal and electric power used to generate electricity;the average monthly cost of coal and electric power to generate electricity;the average monthly cost of coal and electric power for electricity production -Monthly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas,"the average monthly cost of natural gas for electricity generation in all sectors;the average cost of natural gas per month for electricity generation in all sectors;the monthly cost of natural gas for electricity generation in all sectors, on average;the average monthly cost of natural gas used to generate electricity in all sectors" -Monthly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,the average monthly cost of natural gas for electric power;the average price of natural gas per month for electric power;the monthly average cost of natural gas used for electric power;the average monthly price of natural gas used for electric power -Monthly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,how much does natural gas cost to generate electricity each month?;what is the average monthly cost of natural gas for electricity generation?;what is the monthly average cost of natural gas to generate electricity?;what is the average cost of natural gas to generate electricity each month? -Monthly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,average monthly cost of natural gas for electricity generation by independent power producers;average monthly cost of natural gas for power generation by independent power producers;average monthly cost of natural gas for electricity generation by independent power companies;average monthly cost of natural gas for power generation by independent power companies -Monthly_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids,the average monthly cost of petroleum liquids for electricity generation;the average monthly price of petroleum liquids for electricity generation;the average monthly expenditure on petroleum liquids for electricity generation;the average monthly outlay on petroleum liquids for electricity generation -Monthly_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the average monthly cost of petroleum liquids for electricity generation by electric power;the average monthly cost of petroleum liquids for electricity generation by the electric power industry;the average monthly cost of petroleum liquids used by electric power plants;the average monthly cost of petroleum liquids used to generate electricity by electric power plants -Monthly_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the average cost of petroleum liquids for electricity generation in electric utilities per month;the monthly average cost of petroleum liquids for electricity generation in electric utilities;the average monthly cost of petroleum liquids for electricity generation in electric utilities;the cost of petroleum liquids for electricity generation in electric utilities per month on average -Monthly_Average_RetailPrice_Electricity,how much does it cost to keep the lights on?;the price of electricity on a monthly basis;the price of electricity per month;cost of electricity per month -Monthly_Average_RetailPrice_Electricity_Commercial,what is the average retail price of commercial electricity per month;what's the average monthly cost of commercial electricity?;what's the average monthly commercial electricity bill?;what's the average monthly commercial electricity rate? -Monthly_Average_RetailPrice_Electricity_Industrial,average monthly retail price of electricity for industrial use;industrial monthly retail price of electricity;monthly industrial electricity retail price;monthly average retail price of electricity for industrial use -Monthly_Average_RetailPrice_Electricity_OtherSector,average monthly cost of electricity;average price of electricity per month -Monthly_Average_RetailPrice_Electricity_Residential,the average monthly cost of residential electricity;the average monthly price of electricity for residential customers;the average monthly amount residential customers pay for electricity;the average monthly residential electricity bill -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal, -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricPower,total monthly consumption of coal-fired electricity -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtility,how much coal is used by electric utilities each month?;what is the monthly consumption of coal by electric utilities?;how much coal do electric utilities use each month?;what is the total monthly consumption of coal by electric utilities? -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,"how much natural gas is used each month in all sectors?;natural gas usage by sector, monthly;natural gas demand by sector, monthly;natural gas consumption in all sectors, monthly" -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Commercial, -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen,the amount of natural gas used in commercial cogeneration each month;the monthly consumption of natural gas in commercial cogeneration facilities;the monthly amount of natural gas used in commercial cogeneration plants;the monthly natural gas consumption of commercial cogeneration units -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricPower,monthly natural gas consumption in power plants;monthly total natural gas consumption in power plants;total natural gas consumption in power plants per month;monthly natural gas usage in power plants -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtility, -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen,the monthly total consumption of natural gas in electric utility cogeneration;the total monthly consumption of natural gas in electric utility cogeneration;the total amount of natural gas consumed by electric utility cogeneration plants each month;the monthly total of natural gas used by electric utility cogeneration plants -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityNonCogen,the monthly total of natural gas consumed by electric utilities that are not cogeneration facilities;the total amount of natural gas consumed by electric utilities each month that are not cogeneration facilities;the monthly total of natural gas consumed by electric utilities that do not use cogeneration;the total amount of natural gas consumed by electric utilities each month that do not use cogeneration -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndependentPowerProducers,monthly natural gas consumption in commerce and public service;the amount of natural gas used in commerce and public service each month;the monthly consumption of natural gas by businesses and public services;the amount of natural gas that businesses and public services use each month -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Industrial,monthly natural gas consumption for electricity generation across all industries;total natural gas consumption for electricity generation in all industries each month;the amount of natural gas used to generate electricity in all industries each month;the monthly total of natural gas used to generate electricity in all industries -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndustrialCogen,monthly natural gas consumption;how much natural gas is consumed each month;the amount of natural gas used each month;the monthly natural gas usage -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,total monthly petroleum liquids consumption in all sectors;total petroleum liquids consumed in all sectors each month;the total amount of petroleum liquids consumed in all sectors each month;the total monthly consumption of petroleum liquids in all sectors -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Commercial,total monthly consumption of petroleum liquids for commercial purposes -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricPower,what is the monthly consumption of petroleum liquids for electric power generation?;how much petroleum liquids are consumed each month for electric power generation?;monthly petroleum liquids consumption for electric power generation;monthly petroleum liquids used in power generation -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtility,how much petroleum liquids do electric utilities consume each month for electricity generation and thermal output?;what is the monthly consumption of petroleum liquids by electric utilities for electricity generation and thermal output?;what is the monthly amount of petroleum liquids used by electric utilities for electricity generation and thermal output?;what is the monthly quantity of petroleum liquids consumed by electric utilities for electricity generation and thermal output? -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtilityNonCogen,"monthly consumption of petroleum liquids in electric utilities that are not cogeneration facilities;the amount of petroleum liquids consumed by electric utilities each month that are not cogeneration facilities;the total amount of petroleum liquids consumed by electric utilities each month that are not cogeneration facilities;the monthly consumption of petroleum liquids by electric utilities that are not cogeneration facilities, in total" -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndependentPowerProducers,independent power producers' total monthly consumption of petroleum liquids;the total monthly consumption of petroleum liquids by independent power producers;the amount of petroleum liquids independent power producers consume each month;the total amount of petroleum liquids independent power producers consume in a month -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Industrial,how much petroleum liquids are consumed by industries each month?;what is the monthly consumption of petroleum liquids by industries?;what is the amount of petroleum liquids consumed by industries each month?;what is the monthly usage of petroleum liquids by industries? -Monthly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndustrialCogen,monthly petroleum liquids consumption in industrial cogeneration;industrial cogeneration monthly petroleum liquids consumption;consumption of petroleum liquids in industrial cogeneration per month;petroleum liquids consumption in industrial cogeneration each month -Monthly_Consumption_Fuel_ForElectricityGeneration_Coal,how much coal is used to generate electricity in the united states each month?;what is the monthly consumption of coal in the united states for electricity generation?;how much coal is consumed in the united states each month for electricity generation? -Monthly_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricPower,coal consumption in the electric power sector per month;coal used in the electric power sector by month;how much coal is used in the electric power sector each month;the amount of coal used in the electric power sector each month -Monthly_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtility,the monthly coal consumption for electricity generation;coal consumption for electricity generation each month;coal consumption for electricity generation by month;coal use in electricity generation by month -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas, -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Commercial,natural gas used for commercial electricity generation each month;monthly natural gas consumption for commercial electricity generation;the amount of natural gas used each month to generate electricity for commercial purposes;the monthly amount of natural gas consumed to generate electricity for commercial use -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen,"natural gas used to generate electricity in commercial cogeneration plants, by month;the amount of natural gas used to generate electricity in commercial cogeneration plants, each month;the monthly consumption of natural gas for electricity generation in commercial cogeneration plants;the amount of natural gas used to generate electricity in commercial cogeneration plants, on a monthly basis" -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,the amount of natural gas used to generate electricity each month;the monthly usage of natural gas for electricity generation;the monthly consumption of natural gas for electricity production;the monthly natural gas usage for electricity generation -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,the amount of natural gas used by electric utilities each month;the monthly consumption of natural gas by electric utilities;the monthly natural gas usage of electric utilities;the monthly natural gas consumption by electric utilities -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen, -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,monthly natural gas consumption in electric utility non-cogen;the monthly consumption of natural gas in electric utility non-cogen plants;the amount of natural gas consumed by electric utility non-cogen plants each month;the monthly usage of natural gas by electric utility non-cogen plants -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,what is the total monthly consumption of natural gas for electricity generation?;the total monthly usage of natural gas for electricity generation;the monthly total of natural gas used to generate electricity;total monthly consumption of natural gas for electricity generation -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Industrial,natural gas used for industrial electricity generation each month;the monthly amount of natural gas used to generate electricity for industrial purposes;the monthly consumption of natural gas for industrial electricity generation;the amount of natural gas used each month to generate electricity for industrial use -Monthly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen, -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,what is the monthly consumption of petroleum liquids for electricity generation in all sectors?;how much petroleum liquids are used to generate electricity in all sectors each month?;electricity generated from petroleum liquids each month in all sectors;the amount of petroleum liquids used to generate electricity each month in all sectors -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Commercial,the amount of petroleum liquids used in commercial activities each month;the monthly consumption of petroleum liquids in commercial settings;the amount of petroleum liquids used in commercial operations each month;the monthly use of petroleum liquids in the commercial sector -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,how much petroleum liquid is consumed in electricity generation each month?;what is the monthly consumption of petroleum liquids in electricity generation?;what is the average monthly consumption of petroleum liquids in electricity generation?;how much petroleum liquid is used in electricity generation each month? -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,how much petroleum liquid is consumed by electric utilities each month?;what is the monthly consumption of petroleum liquids by electric utilities?;how much petroleum liquid do electric utilities consume each month?;what is the monthly petroleum liquid consumption of electric utilities? -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen,how much petroleum liquids are used to generate electricity in non-cogeneration electric utilities each month?;what is the monthly consumption of petroleum liquids for electricity generation in electric utility non-cogen?;what is the amount of petroleum liquids used to generate electricity in non-cogeneration electric utilities each month?;electric utility non-cogen monthly consumption of petroleum liquids for electricity generation -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,the amount of petroleum liquids consumed by independent power producers each month;the monthly rate at which independent power producers consume petroleum liquids;the monthly quantity of petroleum liquids used by independent power producers;the monthly intake of petroleum liquids by independent power producers -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Industrial,how much petroleum liquids are consumed each month by all industries?;how much petroleum liquids are used each month by all industries?;how much petroleum liquids do all industries consume each month?;how much petroleum liquid is consumed monthly by all industries? -Monthly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialCogen,the amount of petroleum liquids used for electricity generation by industrial cogeneration each month;the monthly consumption of petroleum liquids for electricity generation by industrial cogeneration;the monthly usage of petroleum liquids for electricity generation by industrial cogeneration;the monthly rate of petroleum liquids consumed for electricity generation by industrial cogeneration -Monthly_Consumption_Fuel_ForUsefulThermalOutput_Coal,how much coal is used each month for heating and other purposes in all sectors?;how much coal is used each month for useful thermal output in all sectors?;what is the monthly consumption of coal for useful thermal output in all sectors?;what is the monthly amount of coal used for useful thermal output in all sectors? -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas, -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial,"commercial natural gas consumption for useful thermal output, monthly;commercial natural gas consumption for useful thermal output, by month;monthly natural gas consumption for useful thermal output by commercial sector;natural gas consumption for useful thermal output by commercial sector, monthly" -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen,commercial cogen natural gas monthly consumption;monthly natural gas consumption for commercial cogen;commercial cogen monthly natural gas use;commercial cogen monthly natural gas consumption -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower,monthly consumption of useful thermal output in natural gas -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen, -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers,how much natural gas do independent power producers consume each month?;what is the monthly consumption of natural gas by independent power producers?;what are the monthly natural gas consumption figures for independent power producers?;how much natural gas do independent power producers use each month? -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Industrial, -Monthly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndustrialCogen, -Monthly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids,how much petroleum liquids are consumed each month for useful thermal output?;what is the monthly consumption of petroleum liquids for useful thermal output?;how many petroleum liquids are consumed each month for useful thermal output?;what is the monthly amount of petroleum liquids consumed for useful thermal output? -Monthly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_Industrial,how much petroleum liquids are used for useful thermal output in all industries each month?;what is the monthly consumption of petroleum liquids for useful thermal output in all industries?;what is the amount of petroleum liquids used for useful thermal output in all industries each month?;how many petroleum liquids are used for useful thermal output in all industries each month? -Monthly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_IndustrialCogen,the amount of petroleum liquids consumed each month by industrial cogeneration for useful thermal output;the monthly consumption of petroleum liquids by industrial cogeneration for useful thermal output;the monthly amount of petroleum liquids consumed by industrial cogeneration for useful thermal output;the monthly rate of petroleum liquids consumed by industrial cogeneration for useful thermal output -Monthly_Count_ElectricityConsumer,number of people using electricity in a month;monthly electricity consumption;total electricity usage in a month;electricity consumption per month -Monthly_Count_ElectricityConsumer_Commercial,number of customer accounts opened each month in the commercial sector;monthly total of new customer accounts in the commercial sector;number of commercial customers added each month;monthly increase in commercial customer accounts -Monthly_Count_ElectricityConsumer_Industrial,monthly number of industrial customer accounts;number of industrial customer accounts each month;monthly tally of industrial customer accounts;industrial customer accounts per month -Monthly_Count_ElectricityConsumer_Residential,1 monthly residential customer accounts;2 number of residential customer accounts per month;3 monthly number of residential customer accounts;4 residential customer accounts per month -Monthly_Generation_Electricity,total energy produced by all fuels in all sectors;the total amount of energy generated by all fuels in all sectors;the sum of all energy produced by all fuels in all sectors;the sum of all energy produced by all sectors from all fuels -Monthly_Generation_Electricity_Coal,"1 coal generation by sector, monthly;2 net generation of coal by sector, monthly;3 coal generation, monthly, by sector;4 net generation of coal, monthly, by sector" -Monthly_Generation_Electricity_Coal_ElectricPower, -Monthly_Generation_Electricity_Coal_ElectricUtility,"coal-fired power generation by electric utilities, monthly" -Monthly_Generation_Electricity_Commercial,the monthly net generation of all commercial fuels;the monthly energy production from commercial fuels;the amount of energy generated by commercial fuels each month;the monthly production of commercial fuels -Monthly_Generation_Electricity_CommercialCogen,the monthly net generation of all fuels in commercial cogen;the monthly net generation of all fuels in commercial cogeneration;the monthly net generation of all fuels in commercial chp;the monthly net generation of all fuels in commercial cogeneration plants -Monthly_Generation_Electricity_CommercialNonCogen,monthly net generation of all fuels in commercial non-cogen;monthly generation of all fuels in commercial non-cogen;monthly generation of all fuels in commercial non-combined heat and power;monthly generation of all fuels in commercial non-cogen plants -Monthly_Generation_Electricity_ConventionalHydroelectric,how much electricity did conventional hydroelectric power plants generate in all sectors each month?;what was the monthly net generation of conventional hydroelectric power in all sectors?;what was the monthly output of conventional hydroelectric power plants in all sectors?;how much conventional hydroelectric power was generated each month in all sectors? -Monthly_Generation_Electricity_ConventionalHydroelectric_ElectricPower,the monthly output of conventional hydroelectric power plants;the monthly production of electricity from conventional hydroelectric power plants;the monthly hydroelectric power generation;the monthly production of electricity by conventional hydroelectric power plants -Monthly_Generation_Electricity_ConventionalHydroelectric_ElectricUtility,the total amount of electricity generated by conventional hydroelectric power plants in electric utilities each month;the total monthly output of conventional hydroelectric power plants in electric utilities;the total monthly production of conventional hydroelectric power plants in electric utilities;the total monthly generation of conventional hydroelectric power plants in electric utilities -Monthly_Generation_Electricity_ElectricPower,total monthly electric power generation;total monthly net generation of electric power;total monthly generation of electric power -Monthly_Generation_Electricity_ElectricUtility,the amount of electricity generated by all fuels for electric utilities each month;the total amount of electricity produced by all fuels for electric utilities each month;the monthly output of electricity from all fuels for electric utilities;the monthly production of electricity from all fuels for electric utilities -Monthly_Generation_Electricity_ElectricUtilityCogen,the total amount of electricity generated by all fuels in electric utility cogeneration each month;the monthly net generation of all fuels in electric utility cogeneration;the total amount of electricity generated by cogeneration using all fuels each month;the monthly net generation of all fuels used in electric utility cogeneration -Monthly_Generation_Electricity_ElectricUtilityNonCogen,"electricity generated by electric utilities each month, excluding cogeneration;monthly electricity production by electric utilities, excluding cogeneration;electric utilities' monthly electricity generation, excluding cogeneration;monthly electricity output by electric utilities, excluding cogeneration" -Monthly_Generation_Electricity_IndependentPowerProducers,independent power producers' total monthly net generation of all fuels;total monthly net generation of all fuels by independent power producers;independent power producers' total net generation of all fuels in a month;total net generation of all fuels by independent power producers in a month -Monthly_Generation_Electricity_Industrial,"monthly generation of all fuels in all industries;monthly net generation of all fuels in all industries;monthly generation of all fuels in all industries, by type;monthly net generation of all fuels in all industries, by type" -Monthly_Generation_Electricity_IndustrialCogen,"industrial cogen net generation by fuel, monthly;monthly net generation of all fuels in industrial cogeneration;industrial cogeneration net generation by fuel, monthly;monthly net generation of all fuels in industrial cogeneration and chp" -Monthly_Generation_Electricity_IndustrialNonCogen,monthly net generation of all fuels in industrial non-cogen;monthly net generation of all fuels in non-cogeneration industries;monthly net generation of all fuels in industrial sectors that do not use cogeneration;monthly net generation of all fuels in non-cogen industries -Monthly_Generation_Electricity_NaturalGas,natural gas net generation by all sectors per month;monthly net generation of natural gas by all sectors;natural gas net generation by all sectors each month;monthly natural gas net generation by all sectors -Monthly_Generation_Electricity_NaturalGas_Commercial,"all commercial natural gas generation in a month;the total monthly net generation of natural gas in all commercial sectors;the total monthly net generation of natural gas in all commercial sectors, including electricity, heat, and other uses;the total amount of natural gas generated each month by commercial facilities" -Monthly_Generation_Electricity_NaturalGas_CommercialCogen,the monthly net generation of natural gas in commercial cogeneration;the monthly amount of natural gas generated by commercial cogeneration;the monthly production of natural gas from commercial cogeneration;the monthly yield of natural gas from commercial cogeneration -Monthly_Generation_Electricity_NaturalGas_ElectricPower,what was the monthly net generation of natural gas for electric power? -Monthly_Generation_Electricity_NaturalGas_ElectricUtility,"natural gas-fired electricity generation by electric utilities, monthly;monthly net generation of electricity from natural gas by electric utilities;electric utilities' monthly net generation of electricity from natural gas;monthly net generation of electricity by electric utilities from natural gas" -Monthly_Generation_Electricity_NaturalGas_ElectricUtilityCogen,"natural gas-fired electricity generation for electric utility cogeneration, monthly;net generation of electricity from natural gas for electric utility cogeneration, monthly;electricity generated from natural gas for electric utility cogeneration, monthly;monthly net generation of electricity from natural gas for electric utility cogeneration, in megawatt-hours" -Monthly_Generation_Electricity_NaturalGas_ElectricUtilityNonCogen,electricity generated by natural gas in non-combined-cycle electric utilities each month;electricity produced by natural gas in non-combined-cycle electric utilities each month;natural gas-fired electricity generation in non-combined-cycle electric utilities each month;natural gas-fired electricity production in non-combined-cycle electric utilities each month -Monthly_Generation_Electricity_NaturalGas_IndependentPowerProducers,"independent power producers’ monthly net natural gas generation;monthly net natural gas generation by independent power producers;net natural gas generation by independent power producers, monthly;monthly net natural gas generation from independent power producers" -Monthly_Generation_Electricity_NaturalGas_Industrial,total monthly net generation of natural gas in all industrial plants;total monthly net generation of natural gas in all industrial facilities;total monthly net generation of natural gas in all industrial processes;5 the total monthly generation of natural gas from all industrial sectors -Monthly_Generation_Electricity_NaturalGas_IndustrialCogen,monthly net generation of electricity from natural gas for industrial cogeneration;monthly net generation of electricity from natural gas for industrial chp;monthly net generation of electricity from natural gas for industrial cogeneration and heat recovery;the amount of electricity generated by natural gas for industrial cogeneration each month -Monthly_Generation_Electricity_Other,other sectors' monthly electricity generation;electricity generation by other sectors each month;how much electricity is generated by other sectors each month;the amount of electricity generated by other sectors each month -Monthly_Generation_Electricity_OtherBiomass,monthly generation of other biomass in all sectors;monthly net generation of other biomass in all sectors;other biomass generation in all sectors per month;other biomass net generation in all sectors per month -Monthly_Generation_Electricity_OtherBiomass_ElectricPower,"the total amount of electricity generated from other biomass sources in electric power plants each month;the monthly output of electricity from other biomass sources in electric power plants;the monthly net generation of electricity from other biomass sources in electric power plants;the monthly amount of electricity generated from other biomass sources in electric power plants, net of any losses" -Monthly_Generation_Electricity_OtherBiomass_ElectricUtilityNonCogen,the amount of electricity generated by non-cogen electric utilities from other biomass each month;the total amount of electricity generated from other biomass by non-cogen electric utilities each month;the monthly output of other biomass-fired power plants owned by non-cogen electric utilities;the monthly production of electricity from other biomass by non-cogen electric utilities -Monthly_Generation_Electricity_OtherBiomass_IndependentPowerProducers,independent power producers' monthly net generation of other biomass;other biomass net generation by independent power producers on a monthly basis;independent power producers' monthly output of other biomass;other biomass net generation by independent power producers each month -Monthly_Generation_Electricity_Other_ElectricPower,the amount of electricity generated by other electric power plants each month;the total amount of electricity produced by other electric power plants each month;the monthly output of electricity from other electric power plants;the monthly production of electricity from other electric power plants -Monthly_Generation_Electricity_PetroleumLiquids,the monthly net production of electricity from petroleum liquids;the monthly net generation of electricity from petroleum liquids;the net monthly generation of electricity from petroleum liquids;petroleum liquids net generation of electricity per month -Monthly_Generation_Electricity_PetroleumLiquids_Commercial,commercial petroleum liquids monthly net generation of electricity;monthly net generation of electricity from commercial petroleum liquids;commercial petroleum liquids monthly electricity generation;monthly electricity generation from commercial petroleum liquids -Monthly_Generation_Electricity_PetroleumLiquids_ElectricPower,the monthly net generation of electricity from petroleum liquids in the electric power sector;the monthly net output of electricity from petroleum liquids in the electric power industry;the monthly net production of electricity from petroleum liquids in the electric power sector;the monthly generation of electricity from petroleum liquids in the electric power sector -Monthly_Generation_Electricity_PetroleumLiquids_ElectricUtility,electric utility net generation of petroleum liquids per month;monthly petroleum liquids generation by electric utilities;electric utilities' monthly generation of petroleum liquids;petroleum liquids generation by electric utilities per month -Monthly_Generation_Electricity_PetroleumLiquids_ElectricUtilityNonCogen,the monthly amount of petroleum liquids generated by electric utilities that are not cogeneration facilities;the monthly net generation of petroleum liquids by electric utilities that are not cogeneration facilities;the monthly net generation of petroleum liquids from electric utilities that are not cogeneration facilities;the monthly net generation of petroleum liquids from electric utilities that are not cogeneration plants -Monthly_Generation_Electricity_PetroleumLiquids_IndependentPowerProducers,"1 the amount of electricity generated by petroleum liquids in independent power producers each month;2 the monthly net generation of electricity from petroleum liquids by independent power producers;3 the amount of electricity generated from petroleum liquids by independent power producers each month, net of any losses;4 the monthly net output of electricity from petroleum liquids by independent power producers" -Monthly_Generation_Electricity_PetroleumLiquids_Industrial,the total amount of petroleum liquids produced by all industrial sectors each month;the total amount of petroleum liquids generated by all industrial sectors each month;the total monthly production of petroleum liquids from all industrial sectors;the total monthly yield of petroleum liquids from all industrial sectors -Monthly_Generation_Electricity_PetroleumLiquids_IndustrialCogen,the monthly net generation of petroleum liquids in industrial cogeneration;the monthly amount of petroleum liquids generated by industrial cogeneration;the monthly production of petroleum liquids from industrial cogeneration;the monthly yield of petroleum liquids from industrial cogeneration -Monthly_Generation_Electricity_RenewableEnergy,net generation of electricity from renewable sources by month;monthly electricity generation from renewable energy sources;renewable energy generation by month;monthly renewable energy generation -Monthly_Generation_Electricity_RenewableEnergy_Commercial,other renewables monthly net generation;monthly generation of other renewables;other renewables net generation per month;other renewables generation per month -Monthly_Generation_Electricity_RenewableEnergy_ElectricPower,"net generation of other renewables in electric power, by month;other renewable net generation in electric power, by month;electric power generation from other renewables, by month;the amount of electricity generated by other renewable sources each month" -Monthly_Generation_Electricity_RenewableEnergy_ElectricUtility,the amount of electricity generated by other renewable sources each month by electric utilities;the monthly net generation of electricity from other renewable sources by electric utilities;the monthly amount of electricity generated by electric utilities from other renewable sources;the monthly net output of electricity from other renewable sources by electric utilities -Monthly_Generation_Electricity_RenewableEnergy_ElectricUtilityNonCogen,"monthly generation of other renewables in electric utility non-cogen;monthly net generation of other renewables in electric utility non-cogen;the amount of electricity generated by other renewable sources each month, excluding cogeneration;the monthly net generation of electricity from other renewable sources, excluding cogeneration" -Monthly_Generation_Electricity_RenewableEnergy_IndependentPowerProducers,electricity generated by independent power producers from other renewable sources each month;the amount of electricity generated each month by independent power producers from other renewable sources;the monthly net generation of electricity from other renewable sources by independent power producers;the monthly amount of electricity generated from other renewable sources by independent power producers -Monthly_Generation_Electricity_RenewableEnergy_Industrial,industrial electricity generation from other renewable energy sources on a monthly basis;the amount of industrial electricity generated from other renewable energy sources each month;the monthly output of industrial electricity from other renewable energy sources;the monthly production of industrial electricity from other renewable energy sources -Monthly_Generation_Electricity_RenewableEnergy_IndustrialCogen,the amount of electricity generated from other renewables in industrial cogeneration each month;the monthly amount of electricity generated from other renewables in industrial cogeneration;the monthly net generation of electricity from other renewables in industrial cogeneration;monthly net generation of electricity from other renewables in industrial cogeneration -Monthly_Generation_Electricity_SmallScaleSolarPhotovoltaic,monthly net generation from small-scale solar photovoltaics;monthly net generation from small-scale solar pv;monthly net generation from small-scale solar panels -Monthly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Commercial,the monthly generation of small-scale solar photovoltaic systems in all commercial buildings;the monthly generation of small-scale solar photovoltaics in all commercial buildings -Monthly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Industrial,"the amount of solar energy generated by small-scale solar photovoltaic systems each month, across all industries;the monthly net output of small-scale solar photovoltaic systems, in all industries;the monthly net generation of solar power from small-scale photovoltaic systems, in all industries;the monthly net production of solar energy from small-scale photovoltaic systems, in all industries" -Monthly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Residential,monthly net electricity generation from small-scale solar photovoltaics by residential industries;monthly net electricity generation from small-scale solar photovoltaics in residential industries;monthly net electricity generation from small-scale solar photovoltaics in homes;monthly net electricity generation from small-scale solar photovoltaics in residential buildings -Monthly_Generation_Electricity_Solar,the monthly solar generation;the amount of solar power generated each month by all sectors;the amount of solar energy generated each month by all sectors;the monthly output of solar power from all sectors -Monthly_Generation_Electricity_Solar_Commercial,the amount of solar electricity generated by commercial businesses each month;the monthly output of commercial solar power plants;the amount of commercial solar energy produced each month;the monthly generation of commercial solar power -Monthly_Generation_Electricity_Solar_IndependentPowerProducers,"all solar generation by independent power producers, monthly;net electricity generation by solar, monthly, independent power producers;electricity generated by solar, monthly, independent power producers;solar electricity generation, monthly, independent power producers" -Monthly_Generation_Electricity_Solar_Industrial,the total amount of electricity generated by solar power in all industrial sectors each month;the total monthly output of solar power in all industrial sectors;the total amount of solar power generated each month in all industrial sectors;the total monthly production of solar power in all industrial sectors -Monthly_Generation_Electricity_Solar_Residential,the amount of solar electricity generated by residential homes each month;the total amount of solar electricity generated by residential homes in a given month;the monthly output of solar electricity from residential homes;the monthly production of solar electricity from residential homes -Monthly_Generation_Electricity_UtilityScalePhotovoltaic,standard deviation -Monthly_Generation_Electricity_UtilityScalePhotovoltaic_ElectricPower,electricity generated by utility-scale photovoltaic sources each month;the amount of electricity generated by utility-scale photovoltaic sources each month;the monthly net generation of electricity from utility-scale photovoltaic sources;the monthly amount of electricity generated by utility-scale photovoltaic sources -Monthly_Generation_Electricity_UtilityScalePhotovoltaic_ElectricUtilityNonCogen,the amount of electricity generated by utility-scale photovoltaics each month in electric utilities that are not cogeneration facilities;the monthly output of electricity from utility-scale photovoltaics in non-cogeneration electric utilities;the monthly net generation of electricity from utility-scale photovoltaics in electric utilities that are not cogeneration facilities;the monthly amount of electricity generated by utility-scale photovoltaics in electric utilities that are not cogeneration facilities -Monthly_Generation_Electricity_UtilityScalePhotovoltaic_IndependentPowerProducers,the amount of electricity generated by utility-scale photovoltaics in independent power producers each month;the monthly output of electricity from utility-scale photovoltaics in independent power producers;the monthly production of electricity from utility-scale photovoltaics in independent power producers;the monthly generation of electricity from utility-scale photovoltaics in independent power producers -Monthly_Generation_Electricity_UtilityScaleSolar,the amount of electricity generated by utility-scale solar power plants each month;the monthly output of utility-scale solar power plants;the monthly generation of electricity from utility-scale solar power plants;the monthly production of electricity from utility-scale solar power plants -Monthly_Generation_Electricity_UtilityScaleSolar_ElectricPower,the total amount of electricity produced by utility-scale solar power plants each month;how much solar power was generated by utility-scale solar plants each month?;what was the monthly net generation of utility-scale solar in electric power?;how much electricity did utility-scale solar plants generate each month? -Monthly_Generation_Electricity_UtilityScaleSolar_ElectricUtilityNonCogen,"electricity generated by utility-scale solar power plants for non-combined-cycle electric utilities, by month;how much electricity is generated by utility-scale solar power plants for non-combined-cycle electric utilities each month;the monthly generation of electricity from utility-scale solar power plants for non-combined-cycle electric utilities;monthly electricity generation from utility-scale solar power plants for non-combined-cycle electric utilities" -Monthly_Generation_Electricity_UtilityScaleSolar_IndependentPowerProducers,the monthly net generation of all utility-scale solar in independent power producers;the amount of electricity generated by utility-scale solar in independent power producers each month;the monthly output of utility-scale solar in independent power producers;the monthly production of utility-scale solar in independent power producers -Monthly_Generation_Electricity_Wind,electricity generated by wind each month;monthly wind power generation;wind power generation by month;the amount of electricity generated by wind each month -Monthly_Generation_Electricity_Wind_ElectricPower,what was the total monthly net generation of wind power producers?;how much wind power did wind power producers generate each month?;what was the total amount of wind power generated by wind power producers each month?;what was the total amount of wind energy produced by wind power producers each month? -Monthly_Generation_Electricity_Wind_ElectricUtilityNonCogen,"the monthly amount of wind energy produced by utilities, excluding cogeneration;the amount of wind energy generated each month by utility companies that do not use cogeneration;the monthly output of wind turbines owned and operated by utility companies that do not use cogeneration;the monthly production of wind energy by utility companies that do not use cogeneration" -Monthly_Generation_Electricity_Wind_IndependentPowerProducers, -Monthly_Receipt_Fuel_ForElectricityGeneration_BituminousCoal,the amount of bituminous coal received each month for electricity generation;the monthly amount of bituminous coal received for electricity generation;the monthly receipts of bituminous coal for electricity generation;the amount of bituminous coal received each month to generate electricity -Monthly_Receipt_Fuel_ForElectricityGeneration_Coal,"coal receipts by sector, monthly;coal receipts by sector, per month;coal receipts by sector, monthly average;coal receipts by sector, monthly total" -Monthly_Receipt_Fuel_ForElectricityGeneration_Coal_ElectricPower,"coal receipts for electricity generation by electric power companies each month;the monthly receipts of coal by electric power companies for electricity generation;1 coal receipts for electricity generation by electric power companies, by month;monthly receipts of coal for electricity generation by electric power companies" -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas,"natural gas receipts by all sectors each month;natural gas receipts by sector, monthly;natural gas receipts by sector, by month;monthly natural gas receipts by sector" -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"natural gas receipts for electric power, by month;monthly natural gas receipts for electric power;receipts of natural gas for electric power, monthly;electric power natural gas receipts, monthly" -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,monthly natural gas receipts for electric utilities;the monthly income of electric utilities from natural gas receipts;the monthly revenue of electric utilities from natural gas receipts;what were the monthly receipts of natural gas for electric utilities? -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,monthly natural gas receipts by electricity plants;monthly natural gas receipts in power plants -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,the total monthly income of electricity plants from natural gas receipts;the total amount of money that electricity plants receive from natural gas each month;the total monthly revenue of electricity plants from natural gas receipts;monthly natural gas receipts by power plant -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_Industrial,what were the monthly natural gas receipts of electricity plants in all industries;what were the monthly receipts of natural gas by electricity plants in all industries;natural gas receipts by electricity plants in all industrial sectors per month;monthly natural gas receipts by electricity plants in all industrial sectors -Monthly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,1 the amount of natural gas received by cogen electricity plants each month;3 the monthly tally of natural gas received by cogen electricity plants;4 the monthly sum of natural gas received by cogen electricity plants;5 the monthly total of natural gas received by cogen electricity plants -Monthly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids,the monthly receipts of petroleum liquids from all sectors;what is the monthly receipt of petroleum liquids by all sectors?;what is the total monthly receipt of petroleum liquids by all sectors?;all sectors' monthly petroleum liquids receipts -Monthly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,electric power companies' monthly receipts of petroleum liquids for electricity generation;the monthly receipts of petroleum liquids by electric power companies for electricity generation -Monthly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,electric utilities' monthly receipts of petroleum liquids for electricity generation;petroleum liquids received by electric utilities each month for electricity generation;the monthly receipts of petroleum liquids by electric utilities for electricity generation -Monthly_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal,the amount of subbituminous coal fossil fuels received by electricity plants in all sectors each month;the monthly receipts of subbituminous coal fossil fuels by electricity plants in all sectors;the monthly amount of subbituminous coal fossil fuels received by electricity plants in all sectors;the monthly total of subbituminous coal fossil fuels received by electricity plants in all sectors -Monthly_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the amount of subbituminous coal received by electricity plants each month;the monthly quantity of subbituminous coal received by electricity plants;the monthly volume of subbituminous coal received by electricity plants;the monthly supply of subbituminous coal received by electricity plants -Monthly_RetailSales_Electricity,sales of electricity in all sectors on a monthly basis;electricity sales in all sectors on a monthly basis;retail electricity sales in all sectors on a monthly basis;electricity sales in all sectors each month -Monthly_RetailSales_Electricity_Commercial,monthly sales of electricity to consumers;electricity sales to retail customers each month;the amount of electricity sold to retail customers each month;the monthly retail sales of electricity -Monthly_RetailSales_Electricity_Industrial,1 sales of electricity to businesses each month;2 electricity sold to industries each month;3 monthly sales of electricity to commercial and industrial customers;4 electricity sold to businesses and industries each month -Monthly_RetailSales_Electricity_OtherSector,"retail sales of electricity in other sectors, by month;monthly retail sales of electricity in non-residential sectors;electricity sales in other sectors, by month;monthly electricity sales in non-residential sectors" -Monthly_RetailSales_Electricity_Residential,residential electricity sales by month;monthly residential electricity sales;electricity sales to residential customers by month;residential electricity sales per month -Monthly_SalesRevenue_Electricity,monthly electricity revenue across all sectors;monthly revenue from electricity in all sectors;monthly electricity sales revenue in all sectors;monthly revenue from electricity sales in all sectors -Monthly_SalesRevenue_Electricity_Commercial, -Monthly_SalesRevenue_Electricity_Industrial,"revenue from retail sales of electricity to industrial customers, monthly" -Monthly_SalesRevenue_Electricity_OtherSector,money earned from selling electricity to consumers -Monthly_SalesRevenue_Electricity_Residential,revenue from retail sales of electricity in the residential sector each month;monthly revenue from retail sales of electricity to residential customers;monthly revenue from retail sales of electricity to residential consumers;monthly revenue from residential electricity sales -Monthly_Stock_Fuel_ForElectricityGeneration_Coal_ElectricPower,coal inventory for electricity generation by electric power companies on a monthly basis;the amount of coal that electric power companies have on hand each month to generate electricity;the monthly level of coal reserves held by electric power companies for electricity generation;the monthly amount of coal that electric power companies have stockpiled for electricity generation -Monthly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the monthly stock of petroleum liquids used to generate electricity;the monthly inventory of petroleum liquids that are used to generate electricity;monthly inventory of petroleum liquids used to generate electricity -Monthly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the monthly level of petroleum liquids stocks for electricity generation;monthly petroleum liquids stocks for electricity generation;monthly petroleum liquids stocks for power generation;monthly petroleum liquids stocks for electricity production -Monthly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,independent power producers' monthly fossil petroleum liquids;monthly fossil petroleum liquids produced by independent power producers;the amount of fossil petroleum liquids produced by independent power producers each month;the monthly output of fossil petroleum liquids from independent power producers -Monthly_SulfurContent_Fuel_ForElectricityGeneration_BituminousCoal,1 the monthly sulfur content of bituminous coal used for electricity generation;2 the amount of sulfur in bituminous coal used for electricity generation each month;3 the percentage of sulfur in bituminous coal used for electricity generation each month;4 the level of sulfur in bituminous coal used for electricity generation each month -Monthly_SulfurContent_Fuel_ForElectricityGeneration_Coal,"1 sulfur content in coal for electricity generation by all sectors, by month;2 monthly sulfur content of coal used for electricity generation by all sectors;3 sulfur content of coal used for electricity generation by all sectors, monthly;sulfur content in coal used for electricity generation by all sectors, monthly" -Monthly_SulfurContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"sulfur content in coal used for electricity generation by electric power companies, by month;monthly average sulfur content of coal used to generate electricity;sulfur content of coal used to generate electricity, by month;average sulfur content of coal used to generate electricity, by month" -Monthly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids,"sulfur content and petroleum liquids in electricity generation for all sectors, monthly;monthly sulfur content and petroleum liquids in electricity generation for all sectors;sulfur content and petroleum liquids in electricity generation for all sectors, monthly data;monthly data on sulfur content and petroleum liquids in electricity generation for all sectors" -Monthly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the quality of petroleum liquids used in electricity generation each month;the monthly quality of petroleum liquids used in power generation;monthly quality of petroleum liquids used in electricity generation;monthly quality of petroleum liquids in power generation -Monthly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,monthly sulfur content of petroleum liquids used in electricity generation -Monthly_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal,"sulfur content in sub-bituminous coal for electricity generation in all sectors, monthly;sulfur content of sub-bituminous coal used for electricity generation in all sectors, monthly average;sulfur content in sub-bituminous coal for electricity generation in all sectors, by month;sulfur content of sub-bituminous coal for electricity generation in all sectors, per month" -Monthly_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"the quality of fossil sub-bituminous coal used in electric power generation, month by month;the monthly quality of fossil sub-bituminous coal used in electric power;the quality of fossil sub-bituminous coal used in electric power generation, on a monthly basis;the quality of fossil sub-bituminous coal used in electric power, each month" -MortalityRate_Person_Upto4Years_AsFractionOf_Count_BirthEvent_LiveBirth,number of children under 4 years old who die per 1000 live births;proportion of live births that result in the death of a child under 4 years old;proportion of live births that result in death before the age of 4;percentage of children who die before the age of 4 -NetMeasure_Income_Farm,total farm income net measure;net farm income -NumberOfDays_HeatWaveEvent,heat wave duration;number of days with a heat wave;number of days with extreme heat;number of days with high temperatures -NumberOfMonths_-5CelsiusOrLess_MedianAcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP45,"months after 2006, based on rcp 45;months from 2006, based on rcp 45;months passed since 2006, based on rcp 45;months relative to 2006, based on rcp 45" -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MaxRelativeHumidity,maximum relative humidity of 35 degrees celsius or more based on rcp 45;maximum relative humidity of 35 degrees celsius or more based on the rcp 45 scenario;maximum relative humidity of 35 degrees celsius or more under the rcp 45 scenario;maximum relative humidity of 35 degrees celsius or more in the rcp 45 model -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MeanRelativeHumidity,months with mean relative humidity of 35 degrees celsius or more based on rcp 45;months with mean relative humidity of 95 degrees fahrenheit or more based on rcp 45;months with mean relative humidity of 35 degrees celsius or more in rcp 45;months with mean relative humidity of 95 degrees fahrenheit or more in rcp 45 -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MinRelativeHumidity,"months with a minimum relative humidity of 35% and a maximum temperature of 35 degrees celsius or more, based on rcp 45;months with a relative humidity of at least 35% and a temperature of 35 degrees celsius or more, based on rcp 45;months with a relative humidity of at least 35% and a temperature of 95 degrees fahrenheit or more, based on rcp 45;months with a minimum relative humidity of 35% and a maximum temperature of 95 degrees fahrenheit or more, based on rcp 45" -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MaxRelativeHumidity,the maximum relative humidity in rcp 60 is 35 degrees celsius or more;the maximum relative humidity in rcp 60 is at least 35 degrees celsius;the maximum relative humidity in rcp 60 is more than 35 degrees celsius;the maximum relative humidity in rcp 60 is greater than 35 degrees celsius -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MeanRelativeHumidity,the number of months in which the mean relative humidity is 35 degrees celsius or more based on rcp 60;the number of months in which the mean relative humidity is at least 35 degrees celsius based on rcp 60;the number of months in which the mean relative humidity is greater than or equal to 35 degrees celsius based on rcp 60;the number of months in which the mean relative humidity is more than 35 degrees celsius based on rcp 60 -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MinRelativeHumidity,number of months with a minimum relative humidity of 35% and a maximum temperature of 35 degrees celsius;number of months with a minimum relative humidity of 35% and a maximum temperature of 95 degrees fahrenheit;how many months will it be at least 35 degrees celsius and at least 35% humidity based on rcp 60;how many months will the temperature be at least 35 degrees celsius and the humidity at least 35% based on rcp 60 -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MaxRelativeHumidity, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MeanRelativeHumidity,"months when the mean relative humidity is 35 degrees celsius or more, based on rcp 85;months when the average relative humidity is 35 degrees celsius or more, based on rcp 85;months when the mean relative humidity is 95 degrees fahrenheit or more, based on rcp 85;months when the average relative humidity is 95 degrees fahrenheit or more, based on rcp 85" -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MinRelativeHumidity, -Offender_Count_CriminalIncidents_AggravatedAssault_IsHateCrime, -Offender_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_KnownOffender,"hate crimes involving aggravated assault committed by offenders with known attributes;aggravated assault hate crimes committed by offenders with known attributes;aggravated assaults motivated by hate, committed by offenders with known attributes;aggravated assaults motivated by prejudice, committed by offenders with known attributes" -Offender_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime, -Offender_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_KnownOffender,"the number of hate crimes involving all other larceny, where the offender's identity is known;the number of hate crimes involving all other larceny, where the offender's characteristics are known" -Offender_Count_CriminalIncidents_Arson_IsHateCrime, -Offender_Count_CriminalIncidents_Arson_IsHateCrime_KnownOffender,hate crimes committed by known arsonists;known arsonists who commit hate crimes -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender,"1 crimes motivated by hatred of a person's disability, committed by offenders with known attributes;2 hate crimes against people with disabilities, committed by offenders with known characteristics;5 crimes motivated by bias against people with disabilities, committed by offenders with known affiliations;hate crimes against people with disabilities committed by offenders with known traits" -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender_MentalDisability,"hate crimes against people with mental disabilities committed by offenders with known attributes;crimes motivated by hatred of people with mental disabilities, committed by offenders with known characteristics;hate crimes against people with mental disabilities, committed by offenders with known traits;crimes motivated by hatred of people with mental disabilities, committed by offenders with known features" -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender_PhysicalDisability,offenders' race by disability status of physically disabled victims;race of offenders against physically disabled victims;disability status of victims of offenders by race;race of offenders against victims with physical disabilities -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_MentalDisability, -Offender_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_PhysicalDisability,physical disability hate crimes -Offender_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino, -Offender_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_KnownOffender,ethnic hate crimes where the offender is known;known offender attributes of ethnic hate crimes;ethnic hate crimes with known offender attributes;ethnic hate crimes with known offender characteristics -Offender_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_KnownOffender_HispanicOrLatino,hate crimes against hispanics by offenders with known attributes -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Female, -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender, -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender_Female, -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender_Transgender, -Offender_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Transgender, -Offender_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_KnownOffender,bias-motivated crimes by offenders with known traits -Offender_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime,crimes based on hatred of a particular race or ethnicity -Offender_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_KnownOffender,bias-motivated crimes committed by offenders with known attributes;crimes motivated by prejudice against a particular group committed by offenders with known attributes;bias-motivated crimes committed by offenders with known characteristics;prejudiced crimes committed by offenders with known backgrounds -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_Arab,hate crimes motivated by racism against arabs -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone,hate crime targeting asian americans -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone, -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender,hate crimes against people of color committed by offenders with known characteristics;crimes motivated by racial hatred committed by offenders with known characteristics -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_AmericanIndianOrAlaskaNativeAlone,hate crime against american indian or alaska native people;hate crime against american indian or alaska native victims -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_Arab,hate crimes committed by known offenders against arabs;crimes against arabs committed by people who know they are arab;crimes against arabs by known offenders;racially motivated crimes against arabs by known perpetrators -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_AsianAlone,hate crimes against asians committed by people with known attributes;hate crimes committed against asians by offenders with known attributes -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_BlackOrAfricanAmericanAlone,"crimes motivated by racial hatred against african americans, with the identity of the offender known" -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_TwoOrMoreRaces,racially motivated crimes against multiracial people by known criminals -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_WhiteAlone,hate crimes committed against white people by offenders with known attributes -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces, -Offender_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_AtheismOrAgnosticism, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism,number of hate crime incidents where the offender was biased against religion and the victim was catholic;number of hate crimes committed by offenders with a bias against catholicism -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism,persecution of jews because of their faith -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender,"crimes motivated by religious hatred committed by offenders with known attributes;hate crimes against people of a particular religion committed by offenders with known characteristics;crimes motivated by religious hatred, committed by offenders with known attributes;crimes motivated by religious bigotry, committed by offenders with known affiliations" -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_AtheismOrAgnosticism,attacks on atheists or agnostics because of their lack of religious beliefs;persecution of atheists or agnostics because of their religious beliefs;attacks on atheists and agnostics due to their religious beliefs;persecution of atheists and agnostics for their beliefs -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Catholicism,hate crimes committed by offenders with known anti-catholic views -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Islam, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Judaism, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_MultipleReligion,religious hate crimes committed by offenders with known attributes against multi-religious victims;crimes motivated by religious hatred committed by offenders with known attributes against victims of multiple religions -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_OtherChristian,hate crimes committed by christians against other christians;religiously motivated violence against christians by other christians;violence against christians by other christians based on religion;attacks on christians by other christians because of their faith -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_OtherReligion, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Protestantism, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherChristian, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion, -Offender_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Bisexual, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Heterosexual,discrimination against heterosexuals;harassment or discrimination against people who are heterosexual;prejudice or violence against people who are heterosexual;heterophobia -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender,"criminal offenses against people because of their sexual orientation, committed by offenders with known identities;attacks on people because of their sexual orientation, committed by offenders with known profiles" -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Bisexual, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Gay, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Heterosexual,hate crimes against heterosexuals committed by known offenders;hateful acts against heterosexuals committed by known offenders;hate crimes against heterosexuals by known offenders;hate crimes against heterosexuals committed by known perpetrators -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_LGBT, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Lesbian,hate crimes against lesbians committed by known offenders -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT, -Offender_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian, -Offender_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_KnownOffender, -Offender_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime, -Offender_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_KnownOffender,hate crimes against gender non-conforming people committed by offenders with known attributes;hate crimes against gender non-conforming people committed by known offenders;hate crimes against gender non-conforming people committed by offenders with known characteristics;hate crimes against gender non-conforming people committed by offenders with known traits -Offender_Count_CriminalIncidents_Burglary_IsHateCrime, -Offender_Count_CriminalIncidents_Burglary_IsHateCrime_KnownOffender,hate crimes involving burglary against offenders with known attributes;burglary hate crimes against offenders with known characteristics;known characteristics of offenders in burglary hate crimes -Offender_Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime, -Offender_Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime_KnownOffender,hate crimes involving forgery by known offenders;known offenders who commit forgery hate crimes;offenders who commit forgery hate crimes and are known to the authorities;known offenders who commit forgery hate crimes and are known to the public -Offender_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,atm fraud motivated by hate;hate-motivated atm fraud;atm fraud with a hate motive;atm fraud as a hate crime -Offender_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime_KnownOffender,hate crimes involving credit card fraud committed by known offenders;known offenders committing hate crimes involving credit card fraud;credit card fraud committed by known offenders as a hate crime;credit card fraud committed by known offenders motivated by hate -Offender_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime,incidents of hate against people;attacks against people motivated by hate;incidents of hate crimes against people;attacks on people based on hatred -Offender_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_KnownOffender,hate crimes against people by known offenders -Offender_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime,hate crimes that target property;hate-motivated property crimes -Offender_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_KnownOffender,crimes against property motivated by prejudice committed by offenders with known attributes;property crimes against known attributes committed by hate offenders -Offender_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime, -Offender_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_KnownOffender,crimes against society committed by people with known attributes -Offender_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,"hate crimes that damage or destroy property;hate crimes that involve destruction, damage, or vandalism of property;property damage caused by hate crimes" -Offender_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_KnownOffender,known offenders committing hate crimes that destroy property;known offenders destroying property in hate crimes;hate crimes committed by known offenders that destroy property;property destroyed by known offenders in hate crimes -Offender_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime, -Offender_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime_KnownOffender,drug equipment violations by known offenders;known offenders who have committed drug equipment violations;known offenders who have committed both drug equipment violations and hate crimes;drug paraphernalia used in hate crimes by known offenders -Offender_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime, -Offender_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime_KnownOffender,hate crimes involving narcotics violations committed by offenders with known attributes;hate crimes involving narcotics violations by offenders with known attributes -Offender_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime,deception;trickery -Offender_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime_KnownOffender,"number of hate crime incidents involving false pretense, swindle, or confidence game, with offender attributes known;number of hate crimes where the offender used false pretense, swindle, or confidence game, and the offender's attributes are known;number of hate crimes where the offender used a false pretense, swindle, or confidence game, and the offender's identity is known;number of hate crimes where the offender used a false pretense, swindle, or confidence game, and the offender's characteristics are known" -Offender_Count_CriminalIncidents_Fondling_IsHateCrime, -Offender_Count_CriminalIncidents_Fondling_IsHateCrime_KnownOffender,hate crimes involving fondling by known offenders;fondling by known offenders as part of a hate crime;fondling by known offenders is a hate crime;known offenders who fondle people are committing a hate crime -Offender_Count_CriminalIncidents_Impersonation_IsHateCrime,impersonation-based hate crimes;hate crimes that are committed by pretending to be someone else;impersonation as a hate crime -Offender_Count_CriminalIncidents_Impersonation_IsHateCrime_KnownOffender, -Offender_Count_CriminalIncidents_Intimidation_IsHateCrime, -Offender_Count_CriminalIncidents_Intimidation_IsHateCrime_KnownOffender,hate crimes committed by known offenders who use intimidation to victimize their targets -Offender_Count_CriminalIncidents_IsHateCrime,hate crimes committed by offenders -Offender_Count_CriminalIncidents_IsHateCrime_KnownOffender,hate crimes where the offender's identity is known;hate crimes where the offender has been identified -Offender_Count_CriminalIncidents_IsHateCrime_KnownOffenderAge,hate crimes committed by offenders of known ages;hate crimes by known-age offenders;hate crimes committed by people whose ages are known;hate crimes committed by people whose ages are known to the authorities -Offender_Count_CriminalIncidents_IsHateCrime_KnownOffenderEthnicity, -Offender_Count_CriminalIncidents_IsHateCrime_KnownOffenderRace,hate crimes committed by offenders of known races;hate crimes committed by offenders of known race;hate crimes committed by people of known races;hate crimes committed by people of known race -Offender_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityHispanicOrLatino_KnownOffenderEthnicity,"hispanic offenders who commit hate crimes against people of other ethnicities;crimes motivated by hatred of a particular ethnic group, committed by hispanic offenders;hispanic offenders who commit crimes motivated by hatred of a particular ethnic group" -Offender_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_KnownOffenderEthnicity,crimes motivated by hate against non-hispanics;crimes against non-hispanics motivated by hatred;crimes motivated by hatred of non-hispanics;crimes that are motivated by bigotry against non-hispanics -Offender_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityUnknownEthnicity_KnownOffenderEthnicity,hate crimes committed by offenders of unknown ethnicity vs hate crimes committed by offenders of known ethnicity;hate crimes committed by offenders whose ethnicity is unknown vs hate crimes committed by offenders whose ethnicity is known -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone_KnownOffenderRace,hate crimes committed by american indian or alaska native offenders -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceAsianAlone_KnownOffenderRace, -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_KnownOffenderRace, -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceTwoOrMoreRaces_KnownOffenderRace, -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceUnknownRace_KnownOffenderRace, -Offender_Count_CriminalIncidents_IsHateCrime_OffenderRaceWhiteAlone_KnownOffenderRace,hate crimes committed by white offenders -Offender_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime,grand theft auto and hate-based crimes -Offender_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime_KnownOffender,motor vehicle theft hate crimes committed by known offenders;known offenders who have committed motor vehicle theft hate crimes -Offender_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime,murder and manslaughter that are hate crimes -Offender_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime_KnownOffender,known offender hate crimes of murder and non-negligent manslaughter -Offender_Count_CriminalIncidents_NotSpecified_IsHateCrime, -Offender_Count_CriminalIncidents_NotSpecified_IsHateCrime_KnownOffender,hate crimes carried out by known offenders;hate crimes committed by people who have been identified by the authorities;hate crimes with known assailants -Offender_Count_CriminalIncidents_Rape_IsHateCrime, -Offender_Count_CriminalIncidents_Rape_IsHateCrime_KnownOffender,"rape committed by someone who knows the victim and targets them because of their race, religion, sexual orientation, or other personal characteristic;rape committed by an offender with known attributes;rape by a known offender;rape committed by an offender with known characteristics" -Offender_Count_CriminalIncidents_Robbery_IsHateCrime,robberies with a hate-based motive -Offender_Count_CriminalIncidents_Robbery_IsHateCrime_KnownOffender,robbery committed by a known offender based on hate;robbery by a known offender motivated by hate;robbery by a known offender with a hate-based motive;robbery by a known offender with a hate-based intent -Offender_Count_CriminalIncidents_Shoplifting_IsHateCrime,incidents of shoplifting that are motivated by hate;incidents of shoplifting motivated by hate;shoplifting incidents motivated by hate -Offender_Count_CriminalIncidents_Shoplifting_IsHateCrime_KnownOffender,hate crimes committed by known shoplifters;shoplifting by known offenders that is considered a hate crime;hate crimes involving shoplifting by known offenders;hate crimes committed by known offenders involving shoplifting -Offender_Count_CriminalIncidents_SimpleAssault_IsHateCrime, -Offender_Count_CriminalIncidents_SimpleAssault_IsHateCrime_KnownOffender,hate crimes involving simple assault committed by known offenders;simple assault hate crimes committed by known offenders;simple assault committed by known offenders as hate crimes;known offenders committing simple assault as hate crimes -Offender_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime, -Offender_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_KnownOffender, -Offender_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime,crimes motivated by hate that involve stealing from a motor vehicle;stealing from a motor vehicle because of hate;hate-motivated theft from a motor vehicle;crimes motivated by hate that involve theft from a motor vehicle -Offender_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime_KnownOffender,crimes of theft from a motor vehicle committed by known offenders motivated by hate;theft from a motor vehicle by known offenders motivated by hate crimes;hate crimes involving theft from a motor vehicle by known offenders;theft from a motor vehicle committed by known offenders motivated by hate crimes -Offender_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime,hate crimes involving theft of accessories;crimes motivated by hate that involve theft of accessories;theft of accessories as a hate crime;accessories theft as a hate crime -Offender_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime_KnownOffender,hate crimes involving the theft of motor vehicle parts or accessories by offenders with known attributes;crimes motivated by hate that involve the theft of motor vehicle parts or accessories by offenders with known attributes;theft of motor vehicle parts or accessories by offenders with known attributes that is motivated by hate;theft of motor vehicle parts or accessories by offenders with known attributes that is a hate crime -Offender_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime,weapon law violations committed by offenders in hate crimes;offenders who commit hate crimes and violate weapon laws;offenders who commit hate crimes and use weapons;criminals who commit hate crimes with weapons -Offender_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_KnownOffender,offenders with known attributes who violated weapon laws;known attributes of offenders who violated weapon laws;weapon law violations by known offenders;known offenders who violated weapon laws -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_KnownOffender,known offenders who commit aggravated assault as a hate crime;aggravated assault committed by known offenders as a hate crime;hate crimes of aggravated assault committed by known offenders;known offenders who commit hate crimes of aggravated assault -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,aggravated assault hate crimes committed by non-hispanic offenders;aggravated assault hate crimes committed against non-hispanic offenders;aggravated assault hate crimes against non-hispanics;hate crimes committed by non-hispanic offenders that involve aggravated assault -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderEthnicityUnknownEthnicity,"hate crimes involving aggravated assault by offenders of unknown ethnicity;hate crimes involving aggravated assault by offenders whose ethnicity is unknown;assaults motivated by hate, with the ethnicity of the offender unknown;crimes motivated by hate, with the ethnicity of the offender unknown, that involve aggravated assault" -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderRaceAsianAlone,aggravated assaults against asian people that are motivated by hate;hate crimes committed by asian offenders that involve aggravated assault;crimes of hate against asian people that involve aggravated assault;hate crimes of aggravated assault by asian offenders -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,hate crimes against african americans that involve aggravated assault;aggravated assaults against african americans motivated by hate;aggravated assaults against african americans that are motivated by hate;aggravated assaults that are motivated by hate against african americans -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderRaceTwoOrMoreRaces,aggravated assaults committed by multiracial offenders;multiracial offenders committing aggravated assaults;aggravated assaults motivated by hate by multiracial offenders;multiracial offenders committing aggravated hate crimes -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderRaceUnknownRace,hate crimes involving aggravated assault committed by offenders of unknown race;aggravated assault hate crimes with unknown race offenders;unknown race offenders committing aggravated assault hate crimes;hate-motivated aggravated assaults by offenders of unknown race -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white offenders that involve aggravated assault;white offenders committing hate crimes that involve aggravated assault;aggravated assault hate crimes committed by white offenders;aggravated assault committed by white offenders as hate crimes -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_VictimTypeMultipleVictimType,hate crime aggravated assault against multiple victims;hate crime aggravated assault against more than one victim;hate crime aggravated assault against several victims;hate crime aggravated assault against a number of victims -Offense_Count_CriminalIncidents_AggravatedAssault_IsHateCrime_VictimTypePerson,hate crimes against people that involve aggravated assault;aggravated assault against people that are motivated by hate;aggravated assaults against people motivated by hate -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime, -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_KnownOffender,hate crimes involving larceny committed by offenders with known attributes;larceny hate crimes committed by offenders with known attributes;larceny crimes motivated by hate committed by offenders with known attributes;larceny crimes committed by offenders with known attributes that were motivated by hate -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_OffenderEthnicityUnknownEthnicity,larceny hate crimes committed by an offender of unknown ethnicity;larceny crimes motivated by hate against an unknown ethnicity;larceny crimes committed against an unknown ethnicity due to hate;larceny crimes committed against an unknown ethnicity based on hate -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_OffenderRaceWhiteAlone,larceny committed by white offenders that is motivated by hate;larceny committed by white offenders that is considered a hate crime;larceny committed by white offenders that is motivated by prejudice;larceny committed by white offenders that is motivated by discrimination -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_VictimTypeBusiness,larceny against businesses motivated by hate;businesses targeted for hate-motivated larceny;larceny against businesses based on prejudice or discrimination;larceny against businesses as a result of hate -Offense_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_Arson_IsHateCrime, -Offense_Count_CriminalIncidents_Arson_IsHateCrime_KnownOffender,"number of hate crime incidents involving arson, with offender attributes known;number of hate crime incidents involving arson, with the offender's attributes known;number of hate crime incidents involving arson, with known offender attributes" -Offense_Count_CriminalIncidents_Arson_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes involving arson against offenders of unknown ethnicity;arson hate crimes against offenders of unknown ethnicity;ethnic hate crimes involving arson against unknown offenders;arson crimes motivated by hate against offenders of unknown ethnicity -Offense_Count_CriminalIncidents_Arson_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_Arson_IsHateCrime_OffenderRaceWhiteAlone,"the number of hate crime incidents involving arson and a white offender, where the offender's race is known;the number of hate crimes involving arson and a white offender, where the offender's race is known, in the united states;the number of hate crime incidents involving arson and a white offender where the offender's race is known;the number of hate crimes where arson was the offense and the offender was white" -Offense_Count_CriminalIncidents_Arson_IsHateCrime_VictimTypePerson,arson against people motivated by hate;arson against people motivated by prejudice;arson against people motivated by bigotry;arson against people motivated by discrimination -Offense_Count_CriminalIncidents_Arson_IsHateCrime_VictimTypeReligiousOrganization,arson against religious organizations;hate crimes against religious organizations that involve arson;arson attacks on religious organizations motivated by hate;arson attacks on religious institutions -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime,hate crimes against people with disabilities;crimes motivated by hatred of people with disabilities;hate crimes motivated by hatred of people with disabilities;crimes against people with disabilities that are motivated by hatred of them -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_MentalDisability,crimes against people with mental disabilities;crimes motivated by hatred of people with mental disabilities;crimes against people with intellectual disabilities -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_PhysicalDisability,crimes motivated by hatred of the physically disabled;crimes against people with disabilities motivated by hatred of their disability -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_MentalDisability,crimes against property committed against people with mental disabilities;hate crimes against people with mental disabilities involving property damage;property crimes motivated by hate against people with mental disabilities;crimes against people with mental disabilities that involve property damage -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_PhysicalDisability,disability-based hate crimes -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,vandalism of property belonging to people with disabilities;vandalism of property motivated by hatred of people with disabilities in the united states;hate crimes against people with disabilities in the united states that involve vandalism of property;property vandalism motivated by hatred of people with disabilities in the united states -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MentalDisability, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime,hate crimes and intimidation against people with disabilities;intimidation against people with disabilities motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_MentalDisability, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_PhysicalDisability,acts of violence or intimidation against people with physical disabilities;crimes of intimidation against people with physical disabilities;hate crimes against people with physical disabilities;crimes against people with physical disabilities motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender,what are the attributes of hate crime offenders with known disability status?;what are the traits of hate crime offenders with known disability status?;what are the features of hate crime offenders with known disability status?;what are the qualities of hate crime offenders with known disability status? -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender_MentalDisability, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_KnownOffender_PhysicalDisability,"hate crimes against physically disabled people committed by offenders with known characteristics;hate crimes against physically disabled people committed by offenders with known attributes;hate crimes against physically disabled people by offenders with known attributes;hate crimes against physically disabled people, committed by offenders with known characteristics" -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_MentalDisability,three workers in single-mother households have lived below the poverty line in the past 12 months;three workers in single-mother households have been living below the poverty line for the past 12 months;three workers in single-mother households have been living below the poverty line for the past year;three workers in single-mother households have been living below the poverty line for the past 365 days -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity_MentalDisability,"hate crimes against mentally disabled people by people of unknown ethnicity;crimes motivated by hatred of people with disabilities, committed by people of unknown ethnicity;abuse of people with disabilities, committed by people of unknown ethnicity;crimes motivated by hatred of people with mental disabilities committed by people of unknown ethnicity" -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderEthnicityUnknownEthnicity_PhysicalDisability,"hate crimes against physically disabled people by offenders of unknown ethnicity;crimes against people with disabilities, motivated by hatred of their disability, committed by offenders of unknown ethnicity;crimes against people with physical disabilities, motivated by hatred of their disability, committed by offenders of unknown ethnicity;crimes against people with physical disabilities, motivated by hatred of their physical disability, committed by offenders of unknown ethnicity" -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,crimes motivated by hatred of people with disabilities committed by african americans;crimes motivated by hatred of people with disabilities committed by african-americans -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_MentalDisability,hate crimes against the mentally disabled committed by african americans;hate crimes against the mentally disabled by african americans;hate crimes committed by african americans against the mentally disabled;hate crimes against african americans with mental disabilities -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_PhysicalDisability,crimes committed by african americans against physically disabled people because of their disability -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace_MentalDisability,white offenders who commit hate crimes against mentally disabled victims;mentally disabled victims of hate crimes committed by white offenders;people with disabilities who are victims of hate crimes committed by white offenders;white offenders commit hate crimes against the mentally disabled -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceUnknownRace_PhysicalDisability,"hate crimes against physically disabled people by offenders of unknown race;crimes motivated by hate against physically disabled people, committed by offenders of unknown race;crimes against physically disabled people motivated by hatred, committed by offenders of unknown race;crimes against physically disabled people motivated by prejudice, committed by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone,hate crimes against people with disabilities committed by white offenders -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone_MentalDisability,white people committing hate crimes against the mentally challenged;mentally challenged people being the victims of hate crimes by white people;white people commit hate crimes against the mentally challenged;mentally challenged people are often the victims of hate crimes by white people -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_OffenderRaceWhiteAlone_PhysicalDisability,physical disability hate crimes committed by white offenders;physical disability hate crimes committed against people by white offenders -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_PhysicalDisability,hate crimes against physically disabled people -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime,simple assault motivated by a person's disability -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_MentalDisability,hateful violence against people with mental disabilities;assaults motivated by hatred of the mentally disabled;violent crimes against the mentally disabled;assaults against the mentally disabled -Offense_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_PhysicalDisability, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime_HispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime,hate crimes against ethnicity involving burglary;burglary motivated by hate against ethnicity;ethnicity-based burglary;hate-motivated burglary against ethnicity -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime_HispanicOrLatino,hispanic victims of burglary targeted because of their ethnicity;hispanic people targeted in burglaries motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime,crimes against people because of their national origin -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime_HispanicOrLatino,crimes against hispanics that are hate crimes -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime_HispanicOrLatino,crimes against hispanic people's property that are motivated by hate;crimes against hispanic property motivated by prejudice;crimes against hispanic property motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_HispanicOrLatino,hispanic-owned businesses or homes targeted for vandalism -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime,hate crimes and intimidation against ethnic groups -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime_HispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_KnownOffender,ethnically motivated crimes committed by people with known backgrounds -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_KnownOffender_HispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,attacks on hispanics because of their race -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_HispanicOrLatino,crimes motivated by hatred of hispanic ethnicity committed by non-hispanic offenders;hate crimes against hispanic ethnicity committed by non-hispanic offenders;violence against hispanics motivated by hatred of hispanics committed by non-hispanic offenders -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity,ethnic hate crimes committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity_HispanicOrLatino,hate crimes against hispanic victims by offenders of unknown ethnicity;hate crimes against hispanic victims by unknown ethnicity perpetrators;hate crimes against hispanic victims by offenders whose ethnicity is unknown;crimes against hispanic people motivated by hatred of their hispanic heritage committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_HispanicOrLatino,hate crimes against hispanic people committed by african american offenders -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces_HispanicOrLatino,hate crimes committed by multiracial people against hispanic victims;hispanic victims of hate crimes committed by multiracial people;hispanic people are victims of hate crimes by people of multiple races;hispanic people are targeted by hate crimes from people of multiple races -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceUnknownRace,"crimes motivated by hatred of a particular ethnic group and committed by people whose identities are unknown;crimes motivated by hatred of a particular ethnic group, committed by people whose identities are unknown;hate crimes against ethnic groups committed by people whose identities are unknown;crimes motivated by hatred of a particular ethnic group, and whose perpetrators are not known" -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceUnknownRace_HispanicOrLatino,hate crimes against hispanic victims by unknown race offenders;hate crimes against hispanic victims committed by offenders whose race is unknown -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white people and known race offenders -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_OffenderRaceWhiteAlone_HispanicOrLatino,crimes motivated by hatred of hispanics committed by white offenders;hate crimes committed by white people against hispanic victims;crimes motivated by hatred of hispanics committed by white people;hate crimes committed by white offenders against hispanic victims -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime_HispanicOrLatino,robbery of hispanics based on ethnicity;ethnicity-based robbery against hispanics;robbery against hispanics motivated by ethnicity;robbery against hispanics because of their ethnicity -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime_HispanicOrLatino,hispanic victims of hate-motivated assaults -Offense_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Female, -Offense_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Transgender,crimes against transgender people based on their gender identity -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Female, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender,"hate crimes against people based on their gender, committed by offenders whose identities are known;crimes motivated by hatred of a person's gender, committed by offenders whose identities are known;violent acts against people based on their gender, committed by offenders whose identities are known;criminal offenses against people based on their gender, committed by offenders whose identities are known" -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender_Female, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_KnownOffender_Transgender, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity,"hate crimes committed against people based on their gender by offenders of unknown ethnicity;crimes motivated by hatred of a person's gender, committed by people whose ethnicity is unknown;hate crimes against people based on their gender, committed by offenders of unknown ethnic origin;hate crimes against people based on their gender, committed by perpetrators of unknown ethnicity" -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity_Female, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderEthnicityUnknownEthnicity_Transgender,hate crimes against transgender people by offenders of unknown ethnicity;crimes motivated by hatred of transgender people committed by offenders of unknown ethnicity;violence against transgender people by offenders of unknown ethnicity;attacks on transgender people by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderRaceUnknownRace_Transgender, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_OffenderRaceWhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Transgender, -Offense_Count_CriminalIncidents_BiasMotivationGender_SimpleAssault_IsHateCrime_Transgender,crimes of violence against transgender people;crimes of simple assault against transgender people;assaults against transgender people based on their gender identity -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstPerson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_KnownOffender, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderRaceUnknownRace,"multiple bias crimes committed by offenders of unknown race;crimes motivated by hate or bias, committed by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime_OffenderRaceWhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationMultipleBias_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_AggravatedAssault_IsHateCrime,assaults against people of a certain ethnicity motivated by prejudice -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Burglary_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstPerson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,other ethnic hate crimes involving property damage -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Intimidation_IsHateCrime,extortion or blackmail against heterosexuals motivated by hate;blackmail or extortion of heterosexuals due to prejudice;extortion or blackmail of heterosexuals based on hatred;extortion or blackmail of heterosexuals due to bigotry -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime,crimes that target people because of their race or ethnicity;crimes that are motivated by racial or ethnic prejudice;crimes that are motivated by racism or bigotry;crimes that are motivated by racism or xenophobia -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_KnownOffender,known offenders who commit ethnic hate crimes;known offenders of ethnic hate crimes;known attributes of offenders of ethnic hate crimes;attributes of known offenders of ethnic hate crimes -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderEthnicityUnknownEthnicity,violence against people of other races because of the offender's prejudice;bias against other races by known ethnicity offenders -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,hate crimes committed by african americans;racially motivated crimes committed by african americans;racially motivated crimes against people of other races committed by african americans;crimes motivated by hatred of other races committed by african americans -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceTwoOrMoreRaces,incidents of ethnic hate crimes committed by multiracial offenders;incidents of hate crimes against ethnicities committed by multiracial offenders;incidents of violence or discrimination against people of different ethnicities committed by people of multiple races;incidents of ethnic hate crimes committed by people of multiple races -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceUnknownRace,"crimes motivated by hatred of a particular ethnicity, committed by offenders whose race is unknown;hate crimes against people of a certain ethnicity by offenders whose race cannot be determined" -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white people against other ethnicities;white-on-other-ethnicity hate crimes -Offense_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_BlackOrAfricanAmericanAlone,african american victims of hate crimes for larceny -Offense_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_WhiteAlone,racial hate crime incidents of all other larceny against white victims -Offense_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime,crimes against people based on race;crimes against people motivated by race;crimes against people that are racially motivated;crimes against people that are racially charged -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_Arab,violence against arabs because of their ethnicity -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AsianAlone,hate crimes targeting asian people -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_TwoOrMoreRaces,crimes against multiracial people motivated by race;crimes against multiracial people;crimes against people of multiple races -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_WhiteAlone,white people committing hate crimes;white people perpetrating hate crimes -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,hate crime against american indians or alaska natives involving property damage;hate crimes against american indians or alaska natives that involve property damage;crimes against property that are motivated by hatred of american indians or alaska natives;crimes against property that are motivated by bias against american indians or alaska natives -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_Arab,1 racially motivated property crimes against arab victims;3 property crimes motivated by hatred of arabs;4 crimes against arab-owned property that are motivated by hatred;5 property crimes against arabs that are motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AsianAlone,crimes against asian property;crimes against property against asians;crimes against asian american property;crimes against property against asian americans -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_WhiteAlone,1 crimes against property against white victims motivated by hate -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime,racially motivated crimes against society;crimes against society motivated by prejudice against a particular race;crimes against society motivated by bigotry against a particular race -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_WhiteAlone,hate crimes against african americans involving drugs or narcotics;racially motivated crimes against african americans involving drugs or narcotics;crimes against african americans motivated by race and involving drugs or narcotics;crimes against african americans motivated by race and involving narcotics -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,hate crimes against american indian or alaska native people involving vandalism;hate crimes against american indian or alaska native people that involve vandalism -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Arab,number of hate crimes against arabs involving destruction or damage or vandalism of property -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AsianAlone,vandalism of asian-owned property;vandalism of asian-american property -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes against african americans that involve property damage;attacks on african americans that are motivated by racial hatred and result in damage to property;acts of violence against african americans that are motivated by racial hatred and result in damage to property;destruction of property motivated by hatred of african americans -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_TwoOrMoreRaces,vandalism of multiracial people's property;hateful acts of vandalism against multiracial people's property;vandalism of property against multiracial victims;racially motivated vandalism of property against multiracial victims -Offense_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_WhiteAlone,vandalism of white-owned properties motivated by racial hatred;white people's properties vandalized due to racial prejudice;white-owned properties targeted for vandalism due to racism;racially motivated vandalism of white-owned properties -Offense_Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,crimes of intimidation against american indian or alaska natives;intimidation of american indians or alaska natives based on their race;threats of violence against american indians or alaska natives based on their race;crimes of intimidation against american indians or alaska natives -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_Arab, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_Arab, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender,crimes motivated by racial hatred committed by known offenders;racially motivated crimes committed by people who are known to the police;crimes motivated by racial hatred committed by people who are known to the authorities -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_AmericanIndianOrAlaskaNativeAlone,hate crimes committed against american indians by offenders with known attributes;racially motivated crimes against american indians by offenders with known characteristics;hate crimes against american indians by offenders with known attributes;hate crimes committed by offenders with known attributes against american indian victims -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_Arab, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_BlackOrAfricanAmericanAlone,hate crimes against african americans by people with known attributes;hate crimes committed against african americans by offenders with known attributes;racially motivated crimes against african americans committed by offenders with known attributes;crimes motivated by hatred of african americans committed by offenders with known attributes -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_KnownOffender_WhiteAlone,crimes against white people committed by known offenders;racially motivated crimes against white people by known offenders;white people as victims of hate crimes by known offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_BlackOrAfricanAmericanAlone,hate crimes committed by non-hispanic offenders against african american victims;crimes motivated by racial hatred against african americans committed by non-hispanic offenders;hate crimes against african americans committed by non-hispanic offenders;hateful acts against african americans committed by non-hispanic offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_WhiteAlone,"hate crimes against the white population committed by non-hispanics;violence against whites motivated by hatred of their race, committed by non-hispanics;violence against white people based on their race, committed by people who are not hispanic" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes against unknown ethnicities -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_AmericanIndianOrAlaskaNativeAlone,hate crimes against native americans;racially motivated violence against american indians;attacks on native americans based on their race;violence against american indians because of their race -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_Arab,hate crimes against arabs committed by people of unknown ethnicity;hate crimes against arabs by people of unknown ethnicity;racially motivated crimes against arabs by offenders of unknown ethnicity;hate crimes against arabs by people whose ethnicity is unknown -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_BlackOrAfricanAmericanAlone,hate crimes against african americans by offenders of unknown ethnicity;hate crimes against african americans by people of unknown ethnicity;hate crimes against african americans by perpetrators of unknown ethnicity;hate crimes against african americans by assailants of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_TwoOrMoreRaces,hate crimes against multiracial victims committed by an offender of unknown ethnicity;racially motivated crimes against multiracial victims committed by an offender of unknown ethnicity;violence against people of multiple races by an offender of unknown identity -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderEthnicityUnknownEthnicity_WhiteAlone,white people victimized by hate crimes committed by people of unknown ethnicity;white people targeted by hate crimes committed by people of unknown ethnicity;white people attacked in hate crimes committed by people of unknown ethnicity;attacks on white people motivated by racial hatred by people of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,racially motivated crimes committed by american indian or alaska native offenders;crimes against people of color committed by american indian or alaska native offenders;hate crimes against people of color committed by american indian or alaska native offenders;racially motivated crimes against people of color committed by american indian or alaska native offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone_BlackOrAfricanAmericanAlone,hate crimes committed by american indian or alaska native offenders against african american victims -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone,crimes motivated by racial hatred committed by asian offenders;racially motivated attacks by asian offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone_AsianAlone,hate crimes committed by asian offenders against asian victims;asian offenders committing hate crimes against asian victims -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceAsianAlone_BlackOrAfricanAmericanAlone,hate crimes committed by asian offenders against african american victims -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_AmericanIndianOrAlaskaNativeAlone,"hate crimes committed by african americans against american indians or alaska natives;crimes motivated by hatred or prejudice against american indians or alaska natives, committed by african americans;criminal acts against american indians or alaska natives, committed by african americans, that are motivated by hatred or prejudice;violence against american indians or alaska natives, committed by african americans, that is motivated by hatred or prejudice" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_BlackOrAfricanAmericanAlone,african americans as offenders in hate crimes against african americans -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_TwoOrMoreRaces,hate crimes committed by african americans against multiracial people;racially motivated attacks by african americans against multiracial people;hate crimes against multiracial people by african americans;hate crimes against multiracials by african americans -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_WhiteAlone,african american offenders targeting white victims in hate crimes -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_BlackOrAfricanAmericanAlone,"violence against african americans based on race, committed by people of multiple races;violence against african americans due to racism, committed by people of multiple races" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_TwoOrMoreRaces,crimes motivated by race committed by multiracial offenders against multiracial victims;multiracial offenders committing hate crimes against multiracial victims;multiracial offenders committing crimes against multiracial victims motivated by hate;multiracial hate crimes against multiracial victims motivated by the offender's perception of the victim's race -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceTwoOrMoreRaces_WhiteAlone,hate crimes committed by multiracial offenders against white victims;hate crimes against white victims committed by multiracial offenders;racially motivated crimes against white victims committed by multiracial offenders;crimes against white victims motivated by race and committed by multiracial offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_AmericanIndianOrAlaskaNativeAlone,"hateful acts against american indians or alaska natives, committed by offenders whose race is unknown;hate crimes against american indian or alaska native victims committed by offenders of unknown race;hate crimes against american indian or alaska native people committed by offenders of unknown race;hate crimes against american indian or alaska native victims by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_Arab,"hate crimes against arabs by offenders of unknown race;crimes against arabs motivated by racial bias committed by people of unknown race;crimes motivated by hatred of arabs, committed by offenders of unknown race;crimes against arabs motivated by race, committed by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_AsianAlone,"1 the number of hate crime incidents involving race bias, with an unknown race offender and an asian victim;5 the number of hate crimes against asian people, where the race of the offender is unknown and the crime was motivated by race bias" -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_BlackOrAfricanAmericanAlone,hate crimes against african americans by offenders of unknown race;race-based hate crimes against african americans by unknown perpetrators;racially motivated crimes against african americans by offenders of unknown race -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_TwoOrMoreRaces,racially motivated crimes against multiracial people;hate crimes that are motivated by racism against multiracial people;multiracial people targeted by hate crimes;violence against multiracial people motivated by hatred -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceUnknownRace_WhiteAlone,hate crimes against white people by offenders of unknown race;attacks on white people motivated by race by offenders of unknown race;hate crimes committed by offenders of unknown race against white people;crimes motivated by hate against white people committed by offenders of unknown race -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone,crimes motivated by racial hatred committed by white offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_AmericanIndianOrAlaskaNativeAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_Arab,hate crimes against arab people by white offenders;anti-arab hate crimes by white offenders;crimes against arab people motivated by racism committed by white people;anti-arab hate crimes committed by white offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_AsianAlone,hate crimes committed by white offenders against asian victims;hate crimes against asian people by white offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_TwoOrMoreRaces,racially motivated crimes against multiracial victims committed by white offenders -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_OffenderRaceWhiteAlone_WhiteAlone,crimes against white people committed by white offenders;hate crimes committed by white offenders against white victims -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime_WhiteAlone,car thefts motivated by racism against white people;cars stolen in hate crimes against white people;car thefts motivated by hate against white people;carjackings targeting white people -Offense_Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime,hate crimes against people of unspecified race -Offense_Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Rape_IsHateCrime,rape motivated by racial hatred;rape motivated by racial bias -Offense_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime,robbery against a person of a different race as a hate crime;robbery as a hate crime against race;robbery against race as a hate crime;robbery as a hate crime against a race -Offense_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_BlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_WhiteAlone,robbery against white victims as a hate crime -Offense_Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime,shoplifting motivated by racial hatred;shoplifting with a racial animus;shoplifting motivated by racism -Offense_Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime_WhiteAlone,hate crimes involving shoplifting against white victims;shoplifting as a hate crime against white victims;racially motivated shoplifting against white victims;shoplifting as a form of racial violence against white victims -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_Arab,assaults on arab people because of their race;violence against arab people because of their race;assaults on arab people motivated by racism;assaults on arab people motivated by hatred of their race -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AsianAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_BlackOrAfricanAmericanAlone,racially motivated assaults against african americans;violence against african americans because of their race;assaults against african americans motivated by racism;hate crimes against african americans involving simple assault -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_TwoOrMoreRaces, -Offense_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_TheftFromBuilding_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime,the number of hate crime incidents where the offense was bias against race and theft from motor vehicle -Offense_Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime_WhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes committed with weapons against african americans;weapon law violations against african americans motivated by hate;weapons used in hate crimes against african americans;hate crimes against african americans involving weapons -Offense_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Islam, -Offense_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_AllOtherLarceny_IsHateCrime,religious hate crimes against queer victims;larceny against queer victims motivated by religion;larceny against queer victims due to religious hatred;larceny against queer victims because of religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_Arson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime,hate crimes against women involving burglary;crimes of burglary motivated by hatred or prejudice against women;burglary motivated by hatred or prejudice against women;crimes of burglary that target women -Offense_Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime,persecution of people because of their beliefs -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Catholicism,religiously motivated violence against catholics;violence against catholics based on their religion;attacks on catholics because of their faith;2 religiously motivated violence against catholics -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Islam,hate crimes against muslims;crimes against muslims motivated by hate;crimes against muslims;crimes motivated by hatred of muslims -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_MultipleReligion, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_OtherReligion, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Catholicism,hate crimes against catholic property that are motivated by religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Islam,crimes against people of the islamic faith -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_MultipleReligion,crimes against religious property that target multiple faiths -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherChristian,crimes against christian property motivated by religious hatred;hate crimes against christians involving property damage;criminal acts against christian property motivated by religious bias;crimes against christian property committed by people who hate christians -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherReligion,acts of religious hatred against property belonging to people of other faiths;attacks on religious property motivated by hatred of other religions -Offense_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Protestantism,crimes against protestant property motivated by religious hatred;hate crimes against protestant property;property crimes against protestants motivated by religious hatred;property crimes against protestants motivated by religious bigotry -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,vandalism of religious property -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Catholicism,vandalism of catholic property motivated by religious hatred;hate crime against a catholic person involving vandalism;hate crime against a catholic person involving vandalism of their property;catholic property vandalized in a hate crime -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Islam,vandalism of muslim property motivated by religious hatred;vandalism of muslim-owned businesses or places of worship;vandalism of muslim places of worship;muslim property vandalized due to religious bigotry -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Judaism,vandalism of jewish property;vandalism against jewish religious property;vandalism of jewish religious property;anti-semitic vandalism -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MultipleReligion,hateful acts of vandalism against multiple religions -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherChristian,christian churches vandalized in hate crimes;vandalism of christian churches motivated by religious hatred;christian property damaged in hate crime -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherReligion, -Offense_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Protestantism,hate crimes against protestants involving property damage;protestant churches and other buildings attacked due to religious hatred;protestant property targeted for destruction due to religious bigotry;destruction of protestant property due to religious hatred -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Catholicism,intimidation of catholics based on their religion;intimidation and violence against catholics -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Islam,religiously motivated attacks on muslims;intimidation and violence against muslims -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_MultipleReligion,religious intimidation of people of multiple faiths;threats and violence against people of multiple faiths -Offense_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_OtherReligion, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_AtheismOrAgnosticism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam,religious discrimination against muslims -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender,religious hate crimes committed by offenders with known attributes;religious hate crimes committed by offenders with known characteristics;religious hate crimes committed by offenders with known backgrounds;religious hate crimes committed by offenders with known identities -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_AtheismOrAgnosticism,religious hate crimes committed by offenders with known attributes against atheists;religious hate crimes committed by people with known attributes against atheists;religiously motivated attacks on atheists by people who identify with a particular religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Catholicism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Islam, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Judaism,hate crimes against jews committed by known offenders;attacks on jews by people who know they are jewish;hate crimes against jews by known perpetrators;attacks on jews by people who are known to be anti-semitic -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_MultipleReligion,religious hate crimes committed by offenders with known attributes against multiple faith victims;faith-based hate crimes committed by offenders with known attributes against multiple victims;hate crimes against multiple faith victims committed by offenders with known attributes;hate crimes against multiple faiths by known offenders -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_OtherChristian,hate crimes against christians by known offenders;hate crimes committed by known offenders against christians;attacks on christians by known offenders;violence against christians by known offenders -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_OtherReligion, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_KnownOffender_Protestantism,hate crimes against protestants by offenders with known attributes;hate crimes against protestants by offenders with known characteristics;hate crimes against protestants by offenders with known backgrounds;hate crimes committed by offenders with known attributes against protestant victims -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion,crimes motivated by religious hatred against people of multiple faiths;violence against people of multiple faiths based on their religion;attacks on people of multiple faiths because of their religion;persecution of people of multiple faiths for their religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,1 crimes against religious minorities committed by people who are not hispanic;2 hate crimes against people of faith committed by non-hispanics;3 attacks on people of different religions by non-hispanic offenders;4 incidents of religious intolerance perpetrated by non-hispanics -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes against religious groups committed by people of unknown ethnicity;crimes motivated by religious hatred and committed by people of unknown ethnicity;religiously motivated crimes against people of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Catholicism,religious hate crime against catholics committed by offenders of unknown ethnicity;catholics targeted in a religious hate crime by offenders of unknown ethnicity;unknown ethnicity offenders commit religious hate crime against catholics;catholics are victims of a religious hate crime committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Islam, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Judaism,hate crimes against jews committed by offenders of unknown ethnicity;religiously motivated hate crimes against jews committed by offenders of unknown ethnicity;hate crimes against jews by offenders of unknown ethnicity;hate crimes against jews committed by people of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_MultipleReligion,ethnically unknown offenders committing hate crimes against people of multiple religions;crimes motivated by religious hatred committed by offenders of unknown ethnicity against victims of multiple religions;crimes motivated by religious bigotry committed by offenders of unknown ethnicity against victims of multiple religions -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_OtherChristian,religious hate crimes committed by people of unknown ethnicity against other christian faith victims;crimes against christians motivated by the fact that they are christians committed by people of unknown ethnicity;religious hate crimes committed by people of unknown ethnicity against christian victims;religious hate crimes against christians by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_OtherReligion,hate crimes committed by people of unknown ethnicity against people of other religions;crimes motivated by religious hatred against people of other ethnicities;hate crimes against other religions by unknown ethnicities;religious hate crimes committed by unknown ethnicities -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderEthnicityUnknownEthnicity_Protestantism,"hate crimes against protestants by offenders of unknown ethnicity;religiously motivated crimes against protestants by offenders of unknown ethnicity;crimes against protestants motivated by religion, committed by offenders of unknown ethnicity;crimes against protestants motivated by religious hatred, committed by offenders of unknown ethnicity" -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceAsianAlone,crimes motivated by religious hatred committed by asian offenders;hate crimes against religious groups committed by asian people;religiously motivated hate crimes committed by asian people;crimes against religious groups motivated by hatred of asians -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,hate crimes against religious groups committed by african americans;african americans who commit hate crimes against religious groups;crimes motivated by hatred of religion committed by african americans;hate crimes against religious groups carried out by african americans -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Islam, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Judaism,hate crimes against jews committed by african americans;religious hate crimes against jews by african americans;hate crimes against jews by african americans motivated by religion;anti-semitic hate crimes by african americans motivated by religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceTwoOrMoreRaces,hate crimes against people of other religions committed by multiracial people;people of multiple races who commit hate crimes based on religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceTwoOrMoreRaces_Judaism,hate crimes against jews committed by people of multiple races;multiracial offenders who commit hate crimes against jews;hate crimes committed against jews by people of multiple races;anti-semitic hate crimes committed by people of multiple races -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace,religious hate crimes committed by offenders of unknown race;hate crimes against religious groups committed by offenders of unknown race;crimes motivated by religious hatred committed by offenders of unknown race;crimes against people of faith committed by offenders of unknown race -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Catholicism,"hate crimes against catholics by people of unknown race;hate crimes against catholics by people of unknown ethnicity;religiously motivated crimes against catholics by people of unknown race;crimes against catholics motivated by religious hatred, committed by people of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Islam,attack on muslims by unknown race;attack on muslims by people of unknown race;hate crime against muslims committed by offenders of unknown race -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Judaism,religious hate crimes committed by offenders of unknown race against multi-religious victims -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_MultipleReligion,"hate crimes against people of multiple religions committed by offenders of unknown race;hate crimes against people of multiple religions committed by offenders of unknown background;hate crimes committed against people of multiple religions by offenders of unknown race;religiously motivated crimes against people of multiple religions, committed by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_OtherChristian,hate crimes against christians;religiously motivated violence against christians;persecution of christians;crimes against christians motivated by religious hatred -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_OtherReligion,people of other faiths are targeted by hate crimes committed by unknown people -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceUnknownRace_Protestantism,hate crimes against protestants committed by people of unknown race;religiously motivated crimes against protestants committed by people of unknown race;attacks on protestants motivated by religion and committed by people of unknown race;violence against protestants motivated by religion and committed by people of unknown race -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone,crimes against religious minorities committed by white people;hate crimes against religious groups committed by white people;hate crimes committed by white people against religious minorities;religiously motivated hate crimes committed by white people -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Catholicism,catholic victims of hate crimes committed by white people -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Islam, -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Judaism,"attacks on jewish people because of their faith, carried out by white people;religious hate crimes against jewish people committed by white people;harassment and discrimination against jewish people because of their faith, carried out by white people" -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_MultipleReligion,people of multiple religions who are victims of hate crimes committed by white people;hate crimes committed against people of multiple religions by white offenders -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_OtherReligion,hate crimes committed by white people against people of other religions;attacks on people of other religions by white people;violence against people of other religions by white people;acts of hate against people of other religions by white people -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OffenderRaceWhiteAlone_Protestantism,hate crimes committed by white people against protestants;white people committing hate crimes against protestants;protestants being the victims of hate crimes committed by white people;white people committing religious hate crimes against protestants -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherChristian,crimes motivated by religious hatred against christian victims -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion,persecution of people of other faiths -Offense_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism, -Offense_Count_CriminalIncidents_BiasMotivationReligion_NotSpecified_IsHateCrime,hate crimes against people of unspecified religion;attacks on people of unspecified religion;persecution of people of unspecified religion;hate crimes against people of an unspecified religion -Offense_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Islam,assaults motivated by hatred of muslims;violence against muslims;attacks on muslims;hate-motivated violence against muslims -Offense_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Judaism,violence against jewish people because of their faith -Offense_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_OtherReligion,assault against people because of their faith -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Gay,assaults on gay people -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_LGBT,aggravated assault against lgbt people due to their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Lesbian,aggravated assault against lesbians;aggravated assaults against lesbian victims due to their sexual orientation;lesbian victims of hate crimes involving aggravated assault;lesbian victims of aggravated assault motivated by their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_AllOtherLarceny_IsHateCrime,crimes of larceny motivated by hatred of a person's sexual orientation;larceny committed against a person because of their sexual orientation;larceny motivated by hatred of a person's sexual orientation;larceny based on a person's sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime_Gay,hate crimes against gay people involving burglary;gay hate crimes involving burglary;gay-bashing burglaries;burglary against gay people due to prejudice -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime,crimes motivated by hatred of people's sexual orientation;hateful acts against people because of their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Bisexual,crimes against bisexual people;crimes motivated by hatred of bisexual people;2 hate crimes against bisexuals;3 bisexual hate crimes -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Heterosexual,crimes against heterosexual victims motivated by their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_LGBT,crimes against lgbt people motivated by hatred of their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Lesbian, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime,property crimes motivated by hatred of a person's sexual orientation;crimes against property motivated by hatred of someone's sexual orientation;crimes against property motivated by hatred of a person's sexual orientation;property damage motivated by hatred of a person's sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Bisexual,hate crimes against property committed against bisexual victims;crimes against property committed against bisexual victims motivated by their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Gay,crimes against property targeting gay people;crimes targeting gay people's property -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Heterosexual,crimes against property motivated by hatred of heterosexuals;hate crimes against heterosexuals involving property damage;property crimes motivated by prejudice against heterosexuals;property crimes motivated by hatred of heterosexuals -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_LGBT,crimes against property targeting lgbt people;hate crimes against property targeting lgbt people;crimes against property targeting lgbt victims;crimes against property that are motivated by hatred of lgbt people -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Lesbian,crimes against lesbian property motivated by sexual orientation;crimes against the property of lesbians motivated by hatred of their sexual orientation;crimes against property committed against lesbian victims motivated by hatred of their sexual orientation;property crimes against lesbian victims motivated by their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,vandalism of property motivated by hatred of someone's sexual orientation;vandalism of property motivated by hatred of people's sexual orientation;vandalism of property motivated by hatred of people of a different sexual orientation;vandalism of property due to hatred of someone's sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Gay,vandalism of property against gay victims motivated by sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_LGBT, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Lesbian,vandalism motivated by hatred of someone's sexual orientation;vandalism against people of a different sexual orientation;hateful vandalism against people of a different sexual orientation;vandalism motivated by hatred of people of a different sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Bisexual, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Heterosexual,intimidation and violence against heterosexuals;crimes of intimidation against heterosexuals;intimidation of heterosexuals based on their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_LGBT,incidents of intimidation and hate crimes against lgbt victims;crimes of hate and intimidation against lgbt people;harassment of lgbt people -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Lesbian,intimidation against lesbian property due to sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Bisexual, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Heterosexual, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender,hate crimes committed by offenders with known attributes against sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Bisexual,hate crimes against bisexual people committed by offenders with known attributes;bisexual hate crimes by known offenders;bisexual hate crimes committed by known offenders;hate crimes against bisexual people by offenders with known characteristics -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Gay,"hate crimes against gay victims where the offender's attributes are known;crimes motivated by hatred of gay people, where the offender's identity is known" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Heterosexual,sexual orientation hate crimes committed by known offenders against heterosexuals;attacks on heterosexuals motivated by hatred of their sexual orientation committed by known offenders -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_LGBT, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_KnownOffender_Lesbian,crimes committed against lesbians because of their sexual orientation;hate crimes committed against lesbians because of their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT,hateful acts against lgbtq people because of their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian,hate crimes against lesbian victims -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,"hate crimes committed by non-hispanic offenders against sexual orientation;crimes motivated by hatred of sexual orientation, committed by non-hispanic offenders;hate crimes against sexual orientation by non-hispanic offenders;hate crimes committed by non-hispanic offenders against sexual orientation in the united states" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityNotHispanicOrLatino_Gay,hate crimes against gay people by non-hispanics;hate crimes against homosexuals by non-hispanics;hate crimes against same-sex couples by non-hispanics;hate crimes against people who are not heterosexual by non-hispanics -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes against lgbtq people by people of unknown ethnicity;hate crimes against lgbtq people by people whose ethnicity is unknown;hate crimes against lgbtq+ people by people of unknown ethnicity;hate crimes against lgbtq+ people by people whose ethnicity is unknown -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Bisexual,"hate crimes against bisexual people by offenders of unknown ethnicity;crimes motivated by hatred of bisexual people, committed by offenders of unknown ethnicity;hate crimes against bisexual people, with the ethnicity of the offender unknown;crimes motivated by hatred of bisexual people, with the ethnicity of the offender unknown" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Heterosexual,crimes motivated by hatred of heterosexuals committed by people of unknown ethnicity;criminal acts committed against heterosexuals out of hatred for their sexual orientation by people of unknown ethnicity;crimes against heterosexuals committed by people of unknown ethnicity because of their sexual orientation;crimes motivated by hatred of heterosexuals committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_LGBT,"crimes motivated by hatred of lgbt people, committed by offenders of unknown ethnicity;attacks on lgbt people because of their sexual orientation, committed by offenders of unknown ethnicity;violence against lgbt people because of their sexual orientation, committed by offenders of unknown ethnicity;crimes against lgbt people motivated by prejudice, committed by offenders of unknown ethnicity" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderEthnicityUnknownEthnicity_Lesbian,hate crimes against lesbians by people of unknown ethnicity;crimes motivated by hatred of lesbians committed by people of unknown ethnicity;hate crimes against lesbians committed by people whose ethnicity is unknown;crimes motivated by hatred of lesbians committed by people whose ethnicity is not known -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Gay,african american offenders who commit hate crimes against gay victims -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_LGBT, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone_Lesbian,african american offenders who commit hate crimes against lesbian victims;lesbian victims of hate crimes committed by african american offenders;hate crimes against lesbian victims committed by african american offenders;african american offenders who commit hate crimes against lesbians -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceTwoOrMoreRaces,multiracial hate crimes against sexual orientation;hate crimes against sexual orientation committed by multiracial people;sexual orientation hate crimes committed by multiracial people;hate crimes against people of multiple races and sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceTwoOrMoreRaces_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace,hate crimes against people of a specific sexual orientation committed by offenders of unknown race;crimes motivated by hatred of people of a specific sexual orientation and committed by offenders of unknown race;violent acts against people of a specific sexual orientation committed by offenders of unknown race;criminal offenses against people of a specific sexual orientation committed by offenders of unknown race -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Bisexual,hate crimes against bisexuals committed by unknown offenders;crimes motivated by hate against bisexuals and committed by unknown offenders;hate crimes against bisexuals by unknown perpetrators;crimes motivated by hate against bisexuals and committed by unknown perpetrators -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Gay,hate crimes against gays committed by offenders whose race is unknown -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Heterosexual,"hate crimes against heterosexuals by offenders of unknown race, motivated by sexual orientation" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_LGBT,hate crimes against lgbt people committed by someone of unknown race;sexual violence against lgbt people by someone of unknown race;attacks on lgbt people by someone of unknown race;hateful acts against lgbt people by someone of unknown race -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceUnknownRace_Lesbian,"hate crimes against lesbians by offenders of unknown races;lesbians are targeted by hate crimes from offenders of unknown races;hate crimes against lesbians are committed by offenders of unknown races;crimes motivated by hatred of lesbians, committed by offenders of unknown races" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone,sexually motivated hate crimes committed by white people -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Bisexual,hate crimes against bisexual people committed by white offenders;bisexual people who are victims of hate crimes committed by white people;hate crimes against bisexual people by white offenders;bisexual people who are victims of hate crimes by white offenders -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Heterosexual,"crimes motivated by hatred of someone's sexual orientation, committed by white offenders against heterosexual victims;hate crimes against heterosexuals motivated by their sexual orientation, committed by white offenders;crimes committed by white offenders against heterosexual victims because of their sexual orientation;crimes against heterosexuals motivated by hatred of their sexual orientation, committed by white offenders" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_LGBT,"crimes motivated by hatred of lgbt people, committed by white offenders;white offenders commit hate crimes against lgbt people;lgbt people are victims of hate crimes committed by white offenders;lgbt people are targeted by hate crimes committed by white offenders" -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_OffenderRaceWhiteAlone_Lesbian,hate crimes against lesbians committed by white people;crimes motivated by hatred of lesbians and committed by white people;hate crimes against lesbians committed by caucasians;crimes motivated by hatred of lesbians and committed by caucasians -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime,robbery motivated by hatred of a person's sexual orientation;robbery that targets people because of their sexual orientation;robbery against someone because of their sexual orientation;robbery of someone because of their perceived sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime_Gay,robbery of gay people because of their sexual orientation;robbery of gay people as a hate crime;robbery of gay people as a result of homophobia;robbery against homosexuals -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime,simple assault motivated by hatred of a person's sexual orientation;assault and battery against a person because of their sexual orientation -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Bisexual,bisexual victims of simple assault;simple assault against bisexuals;bisexuals assaulted;assaults on bisexuals -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Gay, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_LGBT, -Offense_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Lesbian,hate crimes against lesbian victims involving simple assault and property damage;simple assault and property damage hate crimes against lesbian victims;lesbian victims of hate crimes involving simple assault and property damage;lesbian victims of simple assault and property damage hate crimes -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_AggravatedAssault_IsHateCrime,assaults against singles motivated by hate;hate-motivated assaults against singles;violence against singles;hateful acts against singles -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_AllOtherLarceny_IsHateCrime,larceny that is motivated by hatred of a particular ethnicity;larceny that is motivated by ethnic prejudice;ethnically motivated larceny;larceny motivated by hatred of a particular ethnic group -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Arson_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Burglary_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_CounterfeitingOrForgery_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,atm fraud committed with a bias motive;5 atm fraud that is based on prejudice;atm fraud based on prejudice;atm fraud motivated by bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstPerson_IsHateCrime,crime against a person;crime against a person motivated by hate;crime against a person motivated by bigotry -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstProperty_IsHateCrime,bias-motivated property crimes;property crimes motivated by bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstSociety_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_DrugEquipmentViolations_IsHateCrime,single bias hate crimes of drug equipment violations -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_DrugOrNarcoticViolations_IsHateCrime,single-bias hate crimes involving drug or narcotic violations;single-bias hate crimes involving drugs or narcotics;hate crimes motivated by bias against people who use drugs or narcotics -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Fondling_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Impersonation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_KnownOffender,1 hate crimes committed by offenders with known attributes -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityHispanicOrLatino,crimes against hispanics motivated by bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityNotHispanicOrLatino, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,hate crimes motivated by bias against american indian or alaska native people -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceAsianAlone,hate crimes motivated by anti-asian bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceTwoOrMoreRaces,"here are five different ways of saying ""single hate crimes by unknown races"" in a colloquial way:" -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime_OffenderRaceWhiteAlone, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_MotorVehicleTheft_IsHateCrime,vehicle theft hate crimes against single bias;vehicle theft hate crimes based on a single bias;vehicle theft hate crimes motivated by a single bias;vehicle theft hate crimes targeting a single bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_MurderAndNonNegligentManslaughter_IsHateCrime,killings and manslaughters caused by bias against a single group;murder and manslaughter motivated by bias against a single group;homicide and manslaughter motivated by bigotry against a single group -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_NotSpecified_IsHateCrime,hate crimes without a specific bias;hate crimes with an unknown bias;hate crimes that are not classified by bias;hate crimes that are not categorized by bias -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Rape_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Robbery_IsHateCrime,hate crimes involving pocket picking;pocket picking motivated by hate;hate-based pocket picking;pocket picking as a hate crime -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_Shoplifting_IsHateCrime,shoplifting motivated by prejudice -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_SimpleAssault_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromBuilding_IsHateCrime,1 hate crimes involving theft from buildings;4 theft from buildings as a hate crime -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromMotorVehicle_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationSingleBias_WeaponLawViolations_IsHateCrime,single hate crimes involving weapons -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstPerson_IsHateCrime,crimes against people who do not conform to traditional gender roles;attacks on people who do not fit into traditional gender categories;harassment and discrimination against people who do not conform to traditional gender norms;violence against people who do not identify as either male or female -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstProperty_IsHateCrime,hate crimes against gender non-conforming people that involve property damage;property crimes motivated by hatred of gender non-conforming people;crimes against gender non-conforming people that involve damage to their property;property damage committed against gender non-conforming people because of their gender identity or expression -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_Intimidation_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime, -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_KnownOffender,hate crimes against transgender people committed by offenders with known characteristics -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderRaceUnknownRace,"hate crimes against transgender people by offenders of unknown race;hate crimes against transgender people, committed by offenders whose race is unknown;crimes motivated by hatred of transgender people, committed by offenders whose race is not known;violent acts against transgender people, committed by offenders of unknown race" -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime_OffenderRaceWhiteAlone,hate crimes against transgender or queer people committed by white offenders;white people who commit hate crimes against transgender or queer people;transgender or queer people who are the victims of hate crimes committed by white people;hate crimes against transgender or queer people that are committed by white people -Offense_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_SimpleAssault_IsHateCrime,violent attacks against transgender people;assaults on transgender people motivated by hatred of their gender identity;assaults on transgender people;violence against transgender people -Offense_Count_CriminalIncidents_Burglary_IsHateCrime, -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_KnownOffender,hate crimes committed by burglars with known attributes;offenders who commit hate crimes and are known burglars;burglary crimes motivated by hate against known attributes;known offenders who commit hate crimes while burglarizing -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_OffenderEthnicityUnknownEthnicity,burglary hate crimes committed by offenders of unknown ethnicity;hate crimes involving burglary and offenders of unknown ethnicity;burglaries motivated by hate and committed by offenders of unknown ethnicity;burglaries committed by offenders of unknown ethnicity that were motivated by hate -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,african american offenders committing hate crimes of burglary;burglary hate crimes committed by african americans;african americans committing burglary as a hate crime;burglary as a hate crime committed by african americans -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_OffenderRaceUnknownRace,burglary hate crimes committed by offenders of unknown race;hate crimes involving burglary and offenders of unknown race;burglary crimes motivated by hate and committed by offenders of unknown race;burglary crimes committed by offenders of unknown race that were motivated by hate -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_OffenderRaceWhiteAlone,burglary hate crimes committed by white people;white people who commit burglary hate crimes;white offenders who commit burglaries motivated by hate;white offenders who commit burglaries motivated by prejudice -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_VictimTypeBusiness,1 hate crimes committed during burglaries of businesses;2 business burglaries motivated by hate;3 hate-motivated burglaries of businesses;4 businesses targeted in hate crimes during burglaries -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_VictimTypeMultipleVictimType,hate crimes involving burglary against multiple victims;burglary motivated by hate against multiple victims;burglary against multiple victims with a hate motive;multiple victims burglarized in a hate crime -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_VictimTypeOtherVictimType,burglary motivated by hate against other types of victims;crimes of burglary motivated by hate against other victim types;hate crimes committed by burglars against other victim types;burglaries motivated by hate against other victim types -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_VictimTypePerson,hate crimes involving burglary against people;burglary against people as a hate crime;hate crimes that involve burglary against people;burglary against people that is a hate crime -Offense_Count_CriminalIncidents_Burglary_IsHateCrime_VictimTypeReligiousOrganization,religious organizations are being targeted by burglars and hate crimes;there has been a recent increase in burglaries and hate crimes at religious organizations;burglaries at religious organizations motivated by hate;hate-motivated burglaries at religious organizations -Offense_Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime,crimes of forgery motivated by hate;hate-motivated forgery;crimes of hate committed through forgery -Offense_Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime_KnownOffender,hate crimes involving counterfeiting or forgery committed by known offenders;counterfeiting or forgery hate crimes committed by known offenders;known offenders who have committed hate crimes involving counterfeiting or forgery;offenders who have committed hate crimes involving counterfeiting or forgery and are known to the authorities -Offense_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,atm fraud;atm scams;atm theft;atm fraud and crimes motivated by prejudice -Offense_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime_KnownOffender,"credit card fraud committed by people who are known to the victims;credit card fraud committed by known offenders;credit card fraud committed by people who are known to the victim;credit card fraud that is committed against people who are targeted because of their race, religion, sexual orientation, or other protected characteristic" -Offense_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime_OffenderEthnicityUnknownEthnicity,atm fraud targeting specific ethnic groups;atm fraud that may be motivated by hatred of a particular ethnic group;atm fraud that may be racially motivated;atm fraud that may be ethnically motivated -Offense_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime_VictimTypePerson,hate-motivated fraud involving credit cards or atms;person commits credit card or atm fraud as a hate crime;person commits hate crime involving credit card or atm fraud;person commits credit card or atm fraud motivated by hate -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime, -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_KnownOffender,hate crimes committed against people by offenders with known attributes -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderEthnicityHispanicOrLatino,hispanic hate crimes;hate crimes against hispanics;crimes against hispanics motivated by hate;hate-motivated crimes against hispanics -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,hate crime incidents against people by non-hispanic offenders;incidents of hate crimes against people by non-hispanic offenders;crimes against people committed by non-hispanic offenders motivated by hate;incidents of crimes against people committed by non-hispanic offenders motivated by hate -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,hate crimes against people committed by american indian or alaska native offenders;people who are victims of hate crimes committed by american indian or alaska native offenders;hate crimes committed against people by american indian or alaska native offenders;hate crimes against people committed by native americans -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceAsianAlone,crimes against people committed by asian offenders motivated by hate;crimes against people motivated by hate committed by asian offenders;hate crimes against people motivated by hate committed by asian offenders -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,crimes against people committed by african american offenders motivated by hate;crimes against persons committed by african american offenders -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceTwoOrMoreRaces,"hate crimes committed by people who identify as multiracial;crimes motivated by hatred of people who identify as multiracial;crimes against people motivated by hate, committed by people who identify as multiracial" -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceUnknownRace,hate crimes committed against people by offenders of unknown race;crimes motivated by hate against people by offenders of unknown race;hate-motivated crimes against people by offenders of unknown race;crimes against people motivated by hate by offenders of unknown race -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_OffenderRaceWhiteAlone, -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_VictimTypeMultipleVictimType,hate crimes against multiple people;crimes against multiple victims motivated by hate;hate crimes that target multiple people;crimes against multiple people that are motivated by hate -Offense_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime, -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_KnownOffender,hate crimes against property committed by offenders with known attributes -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,hate crimes against property committed by non-hispanics;property crimes motivated by hate against non-hispanics;crimes against property committed by non-hispanics because of hate;hate-motivated property crimes committed by non-hispanics -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderEthnicityUnknownEthnicity,crimes against property committed by offenders of unknown ethnicity;property crimes committed by offenders of unknown ethnicity;hate crimes against property committed by offenders of unknown ethnicity;property hate crimes committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderRaceAsianAlone,"number of hate crime incidents against property, where the offender was asian and their race was known;the number of hate crimes against property that were committed by asian offenders and where the offender's race is known" -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,african american offenders in hate crimes against people whose race is known -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderRaceTwoOrMoreRaces,hate crimes committed by multiracial offenders against property;multiracial offenders who commit hate crimes against property;property crimes committed by multiracial offenders motivated by hate;hate-motivated property crimes committed by multiracial offenders -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderRaceUnknownRace,hate crimes against property committed by offenders of unknown race;hate crimes against property where the race of the offender is unknown;hate crimes against property where the race of the offender is not reported;hate crimes against property where the race of the offender is not known or reported -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_OffenderRaceWhiteAlone,crimes against property committed by white offenders;hate crimes committed by white offenders against property;property crimes committed by white offenders motivated by hate;hate-motivated property crimes committed by white offenders -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeBusiness,hate crimes against businesses and property -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeFinancialInstitution,hate crimes against financial institutions;crimes against property in financial institutions motivated by hate;hate-motivated crimes against financial institutions;financial institutions targeted by hate crimes -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeGovernment,government-sponsored hate crimes against property;hate crimes against government property;government property damaged by hate crimes;hate-motivated property damage against the government -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeMultipleVictimType, -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeOtherVictimType,crimes against property targeting other victims;crimes against property that target other victims -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypePerson,crimes against people's property motivated by hate;hate crimes against people's property;property crimes motivated by hate against people;hate-motivated property crimes against people -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeReligiousOrganization, -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeSociety,crimes against property that are based on bigotry -Offense_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime_VictimTypeUnknownVictimType,hate crimes against property targeting unknown victims;crimes against property targeting unknown victims;crimes against property targeting unknown victims motivated by hate;crimes against property targeting unknown victims motivated by prejudice -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime, -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_KnownOffender,hate crimes committed by society against known offender attributes;crimes of hate committed by society against known offender attributes;known offender attributes against which society commits hate crimes;known offender attributes that society commits hate crimes against -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_OffenderEthnicityUnknownEthnicity,crimes against society committed by offenders of unknown ethnicity;crimes against society by offenders of unknown ethnicity that are motivated by hate;hate crimes against society by offenders of unknown ethnicity;crimes against society by offenders of unknown ethnicity that are motivated by prejudice -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,crimes committed by african americans that are motivated by hate;hate crimes against society committed by african americans;crimes committed against society by african americans;african americans who commit hate crimes -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_OffenderRaceUnknownRace,hate crimes committed by offenders of unknown race against society;hate crimes against society committed by offenders of unknown race;hate crimes committed against society by offenders of unknown race;hate crimes against society by offenders whose race is unknown -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_OffenderRaceWhiteAlone,white offenders and hate crimes in society -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_VictimTypeMultipleVictimType,hate crimes against society involving multiple victims;crimes against society that target multiple victims;crimes against society that are motivated by hate and involve multiple victims;crimes against society that involve multiple victims -Offense_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime_VictimTypeSociety, -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,hate-motivated property damage;property damage motivated by hatred;destruction of property due to hatred;damage to property based on hatred -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_KnownOffender,vandalism committed by hate crime offenders with known characteristics -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,vandalism of property motivated by hatred of a particular ethnic group committed by non-hispanic offenders;hate-motivated vandalism of property committed by non-hispanic offenders;non-hispanic offenders who vandalize property in hate crimes against ethnic groups;vandalism of property by non-hispanic offenders in hate crimes against ethnic groups -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderRaceAsianAlone,hate crimes committed by asian offenders against property;asian offenders who commit hate crimes against property;property destruction committed by asian offenders as a hate crime;asian offenders who commit property destruction as a hate crime -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,african americans vandalizing property in hate crimes;african americans committing hate crimes by vandalizing property;property vandalism by african americans motivated by hate;african americans committing acts of vandalism against property due to prejudice -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderRaceTwoOrMoreRaces,multiracial people vandalizing property out of hatred;vandalism of property by multiracial people motivated by hate;multiracial people who vandalize property out of hate;hate-motivated vandalism of property by multiracial people -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderRaceUnknownRace,destruction of property motivated by hate by offenders of unknown race;property destroyed by offenders of unknown race in hate crimes;hate crimes involving property destruction by offenders of unknown race;damage to property by offenders of unknown race motivated by hate -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OffenderRaceWhiteAlone,white people vandalizing property in hate crimes;white people who vandalize property as a hate crime;white offenders who vandalize property in hate crimes;vandalism of property by white offenders in hate crimes -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeBusiness,hate crime incidents involving property damage to businesses;hate crime incidents targeting businesses with property damage;hate crime incidents involving property destruction targeting businesses;hate crime incidents that destroy businesses -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeGovernment,vandalism of government property motivated by hate;hate-motivated vandalism of government property;government property vandalized due to hate;hateful vandalism of government property -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeMultipleVictimType,multiple people's property vandalized due to hate;vandalism of property against multiple victims motivated by hate;multiple-victim hate crime vandalism;hate-motivated vandalism of property against multiple victims -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeOtherVictimType,"hate crimes involving property damage against other victims;hate crimes that involve destroying property belonging to other victims;hate crimes that involve the destruction of property owned by other victims;crimes motivated by hatred or prejudice against a particular group of people, resulting in the destruction of property" -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypePerson,person destroys property due to hate;person commits property damage motivated by hate;person destroys property because of hate;person commits property damage due to hate -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeReligiousOrganization,vandalizing religious property;vandalism of religious buildings -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeSociety,vandalism motivated by bigotry -Offense_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_VictimTypeUnknownVictimType,destruction of property motivated by hate against unknown victims;property damage motivated by hate against unknown victims;hate-motivated property damage against unknown victims;hate crimes against unknown victims involving property damage -Offense_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime, -Offense_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime_KnownOffender, -Offense_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white people against people of color involving drug equipment;hate crimes committed by white people involving drug equipment violations;hate crimes involving drug equipment violations committed by white people;drug equipment violations committed by white people in hate crimes -Offense_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime_VictimTypeSociety,hate crimes against society involving drug equipment violations;drug equipment violations that are hate crimes against society;society is the victim of hate crimes involving drug equipment violations;drug equipment violations are a form of hate crime against society -Offense_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime,hate crimes against people who use drugs or are addicted to drugs;hate crimes involving drug or narcotic violations -Offense_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime_KnownOffender,"number of hate crimes against people who use or sell drugs, with the perpetrator's identity known;number of hate crimes motivated by prejudice against people who use or sell drugs, with the perpetrator's identity known" -Offense_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime_OffenderEthnicityUnknownEthnicity,"hate crimes involving narcotics violations by offenders of unknown ethnicity;hate crimes against people who use or sell narcotics, committed by offenders of unknown ethnicity;hate crimes against people who are suspected of using or selling narcotics, committed by offenders of unknown ethnicity;hate crimes against people who are associated with people who use or sell narcotics, committed by offenders of unknown ethnicity" -Offense_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white and known race offenders involving drug or narcotic violations;hate crimes involving drug or narcotic violations committed by white and known race offenders;drug or narcotic violations committed by white and known race offenders in hate crimes;white and known race offenders who committed hate crimes involving drug or narcotic violations -Offense_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime_VictimTypeSociety,crimes against society involving narcotics;narcotics-related crimes against society;narcotics-related crimes against the public -Offense_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime,crimes motivated by hate that are disguised as something else;hate crimes that are made to look like something else;crimes motivated by hate and committed under false pretenses;false pretense hate crimes -Offense_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime_KnownOffender,hate crimes committed by known offenders under false pretenses;hate crimes committed by known offenders using false pretenses;hate crimes committed by known offenders under the guise of false pretenses;hate crimes committed by known offenders under the pretense of false pretenses -Offense_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime_OffenderEthnicityUnknownEthnicity,"the number of hate crime incidents involving false pretense, swindle, or confidence game and an offender of unknown ethnicity;the number of hate crimes where the offender used false pretense, swindle, or confidence game and the ethnicity of the offender is unknown;the number of hate crimes where the offender used false pretense, swindle, or confidence game and the ethnicity of the offender is not known;the number of hate crimes where the offender used false pretense, swindle, or confidence game and the ethnicity of the offender is unidentified" -Offense_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime_OffenderRaceUnknownRace,"crimes motivated by hate against people of unknown race that involve false pretense, swindle, or confidence games;hate crimes against people of unknown race that involve deception for financial gain;hate crimes against people of unknown race that involve con games;hate crimes committed by people of unknown race that involve false pretenses, swindle, or confidence games" -Offense_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_Fondling_IsHateCrime,number of hate crimes where the offense was fondling -Offense_Count_CriminalIncidents_Fondling_IsHateCrime_KnownOffender, -Offense_Count_CriminalIncidents_Fondling_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_ForcibleRape_IsHateCrime,the number of hate crime incidents involving forcible rape;the number of hate crimes that involved forcible rape;the number of times forcible rape was the offense in a hate crime;the number of hate crimes that were forcible rapes -Offense_Count_CriminalIncidents_HumanTraffickingCommercialSexActs_IsHateCrime,human trafficking and commercial sex acts as hate crimes;hate crimes involving human trafficking and commercial sex acts;human trafficking and commercial sex acts as a form of hate crime;hate crimes that involve human trafficking and commercial sex acts -Offense_Count_CriminalIncidents_Impersonation_IsHateCrime, -Offense_Count_CriminalIncidents_Impersonation_IsHateCrime_KnownOffender,hate crimes committed by people who assume someone else's identity;hate crimes committed by people who pretend to be someone they're not -Offense_Count_CriminalIncidents_Impersonation_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes committed by people of unknown ethnicity who impersonate others;hate crimes committed by people who mask their identities -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime,incidents of intimidation;attacks motivated by bigotry -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_KnownOffender,crimes committed by people with known attributes that are intended to intimidate -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderEthnicityNotHispanicOrLatino, -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderEthnicityUnknownEthnicity,crimes of intimidation against unknown ethnicity offenders;intimidation against unknown ethnicity offenders motivated by hate;crimes of intimidation against people of unknown ethnicity;crimes against people of unknown ethnicity that are meant to intimidate or scare them -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,2 crimes committed by american indian or alaska native offenders that are intended to intimidate or harass a particular group of people;american indian or alaska native offenders who commit hate crimes of intimidation -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceAsianAlone,crimes of intimidation committed by asian offenders;intimidation crimes committed by asians -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,crimes that intimidate african americans;crimes that are intended to intimidate or threaten african americans -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceTwoOrMoreRaces,crimes committed by people of multiple races that are intended to intimidate others -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceUnknownRace, -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_OffenderRaceWhiteAlone,hate crimes that intimidate whites -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_VictimTypeMultipleVictimType,crimes of intimidation against multiple victims;multiple victim intimidation crimes -Offense_Count_CriminalIncidents_Intimidation_IsHateCrime_VictimTypePerson,crimes of hate and intimidation against people;crimes of intolerance -Offense_Count_CriminalIncidents_IsHateCrime, -Offense_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityHispanicOrLatino,incidents of violence or discrimination against hispanics;incidents of hate crimes committed by hispanics;attacks on hispanics -Offense_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,hate crimes committed by non-hispanic offenders;crimes that are committed against non-hispanics because of the offender's hatred of non-hispanics -Offense_Count_CriminalIncidents_IsHateCrime_OffenderEthnicityUnknownEthnicity,attacks on people of a certain ethnicity carried out by someone who is not known to the victim -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,crimes motivated by hatred or prejudice against american indians or alaska natives;hate crimes targeting american indians or alaska natives;criminal acts against american indians or alaska natives that are motivated by hate;crimes motivated by hatred of american indians or alaska natives -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceAsianAlone,crimes committed by asian offenders -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone, -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceUnknownRace,violence against people of unknown race based on their race;attacks on people of unknown race because of their race -Offense_Count_CriminalIncidents_IsHateCrime_OffenderRaceWhiteAlone, -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeBusiness,crimes motivated by hatred of a business;business-related hate crimes;hate crimes against businesses and their employees;hate crimes that target businesses -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeFinancialInstitution, -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeGovernment,incidents of government-sponsored hate crimes -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeOtherVictimType, -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeReligiousOrganization,crimes against religious organizations;hate crimes targeting religious organizations -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeSociety, -Offense_Count_CriminalIncidents_IsHateCrime_VictimTypeUnknownVictimType,hate crimes against people whose identity is unknown;hate crimes against people who are not identified;hate crimes against people whose identity is not known to the public;hate crimes against people whose identity is not known to the police -Offense_Count_CriminalIncidents_LarcenyTheft_IsHateCrime,larceny theft in hate crimes;the number of hate crime incidents involving larceny theft;the number of hate crimes that involved larceny theft;the number of times larceny theft was the offense in a hate crime -Offense_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime, -Offense_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime_KnownOffender,known offenders who commit hate crimes involving motor vehicle theft;motor vehicle theft committed by known offenders as a hate crime;known offenders who commit motor vehicle theft as a hate crime;motor vehicle theft as a hate crime committed by known offenders -Offense_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime_OffenderEthnicityUnknownEthnicity,- hate crimes involving multiple vehicle thefts committed by offenders of unknown ethnicity;- vehicle thefts committed by hate crime offenders of unknown ethnicity;- hate crime offenders of unknown ethnicity who commit vehicle thefts;hate crimes involving multiple vehicle thefts and unknown ethnicity offenders -Offense_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime_OffenderRaceUnknownRace,hate crimes involving motor vehicle theft committed by an offender of unknown race;2 motor vehicle theft hate crimes committed by an offender of unknown race;3 motor vehicle theft hate crimes committed by an offender whose race is unknown;hate crimes involving motor vehicle theft committed by an offender whose race is unknown -Offense_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime_VictimTypePerson,car theft and hate crimes against people;car theft and violence against people because of their identity -Offense_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime,hate crimes that resulted in murder or manslaughter;homicides that were hate crimes;murders or manslaughters that were motivated by hate;hate crimes that resulted in homicide -Offense_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime_KnownOffender,murder and non-negligent manslaughter hate crimes committed by offenders with known attributes;murder and non-negligent manslaughter hate crimes committed by offenders with known characteristics;murder and non-negligent manslaughter hate crimes committed by offenders with known identities;murder and non-negligent manslaughter hate crimes committed by offenders with known backgrounds -Offense_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime_OffenderEthnicityUnknownEthnicity,murder or manslaughter motivated by hatred of someone of unknown ethnicity;murder or manslaughter of someone of unknown ethnicity because of hate;hate crimes involving murder and non-negligent manslaughter committed by offenders of unknown ethnicity;murder and non-negligent manslaughter hate crimes committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white offenders that resulted in murder or non-negligent manslaughter;murders and non-negligent manslaughters committed by white offenders that were motivated by hate;hate-motivated murders and non-negligent manslaughters committed by white offenders;murders and non-negligent manslaughters committed by white offenders that were racially motivated -Offense_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime_VictimTypePerson,homicides against the population;homicide and hate crimes against the population;1 homicide and manslaughter motivated by prejudice against a particular group of people;homicide and manslaughter against a population based on prejudice -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime, -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime_KnownOffender,hate crimes committed by offenders with known attributes -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime_OffenderEthnicityUnknownEthnicity,crimes motivated by hate against people of unknown ethnicity;crimes against people of unknown ethnicity that are motivated by hate;hate crimes against people of unknown ethnicity;crimes against people of unknown ethnicity that are motivated by prejudice -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime_OffenderRaceUnknownRace,hate crimes committed by offenders of unknown race;hate crimes where the race of the offender is unknown;hate crimes where the race of the offender is undetermined;hate crimes with unknown race offenders -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime_OffenderRaceWhiteAlone,"unspecified hate crimes committed by white people;hate crimes committed by white people, unspecified;hate crimes committed by white people, not otherwise specified" -Offense_Count_CriminalIncidents_NotSpecified_IsHateCrime_VictimTypePerson, -Offense_Count_CriminalIncidents_OtherCrimesAgainstPerson_IsHateCrime,incidents of other crimes against persons -Offense_Count_CriminalIncidents_OtherCrimesAgainstProperty_IsHateCrime,hate crimes vs other property crimes -Offense_Count_CriminalIncidents_Rape_IsHateCrime, -Offense_Count_CriminalIncidents_Rape_IsHateCrime_KnownOffender,rapes committed by offenders with known sexual orientation hate crime motives;rapes committed by offenders with known sexual orientation biases;rapes committed by offenders with known sexual orientation prejudices;rapes committed by offenders with known sexual orientation aversions -Offense_Count_CriminalIncidents_Rape_IsHateCrime_OffenderEthnicityUnknownEthnicity,"rape based on race, ethnicity, or national origin;ethnically motivated rape;rape as a tool of ethnic violence;sexual violence against ethnic minorities" -Offense_Count_CriminalIncidents_Rape_IsHateCrime_VictimTypePerson,rape and sexual violence against people -Offense_Count_CriminalIncidents_Robbery_IsHateCrime, -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_KnownOffender,hate crimes involving robbery by known attributes;robbery committed against a person based on their known attributes -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes committed by robbers against offenders of unknown ethnicity;robbery hate crimes against offenders of unknown ethnicity;robbery crimes against offenders of unknown ethnicity motivated by hate;hate crimes against offenders of unknown ethnicity committed during a robbery -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,robberies against african americans that are motivated by hate;robberies of african americans that are based on prejudice;hate-motivated robberies of african americans;robberies of african americans that are racially motivated -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_OffenderRaceUnknownRace,robbery hate crimes by offenders of unknown race;robbery hate crimes with offenders of unknown race;robbery hate crimes by offenders whose race is unknown;robberies committed by offenders of unknown race that were motivated by hate -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_OffenderRaceWhiteAlone,white offenders in robbery hate crimes;robbery incidents committed by white offenders;white offenders who commit robbery hate crimes;robberies committed by white offenders as hate crimes -Offense_Count_CriminalIncidents_Robbery_IsHateCrime_VictimTypePerson,"robbery motivated by hate;robbery against people because of their race, religion, sexual orientation, or other personal characteristics;hate crimes against people that involve robbery;robbery against people because of their race, religion, sexual orientation, or other personal characteristic" -Offense_Count_CriminalIncidents_Shoplifting_IsHateCrime,hate crime involving shoplifting;shoplifting that was a hate crime;incident of shoplifting that was motivated by hate;incident of shoplifting motivated by hate -Offense_Count_CriminalIncidents_Shoplifting_IsHateCrime_KnownOffender,hate-motivated shoplifting;shoplifting as a hate crime;hate crimes involving shoplifting;shoplifting as a form of hate crime -Offense_Count_CriminalIncidents_Shoplifting_IsHateCrime_OffenderEthnicityUnknownEthnicity,a person of unknown ethnicity is suspected of committing a hate crime involving shoplifting;a crime of hate involving shoplifting was committed by someone of unknown ethnicity;shoplifting was committed as a hate crime by someone of unknown ethnicity;an unknown ethnicity individual is suspected of committing a hate crime involving shoplifting -Offense_Count_CriminalIncidents_Shoplifting_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white people who shoplift;shoplifting crimes committed by white people motivated by hate;hate-motivated shoplifting by white people;white people who shoplift as a form of hate -Offense_Count_CriminalIncidents_Shoplifting_IsHateCrime_VictimTypeBusiness,shoplifting as a hate crime against businesses;businesses targeted by shoplifting as hate crimes;hate crimes against businesses that involve shoplifting;shoplifting as a way to express hate against businesses -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime,a hate crime involving simple assault;simple assault;hate crime of simple assault -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_KnownOffender,simple assaults by offenders with known attributes;hate crimes involving simple assault committed by offenders with known attributes;simple assault hate crimes committed by offenders with known attributes -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderEthnicityNotHispanicOrLatino,non-hispanic victims of hate-motivated assaults;hate crimes of simple assault against non-hispanics;hate-motivated assaults against non-hispanic victims;simple assaults against non-hispanic victims motivated by prejudice -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderEthnicityUnknownEthnicity, -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceAmericanIndianOrAlaskaNativeAlone,american indian or alaska native offenders committed simple assault hate crimes;american indian or alaska native offenders were responsible for simple assault hate crimes;simple assault hate crimes were committed by american indian or alaska native offenders;simple assault hate crimes were the responsibility of american indian or alaska native offenders -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceAsianAlone,simple assault committed by asian offenders;assaults committed by asian offenders -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceBlackOrAfricanAmericanAlone,african american offenders who commit simple assault hate crimes;african american offenders who commit hate crimes involving simple assault;african american offenders who commit simple assault as a hate crime;african american offenders who commit simple assault with a hate crime motive -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceTwoOrMoreRaces, -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceUnknownRace,assault by unknown people;assault against unknown people;assault by unknown assailants;attack by unknown assailants -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_OffenderRaceWhiteAlone,simple assaults by white people motivated by hate;white people who committed simple assaults motivated by hate;simple assaults committed by white people motivated by hate;assaults motivated by hate committed by white people -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_VictimTypeMultipleVictimType,hate crimes involving simple assault against multiple victims;hate crimes of simple assault against multiple victims;hate crimes of simple assault against more than one victim;hate crimes of simple assault against two or more victims -Offense_Count_CriminalIncidents_SimpleAssault_IsHateCrime_VictimTypePerson,assaults motivated by hate;aggressive acts against people because of their identity;violent acts against people because of their identity -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime,hate crimes involving theft from a building;theft from a building motivated by hate;hate-motivated theft from a building;theft from a building as a hate crime -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_KnownOffender,"theft from buildings by offenders with known attributes, which are hate crimes;hate crimes committed by thieves with known attributes, involving theft from buildings;theft from buildings committed by thieves with known attributes, which are considered hate crimes;hate crimes involving theft from a building committed by offenders with known attributes" -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes involving theft from buildings committed by offenders of unknown ethnicity;theft from buildings committed by offenders of unknown ethnicity in the context of hate crimes;theft from buildings committed by offenders of unknown ethnicity motivated by hate;theft from buildings committed by offenders of unknown ethnicity as a hate crime -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_OffenderRaceUnknownRace,hate crimes involving theft from a building against offenders of unknown race;hate crimes against offenders of unknown race involving theft from a building;theft from a building by offenders of unknown race in a hate crime;theft from a building in a hate crime against offenders of unknown race -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_OffenderRaceWhiteAlone,white people who commit hate crimes involving theft from buildings;white people who commit crimes motivated by hate and involve theft from buildings;white people who commit theft from buildings as a hate crime;white people who commit hate crimes that involve theft from buildings -Offense_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime_VictimTypePerson,building theft motivated by hate against people -Offense_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime,theft from motor vehicles motivated by hate -Offense_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime_KnownOffender,"hate crimes involving theft from motor vehicles where the offender's attributes are known;theft from motor vehicles that are hate crimes and where the offender's attributes are known;known offender attributes in theft from motor vehicle hate crimes;hate crimes committed against people who were victims of theft from motor vehicles, where the offender's attributes are known" -Offense_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime_OffenderEthnicityUnknownEthnicity,crimes motivated by hate against people of unknown ethnicity that involve theft from motor vehicles;theft from motor vehicles by offenders of unknown ethnicity that are motivated by hate;theft from motor vehicles by offenders of unknown ethnicity that are considered hate crimes;hate crimes involving theft from motor vehicles by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime_OffenderRaceUnknownRace,crimes motivated by hate against people of unknown race that involve stealing from a motor vehicle;theft from a motor vehicle by offenders of unknown race that is motivated by hate;hate-motivated theft from a motor vehicle by offenders of unknown race;theft from a motor vehicle by offenders of unknown race that is considered a hate crime -Offense_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime_VictimTypePerson,stealing from a person's car -Offense_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime,1 theft of motor vehicle parts;car part theft;auto part theft;vehicle part theft -Offense_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime_KnownOffender,crimes motivated by hate that involve the theft of motor vehicle parts by offenders with known attributes;theft of motor vehicle parts by offenders with known attributes that is motivated by hate;hate-motivated theft of motor vehicle parts by offenders with known attributes;hate crimes involving the theft of motor vehicle parts by offenders with known attributes -Offense_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime_OffenderEthnicityUnknownEthnicity,unknown people stole car parts;car parts were stolen by people of unknown ethnicity;someone stole car parts and their ethnicity is unknown;car parts were taken without permission by people whose ethnicity is unknown -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime,criminal use of weapons;violations of weapon laws;weapon law violations hate crimes;illegal use of weapons -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_KnownOffender,hate crimes involving weapons by known offenders;weapon law violations committed by known offenders in hate crimes;known offenders who have committed hate crimes involving weapons;known offenders who have violated weapon laws in hate crimes -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_OffenderEthnicityUnknownEthnicity,hate crimes committed with weapons by offenders of unknown ethnicity;crimes motivated by hate that involve the use of weapons and are committed by offenders of unknown ethnicity;weapon-related hate crimes committed by offenders of unknown ethnicity;hate crimes involving weapons and committed by offenders of unknown ethnicity -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_OffenderRaceWhiteAlone,hate crimes committed by white people with weapons;white people who commit hate crimes with weapons;white people who use weapons in hate crimes;white people who commit crimes with weapons motivated by hate -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_VictimTypeMultipleVictimType,hate crimes involving weapons and multiple victims;multiple-victim hate crimes with weapons;hate crimes with weapons against multiple victims;weapons-related hate crimes against multiple victims -Offense_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime_VictimTypeSociety,how do hate crimes involving weapons affect society?;what are the effects of hate crimes involving weapons on society?;how do hate crimes involving weapons impact society?;what is the impact of hate crimes involving weapons on society? -PalmerDroughtSeverityIndex_Atmosphere,palmer drought severity index (pdsi);drought severity index for the atmosphere;atmospheric drought severity index;drought index for the atmosphere -Percent_BurnedArea_FireEvent,percentage of area burned;what percentage of the area burned;how much of the area burned;what part of the area burned -Percent_BurnedArea_FireEvent_Forest,percentage of forest area that burned;percent of forested land that burned;percentage of the forest that burned;percent of the forested area that was burned -Percent_BurnedArea_FireEvent_Forest_HighSeverity,the percentage of forest area that experienced high-severity fire;the proportion of forest area that experienced high-severity fire;the amount of forest area that experienced high-severity fire;the extent of forest area that experienced high-severity fire -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_EnglishLanguageArts,"number of american indian or alaska native 11th grade students who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 11th grade students;the number of american indian or alaska native students in 11th grade who exceeded the ca_standard in english language arts, divided by the total number of american indian or alaska native students in 11th grade;the number of american indian or alaska native 11th graders who exceeded the ca standard in english language arts, divided by the total number of american indian or alaska native 11th graders" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_Mathematics,number of american indian or alaska native 11th grade students who exceeded the ca mathematics standard divided by the total number of american indian or alaska native 11th grade students;number of american indian or alaska native 11th grade students who exceeded the ca math standard divided by the total number of american indian or alaska native 11th grade students -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts,"the number of american indian or alaska native students who exceeded the ca_standard in english language arts in grade 13, divided by the total number of american indian or alaska native students in grade 13;the number of american indian or alaska native students in grade 13 who exceeded the ca standard in english language arts as a fraction of the total number of american indian or alaska native students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"number of american indian or alaska native students in school grade 13 who exceeded the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 13;the number of american indian or alaska native students in school grade 13 who exceeded the ca_standard in english language arts and were economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of american indian or alaska native students in grade 13 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of american indian or alaska native students in grade 13;the number of american indian or alaska native students in school grade 13 who exceeded the ca_standard in english language arts divided by the total number of american indian or alaska native students in school grade 13 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics,number of american indian or alaska native 13th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 13th grade students -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of american indian or alaska native students in school grade 13 who exceeded the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 13;number of american indian or alaska native students in grade 13 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of american indian or alaska native students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_EnglishLanguageArts,number of american indian or alaska native students in grade 3 who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 3;number of american indian or alaska native students in grade 3 who exceeded the ca standard in english language arts expressed as a percentage of the total number of american indian or alaska native students in grade 3;number of american indian or alaska native 3rd graders who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 3rd graders -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_Mathematics,number of american indian or alaska native 3rd grade students who exceeded the ca math standard divided by the total number of american indian or alaska native 3rd grade students;number of american indian or alaska native 3rd grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 3rd grade students -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts,the number of american indian or alaska native students in grade 4 who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 4;the number of american indian or alaska native students in grade 4 who exceeded the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 4;the number of american indian or alaska native 4th graders who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 4th graders -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,number of american indian or alaska native students in grade 4 who exceeded the ca standard in english language arts and were economically disadvantaged divided by the total number of american indian or alaska native students in grade 4;the number of american indian or alaska native students in grade 4 who exceeded the ca standard in english language arts and are economically disadvantaged divided by the total number of american indian or alaska native students in grade 4 -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics,number of american indian or alaska native 4th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 4th grade students;number of american indian or alaska native 4th graders who exceeded the ca mathematics standard divided by the total number of american indian or alaska native 4th graders;number of american indian or alaska native fourth-grade students who exceeded the ca math standard divided by the total number of american indian or alaska native fourth-grade students;the number of american indian or alaska native fourth graders who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native fourth graders -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 4 who exceeded the ca standard in mathematics and are also economically disadvantaged, divided by the total number of american indian or alaska native students in grade 4;number of american indian or alaska native students in grade 4 who exceeded the ca standard in mathematics and are economically disadvantaged divided by the total number of american indian or alaska native students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts,number of american indian or alaska native 5th graders who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 5th graders;number of american indian or alaska native students in grade 5 who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 5;number of american indian or alaska native 5th graders who exceeded the ca_standard in english language arts divided by the total number of american indian or alaska native 5th graders -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,number of american indian or alaska native students in grade 5 who exceeded the ca standard in english language arts and are economically disadvantaged divided by the total number of american indian or alaska native students in grade 5;the number of american indian or alaska native students in grade 5 who exceeded the ca_standard in english language arts and were economically disadvantaged divided by the total number of american indian or alaska native students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics,number of american indian or alaska native 5th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 5th grade students;number of american indian or alaska native 5th graders who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 5th graders;number of american indian or alaska native 5th grade students who exceeded the ca math standard divided by the total number of american indian or alaska native 5th grade students;number of american indian or alaska native 5th grade students who exceeded the ca math standard expressed as a percentage -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,number of american indian or alaska native 5th grade students who are economically disadvantaged and exceeded the ca math standard divided by the total number of american indian or alaska native 5th grade students -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts,"the number of american indian or alaska native students in grade 6 who exceeded the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who exceeded the ca_standard in english language arts as a percentage of all american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who exceeded the ca standard in english language arts, divided by the total number of american indian or alaska native students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 6 who exceeded the ca standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native students in grade 6 who exceeded the ca standard in english language arts and are economically disadvantaged divided by the total number of american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who exceeded the ca standard in english language arts and are economically disadvantaged, expressed as a percentage of the total number of american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who are economically disadvantaged and exceeded the ca standard in english language arts, divided by the total number of american indian or alaska native students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics,number of american indian or alaska native 6th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 6th grade students;number of american indian or alaska native 6th grade students who exceeded the ca mathematics standard divided by the total number of american indian or alaska native 6th grade students;number of american indian or alaska native 6th graders who exceeded the ca math standard divided by the total number of american indian or alaska native 6th graders;number of american indian or alaska native 6th grade students who exceeded the ca math standard divided by the total number of american indian or alaska native 6th grade students -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 6 who exceeded the ca standard in mathematics who are economically disadvantaged divided by the total number of american indian or alaska native students in grade 6 who exceeded the ca standard in mathematics;the number of american indian or alaska native students in school grade 6 who exceeded the ca_standard in mathematics and are economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 6;the number of american indian or alaska native students in school grade 6 who are economically disadvantaged and exceeded the ca_standard in mathematics, expressed as a percentage of the total number of american indian or alaska native students in school grade 6;the number of american indian or alaska native students in grade 6 who are economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of american indian or alaska native students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts,"number of american indian or alaska native 7th grade students who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 7th grade students;number of american indian or alaska native 7th graders who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 7th graders;the number of american indian or alaska native students who exceeded the ca_standard in english language arts in grade 7, divided by the total number of american indian or alaska native students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 7 who exceeded the ca standard in english language arts and were economically disadvantaged, divided by the total number of american indian or alaska native students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics,"number of american indian or alaska native 7th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 7th grade students;the number of american indian or alaska native 7th graders who exceeded the ca math standard, as a fraction of the total number of american indian or alaska native 7th graders;number of american indian or alaska native students in grade 7 who exceeded the ca mathematics standard divided by the total number of american indian or alaska native students in grade 7;number of american indian or alaska native 7th graders who exceeded the ca math standard divided by the total number of american indian or alaska native 7th graders" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native 7th grade students who are economically disadvantaged and exceeded the ca math standard divided by the total number of american indian or alaska native 7th grade students;the number of american indian or alaska native students in 7th grade who exceeded the ca standard in mathematics and are economically disadvantaged, as a fraction of the total number of american indian or alaska native students in 7th grade;number of american indian or alaska native 7th grade students who are economically disadvantaged and exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 7th grade students" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts,number of american indian or alaska native 8th graders who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native 8th graders;number of american indian or alaska native 8th graders who exceeded the ca standard in english language arts as a percentage of the total number of american indian or alaska native 8th graders;number of american indian or alaska native 8th graders who exceeded the ca standard in english language arts expressed as a percentage of the total number of american indian or alaska native 8th graders;the number of american indian or alaska native students in grade 8 who exceeded the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 8 who exceeded the ca standard in english language arts and were economically disadvantaged, divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who exceeded the ca standard in english language arts and were economically disadvantaged divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who exceeded the ca standard in english language arts and were economically disadvantaged as a fraction of the total number of american indian or alaska native students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics,the number of american indian or alaska native 8th grade students who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 8th grade students;number of american indian or alaska native 8th graders who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 8th graders;number of american indian or alaska native 8th grade students who exceeded the ca math standard divided by the total number of american indian or alaska native 8th grade students;the number of american indian or alaska native 8th graders who exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 8th graders -Percent_CA_StandardExceeded_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native 8th grade students who are economically disadvantaged and exceeded the ca standard in mathematics divided by the total number of american indian or alaska native 8th grade students;the number of american indian or alaska native students in grade 8 who were economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who exceeded the ca standard in mathematics and were economically disadvantaged, expressed as a percentage of the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in school grade 8 who are economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of american indian or alaska native students in school grade 8" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade11_EnglishLanguageArts,number of asian 11th grade english language arts students who exceeded the ca standard divided by the total number of asian 11th grade english language arts students;number of asian 11th grade students who exceeded the ca standard in english language arts divided by the total number of asian 11th grade students;the number of asian 11th grade students who exceeded the ca_standard in english language arts divided by the total number of asian 11th grade students;the number of asian 11th grade students who exceeded the ca_standard in english language arts expressed as a percentage of the total number of asian 11th grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade11_Mathematics,number of asian 11th grade students who exceeded the ca math standard divided by the total number of asian 11th grade students;number of asian 11th grade students who exceeded the ca mathematics standard divided by the total number of asian 11th grade students;number of asian 11th grade students who exceeded the ca standard in mathematics divided by the total number of asian 11th grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_Mathematics,number of asian 13th graders who exceeded the ca mathematics standard divided by the total number of asian 13th graders -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"count of student: ca_standard exceeded, asian, school grade 13, mathematics, not economically disadvantaged (as fraction of count student asian school grade 13 mathematics not economically disadvantaged)" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade3_EnglishLanguageArts,number of asian 3rd graders in california who exceeded the ca standard in english language arts divided by the total number of asian 3rd graders in california -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade3_Mathematics,number of asian 3rd grade students in california who exceeded the ca math standard divided by the total number of asian 3rd grade students in california;number of asian 3rd grade students who exceeded the ca math standard divided by the total number of asian 3rd grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts,"the number of asian fourth-graders who exceeded the ca_standard in english language arts, divided by the total number of asian fourth-graders" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of asian students in grade 4 who exceeded the ca_standard in english language arts and are economically disadvantaged, divided by the total number of asian students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade4_Mathematics,number of asian 4th grade students who exceeded the ca math standard divided by the total number of asian 4th grade students;number of asian 4th grade students who exceeded the ca mathematics standard divided by the total number of asian 4th grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"number of asian 4th graders who exceeded the ca math standard and are economically disadvantaged, divided by the total number of asian 4th graders;part of asian 4th graders who exceeded the ca math standard and are economically disadvantaged, out of all asian 4th graders;portion of asian 4th graders who exceeded the ca math standard and are economically disadvantaged;number of asian students in grade 4 who are economically disadvantaged and exceeded the ca standard in mathematics divided by the total number of asian students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts,"the number of asian 5th graders who exceeded the ca standard in english language arts, divided by the total number of asian 5th graders;number of asian 5th grade students who exceeded the ca standard in english language arts divided by the total number of asian 5th grade students;the number of asian 5th grade students who exceeded the ca standard in english language arts divided by the total number of asian 5th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade5_Mathematics,number of asian 5th grade students who exceeded the ca standard in mathematics divided by the total number of asian 5th grade students;the number of asian 5th grade students who exceeded the ca math standard divided by the total number of asian 5th grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of asian 5th grade students who exceeded the ca math standard and are economically disadvantaged divided by the total number of asian 5th grade students;the number of asian 5th grade students who exceeded the ca math standard and are economically disadvantaged expressed as a percentage of the total number of asian 5th grade students;the number of asian students in school grade 5 who exceeded the ca standard in mathematics and are economically disadvantaged, divided by the total number of asian students in school grade 5;the number of asian students in school grade 5 who exceeded the ca standard in mathematics and are economically disadvantaged, expressed as a percentage of the total number of asian students in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts,number of asian 6th grade students who exceeded the ca standard in english language arts divided by the total number of asian 6th grade students;number of asian 6th graders who exceeded the ca standard in english language arts divided by the total number of asian 6th graders -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,"3 the number of asian students in grade 6 who exceeded the ca standard in english language arts and are economically disadvantaged, divided by the total number of asian students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade6_Mathematics,"the number of asian 6th grade students who exceeded the ca mathematics standard, divided by the total number of asian 6th grade students;the number of asian 6th grade students who exceeded the ca math standard divided by the total number of asian 6th grade students;the number of asian 6th graders who exceeded the ca math standard divided by the total number of asian 6th graders;number of asian 6th grade students who exceeded the ca math standard divided by the total number of asian 6th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"number of economically disadvantaged asian 6th grade students who exceeded the ca math standard divided by the total number of economically disadvantaged asian 6th grade students;the number of asian students in grade 6 who exceeded the ca standard in mathematics and are economically disadvantaged, divided by the total number of asian students in grade 6;the number of asian students in grade 6 who exceeded the ca standard in mathematics and are economically disadvantaged, as a percentage of all asian students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade7_EnglishLanguageArts,the number of asian 7th grade students who exceeded the ca standard in english language arts divided by the total number of asian 7th grade students;number of asian 7th grade students who exceeded the ca standard in english language arts divided by the total number of asian 7th grade students;the number of asian 7th graders who exceeded the ca standard in english language arts divided by the total number of asian 7th graders;the number of asian 7th graders who exceeded the ca standard in english language arts as a percentage of the total number of asian 7th graders -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade7_Mathematics,"the number of asian 7th graders who exceeded the ca math standard divided by the total number of asian 7th graders;the number of asian 7th grade students who exceeded the ca math standard, divided by the total number of asian 7th grade students;the number of asian 7th grade students who exceeded the ca math standard divided by the total number of asian 7th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade8_EnglishLanguageArts,number of asian 8th grade students who exceeded the ca standard in english language arts divided by the total number of asian 8th grade students;the number of asian 8th grade students who exceeded the ca_standard in english language arts divided by the total number of asian 8th grade students;the number of asian 8th grade students who exceeded the ca_standard in english language arts as a percentage of the total number of asian 8th grade students -Percent_CA_StandardExceeded_In_Count_Student_Asian_SchoolGrade8_Mathematics,"number of asian 8th grade students in california who exceeded the ca standard in mathematics divided by the total number of asian 8th grade students in california;the number of asian 8th grade students who exceeded the ca standard in mathematics, divided by the total number of asian 8th grade students;number of asian 8th grade students who exceeded the ca standard in mathematics divided by the total number of asian 8th grade students;number of asian 8th grade students in california who exceeded the math standard divided by the total number of asian 8th grade students in california" -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_EnglishLanguageArts,the percentage of black or african american students in grade 11 who exceeded the ca standard in english language arts;the number of black or african american students in grade 11 who exceeded the ca standard in english language arts divided by the total number of black or african american students in grade 11;the number of black or african american students in grade 11 who exceeded the ca standard in english language arts as a percentage of the total number of black or african american students in grade 11;percentage of black or african american 11th graders who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_Mathematics,fraction of black or african american 11th grade students who exceeded the ca math standard;percentage of black or african american 11th grade students who exceeded the ca math standard;number of black or african american 11th grade students who exceeded the ca math standard divided by the total number of black or african american 11th grade students;proportion of black or african american 11th grade students who exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts,"the number of black or african american students in grade 13 who exceeded the ca_standard in english language arts, divided by the total number of black or african american students in grade 13;number of black or african american 13th graders who exceeded the ca standard in english language arts divided by the total number of black or african american 13th graders" -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,number of black or african american students in school grade 13 who exceeded the ca standard in english language arts and are economically disadvantaged divided by the total number of black or african american students in school grade 13 -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of black or african american students in grade 13 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of black or african american students in grade 13;number of black or african american students in grade 13 who exceeded the ca standard in english language arts and were not economically disadvantaged expressed as a percentage of the total number of black or african american students in grade 13;the number of black or african american students in school grade 13 who exceeded the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of black or african american students in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics,number of black or african american 13th grade students who exceeded the ca mathematics standard divided by the total number of black or african american 13th grade students;number of black or african american 13th grade students who exceeded the ca standard in mathematics divided by the total number of black or african american 13th grade students -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_EconomicallyDisadvantaged,"the number of black or african american students in school grade 13 who exceeded the ca_standard in mathematics and were economically disadvantaged, divided by the total number of black or african american students in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,number of black or african american students in 13th grade who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of black or african american students in 13th grade;the number of black or african american students in 13th grade who exceeded the ca standard in mathematics divided by the total number of black or african american students in 13th grade who were not economically disadvantaged;number of black or african american students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged as a percentage of the total number of black or african american students in grade 13;the number of black or african american students in grade 13 who exceeded the ca standard in mathematics divided by the total number of black or african american students in grade 13 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_EnglishLanguageArts,number of black or african american 6th graders who exceeded the ca standard in english language arts divided by the total number of black or african american 6th graders;percentage of black or african american 6th graders who exceeded the ca standard in english language arts;percentage of black or african american 6th graders who exceeded ca standards in english language arts;number of black or african american 6th graders who exceeded ca standards in english language arts divided by the total number of black or african american 6th graders -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_Mathematics,percentage of black or african american 6th grade students who exceeded the ca standard in mathematics;number of black or african american 6th grade students who exceeded the ca standard in mathematics divided by the total number of black or african american 6th grade students;the number of black or african american 6th grade students who exceeded the ca standard in mathematics as a percentage of all black or african american 6th grade students;fraction of black or african american students in grade 6 who exceeded the ca standard in mathematics -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_EnglishLanguageArts,percentage of black or african american 7th graders who exceeded the ca standard in english language arts;number of black or african american 7th graders who exceeded the ca standard in english language arts divided by the total number of black or african american 7th graders;number of black or african american 7th graders who exceeded the ca standard in english language arts expressed as a percentage of the total number of black or african american 7th graders;percent of black or african american 7th graders who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_Mathematics,percentage of black or african american 7th grade students who exceeded the ca standard in mathematics;number of black or african american 7th grade students who exceeded the ca standard in mathematics divided by the total number of black or african american 7th grade students;percentage of black or african american 7th grade students who exceeded the ca math standard;number of black or african american 7th grade students who exceeded the ca math standard divided by the total number of black or african american 7th grade students -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_EnglishLanguageArts,"the percentage of english learners who exceeded the ca_standard in english language arts after 12 months or less in school grade 13;the number of english learners who exceeded the ca_standard in english language arts after 12 months or less in school grade 13, divided by the total number of english learners in school grade 13;the number of english learners who exceeded the ca_standard in english language arts after 12 months or less in school grade 13, expressed as a percentage of the total number of english learners in school grade 13;the number of english learners who exceeded the ca_standard in english language arts after 12 months or less in school grade 13, expressed as a fraction of the total number of english learners in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_Mathematics,"the number of english learners who exceeded the ca standard in mathematics in school grade 13, divided by the total number of english learners who were enrolled for 12 months or less in school grade 13;sure, here are 5 different ways to say ""count of student: ca_standard exceeded, english learner, 12 month or less, school grade 13, mathematics (as fraction of count student english learner 12 or less month school grade 13 mathematics)"":" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_EnglishLanguageArts,the percentage of english learners who exceeded the ca_standard in english language arts after 12 months or more in school grade 11;the number of english learners who exceeded the ca_standard in english language arts divided by the total number of english learners who were in school grade 11 for 12 months or more -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_Mathematics,the number of english learners who exceeded the ca standard in mathematics divided by the total number of english learners who were in school grade 11 for 12 or more months -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_EnglishLanguageArts,3 the number of english learners who exceeded the ca_standard in english language arts after 12 months or more of schooling in grade 13 divided by the total number of english learners who were enrolled in grade 13 for 12 months or more;the number of english learners who exceeded the ca standard in english language arts divided by the total number of english learners after 12 months or more in school grade 13;the number of english learners who exceeded the ca standard in english language arts as a percentage of the total number of english learners after 12 months or more in school grade 13;the number of english learners who exceeded the ca standard in english language arts after 12 or more months in school grade 13 divided by the total number of english learners in school grade 13 -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_Mathematics,"the number of english learners who exceeded the ca standard in mathematics divided by the total number of english learners who were in school grade 13 for 12 or more months;the number of english learners who exceeded the ca standard in mathematics after 12 months or more in school grade 13, divided by the total number of english learners in school grade 13;the number of english learners who exceeded the ca math standard after 12 months or more of schooling in grade 13, divided by the total number of english learners who were enrolled in grade 13 for 12 months or more;the number of english learners who exceeded the ca math standard after 12 months or more of schooling in grade 13, as a percentage of all english learners who were enrolled in grade 13 for 12 months or more" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_EnglishLanguageArts,fraction of english learners who exceeded the ca standard in english language arts after 12 months or more in school grade 3;percentage of english learners who exceeded the ca standard in english language arts after 12 months or more in school grade 3;share of english learners who exceeded the ca standard in english language arts after 12 months or more in school grade 3;proportion of english learners who exceeded the ca standard in english language arts after 12 months or more in school grade 3 -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_Mathematics,"number of english learners in grade 3 who exceeded the ca standard in mathematics, divided by the number of all english learners who have been in school for 12 months or more" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_EnglishLanguageArts,"the percentage of english learners who exceeded the ca_standard in english language arts after 12 months or more in school grade 4;the number of english learners who exceeded the ca_standard in english language arts divided by the total number of english learners who were in school grade 4 for 12 months or more;the percentage of english learners who exceeded the ca standard in english language arts after 12 months or more of instruction in school grade 4;the number of english learners who exceeded the ca standard in english language arts after 12 months or more of instruction in school grade 4, divided by the total number of english learners who received 12 months or more of instruction in school grade 4" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_Mathematics,"the percentage of english learners who exceeded the ca standard in mathematics in school grade 4, after being enrolled for 12 months or more;the number of english learners who exceeded the ca mathematics standard in school grade 4, divided by the total number of english learners who were enrolled for 12 months or more in school grade 4" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_EnglishLanguageArts,"the percentage of english learners who exceeded the ca standard in english language arts after 12 or more months in school grade 5;the number of english learners who exceeded the ca standard in english language arts after 12 or more months in school grade 5, divided by the total number of english learners in school grade 5;the percentage of english learners who exceeded the ca standard in english language arts after 12 months or more of schooling in grade 5;the number of english learners who exceeded the ca standard in english language arts after 12 months or more of schooling in grade 5, divided by the total number of english learners who were enrolled in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_Mathematics,percent of english learners in grade 5 who exceeded the ca math standard after 12 months or more of instruction;percentage of english learners in grade 5 who exceeded the ca math standard after 12 months or more of instruction;share of english learners in grade 5 who exceeded the ca math standard after 12 months or more of instruction;portion of english learners in grade 5 who exceeded the ca math standard after 12 months or more of instruction -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_EnglishLanguageArts,"the percentage of english learners who exceeded the ca_standard in english language arts after 12 months or more in school grade 6;the number of english learners who exceeded the ca_standard in english language arts divided by the total number of english learners who were in school grade 6 for 12 months or more;the fraction of english learners who exceeded the ca_standard in english language arts after 12 months or more in school grade 6, out of all english learners who were in school grade 6 for 12 months or more;the number of english learners who exceeded the ca_standard in english language arts divided by the total number of english learners who were enrolled in school grade 6 for 12 months or more" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_Mathematics,"number of 6th grade english learners who exceeded the ca math standard after 12 months or more of instruction, divided by the total number of 6th grade english learners" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_EnglishLanguageArts,"the number of english learners who exceeded the ca standard in english language arts after 12 months or more in school grade 7, divided by the total number of english learners in school grade 7" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_Mathematics,"number of english learners in 7th grade who exceeded the ca math standard after 12 or more months of instruction, divided by the total number of english learners in 7th grade" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_EnglishLanguageArts,"the percentage of english learners who exceeded the ca standard in english language arts after 12 months or more of instruction in school grade 8;the number of english learners who exceeded the ca standard in english language arts after 12 months or more of instruction in school grade 8, divided by the total number of english learners who received 12 months or more of instruction in school grade 8;the number of english learners who exceeded the ca standard in english language arts after 12 months or more of instruction in school grade 8, expressed as a percentage of all english learners who received 12 months or more of instruction in school grade 8" -Percent_CA_StandardExceeded_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_Mathematics,"the number of english learners who exceeded the ca standard in mathematics divided by the total number of english learners who were in school grade 8 for 12 months or more;the number of english learners who exceeded the ca standard in mathematics after 12 months or more in school grade 8, as a percentage of all english learners who were in school grade 8 for 12 months or more" -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade11_Mathematics,the number of students in grade 11 who are current learners of english and exceeded the ca standard in mathematics divided by the total number of students in grade 11;the number of grade 11 students who are current learners of english and have exceeded the ca standard in mathematics divided by the total number of grade 11 students -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade13_Mathematics,"the number of students who are current learners in school grade 13 and exceeded the ca standard in english, divided by the total number of students who are current learners in school grade 13;the number of students in grade 13 who are current learners of english and exceeded the ca standard in mathematics divided by the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade3_Mathematics,"the number of students who exceeded the ca standard in english in school grade 3 divided by the total number of students in school grade 3;the number of students in school grade 3 who exceeded the ca standard in english, expressed as a percentage of the total number of students in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade6_Mathematics,the number of students in grade 6 who are current learners of english and have exceeded the ca standard in mathematics divided by the total number of students in grade 6;the number of students in grade 6 who are current learners of english and have exceeded the ca standard in mathematics expressed as a percentage of the total number of students in grade 6 -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_CurrentLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade13_EnglishLanguageArts,the number of students who exceeded the ca_standard in english in school grade 13 divided by the number of students who ever learned english in school grade 13;the number of students who exceeded the ca_standard in english in school grade 13 expressed as a percentage of all the students who ever learned english in school grade 13 -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade13_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade3_EnglishLanguageArts,number of students who exceeded the ca standard in english language arts in school grade 3 divided by the total number of students who learned english in school grade 3 -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade3_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade5_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade6_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_English_EverLearned_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,"3 the number of students in grade 13 who are from families of the armed forces and exceeded the ca standard in english language arts, divided by the total number of students in grade 13 who are from families of the armed forces;4 the number of students in grade 13 who exceeded the ca standard in english language arts and are from families of the armed forces, divided by the total number of students in grade 13;number of students in grade 13 english language arts who are from military families and exceeded the ca standard, divided by the total number of students in grade 13 english language arts;the number of students in grade 13 english language arts who are from military families and exceeded the ca standard, as a percentage of the total number of students in grade 13 english language arts" -Percent_CA_StandardExceeded_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_Mathematics,"number of students in grade 13 who are from military families and exceeded the ca standard in mathematics, as a fraction of the total number of students in grade 13;number of students in grade 13 who are from military families and exceeded the ca standard in mathematics, as a percentage of the total number of students in grade 13;number of students in grade 13 who exceeded the ca standard in mathematics, divided by the number of students in grade 13 from families of armed forces members;the number of students in grade 13 from military families who exceeded the ca standard in mathematics divided by the total number of students in grade 13 from military families" -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade11_EnglishLanguageArts,percentage of female 11th grade english language arts students who exceeded the ca standard;number of female 11th grade english language arts students who exceeded the ca standard divided by the total number of female 11th grade english language arts students;female 11th grade english language arts students who exceeded the ca standard as a percentage of all female 11th grade english language arts students;female 11th grade english language arts students who exceeded the ca standard as a proportion of all female 11th grade english language arts students -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade11_Mathematics,"the number of female students in 11th grade mathematics who exceeded the ca standard;the number of female students in 11th grade mathematics who exceeded the ca standard, divided by the total number of female students in 11th grade mathematics;the number of female 11th grade students who exceeded the ca standard in mathematics divided by the total number of female 11th grade students;the number of female 11th grade students who exceeded the ca standard in mathematics as a percentage of the total number of female 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade13_EnglishLanguageArts,percentage of female students in grade 13 who exceeded the ca standard in english language arts;number of female students in grade 13 who exceeded the ca standard in english language arts divided by the total number of female students in grade 13;share of female students in grade 13 who exceeded the ca standard in english language arts;the percentage of female students in grade 13 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade13_Mathematics,fraction of female students in grade 13 who exceeded the ca standard in mathematics;percentage of female students in grade 13 who exceeded the ca standard in mathematics;number of female students in grade 13 who exceeded the ca standard in mathematics divided by the total number of female students in grade 13;female students in grade 13 who exceeded the ca standard in mathematics as a percentage of all female students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade3_EnglishLanguageArts,the percentage of female students in grade 3 who exceeded the ca_standard in english language arts;the number of female students in grade 3 who exceeded the ca_standard in english language arts divided by the total number of female students in grade 3;fraction of female students in grade 3 who exceeded the ca standard in english language arts;percentage of female students in grade 3 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade3_Mathematics,fraction of female students in grade 3 who exceeded the ca standard in mathematics;percentage of female students in grade 3 who exceeded the ca standard in mathematics;number of female students in grade 3 who exceeded the ca standard in mathematics divided by the total number of female students in grade 3;number of female students in grade 3 who exceeded the ca standard in mathematics as a percentage of the total number of female students in grade 3 -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade4_EnglishLanguageArts,the number of female fourth grade students who exceeded the ca standard in english language arts divided by the total number of female fourth grade students;the number of female fourth grade students who exceeded the ca standard in english language arts as a percentage of the total number of female fourth grade students;fraction of female students in grade 4 who exceeded the ca standard in english language arts;percentage of female students in grade 4 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade4_Mathematics,"the percentage of female students in grade 4 who exceeded the ca standard in mathematics;the number of female students in grade 4 who exceeded the ca standard in mathematics, divided by the total number of female students in grade 4;the number of female students in grade 4 who exceeded the ca standard in mathematics, expressed as a percentage of the total number of female students in grade 4;the number of female students in grade 4 who exceeded the ca standard in mathematics, expressed as a fraction of the total number of female students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade5_EnglishLanguageArts,fraction of female 5th graders who exceeded the ca standard in english language arts;percentage of female 5th graders who exceeded the ca standard in english language arts;number of female 5th graders who exceeded the ca standard in english language arts divided by the total number of female 5th graders;share of female 5th graders who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade5_Mathematics,fraction of female 5th grade students who exceeded the ca math standard;percentage of female 5th grade students who exceeded the ca math standard;number of female 5th grade students who exceeded the ca math standard divided by the total number of female 5th grade students;female 5th grade students who exceeded the ca math standard as a percentage of all female 5th grade students -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade6_EnglishLanguageArts,"number of female 6th grade students who exceeded the ca standard in english language arts divided by the total number of female 6th grade students;female 6th grade students who exceeded the ca standard in english language arts as a percentage of all female 6th grade students;female 6th grade students who exceeded the ca standard in english language arts as a fraction of all female 6th grade students;sure, here are 5 different ways to say ""count of student: ca_standard exceeded, female, school grade 6, english language arts (as fraction of count student female school grade 6 english language arts)"":" -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade6_Mathematics,fraction of female students in grade 6 who exceeded the ca standard in mathematics;percentage of female students in grade 6 who exceeded the ca standard in mathematics;number of female students in grade 6 who exceeded the ca standard in mathematics divided by the total number of female students in grade 6;female students in grade 6 who exceeded the ca standard in mathematics as a percentage of all female students in grade 6 -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade7_EnglishLanguageArts,percentage of female 7th grade students who exceeded the ca standard in english language arts;number of female 7th grade students who exceeded the ca standard in english language arts divided by the total number of female 7th grade students;number of female 7th grade students who exceeded the ca standard in english language arts as a percentage of the total number of female 7th grade students;the percentage of female students in grade 7 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade7_Mathematics,the number of female 7th grade students who exceeded the ca math standard divided by the total number of female 7th grade students;the number of female 7th grade students who exceeded the ca math standard as a percentage of the total number of female 7th grade students;the number of female 7th grade students who exceeded the ca standard in mathematics divided by the total number of female 7th grade students;number of female 7th grade students who exceeded the ca mathematics standard divided by the total number of female 7th grade students -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade8_EnglishLanguageArts,percentage of female 8th grade students who exceeded the ca standard in english language arts;number of female 8th grade students who exceeded the ca standard in english language arts divided by the total number of female 8th grade students;female 8th grade students who exceeded the ca standard in english language arts as a percentage of all female 8th grade students;female 8th grade students who exceeded the ca standard in english language arts as a fraction of all female 8th grade students -Percent_CA_StandardExceeded_In_Count_Student_Female_SchoolGrade8_Mathematics,the number of female 8th grade students who exceeded the ca mathematics standard divided by the total number of female 8th grade students;the number of female 8th grade students who exceeded the ca mathematics standard expressed as a percentage;the number of female 8th grade students who exceeded the ca mathematics standard expressed as a percentage of the total number of female 8th grade students;the number of female 8th grade students who exceeded the ca standard in mathematics divided by the total number of female 8th grade students -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts,"the number of filipino 13th grade students who exceeded the ca standard in english language arts, divided by the total number of filipino 13th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of filipino students in grade 13 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of filipino students in grade 13;the number of filipino students in grade 13 who exceeded the ca standard in english language arts and are not economically disadvantaged, divided by the total number of filipino students in grade 13;the number of filipino students in grade 13 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of filipino students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_Mathematics,number of filipino grade 13 students who exceeded the ca mathematics standard divided by the total number of filipino grade 13 students -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_Filipino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,the number of filipino students in grade 13 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of filipino students in grade 13;the number of filipino students in grade 13 who are not economically disadvantaged and exceeded the ca standard in mathematics divided by the total number of filipino students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts,"what number of hispanic or latino 11th graders exceeded the ca standard in english language arts out of all hispanic or latino 11th graders?;what number of hispanic or latino 11th graders exceeded the ca standard in english language arts as a percentage of all hispanic or latino 11th graders?;portion of hispanic or latino 11th grade students who exceeded the ca standard in english language arts;the number of hispanic or latino 11th grade students who exceeded the ca_standard in english language arts, divided by the total number of hispanic or latino 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of hispanic or latino 11th graders who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of hispanic or latino 11th graders;the number of hispanic or latino 11th grade english language arts students who exceeded the ca standard and were not economically disadvantaged, divided by the total number of hispanic or latino 11th grade english language arts students;number of hispanic or latino 11th grade students who are not economically disadvantaged and exceeded the ca standard in english language arts divided by the total number of hispanic or latino 11th grade students who are not economically disadvantaged;number of hispanic or latino 11th grade students who are not economically disadvantaged and exceeded the ca standard in english language arts divided by the total number of hispanic or latino 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics,percentage of hispanic or latino 11th grade students who exceeded the ca standard in mathematics;percentage of hispanic or latino 11th grade students who exceeded the ca mathematics standard;number of hispanic or latino 11th grade students who exceeded the ca mathematics standard divided by the total number of hispanic or latino 11th grade students;the percentage of hispanic or latino 11th grade students who exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,number of hispanic or latino 11th grade students who are not economically disadvantaged and exceeded the ca math standard divided by the total number of hispanic or latino 11th grade students who are not economically disadvantaged;the number of hispanic or latino 11th grade students who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of hispanic or latino 11th grade students;the number of hispanic or latino 11th grade students who exceeded the ca standard in mathematics divided by the total number of hispanic or latino 11th grade students who are not economically disadvantaged;portion of hispanic or latino 11th grade students who are not economically disadvantaged and exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts,number of hispanic or latino 13th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 13th graders;number of hispanic or latino 13th grade students who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 13th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of hispanic or latino students in grade 13 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 13;the number of hispanic or latino students in school grade 13 who exceeded the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13;the number of hispanic or latino students in grade 13 who exceeded the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics,"the number of hispanic or latino 13th graders who exceeded the ca math standard, divided by the total number of hispanic or latino 13th graders;the number of hispanic or latino 13th graders who exceeded the ca math standard, expressed as a percentage of the total number of hispanic or latino 13th graders;fraction of hispanic or latino 13th graders who exceeded the ca math standard;hispanic or latino 13th graders who exceeded the ca math standard as a fraction of all hispanic or latino 13th graders" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 13 who exceeded the ca standard in mathematics divided by the total number of hispanic or latino students in grade 13 who were not economically disadvantaged;number of hispanic or latino 13th grade students who are not economically disadvantaged and exceeded the ca math standard divided by the total number of hispanic or latino 13th grade students;the number of hispanic or latino students in school grade 13 who exceeded the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts,"number of hispanic or latino 3rd grade students who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 3rd grade students;number of hispanic or latino 3rd grade students who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 3rd grade students, expressed as a percentage;number of hispanic or latino third graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino third graders;the number of hispanic or latino students in grade 3 who exceeded the ca_standard in english language arts, divided by the total number of hispanic or latino students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 3 who exceeded the ca_standard in english language arts and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,the number of hispanic or latino students in grade 3 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 3 who were not economically disadvantaged;number of hispanic or latino students in grade 3 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 3 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics,number of hispanic or latino 3rd grade students who exceeded the ca standard in mathematics divided by the total number of hispanic or latino 3rd grade students;percent of hispanic or latino students in grade 3 who exceeded the ca math standard;percentage of hispanic or latino students in grade 3 who exceeded the ca math standard;number of hispanic or latino 3rd grade students who exceeded the ca math standard divided by the total number of hispanic or latino 3rd grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 3 who exceeded the ca math standard and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 3;the number of hispanic or latino students in school grade 3 who exceeded the ca math standard and are economically disadvantaged, expressed as a percentage of the total number of hispanic or latino students in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,portion of hispanic or latino students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged;number of hispanic or latino students in grade 3 who exceeded the ca standard in mathematics divided by the number of hispanic or latino students in grade 3 who are not economically disadvantaged;number of hispanic or latino students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of hispanic or latino students in grade 3;number of hispanic or latino students in grade 3 who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of hispanic or latino students in grade 3 -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts,"number of hispanic or latino 4th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 4th graders;number of hispanic or latino fourth graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino fourth graders;number of hispanic or latino fourth graders who exceeded the ca standard in english language arts expressed as a percentage of the total number of hispanic or latino fourth graders;the number of hispanic or latino students in grade 4 who exceeded the ca_standard in english language arts, divided by the total number of hispanic or latino students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of hispanic or latino students in grade 4 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 4 who were not economically disadvantaged;number of hispanic or latino students in grade 4 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in grade 4 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 4 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics,percentage of hispanic or latino 4th grade students who exceeded the ca math standard;percent of hispanic or latino 4th grade students who exceeded the ca math standard;portion of hispanic or latino 4th grade students who exceeded the ca math standard;number of hispanic or latino 4th grade students who exceeded the ca math standard divided by the total number of hispanic or latino 4th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of hispanic or latino students in grade 4 who exceeded the ca math standard and are economically disadvantaged, expressed as a percentage of the total number of hispanic or latino students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 4 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in school grade 4 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 4;the number of hispanic or latino students in grade 4 who exceeded the ca standard in mathematics divided by the number of hispanic or latino students in grade 4 who were not economically disadvantaged;the number of hispanic or latino students in grade 4 who exceeded the ca math standard divided by the total number of hispanic or latino students in grade 4 who were not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts,percentage of hispanic or latino 5th graders who exceeded the ca standard in english language arts;number of hispanic or latino 5th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 5th graders;number of hispanic or latino 5th graders who exceeded the ca standard in english language arts expressed as a percentage of the total number of hispanic or latino 5th graders;the number of hispanic or latino students in grade 5 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 5 who exceeded the ca_standard in english language arts and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of hispanic or latino students in grade 5 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of hispanic or latino students in grade 5;number of hispanic or latino students in grade 5 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of hispanic or latino students in grade 5;the percentage of hispanic or latino students in school grade 5 who exceeded the ca_standard in english language arts, out of all hispanic or latino students in school grade 5 who were not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics,fraction of hispanic or latino 5th graders who exceeded the ca mathematics standard;percent of hispanic or latino 5th graders who exceeded the ca mathematics standard;percentage of hispanic or latino 5th graders who exceeded the ca mathematics standard;share of hispanic or latino 5th graders who exceeded the ca mathematics standard -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 5 who exceeded the ca math standard and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 5 who exceeded the ca mathematics standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 5;fraction of hispanic or latino 5th graders who are not economically disadvantaged and exceeded the ca math standard;percentage of hispanic or latino 5th graders who are not economically disadvantaged and exceeded the ca math standard;number of hispanic or latino 5th graders who are not economically disadvantaged and exceeded the ca math standard divided by the total number of hispanic or latino 5th graders who are not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts,number of hispanic or latino 6th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 6th graders;percent of hispanic or latino 6th graders who exceeded the ca standard in english language arts;number of hispanic or latino 6th grade students who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 6th grade students;hispanic or latino 6th graders who exceeded the ca english language arts standard as a fraction of all hispanic or latino 6th graders -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,the number of hispanic or latino students in grade 6 who exceeded the ca_standard in english language arts divided by the total number of hispanic or latino students in grade 6 who were not economically disadvantaged;number of hispanic or latino students in grade 6 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 6 who were not economically disadvantaged;the number of hispanic or latino students in school grade 6 who exceeded the ca_standard in english language arts divided by the total number of hispanic or latino students in school grade 6 who were not economically disadvantaged;the number of hispanic or latino students in school grade 6 who exceeded the ca_standard in english language arts expressed as a percentage of the total number of hispanic or latino students in school grade 6 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics,percentage of hispanic or latino 6th grade students who exceeded the ca math standard;number of hispanic or latino 6th grade students who exceeded the ca math standard divided by the total number of hispanic or latino 6th grade students;number of hispanic or latino 6th grade students who exceeded the ca math standard expressed as a percentage of the total number of hispanic or latino 6th grade students;number of hispanic or latino 6th grade students who exceeded the ca mathematics standard divided by the total number of hispanic or latino 6th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 6 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 6;the number of hispanic or latino students in grade 6 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 6;the number of hispanic or latino students in school grade 6 who exceeded the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 6;portion of hispanic or latino 6th grade students who are not economically disadvantaged and exceeded the ca math standard" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts,percent of hispanic or latino 7th graders who exceeded the ca standard in english language arts;number of hispanic or latino 7th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 7th graders;the number of hispanic or latino 7th grade students who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 7th grade students;the number of hispanic or latino 7th grade students who exceeded the ca standard in english language arts as a percentage of the total number of hispanic or latino 7th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of hispanic or latino students in grade 7 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 7 who are not economically disadvantaged;the number of hispanic or latino students in grade 7 who exceeded the ca_standard in english language arts divided by the total number of hispanic or latino students in grade 7 who were not economically disadvantaged;number of hispanic or latino students in grade 7 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of hispanic or latino students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics,percentage of hispanic or latino 7th grade students who exceeded the ca math standard;number of hispanic or latino 7th grade students who exceeded the ca math standard divided by the total number of hispanic or latino 7th grade students;percent of hispanic or latino 7th grade students who exceeded the ca math standard;number of hispanic or latino 7th grade students who exceeded the ca standard in mathematics divided by the total number of hispanic or latino 7th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"number of hispanic or latino students in grade 7 who exceeded the ca standard in mathematics divided by the number of hispanic or latino students in grade 7 who are not economically disadvantaged;the number of hispanic or latino 7th graders who are not economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of hispanic or latino 7th graders;the number of hispanic or latino students in grade 7 who exceeded the ca standard in mathematics divided by the total number of hispanic or latino students in grade 7 who were not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts,number of hispanic or latino 8th grade students who exceeded the ca english language arts standard divided by the total number of hispanic or latino 8th grade students;number of hispanic or latino students in 8th grade english language arts who exceeded the ca standard divided by the total number of hispanic or latino students in 8th grade english language arts;percentage of hispanic or latino 8th graders who exceeded the ca standard in english language arts;number of hispanic or latino 8th graders who exceeded the ca standard in english language arts divided by the total number of hispanic or latino 8th graders -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 8 who exceeded the ca_standard in english language arts and were economically disadvantaged, divided by the total number of hispanic or latino students in school grade 8" -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of hispanic or latino 8th grade students who are not economically disadvantaged and exceeded the ca standard in english language arts divided by the total number of hispanic or latino 8th grade students who are not economically disadvantaged;the number of hispanic or latino students in grade 8 who exceeded the ca standard in english language arts divided by the total number of hispanic or latino students in grade 8 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics,percentage of hispanic or latino 8th grade students who exceeded the ca math standard;number of hispanic or latino 8th grade students who exceeded the ca math standard divided by the total number of hispanic or latino 8th grade students;percent of hispanic or latino 8th grade students who exceeded the ca math standard;number of hispanic or latino 8th grade students who exceeded the ca standard in mathematics divided by the total number of hispanic or latino 8th grade students -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 8 who exceeded the ca mathematics standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 8;the number of hispanic or latino students in grade 8 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"percentage of english learners in grade 11 who are initially fluent or reclassified fluent or only speak english and exceeded the ca standard in english language arts;number of english learners in grade 11 who are initially fluent or reclassified fluent or only speak english and exceeded the ca standard in english language arts divided by the total number of english learners in grade 11;the number of english learners in grade 11 who exceeded the ca standard in english language arts, divided by the total number of english learners in grade 11 who were initially fluent proficient or reclassified fluent proficient or only english" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_Mathematics,"4 the number of english learners in 11th grade who exceeded the ca mathematics standard and were initially fluent proficient, reclassified fluent proficient, or only english proficient, divided by the total number of english learners in 11th grade;number of english learners in school grade 11 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics who exceeded the ca standard divided by the total number of english learners in school grade 11" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_EnglishLanguageArts,"number of english learners who are initial fluent proficient, reclassified fluent proficient, or only english speakers who exceeded the ca standard in english language arts in grade 13 divided by the total number of english learners;number of english learners who exceeded the ca standard in english language arts in grade 13 who were initially fluent proficient or reclassified fluent proficient or only english divided by the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english in grade 13;the number of english learners who exceeded the ca standard in english language arts in grade 13, divided by the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english in english language arts in grade 13;the number of english learners who exceeded the ca standard in english language arts in grade 13, as a percentage of all english learners who were initially fluent proficient or reclassified fluent proficient or only english in english language arts in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_Mathematics,"the number of english learners in school grade 13 who exceeded the ca standard in mathematics and were initially fluent proficient or reclassified fluent proficient or only english, divided by the total number of english learners in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_EnglishLanguageArts,"number of english learners who were initially fluent proficient or reclassified fluent proficient or only english and exceeded the ca standard in english language arts in school grade 3 divided by the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english in school grade 3;the number of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3, as a fraction of the total number of students who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3;the fraction of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3, of the total number of students who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3;the percentage of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3, out of all students who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_Mathematics,percentage of students who exceeded the ca standard in mathematics in grade 3 who were initially fluent proficient or reclassified fluent proficient or only english english learners;number of students who exceeded the ca standard in mathematics in grade 3 who were initially fluent proficient or reclassified fluent proficient or only english english learners as a proportion of the total number of students who were initially fluent proficient or reclassified fluent proficient or only english english learners in grade 3;the number of students who exceeded the ca standard in mathematics in school grade 3 who were initially fluent proficient or reclassified fluent proficient or only english english learners divided by the total number of students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 3;the number of students who exceeded the ca standard in mathematics in school grade 3 who were initially fluent proficient or reclassified fluent proficient or only english english learners as a percentage of the total number of students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 3 -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_EnglishLanguageArts,fraction of students who exceeded the ca standard in english language arts in school grade 4 who are english learners and were initially fluent proficient or reclassified fluent proficient or only english;fraction of students who exceeded the ca standard in english language arts in school grade 4 who were english learners and were initially fluent proficient or reclassified fluent proficient or only english;fraction of students who exceeded the ca standard in english language arts in school grade 4 who were initially fluent proficient or reclassified fluent proficient or only english english learners -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_Mathematics,percentage of students who exceeded the ca standard in mathematics in school grade 4 who were initially fluent proficient or reclassified fluent proficient or only english english learners;percent of students who exceeded the ca standard in mathematics in school grade 4 who were initially fluent proficient or reclassified fluent proficient or only english english learners;part of students who exceeded the ca standard in mathematics in school grade 4 who were initially fluent proficient or reclassified fluent proficient or only english english learners -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_EnglishLanguageArts,"the number of english learners in school grade 5 who exceeded the ca_standard in english language arts, divided by the total number of english learners in school grade 5 who were initially fluent proficient or reclassified fluent proficient or only english;fraction of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 5;percentage of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 5;number of students who exceeded the ca standard in english language arts, who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 5, divided by the total number of students who were initially fluent proficient or reclassified fluent proficient or only english, english learners, in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_Mathematics,"percentage of students who exceeded the ca standard in mathematics in school grade 5 who were initially fluent proficient or reclassified fluent proficient or only english english learners;number of students who exceeded the ca standard in mathematics in school grade 5 who were initially fluent proficient or reclassified fluent proficient or only english english learners divided by the total number of students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 5;how many students exceeded the ca standard in mathematics in school grade 5, out of all the students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 5?;what is the fraction of students who exceeded the ca standard in mathematics in school grade 5, out of all the students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 5?" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"number of students who are initial fluent proficient, reclassified fluent proficient, or only english learners in english language arts in school grade 6 who exceeded the ca standard divided by the total number of students who are initial fluent proficient, reclassified fluent proficient, or only english learners in english language arts in school grade 6" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_Mathematics,"the number of english learners in grade 6 who exceeded the ca standard in mathematics, out of all english learners in grade 6 who were initially fluent proficient, reclassified fluent proficient, or only english;what number of english learners in grade 6 exceeded the ca math standard out of the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only proficient in english in math?;how many students exceeded the ca standard in mathematics in grade 6 as a fraction of the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english speakers in grade 6 mathematics;what number of english learners who were initially fluent proficient or reclassified fluent proficient or only english speakers in grade 6 mathematics exceeded the ca standard in mathematics divided by the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english speakers in grade 6 mathematics" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_EnglishLanguageArts,"what number of english learners in grade 7 exceeded the ca standard in english language arts out of the total number of english learners in grade 7 who were initially fluent proficient or reclassified fluent proficient or only english in english language arts?;percentage of students who exceeded the ca standard in english language arts in grade 7 who were initially fluent proficient or reclassified fluent proficient or only english english learners;percent of students who exceeded the ca standard in english language arts in grade 7 who were initially fluent proficient or reclassified fluent proficient or only english english learners;the number of students who exceeded the ca_standard in english language arts in grade 7 and were either initially fluent proficient, reclassified fluent proficient, or only spoke english as an english learner, divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts, divided by the number of students who were initially fluent proficient or reclassified fluent proficient or only english english learners in school grade 8" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_Mathematics,47% of english learners who were initially fluent or reclassified fluent in english exceeded the ca standard in mathematics in school grade 8;the number of english learners who exceeded the ca standard in mathematics in grade 8 as a fraction of the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english in mathematics in grade 8;the number of english learners who exceeded the ca standard in mathematics in grade 8 as a percentage of the total number of english learners who were initially fluent proficient or reclassified fluent proficient or only english in mathematics in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts,number of english learners in grade 11 who are initially fluent and proficient in english language arts and exceeded the ca standard divided by the total number of english learners in grade 11 -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts,the number of english learners in school grade 13 who exceeded the ca_standard in english language arts divided by the total number of english learners in school grade 13 who were initially fluent and proficient in english language arts -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts in school grade 3 who were english learners and initially fluent proficient divided by the total number of students in school grade 3;number of students who are english learners, initially fluent proficient, and exceeded the ca standard in english language arts in school grade 3 divided by the total number of students in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_Mathematics,"the number of students who exceeded the ca_standard in mathematics in school grade 3 who were initially fluent proficient english learners divided by the total number of students who were initially fluent proficient english learners in school grade 3;number of students who exceeded the ca standard in mathematics in school grade 3 who are english learners who are initially fluent proficient divided by the total number of students who are english learners who are initially fluent proficient in school grade 3;number of students who are english learners and initial fluent proficient in mathematics in school grade 3 who exceeded the ca standard divided by the total number of students who are english learners and initial fluent proficient in mathematics in school grade 3;the number of english learners in school grade 3 who are initially fluent proficient and exceeded the ca standard in mathematics, divided by the total number of english learners in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts,"number of students who are english learners, initially fluent proficient, and exceeded the ca standard in english language arts in school grade 5 divided by the total number of students in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_Mathematics,"number of students who are english learners, initially fluent proficient in mathematics, and exceeded the ca standard in grade 5 divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"number of students who are english learners, initially fluent proficient, and exceeded the ca standard in english language arts in school grade 6 divided by the total number of students in school grade 6" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_Mathematics,"the number of english learners in grade 6 who are initially fluent and proficient in mathematics and exceeded the ca standard, divided by the total number of english learners in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts,the number of english learners in school grade 7 who are initially fluent and proficient in english language arts and exceeded the ca standard divided by the total number of english learners in school grade 7 -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_Mathematics,"the number of english learners in grade 7 who are initially fluent and proficient in mathematics and exceeded the ca standard, divided by the total number of english learners in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts,number of students who are english learners and in grade 8 who are initial fluent proficient in english language arts and exceeded the ca standard divided by the total number of students who are english learners and in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade11_EnglishLanguageArts,"number of male 11th grade students who exceeded the ca standard in english language arts divided by the total number of male 11th grade students;male 11th grade students who exceeded the ca standard in english language arts as a percentage of all male 11th grade students;the number of male 11th grade students who exceeded the ca standard in english language arts divided by the total number of male 11th grade students, expressed as a percentage;the number of male 11th grade students who exceeded the ca standard in english language arts divided by the total number of male 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade11_Mathematics,"number of male 11th grade students who exceeded the ca math standard divided by the total number of male 11th grade students;the number of male 11th grade students who exceeded the ca standard in mathematics, divided by the total number of male 11th grade students;the number of male 11th grade students who exceeded the ca standard in mathematics, expressed as a percentage of the total number of male 11th grade students;the number of male 11th grade students who exceeded the ca standard in mathematics divided by the total number of male 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade13_EnglishLanguageArts,the number of male students in grade 13 who exceeded the ca standard in english language arts divided by the total number of male students in grade 13;the number of male students in grade 13 who exceeded the ca standard in english language arts as a percentage of the total number of male students in grade 13;the number of male students in grade 13 who exceeded the ca standard in english language arts as a proportion of the total number of male students in grade 13;the number of male students in grade 13 who exceeded the ca_standard in english language arts divided by the total number of male students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade13_Mathematics,number of male students in grade 13 who exceeded the ca standard in mathematics divided by the total number of male students in grade 13;number of male students in grade 13 who exceeded the ca standard in mathematics as a percentage of the total number of male students in grade 13;number of male students in grade 13 who exceeded the ca standard in mathematics as a proportion of the total number of male students in grade 13;the number of male students in grade 13 who exceeded the ca standard in mathematics divided by the total number of male students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade3_EnglishLanguageArts,"the percentage of male students in grade 3 who exceeded the ca standard in english language arts;the number of male students in grade 3 who exceeded the ca standard in english language arts, divided by the total number of male students in grade 3;the number of male students in grade 3 who exceeded the ca standard in english language arts, expressed as a percentage;number of male third-grade students who exceeded the ca standard in english language arts divided by the total number of male third-grade students" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade3_Mathematics,"what is the number of male students in grade 3 who exceeded the ca standard in mathematics, divided by the total number of male students in grade 3?;the number of male students in grade 3 who exceeded the ca standard in mathematics divided by the total number of male students in grade 3;the number of male students in grade 3 who exceeded the ca standard in mathematics expressed as a percentage of the total number of male students in grade 3;the number of male students in grade 3 who exceeded the ca mathematics standard, divided by the total number of male students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade4_EnglishLanguageArts,"how many male students in grade 4 exceeded the ca standard in english language arts, as a fraction of the total number of male students in grade 4?;fraction of male students in grade 4 who exceeded the ca standard in english language arts;percentage of male students in grade 4 who exceeded the ca standard in english language arts;number of male students in grade 4 who exceeded the ca standard in english language arts divided by the total number of male students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade4_Mathematics,"the number of male students in grade 4 who exceeded the ca standard in mathematics divided by the total number of male students in grade 4;the number of male students in grade 4 who exceeded the ca standard in mathematics expressed as a percentage of the total number of male students in grade 4;the number of male students in grade 4 who exceeded the ca math standard, divided by the total number of male students in grade 4;the number of male students in grade 4 who exceeded the ca math standard divided by the total number of male students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade5_EnglishLanguageArts,"what number of male 5th grade students exceeded the ca standard in english language arts, as a fraction of the total number of male 5th grade students?;the number of male 5th grade students who exceeded the ca standard in english language arts, divided by the total number of male 5th grade students;the percentage of male students in grade 5 who exceeded the ca standard in english language arts;the number of male students in grade 5 who exceeded the ca standard in english language arts divided by the total number of male students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade5_Mathematics,number of male 5th grade students who exceeded the ca standard in mathematics divided by the total number of male 5th grade students;male 5th grade students who exceeded the ca standard in mathematics as a fraction of all male 5th grade students;the number of male 5th grade students who exceeded the ca standard in mathematics divided by the total number of male 5th grade students;the number of male 5th grade students who exceeded the ca standard in mathematics as a percentage of the total number of male 5th grade students -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade6_EnglishLanguageArts,"the percentage of male students in grade 6 who exceeded the ca standard in english language arts;the number of male students in grade 6 who exceeded the ca standard in english language arts divided by the total number of male students in grade 6;the number of male students in grade 6 who exceeded the ca standard in english language arts expressed as a percentage of the total number of male students in grade 6;the number of male students in grade 6 who exceeded the ca standard in english language arts, divided by the total number of male students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade6_Mathematics,"the number of male students in grade 6 who exceeded the ca standard in mathematics divided by the total number of male students in grade 6;the number of male students in grade 6 who exceeded the ca standard in mathematics expressed as a fraction of the total number of male students in grade 6;the number of male students in grade 6 who exceeded the ca standard in mathematics expressed as a percentage of the total number of male students in grade 6;the number of male students in grade 6 who exceeded the ca standard in mathematics, divided by the total number of male students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade7_EnglishLanguageArts,the number of male students in grade 7 who exceeded the ca standard in english language arts divided by the total number of male students in grade 7;the number of male students in grade 7 who exceeded the ca standard in english language arts as a percentage of all male students in grade 7;the number of male students in grade 7 who exceeded the ca standard in english language arts out of every 100 male students in grade 7;percentage of male students in grade 7 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade7_Mathematics,number of male grade 7 students who exceeded the ca standard in mathematics divided by the total number of male grade 7 students;male grade 7 students who exceeded the ca standard in mathematics as a percentage of all male grade 7 students;male grade 7 students who exceeded the ca standard in mathematics as a fraction of all male grade 7 students;number of male students in grade 7 who exceeded the ca standard in mathematics divided by the total number of male students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade8_EnglishLanguageArts,the number of male 8th grade students who exceeded the ca standard in english language arts divided by the total number of male 8th grade students;the number of male 8th grade students who exceeded the ca standard in english language arts expressed as a percentage of the total number of male 8th grade students;percentage of male 8th grade students who exceeded the ca standard in english language arts;number of male 8th grade students who exceeded the ca standard in english language arts divided by the total number of male 8th grade students -Percent_CA_StandardExceeded_In_Count_Student_Male_SchoolGrade8_Mathematics,number of male 8th grade students who exceeded the ca standard in mathematics divided by the total number of male 8th grade students;number of male 8th grade students in california who exceeded the state standard in mathematics divided by the total number of male 8th grade students in california;the number of male students in grade 8 who exceeded the ca mathematics standard divided by the total number of male students in grade 8;the number of male students in grade 8 who exceeded the ca mathematics standard expressed as a percentage of the total number of male students in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_EnglishLanguageArts,number of native hawaiian or other pacific islander alone students in grade 13 who exceeded the ca_standard in english language arts divided by the total number of native hawaiian or other pacific islander alone students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_Mathematics,"number of native hawaiian or other pacific islander alone 13th grade students who exceeded the ca math standard divided by the total number of native hawaiian or other pacific islander alone 13th grade students;the number of native hawaiian or other pacific islander students in grade 13 who exceeded the ca math standard, divided by the total number of native hawaiian or other pacific islander students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade11_EnglishLanguageArts,"number of students with no disabilities in grade 11 who exceeded the ca standard in english language arts divided by the total number of students with no disabilities in grade 11;the number of students without disabilities who exceeded the ca_standard in english language arts in grade 11, divided by the total number of students without disabilities in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade13_EnglishLanguageArts,"the number of students without disabilities who exceeded the ca standard in english language arts in grade 13, divided by the total number of students without disabilities in grade 13;the number of students without disabilities who exceeded the ca standard in english language arts in grade 13, expressed as a percentage of the total number of students without disabilities in grade 13;number of students with no disabilities who exceeded the ca standard in english language arts in grade 13 divided by the total number of students with no disabilities in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade3_EnglishLanguageArts,the number of students in school grade 3 with no disabilities who exceeded the ca_standard in english language arts divided by the total number of students in school grade 3 with no disabilities;the number of students in school grade 3 with no disabilities who exceeded the ca_standard in english language arts expressed as a percentage of the total number of students in school grade 3 with no disabilities;the number of students in school grade 3 with no disabilities who exceeded the ca_standard in english language arts expressed as a fraction of the total number of students in school grade 3 with no disabilities -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade3_Mathematics,the number of students with no disabilities who exceeded the ca standard in mathematics in school grade 3 divided by the total number of students with no disabilities in school grade 3 -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade4_EnglishLanguageArts,"the number of students without disabilities who exceeded the ca standard in english language arts in school grade 4, divided by the total number of students without disabilities in school grade 4" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade4_Mathematics,"the number of students in grade 4 who have no disabilities and exceeded the ca standard in mathematics, divided by the total number of students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade5_EnglishLanguageArts,"the number of students in grade 5 with no disabilities who exceeded the ca standard in english language arts, divided by the total number of students in grade 5 with no disabilities;the number of students in grade 5 with no disabilities who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade6_EnglishLanguageArts,3 the number of students in grade 6 who have no disabilities and exceeded the ca_standard in english language arts divided by the total number of students in grade 6 who have no disabilities -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade6_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade7_EnglishLanguageArts,"the number of students without disabilities who exceeded the ca standard in english language arts in grade 7, divided by the total number of students without disabilities in grade 7;the number of students without disabilities who exceeded the ca standard in english language arts in grade 7, out of every 100 students without disabilities in grade 7;the number of students without disabilities in grade 7 who exceeded the ca standard in english language arts, divided by the total number of students without disabilities in grade 7;the number of students in grade 7 with no disabilities who exceeded the ca_standard in english language arts divided by the total number of students in grade 7 with no disabilities" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade8_EnglishLanguageArts,"the number of students without disabilities who exceeded the ca_standard in english language arts in school grade 8, divided by the total number of students without disabilities in school grade 8;the number of students without disabilities who exceeded the ca standard in english language arts in grade 8, divided by the total number of students without disabilities in grade 8;the number of students without disabilities who exceeded the ca standard in english language arts in grade 8, as a percentage of all students without disabilities in grade 8;the number of students without disabilities who exceeded the ca standard in english language arts in grade 8, out of every 100 students without disabilities in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_NoDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_EnglishLanguageArts,number of students in grade 11 english language arts who are not from military families and exceeded the ca standard divided by the total number of students in grade 11 english language arts who are not from military families -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_Mathematics,"number of students in grade 11 mathematics who are not from military families and exceeded the ca standard divided by the total number of students in grade 11 mathematics;number of students in grade 11 mathematics who are not from military families and exceeded the ca standard, divided by the total number of students in grade 11 mathematics;the number of students in grade 11 mathematics who are not from military families and exceeded the ca standard, expressed as a percentage of the total number of students in grade 11 mathematics;number of students in grade 11 mathematics who are not from military families and exceeded the ca standard, expressed as a fraction of the total number of students in grade 11 mathematics" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,number of students in grade 13 english language arts who are not from military families and exceeded the ca standard divided by the total number of students in grade 13 english language arts who are not from military families -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_Mathematics,"number of students in grade 13 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 13 who are not from military families;number of students in grade 13 who exceeded the ca math standard, divided by the total number of students in grade 13 who are not from military families;fraction of students who are not in the military and are in grade 13 who exceeded the ca standard in mathematics;number of students in grade 13 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_EnglishLanguageArts,"number of students in grade 3 english language arts who are not from military families and exceeded the ca standard, divided by the total number of students in grade 3 english language arts who are not from military families;the number of students in grade 3 english language arts who are not from military families and exceeded the ca standard, as a percentage of all students in grade 3 english language arts" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_Mathematics,"number of students in school grade 3 who are not from military families and exceeded the ca standard in mathematics, divided by the total number of students in school grade 3 who are not from military families;number of students in school grade 3 who are not from military families and exceeded the ca standard in mathematics, as a percentage of the total number of students in school grade 3;number of students in grade 3 who are not from military families and exceeded the ca standard in mathematics divided by the total number of students in grade 3 who are not from military families;number of students in grade 3 who are not from military families and exceeded the ca standard in mathematics as a percentage of the total number of students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_EnglishLanguageArts,"the number of students in school grade 4 who are not from military families and exceeded the ca_standard in english language arts, divided by the total number of students in school grade 4 who are not from military families;number of students in grade 4 english language arts who are not from military families and exceeded the ca standard, divided by the total number of students in grade 4 english language arts who are not from military families" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_Mathematics,"number of students in grade 4 mathematics who are not from military families and exceeded the ca standard, divided by the total number of students in grade 4 mathematics who are not from military families;number of students in grade 4 mathematics who are not from military families and exceeded the ca standard, expressed as a percentage of the total number of students in grade 4 mathematics;the number of students in grade 4 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 4 who are not from military families;the number of students in grade 4 who exceeded the ca math standard and are not from military families, divided by the total number of students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_EnglishLanguageArts,"the number of students in grade 5 who are not from military families and exceeded the ca standard in english language arts, divided by the total number of students in grade 5;the number of students in grade 5 who are not from military families and exceeded the ca standard in english language arts, divided by the total number of students in grade 5 who are not from military families;the number of students in grade 5 who are not from military families and exceeded the ca standard in english language arts, as a percentage of the total number of students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_Mathematics,fraction of students in grade 5 who are not from military families and exceeded the ca math standard;number of students in grade 5 who are not from military families and exceeded the ca math standard divided by the total number of students in grade 5;number of students in grade 5 who are not from military families and exceeded the ca math standard as a percentage of the total number of students in grade 5;number of students in grade 5 who are not from military families and exceeded the ca math standard as a fraction of the total number of students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_EnglishLanguageArts,"the number of students in grade 6 who are not from military families and exceeded the ca standard in english language arts divided by the total number of students in grade 6 who are not from military families;number of students in grade 6 english language arts who are not from military families and exceeded the ca standard, divided by the total number of students in grade 6 english language arts who are not from military families;number of students in grade 6 english language arts who are not from military families who exceeded the ca standard divided by the total number of students in grade 6 english language arts who are not from military families" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_Mathematics,"the number of students in grade 6 who are not from military families and exceeded the ca math standard divided by the total number of students in grade 6 who are not from military families;the number of students in grade 6 who are not from military families and met or exceeded the ca math standard, divided by the total number of students in grade 6 who are not from military families;the number of students in grade 6 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 6;the number of students in grade 6 who are not from military families and exceeded the ca standard in mathematics, expressed as a percentage" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_EnglishLanguageArts,number of students in grade 7 english language arts who are not from military families and exceeded the ca standard divided by the total number of students in grade 7 english language arts -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_Mathematics,"number of students in grade 7 mathematics who are not from military families and exceeded the ca standard, divided by the total number of students in grade 7 mathematics;the number of students in grade 7 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 7 who are not from military families;the number of students in grade 7 who exceeded the ca math standard and are not from military families, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca math standard, divided by the total number of students in grade 7 who are not from military families" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_EnglishLanguageArts,"number of students in grade 8 english language arts who are not from military families and exceeded the ca standard divided by the total number of students in grade 8 english language arts;the number of students in grade 8 who are not from military families and exceeded the ca standard in english language arts, divided by the total number of students in grade 8 who are not from military families" -Percent_CA_StandardExceeded_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_Mathematics,"number of students in grade 8 mathematics who are not from military families and exceeded the ca standard, divided by the total number of students in grade 8 mathematics;the number of students in grade 8 mathematics who are not from military families and exceeded the ca standard, expressed as a percentage of the total number of students in grade 8 mathematics;the number of students in grade 8 who are not from military families and who exceeded the ca standard in mathematics, divided by the total number of students in grade 8 who are not from military families;the number of students in grade 8 who are not from military families and exceeded the ca math standard, divided by the total number of students in grade 8 who are not from military families" -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade11_Mathematics,"number of students in grade 11 who exceeded the ca standard in english and mathematics, divided by the total number of students in grade 11;number of students who exceeded the ca standard in english and mathematics in grade 11 as a fraction of the total number of students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade13_Mathematics,number of students who exceeded ca standards in english and mathematics in grade 13 divided by the total number of students in grade 13;number of students who exceeded the ca standard in english and mathematics in grade 13 divided by the total number of students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade3_Mathematics,number of students who exceeded the ca standard in english in grade 3 math as a fraction of the total number of students who took the test -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade4_Mathematics,number of students in grade 4 who exceeded the ca standard in english and mathematics as a fraction of the total number of students in grade 4 -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade5_Mathematics,number of students who exceeded the ca standard in english and mathematics in grade 5 divided by the total number of students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade6_Mathematics,number of students in grade 6 who exceeded the ca standard in english and mathematics divided by the total number of students in grade 6;number of students in grade 6 who exceeded ca standards in english and math divided by the total number of students in grade 6;number of students who exceeded ca standards in english and math in grade 6 divided by the total number of students in grade 6;students who exceeded ca standards in english and math in grade 6 as a percentage of all students in grade 6 -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade7_Mathematics,number of students who exceeded the ca standard in english and mathematics in grade 7 divided by the total number of students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_OnlyEnglish_SchoolGrade8_Mathematics,number of students who exceeded ca standards in english and math in grade 8 as a percentage of all students in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_EnglishLanguageArts,more students exceeded the ca standard in english language arts in grade 7 than declined to the state standard in the same subject and grade -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_EnglishLanguageArts,"number of students who are college graduates, in grade 11, and exceeded the ca standard in english language arts divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_Mathematics,"the number of students who exceeded the ca standard in mathematics in grade 11 and are college graduates divided by the total number of students;the ratio of students who exceeded the ca standard in mathematics in grade 11 and are college graduates to the total number of students;the number of students who are college graduates and exceeded the ca standard in mathematics in grade 11 divided by the total number of students;the number of students who are college graduates and who exceeded the ca standard in mathematics in school grade 11, divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_EnglishLanguageArts,"number of students who are college graduates, school grade 13, and exceeded the ca_standard in english language arts divided by the total number of students;the number of students who are college graduates, school grade 13, and exceeded the ca_standard in english language arts as a proportion of the total number of students;number of students who are college graduates and exceeded the ca standard in english language arts in grade 13 divided by the total number of students;number of students who are college graduates and exceeded the ca standard in english language arts in grade 13 as a percentage of the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_Mathematics,"number of students who are college graduates in grade 13 and exceeded the ca standard in mathematics, divided by the total number of students;percentage of students who are college graduates in grade 13 and exceeded the ca standard in mathematics, out of all students;the number of students who exceeded the ca standard in mathematics and are college graduates and in school grade 13 divided by the total number of students;the number of students who exceeded the ca standard in mathematics and are college graduates and in school grade 13, divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_EnglishLanguageArts,"the number of students who exceeded the ca_standard in english language arts in school grade 3 and whose parents are college graduates, divided by the total number of students in school grade 3;number of students who are college graduates and exceeded the ca_standard in english language arts in school grade 3 divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_Mathematics,number of students who exceeded the ca standard in mathematics in school grade 3 who are college graduates divided by the total number of students who exceeded the ca standard in mathematics in school grade 3;number of students who are college graduates and exceeded the ca standard in mathematics in school grade 3 divided by the total number of students;number of students who are college graduates and exceeded the ca_standard in mathematics in school grade 3 divided by the total number of students;number of students in grade 3 who exceeded the ca standard in mathematics who are college graduates divided by the total number of students in grade 3 -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_EnglishLanguageArts,number of students who are college graduates and exceeded the ca standard in english language arts in grade 4 divided by the total number of students;number of college graduates in grade 4 english language arts who exceeded the ca standard divided by the total number of students in grade 4 english language arts;share of college graduates in grade 4 english language arts who exceeded the ca standard;the number of students who are college graduates and exceeded the ca_standard in english language arts in school grade 4 divided by the total number of students -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_Mathematics,"number of students who are college graduates and exceeded the ca standard in mathematics in school grade 4 divided by the total number of students;number of students who are college graduates and exceeded the ca standard in mathematics in school grade 4 out of 100;the number of students who are college graduates and exceeded the ca standard in mathematics in school grade 4, expressed as a fraction of the total number of students;number of students who are college graduates and exceeded the ca standard in mathematics in grade 4 divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_EnglishLanguageArts,number of students in grade 5 who exceeded the ca standard in english language arts and are college graduates divided by the total number of students in grade 5;number of students who exceeded the ca standard in english language arts in grade 5 and whose parents are college graduates as a percentage of the total number of students who exceeded the ca standard in english language arts in grade 5;number of students who are college graduates and exceeded the ca_standard in english language arts in school grade 5 divided by the total number of students -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_Mathematics,"number of college-graduate students who exceeded the ca standard in mathematics in grade 5 divided by the total number of college-graduate students in grade 5;the number of students who exceeded the ca standard in mathematics in school grade 5 and whose parents are college graduates, divided by the total number of students in school grade 5;the number of students who are college graduates and exceeded the ca_standard in mathematics in school grade 5, divided by the total number of students;number of students who are college graduates and exceeded the ca standard in mathematics in grade 5 as a fraction of the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_EnglishLanguageArts,number of students who are college graduates and exceeded the ca standard in english language arts in grade 6 divided by the total number of students in grade 6;number of students who exceeded the ca standard in english language arts in grade 6 who are college graduates divided by the total number of students who exceeded the ca standard in english language arts in grade 6;number of students who are college graduates and exceeded the ca_standard in english language arts in grade 6 as a fraction of the total number of students;number of students who are college graduates and exceeded the ca_standard in english language arts in grade 6 divided by the total number of students in grade 6 -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_Mathematics,"number of students in grade 6 who exceeded the ca mathematics standard and have a college-educated parent, divided by the total number of students in grade 6;number of students who are college graduates and exceeded the ca_standard in mathematics in grade 6 divided by the total number of students;number of students who are college graduates and exceeded the ca standard in mathematics in grade 6 divided by the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_EnglishLanguageArts,number of students who are college graduates and exceeded the ca standard in english language arts in grade 7 divided by the total number of students;number of students who are college graduates and exceeded the ca standard in english language arts in grade 7 divided by the total number of students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_Mathematics,"the number of students who are college graduates and exceeded the ca_standard in mathematics in school grade 7, as a percentage of all students in school grade 7;the number of students in school grade 7 who are college graduates and exceeded the ca_standard in mathematics, divided by the total number of students in school grade 7;number of students who exceeded ca standards in mathematics in grade 7 who are college graduates divided by the total number of students who exceeded ca standards in mathematics in grade 7;number of students who are college graduates and exceeded the ca standard in mathematics in grade 7 as a percentage of the total number of students" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_EnglishLanguageArts,"the number of students who exceeded the ca standard in english language arts at grade 8 and are college graduates, divided by the total number of students at grade 8;number of students who are college graduates and exceeded the ca standard in english language arts in grade 8 divided by the total number of students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_Mathematics,"number of students who exceeded the ca standard in mathematics in grade 8 and whose parents are college graduates divided by the total number of students in grade 8;number of students who are college graduates and exceeded the ca standard in mathematics in grade 8 as a fraction of the total number of students;the number of college graduates among students who exceeded the ca standard in mathematics in school grade 8, divided by the total number of students who exceeded the ca standard in mathematics in school grade 8;the number of students who exceeded the ca standard in mathematics in school grade 8 who are college graduates, divided by the number of students who are college graduates" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_Mathematics,"number of students who exceeded the ca standard in grade 11 mathematics and are in graduate school or post graduate school, divided by the total number of students in graduate school or post graduate school;share of students in graduate school or post graduate school who exceeded the ca standard in grade 11 mathematics" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_EnglishLanguageArts,"the number of students who exceeded the ca standard in english language arts in graduate school or post-graduate school, grade 13, divided by the total number of students in graduate school or post-graduate school, grade 13" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_Mathematics,"number of students who exceeded the ca standard in mathematics in graduate school or post-graduate school, grade 13, divided by the total number of students in graduate school or post-graduate school, grade 13" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_EnglishLanguageArts,"number of students in graduate or postgraduate school who exceeded the ca standard in english language arts in grade 3, divided by the total number of students in graduate or postgraduate school;what is the number of students in graduate school or post-graduate programs who exceeded the ca standard in english language arts in grade 3, divided by the total number of students in those programs?" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_Mathematics,"number of students in graduate or postgraduate school who exceeded the ca standard in mathematics, grade 3, divided by the total number of students in graduate or postgraduate school" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_EnglishLanguageArts,fraction of students in graduate school or post-graduate programs who exceeded the ca standard in english language arts in grade 4;percentage of students in graduate school or post-graduate programs who exceeded the ca standard in english language arts in grade 4;number of students in graduate school or post-graduate programs who exceeded the ca standard in english language arts in grade 4 divided by the total number of students in graduate school or post-graduate programs -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_EnglishLanguageArts,number of students in graduate school or post-graduate school who exceeded the ca standard in english language arts in grade 5 divided by the total number of students in graduate school or post-graduate school in grade 5;number of students in graduate school or post-graduate school who exceeded the ca standard in english language arts in grade 5 expressed as a percentage of the total number of students in graduate school or post-graduate school in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_EnglishLanguageArts,"number of students in grade 6 who exceeded the ca standard in english language arts and are in graduate school or post-graduate school, divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_EnglishLanguageArts,"the number of students in grade 7 who exceeded the ca standard in english language arts and are in graduate school or post-graduate school, divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_EnglishLanguageArts,number of students in grade 8 who exceeded the ca standard in english language arts who are enrolled in graduate school or post-graduate school divided by the total number of students in grade 8 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts in 11th grade who are high school graduates or have an equivalency degree, divided by the total number of students in 11th grade;number of students in grade 11 who exceeded the ca standard in english language arts and are high school graduates or have equivalency degrees divided by the total number of students in grade 11;fraction of students who graduated from high school or obtained an equivalency degree and exceeded the ca standard in english language arts in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_Mathematics,"number of 11th grade students who are high school graduates (including equivalency) and exceeded the ca standards in mathematics, divided by the total number of 11th grade students;number of 11th grade students who are high school graduates or have equivalency degrees and exceeded the ca standard in mathematics divided by the total number of 11th grade students;number of 11th grade students who are high school graduates or have equivalency degrees and exceeded the ca mathematics standard divided by the total number of 11th grade students;percentage of students who exceeded the ca standard in mathematics in 11th grade, who are high school graduates or have an equivalency degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_EnglishLanguageArts,"proportion of students who exceeded the ca_standard in english language arts, who graduated from high school or obtained an equivalency degree, and are in grade 13;percent of students who exceeded the ca_standard in english language arts, who graduated from high school or obtained an equivalency degree, and are in grade 13;fraction of students who exceeded the ca standard in english language arts, who graduated from high school or obtained an equivalency degree, and are in grade 13;number of students who exceeded the ca standard in english language arts, who graduated from high school or obtained an equivalency degree, and are in grade 13, divided by the total number of students who graduated from high school or obtained an equivalency degree and are in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_Mathematics,"fraction of students who exceeded the ca standard in mathematics, who graduated from high school or obtained an equivalency degree, and are in grade 13;number of students who exceeded the ca standard in mathematics, who graduated from high school or obtained an equivalency degree, and are in grade 13, divided by the total number of students;percentage of students who exceeded the ca standard in mathematics, who graduated from high school or obtained an equivalency degree, and are in grade 13, out of all students;number of students who exceeded the ca_standard in mathematics, who are high school graduates or have an equivalency degree, in school grade 13, divided by the total number of students who are high school graduates or have an equivalency degree, in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_EnglishLanguageArts,"number of students who are high school graduates or have equivalent qualifications and exceeded the ca standard in english language arts in grade 3, as a fraction of the total number of students in grade 3;share of students who are high school graduates or have equivalent qualifications and exceeded the ca standard in english language arts in grade 3;the number of students in school grade 3 who exceeded the ca_standard in english language arts and are high school graduates or have an equivalency degree, divided by the total number of students in school grade 3;fraction of students who exceeded the ca standard in english language arts in grade 3 who are high school graduates or have an equivalency degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_Mathematics,"fraction of students who exceeded the ca standard in mathematics in grade 3 who are high school graduates or have an equivalency degree;percentage of students who exceeded the ca standard in mathematics in grade 3 who are high school graduates or have an equivalency degree;number of students who exceeded the ca standard in mathematics in grade 3 who are high school graduates or have an equivalency degree, divided by the total number of students who exceeded the ca standard in mathematics in grade 3;proportion of students who exceeded the ca standard in mathematics in grade 3 who are high school graduates or have an equivalency degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_EnglishLanguageArts,number of 4th grade students who are high school graduates or have an equivalency diploma and exceeded the ca standard in english language arts divided by the total number of 4th grade students -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_Mathematics,"number of students in grade 4 who exceeded the ca standard in mathematics who are high school graduates or have an equivalency degree divided by the total number of students in grade 4;fraction of students who exceeded the ca standard in mathematics in school grade 4, who are high school graduates or have an equivalency degree;percentage of students who exceeded the ca standard in mathematics in school grade 4, who are high school graduates or have an equivalency degree;number of students who exceeded the ca standard in mathematics in school grade 4, who are high school graduates or have an equivalency degree, divided by the total number of students in school grade 4" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts in school grade 5, divided by the number of students who are high school graduates or have equivalent qualifications" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_Mathematics,"the number of students who exceeded the ca standard in mathematics in grade 5, who are high school graduates or have equivalency degrees, divided by the total number of students in grade 5;number of 5th grade students who are high school graduates or have an equivalency diploma and exceeded the ca math standard divided by the total number of 5th grade students;number of 5th grade students who are high school graduates or have equivalency degrees and exceeded the ca math standard divided by the total number of 5th grade students;number of students in grade 5 who are high school graduates or have an equivalency degree and exceeded the ca standard in mathematics divided by the total number of students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 who are high school graduates or have equivalent qualifications and exceeded the ca standard in english language arts divided by the total number of students in grade 6;portion of students in grade 6 who are high school graduates or have equivalent qualifications and exceeded the ca standard in english language arts;number of students in 6th grade who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts divided by the total number of students in 6th grade -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_Mathematics,percentage of students who exceeded the ca standard in mathematics in grade 6 who are high school graduates or have an equivalency degree;number of students who exceeded the ca standard in mathematics in grade 6 who are high school graduates or have an equivalency degree divided by the total number of students who exceeded the ca standard in mathematics in grade 6;proportion of students who exceeded the ca standard in mathematics in grade 6 who are high school graduates or have an equivalency degree;number of 6th grade students who are high school graduates or have an equivalency degree and exceeded the ca math standard divided by the total number of 6th grade students -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_EnglishLanguageArts,"fraction of students who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts in grade 7;number of 7th grade students who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts divided by the total number of 7th grade students;percentage of students who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts in grade 7;number of students who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts in grade 7, divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_Mathematics,"the number of students who exceeded the ca standard in mathematics in grade 7, who are high school graduates or have equivalent qualifications, divided by the total number of students in grade 7;the percentage of students who exceeded the ca standard in mathematics in grade 7 and are high school graduates or have an equivalency degree;the number of students who exceeded the ca standard in mathematics in grade 7 and are high school graduates or have an equivalency degree, divided by the total number of students in grade 7;number of students in grade 7 who are high school graduates or have an equivalency degree and exceeded the ca standard in mathematics divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_EnglishLanguageArts,"portion of 8th grade students who are high school graduates or have equivalency degrees and exceeded the ca standard in english language arts;fraction of students who are high school graduates or have equivalent qualifications, in grade 8, who exceeded the ca standard in english language arts;the percentage of students who exceeded the ca standard in english language arts in 8th grade and are high school graduates or have an equivalency degree;the number of students who exceeded the ca standard in english language arts in 8th grade and are high school graduates or have an equivalency degree, as a percentage of all students in 8th grade" -Percent_CA_StandardExceeded_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_Mathematics,the percentage of students who exceeded the ca standard in mathematics in 8th grade and are high school graduates or have an equivalency degree;the number of students who exceeded the ca standard in mathematics in 8th grade and are high school graduates or have an equivalency degree as a percentage of the total number of students;the fraction of students who exceeded the ca standard in mathematics in 8th grade and are high school graduates or have an equivalency degree;the proportion of students who exceeded the ca standard in mathematics in 8th grade and are high school graduates or have an equivalency degree -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_EnglishLanguageArts,"the number of students who exceeded the ca_standard in english language arts, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13;number of students who exceeded the ca standard in english language arts, who are less than high school graduates and in school grade 13, divided by the total number of students who are less than high school graduates and in school grade 13;count of student: ca_standard exceeded, less than high school graduate, school grade 13, english language arts (as fraction of count student parent less than high school graduate school grade 13 english language arts)" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_Mathematics,"number of students who exceeded the ca standard in mathematics, who are less than high school graduates, and are in grade 13, divided by the total number of students who are less than high school graduates and are in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts in school grade 3, divided by the number of students whose parents did not graduate from high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_Mathematics,"number of students who exceeded the ca standard in mathematics in grade 3 and whose parents have less than a high school diploma, divided by the total number of students in grade 3;the number of students who exceeded the ca standard in mathematics in school grade 3 and whose parents have not completed high school;fraction of students who exceeded the ca standard in mathematics in grade 3, whose parents did not graduate from high school;fraction of students who exceeded the ca standard in mathematics in grade 3, whose parents did not complete high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_EnglishLanguageArts,"fraction of students who exceeded the ca standard in english language arts in grade 4, who have parents who are less than high school graduates;fraction of students who exceeded the ca standard in english language arts in grade 4, who have parents with less than a high school diploma;fraction of students who exceeded the ca standard in english language arts in grade 4, whose parents have less than a high school diploma" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_Mathematics,"number of students who exceeded the ca standard in mathematics in grade 4, divided by the number of students who have parents who did not graduate from high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_EnglishLanguageArts,"the number of students who exceeded the ca standard in english language arts in school grade 5 and whose parents are not high school graduates, divided by the total number of students in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_Mathematics,"number of students who exceeded the ca standard in mathematics in grade 5, out of all students whose parents are less than high school graduates;fraction of students who exceeded ca standards in math in grade 5, who have parents who are less than high school graduates;number of students in grade 5 who exceeded ca standards in math and have parents who are less than high school graduates, as a percentage of all students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_Mathematics,the number of students who exceeded the ca standard in mathematics in grade 6 and have a parent who is not a high school graduate -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_Mathematics,"number of students in grade 7 who exceeded the ca standard in mathematics, divided by the number of students in grade 7 whose parents have not graduated from high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_EnglishLanguageArts,"number of students who exceeded the ca standard in english language arts in grade 8, out of all students who have not graduated from high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_Mathematics,"fraction of students who exceeded the ca standard in mathematics in grade 8, out of all students who have not graduated from high school" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_Mathematics,"fraction of students who exceeded the ca standard in mathematics in grade 11 and have some college but no degree;number of students who exceeded the ca standard in mathematics in grade 11 and have some college but no degree, as a proportion of all students" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_EnglishLanguageArts,"the share of students who have some college but no degree, are in grade 13, and exceeded the ca standard in english language arts" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_Mathematics,"fraction of students who exceeded ca standards in mathematics, with some college but no degree, in grade 13;percentage of students who exceeded ca standards in mathematics, with some college but no degree, in grade 13, out of all students" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_EnglishLanguageArts,share of students in school grade 3 with some college but no degree who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_Mathematics,part of students who exceeded ca standards in mathematics in school grade 3 with some college but no degree;share of students who exceeded ca standards in mathematics in school grade 3 with some college but no degree -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_Mathematics,"percent of students who exceeded the ca standard in mathematics in school grade 4 with some college but no degree, out of all students in that group;fraction of students who exceeded ca standards in mathematics in school grade 4, with some college but no degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_EnglishLanguageArts,"students who exceeded ca standards in english language arts in school grade 5 with some college but no degree, as a percentage of all students in school grade 5 with some college but no degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_Mathematics,share of students who exceeded ca standards in mathematics in school grade 5 with some college but no degree -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_Mathematics,"fraction of students who exceeded ca standards in math in school grade 6, with some college but no degree" -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_Mathematics,"fraction of students who exceeded the ca standard in mathematics in grade 8 and have some college but no degree;fraction of students who exceeded the ca standard in mathematics in grade 8 and have some college but no degree, out of all students" -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"number of 11th grade english learners who are reclassified as fluent proficient in english language arts and exceed the ca standard, divided by the total number of 11th grade english learners" -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_Mathematics,"the number of 5th grade english learners who were reclassified as fluent proficient in mathematics and exceeded the ca standard, divided by the total number of 5th grade english learners" -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_Mathematics,"the number of students who exceeded the ca_standard in mathematics while reclassified as fluent proficient english learners in school grade 6 divided by the total number of students who were reclassified as fluent proficient english learners in school grade 6;the number of students who were reclassified as fluent proficient english learners in grade 6 and exceeded the ca_standard in mathematics, divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts,number of 8th grade english learners who are reclassified as fluent proficient in english language arts and exceed the ca standard divided by the total number of 8th grade english learners -Percent_CA_StandardExceeded_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_Mathematics,"the number of students who were reclassified as fluent proficient english learners in grade 8 and exceeded the ca standard in mathematics, divided by the total number of students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts,number of 11th grade students who exceeded the ca english language arts standard divided by the total number of 11th grade students;number of students in grade 11 who exceeded the ca standard in english language arts divided by the total number of students in grade 11;the number of students in grade 11 who exceeded the ca standard in english language arts as a percentage of the total number of students in grade 11 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_HavingHome,percentage of 11th grade english language arts students with a home who exceeded the ca standard;number of 11th grade english language arts students with a home who exceeded the ca standard divided by the total number of 11th grade english language arts students with a home;proportion of 11th grade english language arts students with a home who exceeded the ca standard;share of 11th grade english language arts students with a home who exceeded the ca standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_Homeless,"the percentage of homeless students in grade 11 who exceeded the ca_standard in english language arts;the number of homeless students in grade 11 who exceeded the ca_standard in english language arts, divided by the total number of homeless students in grade 11;the rate of homeless students in grade 11 who exceeded the ca_standard in english language arts;number of 11th grade english language arts students who exceeded the ca standard and are homeless, divided by the total number of 11th grade english language arts students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 11 who exceeded the ca standard in english language arts and are not economically disadvantaged;percentage of students in grade 11 who exceeded the ca standard in english language arts and are not economically disadvantaged;number of students in grade 11 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 11;share of students in grade 11 who exceeded the ca standard in english language arts and are not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotFoster,"the number of students in grade 11 who exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 11;the percentage of students in grade 11 who exceeded the ca standard in english language arts and are not foster children;the number of students in grade 11 who exceeded the ca standard in english language arts and are not foster children, divided by the total number of students in grade 11;the share of students in grade 11 who exceeded the ca standard in english language arts and are not foster children" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotMigrant,"the number of students in grade 11 who exceeded the ca standard in english language arts and were not migrants, divided by the total number of students in grade 11;number of 11th grade students who exceeded the ca standard in english language arts and are not migrants divided by the total number of 11th grade students;the number of students who exceeded the ca standard in english language arts in grade 11 who were not migrant, divided by the total number of students in grade 11 who were not migrant;the number of students in grade 11 who exceeded the ca standard in english language arts and are not migrants, divided by the total number of students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics,fraction of students in grade 11 who exceeded the ca mathematics standard;number of students in grade 11 who exceeded the ca mathematics standard divided by the total number of students in grade 11;percent of students in grade 11 who exceeded the ca mathematics standard;fraction of students in 11th grade math who exceeded the ca standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_HavingHome,the number of students in grade 11 who exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 11;number of 11th grade students who have a home and exceeded the ca standard in mathematics divided by the total number of 11th grade students who have a home;fraction of 11th grade math students with a home who exceeded the ca standard;fraction of students in 11th grade math with a home who exceeded the ca standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_Homeless,"fraction of homeless 11th grade students who exceeded ca math standards;fraction of homeless students who exceeded ca standards in 11th grade math;fraction of students who exceeded ca standards in 11th grade math and are homeless;the number of homeless 11th graders who exceeded the ca math standard, divided by the total number of homeless 11th graders" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 11 who exceeded the ca standard in mathematics and were not economically disadvantaged;the proportion of students in grade 11 who exceeded the ca standard in mathematics and were not economically disadvantaged;the number of students in grade 11 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 11 who were not economically disadvantaged;the number of students in grade 11 who exceeded the ca standard in mathematics and were not economically disadvantaged, expressed as a percentage of the total number of students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_NotFoster,"number of students in grade 11 who exceeded the ca standard in mathematics and were not in foster care divided by the total number of students in grade 11;the number of students who exceeded the ca standard in mathematics in grade 11 and were not in foster care, divided by the total number of students in grade 11;number of students in grade 11 who exceeded the ca standard in mathematics and are not foster children, as a proportion of the total number of students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade11_Mathematics_NotMigrant,"the number of students in grade 11 who are not migrants and exceeded the ca standard in mathematics, divided by the total number of students in grade 11 who are not migrants;the fraction of students in grade 11 who are not migrants and exceeded the ca standard in mathematics, out of all students in grade 11;the number of students in grade 11 who are not migrants and exceeded the ca standard in mathematics, as a percentage of all students in grade 11;number of 11th grade students who exceeded the ca math standard and are not migrants, divided by the total number of 11th grade students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts,number of students in grade 13 who exceeded the ca standard in english language arts divided by the total number of students in grade 13;number of students in grade 13 who exceeded the ca standard in english language arts as a percentage of the total number of students in grade 13;number of students in grade 13 who exceeded the ca standard in english language arts as a fraction of the total number of students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Foster, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_HavingHome,"the percentage of students in grade 13 who exceeded the ca standard in english language arts and have a home is;number of students in 13th grade english language arts who exceeded the ca standard and have a home divided by the total number of students in 13th grade english language arts;the number of grade 13 students who exceeded the ca standard in english language arts and have a home, divided by the total number of grade 13 students;the number of grade 13 students who exceeded the ca standard in english language arts and have a home, expressed as a percentage of the total number of grade 13 students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Homeless,"the number of homeless students in grade 13 who exceeded the ca standard in english language arts divided by the total number of homeless students in grade 13;the number of homeless students in grade 13 who exceeded the ca standard in english language arts expressed as a percentage of the total number of homeless students in grade 13;the number of homeless students in grade 13 who exceeded the ca standard in english language arts expressed as a percentage;the number of homeless students who exceeded the ca standard in english language arts in grade 13, divided by the total number of homeless students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Migrant,"3 the number of students who exceeded the ca standard in english language arts in grade 13 who were also migrants, divided by the total number of students who exceeded the ca standard in english language arts in grade 13;the number of students who exceeded the ca standard in english language arts in grade 13 who were also migrants, divided by the total number of students who exceeded the ca standard in english language arts in grade 13;the number of students who exceeded the ca standard in english language arts in school grade 13 who were also migrants divided by the total number of students who exceeded the ca standard in english language arts in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students who exceeded ca standards in english language arts in grade 13 who were not economically disadvantaged;percentage of students who exceeded ca standards in english language arts in grade 13 who were not economically disadvantaged;number of students who exceeded ca standards in english language arts in grade 13 who were not economically disadvantaged divided by the total number of students in grade 13 who were not economically disadvantaged;proportion of students who exceeded ca standards in english language arts in grade 13 who were not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotFoster,"the number of students who exceeded the ca standard in english language arts in grade 13 and were not foster children, divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in english language arts and are not foster children divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in english language arts and are not foster children as a percentage of the total number of students in grade 13;number of students who exceeded the ca standard in english language arts in grade 13 and were not in foster care divided by the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotMigrant,"number of students who exceeded the ca standard in english language arts in grade 13 who were not migrants divided by the total number of students in grade 13 who were not migrants;the number of students in grade 13 who exceeded the ca standard in english language arts and are not migrant, divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in english language arts and were not migrants, divided by the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics,"fraction of students in grade 13 who exceeded the ca standard in mathematics;number of students in grade 13 who exceeded the ca standard in mathematics divided by the total number of students in grade 13;the number of grade 13 students who exceeded the ca mathematics standard, as a fraction of the total number of grade 13 students;fraction of students in grade 13 who exceeded the ca math standard" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_Foster,number of students in grade 13 who exceeded the ca math standard who are foster students divided by the total number of students in grade 13 who exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_HavingHome,"the number of students in grade 13 who exceeded the ca standard in mathematics and have a home, divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and have a home, as a percentage of the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and have a home, as a fraction of the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 13 who have a home" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_Homeless,"number of homeless students in grade 13 who exceeded the ca standard in mathematics divided by the total number of homeless students in grade 13;what number of homeless students in grade 13 exceeded the ca standard in mathematics, as a fraction of the total number of homeless students in grade 13?;fraction of homeless students who exceeded the ca standard in grade 13 mathematics;fraction of students who exceeded the ca standard in grade 13 mathematics and are homeless" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_Migrant,the number of students in grade 13 who are migrants and exceeded the ca standard in mathematics divided by the total number of students in grade 13;the number of migrant students who exceeded the ca standard in mathematics in grade 13 as a percentage of the total number of students who exceeded the ca standard in mathematics in grade 13;number of students in grade 13 who exceeded the ca standard in mathematics and are also migrants divided by the total number of students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"fraction of students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged;number of students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 13 who were not economically disadvantaged;the number of students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged, expressed as a percentage of the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_NotFoster,"number of students in grade 13 who exceeded the ca standard in mathematics and are not foster children divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade13_Mathematics_NotMigrant,the number of students in grade 13 who exceeded the ca standard in mathematics and were not migrants divided by the total number of students in grade 13;the number of students in grade 13 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 13;fraction of students who exceeded ca standards in grade 13 mathematics and are not migrants;percentage of students who exceeded ca standards in grade 13 mathematics and are not migrants -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts,number of students who exceeded the ca standard in english language arts in grade 3 divided by the total number of students in grade 3;percentage of students who exceeded the ca standard in english language arts in grade 3;number of students in grade 3 who exceeded the ca standard in english language arts divided by the total number of students in grade 3;percentage of students in grade 3 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_HavingHome,"the number of students in grade 3 who exceeded the ca standard in english language arts and have a home, divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in english language arts and have a home divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in english language arts and have a home expressed as a percentage of the total number of students in grade 3;the proportion of students in grade 3 who have a home and exceeded the ca standard in english language arts" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_Homeless,"the number of students in grade 3 who exceeded the ca standard in english language arts and are homeless, divided by the total number of students in grade 3;the fraction of students in grade 3 who exceeded the ca standard in english language arts and are homeless, out of all students in grade 3;the percentage of students in grade 3 who are homeless and exceeded the ca standard in english language arts;portion of students in grade 3 who exceeded the ca standard in english language arts who are homeless" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 3 who exceeded the ca standard in english language arts and are not economically disadvantaged;percentage of students in grade 3 who exceeded the ca standard in english language arts and are not economically disadvantaged;number of students in grade 3 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 3;share of students in grade 3 who exceeded the ca standard in english language arts and are not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotFoster,"the number of students in grade 3 who exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 3;the share of students in grade 3 who exceeded the ca standard in english language arts and were not in foster care;fraction of students in grade 3 who exceeded the ca standard in english language arts and are not foster children;percentage of students in grade 3 who exceeded the ca standard in english language arts and are not foster children" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotMigrant,"the number of students in grade 3 who exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 3;the fraction of students in grade 3 who exceeded the ca standard in english language arts and were not migrant, out of all students in grade 3;number of students in grade 3 who exceeded the ca standard in english language arts and are not migrants divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in english language arts and are not migrant divided by the total number of students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics,number of students in grade 3 who exceeded the ca mathematics standard as a percentage of the total number of students in grade 3;number of students in grade 3 who exceeded the ca mathematics standard divided by the total number of students in grade 3;number of students in grade 3 who exceeded the ca mathematics standard expressed as a fraction;fraction of students in grade 3 who exceeded the ca standard in mathematics -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_HavingHome,"the number of students in grade 3 who exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 3;the number of students in grade 3 who have a home and exceeded the ca standard in mathematics divided by the total number of students in grade 3 who have a home;number of students in grade 3 who exceeded the ca standard in mathematics and have a home, divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in mathematics and have a home, expressed as a percentage of the total number of students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_Homeless,"the number of homeless students in grade 3 who exceeded the ca math standard, divided by the total number of homeless students in grade 3;the number of homeless students in grade 3 who exceeded the ca standard in mathematics, divided by the total number of homeless students in grade 3;fraction of grade 3 students who exceeded the ca standard in mathematics and are homeless;fraction of homeless students who exceeded the ca standard in mathematics in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,fraction of students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged;percentage of students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged;number of students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of students in grade 3 who are not economically disadvantaged;proportion of students in grade 3 who exceeded the ca standard in mathematics and are not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_NotFoster,"the number of students in grade 3 who are not in foster care and exceeded the ca math standard, divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca math standard and are not in foster care, as a percentage of the total number of students in grade 3;the number of students in grade 3 who exceeded the ca math standard and are not in foster care, as a proportion of the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in mathematics and are not in foster care divided by the total number of students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade3_Mathematics_NotMigrant,"number of students in grade 3 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in mathematics and were not migrants, divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 3;the number of students in grade 3 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts,percentage of students in grade 4 who exceeded the ca standard in english language arts;number of students in grade 4 who exceeded the ca standard in english language arts divided by the total number of students in grade 4;number of fourth grade students who exceeded the ca standard in english language arts divided by the total number of fourth grade students;portion of students in grade 4 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_HavingHome,percentage of students in grade 4 who exceeded the ca standard in english language arts and have a home;fraction of students in grade 4 who exceeded the ca standard in english language arts and have a home;portion of students in grade 4 who exceeded the ca standard in english language arts and have a home;proportion of students in grade 4 who exceeded the ca standard in english language arts and have a home -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_Homeless,fraction of homeless students in grade 4 who exceeded ca standards in english language arts;number of homeless students in grade 4 who exceeded ca standards in english language arts as a fraction of the total number of homeless students in grade 4;percentage of homeless students in grade 4 who exceeded ca standards in english language arts;percent of homeless students in grade 4 who exceeded ca standards in english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of students in grade 4 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of students in grade 4;share of students in grade 4 who exceeded the ca standard in english language arts and were not economically disadvantaged;the number of students in grade 4 who exceeded the ca standard in english language arts divided by the total number of students in grade 4 who were not economically disadvantaged;fraction of students in grade 4 who exceeded the ca standard in english language arts and are not economically disadvantaged -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotFoster,"number of 4th grade students who exceeded the ca standard in english language arts and are not in foster care divided by the total number of 4th grade students;the number of students in grade 4 who exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 4;number of students in grade 4 who exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 4;share of students in grade 4 who exceeded the ca standard in english language arts and were not in foster care" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotMigrant,"the number of students in grade 4 who exceeded the ca standard in english language arts and were not migrants, divided by the total number of students in grade 4;the number of students in grade 4 who exceeded the ca standard in english language arts and were not migrants, as a percentage of the total number of students in grade 4;fraction of students who exceeded the ca standard in english language arts in grade 4, not including migrant students;percentage of students who exceeded the ca standard in english language arts in grade 4, not including migrant students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics,fraction of students in grade 4 who exceeded the ca math standard;percentage of grade 4 students who exceeded the ca math standard;number of grade 4 students who exceeded the ca math standard divided by the total number of grade 4 students;proportion of grade 4 students who exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_HavingHome,"the number of students in grade 4 who have a home and exceeded the ca mathematics standard, divided by the total number of students in grade 4;the number of students in grade 4 who have a home and exceeded the ca mathematics standard, as a percentage of the total number of students in grade 4;fraction of students in grade 4 who exceeded the ca math standard and have a home;percentage of students in grade 4 who exceeded the ca math standard and have a home" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_Homeless,"fraction of homeless students in grade 4 who exceeded the ca standard in mathematics;fraction of grade 4 students who exceeded the ca standard in mathematics and are homeless;fraction of students in grade 4 who are homeless and exceeded the ca standard in mathematics;fraction of students in grade 4 who exceeded the ca standard in mathematics, out of those who are homeless" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 4 who exceeded the ca standard in mathematics and were not economically disadvantaged;the proportion of students in grade 4 who exceeded the ca standard in mathematics and were not economically disadvantaged;the number of students in grade 4 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 4 who were not economically disadvantaged;the fraction of students in grade 4 who exceeded the ca standard in mathematics and were not economically disadvantaged, out of all students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_NotFoster,"the number of students in grade 4 who exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 4;number of students in grade 4 who exceeded the ca standard in mathematics and are not foster children divided by the total number of students in grade 4;number of students in grade 4 who exceeded the ca standard in mathematics and were not in foster care divided by the total number of students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade4_Mathematics_NotMigrant,"the number of students in grade 4 who exceeded the ca standard in mathematics and are not migrants, divided by the total number of students in grade 4;the number of students in grade 4 who exceeded the ca mathematics standard and were not migrants, divided by the total number of students in grade 4 who were not migrants;the fraction of students in grade 4 who exceeded the ca mathematics standard and were not migrants, out of all students in grade 4;the number of students in school grade 4 who exceeded the ca standard in mathematics and are not migrants, divided by the total number of students in school grade 4" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts,number of 5th grade students who exceeded the ca standard in english language arts as a fraction of the total number of 5th grade students who took the test;number of 5th grade students who exceeded the ca standard in english language arts divided by the total number of 5th grade students;number of students in grade 5 who exceeded the ca standard in english language arts as a fraction of the total number of students in grade 5;percentage of students in grade 5 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_HavingHome,"number of 5th grade students who exceeded the ca standard in english language arts and have a home divided by the total number of 5th grade students;the percentage of students in grade 5 who exceeded the ca standard in english language arts and have a home;the number of students in grade 5 who exceeded the ca standard in english language arts and have a home, divided by the total number of students in grade 5;the share of students in grade 5 who exceeded the ca standard in english language arts and have a home" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_Homeless,"how many homeless students in grade 5 exceeded the ca standard in english language arts, as a fraction of the total number of homeless students in grade 5?;what number of homeless students in grade 5 exceeded the ca english language arts standard, as a fraction of the total number of homeless students in grade 5?;what number of homeless students in grade 5 exceeded the ca english language arts standard, as a percentage of the total number of students in grade 5?;the percentage of homeless students in grade 5 who exceeded the ca standard in english language arts" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in grade 5 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of students in grade 5;number of students in grade 5 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of students in grade 5;fraction of students in grade 5 who exceeded the ca standard in english language arts and are not economically disadvantaged;percentage of students in grade 5 who exceeded the ca standard in english language arts and are not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotFoster,the number of students in grade 5 who exceeded the ca standard in english language arts divided by the total number of students in grade 5 who are not in foster care;fraction of students in grade 5 who exceeded the ca standard in english language arts and are not foster children;percentage of students in grade 5 who exceeded the ca standard in english language arts and are not foster children;number of students in grade 5 who exceeded the ca standard in english language arts and are not foster children divided by the total number of students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotMigrant,"the number of students in grade 5 who exceeded the ca standard in english language arts and were not migrants as a proportion of the total number of students in grade 5;the number of students in grade 5 who exceeded the ca standard in english language arts and were not migrants, divided by the total number of students in grade 5;the number of students in grade 5 who exceeded the ca_standard in english language arts and were not migrants, divided by the total number of students in grade 5;the fraction of students in grade 5 who exceeded the ca_standard in english language arts and were not migrants, out of all students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics,number of 5th grade students who exceeded the ca mathematics standard divided by the total number of 5th grade students;the number of students in grade 5 who exceeded the ca mathematics standard as a fraction of the total number of students in grade 5;the number of students in grade 5 who exceeded the ca mathematics standard as a percentage of the total number of students in grade 5;number of 5th grade students who exceeded the ca math standard as a fraction of the total number of 5th grade students -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"what number of economically disadvantaged 5th grade students in california exceeded the ca math standard, as a fraction of the total number of economically disadvantaged 5th grade students in california?" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_HavingHome,"the number of 5th grade students who have a home and exceeded the ca standard in mathematics, divided by the total number of 5th grade students;number of 5th grade students who exceeded the ca standard in mathematics and have a home divided by the total number of 5th grade students;the fraction of students in grade 5 who have a home and exceeded the ca standard in mathematics;the proportion of students in grade 5 who have a home and exceeded the ca standard in mathematics" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_Homeless,"the number of homeless students in grade 5 who exceeded the ca standard in mathematics divided by the total number of homeless students in grade 5;the number of students who exceeded the ca standard in mathematics in grade 5, who are homeless, as a fraction of the total number of students in grade 5 who are homeless;the number of homeless students in grade 5 who exceeded the ca standard in mathematics, divided by the total number of homeless students in grade 5;the number of homeless students in grade 5 who exceeded the ca standard in mathematics, expressed as a percentage of the total number of students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,fraction of students in grade 5 who exceeded the ca standard in mathematics and were not economically disadvantaged;percentage of students in grade 5 who exceeded the ca standard in mathematics and were not economically disadvantaged;number of students in grade 5 who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of students in grade 5;percent of students in grade 5 who exceeded the ca standard in mathematics and were not economically disadvantaged out of all students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_NotFoster,"number of students in grade 5 who exceeded the ca standard in mathematics and are not foster children divided by the total number of students in grade 5;the number of students in grade 5 who exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 5;number of students in grade 5 who exceeded the ca standard in mathematics and are not foster children, divided by the total number of students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade5_Mathematics_NotMigrant,"number of students in grade 5 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 5;number of 5th grade students who exceeded the ca math standard and are not migrant divided by the total number of 5th grade students who are not migrant;the number of students in grade 5 who exceeded the ca standard in mathematics and are not migrants, divided by the total number of students in grade 5;number of 5th grade students who exceeded the ca math standard and are not migrants divided by the total number of 5th grade students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 who exceeded the ca standard in english language arts divided by the total number of students in grade 6;number of students in grade 6 who exceeded the ca standard in english language arts expressed as a percentage of the total number of students in grade 6;number of students in grade 6 who exceeded the ca standard in english language arts as a percentage of the total number of students in grade 6;number of 6th grade students who exceeded the ca standard in english language arts divided by the total number of 6th grade students -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_HavingHome,"the percentage of students in grade 6 who exceeded the ca standard in english language arts and have a home;the number of students in grade 6 who exceeded the ca standard in english language arts and have a home, divided by the total number of students in grade 6;the share of students in grade 6 who exceeded the ca standard in english language arts and have a home;the number of students in grade 6 who exceeded the ca standard in english language arts and have a home as a fraction of the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_Homeless,"fraction of homeless students in grade 6 who exceeded the ca standard in english language arts;fraction of students in grade 6 who exceeded the ca standard in english language arts, out of the homeless students;fraction of homeless students in grade 6 who exceeded the ca standard in english language arts, out of all students in grade 6;the percentage of homeless students in grade 6 who exceeded the ca standard in english language arts" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in grade 6 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of students in grade 6;fraction of students in grade 6 who exceeded the ca standard in english language arts and are not economically disadvantaged;percentage of students in grade 6 who exceeded the ca standard in english language arts and are not economically disadvantaged;number of students in grade 6 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotFoster,fraction of students in grade 6 who exceeded the ca english language arts standard and are not foster children;percentage of students in grade 6 who exceeded the ca english language arts standard and are not foster children;number of students in grade 6 who exceeded the ca english language arts standard and are not foster children divided by the total number of students in grade 6;number of students in grade 6 who exceeded the ca english language arts standard and are not foster children expressed as a percentage of the total number of students in grade 6 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotMigrant,"the number of students in grade 6 who exceeded the ca standard in english language arts and were not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who exceeded the ca standard in english language arts and are not migrant, divided by the total number of students in grade 6;the number of students in grade 6 who exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 6;the fraction of students in grade 6 who exceeded the ca standard in english language arts and were not migrant, out of all students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics,fraction of students in grade 6 who exceeded the ca standard in mathematics;percentage of students in grade 6 who exceeded the ca standard in mathematics;number of students in grade 6 who exceeded the ca standard in mathematics divided by the total number of students in grade 6;percentage of students in grade 6 who exceeded the ca mathematics standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_HavingHome,"the number of students in grade 6 who have a home and exceeded the ca standard in mathematics, divided by the total number of students in grade 6;the fraction of students in grade 6 who have a home and exceeded the ca standard in mathematics;the number of students in grade 6 who exceeded the ca standard in mathematics and have a home, expressed as a percentage of the total number of students in grade 6;the number of students in grade 6 who exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_Homeless,"fraction of homeless students in grade 6 who exceeded the ca math standard;percentage of homeless students in grade 6 who exceeded the ca math standard;number of homeless students in grade 6 who exceeded the ca math standard, as a percentage of the total number of homeless students in grade 6;number of homeless students in grade 6 who exceeded the ca math standard, as a fraction of the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 6 who exceeded the ca standard in mathematics and are not economically disadvantaged;the proportion of students in grade 6 who are not economically disadvantaged and exceeded the ca standard in mathematics;the number of students in grade 6 who are not economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of students in grade 6 who are not economically disadvantaged;the number of students in grade 6 who exceeded the ca standard in mathematics and are not economically disadvantaged, divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_NotFoster,"the number of students in grade 6 who exceeded the ca math standard and were not in foster care, divided by the total number of students in grade 6;the number of students in grade 6 who are not foster children and exceeded the ca standard in mathematics, divided by the total number of students in grade 6;the number of students in grade 6 who are not foster children and exceeded the ca standard in mathematics, as a percentage of the total number of students in grade 6;the number of students in grade 6 who exceeded the ca standard in mathematics divided by the total number of students in grade 6 who are not foster children" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade6_Mathematics_NotMigrant,"the number of students in grade 6 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 6;the number of students in grade 6 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 6;number of students in grade 6 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 6;the number of students in grade 6 who are not migrants and exceeded the ca standard in mathematics, divided by the total number of students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts,number of 7th grade students who exceeded the ca english language arts standard divided by the total number of 7th grade students;number of students in grade 7 who exceeded the ca standard in english language arts as a fraction of the total number of students in grade 7;number of 7th grade students who exceeded the ca standard in english language arts divided by the total number of 7th grade students;number of 7th grade students in english language arts who exceeded the ca standard divided by the total number of 7th grade students in english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_HavingHome,number of 7th grade students who exceeded the ca standard in english language arts and have a home divided by the total number of 7th grade students;the number of students in grade 7 english language arts who exceeded the ca standard and have a home divided by the total number of students in grade 7 english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_Homeless,"the number of students who exceeded the ca standard in english language arts in grade 7, as a fraction of the total number of homeless students in grade 7;the number of homeless students in grade 7 who exceeded the ca standard in english language arts, divided by the total number of homeless students in grade 7;the number of homeless students in grade 7 who exceeded the ca standard in english language arts, expressed as a percentage;fraction of students who exceeded the ca standard in english language arts in grade 7 who are homeless" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,percentage of students in grade 7 who exceeded the ca standard in english language arts and are not economically disadvantaged;number of students in grade 7 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 7;number of students in grade 7 who exceeded the ca standard in english language arts and are not economically disadvantaged expressed as a percentage;number of students in grade 7 who exceeded the ca standard in english language arts and are not economically disadvantaged as a proportion of the total number of students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotFoster,"the number of students in grade 7 who exceeded the ca standard in english language arts and are not foster children, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in english language arts and are not foster children, expressed as a percentage of the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 7;number of students in grade 7 english language arts who exceeded the ca standard, not foster, as a fraction of the total number of students in grade 7 english language arts" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotMigrant,"the number of students who were not migrant and exceeded the ca standard in english language arts in grade 7, divided by the total number of students in grade 7;number of students in grade 7 who exceeded the ca standard in english language arts and are not migrants divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in english language arts and were not migrants divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics,fraction of students in grade 7 who exceeded the ca standard in mathematics;number of students in grade 7 who exceeded the ca standard in mathematics divided by the total number of students in grade 7;number of 7th grade students who exceeded the ca standard in mathematics divided by the total number of 7th grade students;number of 7th grade students who exceeded the ca math standard divided by the total number of 7th grade students -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_HavingHome,"the number of students in grade 7 who have a home and exceeded the ca standard in mathematics, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and have a home divided by the number of students in grade 7 who have a home;the number of students in grade 7 who exceeded the ca standard in mathematics and have a home as a percentage of the total number of students in grade 7;number of students in grade 7 who exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_Homeless,number of homeless students in grade 7 who exceeded the ca standard in mathematics as a fraction of the total number of homeless students in grade 7;share of homeless students in grade 7 who exceeded the ca standard in mathematics;the number of homeless students in grade 7 who exceeded the ca standard in mathematics divided by the total number of homeless students in grade 7;the number of homeless students in grade 7 who exceeded the ca standard in mathematics expressed as a percentage of the total number of homeless students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 7 who exceeded the ca standard in mathematics and are not economically disadvantaged;the number of students in grade 7 who are not economically disadvantaged and exceeded the ca standard in mathematics, divided by the total number of students in grade 7 who are not economically disadvantaged;the number of students in grade 7 who exceeded the ca standard in mathematics and are not economically disadvantaged, as a percentage of the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 7 who were not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_NotFoster,"the number of students in grade 7 who are not foster children and exceeded the ca standard in mathematics, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and are not foster children, as a percentage of the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and are not foster children, as a proportion of the total number of students in grade 7;number of students in grade 7 who exceeded the ca math standard and are not foster children divided by the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade7_Mathematics_NotMigrant,"number of students in grade 7 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and are not migrants, divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 7;the number of students in grade 7 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts,number of students in grade 8 who exceeded the ca standard in english language arts divided by the total number of students in grade 8;number of 8th grade students who exceeded the ca standard in english language arts divided by the total number of 8th grade students;percentage of students in 8th grade english language arts who exceeded the ca standard;number of students in 8th grade english language arts who exceeded the ca standard divided by the total number of students in 8th grade english language arts -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_HavingHome,"number of 8th grade students who exceeded the ca standard in english language arts and have a home divided by the total number of 8th grade students;fraction of students in grade 8 who have a home and exceeded the ca standard in english language arts;fraction of students in grade 8 who exceeded the ca standard in english language arts and have a home, out of all students in grade 8;percentage of students in grade 8 who exceeded the ca standard in english language arts and have a home" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_Homeless,"percentage of homeless students in grade 8 who exceeded the ca standard in english language arts;number of homeless students in grade 8 who exceeded the ca standard in english language arts, divided by the total number of homeless students in grade 8;share of homeless students in grade 8 who exceeded the ca standard in english language arts;number of 8th grade students who exceeded the ca standard in english language arts and were homeless, expressed as a fraction of the total number of 8th grade students" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of students in grade 8 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of students in grade 8;percentage of students in grade 8 who exceeded the ca standard in english language arts and are not economically disadvantaged;share of students in grade 8 who exceeded the ca standard in english language arts and are not economically disadvantaged;number of students in grade 8 who exceeded the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotFoster,"number of students in grade 8 who exceeded the ca standard in english language arts and were not in foster care as a fraction of the total number of students in grade 8;the number of students who exceeded the ca standard in english language arts in grade 8 and were not foster children, divided by the total number of students in grade 8;the number of students in grade 8 who exceeded the ca standard in english language arts and were not foster children, divided by the total number of students in grade 8;percentage of students in grade 8 english language arts who exceeded the ca standard and are not foster children" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotMigrant,number of 8th grade students who exceeded the ca standard in english language arts and are not migrants divided by the total number of 8th grade students;number of 8th grade students who exceeded the ca standard in english language arts and were not migrant divided by the total number of 8th grade students;the number of students in grade 8 who exceeded the ca standard in english language arts and were not migrants divided by the total number of students in grade 8;the number of students in grade 8 who exceeded the ca standard in english language arts divided by the total number of students in grade 8 who were not migrants -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics,fraction of students in grade 8 who exceeded the ca mathematics standard;number of students in grade 8 who exceeded the ca mathematics standard divided by the total number of students in grade 8;number of students in grade 8 who exceeded the ca mathematics standard as a percentage of the total number of students in grade 8;percent of students in grade 8 who exceeded the ca mathematics standard -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_HavingHome,"number of 8th grade students in california who exceeded the math standard and have a home divided by the total number of 8th grade students in california;fraction of students in grade 8 who have a home and exceeded the ca standard in mathematics;number of students in grade 8 who have a home and exceeded the ca standard in mathematics divided by the total number of students in grade 8;fraction of students in grade 8 who exceeded the ca standard in mathematics, out of those who have a home" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_Homeless,"the percentage of homeless students in 8th grade who exceeded the ca math standard;the number of homeless students in 8th grade who exceeded the ca math standard, as a percentage of all homeless students in 8th grade;the number of homeless students in 8th grade who exceeded the ca math standard, divided by the total number of homeless students in 8th grade;the number of homeless students in grade 8 who exceeded the ca standard in mathematics, divided by the total number of homeless students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 8 who exceeded the ca standard in mathematics and were not economically disadvantaged;the proportion of students in grade 8 who exceeded the ca standard in mathematics and were not economically disadvantaged;the number of students in grade 8 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 8 who were not economically disadvantaged;the number of students in grade 8 who exceeded the ca standard in mathematics and were not economically disadvantaged, expressed as a percentage of the total number of students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_NotFoster,"the number of students in grade 8 who exceeded the ca standard in mathematics and were not in foster care divided by the total number of students in grade 8;number of 8th grade students who exceeded the ca standard in mathematics and are not foster children divided by the total number of 8th grade students;the number of students in grade 8 who exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 8;number of students in grade 8 who exceeded the ca standard in mathematics and are not foster children as a fraction of the total number of students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_SchoolGrade8_Mathematics_NotMigrant,"the number of students in grade 8 who exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 8;the number of students in grade 8 who exceeded the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 8;the fraction of students in grade 8 who are not migrants and exceeded the ca mathematics standard, out of all students in grade 8;the number of students in grade 8 who exceeded the ca mathematics standard and are not migrants, as a percentage of all students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts,"number of students in grade 11 who exceeded the ca standard in english language arts who are of two or more races, divided by the total number of students in grade 11 who are of two or more races;number of students in grade 11 who exceeded the ca standard in english language arts who are of two or more races, as a percentage of the total number of students in grade 11;number of 11th grade students who are two or more races and exceeded the ca standard in english language arts divided by the total number of 11th grade students who are two or more races;the number of students of two or more races who exceeded the ca_standard in english language arts in school grade 11, divided by the total number of students of two or more races in school grade 11" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of students who exceeded the ca standard in english language arts in school grade 11 who are economically disadvantaged and identify as two or more races, divided by the total number of students who exceeded the ca standard in english language arts in school grade 11" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who exceeded the ca standard in english language arts in school grade 11 who are not economically disadvantaged and identify as two or more races, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 11" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics,"number of students who exceeded the ca standard in mathematics in grade 11 who are two or more races divided by the total number of students who are two or more races in grade 11;number of students in grade 11 who exceeded the ca standard in mathematics and are two or more races divided by the total number of students in grade 11;the number of students in grade 11 who are of two or more races and exceeded the ca standard in mathematics, divided by the total number of students in grade 11 who are of two or more races;the number of students in grade 11 who exceeded the ca standard in mathematics and are of two or more races, expressed as a fraction of the total number of students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_EconomicallyDisadvantaged,"the number of students who exceeded the ca standard in mathematics in school grade 11 who are economically disadvantaged and identify as two or more races, expressed as a percentage of the total number of students who exceeded the ca standard in mathematics in school grade 11" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,the number of students who exceeded the ca standard in mathematics in school grade 11 who are not economically disadvantaged and identify as two or more races divided by the total number of students who exceeded the ca standard in mathematics in school grade 11 -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts,number of students in school grade 13 who exceeded the ca standard in english language arts and are two or more races divided by the total number of students in school grade 13;number of students of two or more races in grade 13 who exceeded the ca standard in english language arts divided by the total number of students of two or more races in grade 13;number of students of two or more races in grade 13 who exceeded the ca standard in english language arts as a percentage of the total number of students of two or more races in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of students who are two or more races and exceeded the ca_standard in english language arts in school grade 13 who are economically disadvantaged, divided by the total number of students who are two or more races and exceeded the ca_standard in english language arts in school grade 13;the number of students who exceeded the ca standard in english language arts in school grade 13 who are economically disadvantaged and identify as two or more races divided by the total number of students who exceeded the ca standard in english language arts in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who exceeded the ca standard in english language arts in school grade 13 who were not economically disadvantaged and identified as two or more races, divided by the total number of students who were not economically disadvantaged and identified as two or more races in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics,"the number of students who are of two or more races and exceeded the ca standard in mathematics in school grade 13, divided by the total number of students who are of two or more races in school grade 13;the number of students of two or more races in grade 13 who exceeded the ca standard in mathematics divided by the total number of students of two or more races in grade 13;number of students who exceeded the ca standard in mathematics in school grade 13 who are of two or more races divided by the total number of students who are of two or more races in school grade 13;the number of students who exceeded the ca standard in mathematics in school grade 13, who are of two or more races, expressed as a fraction of the total number of students who exceeded the ca standard in mathematics in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_EconomicallyDisadvantaged,"the number of students who exceeded the ca standard in mathematics in school grade 13 who are economically disadvantaged and identify as two or more races, expressed as a fraction of the total number of students who exceeded the ca standard in mathematics in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"number of students who exceeded the ca standard in mathematics in school grade 13 who are not economically disadvantaged and are of two or more races, divided by the total number of students who are not economically disadvantaged and are of two or more races in school grade 13;the number of students who are two or more races, in school grade 13, who exceeded the ca standard in mathematics and are not economically disadvantaged, divided by the total number of students who are two or more races, in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts,"the number of students who are of two or more races and exceeded the ca standard in english language arts in school grade 3, divided by the total number of students who are of two or more races in school grade 3;number of students in school grade 3 who exceeded the ca standard in english language arts, divided by the total number of students in school grade 3 who are two or more races;the number of students of two or more races who exceeded the ca_standard in english language arts in school grade 3, divided by the total number of students of two or more races in school grade 3;the number of students of two or more races who exceeded the ca_standard in english language arts in school grade 3, expressed as a percentage of the total number of students of two or more races in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students in grade 3 who exceeded the ca standard in english language arts and are not economically disadvantaged and are two or more races divided by the total number of students in grade 3 who are not economically disadvantaged and are two or more races;the number of students who are two or more races and not economically disadvantaged who exceeded the ca standard in english language arts in school grade 3, divided by the total number of students who are two or more races and not economically disadvantaged in school grade 3;the number of students who exceeded the ca standard in english language arts in school grade 3, who are two or more races and not economically disadvantaged, as a percentage of all students who are two or more races and not economically disadvantaged in school grade 3;the number of students who exceeded the ca standard in english language arts in school grade 3, who are two or more races and not economically disadvantaged, as a proportion of all students in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics,"the number of students who are of two or more races and exceeded the ca standard in mathematics in school grade 3, divided by the total number of students who are of two or more races in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"the number of students who are two or more races and exceeded the ca_standard in mathematics in school grade 3 who are economically disadvantaged, divided by the total number of students who are two or more races and exceeded the ca_standard in mathematics in school grade 3;the fraction of students who are two or more races and exceeded the ca_standard in mathematics in school grade 3 who are economically disadvantaged, out of all students who are two or more races and exceeded the ca_standard in mathematics in school grade 3" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"number of students who exceeded the ca standard in mathematics in grade 3, who are not economically disadvantaged and identify as two or more races, divided by the total number of students who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts,"the number of students of two or more races who exceeded the ca standard in english language arts in school grade 4, divided by the total number of students of two or more races in school grade 4;number of students in grade 4 who exceeded the ca standard in english language arts who are two or more races divided by the total number of students in grade 4 who are two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races and not economically disadvantaged who exceeded the ca standard in english language arts, grade 4, divided by the total number of students who are two or more races and not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics,"number of students in grade 4 who exceeded the ca standard in mathematics, divided by the total number of students in grade 4 who are two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"here are 5 different ways to say ""count of student: ca_standard exceeded, two or more races, school grade 4, mathematics, economically disadvantaged (as fraction of count student two or more races school grade 4 mathematics economically disadvantaged)"":" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts,"number of students in grade 5 who exceeded the ca standard in english language arts who are two or more races divided by the total number of students in grade 5 who are two or more races;number of students in school grade 5 who exceeded the ca standard in english language arts and are two or more races, divided by the total number of students in school grade 5 who are two or more races;the number of students of two or more races who exceeded the ca_standard in english language arts in school grade 5 divided by the total number of students of two or more races in school grade 5;the number of students of two or more races who exceeded the ca_standard in english language arts in school grade 5 as a percentage of the total number of students of two or more races in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and are of two or more races and exceeded the ca_standard in english language arts in school grade 5, divided by the total number of students who are not economically disadvantaged and are of two or more races in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics,"number of students in grade 5 who exceeded the ca standard in mathematics, divided by the total number of students in grade 5 who are two or more races;number of students in school grade 5 who exceeded the ca standard in mathematics and are of two or more races divided by the total number of students in school grade 5;the number of students who are of two or more races and exceeded the ca standard in mathematics in school grade 5, divided by the total number of students who are of two or more races in school grade 5" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in school grade 5, not economically disadvantaged, and exceeded the ca standard in mathematics divided by the total number of students who are two or more races, in school grade 5, not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts,"the number of students of two or more races who exceeded the ca standard in english language arts in grade 6 divided by the total number of students of two or more races in grade 6;the number of students of two or more races who exceeded the ca standard in english language arts in grade 6, divided by the total number of students of two or more races in grade 6;the number of students of two or more races who exceeded the ca standard in english language arts in school grade 6, divided by the total number of students of two or more races in school grade 6;the number of students who are of two or more races and exceeded the ca standard in english language arts in school grade 6, divided by the total number of students who are of two or more races in school grade 6" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students of two or more races in grade 6 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of students of two or more races in grade 6;the number of students who exceeded the ca_standard in english language arts in school grade 6 and who are not economically disadvantaged and who are of two or more races, divided by the total number of students who are not economically disadvantaged and who are of two or more races;the number of students who exceeded the ca_standard in english language arts in school grade 6 and who are not economically disadvantaged and who are of two or more races, expressed as a percentage of the total number of students who are not economically disadvantaged and who are of two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics,"number of students in school grade 6 who exceeded the ca standard in mathematics, divided by the total number of students in school grade 6 who are two or more races;number of 6th grade students of two or more races who exceeded the ca math standard divided by the total number of 6th grade students of two or more races;number of students in grade 6 who exceeded the ca standard in mathematics, divided by the total number of students in grade 6 who are two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"4 the number of students who are two or more races, in school grade 6, in mathematics, and not economically disadvantaged, who exceeded the ca standard, divided by the total number of students who are two or more races, in school grade 6, in mathematics, and not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts,"number of students in grade 7 who exceeded the ca standard in english language arts and are two or more races, divided by the total number of students in grade 7;the number of students in school grade 7 who are of two or more races and exceeded the ca_standard in english language arts divided by the total number of students in school grade 7 who are of two or more races;the number of students in school grade 7 who exceeded the ca_standard in english language arts and are of two or more races divided by the total number of students in school grade 7;number of students in grade 7 who exceeded the ca standard in english language arts who are two or more races divided by the total number of students in grade 7 who are two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students who exceeded the ca standard in english language arts in school grade 7, who are two or more races, and are not economically disadvantaged, divided by the total number of students who are two or more races and are not economically disadvantaged in school grade 7;fraction of students who are two or more races, not economically disadvantaged, and exceeded the ca standard in english language arts in school grade 7, out of all students;the number of students in school grade 7 who are not economically disadvantaged and who exceeded the ca standard in english language arts, and who are of two or more races, divided by the total number of students in school grade 7 who are not economically disadvantaged and who exceeded the ca standard in english language arts" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics,"number of students of two or more races in grade 7 who exceeded the ca standard in mathematics divided by the total number of students of two or more races in grade 7;the number of students of two or more races who exceeded the ca standard in mathematics in grade 7, divided by the total number of students of two or more races in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,the number of students of two or more races in grade 7 who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of students of two or more races in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts,"the number of students of two or more races in grade 8 who exceeded the ca standard in english language arts divided by the total number of students of two or more races in grade 8;what number of students of two or more races in school grade 8 exceeded the ca_standard in english language arts, as a fraction of the total number of students of two or more races in school grade 8?;the number of students who are of two or more races and exceeded the ca standard in english language arts in school grade 8, divided by the total number of students who are of two or more races in school grade 8" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who exceeded the ca standard in english language arts in school grade 8 who are not economically disadvantaged and identify as two or more races, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 8;number of students who exceeded the ca standard in english language arts in grade 8, who are not economically disadvantaged and are of two or more races, divided by the total number of students who are not economically disadvantaged and are of two or more races in grade 8;the number of students in grade 8 who are not economically disadvantaged and are two or more races and exceeded the ca standard in english language arts divided by the total number of students in grade 8 who are not economically disadvantaged and are two or more races" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics,"the number of students of two or more races who exceeded the ca standard in mathematics in grade 8, divided by the total number of students of two or more races in grade 8;number of students who exceeded the ca standard in mathematics in grade 8 who are of two or more races divided by the total number of students of two or more races in grade 8;the number of students who are of two or more races and exceeded the ca standard in mathematics in grade 8, divided by the total number of students who are of two or more races in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the number of students of two or more races in grade 8 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students of two or more races in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts,"number of white 11th grade english language arts students who exceeded the ca standard divided by the total number of white 11th grade english language arts students;the number of white 11th graders who exceeded the ca standard in english language arts, divided by the total number of white 11th graders;number of white 11th grade students who exceeded the ca standard in english language arts divided by the total number of white 11th grade students;the number of white students in grade 11 who exceeded the ca standard in english language arts divided by the total number of white students in grade 11" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of white, non-economically disadvantaged 11th graders who exceeded the ca standard in english language arts divided by the total number of white, non-economically disadvantaged 11th graders;the number of white students in 11th grade english language arts who exceeded the ca standard and were not economically disadvantaged, divided by the total number of white students in 11th grade english language arts" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_Mathematics,"the number of white 11th grade students who exceeded the ca standard in mathematics divided by the total number of white 11th grade students;the number of white 11th grade students who exceeded the ca standard in mathematics, divided by the total number of white 11th grade students;the number of white 11th graders who exceeded the ca math standard, divided by the total number of white 11th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged 11th grade students who exceeded the ca math standard divided by the total number of white, economically disadvantaged 11th grade students;the number of white, economically disadvantaged 11th graders who exceeded the ca standard in mathematics, divided by the total number of white, economically disadvantaged 11th graders;the number of white, economically disadvantaged 11th graders who exceeded the ca standard in mathematics divided by the total number of white, economically disadvantaged 11th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 11 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of white students in grade 11;the number of white students in 11th grade mathematics who exceeded the ca standard and were not economically disadvantaged, divided by the total number of white students in 11th grade mathematics" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts,number of white students in grade 13 who exceeded the ca standard in english language arts divided by the total number of white students in grade 13;the number of white students in grade 13 who exceeded the ca standard in english language arts divided by the total number of white students in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_Mathematics,"the number of white students in grade 13 who exceeded the ca standard in mathematics, divided by the total number of white students in grade 13;number of white students in grade 13 who exceeded the ca standard in mathematics divided by the total number of white students in grade 13;number of white students in grade 13 who exceeded the ca math standard divided by the total number of white students in grade 13;the number of white 13th graders who exceeded the ca math standard, as a fraction of the total number of white 13th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_Mathematics_EconomicallyDisadvantaged,"the number of white students in grade 13 who exceeded the ca math standard and are economically disadvantaged, divided by the total number of white students in grade 13;the number of white students in school grade 13 who exceeded the ca mathematics standard and are economically disadvantaged, divided by the total number of white students in school grade 13;the number of white students in school grade 13 who exceeded the ca math standard and are economically disadvantaged, divided by the total number of white students in school grade 13" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 13 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 13;the number of white students in grade 13 who exceeded the ca standard in mathematics and are not economically disadvantaged, divided by the total number of white students in grade 13" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts,"the number of white students in grade 3 who exceeded the ca standard in english language arts divided by the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in english language arts as a percentage of the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in english language arts, divided by the total number of white students in grade 3;number of white students in grade 3 who exceeded the ca standard in english language arts divided by the total number of white students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of white students in grade 3 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of white students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_Mathematics,"number of white students in grade 3 who exceeded the ca mathematics standard divided by the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in mathematics, divided by the total number of white students in grade 3;number of white students in grade 3 who exceeded the ca math standard divided by the total number of white students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 3 who exceeded the ca standard in mathematics, divided by the total number of white, economically disadvantaged students in grade 3;the number of white, economically disadvantaged students in grade 3 who exceeded the ca math standard, divided by the total number of white, economically disadvantaged students in grade 3;the number of white, economically disadvantaged students in grade 3 who exceeded the ca math standard divided by the total number of white, economically disadvantaged students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 3 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 3;the number of white students in grade 3 who exceeded the ca standard in mathematics and were not economically disadvantaged divided by the total number of white students in grade 3" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts,number of white fourth-grade students in california who exceeded the state standard in english language arts divided by the total number of white fourth-grade students in california;number of white students in grade 4 who exceeded the ca standard in english language arts divided by the total number of white students in grade 4;number of white 4th grade students who exceeded the ca standard in english language arts divided by the total number of white 4th grade students -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white students in grade 4 who exceeded the ca standard in english language arts and are economically disadvantaged, divided by the total number of white students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white students in grade 4 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 4;number of white students in grade 4 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of white students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_Mathematics,"number of white 4th grade students in california who exceeded the ca math standard divided by the total number of white 4th grade students in california;the number of white fourth-graders who exceeded the ca math standard, divided by the total number of white fourth-graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"number of white students in 4th grade who exceeded the ca standard in mathematics, who are economically disadvantaged, divided by the total number of white students in 4th grade;the number of white, economically disadvantaged fourth-graders who exceeded the ca standard in math, divided by the total number of white, economically disadvantaged fourth-graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 4 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 4;the number of white students in grade 4 who exceeded the ca math standard and were not economically disadvantaged divided by the total number of white students in grade 4" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts,"the number of white students in grade 5 who exceeded the ca standard in english language arts, divided by the total number of white students in grade 5;number of white 5th grade students who exceeded the ca standard in english language arts divided by the total number of white 5th grade students;number of white students in grade 5 who exceeded the ca standard in english language arts divided by the total number of white students in grade 5;number of white students in grade 5 who exceeded the ca standard in english language arts as a percentage of the total number of white students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged 5th graders who exceeded the ca standard in english language arts divided by the total number of white, economically disadvantaged 5th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of white, non-economically disadvantaged 5th graders who exceeded the ca standard in english language arts divided by the total number of white, non-economically disadvantaged 5th graders;the number of white students in grade 5 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_Mathematics,"number of white 5th grade students who exceeded the ca standard in mathematics divided by the total number of white 5th grade students;the number of white students in grade 5 who exceeded the ca standard in mathematics as a percentage of the total number of white students in grade 5;the number of white fifth-graders who exceeded the ca mathematics standard, divided by the total number of white fifth-graders;the number of white fifth-graders who exceeded the ca mathematics standard, as a percentage of the total number of white fifth-graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of white students in grade 5 who exceeded the ca math standard and are economically disadvantaged, divided by the total number of white students in grade 5;the number of white, economically disadvantaged 5th graders who exceeded the ca standard in mathematics divided by the total number of white, economically disadvantaged 5th graders;the number of white students in grade 5 who exceeded the ca standard in mathematics and are economically disadvantaged, divided by the total number of white students in grade 5" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 5 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 5;number of white, non-economically disadvantaged students in grade 5 who exceeded the ca math standard divided by the total number of white, non-economically disadvantaged students in grade 5;fraction of students who exceeded the ca standard in mathematics in grade 5 who are white and not economically disadvantaged" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts,"the number of white students in grade 6 who exceeded the ca standard in english language arts, divided by the total number of white students in grade 6;the number of white students in grade 6 who exceeded the ca standard in english language arts, expressed as a percentage;the number of white 6th grade english language arts students who exceeded the ca standard, divided by the total number of white 6th grade english language arts students;number of white students in grade 6 who exceeded the ca standard in english language arts divided by the total number of white students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white students in grade 6 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 6;the number of white students in grade 6 who exceeded the ca standard in english language arts and were not economically disadvantaged divided by the total number of white students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_Mathematics,the number of white sixth-graders who exceeded the ca math standard divided by the total number of white sixth-graders;number of white 6th grade students in california who exceeded the state standard in mathematics divided by the total number of white 6th grade students in california;number of white students in grade 6 who exceeded the ca math standard divided by the total number of white students in grade 6;number of white 6th grade students who exceeded the ca standard in mathematics divided by the total number of white 6th grade students -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 6 who exceeded the ca math standard, divided by the total number of white, economically disadvantaged students in grade 6;the number of white, economically disadvantaged 6th graders who exceeded the ca math standard, divided by the total number of white, economically disadvantaged 6th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 6 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of white students in grade 6;the number of white students in grade 6 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 6" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts,"number of white students in grade 7 who exceeded the ca standard in english language arts divided by the total number of white students in grade 7;number of white students in grade 7 who exceeded the ca standard in english language arts, divided by the total number of white students in grade 7;number of white students in grade 7 who exceeded the ca standard in english language arts, expressed as a percentage of the total number of white students in grade 7;the number of white students in grade 7 who exceeded the ca standard in english language arts, as a percentage of the total number of white students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white, non-economically disadvantaged 7th graders who exceeded the ca standard in english language arts divided by the total number of white, non-economically disadvantaged 7th graders;the number of white students in grade 7 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_Mathematics,the number of white students in grade 7 who exceeded the ca math standard divided by the total number of white students in grade 7;number of white students in grade 7 who exceeded the ca math standard divided by the total number of white students in grade 7;number of white 7th grade students who exceeded the ca standard in mathematics divided by the total number of white 7th grade students;number of white students in grade 7 who exceeded the ca standard in mathematics divided by the total number of white students in grade 7 -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_Mathematics_EconomicallyDisadvantaged,"what number of white, economically disadvantaged students in 7th grade math exceeded the ca standard, as a fraction of the total number of white, economically disadvantaged students in 7th grade math?" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"number of white students in grade 7 who exceeded the ca math standard who are not economically disadvantaged divided by the total number of white students in grade 7;the number of white students in grade 7 who exceeded the ca math standard and are not economically disadvantaged divided by the total number of white students in grade 7;the number of white students in grade 7 who exceeded the ca math standard and are not economically disadvantaged expressed as a fraction of the total number of white students in grade 7;the number of white students in grade 7 who exceeded the ca standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 7" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts,number of white 8th grade students who exceeded the ca standard in english language arts divided by the total number of white 8th grade students;number of white 8th grade students who exceeded the ca standard in english language arts expressed as a percentage of the total number of white 8th grade students;the number of white 8th grade english language arts students who exceeded the ca standard divided by the total number of white 8th grade english language arts students;number of white students in grade 8 who exceeded the ca standard in english language arts divided by the total number of white students in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged 8th grade english language arts students who exceeded the ca standard, divided by the total number of white, economically disadvantaged 8th grade english language arts students;number of white, economically disadvantaged 8th graders who exceeded the ca standard in english language arts divided by the total number of white, economically disadvantaged 8th graders" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white students in grade 8 who exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_Mathematics,"the number of white students in grade 8 who exceeded the ca standard in mathematics, divided by the total number of white students in grade 8;the number of white 8th grade students in california who exceeded the state standard in mathematics divided by the total number of white 8th grade students in california;number of white 8th grade students in california who exceeded the math standard divided by the total number of white 8th grade students in california;number of white 8th grade students in california who exceeded the state math standard divided by the total number of white 8th grade students in california" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 8 who exceeded the ca standard in mathematics, divided by the total number of white, economically disadvantaged students in grade 8;number of white, economically disadvantaged 8th grade students who exceeded the ca standard in mathematics divided by the total number of white, economically disadvantaged 8th grade students" -Percent_CA_StandardExceeded_In_Count_Student_White_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in grade 8 who exceeded the ca standard in mathematics and are not economically disadvantaged divided by the total number of white students in grade 8;the number of white students in grade 8 who exceeded the ca math standard and were not economically disadvantaged, divided by the total number of white students in grade 8;the number of white students in grade 8 who exceeded the ca math standard and were not economically disadvantaged divided by the total number of white students in grade 8" -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade11_EnglishLanguageArts,fraction of students with disabilities in grade 11 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 11 who exceeded the ca standard in english language arts;number of students with disabilities in grade 11 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 11;number of students with disabilities in grade 11 who exceeded the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 11 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade11_Mathematics,"the percentage of students with disabilities who exceeded the ca standard in 11th grade math;the number of students with disabilities who exceeded the ca standard in 11th grade math, as a percentage of the total number of students with disabilities in 11th grade math;the fraction of students with disabilities who exceeded the ca standard in 11th grade math;the proportion of students with disabilities who exceeded the ca standard in 11th grade math" -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade13_EnglishLanguageArts,fraction of students with disabilities in grade 13 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 13 who exceeded the ca standard in english language arts;number of students with disabilities in grade 13 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 13;share of students with disabilities in grade 13 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade13_Mathematics,fraction of students with disabilities who exceeded the ca standard in mathematics in grade 13;percentage of students with disabilities who exceeded the ca standard in mathematics in grade 13;number of students with disabilities who exceeded the ca standard in mathematics in grade 13 divided by the total number of students with disabilities in grade 13;number of students with disabilities who exceeded the ca standard in mathematics in grade 13 as a percentage of the total number of students with disabilities in grade 13 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade3_EnglishLanguageArts,fraction of students with disabilities in grade 3 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 3 who exceeded the ca standard in english language arts;number of students with disabilities in grade 3 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 3;share of students with disabilities in grade 3 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade3_Mathematics,"the percentage of students with disabilities who exceeded the ca standard in mathematics in grade 3;the number of students with disabilities who met or exceeded the ca standard in mathematics in grade 3, divided by the total number of students with disabilities in grade 3;number of students with disabilities in grade 3 who exceeded the ca standard in mathematics as a fraction of the total number of students with disabilities in grade 3;percentage of students with disabilities in grade 3 who exceeded the ca standard in mathematics" -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade4_EnglishLanguageArts,fraction of students with disabilities in grade 4 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 4 who exceeded the ca standard in english language arts;number of students with disabilities in grade 4 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 4;number of students with disabilities in grade 4 who exceeded the ca standard in english language arts expressed as a percentage of the total number of students in grade 4 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade4_Mathematics,fraction of students with disabilities in grade 4 who exceeded the ca standard in mathematics;percentage of students with disabilities in grade 4 who exceeded the ca standard in mathematics;number of students with disabilities in grade 4 who exceeded the ca standard in mathematics divided by the total number of students with disabilities in grade 4;share of students with disabilities in grade 4 who exceeded the ca standard in mathematics -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade5_EnglishLanguageArts,what percentage of students with disabilities in grade 5 exceeded the ca standard in english language arts?;fraction of students with disabilities who exceeded the ca standard in english language arts in grade 5;percentage of students with disabilities who exceeded the ca standard in english language arts in grade 5;number of students with disabilities who exceeded the ca standard in english language arts in grade 5 divided by the total number of students with disabilities in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade5_Mathematics,fraction of students with disabilities in grade 5 who exceeded the ca standard in mathematics;percentage of students with disabilities in grade 5 who exceeded the ca standard in mathematics;number of students with disabilities in grade 5 who exceeded the ca standard in mathematics divided by the total number of students with disabilities in grade 5;number of students with disabilities in grade 5 who exceeded the ca standard in mathematics as a percentage of the total number of students in grade 5 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade6_EnglishLanguageArts,fraction of students with disabilities in grade 6 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 6 who exceeded the ca standard in english language arts;number of students with disabilities in grade 6 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 6;share of students with disabilities in grade 6 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade6_Mathematics,fraction of students with disabilities in grade 6 who exceeded the ca mathematics standard;percentage of students with disabilities in grade 6 who exceeded the ca mathematics standard;share of students with disabilities in grade 6 who exceeded the ca mathematics standard;percent of students with disabilities in grade 6 who exceeded the ca math standard -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade7_EnglishLanguageArts,fraction of students with disabilities in grade 7 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 7 who exceeded the ca standard in english language arts;number of students with disabilities in grade 7 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 7;share of students with disabilities in grade 7 who exceeded the ca standard in english language arts -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade7_Mathematics,"the number of students with disabilities who exceeded the ca standard in mathematics in school grade 7, divided by the total number of students with disabilities in school grade 7;fraction of students with disabilities who exceeded the ca standard in grade 7 mathematics;percentage of students with disabilities who exceeded the ca standard in grade 7 mathematics;number of students with disabilities who exceeded the ca standard in grade 7 mathematics divided by the total number of students with disabilities in grade 7 mathematics" -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade8_EnglishLanguageArts,fraction of students with disabilities in grade 8 who exceeded the ca standard in english language arts;percentage of students with disabilities in grade 8 who exceeded the ca standard in english language arts;number of students with disabilities in grade 8 who exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 8;percent of students with disabilities in grade 8 who exceeded the ca standard in english language arts out of all students with disabilities in grade 8 -Percent_CA_StandardExceeded_In_Count_Student_WithDisability_SchoolGrade8_Mathematics,fraction of students with disabilities who exceeded the ca standard in math in grade 8;percentage of students with disabilities who exceeded the ca standard in math in grade 8;number of students with disabilities who exceeded the ca standard in math in grade 8 divided by the total number of students with disabilities in grade 8;number of students with disabilities who exceeded the ca standard in math in grade 8 as a percentage of the total number of students with disabilities in grade 8 -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_Mathematics,"the number of american indian or alaska native 11th grade students who scored at or above the proficent level in mathematics, divided by the total number of american indian or alaska native 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts,"the number of american indian or alaska native students in 8th grade who scored at or above the proficency level in english language arts, divided by the total number of american indian or alaska native students in 8th grade" -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade11_EnglishLanguageArts,"the number of asian 11th grade students who met or exceeded the ca standard in english language arts, divided by the total number of asian 11th grade students;the number of asian 11th grade students who scored at or above the proficient level in english language arts, divided by the total number of 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade11_Mathematics,"what is the number of asian 11th grade students who met or exceeded the ca standard in mathematics, divided by the total number of asian 11th grade students?;the number of asian 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of asian 11th grade students;the number of asian 11th grade students who scored at or above the proficient level in mathematics, divided by the total number of asian 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts,"the number of asian students in grade 13 who scored at or above the ca standard in english language arts divided by the total number of students in grade 13;the number of asian students in grade 13 who scored at or above the ca standard in english language arts, divided by the total number of asian students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_Mathematics,the number of asian students in grade 13 who met or exceeded the ca math standard divided by the total number of asian students in grade 13 -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts,number of asian 4th grade students who met or exceeded the ca standard in english language arts divided by the total number of asian 4th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade4_Mathematics,"the number of asian 4th grade students who met or exceeded the ca math standard divided by the total number of asian 4th grade students;number of asian 4th grade students who met or exceeded the ca standard in mathematics divided by the total number of asian 4th grade students;the number of asian 4th grade students who met or exceeded the ca standard in mathematics, divided by the total number of asian 4th grade students;what is the number of asian 4th grade students who met or exceeded the ca standard in mathematics, divided by the total number of asian 4th grade students?" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts,the number of asian 5th graders who scored at or above the ca standard in english language arts divided by the total number of asian 5th graders who took the english language arts test;the number of asian 5th graders who scored at or above the ca standard in english language arts divided by the total number of asian 5th graders -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade5_Mathematics,"the number of asian 5th grade students who met or exceeded the ca math standard, divided by the total number of asian 5th grade students;the number of asian 5th grade students who met or exceeded the ca math standard divided by the total number of asian 5th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade6_Mathematics,"the number of asian 6th grade students who met or exceeded the ca standard in mathematics, divided by the total number of asian 6th grade students;the number of asian 6th grade students who met or exceeded the ca math standard, divided by the total number of asian 6th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade7_Mathematics,"the number of asian 7th grade students who met or exceeded the ca standard in mathematics, divided by the total number of asian 7th grade students;the number of asian 7th grade students who scored at or above the ca standard in mathematics, expressed as a fraction of the total number of asian 7th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade8_EnglishLanguageArts,the number of asian 8th grade students who scored at or above 3 on the english language arts portion of the california assessment of student performance and progress (caaspp) -Percent_CA_StandardMetAndAbove_In_Count_Student_Asian_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_EnglishLanguageArts,number of black or african american 11th graders who met or exceeded the ca standard in english language arts divided by the total number of black or african american 11th graders;the proportion of black or african american students in 11th grade who were at or above grade level in english language arts -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_Mathematics,"the number of black or african american 11th grade students who scored at or above the ca standard in mathematics, divided by the total number of black or african american 11th grade students who took the mathematics test;the number of black or african american 11th graders who met or exceeded the ca standard in mathematics, divided by the total number of black or african american 11th graders;number of black or african american 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of black or african american 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of black or african american students in grade 13 who met or exceeded the ca standard in english language arts and were not economically disadvantaged, divided by the total number of black or african american students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_EnglishLanguageArts,"number of black or african american 6th graders who met or exceeded ca standards in english language arts, divided by the total number of black or african american 6th graders;the number of black or african american students in grade 6 who performed at or above the ca standard in english language arts, divided by the total number of black or african american students in grade 6;number of black or african american 6th graders who met or exceeded the ca standard in english language arts divided by the total number of black or african american 6th graders;number of black or african american sixth graders who met or exceeded the ca standard in english language arts divided by the total number of black or african american sixth graders" -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_EnglishLanguageArts,number of black or african american 7th graders who met or exceeded the ca standard in english language arts divided by the total number of black or african american 7th graders;number of black or african american students in grade 7 who met or exceeded the ca standard in english language arts divided by the total number of black or african american students in grade 7;number of black or african american 7th graders who met or exceeded ca standards in english language arts divided by the total number of black or african american 7th graders -Percent_CA_StandardMetAndAbove_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_Mathematics,"number of black or african american 7th grade students who met or exceeded the ca math standard divided by the total number of black or african american 7th grade students;the number of black or african american 7th graders who scored at or above the ca standard in mathematics, divided by the total number of black or african american 7th graders who took the mathematics test" -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_EnglishLanguageArts,"the number of english learners who met or exceeded the ca standard in english language arts after 12 or more months in school grade 11, divided by the total number of english learners in school grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_EnglishLanguageArts,number of english learners in grade 4 who met or exceeded the ca standard in english language arts after 12 months or more of instruction divided by the total number of english learners in grade 4 -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_Mathematics,"the number of english learners who met or exceeded the ca standard in mathematics in school grade 4, divided by the total number of english learners who were enrolled in english language learner programs for 12 months or more in school grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_EnglishLanguageArts,"number of english learners in 5th grade english language arts who met or exceeded the ca standard, divided by the total number of english learners in 5th grade english language arts, after 12 or more months in the program" -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_EnglishLanguageArts,"number of english learners in grade 7 who met or exceeded the ca standard in english language arts, divided by the total number of english learners in grade 7, after 12 or more months in the school" -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_EnglishLanguageArts,the number of english learners who met or exceeded the ca standard in english language arts divided by the total number of english learners who were enrolled in school grade 8 for 12 or more months -Percent_CA_StandardMetAndAbove_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade11_EnglishLanguageArts,"count of student: ca_standard met and above, english, current learner, school grade 11, english language arts (as fraction of count student english current learner school grade 11 english language arts)" -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade13_Mathematics,"number of students in grade 13 who are current learners and met or exceeded the ca standard in english and mathematics divided by the total number of students in grade 13;number of students in grade 13 who are current learners and met or exceeded the ca standard in english and mathematics divided by the total number of students in grade 13 who are current learners;number of students in grade 13 who are current learners and met or exceeded the ca standard in mathematics, divided by the total number of students in grade 13 who are current learners" -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade5_EnglishLanguageArts,number of students in grade 5 who are current learners of english and met or exceeded the ca standard in english language arts as a fraction of the total number of students in grade 5 who are current learners of english -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade5_Mathematics,number of students in grade 5 who are current learners and met or exceeded the ca standard in english and mathematics divided by the total number of students in grade 5 who are current learners -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 who are current learners of english and met or exceeded the ca standard in english language arts divided by the total number of students in grade 6 who are current learners of english -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade8_EnglishLanguageArts,number of students in grade 8 who are current learners of english and met or exceeded the ca standard in english language arts divided by the total number of students in grade 8 who are current learners of english -Percent_CA_StandardMetAndAbove_In_Count_Student_English_CurrentLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade13_Mathematics,"the number of students who have met or exceeded the ca standards in english and mathematics in school grade 13, divided by the total number of students who have ever learned english and mathematics in school grade 13;the number of students who have met or exceeded the ca standards in english and mathematics in school grade 13, expressed as a percentage of the total number of students who have ever learned english and mathematics in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade6_Mathematics,"number of students who have met or exceeded the ca standard in english and mathematics in grade 6, divided by the total number of students who have ever learned english and mathematics in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_English_EverLearned_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,"number of students in grade 13 from military families who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 13 from military families" -Percent_CA_StandardMetAndAbove_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_Mathematics,"the proportion of students in grade 13 from military families who scored at or above the ca standard in mathematics;the number of students in grade 13 from military families who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 13 from military families;the number of students in grade 13 who are from military families and met or exceeded the ca standard in mathematics, expressed as a percentage of the total number of students in grade 13;the percentage of students in grade 13 who are from military families and scored at or above the ca standard in mathematics, expressed as a fraction of the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade11_EnglishLanguageArts,"the number of female students in grade 11 who met or exceeded the ca standard in english language arts divided by the total number of female students in grade 11;what number of female 11th grade students in english language arts met or exceeded the ca standard, as a percentage of the total number of female 11th grade students in english language arts?;what number of female 11th grade students in english language arts met or exceeded the ca standard, as a proportion of the total number of female 11th grade students in english language arts?;the number of female students in grade 11 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade11_Mathematics,"what number of female 11th grade students met or exceeded the ca standard in mathematics, as a fraction of the total number of female 11th grade students?;number of female 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of female 11th grade students;number of female 11th grade students who met or exceeded the ca standard in mathematics expressed as a percentage of the total number of female 11th grade students;number of female 11th grade students who met or exceeded the ca standard in mathematics expressed as a fraction of the total number of female 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade13_EnglishLanguageArts,"the number of female students in grade 13 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade13_Mathematics,"the number of female students in grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of female students in grade 13;the number of female students in grade 13 who scored at or above the ca standard in mathematics, expressed as a percentage of the total number of female students in grade 13;the number of female students in grade 13 who met or exceeded the ca standard in mathematics divided by the total number of female students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade3_EnglishLanguageArts,"the number of female students in grade 3 who scored at or above the proficient level on the ca english language arts test, divided by the total number of female students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade3_Mathematics,number of female students in grade 3 who met or exceeded the ca math standard divided by the total number of female students in grade 3 -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade4_EnglishLanguageArts,"the number of female students in grade 4 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade4_Mathematics,"number of female students in grade 4 who met or exceeded the ca standard in mathematics, divided by the total number of female students in grade 4;the percentage of female students in grade 4 who performed at or above grade level in mathematics;number of female students in grade 4 who met or exceeded the ca standard in mathematics divided by the total number of female students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade5_EnglishLanguageArts,"the number of female students in grade 5 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 5;the number of female students in grade 5 who scored at or above the proficient level on the ca english language arts test, divided by the total number of female students in grade 5;the number of female students in grade 5 who scored at or above the ca standard in english language arts divided by the total number of students in grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade5_Mathematics,number of female 5th grade students who met or exceeded the ca math standard divided by the total number of female 5th grade students;number of female 5th grade students who met or exceeded the ca standard in mathematics divided by the total number of female 5th grade students;number of 5th grade female students who met or exceeded the ca math standard divided by the total number of 5th grade female students -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade6_EnglishLanguageArts,"the number of female students in grade 6 who scored at or above proficient on the ca english language arts test, divided by the total number of female students in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade6_Mathematics,"the number of female students in grade 6 who met or exceeded the ca math standard, divided by the total number of female students in grade 6;number of female sixth grade students who met or exceeded the ca math standard divided by the total number of female sixth grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade7_EnglishLanguageArts,"the number of female students in grade 7 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 7;the number of female students in grade 7 who scored at or above proficient on the ca english language arts test, divided by the total number of female students in grade 7;number of female 7th grade students who met or exceeded the ca standard in english language arts divided by the total number of female 7th grade students;what is the number of female students in grade 7 who met or exceeded the ca standard in english language arts, divided by the total number of female students in grade 7?" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade7_Mathematics,"the number of female students in grade 7 who met or exceeded the ca math standard, divided by the total number of female students in grade 7;the number of female students in grade 7 who scored at or above the ca standard in mathematics, divided by the total number of female students in grade 7;number of female 7th grade students who met or exceeded the ca standard in mathematics divided by the total number of female 7th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade8_EnglishLanguageArts,number of female 8th grade students who met or exceeded the ca standard in english language arts divided by the total number of female 8th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_Female_SchoolGrade8_Mathematics,"number of female 8th grade students who met or exceeded the ca standard in mathematics divided by the total number of female 8th grade students;the number of female students in grade 8 who scored at or above the ca standard in mathematics, expressed as a percentage;share of female students in grade 8 who scored at or above the ca standard in mathematics" -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts,"the number of filipino students in grade 13 who scored at or above the ca standard in english language arts, as a percentage of the total number of filipino students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_Mathematics,"number of students who met or exceeded the ca standard in filipino, grade 13 mathematics divided by the total number of students in filipino, grade 13 mathematics;number of students who met or exceeded the ca standard in filipino, grade 13, mathematics divided by the total number of students in filipino, grade 13, mathematics;the number of students who met or exceeded the ca standard in filipino in grade 13 mathematics, divided by the total number of students in filipino in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_Filipino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts,"the number of hispanic or latino 8th graders who scored at or above the ca standard in english language arts, divided by the total number of hispanic or latino 8th graders" -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"number of 11th grade english learners who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts, divided by the total number of 11th grade english learners;part of english learners in grade 11 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts;the percentage of english learners who are initial or reclassified fluent proficient in english language arts in 11th grade;the number of english learners who are initial or reclassified fluent proficient in english language arts in 11th grade divided by the total number of english learners in 11th grade" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_Mathematics,"the number of english learners in grade 11 who are initially fluent proficient, reclassified fluent proficient, or only english in mathematics, divided by the total number of english learners in grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_EnglishLanguageArts,"part of english learners in grade 13 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;number of english learners in school grade 13 who met or exceeded the ca standard in english language arts, initial fluent proficient or reclassified fluent proficient or only english, divided by the total number of english learners in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_Mathematics,"the number of english learners in school grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of english learners in school grade 13 who were initially fluent proficient or reclassified fluent proficient in english, or who were only english speakers" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_EnglishLanguageArts,"fraction of english learners in grade 4 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_Mathematics,"fraction of english learners in school grade 4 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;what is the fraction of english learners in grade 4 who are initial fluent proficient, reclassified fluent proficient, or only english and scored at or above the proficient level in mathematics?" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_EnglishLanguageArts,the fraction of english learners in grade 5 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts;the number of english learners in grade 5 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts divided by the total number of english learners in grade 5 -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_Mathematics,"the number of english learners in school grade 5 who met or exceeded the ca standard in mathematics, divided by the total number of english learners in school grade 5 who were initially fluent proficient or reclassified fluent proficient in english, or were only english speakers" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"number of english learners in grade 6 who are initially fluent, reclassified fluent, or only speak english and met or exceeded the ca standard in english language arts divided by the total number of english learners in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_Mathematics,"the number of english learners in grade 6 who were initially fluent proficient or reclassified fluent proficient or only english in mathematics divided by the total number of english learners in grade 6;the number of english learners in grade 6 who were initial fluent proficient, reclassified fluent proficient, or only english in mathematics, divided by the total number of english learners in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_EnglishLanguageArts,"4 the number of english learners in grade 7 who were initially fluent proficient or reclassified fluent proficient in english and met or exceeded the ca standard in english language arts, divided by the total number of english learners in grade 7;fraction of 7th grade english learners who are initial fluent proficient or reclassified fluent proficient or only english in english language arts;the number of english learners in grade 7 who were initially fluent proficient, reclassified fluent proficient, or only english in english language arts, divided by the total number of english learners in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_Mathematics,"the number of english learners in grade 7 who were initially fluent proficient or reclassified fluent proficient or only english in mathematics, divided by the total number of english learners in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_EnglishLanguageArts,fraction of english learners in grade 8 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts;fraction of english learners in 8th grade who are initial fluent proficient or reclassified fluent proficient or only english in english language arts -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_Mathematics,"the share of english learners in grade 8 who were initially fluent proficient or reclassified fluent proficient or only english in math was number;the number of english learners in grade 8 who were initially fluent proficient or reclassified fluent proficient or only english in mathematics, divided by the total number of english learners in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade11_EnglishLanguageArts,number of male 11th grade students who met or exceeded the ca standard in english language arts divided by the total number of male 11th grade students;the number of male students in grade 11 who met or exceeded the ca standard in english language arts divided by the total number of male students in grade 11 -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade11_Mathematics,"the number of male 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 11th grade students;number of male 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 11th grade students;number of 11th grade male students who met or exceeded the ca standard in mathematics divided by the total number of 11th grade male students;the number of male 11th grade students who met or exceeded the ca standard in mathematics, divided by the total number of male 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade13_Mathematics,"number of male students in grade 13 who met or exceeded the ca standard in mathematics divided by the total number of male students in grade 13;number of male students in grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of male students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade3_EnglishLanguageArts,"the number of male students in grade 3 who scored at or above the ca standard in english language arts, divided by the total number of male students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade3_Mathematics,"the number of male students in grade 3 who met or exceeded the ca standard in mathematics divided by the total number of male students in grade 3;the number of male students in grade 3 who met or exceeded the ca standard in mathematics, divided by the total number of male students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade4_EnglishLanguageArts,"the percentage of male students in grade 4 who performed at or above grade level in english language arts;the number of male students in grade 4 who scored at or above the ca standard in english language arts, expressed as a percentage of the total number of male students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade4_Mathematics,"number of male students in grade 4 who met or exceeded the ca standard in mathematics, divided by the total number of male students in grade 4;number of male 4th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 4th grade students;the number of male students in grade 4 who met or exceeded the ca standard in mathematics divided by the total number of male students in grade 4;the number of male students in grade 4 who met or exceeded the ca standard in mathematics expressed as a percentage of the total number of male students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade5_EnglishLanguageArts,"the number of male 5th grade students who met or exceeded the ca standard in english language arts divided by the total number of male 5th grade students;the number of male students in grade 5 who met or exceeded the ca standard in english language arts, divided by the total number of male students in grade 5;the number of male students in grade 5 who scored at or above proficient on the ca english language arts test, divided by the total number of male students in grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade5_Mathematics,"number of male students in grade 5 who met or exceeded the ca math standard divided by the total number of male students in grade 5;number of male 5th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 5th grade students;the number of male students in grade 5 who met or exceeded the ca standard in mathematics divided by the total number of male students in grade 5;the number of male 5th grade students who met or exceeded the ca standard in mathematics, divided by the total number of male 5th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade6_EnglishLanguageArts,"the number of male students in grade 6 who met or exceeded the ca standard in english language arts, divided by the total number of male students in grade 6;the number of male students in grade 6 who scored at or above proficient on the ca english language arts test, divided by the total number of male students in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade6_Mathematics,number of male 6th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 6th grade students;number of male 6th grade students who met or exceeded the ca standard in mathematics expressed as a percentage of the total number of male 6th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade7_EnglishLanguageArts,"the number of male students in grade 7 who met or exceeded the ca standard in english language arts, divided by the total number of male students in grade 7;number of 7th grade male students who met or exceeded the ca standard in english language arts divided by the total number of 7th grade male students;the number of male students in grade 7 who met or exceeded the ca standard in english language arts divided by the total number of male students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade7_Mathematics,"the number of male students in grade 7 who scored at or above the proficient level on the ca mathematics test, divided by the total number of male students in grade 7;the number of male students in grade 7 who met or exceeded the ca standard in mathematics, divided by the total number of male students in grade 7;the number of male students in grade 7 who scored at or above the ca standard in mathematics, expressed as a percentage of the total number of male students in grade 7;the number of male students in grade 7 who met or exceeded the ca standard in mathematics divided by the total number of male students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade8_EnglishLanguageArts,"the number of male students in grade 8 who met or exceeded the ca standard in english language arts, divided by the total number of male students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_Male_SchoolGrade8_Mathematics,"number of male 8th grade students who met or exceeded the ca standard in mathematics divided by the total number of male 8th grade students;the number of male students in grade 8 who met or exceeded the ca standard in mathematics, divided by the total number of male students in grade 8;the number of male 8th grade students who met or exceeded the ca math standard divided by the total number of male 8th grade students;the number of male students in grade 8 who scored at or above the ca standard in mathematics, divided by the total number of male students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade13_EnglishLanguageArts,"the number of students without disabilities who met or exceeded the ca standard in english language arts in grade 13, divided by the total number of students without disabilities in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade4_EnglishLanguageArts,"the number of students in grade 4 who have no disabilities and met or exceeded the ca standard in english language arts, divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NoDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_Mathematics,"the percentage of students in grade 11 who are not from military families and scored at or above the ca standard in mathematics, expressed as a fraction" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,"number of students in grade 13 who are not from military families and met or exceeded the ca standard in english language arts divided by the total number of students in grade 13 who are not from military families;number of students in grade 13 who are not from military families and met or exceeded the ca standard in english language arts expressed as a percentage of the total number of students in grade 13;number of students in grade 13 who are not from military families and met or exceeded the ca standard in english language arts, divided by the total number of students in grade 13 who are not from military families;the number of students who are not from military families and who met or exceeded the ca standard in english language arts in grade 13, divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_Mathematics,"fraction of students in grade 13 who met or exceeded the ca standard in mathematics, as a fraction of the total number of students in grade 13 who are not from a family of armed forces" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_Mathematics,"the percentage of students in grade 3 who are not from military families and scored at or above the proficient level in mathematics, divided by the total number of students in grade 3;fraction of students in grade 3 who are not from military families who scored 3 or above on the ca mathematics test" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_Mathematics,"number of students in grade 4 who met or exceeded the ca standard in mathematics and are not from a military family, as a percentage of all students in grade 4;the number of students in grade 4 who are not from military families and met or exceeded the ca standard in mathematics, divided by the total number of students in grade 4 who are not from military families;the number of students in grade 4 who are not from military families and who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 4 who are not from military families;number of students in grade 4 who met or exceeded the ca standard in mathematics, not from families of armed forces, as a proportion of the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_EnglishLanguageArts,the share of students in grade 5 who are not from military families and performed at or above grade level in english language arts -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_Mathematics,"fraction of students in grade 5 who met or exceeded the ca standard in mathematics, excluding students whose families are in the military" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_EnglishLanguageArts,"number of students in grade 6 english language arts who are not from military families and met or exceeded the ca standard, divided by the total number of students in grade 6 english language arts who are not from military families;the number of students in grade 6 who are not from military families and scored at or above the ca standard in english language arts, expressed as a percentage" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_Mathematics,"fraction of students in grade 6 who met or exceeded the ca standard in mathematics, excluding students whose families are part of the armed forces" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_EnglishLanguageArts,number of students in grade 7 english language arts who met or exceeded the ca standard and are not from a military family divided by the total number of students in grade 7 english language arts -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_Mathematics,"number of students in grade 7 math who met or exceeded the ca standard and are not from a military family, as a percentage of the total number of students in grade 7 math;number of students in grade 7 who are not from military families and met or exceeded the ca standard in mathematics divided by the total number of students in grade 7;the number of students in school grade 7 who are not from military families and who met or exceeded the ca standard in mathematics, divided by the total number of students in school grade 7 who are not from military families" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_EnglishLanguageArts,"sure, here are 5 different ways of saying the sentence ""count of student: not family of armed forces, ca_standard met and above, school grade 8, english language arts (as fraction of count student not family of armed forces school grade 8 english language arts):"";number of students in grade 8 english language arts who are not from military families and met or exceeded the ca standard, divided by the total number of students in grade 8 english language arts who are not from military families" -Percent_CA_StandardMetAndAbove_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_Mathematics,fraction of students in grade 8 who are not in the military and scored at or above the ca standard in mathematics;fraction of students in grade 8 who are not in the military and scored proficient or above in mathematics;fraction of students in grade 8 who are not in the military and scored 3 or higher on the ca mathematics test;fraction of students in grade 8 who are not in the military and scored at least a 3 on the ca mathematics test -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade4_Mathematics,"the number of students who met or exceeded the ca standard in mathematics in school grade 4, divided by the total number of students who only speak english in school grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade6_Mathematics,"what is the number of students in grade 6 who only speak english who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 6 who only speak english?" -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_OnlyEnglish_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_EnglishLanguageArts,number of students who met or exceeded the ca standard in english language arts in grade 11 who declined to take the state test as a percentage of the total number of students who took the state test in english language arts in grade 11;number of students who met or exceeded the ca standard in english language arts in grade 11 who declined to take the state test divided by the total number of students who took the state test in english language arts in grade 11 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_Mathematics,number of students who met or exceeded the ca standard in mathematics in grade 11 who declined to take the state exam divided by the total number of students in grade 11 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_EnglishLanguageArts,number of students who met or exceeded the ca standard in english language arts in grade 13 who declined to take the state exam divided by the total number of students who took the state exam in english language arts in grade 13;number of students who met or exceeded the ca standard in english language arts in grade 13 who declined to take the state exam expressed as a percentage of the total number of students who took the state exam in english language arts in grade 13 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_Mathematics,"number of students who met or exceeded the ca standard in mathematics in grade 13 who declined to take the state exam, divided by the total number of students who took the state exam in mathematics in grade 13;number of students who met or exceeded the ca standard in mathematics in grade 13 who declined to take the state exam as a percentage of the total number of students who declined to take the state exam in mathematics in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_Mathematics,"number of students who met or exceeded the ca standard in mathematics in grade 4, divided by the number of students who declined to take the state test in mathematics in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_Mathematics,"number of students who met or exceeded the ca standard in mathematics in grade 6, divided by the total number of students who declined to take the state test in mathematics in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_EnglishLanguageArts,"number of students who met or exceeded the ca standard in english language arts in grade 8, divided by the number of students who declined to take the state test in english language arts in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_Mathematics,"number of students who met or exceeded the ca standard in math in grade 8, divided by the number of students who declined to take the state test in math in grade 8;the number of students who met or exceeded the ca standard in math in grade 8, as a percentage of the number of students who declined to take the state test in math in grade 8;number of students who met or exceeded the ca standard in mathematics in grade 8, divided by the number of students who declined to take the state test in mathematics in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_EnglishLanguageArts,"the number of students who met or exceeded the ca standard in english language arts, who are college graduates, and are in 11th grade, divided by the total number of students who are college graduates, in 11th grade" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_Mathematics,number of grade 3 students who are college graduates and met or exceeded the ca standard in mathematics divided by the total number of grade 3 students -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_EnglishLanguageArts,number of students who are college graduates and met or exceeded the ca standard in english language arts in grade 6 divided by the total number of students in grade 6 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_Mathematics,number of students in grade 6 who are college graduates and met or exceeded the ca standard in mathematics divided by the total number of students in grade 6 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_EnglishLanguageArts,the number of students who are college graduates and met or exceeded the ca standard in english language arts in grade 8 divided by the total number of students -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_EnglishLanguageArts,"what number of students in graduate school or post-graduate programs met or exceeded the california standard in english language arts in 11th grade, as a fraction of the total number of students in graduate school or post-graduate programs?;what number of students in graduate school or post-graduate programs scored at or above the california standard in english language arts in 11th grade, as a fraction of the total number of students in graduate school or post-graduate programs?;number of students in graduate school or post graduate who met or exceeded the ca standard in english language arts in grade 11 divided by the total number of students in graduate school or post graduate in grade 11;number of students in graduate school or post graduate who met or exceeded the ca standard in english language arts in grade 11 expressed as a percentage of the total number of students in graduate school or post graduate in grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_Mathematics,"number of students in graduate or post-graduate school who met or exceeded the ca standard in mathematics in grade 11, divided by the total number of students in graduate or post-graduate school" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_EnglishLanguageArts,number of students in graduate school or post graduate who met or exceeded the ca standard in english language arts in grade 13 divided by the total number of students in graduate school or post graduate -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_EnglishLanguageArts,number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 3 divided by the total number of students in graduate school or post-graduate school in grade 3;number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 3 divided by the total number of students in graduate school or post-graduate school -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_EnglishLanguageArts,"number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 4 divided by the number of students in graduate school or post-graduate school in grade 4;number of students in graduate or postgraduate school who met or exceeded the ca standard in english language arts in grade 4 divided by the total number of students in graduate or postgraduate school;the number of students who met or exceeded the ca standard in english language arts in school grade 4, who were enrolled in graduate school or post graduate school, divided by the total number of students who were enrolled in graduate school or post graduate school in school grade 4;the number of students who met or exceeded the ca standard in english language arts in school grade 4, who were enrolled in graduate school or post graduate school, as a percentage of all students who were enrolled in graduate school or post graduate school in school grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_Mathematics,number of students in graduate or postgraduate school who met or exceeded the ca standard in mathematics in grade 4 divided by the total number of students in graduate or postgraduate school -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_EnglishLanguageArts,"number of students in graduate or postgraduate school who met or exceeded the ca standard in english language arts in grade 5 divided by the total number of students in graduate or postgraduate school;number of students in graduate or post-graduate school who met or exceeded the ca standard in english language arts in grade 5, divided by the total number of students in graduate or post-graduate school;number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 5 divided by the total number of students in graduate school or post-graduate school in grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_Mathematics,number of students in graduate school or post-graduate school who met or exceeded the ca standard in mathematics in grade 5 divided by the total number of students in graduate school or post-graduate school -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_EnglishLanguageArts,"the number of students who met or exceeded the ca standard in english language arts in grade 6 who were enrolled in graduate school or post-graduate school, divided by the total number of students who were enrolled in graduate school or post-graduate school in grade 6;the number of students who met or exceeded the ca standard in english language arts in grade 6 who were enrolled in graduate school or post-graduate school, as a percentage of all students who were enrolled in graduate school or post-graduate school in grade 6;number of students in graduate school or post graduate school who met or exceeded the ca standard in english language arts in grade 6, divided by the total number of students in graduate school or post graduate school;number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 6, divided by the total number of students in graduate school or post-graduate school" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_EnglishLanguageArts,number of students in grade 7 who met or exceeded the ca standard in english language arts who are enrolled in graduate school or post-graduate school divided by the total number of students in grade 7;number of students in graduate or postgraduate school who met or exceeded the ca standard in english language arts in grade 7 divided by the total number of students in graduate or postgraduate school in grade 7 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_Mathematics,number of students in grade 7 who met or exceeded the ca standard in mathematics who are also enrolled in graduate school or post-graduate studies divided by the total number of students in grade 7 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_EnglishLanguageArts,"what number of students in graduate school or post-graduate school met or exceeded the ca standard in english language arts in grade 8, as a fraction of the total number of students in graduate school or post-graduate school in grade 8?;what number of students in graduate school or post-graduate school met or exceeded the ca standard in english language arts in grade 8, as a percentage of the total number of students in graduate school or post-graduate school in grade 8?;number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 8 divided by the total number of students in graduate school or post-graduate school in grade 8;number of students in graduate school or post-graduate school who met or exceeded the ca standard in english language arts in grade 8 expressed as a percentage of the total number of students in graduate school or post-graduate school in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_Mathematics,"number of students who met or exceeded the ca standard in mathematics in grade 8 who are also enrolled in graduate school or post-graduate school, divided by the total number of students enrolled in graduate school or post-graduate school" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_EnglishLanguageArts,"the number of students who are less than high school graduates, are in school grade 13, and met or exceeded the ca standard in english language arts, divided by the total number of students who are less than high school graduates and are in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_Mathematics,"the number of students who are less than high school graduates, in school grade 13, and met or exceeded the ca standard in mathematics, divided by the total number of students who are less than high school graduates and in school grade 13;the number of students who are less than high school graduates, in school grade 13, and met or exceeded the ca standard in mathematics, expressed as a fraction of the total number of students who are less than high school graduates and in school grade 13;the number of students who met or exceeded the ca standard in mathematics, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13;3 the number of students who are less than high school graduates, are in school grade 13, and met or exceeded the ca standard in mathematics, divided by the total number of students who are less than high school graduates and are in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_EnglishLanguageArts,"the number of students who met or exceeded the ca standard in english language arts, who are less than high school graduates, in school grade 6, divided by the total number of students who are less than high school graduates, in school grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_EnglishLanguageArts,number of students who met or exceeded the ca standard in english language arts who are less than high school graduates in grade 8 divided by the total number of students who are less than high school graduates in grade 8;number of students who met or exceeded the ca standard in english language arts who are less than high school graduates in grade 8 expressed as a percentage of the total number of students who are less than high school graduates in grade 8 -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_EnglishLanguageArts,"the number of students who have some college but no degree and met or exceeded the ca standard in english language arts in school grade 4, divided by the total number of students who have some college but no degree in school grade 4;the number of students in grade 4 who have some college but no degree and met or exceeded the ca standard in english language arts, divided by the total number of students in grade 4 who have some college but no degree" -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts,"sure here are 5 different ways to say the sentence ""count of student: ca_standard met and above, reclassified fluent proficient, english learner, school grade 3, english language arts (as fraction of count student reclassified fluent proficient english learner school grade 3 english language arts):""" -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts,number of 8th grade english learners who are reclassified fluent proficient in english language arts who met or exceeded the ca standard divided by the total number of 8th grade english learners who are reclassified fluent proficient in english language arts -Percent_CA_StandardMetAndAbove_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts,number of students in 11th grade english language arts who met or exceeded the ca standard divided by the total number of students in 11th grade english language arts;number of 11th grade students who met or exceeded the ca standard in english language arts divided by the total number of 11th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_HavingHome,number of 11th grade students who met or exceeded the ca standard in english language arts and have a home divided by the total number of 11th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotFoster,"the number of students in grade 11 who met or exceeded the ca standard in english language arts and were not foster children divided by the total number of students in grade 11;the number of students in 11th grade english language arts who met or exceeded the ca standard, excluding foster students, divided by the total number of students in 11th grade english language arts, excluding foster students;number of students in grade 11 english language arts who met or exceeded the ca standard, divided by the total number of students in grade 11 english language arts, excluding foster students;the number of 11th grade english language arts students who met or exceeded the ca standard and were not in foster care, divided by the total number of 11th grade english language arts students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotMigrant,"number of 11th grade students who met or exceeded the ca standard in english language arts and were not migrant, divided by the total number of 11th grade students;number of students in grade 11 english language arts who met or exceeded the ca standard, excluding migrant students divided by the total number of students in grade 11 english language arts, excluding migrant students;the number of grade 11 students who were not migrants and met or exceeded the ca standard in english language arts, divided by the total number of grade 11 students;number of students in grade 11 who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 11, excluding migrant students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics,"number of 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of 11th grade students in mathematics;number of 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of 11th grade students;number of 11th grade students who met or exceeded the ca mathematics standard divided by the total number of 11th grade students;what number of 11th grade students met or exceeded the ca math standard, as a fraction of the total number of 11th grade students who took the test?" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"3 the number of 11th grade students who were not economically disadvantaged and met or exceeded the ca standard in mathematics, divided by the total number of 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_NotFoster,number of students in grade 11 who met or exceeded the ca standard in mathematics and were not in foster care divided by the total number of students in grade 11 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade11_Mathematics_NotMigrant, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts,"number of students in grade 13 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 13;number of students in grade 13 who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Foster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_HavingHome,number of students in grade 13 who have a home and met or exceeded the ca standard in english language arts divided by the total number of students in grade 13 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Migrant, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotFoster,"number of students in grade 13 english language arts who met or exceeded the ca standard, not including foster students divided by the total number of students in grade 13 english language arts, not including foster students;number of students in grade 13 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotMigrant,the number of students in grade 13 who met or exceeded the ca standard in english language arts and were not migrant divided by the total number of students in grade 13;number of students in grade 13 who met or exceeded the ca standard in english language arts and were not migrants divided by the total number of students in grade 13 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics,"the number of students in grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_Foster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_Migrant,"the number of students in grade 13 who are migrants and met or exceeded the ca standard in mathematics, divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_NotFoster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade13_Mathematics_NotMigrant,"the number of students in grade 13 who met or exceeded the ca standard in mathematics and were not migrants, divided by the total number of students in grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts,"the number of students in grade 3 who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotFoster,number of students in grade 3 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 3 who were not in foster care;number of students in grade 3 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 3 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotMigrant,"the number of students in grade 3 who met or exceeded the ca standard in english language arts and were not migrant students, divided by the total number of students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics,"the number of grade 3 students who met or exceeded the ca math standard, divided by the total number of grade 3 students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_HavingHome,number of grade 3 students who met or exceeded the ca standard in mathematics and have a home divided by the total number of grade 3 students -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_NotFoster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade3_Mathematics_NotMigrant,number of students in grade 3 who met or exceeded the ca standard in mathematics and are not migrants divided by the total number of students in grade 3 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts,"number of 4th grade students who met or exceeded the ca standard in english language arts divided by the total number of 4th grade students;what is the number of 4th grade students who met or exceeded the ca standards in english language arts, as a fraction of the total number of 4th grade students?;number of students in grade 4 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 4;number of students in grade 4 who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_HavingHome,"the number of students in grade 4 who had a home and met or exceeded the ca standard in english language arts, divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotFoster,"number of students in grade 4 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 4;3 the number of students in grade 4 who met or exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotMigrant,"the number of students in grade 4 who met or exceeded the ca standard in english language arts, divided by the total number of students in grade 4, excluding migrant students;the number of students in grade 4 who met or exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics,"the number of students in grade 4 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 4;number of students in grade 4 who met or exceeded the ca standard in mathematics divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_NotFoster,"the number of students in grade 4 who met or exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 4;number of students in grade 4 who met or exceeded the ca standard in mathematics and were not in foster care divided by the total number of students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade4_Mathematics_NotMigrant, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts,"number of 5th grade students who met or exceeded the ca standard in english language arts divided by the total number of 5th grade students;number of students in grade 5 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 5;number of students in school grade 5 who met or exceeded the ca standard in english language arts, divided by the total number of students in school grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_HavingHome,"number of students in grade 5 who have met or exceeded the ca standard in english language arts and have a home, divided by the total number of students in grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,the number of students in grade 5 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 5 who were not economically disadvantaged -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotFoster,"number of students in grade 5 english language arts who met or exceeded the ca standard, divided by the total number of students in grade 5 english language arts, excluding foster students;the number of students in grade 5 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotMigrant,the number of students in grade 5 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 5 who were not migrant;number of students in grade 5 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 5 who were not migrant students -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_NotFoster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade5_Mathematics_NotMigrant,"number of students in grade 5 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 5, excluding migrant students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts,number of 6th grade students who met or exceeded the ca standard in english language arts divided by the total number of 6th grade students;5 what is the pass rate for 6th grade students on the ca standard in english language arts? -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotFoster,number of students in grade 6 who met or exceeded the ca standard in english language arts and were not foster children divided by the total number of students in grade 6;number of students in grade 6 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 6 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotMigrant,"the number of students in grade 6 who met or exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics,"number of 6th grade students who met or exceeded the ca math standard divided by the total number of 6th grade students;what is the percentage of 6th grade students who scored at or above the ca standard in mathematics?;the number of grade 6 students who met or exceeded the ca standard in mathematics, divided by the total number of grade 6 students;number of 6th grade students who met or exceeded the ca standard in mathematics, divided by the total number of 6th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_NotFoster, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade6_Mathematics_NotMigrant,"the number of students in grade 6 who met or exceeded the ca standard in mathematics and were not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who met or exceeded the ca standard in mathematics and were not migrant students, divided by the total number of students in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts,number of students in grade 7 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 7;number of 7th grade students who met or exceeded the ca standard in english language arts divided by the total number of 7th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_HavingHome,"the number of students in grade 7 who met or exceeded the ca standard in english language arts and who have a home, divided by the total number of students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotFoster,"the number of students in grade 7 who met or exceeded the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 7;number of students in grade 7 who met or exceeded the ca standard in english language arts and were not foster children divided by the total number of students in grade 7;number of students in grade 7 english language arts who met or exceeded the ca standard, excluding foster students divided by the total number of students in grade 7 english language arts, excluding foster students" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotMigrant,"the number of students in grade 7 who met or exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics,"the number of students in grade 7 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_HavingHome, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_NotFoster,"the number of students in grade 7 who were not in foster care and met or exceeded the ca standard in mathematics, divided by the total number of students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade7_Mathematics_NotMigrant,"number of students in grade 7 who met or exceeded the ca standard in mathematics and are not migrants, divided by the total number of students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts,number of 8th grade students who met or exceeded the ca standard in english language arts divided by the total number of 8th grade students;number of students in grade 8 who met or exceeded the ca standard in english language arts divided by the total number of students in grade 8 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_HavingHome,"the number of students in grade 8 who have a home and met or exceeded the ca standard in english language arts, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotFoster,"number of students in grade 8 who met or exceeded the ca standard in english language arts and were not in foster care divided by the total number of students in grade 8;number of 8th grade students who met or exceeded the ca standard in english language arts and were not foster children divided by the total number of 8th grade students;the number of students in 8th grade english language arts who met or exceeded the ca standard and were not in foster care, divided by the total number of students in 8th grade english language arts" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotMigrant,"number of students who met or exceeded the ca standard in english language arts in grade 8, excluding migrant students, divided by the total number of students in grade 8;the number of students in grade 8 who met or exceeded the ca standard in english language arts and were not migrant, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics,"number of grade 8 students who met or exceeded the ca mathematics standard divided by the total number of grade 8 students;the number of students in grade 8 who met or exceeded the ca math standard divided by the total number of students in grade 8;the number of students in grade 8 who met or exceeded the ca math standard, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_HavingHome,number of students in grade 8 who met or exceeded the ca standard in mathematics and have a home divided by the total number of students in grade 8 -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_Homeless, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_NotFoster,"number of students in grade 8 who met or exceeded the ca math standard who are not foster children divided by the total number of students in grade 8;number of students in grade 8 who met or exceeded the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_SchoolGrade8_Mathematics_NotMigrant,"the number of students in grade 8 who met or exceeded the ca standard in mathematics and were not migrants, divided by the total number of students in grade 8;the number of students in grade 8 who were not migrants and met or exceeded the ca standards in mathematics, divided by the total number of students in grade 8;number of students in grade 8 who met or exceeded the ca standard in mathematics and were not migrants, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts,"the number of students who are two or more races, are in school grade 11, and met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races and are in school grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in school grade 11, and not economically disadvantaged, who met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races, in school grade 11, and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics,"number of students in 11th grade mathematics who are two or more races and met or exceeded the ca standard divided by the total number of students in 11th grade mathematics who are two or more races;number of students in grade 11 who are two or more races and met or exceeded the ca standard in mathematics divided by the total number of students in grade 11 who are two or more races;the number of students of two or more races in 11th grade who met or exceeded the ca standard in mathematics, divided by the total number of students of two or more races in 11th grade" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts,"the number of students who are two or more races, are in school grade 13, and met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races and are in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students who met or exceeded the ca standard in english language arts in school grade 13 who are two or more races and not economically disadvantaged divided by the total number of students who are two or more races and not economically disadvantaged in school grade 13;the number of students who are two or more races, in school grade 13, met or exceeded the ca standard in english language arts, and are not economically disadvantaged, divided by the total number of students who are two or more races, in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics,"the number of students who are two or more races, in school grade 13, and met or exceeded the ca standard in mathematics, divided by the total number of students who are two or more races, in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are two or more races, not economically disadvantaged, and in school grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of students who are two or more races, not economically disadvantaged, and in school grade 13" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged,"sure, here are 5 different ways to say ""count of student: ca_standard met and above, two or more races, school grade 3, english language arts, economically disadvantaged (as fraction of count student two or more races school grade 3 english language arts economically disadvantaged)"":" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who met or exceeded the ca standard in english language arts in school grade 3, who are two or more races, and who are not economically disadvantaged, divided by the total number of students who are two or more races and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,number of students who met or exceeded the ca standard in mathematics in school grade 3 who are two or more races and not economically disadvantaged divided by the total number of students who are two or more races and not economically disadvantaged in school grade 3 -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts,"the number of students of two or more races who scored at or above the proficient level on the english language arts assessment in school grade 4, divided by the total number of students of two or more races who took the assessment" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in school grade 4, and not economically disadvantaged, who met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races, in school grade 4, and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics,number of students in grade 4 who are two or more races and met or exceeded the ca standard in mathematics divided by the total number of students in grade 4 who are two or more races -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"4 the number of students who are two or more races, in school grade 5, in english language arts, and not economically disadvantaged, who met or exceeded the ca standard, divided by the total number of students who are two or more races, in school grade 5, in english language arts, and not economically disadvantaged;the number of students who met or exceeded the ca_standard in english language arts in school grade 5, who are two or more races, and who are not economically disadvantaged, divided by the total number of students who are two or more races and are not economically disadvantaged in school grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics,"the number of students who are two or more races and met or exceeded the ca standard in mathematics in school grade 5, divided by the total number of students who are two or more races in school grade 5" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts,"the number of students of two or more races in grade 6 who scored at or above 3 on the english language arts portion of the california assessment of student performance and progress (caaspp);the number of students of two or more races who scored at or above the ca standard in english language arts in grade 6, divided by the total number of students of two or more races in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in school grade 6, and not economically disadvantaged, who met or exceeded the ca standards in english language arts, divided by the total number of students who are two or more races, in school grade 6, and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics,"the number of students in school grade 6 who are of two or more races and met or exceeded the ca standard in mathematics, divided by the total number of students in school grade 6 who are of two or more races;the number of students in school grade 6 who are of two or more races and met or exceeded the ca standard in mathematics, expressed as a fraction of the total number of students in school grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"3 the number of students who met or exceeded the ca standard in mathematics in school grade 6, who are two or more races, and who are not economically disadvantaged, divided by the total number of students who are two or more races and are not economically disadvantaged in school grade 6;the number of students who are two or more races, in grade 6, who are not economically disadvantaged, and who met or exceeded the ca standard in mathematics, divided by the total number of students who are two or more races, in grade 6, who are not economically disadvantaged;the number of students who are two or more races, in school grade 6, who are not economically disadvantaged, and who met or exceeded the ca standard in mathematics, divided by the total number of students who are two or more races, in school grade 6, and who are not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in school grade 7 who are not economically disadvantaged and met or exceeded the ca standard in english language arts who are two or more races, divided by the total number of students in school grade 7 who are not economically disadvantaged and met or exceeded the ca standard in english language arts;the number of students in school grade 7 who are not economically disadvantaged and met or exceeded the ca standard in english language arts who are two or more races, expressed as a percentage of the total number of students in school grade 7 who are not economically disadvantaged and met or exceeded the ca standard in english language arts;the number of students who are two or more races, in school grade 7, and not economically disadvantaged, who met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races, in school grade 7, and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics,"number of students in grade 7 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 7 who are two or more races" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"the number of students in school grade 7 who are of two or more races, not economically disadvantaged, and met or exceeded the ca standard in mathematics, divided by the total number of students in school grade 7 who are of two or more races and not economically disadvantaged;the number of students in grade 7 who are not economically disadvantaged and are two or more races and met or exceeded the ca standard in mathematics divided by the total number of students in grade 7 who are not economically disadvantaged and are two or more races" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts,"number of students who are two or more races and met or exceeded the ca standard in english language arts, grade 8, divided by the total number of students who are two or more races and took the english language arts test in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in grade 8, and not economically disadvantaged, who met or exceeded the ca standard in english language arts, divided by the total number of students who are two or more races, in grade 8, and not economically disadvantaged;count of student: ca_standard met and above, two or more races, school grade 8, english language arts, not economically disadvantaged (as fraction of count student two or more races school grade 8 english language arts not economically disadvantaged)" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics,"number of students who met or exceeded the ca standard in mathematics in school grade 8, who are two or more races, divided by the total number of students who are two or more races in school grade 8;the number of students who are two or more races and met or exceeded the ca standard in mathematics in grade 8, divided by the total number of students who are two or more races in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"sure! here are 5 different ways to say ""count of student: ca_standard met and above, two or more races, school grade 8, mathematics, not economically disadvantaged (as fraction of count student two or more races school grade 8 mathematics not economically disadvantaged)"":;4 the number of students who are two or more races, in school grade 8, and not economically disadvantaged, who met or exceeded the ca standard in mathematics, divided by the total number of students who are two or more races, in school grade 8, and not economically disadvantaged" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts,"number of white 11th grade students who met or exceeded the ca standard in english language arts divided by the total number of white 11th grade students;the number of white 11th grade english language arts students who met or exceeded the ca standard, divided by the total number of white 11th grade english language arts students;the number of white students in grade 11 who met or exceeded the ca standard in english language arts, divided by the total number of white students in grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_Mathematics,"the number of white 11th graders who met or exceeded the ca math standard, divided by the total number of white 11th graders;the number of white 11th graders who met or exceeded the ca standard in mathematics, divided by the total number of white 11th graders;number of white 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of white 11th grade students;the number of white 11th grade students who met or exceeded the ca standard in mathematics divided by the total number of white 11th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts,"the number of white students in grade 13 who met or exceeded the ca standard in english language arts, divided by the total number of white students in grade 13;the number of white students in grade 13 who met or exceeded the ca standard in english language arts, as a fraction of the total number of white students in grade 13 who took the english language arts test" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_Mathematics,"the number of white students in grade 13 who met or exceeded the ca standard in mathematics, divided by the total number of white students in grade 13;the number of white students in grade 13 who scored at or above the ca standard in mathematics, expressed as a percentage" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts,"the number of white students in grade 3 who met or exceeded the ca standard in english language arts, divided by the total number of white students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_Mathematics,"the number of white students in grade 3 who met or exceeded the ca math standard, divided by the total number of white students in grade 3" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts,"the number of white students in grade 4 who scored at or above the ca standard in english language arts, divided by the total number of white students in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_Mathematics,number of white students in grade 4 who met or exceeded the ca standard in mathematics divided by the total number of white students in grade 4 -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts,number of white 5th grade students who met or exceeded the ca standard in english language arts divided by the total number of white 5th grade students;the number of white students in grade 5 who met or exceeded the ca standard in english language arts divided by the total number of white students in grade 5 -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_Mathematics,number of white 5th grade students who met or exceeded the ca math standard divided by the total number of white 5th grade students -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts,"the number of white students in school grade 6 who met or exceeded the ca standard in english language arts, divided by the total number of white students in school grade 6;number of white students in grade 6 who met or exceeded the ca standard in english language arts, divided by the total number of white students in grade 6;number of white 6th grade students who met or exceeded the ca standard in english language arts divided by the total number of white 6th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_Mathematics,"the number of white students in grade 6 who met or exceeded the ca math standard, divided by the total number of white students in grade 6" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts,"the number of white students in grade 7 who scored at or above the ca standards in english language arts, divided by the total number of white students in grade 7;the number of white students in grade 7 who met or exceeded the ca standard in english language arts divided by the total number of white students in grade 7" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_Mathematics,number of white students in grade 7 who met or exceeded the ca math standard divided by the total number of white students in grade 7 -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts,"the number of white students in grade 8 who met or exceeded the ca standard in english language arts, divided by the total number of white students in grade 8;number of white 8th grade students who met or exceeded the ca standard in english language arts divided by the total number of white 8th grade students;number of white 8th grade students who met or exceeded ca standards in english language arts divided by the total number of white 8th grade students" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_Mathematics,"number of white students in grade 8 who met or exceeded the ca math standard divided by the total number of white students in grade 8;the number of white students in grade 8 who met or exceeded the ca standard in mathematics, divided by the total number of students in grade 8" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"sure, here are five different ways to say the sentence ""count of student: ca_standard met and above, white, school grade 8, mathematics, economically disadvantaged (as fraction of count student white school grade 8 mathematics economically disadvantaged):""" -Percent_CA_StandardMetAndAbove_In_Count_Student_White_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade11_EnglishLanguageArts,"what number of students with disabilities in 11th grade english language arts met or exceeded the ca standards, as a fraction of the total number of students with disabilities in 11th grade english language arts?;what number of students with disabilities in 11th grade english language arts met or exceeded the ca standard, as a fraction of the total number of students with disabilities in 11th grade english language arts?;what number of students with disabilities in 11th grade english language arts met or exceeded the ca standard, as a percentage of the total number of students with disabilities in 11th grade english language arts?;number of students with disabilities in grade 11 who met or exceeded the ca standard in english language arts, as a percentage of the total number of students in grade 11" -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade11_Mathematics,fraction of students with disabilities in 11th grade math who scored at or above the ca standard;percentage of students with disabilities in 11th grade math who scored at or above the ca standard -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade4_EnglishLanguageArts,number of students with disabilities in grade 4 who met or exceeded the ca standard in english language arts divided by the total number of students with disabilities in grade 4;number of students with disabilities in grade 4 who met or exceeded the ca standard in english language arts expressed as a percentage of the total number of students in grade 4 -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade4_Mathematics,"the number of students with disabilities who scored at or above grade level in mathematics in grade 4, as a percentage of the total number of students with disabilities in grade 4" -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade6_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade8_EnglishLanguageArts,number of students with disabilities in grade 8 who met or exceeded the california standard in english language arts as a percentage of the total number of students with disabilities in grade 8 -Percent_CA_StandardMetAndAbove_In_Count_Student_WithDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_Mathematics,number of american indian or alaska native 11th grade students who met the ca math standard divided by the total number of american indian or alaska native 11th grade students -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,what number of american indian or alaska native students in 13th grade who were not economically disadvantaged met the ca math standard as a fraction of the total number of american indian or alaska native students in 13th grade? -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts,number of american indian or alaska native 4th graders who met the ca english language arts standard divided by the total number of american indian or alaska native 4th graders -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics,"number of american indian or alaska native students in grade 4 who met the ca mathematics standard divided by the total number of american indian or alaska native students in grade 4;number of american indian or alaska native 4th grade students who met the ca math standard divided by the total number of american indian or alaska native 4th grade students;the number of american indian or alaska native students in grade 4 who met the ca mathematics standard, divided by the total number of american indian or alaska native students in grade 4" -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,number of american indian or alaska native 4th grade students who met the ca math standard and are economically disadvantaged divided by the total number of american indian or alaska native 4th grade students -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics,"what number of american indian or alaska native students in grade 5 met the ca math standard, as a fraction of the total number of american indian or alaska native students in grade 5?;what number of american indian or alaska native students in grade 5 met the ca math standard, as a percentage of the total number of american indian or alaska native students in grade 5?" -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics,number of american indian or alaska native 6th grade students who met the ca math standard divided by the total number of american indian or alaska native 6th grade students;number of american indian or alaska native 6th grade students who met the ca mathematics standard divided by the total number of american indian or alaska native 6th grade students -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics,number of american indian or alaska native 7th graders who met the ca math standard divided by the total number of american indian or alaska native 7th graders;number of american indian or alaska native 7th grade students who met the ca math standard divided by the total number of american indian or alaska native 7th grade students -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics,number of american indian or alaska native 8th graders who met the ca math standard divided by the total number of american indian or alaska native 8th graders;number of american indian or alaska native 8th grade students who met the ca math standard divided by the total number of american indian or alaska native 8th grade students;number of american indian or alaska native 8th grade students who met the ca mathematics standard divided by the total number of american indian or alaska native 8th grade students -Percent_CA_StandardMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native 8th grade students who are economically disadvantaged and met the ca math standard divided by the total number of american indian or alaska native 8th grade students;number of american indian or alaska native 8th grade students who are economically disadvantaged and met the ca math standard, divided by the total number of american indian or alaska native 8th grade students" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts,"what number of asian students in grade 13 met the ca_standard in english language arts, divided by the total number of asian students in grade 13?" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts,number of asian 4th grade students who met the ca english language arts standard divided by the total number of asian 4th grade students -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade4_Mathematics,the number of asian 4th grade students who met the ca math standard divided by the total number of asian 4th grade students -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts,number of asian 6th grade students who met the ca english language arts standard divided by the total number of asian 6th grade students -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade6_Mathematics,"number of asian 6th grade students who met the ca math standard divided by the total number of asian 6th grade students;the number of asian 6th grade students who met the ca math standard divided by the total number of asian 6th grade students;3 the number of asian 6th grade students who met the ca math standard, divided by the total number of asian 6th grade students" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"4 the number of asian students in school grade 6 who met the ca math standard and are economically disadvantaged, divided by the total number of asian students in school grade 6" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade7_EnglishLanguageArts,"what number of asian 7th grade students met the ca_standard in english language arts, as a fraction of the total number of asian 7th grade students?" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade7_Mathematics,"number of asian 7th grade students who met the ca math standard divided by the total number of asian 7th grade students;the number of asian 7th grade students who met the ca math standard, divided by the total number of asian 7th grade students" -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Asian_SchoolGrade8_Mathematics,the number of asian 8th grade students who met the ca math standard divided by the total number of asian 8th grade students;number of asian 8th grade students who met the ca math standard divided by the total number of asian 8th grade students -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_EnglishLanguageArts,the number of black or african american students in 11th grade english language arts who met the ca standard divided by the total number of black or african american students in 11th grade english language arts -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_Mathematics,"number of black or african american 11th grade students who met the ca math standard divided by the total number of black or african american 11th grade students;what number of black or african american 11th graders met the ca math standard, as a fraction of the total number of black or african american 11th graders?;number of black or african american 11th grade students who met the ca standard in mathematics divided by the total number of black or african american 11th grade students;number of black or african american 11th grade students who met ca standards in mathematics divided by the total number of black or african american 11th grade students" -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics,number of black or african american students in grade 13 who met the ca standard in mathematics divided by the total number of black or african american students in grade 13;number of black or african american 13th grade students who met the ca standard in mathematics divided by the total number of black or african american 13th grade students;number of black or african american 13th grade students who met the ca math standard divided by the total number of black or african american 13th grade students -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of black or african american students in grade 13 who met the ca math standard and were not economically disadvantaged, divided by the total number of black or african american students in grade 13" -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_EnglishLanguageArts,number of black or african american 6th graders who met the ca standard in english language arts divided by the total number of black or african american 6th graders -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_Mathematics,"number of black or african american students in grade 6 who met the ca standard in mathematics divided by the total number of black or african american students in grade 6;number of black or african american 6th graders who met the ca math standard divided by the total number of black or african american 6th graders;the number of black or african american students in grade 6 who met the ca mathematics standard, divided by the total number of black or african american students in grade 6" -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_Mathematics,number of black or african american 7th grade students who met the ca math standard divided by the total number of black or african american 7th grade students;the number of black or african american students in grade 7 who met the ca math standard divided by the total number of black or african american students in grade 7;number of black or african american 7th graders who met the ca math standard divided by the total number of black or african american 7th graders -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_Mathematics,"the number of english learners who passed the ca math test divided by the total number of english learners who were in school grade 3 for 12 months or more;the number of english learners who have been enrolled in school for 12 months or more and met the ca standard in mathematics in grade 3, divided by the total number of english learners who have been enrolled in school for 12 months or more in grade 3" -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_Mathematics,the number of english learners who passed the ca math test divided by the number of english learners who were in school grade 6 for 12 months or more -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_Mathematics,the number of english learners who passed the ca math test divided by the total number of english learners who were in school grade 7 for 12 or more months -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_EnglishLanguageArts,"the number of students in grade 11 who are current learners in english language arts and met the ca standard, divided by the total number of students in grade 11 who are current learners in english language arts" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_Mathematics,number of students who met the ca standard in english and are current learners in grade 11 mathematics divided by the total number of students who are current learners in grade 11 mathematics -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_EnglishLanguageArts,number of students who are current learners in grade 13 english language arts who met the ca standard in english divided by the total number of students who are current learners in grade 13 english language arts -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_Mathematics,"the number of students who are current learners in grade 13 and have met the ca standard in english and mathematics, divided by the total number of students who are current learners in grade 13" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_Mathematics,"the number of students in grade 3 who are current learners and met the ca standard in english and mathematics divided by the total number of students in grade 3;what is the number of students in school grade 3 who are current learners and met the ca standard in english, divided by the total number of students in school grade 3?" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_EnglishLanguageArts,"number of students in grade 4 who are current learners of english and met the ca standard in english language arts divided by the total number of students in grade 4;number of students in grade 4 english language arts who are current learners and met the ca standard for english, divided by the total number of students in grade 4 english language arts who are current learners;number of students in grade 4 who are current learners of english and have met the ca english language arts standard, divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_Mathematics,number of students who have met the ca standard in english and are currently learning mathematics in grade 4 divided by the total number of students who are currently learning mathematics in grade 4;the number of students who are current learners in grade 4 english and met the ca standard in mathematics divided by the total number of students in grade 4 english -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_EnglishLanguageArts,number of students who are current learners in school grade 5 and have met the ca english language arts standard divided by the total number of students who are current learners in school grade 5 -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_Mathematics,the number of students in grade 5 who are current learners and have met the ca standard in english and mathematics divided by the total number of students in grade 5 -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_EnglishLanguageArts,"the number of students who are currently enrolled in grade 6 and met the ca_standard in english language arts, divided by the total number of students who are currently enrolled in grade 6;the number of students who met the ca_standard in english language arts in school grade 6 divided by the total number of students who are current learners in english language arts in school grade 6" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_Mathematics,the number of students in grade 6 who are current learners and met the ca standard in english and mathematics divided by the total number of students in grade 6;the number of students who are current learners in grade 6 and have met the ca standard in english and mathematics divided by the total number of students in grade 6 -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_Mathematics,"the number of students in grade 7 who are current learners of english and have met the ca standard in mathematics, divided by the total number of students in grade 7;the number of students in grade 7 who are current learners and met the ca standard in english and mathematics, divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_EnglishLanguageArts,the number of students in grade 8 who are current learners of english and have met the ca english language arts standard divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_Mathematics,"the number of students in grade 8 who are current learners in english and have met the ca standard in mathematics, divided by the total number of students in grade 8" -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade11_Mathematics,"the number of students who have met the ca_standard in english and have ever learned mathematics in school grade 11, divided by the total number of students who have ever learned mathematics in school grade 11" -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade8_EnglishLanguageArts,"the number of students who have met the ca english standard in 8th grade english language arts, divided by the total number of students who have ever learned english in 8th grade english language arts" -Percent_CA_StandardMet_In_Count_Student_English_EverLearned_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,what is the number of students in grade 13 english language arts from families of armed forces who met the ca standard divided by the total number of students in grade 13 english language arts from families of armed forces?;what is the number of students in 13th grade english language arts who are from families of armed forces who met the ca standard divided by the total number of students in 13th grade english language arts who are from families of armed forces? -Percent_CA_StandardMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade11_EnglishLanguageArts,number of female students in 11th grade english language arts who met the ca standard divided by the total number of female students in 11th grade english language arts;the number of female students in grade 11 who met the ca standard in english language arts divided by the total number of female students in grade 11 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade11_Mathematics,number of female students in grade 11 who met the ca math standard divided by the total number of female students in grade 11 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade13_EnglishLanguageArts,the number of female students in grade 13 who met the ca english language arts standard divided by the total number of female students in grade 13;the number of female students in grade 13 who met the ca standard in english language arts divided by the total number of female students in grade 13 who took the english language arts exam -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade13_Mathematics,number of female students in grade 13 who met the ca math standard divided by the total number of female students in grade 13 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade4_EnglishLanguageArts,number of female students in grade 4 who met the ca standard in english language arts divided by the total number of female students in grade 4;number of female students in grade 4 who met the ca english language arts standard divided by the total number of female students in grade 4 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade4_Mathematics,number of female students in grade 4 who met the ca math standard divided by the total number of female students in grade 4;the number of female students in grade 4 who met the ca math standard divided by the total number of female students in grade 4;the number of female students in grade 4 who met the ca math standard expressed as a fraction of the total number of female students in grade 4;the number of female students in grade 4 who met the ca math standard expressed as a percentage of the total number of female students in grade 4 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade5_EnglishLanguageArts,the number of female students in grade 5 who met the ca standard in english language arts divided by the total number of female students in grade 5 who took the english language arts test -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade5_Mathematics,number of female grade 5 students who met the ca math standard divided by the total number of female grade 5 students -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade6_Mathematics,the number of female students in grade 6 who met the ca math standard divided by the total number of female students in grade 6;number of female students in grade 6 who met the ca math standard divided by the total number of female students in grade 6 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade7_Mathematics,the number of female students in grade 7 who met the ca math standard divided by the total number of female students in grade 7;number of female students in grade 7 who met the ca math standard divided by the total number of female students in grade 7 -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade8_EnglishLanguageArts,"the number of female students in grade 8 who met the ca standard in english language arts, divided by the total number of female students in grade 8" -Percent_CA_StandardMet_In_Count_Student_Female_SchoolGrade8_Mathematics,number of female students in grade 8 who met the ca math standard divided by the total number of female students in grade 8;the number of female students in grade 8 who met the ca math standard divided by the total number of female students in grade 8;number of female students in grade 8 who met the ca math standard divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts,"the number of students who met the ca_standard in filipino in school grade 13 english language arts divided by the total number of students in filipino in school grade 13 english language arts;the number of students who met the ca standard in filipino, school grade 13, english language arts as a fraction of the total number of students in filipino, school grade 13, english language arts;the number of students who met the ca standard in filipino, school grade 13, english language arts divided by the total number of students in filipino, school grade 13, english language arts" -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics,"the number of students who met the ca standard in filipino, grade 13, mathematics divided by the total number of students in filipino, grade 13, mathematics" -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics,"the number of hispanic or latino 11th grade students who met the ca mathematics standard divided by the total number of hispanic or latino 11th grade students;number of hispanic or latino 11th grade students who met the ca mathematics standard divided by the total number of hispanic or latino 11th grade students;the number of hispanic or latino 11th graders who met the ca math standard, divided by the total number of hispanic or latino 11th graders" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics,"the number of hispanic or latino 13th graders who met the ca math standard, divided by the total number of hispanic or latino 13th graders;the number of hispanic or latino students in grade 13 who met the ca math standard, expressed as a fraction of the total number of hispanic or latino students in grade 13;number of hispanic or latino 13th grade students who met the ca math standard divided by the total number of hispanic or latino 13th grade students;what number of hispanic or latino students in 13th grade met the ca math standard, as a fraction of the total number of hispanic or latino students in 13th grade?" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics,"number of hispanic or latino 3rd grade students who met the ca math standard divided by the total number of hispanic or latino 3rd grade students;the number of hispanic or latino students in grade 3 who met the ca math standard, divided by the total number of hispanic or latino students in grade 3" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts,number of hispanic or latino 4th graders who met the ca english language arts standard divided by the total number of hispanic or latino 4th graders;number of hispanic or latino students in grade 4 who met the ca english language arts standard divided by the total number of hispanic or latino students in grade 4;number of hispanic or latino 4th grade students who met the ca english language arts standard divided by the total number of hispanic or latino 4th grade students;number of hispanic or latino 4th grade students who met the ca standard in english language arts divided by the total number of hispanic or latino 4th grade students -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics,"number of hispanic or latino 4th grade students who met the ca math standard divided by the total number of hispanic or latino 4th grade students;number of hispanic or latino 4th graders who met the ca math standard divided by the total number of hispanic or latino 4th graders;the number of hispanic or latino 4th grade students who met the ca math standard, divided by the total number of hispanic or latino 4th grade students" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,number of hispanic or latino 4th grade students who met the ca math standard and were not economically disadvantaged divided by the total number of hispanic or latino 4th grade students -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts,number of hispanic or latino 5th grade students who met the ca english language arts standard divided by the total number of hispanic or latino 5th grade students -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics,"number of hispanic or latino 5th graders who met the ca math standard divided by the total number of hispanic or latino 5th graders;the number of hispanic or latino 5th grade students who met the ca math standard divided by the total number of hispanic or latino 5th grade students;the number of hispanic or latino 5th grade students who met the ca math standard, divided by the total number of hispanic or latino 5th grade students;the number of hispanic or latino 5th graders who met the ca standard in mathematics, divided by the total number of hispanic or latino 5th graders" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts,number of hispanic or latino 6th grade students who met the ca standard in english language arts divided by the total number of hispanic or latino 6th grade students;number of hispanic or latino 6th grade students who met the ca english language arts standard divided by the total number of hispanic or latino 6th grade students;number of hispanic or latino 6th graders who met the ca english language arts standard divided by the total number of hispanic or latino 6th graders -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics,number of hispanic or latino 6th grade students who met the ca math standard divided by the total number of hispanic or latino 6th grade students;the number of hispanic or latino students in grade 6 who met the ca mathematics standard divided by the total number of hispanic or latino students in grade 6 -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts,number of hispanic or latino 7th grade students who met the ca english language arts standard divided by the total number of hispanic or latino 7th grade students;what is the number of hispanic or latino 7th grade students who met the ca standards in english language arts divided by the total number of hispanic or latino 7th grade students? -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics,number of hispanic or latino 7th grade students who met the ca math standard divided by the total number of hispanic or latino 7th grade students;number of hispanic or latino students in grade 7 who met the ca math standard divided by the total number of hispanic or latino students in grade 7 -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts,number of hispanic or latino 8th grade students who met the ca english language arts standard divided by the total number of hispanic or latino 8th grade students -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics,"number of hispanic or latino 8th grade students who met the ca math standard divided by the total number of hispanic or latino 8th grade students;the number of hispanic or latino 8th grade students who met the ca math standard divided by the total number of hispanic or latino 8th grade students;the number of hispanic or latino students in grade 8 who met the ca math standard, divided by the total number of hispanic or latino students in grade 8;the number of hispanic or latino students in grade 8 who met the ca math standard divided by the total number of hispanic or latino students in grade 8" -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_Mathematics,"number of english learners in grade 11 who are proficient in mathematics, and who are either initially fluent proficient or reclassified fluent proficient in mathematics, divided by the total number of english learners in grade 11" -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_Mathematics,"number of english learners in grade 5 who are initial fluent proficient or reclassified fluent proficient or only english in mathematics, divided by the total number of english learners in grade 5" -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_Mathematics,number of english learners who are initially fluent proficient in mathematics in 11th grade who met the ca standard divided by the total number of english learners who are initially fluent proficient in mathematics in 11th grade -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts,number of 7th grade english language arts students who are english learners and met the ca standard for initial fluent proficiency divided by the total number of 7th grade english language arts students who are english learners -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_Mathematics,number of students who are english learners and initial fluent proficient in mathematics in school grade 7 who met the ca standard divided by the total number of students who are english learners and initial fluent proficient in mathematics in school grade 7 -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts,the number of english learners in grade 8 who are initially fluent and proficient in english language arts as a fraction of the total number of english learners in grade 8 -Percent_CA_StandardMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade11_EnglishLanguageArts,"number of male students in grade 11 who met the ca standard in english language arts divided by the total number of male students in grade 11;the number of male students in grade 11 who met the ca standard in english language arts divided by the total number of male students in grade 11;what number of 11th grade male students met the ca standard in english language arts, as a fraction of the total number of 11th grade male students?;number of male students in 11th grade english language arts who met the ca standard divided by the total number of male students in 11th grade english language arts" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade11_Mathematics,"the number of male students in grade 11 who met the ca standard in mathematics, divided by the total number of male students in grade 11;the number of male students in grade 11 who met the ca math standard divided by the total number of male students in grade 11;the number of male students in 11th grade who met the california standard in mathematics, divided by the total number of male students in 11th grade;the number of male students in grade 11 who met the ca standard in mathematics divided by the total number of male students in grade 11" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade13_EnglishLanguageArts,the number of male students in grade 13 who met the ca standard in english language arts divided by the total number of male students in grade 13 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade13_Mathematics,"the number of male students in grade 13 who met the ca standard in mathematics, divided by the total number of male students in grade 13;the number of male students in grade 13 who met the ca math standard, divided by the total number of male students in grade 13;number of male students in grade 13 who met the ca math standard divided by the total number of male students in grade 13;the number of male students in grade 13 who met the ca standard in mathematics, divided by the number of male students in grade 13 who took the mathematics exam" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade4_EnglishLanguageArts,number of male students in grade 4 who met the ca standard in english language arts divided by the total number of male students in grade 4;the number of male students in grade 4 who met the ca standard in english language arts divided by the total number of male students in grade 4;the number of male students in grade 4 who met the ca standard in english language arts expressed as a fraction of the total number of male students in grade 4;the number of male students in grade 4 who met the ca standard in english language arts expressed as a percentage of the total number of male students in grade 4 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade4_Mathematics,number of male students in grade 4 who met the ca math standard divided by the total number of male students in grade 4;number of male grade 4 students who met the ca math standard divided by the total number of male grade 4 students;the number of male grade 4 students who met the ca math standard as a percentage of the total number of male grade 4 students;number of male students in grade 4 who met the ca math standard expressed as a percentage of the total number of male students in grade 4 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade5_EnglishLanguageArts,"the number of male students in grade 5 who met the ca standard in english language arts, divided by the total number of male students in grade 5" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade5_Mathematics,number of male students in grade 5 who met the ca math standard divided by the total number of male students in grade 5;number of male 5th grade students who met the ca math standard divided by the total number of male 5th grade students;the number of male 5th grade students who met the ca math standard divided by the total number of male 5th grade students;the number of male students in grade 5 who met the ca math standard divided by the total number of male students in grade 5 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade6_EnglishLanguageArts,"the number of male students in grade 6 who met the ca standard in english language arts, divided by the total number of male students in grade 6" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade6_Mathematics,"number of male students in grade 6 who met the ca math standard divided by the total number of male students in grade 6;the number of male students in grade 6 who met the ca math standard divided by the total number of male students in grade 6;the number of male students in grade 6 who met the ca math standard, divided by the total number of male students in grade 6" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade7_EnglishLanguageArts,"number of male students in grade 7 who met the ca english language arts standard divided by the total number of male students in grade 7;the number of male students in grade 7 who met the ca standard in english language arts, divided by the total number of male students in grade 7" -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade7_Mathematics,number of male students in grade 7 who met the ca math standard divided by the total number of male students in grade 7;the number of male students in grade 7 who met the ca math standard divided by the total number of male students in grade 7 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade8_EnglishLanguageArts,number of male 8th grade students who met the ca english language arts standard divided by the total number of male 8th grade students;number of male 8th grade students who met the ca standard in english language arts divided by the total number of male 8th grade students;the number of male students in grade 8 who met the ca standard in english language arts divided by the total number of male students in grade 8;the number of male students in grade 8 who met the ca standards in english language arts divided by the total number of male students in grade 8 -Percent_CA_StandardMet_In_Count_Student_Male_SchoolGrade8_Mathematics,the number of male 8th grade students who met the ca math standard divided by the total number of male 8th grade students;the number of male 8th grade students who met the ca math standard as a fraction of the total number of male 8th grade students;the number of male 8th grade students who met the ca math standard as a percentage of the total number of male 8th grade students;the number of male students in grade 8 who met the ca math standard divided by the total number of male students in grade 8 -Percent_CA_StandardMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade13_EnglishLanguageArts,"the number of students without disabilities who met the ca standard in english language arts in grade 13, divided by the total number of students without disabilities in grade 13" -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade4_EnglishLanguageArts,the number of students without disabilities who met the california standards in english language arts in grade 4 divided by the total number of students without disabilities in grade 4 -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade6_Mathematics,the number of students in grade 6 who have no disabilities and met the ca math standard divided by the total number of students in grade 6 -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NoDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_Mathematics,"the number of students not from military families who met the ca math standard in grade 13, divided by the total number of students not from military families in grade 13;number of students in grade 13 who met the ca math standard and are not from a military family, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_Mathematics,number of students in grade 3 who are not from military families who met the ca math standard divided by the total number of students in grade 3 who are not from military families -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_Mathematics,"what is the number of students in grade 4 who are not from military families who met the ca math standard divided by the total number of students in grade 4 who are not from military families?;number of students in school grade 4 who are not from military families and met the ca math standard, divided by the total number of students in school grade 4 who are not from military families;number of students in school grade 4 who met the ca math standard and are not from military families, divided by the total number of students in school grade 4;number of students in grade 4 who are not from military families who met the ca math standard, divided by the total number of students in grade 4 who are not from military families" -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_Mathematics,"number of students in grade 5 who are not from a military family and met the ca math standard divided by the total number of students in grade 5;the number of students in grade 5 who are not from military families and met the ca math standard, divided by the total number of students in grade 5 who are not from military families" -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_Mathematics,"number of students in grade 6 who are not from military families and met the ca math standard divided by the total number of students in grade 6;number of students in grade 6 who are not from military families who met the ca standard in mathematics divided by the total number of students in grade 6 who are not from military families;number of students in grade 6 who are not from military families and met the ca math standard, divided by the total number of students in grade 6 who are not from military families" -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_Mathematics,"number of students in grade 8 who are not from military families and met the ca math standard, divided by the total number of students in grade 8 who are not from military families" -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade4_Mathematics,"the number of students in school grade 4 who met the ca standard in mathematics, divided by the total number of students in school grade 4 who only speak english" -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_OnlyEnglish_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_Mathematics,"number of students who are college graduates, in grade 11, and met the ca standard in mathematics, divided by the total number of students;the number of students who are college graduates, in grade 11, and met the ca_standard in mathematics, divided by the total number of students" -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_Mathematics,"the number of students who are college graduates, in school grade 13, and met the ca_standard in mathematics divided by the total number of students" -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_Mathematics,"the number of students who are college graduates and met the ca_standard in mathematics in school grade 4, divided by the total number of students;number of students who are college graduates and met the ca standard in mathematics in grade 4 divided by the total number of students" -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_Mathematics,number of students who are college graduates and met the ca standard in mathematics in grade 5 divided by the total number of students;the number of students who are college graduates and met the ca_standard in mathematics in school grade 5 divided by the total number of students;number of students who are college graduates and met the ca standard in mathematics in school grade 5 divided by the total number of students;the number of students who are college graduates and met the ca standard in mathematics in school grade 5 divided by the total number of students -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_Mathematics,"number of students who are college graduates and met the ca standard in mathematics in grade 6 divided by the total number of students;the number of students who are college graduates and have met the ca_standard in mathematics in school grade 6 divided by the total number of students;the number of students who are college graduates and have met the ca_standard in mathematics in school grade 6, divided by the total number of students in school grade 6;the number of students who met the ca standard in mathematics in grade 6 and whose parents are college graduates divided by the total number of students who met the ca standard in mathematics in grade 6" -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_Mathematics,number of students who are college graduates and met the ca standards in mathematics in grade 7 divided by the total number of students;number of students who are college graduates and met the ca standard in mathematics in grade 7 divided by the total number of students -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_Mathematics,"number of students who are college graduates and met the ca_standard in mathematics in school grade 8 divided by the total number of students;number of students who are college graduates and met the ca standard in mathematics in grade 8 divided by the total number of students;the number of students who are college graduates and met the ca_standard in mathematics in school grade 8, divided by the total number of students" -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_EnglishLanguageArts,"what is the number of students in graduate or post-graduate school grade 11 who met the ca_standard in english language arts, divided by the total number of students in graduate or post-graduate school grade 11?" -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_Mathematics,"number of students who met the ca standard in mathematics in graduate school or post-graduate school, grade 13 divided by the total number of students in graduate school or post-graduate school, grade 13" -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_EnglishLanguageArts,"number of students in graduate school or post-graduate school who met the ca standard in english language arts in grade 4 divided by the total number of students in graduate school or post-graduate school;what is the number of students in graduate or postgraduate school who met the ca_standard in english language arts in grade 4, divided by the total number of students in graduate or postgraduate school?" -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_EnglishLanguageArts,the number of students who met the ca_standard in graduate school or post graduate school grade 6 english language arts divided by the total number of students in graduate school or post graduate school grade 6 english language arts -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_Mathematics,number of students who are less than high school graduates and in grade 13 who met the ca math standard divided by the total number of students who are less than high school graduates and in grade 13 -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_EnglishLanguageArts,"the number of students in grade 7 with some college but no degree who met the ca standard in english language arts, divided by the total number of students in grade 7 with some college but no degree" -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_Mathematics,"the number of english learners in grade 3 who are reclassified as fluent proficient in mathematics, divided by the total number of english learners in grade 3;number of 3rd grade english learners who are reclassified as fluent proficient in mathematics divided by the total number of 3rd grade english learners" -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts,the number of english learners who are reclassified as fluent proficient in english language arts in grade 4 divided by the total number of english learners in grade 4;the number of english learners who are reclassified as fluent proficient in english language arts in grade 4 expressed as a percentage of the total number of english learners in grade 4 -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_Mathematics,"the number of students who are english learners, reclassified fluent proficient, and met the ca standard in mathematics in school grade 4, divided by the total number of students in school grade 4" -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_Mathematics,"the number of ca_standard met, reclassified fluent proficient, english learner, school grade 5, mathematics students divided by the total number of students in school grade 5 mathematics;the number of ca_standard met, reclassified fluent proficient, english learner, school grade 5, mathematics students as a percentage of the total number of students in school grade 5 mathematics;number of 5th grade english learners who are reclassified as fluent proficient in mathematics divided by the total number of 5th grade english learners" -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_Mathematics,the number of 7th grade english learners who are reclassified as fluent proficient in mathematics divided by the total number of 7th grade english learners -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts,number of students in grade 11 who met the ca english language arts standard divided by the total number of students in grade 11;number of grade 11 students who met the ca english language arts standard divided by the total number of grade 11 students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_Homeless,percentage of students in 11th grade english language arts who are homeless;number of students in 11th grade english language arts who are homeless divided by the total number of students in 11th grade english language arts;share of students in 11th grade english language arts who are homeless;number of homeless students who met the ca standard in english language arts in grade 11 divided by the total number of homeless students in grade 11 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotMigrant,number of students in grade 11 who met the ca standard in english language arts and are not migrants divided by the total number of students in grade 11;number of students in grade 11 who met the ca english language arts standard and were not migrants divided by the total number of students in grade 11 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics,"the number of grade 11 students who met the ca math standard, divided by the total number of grade 11 students;the number of students in grade 11 who met the ca math standard, divided by the total number of students in grade 11" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_EconomicallyDisadvantaged,"what number of economically disadvantaged 11th grade math students met the ca standard, as a fraction of the total number of economically disadvantaged 11th grade math students?" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_HavingHome,"number of students in grade 11 who have met the ca math standard and have a home divided by the total number of students in grade 11;the number of students in grade 11 who met the ca math standard and have a home, divided by the total number of students in grade 11;number of 11th grade students who have met the ca math standard and have a home, divided by the total number of 11th grade students" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_Homeless,"number of students in grade 11 who met the ca standard in mathematics and are homeless, divided by the total number of students in grade 11;number of students in grade 11 who met the ca standard in mathematics and are homeless divided by the total number of students in grade 11;the number of homeless students in 11th grade who met the ca standard in mathematics, divided by the total number of homeless students in 11th grade;the number of homeless students in grade 11 who met the ca math standard divided by the total number of students in grade 11 who met the ca math standard" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 11 who met the ca math standard and are not economically disadvantaged divided by the total number of students in grade 11;the number of students in grade 11 who met the ca math standard and are not economically disadvantaged, divided by the total number of students in grade 11;number of students in grade 11 who met the ca standard in mathematics and are not economically disadvantaged, divided by the total number of students in grade 11" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade11_Mathematics_NotMigrant,"the number of students in grade 11 who met the ca standard in mathematics and were not migrants, divided by the total number of students in grade 11;the number of students in grade 11 who met the ca standard in mathematics and are not migrants, divided by the total number of students in grade 11;number of students in grade 11 who met the ca math standard and are not migrants divided by the total number of students in grade 11" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts,the number of students in grade 13 who met the ca english language arts standard divided by the total number of students in grade 13 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Foster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Homeless,what is the number of 13th grade english language arts students who are homeless who met the ca standard divided by the total number of 13th grade english language arts students who are homeless?;number of students who met the ca standard in english language arts in grade 13 who are homeless divided by the total number of students who met the ca standard in english language arts in grade 13;the number of students in grade 13 who met the ca standard in english language arts and are homeless divided by the total number of students in grade 13;number of students who are homeless and met the ca standard in english language arts in grade 13 as a fraction of the total number of students in grade 13 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Migrant,"the number of students in grade 13 who met the ca_standard in english language arts and are also migrants, divided by the total number of students in grade 13;the number of students in grade 13 who met the ca standard in english language arts and are also migrants, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotMigrant, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics,number of students in grade 13 who met the ca math standard divided by the total number of students in grade 13 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_Foster,"the number of foster students in grade 13 who met the ca_standard in mathematics, divided by the total number of students in grade 13 who met the ca_standard in mathematics" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_HavingHome,"the number of students in grade 13 who have a home and met the ca math standard, divided by the total number of students in grade 13;the number of students in grade 13 who met the ca mathematics standard and have a home divided by the total number of students in grade 13;number of students in grade 13 who have met the ca mathematics standard and have a home divided by the total number of students in grade 13;the number of students in grade 13 who met the ca standard in mathematics and have a home, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_Homeless,the number of homeless students in grade 13 who met the ca standard in mathematics divided by the total number of homeless students in grade 13;the number of homeless students in grade 13 who met the ca standard in mathematics expressed as a fraction of the total number of homeless students in grade 13;number of homeless students who met the ca standard in mathematics in school grade 13 divided by the total number of homeless students in school grade 13;the number of homeless students who met the ca_standard in mathematics in school grade 13 divided by the total number of homeless students in school grade 13 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_Migrant,"the number of students in grade 13 who met the ca standard in mathematics and are also migrants divided by the total number of students in grade 13;the number of students in grade 13 who are migrants and met the ca standard in mathematics, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 13 who met the ca math standard and are not economically disadvantaged divided by the total number of students in grade 13;the number of students in grade 13 who met the ca math standard and were not economically disadvantaged, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade13_Mathematics_NotMigrant,"the number of students in grade 13 who met the ca standard in mathematics and were not migrants, divided by the total number of students in grade 13" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_Homeless,number of students in grade 3 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 3 who met the ca standard in english language arts;number of students in grade 3 who are homeless who met the ca standard in english language arts divided by the total number of students in grade 3 who are homeless -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotMigrant, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_HavingHome,"the number of students in grade 3 who met the ca math standard and have a home, divided by the total number of students in grade 3;number of students in grade 3 who met the ca math standard and have a home divided by the total number of students in grade 3" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_Homeless,"what is the number of homeless students in grade 3 who met the ca standard in mathematics, divided by the total number of homeless students in grade 3?;number of homeless students in school grade 3 who met the ca standard in mathematics divided by the total number of students in school grade 3 who met the ca standard in mathematics;number of homeless students in grade 3 who met the ca math standard divided by the total number of homeless students in grade 3" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_NotFoster,number of students in grade 3 who met the ca math standard and are not in foster care divided by the total number of students in grade 3 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade3_Mathematics_NotMigrant,"the number of students in grade 3 who met the ca math standard and are not migrants, divided by the total number of students in grade 3;number of students in grade 3 who met the ca math standard and are not migrants divided by the total number of students in grade 3" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts,number of 4th grade students who met the ca english language arts standard divided by the total number of 4th grade students;number of students in grade 4 who met the ca english language arts standard divided by the total number of students in grade 4;number of students in grade 4 who met the ca standard in english language arts divided by the total number of students in grade 4 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_HavingHome,"the number of students in grade 4 who have a home and met the ca standard in english language arts divided by the total number of students in grade 4;the number of students in grade 4 who met the ca standard in english language arts and have a home, divided by the total number of students in grade 4;number of students in grade 4 english language arts who have a home and met the ca standard divided by the total number of students in grade 4 english language arts" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_Homeless,number of 4th grade students who met the ca standard in english language arts who are homeless divided by the total number of 4th grade students;number of students in grade 4 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 4;number of students in grade 4 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 4 who are homeless;number of students in grade 4 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 4 who met the ca standard in english language arts -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotFoster,"the number of students in grade 4 who met the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 4;the number of students in grade 4 who met the ca standard in english language arts and were not in foster care divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotMigrant,"the number of students in grade 4 who met the ca standard in english language arts and were not migrant, divided by the total number of students in grade 4;number of students in grade 4 who met the ca standard in english language arts and are not migrant divided by the total number of students in grade 4;the number of students in grade 4 who met the ca standard in english language arts and were not migrants, divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics,"the number of students in grade 4 who met the ca standard in mathematics, divided by the total number of students in grade 4;number of students in grade 4 who met the ca math standard divided by the total number of students in grade 4;number of students who met the ca math standard in grade 4 divided by the total number of students in grade 4;the number of students in grade 4 who met the ca standard in mathematics divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,what number of economically disadvantaged grade 4 students met the ca math standard divided by the total number of economically disadvantaged grade 4 students?;what number of economically disadvantaged grade 4 students met the ca math standard as a proportion of the total number of economically disadvantaged grade 4 students? -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_HavingHome,"the number of students in grade 4 who have a home and met the ca math standard, divided by the total number of students in grade 4;the number of students in grade 4 who met the ca math standard and have a home, divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_Homeless,the number of homeless students in grade 4 who met the ca standard in mathematics divided by the total number of homeless students in grade 4;number of homeless students in grade 4 who met the ca math standard divided by the total number of students in grade 4 who met the ca math standard;number of homeless students in grade 4 who met the ca standard in mathematics divided by the total number of homeless students in grade 4;the number of homeless 4th grade students who met the ca standard in mathematics divided by the total number of homeless 4th grade students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the number of students in school grade 4 who met the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in school grade 4;number of students in grade 4 who met the ca math standard and are not economically disadvantaged divided by the total number of students in grade 4;number of students in grade 4 who met the ca standard in mathematics divided by the number of students in grade 4 who are not economically disadvantaged;the number of students in grade 4 who met the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_NotFoster,"the number of students in grade 4 who met the ca math standard and were not in foster care, divided by the total number of students in grade 4;number of students in grade 4 who met the ca standard in mathematics and are not in foster care, divided by the total number of students in grade 4" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade4_Mathematics_NotMigrant,"the number of students in grade 4 who met the ca math standard and were not migrants divided by the total number of students in grade 4;the number of students in grade 4 who met the ca math standard and were not migrants, divided by the total number of students in grade 4;the number of grade 4 students who met the ca math standard and were not migrants, divided by the total number of grade 4 students;number of 4th grade students who met the ca math standard and are not migrants divided by the total number of 4th grade students" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_Homeless,number of homeless students in 5th grade who met the ca standard in english language arts divided by the total number of homeless students in 5th grade;number of students in grade 5 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 5 who met the ca standard in english language arts -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotMigrant, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics,number of grade 5 students who met the ca math standard divided by the total number of grade 5 students;number of students in grade 5 who met the ca math standard divided by the total number of students in grade 5 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_HavingHome,"the number of students in grade 5 who met the ca math standard and have a home divided by the total number of students in grade 5;number of students in grade 5 who met the ca mathematics standard and have a home divided by the total number of students in grade 5;number of students in grade 5 who have met the ca math standard and have a home, divided by the total number of students in grade 5;number of 5th grade students who have met the ca math standard and have a home divided by the total number of 5th grade students" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_Homeless,"the number of homeless students in grade 5 who met the ca standard in mathematics, divided by the total number of homeless students in grade 5;the number of homeless students in grade 5 who met the ca math standard, divided by the total number of homeless students in grade 5;the number of students in grade 5 who met the ca math standard and are homeless divided by the total number of students in grade 5;what number of homeless students in grade 5 met the ca standard in mathematics, as a fraction of the total number of homeless students in grade 5?" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_NotFoster,number of 5th grade students who met the ca math standard and are not in foster care divided by the total number of 5th grade students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade5_Mathematics_NotMigrant,"the number of students in grade 5 who met the ca math standard and were not migrants, divided by the total number of students in grade 5" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_HavingHome, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_Homeless,number of homeless students who met the ca standard in english language arts in grade 6 divided by the total number of homeless students in grade 6;number of students in grade 6 who met the ca standard in english language arts who are homeless divided by the total number of students in grade 6 who met the ca standard in english language arts -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotMigrant, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics,number of 6th grade students who met the ca math standard divided by the total number of 6th grade students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_HavingHome,"the number of students in grade 6 who met the ca mathematics standard and have a home, divided by the total number of students in grade 6;number of students in grade 6 who met the ca math standard and have a home, divided by the total number of students in grade 6" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_Homeless,"the number of homeless students in grade 6 who met the ca standard in mathematics, divided by the total number of homeless students in grade 6;the number of homeless students in grade 6 who met the ca standard in mathematics, expressed as a fraction of the total number of homeless students in grade 6;number of homeless students in grade 6 who met the ca standard in mathematics divided by the total number of homeless students in grade 6;number of homeless students who met the ca math standard in grade 6, divided by the total number of homeless students in grade 6" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 6 who met the ca math standard and are not economically disadvantaged, divided by the total number of students in grade 6" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_NotFoster,"the number of students in grade 6 who met the ca math standard and were not in foster care, divided by the total number of students in grade 6" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade6_Mathematics_NotMigrant,"the number of students in grade 6 who met the ca math standard and are not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who met the ca math standard and were not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who met the ca standard in mathematics and are not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who met the ca mathematics standard and are not migrants divided by the total number of students in grade 6" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts,number of 7th grade students who met the ca english language arts standard divided by the total number of 7th grade students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_HavingHome,"the number of students in grade 7 who have met the ca english language arts standard and have a home, divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_Homeless,"number of students in school grade 7 who met the ca_standard in english language arts and are homeless, divided by the total number of students in school grade 7;number of students in grade 7 who are homeless and met the ca standard in english language arts divided by the total number of students in grade 7 who are homeless;number of students in grade 7 who are homeless and met the ca standard in english language arts as a percentage of the total number of students in grade 7;number of students in grade 7 who are homeless and met the ca standard in english language arts as a fraction of the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotFoster,"number of students in grade 7 english language arts who met the ca standard, not in foster care divided by the total number of students in grade 7 english language arts, not in foster care;number of students in grade 7 who met the ca standard in english language arts and are not in foster care divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotMigrant, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics,number of students in grade 7 who met the ca math standard divided by the total number of students in grade 7;the number of students in grade 7 who met the ca math standard divided by the total number of students in grade 7 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_HavingHome,"the number of students in grade 7 who met the ca standard in mathematics and have a home, divided by the total number of students in grade 7;number of students in grade 7 who met the ca math standard and have a home, divided by the total number of students in grade 7;number of students in grade 7 who have met the ca math standard and have a home divided by the total number of students in grade 7;number of 7th grade students who have met the ca math standard and have a home divided by the total number of 7th grade students" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_Homeless,"number of homeless students in grade 7 who met the ca math standard divided by the total number of homeless students in grade 7;the number of students in grade 7 who met the ca standard in mathematics and are homeless, divided by the total number of students in grade 7;what number of grade 7 homeless students met the ca math standard, as a percentage of all grade 7 homeless students?;what number of grade 7 homeless students met the ca math standard, as a fraction of all grade 7 homeless students?" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 7 who met the ca standard in mathematics and are not economically disadvantaged divided by the total number of students in grade 7;number of students in grade 7 who met the ca math standard and are not economically disadvantaged divided by the total number of students in grade 7;the number of students in grade 7 who met the ca math standard and were not economically disadvantaged, divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_NotFoster,"the number of students in grade 7 who met the ca math standard and were not in foster care, divided by the total number of students in grade 7;the number of students in grade 7 who met the ca math standard and are not in foster care divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade7_Mathematics_NotMigrant,"the number of students in grade 7 who met the ca standard in mathematics and are not migrants, divided by the total number of students in grade 7;the number of students in grade 7 who met the ca standard in mathematics and are not migrants divided by the total number of students in grade 7" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts,number of 8th grade students who met the ca english language arts standard divided by the total number of 8th grade students;number of students in grade 8 who met the ca english language arts standard divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_HavingHome,number of 8th grade students who met the ca english language arts standard and have a home divided by the total number of 8th grade students -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_Homeless,"the number of students in grade 8 who are homeless and met the ca standard in english language arts, expressed as a fraction of the total number of students in grade 8;number of students in grade 8 english language arts who are homeless who met the ca standard divided by the total number of students in grade 8 english language arts who are homeless;number of students in grade 8 english language arts who are homeless who met the ca standard expressed as a percentage of the total number of students in grade 8 english language arts;number of students in grade 8 who met the ca standard in english language arts and were homeless divided by the total number of students in grade 8" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotFoster, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotMigrant,number of students in grade 8 who met the ca english language arts standard and are not migrants divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics,number of 8th grade students who met the ca math standard divided by the total number of 8th grade students;number of students in grade 8 who met the ca math standard divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_HavingHome,"number of students in grade 8 who have a home and met the ca math standard divided by the total number of students in grade 8;the number of students in grade 8 who have a home and met the ca math standard, divided by the total number of students in grade 8;number of students in grade 8 who met the ca math standard and have a home, divided by the total number of students in grade 8 who have a home;the number of students in grade 8 who met the ca math standard and have a home, divided by the total number of students in grade 8" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_Homeless,the number of students in grade 8 who met the ca standard in mathematics and are homeless divided by the total number of students in grade 8;number of homeless students in grade 8 who met the ca standard in mathematics divided by the total number of homeless students in grade 8;number of homeless students who met the ca math standard in grade 8 divided by the total number of homeless students in grade 8;number of homeless students who met the ca standard in grade 8 mathematics divided by the total number of homeless students in grade 8 mathematics -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 8 who met the ca standard in mathematics and were not economically disadvantaged divided by the total number of students in grade 8;number of students who met the ca standard in mathematics in grade 8 who were not economically disadvantaged divided by the total number of students in grade 8 who were not economically disadvantaged;number of students in grade 8 who met the ca standard in mathematics and were not economically disadvantaged, divided by the total number of students in grade 8" -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_NotFoster,number of students in grade 8 who met the ca math standard and are not in foster care divided by the total number of students in grade 8 -Percent_CA_StandardMet_In_Count_Student_SchoolGrade8_Mathematics_NotMigrant,"the number of students in grade 8 who met the ca standard in mathematics and are not migrants divided by the total number of students in grade 8;the number of students in grade 8 who met the ca standard in mathematics and were not migrants, divided by the total number of students in grade 8;number of 8th grade students who met the ca math standard and are not migrants divided by the total number of 8th grade students;number of students in grade 8 who met the ca math standard and are not migrants divided by the total number of students in grade 8" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts,"number of students in 11th grade english language arts who are two or more races and met the ca standard divided by the total number of students in 11th grade english language arts who are two or more races;number of students in 11th grade english language arts who are two or more races who met the ca standard divided by the total number of students in 11th grade english language arts who are two or more races;number of students who met the ca standard in english language arts, grade 11, who are two or more races, divided by the total number of students who are two or more races in grade 11" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"4 the number of students who are not economically disadvantaged and identify as two or more races who met the ca standard in english language arts in school grade 11, divided by the total number of students who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics,"the number of students who are of two or more races and met the ca standard in mathematics in school grade 11, divided by the total number of students who are of two or more races in school grade 11;the number of students who are of two or more races and met the ca standard in mathematics in grade 11, divided by the total number of students of two or more races in grade 11" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts,"the number of students who are two or more races and in school grade 13 who met the ca_standard in english language arts divided by the total number of students who are two or more races and in school grade 13;the number of students who are two or more races, are in school grade 13, and met the ca standard in english language arts, divided by the total number of students who are two or more races and are in school grade 13" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of students who are not economically disadvantaged and identify as two or more races who met the ca standard in english language arts in grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 13 -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics,"the number of students of two or more races in school grade 13 who met the ca standard in mathematics, divided by the total number of students of two or more races in school grade 13" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,number of students who are not economically disadvantaged and identify as two or more races who met the ca standard in mathematics in grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 13 -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics,"the number of students who are of two or more races and met the ca standard in mathematics in school grade 3, divided by the total number of students who are of two or more races in school grade 3" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"the number of students who are two or more races and met the ca_standard in mathematics in school grade 3 who are economically disadvantaged, divided by the total number of students who are two or more races and met the ca_standard in mathematics in school grade 3" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts,"number of students in grade 4 who are two or more races and met the ca standard in english language arts divided by the total number of students in grade 4 who are two or more races;number of students who met the ca standard in english language arts, grade 4, who are two or more races, divided by the total number of students who are two or more races;the number of students who are of two or more races and met the ca standard in english language arts in school grade 4, divided by the total number of students who are of two or more races in school grade 4;number of students in grade 4 who met the ca standard in english language arts who are two or more races divided by the total number of students in grade 4 who are two or more races" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics,"number of students in grade 4 who met the ca standard in mathematics, divided by the total number of students in grade 4 who are two or more races;sure, here are 5 different ways to say ""count of student: ca_standard met, two or more races, school grade 4, mathematics (as fraction of count student two or more races school grade 4 mathematics)"":;the number of students of two or more races who met the ca standard in mathematics in school grade 4 divided by the total number of students of two or more races in school grade 4;number of students in school grade 4 who met the ca standard in mathematics, divided by the total number of students in school grade 4 who are two or more races" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of students who are two or more races and met the ca_standard in mathematics in school grade 4 who are economically disadvantaged, divided by the total number of students who are two or more races and met the ca_standard in mathematics in school grade 4" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,number of students who met the ca standard in mathematics in school grade 4 who are of two or more races and not economically disadvantaged divided by the total number of students who are of two or more races and not economically disadvantaged in school grade 4 -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts,"the number of students in school grade 5 who identify as two or more races and met the ca_standard in english language arts, divided by the total number of students in school grade 5 who identify as two or more races;the number of students who are two or more races, are in school grade 5, and met the ca_standard in english language arts, divided by the total number of students who are two or more races and are in school grade 5;number of students of two or more races in school grade 5 who met the ca standard in english language arts, divided by the total number of students of two or more races in school grade 5;the number of students who are two or more races and in school grade 5 who met the ca_standard in english language arts, divided by the total number of students who are two or more races and in school grade 5" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics,"the number of students who are two or more races and met the ca standard in mathematics in school grade 5, divided by the total number of students who are two or more races in school grade 5;the number of students who are two or more races and who met the ca standard in mathematics in school grade 5, divided by the total number of students who are two or more races in school grade 5" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are of two or more races, in school grade 5, who are not economically disadvantaged, and who met the ca standard in mathematics, divided by the total number of students who are of two or more races, in school grade 5, who are not economically disadvantaged" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts,"number of students who met the ca standard in english language arts in school grade 6 who are of two or more races, divided by the total number of students of two or more races in school grade 6;2 the number of students who met the ca standard in english language arts in school grade 6 and are of two or more races, divided by the total number of students of two or more races in school grade 6;number of students in grade 6 who are two or more races and met the ca standard in english language arts divided by the total number of students in grade 6 who are two or more races;what number of students of two or more races in grade 6 met the ca standard for english language arts, divided by the total number of students of two or more races in grade 6?" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and identify as two or more races who met the ca standard in english language arts in school grade 6, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 6" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics,number of students in grade 6 who are two or more races and met the ca standard in mathematics divided by the total number of students in grade 6 who are two or more races -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts,"the number of students who are two or more races who met the ca_standard in english language arts in school grade 7 divided by the total number of students who are two or more races in school grade 7;the number of students who met the ca_standard in english language arts in school grade 7 who are two or more races, expressed as a fraction of the total number of students who are two or more races in school grade 7;3 the number of students who are two or more races in school grade 7 who met the ca_standard in english language arts divided by the total number of students who are two or more races in school grade 7;4 the number of students who are two or more races in school grade 7 who met the ca_standard in english language arts as a percentage of the total number of students who are two or more races in school grade 7" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"what number of students in grade 7 who are not economically disadvantaged and identify as two or more races met the ca standard in english language arts out of all the students in grade 7 who are not economically disadvantaged and identify as two or more races?;the number of students who are not economically disadvantaged and identify as two or more races who met the ca standard in english language arts in school grade 7, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 7" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics,"the number of students in grade 7 who are two or more races and met the ca standard in mathematics divided by the total number of students in grade 7 who are two or more races;the number of students who are two or more races and met the ca standard in mathematics in school grade 7, divided by the total number of students who are two or more races in school grade 7;the number of students who are of two or more races and who met the ca standard in mathematics in school grade 7, divided by the total number of students who are of two or more races in school grade 7" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,number of students who met the ca standard in mathematics in grade 7 who are not economically disadvantaged and are of two or more races divided by the total number of students who are not economically disadvantaged and are of two or more races in grade 7 -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts,"what number of students of two or more races met the ca standard in english language arts in grade 8, as a fraction of the total number of students of two or more races in grade 8?;what number of students of two or more races in grade 8 met the ca standard in english language arts, as a fraction of the total number of students of two or more races in grade 8?;the number of students of two or more races in grade 8 who met the ca standards in english language arts divided by the total number of students of two or more races in grade 8;number of students of two or more races in grade 8 who met the ca standard in english language arts, divided by the total number of students of two or more races in grade 8" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are two or more races, not economically disadvantaged, and met the ca standard in english language arts in grade 8 divided by the total number of students who are two or more races and not economically disadvantaged in grade 8" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics,"number of students in grade 8 who met the ca standard in mathematics, divided by the total number of students in grade 8 who are two or more races;what is the number of students in grade 8 who are two or more races who met the ca math standard, divided by the total number of students in grade 8 who are two or more races?;the number of students who are two or more races and met the ca standard in mathematics in school grade 8 divided by the total number of students who are two or more races in school grade 8;3 the number of students of two or more races who met the ca standard in mathematics in grade 8, divided by the total number of students of two or more races in grade 8" -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"what is the number of students in grade 8 who are not economically disadvantaged and identify as two or more races who met the ca mathematics standard divided by the total number of students in grade 8 who are not economically disadvantaged and identify as two or more races?;number of students in grade 8 who are not economically disadvantaged and met the ca standard in mathematics, divided by the total number of students in grade 8 who are two or more races" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts,the number of white students in grade 11 who met the ca standard in english language arts divided by the total number of white students in grade 11;number of white students in grade 11 who met the ca standard in english language arts divided by the total number of white students in grade 11;number of white students in 11th grade english language arts who met the ca standard divided by the total number of white students in 11th grade english language arts -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white students in 11th grade english language arts who met the ca standard and were not economically disadvantaged, divided by the total number of white students in 11th grade english language arts" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_Mathematics,the number of white students in grade 11 who met the ca standard in mathematics divided by the total number of white students in grade 11;number of white 11th graders who met the ca math standard divided by the total number of white 11th graders;number of white 11th grade students who met the ca math standard divided by the total number of white 11th grade students -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_Mathematics_EconomicallyDisadvantaged,"number of white, economically disadvantaged 11th grade math students who met the ca standard divided by the total number of white, economically disadvantaged 11th grade math students" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the number of white students in 11th grade who met the ca math standard and were not economically disadvantaged, divided by the total number of white students in 11th grade;number of students who are white, in 11th grade, met the ca standard in mathematics, and are not economically disadvantaged, divided by the total number of students who are white, in 11th grade, met the ca standard in mathematics, and are not economically disadvantaged" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts,"the number of white students in grade 13 who met the ca standard in english language arts divided by the total number of white students in grade 13;number of white students in grade 13 who met the ca standard in english language arts divided by the total number of white students in grade 13;the number of white students in school grade 13 who met the ca_standard in english language arts, divided by the total number of white students in school grade 13" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_Mathematics,"the number of white students in grade 13 who met the ca standard in mathematics, divided by the total number of white students in grade 13 who took the mathematics exam;number of white students in grade 13 who met the ca standard in mathematics, divided by the total number of white students in grade 13;number of white students in grade 13 who met the ca standard in mathematics divided by the total number of white students in grade 13;number of white students in 13th grade who met the ca mathematics standard divided by the total number of white students in 13th grade" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts,the number of white students in grade 3 who met the ca standard in english language arts divided by the total number of white students in grade 3;what is the number of white students in grade 3 who met the ca standard in english language arts divided by the total number of white students in grade 3? -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_Mathematics,"the number of white students in grade 3 who met the ca math standard, divided by the total number of white students in grade 3" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"3 the number of white students in school grade 3 who met the ca math standard and are economically disadvantaged, divided by the total number of white students in school grade 3" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts,"number of white students in grade 4 who met the ca standard in english language arts divided by the total number of white students in grade 4;number of white 4th grade students who met the ca english language arts standard divided by the total number of white 4th grade students;the number of white students in grade 4 who met the ca standard in english language arts, divided by the total number of white students in grade 4;number of white fourth graders who met the ca standard in english language arts divided by the total number of white fourth graders" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"number of white students in school grade 4 who met the ca standard in english language arts and are economically disadvantaged, divided by the total number of white students in school grade 4" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of white students in grade 4 who met the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 4;number of white, non-economically disadvantaged students in grade 4 who met the ca standard in english language arts divided by the total number of white, non-economically disadvantaged students in grade 4" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_Mathematics,the number of white students in grade 4 who met the ca mathematics standard divided by the total number of white students in grade 4;the number of white fourth graders who met the ca math standard divided by the total number of white fourth graders;the number of white fourth graders who met the ca math standard expressed as a fraction of the total number of white fourth graders;the number of white fourth graders who met the ca math standard expressed as a percentage of the total number of white fourth graders -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 4 who met the ca math standard divided by the total number of white, economically disadvantaged students in grade 4;number of white, economically disadvantaged students in grade 4 who met the ca standard in mathematics, divided by the total number of white, economically disadvantaged students in grade 4" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"number of white, not economically disadvantaged students in grade 4 who met the ca standard in mathematics divided by the total number of white, not economically disadvantaged students in grade 4" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts,number of white 5th grade students who met the ca english language arts standard divided by the total number of white 5th grade students;number of white students in grade 5 who met the ca standard in english language arts divided by the total number of white students in grade 5;number of white students in grade 5 who met the ca english language arts standard divided by the total number of white students in grade 5;the number of white students in grade 5 who met the ca standard in english language arts divided by the total number of white students in grade 5 -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_Mathematics,"number of white 5th grade students who met the ca math standard divided by the total number of white 5th grade students;number of white students in grade 5 who met the ca math standard divided by the total number of white students in grade 5;the number of white fifth-graders who met the ca math standard, divided by the total number of white fifth-graders" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged 5th graders who met the ca math standard, divided by the total number of white, economically disadvantaged 5th graders" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts,the number of white students in grade 6 who met the ca standards in english language arts divided by the total number of white students in grade 6;the number of white students in grade 6 who met the ca standards in english language arts expressed as a fraction of the total number of white students in grade 6;the number of white students in grade 6 who met the ca standards in english language arts expressed as a percentage of the total number of white students in grade 6;number of white students in grade 6 who met the ca standard in english language arts divided by the total number of white students in grade 6 -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_Mathematics,the number of white students in grade 6 who met the ca math standard divided by the total number of white students in grade 6;number of white students in grade 6 who met the ca math standard divided by the total number of white students in grade 6;the number of white students in grade 6 who met the ca math standard expressed as a fraction of the total number of white students in grade 6 -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts,"number of white students in 7th grade english language arts who met the ca standard divided by the total number of white students in 7th grade english language arts;number of white students in grade 7 who met the ca standard in english language arts divided by the total number of white students in grade 7;the number of white students in grade 7 who met the ca standard in english language arts divided by the total number of white students in grade 7;the number of white students in grade 7 who met the ca standard in english language arts, divided by the total number of white students in grade 7" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged,4 the number of white students in grade 7 who were economically disadvantaged and met the ca standard in english language arts divided by the total number of white students in grade 7 -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_Mathematics,"the number of white students in grade 7 who met the ca math standard divided by the total number of white students in grade 7;the number of white students in grade 7 who met the ca math standard expressed as a fraction of the total number of white students in grade 7;number of white students in grade 7 who met the ca math standard divided by the total number of white students in grade 7;the number of white students in grade 7 who met the ca standard in mathematics, divided by the total number of white students in grade 7" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"number of white students in grade 7 who met the ca math standard and are not economically disadvantaged, divided by the total number of white students in grade 7" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts,the number of white students in grade 8 who met the ca standard in english language arts divided by the total number of white students in grade 8;the number of white students in grade 8 who met the ca standard in english language arts expressed as a fraction of the total number of white students in grade 8;the number of white students in grade 8 who met the ca standard in english language arts expressed as a percentage of the total number of white students in grade 8;number of white 8th grade students who met the ca standard in english language arts divided by the total number of white 8th grade students -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of white, non-economically disadvantaged 8th graders who met the ca standard in english language arts divided by the total number of white, non-economically disadvantaged 8th graders;number of white, non-economically disadvantaged students in grade 8 who met the ca english language arts standard divided by the total number of white, non-economically disadvantaged students in grade 8" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_Mathematics,"the number of white students in grade 8 who met the ca mathematics standard, divided by the total number of white students in grade 8;number of white 8th grade students who met the ca standard in mathematics divided by the total number of white 8th grade students;the number of white students in grade 8 who met the ca math standard, divided by the total number of white students in grade 8;the number of white 8th graders who met the ca math standard, divided by the total number of white 8th graders" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"3 the number of white students in grade 8 who met the ca math standard and are economically disadvantaged, divided by the total number of white students in grade 8;the number of white, economically disadvantaged 8th graders who met the ca math standard, divided by the total number of white, economically disadvantaged 8th graders;the number of white, economically disadvantaged 8th graders who met the ca math standard, expressed as a fraction of the total number of white, economically disadvantaged 8th graders" -Percent_CA_StandardMet_In_Count_Student_White_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade11_EnglishLanguageArts,number of students with disabilities in 11th grade english language arts who met the ca standard divided by the total number of students with disabilities in 11th grade english language arts -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade11_Mathematics,number of students with disabilities in 11th grade math who met the ca standard divided by the total number of students with disabilities in 11th grade math -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade13_EnglishLanguageArts,number of students with disabilities who met the ca standard in english language arts in grade 13 divided by the total number of students with disabilities in grade 13 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade13_Mathematics,number of students with disabilities who met the ca standard in grade 13 mathematics divided by the total number of students with disabilities in grade 13 mathematics;number of students with disabilities in grade 13 who met the ca math standard divided by the total number of students with disabilities in grade 13 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade4_EnglishLanguageArts,"the number of students with disabilities who met the ca_standard in english language arts in school grade 4, divided by the total number of students with disabilities in school grade 4;number of students with disabilities in grade 4 who met the ca english language arts standard divided by the total number of students with disabilities in grade 4;the number of students with disabilities who met the ca standard in english language arts in grade 4 divided by the total number of students with disabilities in grade 4" -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade4_Mathematics,the number of students with disabilities who met the ca math standard in grade 4 divided by the total number of students with disabilities in grade 4;number of students with disabilities who met the ca math standard in grade 4 divided by the total number of students with disabilities in grade 4 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade5_EnglishLanguageArts,number of students with disabilities in grade 5 who met the ca english language arts standard divided by the total number of students with disabilities in grade 5 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade6_Mathematics,number of students with disabilities who met the ca standard in grade 6 mathematics divided by the total number of students with disabilities in grade 6 mathematics;number of students with disabilities in grade 6 who met the ca math standard divided by the total number of students with disabilities in grade 6;number of students with disabilities in grade 6 who met the ca math standard divided by the total number of students in grade 6 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade7_EnglishLanguageArts,number of students with disabilities who met the california standard in english language arts in grade 7 divided by the total number of students with disabilities in grade 7 -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade7_Mathematics,number of students with disabilities who met the ca standard in grade 7 mathematics divided by the total number of students with disabilities in grade 7 mathematics -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade8_EnglishLanguageArts,number of students with disabilities who met the ca standard in english language arts in grade 8 divided by the total number of students with disabilities in grade 8;number of students with disabilities who met the ca standard in 8th grade english language arts divided by the total number of students with disabilities in 8th grade english language arts;number of students with disabilities who met the ca standard in 8th grade english language arts expressed as a percentage of the total number of students with disabilities in 8th grade english language arts -Percent_CA_StandardMet_In_Count_Student_WithDisability_SchoolGrade8_Mathematics,number of students with disabilities in 8th grade math who met the ca standard divided by the total number of students with disabilities in 8th grade math;number of students with disabilities in 8th grade math who met the ca standard expressed as a percentage of the total number of students with disabilities in 8th grade math -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_EnglishLanguageArts,the percentage of american indian or alaska native 11th grade students who nearly met the ca_standard in english language arts;the proportion of american indian or alaska native 11th grade students who nearly met the ca_standard in english language arts;the number of american indian or alaska native 11th grade students who nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native 11th grade students;the fraction of american indian or alaska native 11th grade students who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_Mathematics,"the percentage of american indian or alaska native 11th grade students who nearly met the ca standard in mathematics;the proportion of american indian or alaska native 11th grade students who nearly met the ca standard in mathematics;the number of american indian or alaska native 11th grade students who nearly met the ca standard in mathematics, divided by the total number of american indian or alaska native 11th grade students;the fraction of american indian or alaska native 11th grade students who nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts,"the percentage of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts;the proportion of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts;the number of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts, divided by the total number of american indian or alaska native students in grade 13;the number of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts, expressed as a fraction of the total number of american indian or alaska native students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in school grade 13 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 13;fraction of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts and are from low-income families;fraction of american indian or alaska native students in grade 13 who nearly met the ca_standard in english language arts and are from families with low socioeconomic status" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of american indian or alaska native students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the proportion of american indian or alaska native students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the fraction of american indian or alaska native students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged, out of all american indian or alaska native students in school grade 13;the number of american indian or alaska native students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged, expressed as a percentage of all american indian or alaska native students in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics,the percentage of american indian or alaska native students in grade 13 who nearly met the ca_standard in mathematics;the proportion of american indian or alaska native students in grade 13 who nearly met the ca_standard in mathematics;the number of american indian or alaska native students in grade 13 who nearly met the ca_standard in mathematics divided by the total number of american indian or alaska native students in grade 13;the fraction of american indian or alaska native students in grade 13 who nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,the percentage of american indian or alaska native students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the proportion of american indian or alaska native students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the number of american indian or alaska native students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged divided by the total number of american indian or alaska native students in school grade 13;the fraction of american indian or alaska native students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_EnglishLanguageArts,the percentage of american indian or alaska native students in grade 3 who nearly met the ca_standard in english language arts;the proportion of american indian or alaska native students in grade 3 who nearly met the ca_standard in english language arts;the number of american indian or alaska native students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 3;the number of american indian or alaska native students in grade 3 who nearly met the ca_standard in english language arts expressed as a percentage of the total number of american indian or alaska native students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_Mathematics,fraction of american indian or alaska native students in grade 3 who nearly met the ca mathematics standard;percentage of american indian or alaska native students in grade 3 who nearly met the ca mathematics standard;number of american indian or alaska native students in grade 3 who nearly met the ca mathematics standard divided by the total number of american indian or alaska native students in grade 3;proportion of american indian or alaska native students in grade 3 who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts,fraction of american indian or alaska native 4th graders who nearly met the ca_standard in english language arts;percentage of american indian or alaska native 4th graders who nearly met the ca_standard in english language arts;number of american indian or alaska native 4th graders who nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native 4th graders;percent of american indian or alaska native 4th graders who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 4;the fraction of american indian or alaska native students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, out of all american indian or alaska native students in grade 4;the percentage of american indian or alaska native students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, out of all students in grade 4;the percentage of american indian or alaska native students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, as a fraction of all american indian or alaska native students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics,"the percentage of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics;the proportion of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics;the number of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics, divided by the total number of american indian or alaska native students in grade 4;the fraction of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,number of american indian or alaska native students in grade 4 who are economically disadvantaged and nearly met the ca_standard in mathematics divided by the total number of american indian or alaska native students in grade 4;the number of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged divided by the total number of american indian or alaska native students in grade 4;the fraction of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged out of all american indian or alaska native students in grade 4;the percentage of american indian or alaska native students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged compared to the total number of american indian or alaska native students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts,the percentage of american indian or alaska native 5th graders who nearly met the ca_standard in english language arts;the fraction of american indian or alaska native 5th graders who nearly met the ca_standard in english language arts;the number of american indian or alaska native 5th graders who nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native 5th graders;the proportion of american indian or alaska native 5th graders who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the percentage of american indian or alaska native students in grade 5 who nearly met the ca_standard in english language arts and are economically disadvantaged;the proportion of american indian or alaska native students in grade 5 who nearly met the ca_standard in english language arts and are economically disadvantaged;the number of american indian or alaska native students in grade 5 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 5;the percentage of american indian or alaska native students in grade 5 who nearly met the ca_standard in english language arts and are economically disadvantaged, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics,"the fraction of american indian or alaska native students in grade 5 who nearly met the ca_standard in mathematics;the percentage of american indian or alaska native students in grade 5 who nearly met the ca_standard in mathematics;the proportion of american indian or alaska native students in grade 5 who nearly met the ca_standard in mathematics;the number of american indian or alaska native students in grade 5 who nearly met the ca_standard in mathematics, divided by the total number of american indian or alaska native students in grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 5 who nearly met the ca mathematics standard and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 5;the number of american indian or alaska native students in grade 5 who nearly met the ca standard in mathematics and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 5;the fraction of american indian or alaska native students in grade 5 who nearly met the ca standard in mathematics and are economically disadvantaged, expressed as a percentage;the proportion of american indian or alaska native students in grade 5 who nearly met the ca standard in mathematics and are economically disadvantaged, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts,fraction of american indian or alaska native students in grade 6 who nearly met the ca standard in english language arts;percentage of american indian or alaska native students in grade 6 who nearly met the ca standard in english language arts;proportion of american indian or alaska native students in grade 6 who nearly met the ca standard in english language arts;number of american indian or alaska native students in grade 6 who nearly met the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,the number of american indian or alaska native students in school grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native students in school grade 6;the number of american indian or alaska native students in school grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts expressed as a percentage of the total number of american indian or alaska native students in school grade 6;the number of american indian or alaska native students in school grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts expressed as a proportion of the total number of american indian or alaska native students in school grade 6;fraction of american indian or alaska native students in grade 6 who nearly met the ca standard in english language arts and are economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics,"the percentage of american indian or alaska native students in grade 6 who nearly met the ca_standard in mathematics;the proportion of american indian or alaska native students in grade 6 who nearly met the ca_standard in mathematics;the number of american indian or alaska native students in grade 6 who nearly met the ca_standard in mathematics, divided by the total number of american indian or alaska native students in grade 6;the fraction of american indian or alaska native students in grade 6 who nearly met the ca_standard in mathematics, out of all american indian or alaska native students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,fraction of american indian or alaska native students in grade 6 who are economically disadvantaged and nearly met the ca math standard;number of american indian or alaska native students in grade 6 who are economically disadvantaged and nearly met the ca math standard divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native students in grade 6 who are economically disadvantaged and nearly met the ca math standard expressed as a percentage of the total number of american indian or alaska native students in grade 6;fraction of american indian or alaska native students in grade 6 who are economically disadvantaged and nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts,the percentage of american indian or alaska native students in grade 7 who nearly met the ca standard in english language arts;the proportion of american indian or alaska native students in grade 7 who nearly met the ca standard in english language arts;the number of american indian or alaska native students in grade 7 who nearly met the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 7;the number of american indian or alaska native students in grade 7 who nearly met the ca standard in english language arts expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 7 who are economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 7;the number of american indian or alaska native students in grade 7 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 7;the number of american indian or alaska native students in grade 7 who nearly met the ca_standard in english language arts and are economically disadvantaged, expressed as a percentage of the total number of american indian or alaska native students in grade 7;the fraction of american indian or alaska native students in grade 7 who nearly met the ca_standard in english language arts and are economically disadvantaged, out of all american indian or alaska native students in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics,fraction of american indian or alaska native 7th grade students who nearly met the ca mathematics standard;percentage of american indian or alaska native 7th grade students who nearly met the ca mathematics standard;number of american indian or alaska native 7th grade students who nearly met the ca mathematics standard divided by the total number of american indian or alaska native 7th grade students;share of american indian or alaska native 7th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 7 who nearly met the ca_standard in mathematics and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 7;the percentage of american indian or alaska native students in grade 7 who nearly met the ca_standard in mathematics and are economically disadvantaged, expressed as a decimal;number of american indian or alaska native students in grade 7 who are economically disadvantaged and nearly met the ca mathematics standard divided by the total number of american indian or alaska native students in grade 7;number of american indian or alaska native students in grade 7 who are economically disadvantaged and nearly met the ca mathematics standard as a percentage of the total number of american indian or alaska native students in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts,the percentage of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts;the proportion of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts;the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 8;the fraction of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts out of all american indian or alaska native students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 8;the fraction of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts and are economically disadvantaged, out of all american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts and are economically disadvantaged, as a percentage of all american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in english language arts and are economically disadvantaged, expressed as a percentage of the total number of american indian or alaska native students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics,fraction of american indian or alaska native 8th grade students who nearly met the ca mathematics standard;percentage of american indian or alaska native 8th grade students who nearly met the ca mathematics standard;number of american indian or alaska native 8th grade students who nearly met the ca mathematics standard divided by the total number of american indian or alaska native 8th grade students;proportion of american indian or alaska native 8th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 8 who are economically disadvantaged and nearly met the ca math standard divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in mathematics and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 8;the fraction of american indian or alaska native students in grade 8 who nearly met the ca_standard in mathematics and are economically disadvantaged, out of all american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who nearly met the ca_standard in mathematics and are economically disadvantaged, as a percentage of all american indian or alaska native students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade11_EnglishLanguageArts,fraction of asian 11th graders who nearly met the ca standard in english language arts;percentage of asian 11th graders who nearly met the ca standard in english language arts;number of asian 11th graders who nearly met the ca standard in english language arts divided by the total number of asian 11th graders;share of asian 11th graders who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade11_Mathematics,the percentage of asian 11th grade students who nearly met the ca math standard is;fraction of asian 11th grade students who nearly met the ca math standard;percentage of asian 11th grade students who nearly met the ca math standard;number of asian 11th grade students who nearly met the ca math standard divided by the total number of asian 11th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts,the percentage of asian 13th grade students who nearly met the ca_standard in english language arts;the proportion of asian 13th grade students who nearly met the ca_standard in english language arts;the number of asian 13th grade students who nearly met the ca_standard in english language arts divided by the total number of asian 13th grade students;the fraction of asian 13th grade students who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of asian students in grade 13 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the proportion of asian students in grade 13 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the number of asian students in grade 13 who nearly met the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of asian students in grade 13;the fraction of asian students in grade 13 who nearly met the ca_standard in english language arts and are not economically disadvantaged, out of all asian students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_Mathematics,fraction of asian 13th grade students who nearly met the ca mathematics standard;percentage of asian 13th grade students who nearly met the ca mathematics standard;number of asian 13th grade students who nearly met the ca mathematics standard divided by the total number of asian 13th grade students;proportion of asian 13th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,the percentage of asian students in grade 13 who nearly met the ca_standard in mathematics and are not economically disadvantaged;the proportion of asian students in grade 13 who nearly met the ca_standard in mathematics and are not economically disadvantaged;the number of asian students in grade 13 who nearly met the ca_standard in mathematics and are not economically disadvantaged divided by the total number of asian students in grade 13;the fraction of asian students in grade 13 who nearly met the ca_standard in mathematics and are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade3_EnglishLanguageArts,the fraction of asian 3rd graders who nearly met the ca standard in english language arts is;fraction of asian 3rd grade students who nearly met the ca standard in english language arts;percentage of asian 3rd grade students who nearly met the ca standard in english language arts;number of asian 3rd grade students who nearly met the ca standard in english language arts divided by the total number of asian 3rd grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade3_Mathematics,fraction of asian 3rd grade students who nearly met the ca math standard;percentage of asian 3rd grade students who nearly met the ca math standard;number of asian 3rd grade students who nearly met the ca math standard divided by the total number of asian 3rd grade students;proportion of asian 3rd grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts,the percentage of asian fourth-grade students who nearly met the ca_standard in english language arts;the proportion of asian fourth-grade students who nearly met the ca_standard in english language arts;the number of asian fourth-grade students who nearly met the ca_standard in english language arts divided by the total number of asian fourth-grade students;the number of asian fourth-grade students who nearly met the ca_standard in english language arts expressed as a fraction of the total number of asian fourth-grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,the percentage of asian students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged is;the percentage of asian students in grade 4 who nearly met the ca standard in english language arts and are economically disadvantaged;the proportion of asian students in grade 4 who nearly met the ca standard in english language arts and are economically disadvantaged;the number of asian students in grade 4 who nearly met the ca standard in english language arts and are economically disadvantaged divided by the total number of asian students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade4_Mathematics,the percentage of asian 4th grade students who nearly met the ca mathematics standard;the proportion of asian 4th grade students who nearly met the ca mathematics standard;the number of asian 4th grade students who nearly met the ca mathematics standard divided by the total number of asian 4th grade students;the fraction of asian 4th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of asian students in grade 4 who nearly met the ca standard in mathematics and are economically disadvantaged, divided by the total number of asian students in grade 4;the number of asian students in grade 4 who nearly met the ca standard in mathematics and are economically disadvantaged, expressed as a percentage of the total number of asian students in grade 4;the number of asian students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged, divided by the total number of asian students in grade 4;the fraction of asian students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged, out of all asian students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts,fraction of asian 5th grade students who nearly met the ca english language arts standard;percentage of asian 5th grade students who nearly met the ca english language arts standard;number of asian 5th grade students who nearly met the ca english language arts standard divided by the total number of asian 5th grade students;share of asian 5th grade students who nearly met the ca english language arts standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,fraction of asian economically disadvantaged 5th graders who nearly met the ca english language arts standard;percentage of asian economically disadvantaged 5th graders who nearly met the ca english language arts standard;proportion of asian economically disadvantaged 5th graders who nearly met the ca english language arts standard;number of asian economically disadvantaged 5th graders who nearly met the ca english language arts standard divided by the total number of asian economically disadvantaged 5th graders -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade5_Mathematics,fraction of asian 5th grade students who nearly met the ca mathematics standard;percentage of asian 5th grade students who nearly met the ca mathematics standard;number of asian 5th grade students who nearly met the ca mathematics standard divided by the total number of asian 5th grade students;number of asian 5th grade students who nearly met the ca mathematics standard expressed as a percentage of the total number of asian 5th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of asian students in grade 5 who nearly met the ca mathematics standard, as a fraction of the total number of asian students in grade 5 who are economically disadvantaged;the fraction of asian students in grade 5 who are economically disadvantaged and nearly met the ca mathematics standard;the percentage of asian students in grade 5 who are economically disadvantaged and nearly met the ca mathematics standard;the number of asian students in grade 5 who are economically disadvantaged and nearly met the ca mathematics standard, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts,fraction of asian 6th grade students who nearly met the ca standard in english language arts;percentage of asian 6th grade students who nearly met the ca standard in english language arts;number of asian 6th grade students who nearly met the ca standard in english language arts divided by the total number of asian 6th grade students;proportion of asian 6th grade students who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,the fraction of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts;the percentage of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts;the number of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of asian students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade6_Mathematics,fraction of asian 6th grade students who nearly met the ca math standard;percentage of asian 6th grade students who nearly met the ca math standard;number of asian 6th grade students who nearly met the ca math standard divided by the total number of asian 6th grade students;percent of asian 6th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"the number of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in mathematics, divided by the total number of asian students in grade 6;the fraction of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in mathematics;the number of asian students in grade 6 who are economically disadvantaged and nearly met the ca_standard in mathematics, expressed as a percentage;the percentage of asian students in grade 6 who nearly met the ca math standard and are economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade7_EnglishLanguageArts,the percentage of asian 7th grade students who nearly met the ca_standard in english language arts;the fraction of asian 7th grade students who nearly met the ca_standard in english language arts;the proportion of asian 7th grade students who nearly met the ca_standard in english language arts;the number of asian 7th grade students who nearly met the ca_standard in english language arts divided by the total number of asian 7th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade7_Mathematics,fraction of asian 7th grade students who nearly met the ca math standard;percentage of asian 7th grade students who nearly met the ca math standard;number of asian 7th grade students who nearly met the ca math standard divided by the total number of asian 7th grade students;proportion of asian 7th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade8_EnglishLanguageArts,fraction of asian 8th grade students who nearly met the ca standard in english language arts;percentage of asian 8th grade students who nearly met the ca standard in english language arts;number of asian 8th grade students who nearly met the ca standard in english language arts divided by the total number of asian 8th grade students;proportion of asian 8th grade students who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Asian_SchoolGrade8_Mathematics,fraction of asian 8th grade students who nearly met the ca math standard;percentage of asian 8th grade students who nearly met the ca math standard;share of asian 8th grade students who nearly met the ca math standard;number of asian 8th grade students who nearly met the ca math standard divided by the total number of asian 8th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_EnglishLanguageArts,fraction of black or african american 11th graders who nearly met the ca_standard in english language arts;percentage of black or african american 11th graders who nearly met the ca_standard in english language arts;number of black or african american 11th graders who nearly met the ca_standard in english language arts divided by the total number of black or african american 11th graders;share of black or african american 11th graders who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_Mathematics,"the percentage of black or african american students in 11th grade who nearly met the ca_standard in mathematics;the proportion of black or african american students in 11th grade who nearly met the ca_standard in mathematics;the number of black or african american students in 11th grade who nearly met the ca_standard in mathematics, divided by the total number of black or african american students in 11th grade;the fraction of black or african american students in 11th grade who nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts,fraction of black or african american students in grade 13 who nearly met the ca standard in english language arts;percentage of black or african american students in grade 13 who nearly met the ca standard in english language arts;number of black or african american students in grade 13 who nearly met the ca standard in english language arts divided by the total number of black or african american students in grade 13;proportion of black or african american students in grade 13 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"fraction of black or african american alone, school grade 13, english language arts, economically disadvantaged students who nearly met the ca_standard;number of black or african american alone, school grade 13, english language arts, economically disadvantaged students who nearly met the ca_standard divided by the total number of black or african american alone, school grade 13, english language arts, economically disadvantaged students" -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the fraction of black or african american students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13;the proportion of black or african american students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13;the percentage of black or african american students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13;the number of black or african american students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13, divided by the total number of black or african american students who are not economically disadvantaged and who took the ca_standard in english language arts in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics,fraction of black or african american 13th graders who nearly met the ca mathematics standard;percentage of black or african american 13th graders who nearly met the ca mathematics standard;number of black or african american 13th graders who nearly met the ca mathematics standard divided by the total number of black or african american 13th graders;proportion of black or african american 13th graders who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,fraction of black or african american students in grade 13 who nearly met the ca standard in mathematics and are not economically disadvantaged;percentage of black or african american students in grade 13 who nearly met the ca standard in mathematics and are not economically disadvantaged;number of black or african american students in grade 13 who nearly met the ca standard in mathematics and are not economically disadvantaged divided by the total number of black or african american students in grade 13;proportion of black or african american students in grade 13 who nearly met the ca standard in mathematics and are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_EnglishLanguageArts,the percentage of black or african american students in grade 6 who nearly met the ca standard in english language arts;the proportion of black or african american students in grade 6 who nearly met the ca standard in english language arts;the number of black or african american students in grade 6 who nearly met the ca standard in english language arts divided by the total number of black or african american students in grade 6;the number of black or african american students in grade 6 who nearly met the ca standard in english language arts as a percentage of the total number of black or african american students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_Mathematics,"the fraction of black or african american students in grade 6 who nearly met the ca math standard;the percentage of black or african american students in grade 6 who nearly met the ca math standard;the number of black or african american students in grade 6 who nearly met the ca math standard, as a fraction of the total number of black or african american students in grade 6;the number of black or african american students in grade 6 who nearly met the ca math standard, as a percentage of the total number of black or african american students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_EnglishLanguageArts,fraction of black or african american 7th graders who nearly met the ca standard in english language arts;percentage of black or african american 7th graders who nearly met the ca standard in english language arts;number of black or african american 7th graders who nearly met the ca standard in english language arts divided by the total number of black or african american 7th graders;number of black or african american 7th graders who nearly met the ca standard in english language arts expressed as a percentage of the total number of black or african american 7th graders -Percent_CA_StandardNearlyMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_Mathematics,"the percentage of black or african american students in grade 7 who nearly met the ca_standard in mathematics;the proportion of black or african american students in grade 7 who nearly met the ca_standard in mathematics;the number of black or african american students in grade 7 who nearly met the ca_standard in mathematics, divided by the total number of black or african american students in grade 7;the number of black or african american students in grade 7 who nearly met the ca_standard in mathematics, expressed as a percentage of the total number of black or african american students in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_EnglishLanguageArts,"the fraction of english learners who are in school grade 13 and have met the ca_standard nearly met for english language arts, out of all english learners who have been in school for 12 months or less;the proportion of english learners who are in school grade 13 and have nearly met the ca_standard for english language arts, out of all english learners who have been in school for 12 months or less;the percentage of english learners who are in school grade 13 and have nearly met the ca_standard for english language arts, out of all english learners who have been in school for 12 months or less;fraction of english learners in school grade 13 who nearly met ca_standard in english language arts after 12 months or less" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_Mathematics,percentage of english learners in school grade 13 who nearly met the ca mathematics standard in 12 months or less -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_EnglishLanguageArts,fraction of english learners in 11th grade who nearly met the ca english language arts standard after 12 months or more of instruction;percentage of english learners in 11th grade who nearly met the ca english language arts standard after 12 months or more of instruction;proportion of english learners in 11th grade who nearly met the ca english language arts standard after 12 months or more of instruction;number of english learners in 11th grade who nearly met the ca english language arts standard divided by the total number of english learners in 11th grade after 12 months or more of instruction -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_EnglishLanguageArts,the percentage of english learners who nearly met the ca_standard in english language arts after 12 or more months in school grade 13;the proportion of english learners who nearly met the ca_standard in english language arts after 12 or more months in school grade 13;the number of english learners who nearly met the ca_standard in english language arts divided by the total number of english learners who were in school grade 13 for 12 or more months;the number of english learners who nearly met the ca_standard in english language arts as a percentage of the total number of english learners who were in school grade 13 for 12 or more months -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_Mathematics,"the number of english learners who nearly met the ca_standard in mathematics after 12 or more months in school grade 13, divided by the total number of english learners who were in school grade 13 for 12 or more months;the number of english learners who nearly met the ca_standard in mathematics after 12 or more months in school grade 13, expressed as a percentage of the total number of english learners who were in school grade 13 for 12 or more months;the number of english learners who nearly met the ca_standard in mathematics after 12 or more months in school grade 13, expressed as a proportion of the total number of english learners who were in school grade 13 for 12 or more months;the number of english learners who have been enrolled in school for 12 months or more and are in grade 13 who nearly met the ca_standard in mathematics divided by the total number of english learners who have been enrolled in school for 12 months or more and are in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_EnglishLanguageArts,the percentage of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 3;the proportion of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 3;the number of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 3 divided by the total number of english learners in school grade 3;the number of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 3 expressed as a percentage of the total number of english learners in school grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_Mathematics,"the proportion of english learners in school grade 3 who nearly met the ca_standard in mathematics, out of all english learners who have been in school for 12 months or more;the number of english learners in school grade 3 who nearly met the ca_standard in mathematics, divided by the number of all english learners who have been in school for 12 months or more;the percentage of english learners who have been enrolled in school for 12 months or more and nearly met the ca_standard in mathematics in grade 3;the proportion of english learners who have been enrolled in school for 12 months or more and nearly met the ca_standard in mathematics in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_EnglishLanguageArts,"the percentage of english learners who nearly met the ca standard in english language arts after 12 months or more in school grade 4;the proportion of english learners who nearly met the ca standard in english language arts after 12 months or more in school grade 4;the number of english learners who nearly met the ca standard in english language arts after 12 months or more in school grade 4, divided by the total number of english learners in school grade 4;the number of english learners who nearly met the ca standard in english language arts after 12 months or more in school grade 4, expressed as a percentage of the total number of english learners in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_Mathematics,fraction of english learners in grade 4 who nearly met the ca mathematics standard after 12 months or more of instruction;percentage of english learners in grade 4 who nearly met the ca mathematics standard after 12 months or more of instruction;proportion of english learners in grade 4 who nearly met the ca mathematics standard after 12 months or more of instruction;share of english learners in grade 4 who nearly met the ca mathematics standard after 12 months or more of instruction -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_EnglishLanguageArts,"the percentage of english learners who nearly met the ca_standard in english language arts after 12 or more months in school grade 5;the proportion of english learners who nearly met the ca_standard in english language arts after 12 or more months in school grade 5;the number of english learners who nearly met the ca_standard in english language arts after 12 or more months in school grade 5, divided by the total number of english learners in school grade 5;the percentage of english learners in school grade 5 who nearly met the ca_standard in english language arts after 12 or more months in school" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_Mathematics,"the percentage of english learners in school grade 5 who nearly met the ca_standard in mathematics, after being enrolled for 12 months or more;the proportion of english learners in school grade 5 who nearly met the ca_standard in mathematics, after being enrolled for 12 months or more;percentage of english learners in grade 5 who nearly met the ca math standard after 12 or more months of instruction;proportion of english learners in grade 5 who nearly met the ca math standard after 12 or more months of instruction" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_EnglishLanguageArts,the percentage of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 6;the proportion of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 6;the number of english learners who nearly met the ca_standard in english language arts divided by the total number of english learners after 12 months or more in school grade 6;the number of english learners who nearly met the ca_standard in english language arts expressed as a fraction of the total number of english learners after 12 months or more in school grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_Mathematics,"the percentage of english learners who nearly met the ca_standard in mathematics in school grade 6, who were enrolled for 12 months or more;the proportion of english learners who nearly met the ca_standard in mathematics in school grade 6, who were enrolled for 12 months or more;the number of english learners who nearly met the ca_standard in mathematics in school grade 6, who were enrolled for 12 months or more, divided by the total number of english learners in school grade 6;percentage of english learners in grade 6 who nearly met the ca mathematics standard after 12 months or more of instruction" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_EnglishLanguageArts,the percentage of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 7;the number of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 7 divided by the total number of english learners in school grade 7;the number of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 7 expressed as a percentage of the total number of english learners in school grade 7;the number of english learners who nearly met the ca_standard in english language arts after 12 months or more in school grade 7 expressed as a fraction of the total number of english learners in school grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_EnglishLanguageArts,"fraction of english learners who nearly met the ca standard in english language arts after 12 months or more of schooling in grade 8;fraction of english learners who nearly met the ca standard in english language arts after 12 months or more of schooling in grade 8, as a fraction of all english learners who were in grade 8 for 12 months or more;fraction of english learners who nearly met the ca standard in english language arts after 12 months or more of schooling in grade 8, as a percentage of all english learners who were in grade 8 for 12 months or more;fraction of english learners who nearly met the ca standard in english language arts after 12 months or more of schooling in grade 8, as a proportion of all english learners who were in grade 8 for 12 months or more" -Percent_CA_StandardNearlyMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_Mathematics,"the percentage of english learners who nearly met the ca_standard in mathematics in school grade 8 who were enrolled for 12 months or more;the proportion of english learners who nearly met the ca_standard in mathematics in school grade 8 who were enrolled for 12 months or more;the number of english learners who nearly met the ca_standard in mathematics in school grade 8 who were enrolled for 12 months or more, divided by the total number of english learners who were enrolled for 12 months or more in school grade 8;the fraction of english learners who nearly met the ca_standard in mathematics in school grade 8 who were enrolled for 12 months or more, out of all english learners who were enrolled for 12 months or more in school grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english as a current learner in grade 11 english language arts, as a fraction of the total number of students who are current learners in grade 11 english language arts;the number of students who nearly met the ca_standard in english as a current learner in grade 11 english language arts, divided by the total number of students who are current learners in grade 11 english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_Mathematics,"the percentage of students who are current learners in grade 11 and nearly met the ca_standard in english and mathematics;the proportion of students who are current learners in grade 11 and nearly met the ca_standard in english and mathematics;the number of students who are current learners in grade 11 and nearly met the ca_standard in english and mathematics, expressed as a percentage of the total number of students in grade 11;the percentage of students who are current learners in grade 11 and nearly met the ca standard in english and mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_EnglishLanguageArts,the number of students in grade 13 who are current learners of english and nearly met the ca_standard in english language arts divided by the total number of students in grade 13 who are current learners of english;the ratio of students in grade 13 who are current learners of english and nearly met the ca_standard in english language arts to the total number of students in grade 13 who are current learners of english;the percentage of students who are current learners in grade 13 and have nearly met the ca standard in english language arts;the proportion of students who are current learners in grade 13 and have nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_Mathematics,the percentage of students who are current learners in grade 13 and nearly met the ca_standard in english and mathematics;the proportion of students who are current learners in grade 13 and nearly met the ca_standard in english and mathematics;the percentage of students who are current learners in grade 13 and nearly met the ca_standard in english and mathematics as a percentage;the fraction of students who are current learners in grade 13 and nearly met the ca standard in english and mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_Mathematics,the percentage of students in grade 3 who are current learners of english and nearly met the ca standard in mathematics;percentage of students in grade 3 who are current learners of english and nearly met the ca standard in mathematics divided by 100;the percentage of students in grade 3 who are current learners and nearly met the ca_standard in english and mathematics;the proportion of students in grade 3 who are current learners and nearly met the ca_standard in english and mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_Mathematics,"the percentage of students who are current learners in grade 4 english and nearly met the ca standard in mathematics;the number of students who are current learners in grade 4 english and nearly met the ca standard in mathematics divided by the total number of students who are current learners in grade 4 english;the percentage of students in grade 4 who are current learners of english and have nearly met the ca standard in mathematics, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_EnglishLanguageArts,the percentage of students who are current learners in grade 5 english language arts and nearly met the ca_standard;the proportion of students who are current learners in grade 5 english language arts and nearly met the ca_standard;the number of students who are current learners in grade 5 english language arts and nearly met the ca_standard expressed as a percentage of the total number of students in grade 5 english language arts;number of students who are current learners in grade 5 english language arts who nearly met the ca_standard divided by the total number of students who are current learners in grade 5 english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_Mathematics,the percentage of students who are current learners in school grade 5 and nearly met the ca_standard in english and mathematics;the proportion of students who are current learners in school grade 5 and nearly met the ca_standard in english and mathematics;the number of students who are current learners in school grade 5 and nearly met the ca_standard in english and mathematics divided by the total number of students who are current learners in school grade 5;the ratio of students who are current learners in school grade 5 and nearly met the ca_standard in english and mathematics to the total number of students who are current learners in school grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_EnglishLanguageArts,the percentage of students in grade 6 who are current learners of english and have nearly met the ca_standard for english language arts;the number of students in grade 6 who are current learners of english and have nearly met the ca_standard for english language arts divided by the total number of students in grade 6;the number of students in grade 6 who are current learners of english and have nearly met the ca_standard for english language arts expressed as a percentage of the total number of students in grade 6;the number of students in grade 6 who are current learners of english and have nearly met the ca_standard for english language arts expressed as a proportion of the total number of students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_Mathematics,"percentage of students in grade 6 who are current learners of english and nearly met the ca standard in mathematics;the percentage of students in grade 6 who are current learners of english and nearly met the ca standard in mathematics, expressed as a decimal;the percentage of students in grade 6 who are current learners of english and have nearly met the ca standard in mathematics;the proportion of students in grade 6 who are current learners of english and have nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_EnglishLanguageArts,the number of students in grade 7 who are current learners of english and nearly met the ca_standard in english language arts divided by the total number of students in grade 7;the number of students in grade 7 who are current learners of english and nearly met the ca_standard in english language arts expressed as a percentage of the total number of students in grade 7;the number of students in grade 7 who are current learners of english and nearly met the ca_standard for english language arts divided by the total number of students in grade 7;the number of students in grade 7 who are current learners of english and nearly met the ca_standard for english language arts as a percentage of the total number of students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_Mathematics,"number of students in grade 7 who are current learners of english and nearly met the ca standard in mathematics divided by the total number of students in grade 7, expressed as a percentage;the percentage of students in grade 7 who are current learners of english and have nearly met the ca standard in mathematics;the percentage of students in grade 7 who are current learners of english and have nearly met the ca standard in mathematics, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_EnglishLanguageArts,the number of students who are currently learning english and are in grade 8 who nearly met the ca_standard for english language arts divided by the total number of students who are currently learning english and are in grade 8;the number of students who are currently learning english and are in grade 8 who nearly met the ca_standard for english language arts as a percentage of the total number of students who are currently learning english and are in grade 8;the number of students who are currently learning english and are in grade 8 who nearly met the ca_standard for english language arts as a proportion of the total number of students who are currently learning english and are in grade 8;number of students in grade 8 who are current learners of english and nearly met the ca_standard in english language arts divided by the total number of students in grade 8 who are current learners of english -Percent_CA_StandardNearlyMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_Mathematics,"the proportion of students who are current learners in grade 8 and nearly met the ca_standard in english and mathematics;the percentage of students who are current learners in grade 8 and nearly met the ca_standard in english and mathematics;the number of students who are current learners in grade 8 and nearly met the ca_standard in english and mathematics, divided by the total number of students who are current learners in grade 8;the number of students who are current learners in grade 8 and nearly met the ca_standard in english and mathematics, as a percentage of all students who are current learners in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade11_EnglishLanguageArts,the fraction of 11th grade students who learned english and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade11_Mathematics,"2 the number of students who have nearly met the ca_standard in english and mathematics in grade 11, as a fraction of the total number of students who have ever learned english and mathematics in grade 11;4 the number of students who have nearly met the ca_standard in english and mathematics in grade 11, divided by the number of students who have ever learned english and mathematics in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade13_EnglishLanguageArts,"number of students who have nearly met the ca_standard in english language arts in grade 13, as a fraction of the total number of students who have ever learned english language arts in grade 13;the number of students who have nearly met the ca_standard in english language arts at school grade 13 as a fraction of the total number of students who have ever learned english language arts at school grade 13;the number of students who have nearly met the ca_standard in english language arts at school grade 13 divided by the number of students who have ever learned english language arts at school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade13_Mathematics,fraction of students who have ever learned english and nearly met the ca standard in mathematics in grade 13;percentage of students who have ever learned english and nearly met the ca standard in mathematics in grade 13;proportion of students who have ever learned english and nearly met the ca standard in mathematics in grade 13;number of students who have ever learned english and nearly met the ca standard in mathematics in grade 13 divided by the total number of students who have ever learned english in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade3_EnglishLanguageArts,number of students who have nearly met the ca_standard in english language arts in school grade 3 as a fraction of the total number of students who have ever learned english in school grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade3_Mathematics,fraction of students who have ever learned english and mathematics in school grade 3 who nearly met the ca standard;percentage of students who have ever learned english and mathematics in school grade 3 who nearly met the ca standard;proportion of students who have ever learned english and mathematics in school grade 3 who nearly met the ca standard;number of students who have ever learned english and mathematics in school grade 3 who nearly met the ca standard divided by the total number of students who have ever learned english and mathematics in school grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade4_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english in school grade 4, divided by the number of students who ever learned english in school grade 4;the number of students who nearly met the ca_standard in english in school grade 4, expressed as a fraction of the total number of students who ever learned english in school grade 4;fraction of students who nearly met the ca_standard in english language arts in school grade 4, out of all students who ever learned english in school grade 4;percentage of students who nearly met the ca_standard in english language arts in school grade 4, out of all students who ever learned english in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade4_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade5_EnglishLanguageArts,the number of students who have nearly met the ca_standard in english language arts in school grade 5 out of all students who have ever learned english language arts in school grade 5;the number of students who nearly met the ca_standard in english language arts in school grade 5 as a fraction of the total number of students who ever learned english language arts in school grade 5;the number of students who nearly met the ca_standard in english language arts in school grade 5 divided by the total number of students who ever learned english language arts in school grade 5;the fraction of students who nearly met the ca_standard in english language arts in school grade 5 out of all students who ever learned english language arts in school grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade5_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade6_EnglishLanguageArts,the number of students who have nearly met the ca_standard in english language arts in school grade 6 as a fraction of the total number of students who have ever learned english language arts in school grade 6;the number of students who have nearly met the ca_standard in english language arts in school grade 6 divided by the number of students who have ever learned english language arts in school grade 6;the percentage of students who have nearly met the ca_standard in english language arts in school grade 6 out of all students who have ever learned english language arts in school grade 6;the fraction of students who nearly met the ca_standard in english language arts in school grade 6 out of all students who ever learned english in school grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade6_Mathematics,share of 6th grade students who nearly met the ca standard in english and mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade7_EnglishLanguageArts,share of students who nearly met the ca standard in english language arts in grade 7;number of students who have nearly met the ca_standard in english language arts in school grade 7 as a fraction of the total number of students who have ever learned english language arts in school grade 7;share of students who have nearly met the ca_standard in english language arts in school grade 7;the number of students who have nearly met the ca_standard in english language arts in school grade 7 as a fraction of the total number of students who have ever learned english in school grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade7_Mathematics,the number of students who have nearly met the ca_standard in english and mathematics in grade 7 as a percentage of the total number of students who have ever learned english and mathematics in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade8_EnglishLanguageArts,"the number of students who have nearly met the ca_standard in english language arts in grade 8 divided by the number of students who have ever learned english language arts in grade 8;the number of students who nearly met the ca_standard in english in school grade 8 english language arts, as a fraction of the total number of students who ever learned english in school grade 8 english language arts;the fraction of students who nearly met the ca_standard in english in school grade 8 english language arts, out of all students who ever learned english in school grade 8 english language arts;the percentage of students who nearly met the ca_standard in english in school grade 8 english language arts, out of all students who ever learned english in school grade 8 english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_English_EverLearned_SchoolGrade8_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,fraction of students in grade 13 english language arts who are from military families and nearly met the ca standard;percentage of students in grade 13 english language arts who are from military families and nearly met the ca standard;proportion of students in grade 13 english language arts who are from military families and nearly met the ca standard;share of students in grade 13 english language arts who are from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_Mathematics,the fraction of students in grade 13 who are from military families and nearly met the ca_standard in mathematics;the proportion of students in grade 13 from military families who nearly met the ca_standard in mathematics;the percentage of students in grade 13 from military families who nearly met the ca_standard in mathematics;the number of students in grade 13 from military families who nearly met the ca_standard in mathematics divided by the total number of students in grade 13 from military families -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade11_EnglishLanguageArts,"the fraction of female students in 11th grade english language arts who nearly met the ca_standard;the number of female students in 11th grade english language arts who nearly met the ca_standard, expressed as a fraction of the total number of female students in 11th grade english language arts;the percentage of female students in 11th grade english language arts who nearly met the ca_standard;the proportion of female students in 11th grade english language arts who nearly met the ca_standard" -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade11_Mathematics,fraction of female 11th grade students who nearly met the ca math standard;percentage of female 11th grade students who nearly met the ca math standard;number of female 11th grade students who nearly met the ca math standard divided by the total number of female 11th grade students;proportion of female 11th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade13_EnglishLanguageArts,the fraction of female students in grade 13 who nearly met the ca standard in english language arts;the proportion of female students in grade 13 who nearly met the ca standard in english language arts;the number of female students in grade 13 who nearly met the ca standard in english language arts divided by the total number of female students in grade 13;the percentage of female students in grade 13 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade13_Mathematics,fraction of female students in grade 13 who nearly met the ca math standard;number of female students in grade 13 who nearly met the ca math standard divided by the total number of female students in grade 13;percentage of female students in grade 13 who nearly met the ca math standard;proportion of female students in grade 13 who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade3_EnglishLanguageArts,the percentage of female students in grade 3 who nearly met the ca_standard in english language arts;the proportion of female students in grade 3 who nearly met the ca_standard in english language arts;the number of female students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of female students in grade 3;the fraction of female students in grade 3 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade3_Mathematics,the fraction of female students in grade 3 who nearly met the ca_standard in mathematics;the percentage of female students in grade 3 who nearly met the ca_standard in mathematics;the proportion of female students in grade 3 who nearly met the ca_standard in mathematics;the number of female students in grade 3 who nearly met the ca_standard in mathematics divided by the total number of female students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade4_EnglishLanguageArts,the fraction of female students in grade 4 who nearly met the ca_standard in english language arts;the percentage of female students in grade 4 who nearly met the ca_standard in english language arts;the number of female students in grade 4 who nearly met the ca_standard in english language arts divided by the total number of female students in grade 4;the number of female students in grade 4 who nearly met the ca_standard in english language arts expressed as a percentage of the total number of female students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade4_Mathematics,the percentage of female fourth graders who nearly met the ca_standard in mathematics;the proportion of female fourth graders who nearly met the ca_standard in mathematics;the number of female fourth graders who nearly met the ca_standard in mathematics divided by the total number of female fourth graders;the number of female fourth graders who nearly met the ca_standard in mathematics as a percentage of the total number of female fourth graders -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade5_EnglishLanguageArts,the percentage of female students in grade 5 who nearly met the ca_standard in english language arts;the fraction of female students in grade 5 who nearly met the ca_standard in english language arts;the number of female students in grade 5 who nearly met the ca_standard in english language arts divided by the total number of female students in grade 5;the number of female students in grade 5 who nearly met the ca_standard in english language arts expressed as a percentage of the total number of female students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade5_Mathematics,fraction of female students in grade 5 who nearly met the ca mathematics standard;female students in grade 5 who nearly met the ca mathematics standard as a fraction of all female students in grade 5;the percentage of female students in grade 5 who nearly met the ca mathematics standard;the proportion of female students in grade 5 who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade6_EnglishLanguageArts,fraction of female students in grade 6 who nearly met the ca_standard in english language arts;number of female students in grade 6 who nearly met the ca_standard in english language arts divided by the total number of female students in grade 6;percentage of female students in grade 6 who nearly met the ca_standard in english language arts;share of female students in grade 6 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade6_Mathematics,fraction of female students in grade 6 who nearly met the ca mathematics standard;percentage of female grade 6 students who nearly met the ca mathematics standard;number of female grade 6 students who nearly met the ca mathematics standard divided by the total number of female grade 6 students;proportion of female grade 6 students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade7_EnglishLanguageArts,fraction of female students in grade 7 who nearly met the ca_standard in english language arts;number of female students in grade 7 who nearly met the ca_standard in english language arts divided by the total number of female students in grade 7;percentage of female students in grade 7 who nearly met the ca_standard in english language arts;proportion of female students in grade 7 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade7_Mathematics,fraction of female students in grade 7 who nearly met the ca mathematics standard;percentage of female students in grade 7 who nearly met the ca mathematics standard;number of female students in grade 7 who nearly met the ca mathematics standard divided by the total number of female students in grade 7;number of female students in grade 7 who nearly met the ca mathematics standard as a percentage of the total number of female students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade8_EnglishLanguageArts,the percentage of female students in grade 8 who nearly met the ca standard in english language arts;the fraction of female students in grade 8 who nearly met the ca standard in english language arts;the number of female students in grade 8 who nearly met the ca standard in english language arts divided by the total number of female students in grade 8;the number of female students in grade 8 who nearly met the ca standard in english language arts expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_Female_SchoolGrade8_Mathematics,fraction of female students in grade 8 who nearly met the ca standard in mathematics;percentage of female students in grade 8 who nearly met the ca standard in mathematics;number of female students in grade 8 who nearly met the ca standard in mathematics divided by the total number of female students in grade 8;number of female students in grade 8 who nearly met the ca standard in mathematics expressed as a percentage of the total number of female students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts,the percentage of filipino 13th grade students who nearly met the ca standard in english language arts;the fraction of filipino 13th grade students who nearly met the ca standard in english language arts;the proportion of filipino 13th grade students who nearly met the ca standard in english language arts;the number of filipino 13th grade students who nearly met the ca standard in english language arts divided by the total number of filipino 13th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of filipino, grade 13, english language arts, economically disadvantaged students who nearly met the ca standard divided by the total number of filipino, grade 13, english language arts, economically disadvantaged students" -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,the percentage of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the number of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of filipino students in grade 13;the fraction of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics,the fraction of filipino 13th grade students who nearly met the ca_standard in mathematics;the percentage of filipino 13th grade students who nearly met the ca_standard in mathematics;the proportion of filipino 13th grade students who nearly met the ca_standard in mathematics;the number of filipino 13th grade students who nearly met the ca_standard in mathematics divided by the total number of filipino 13th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the percentage of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics;the proportion of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics;the number of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics, divided by the total number of filipino students in grade 13;the fraction of filipino students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts,fraction of hispanic or latino 11th grade students who nearly met the ca english language arts standard;percentage of hispanic or latino 11th grade students who nearly met the ca english language arts standard;proportion of hispanic or latino 11th grade students who nearly met the ca english language arts standard;share of hispanic or latino 11th grade students who nearly met the ca english language arts standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in 11th grade english language arts who nearly met the ca standard, and who are not economically disadvantaged;the proportion of hispanic or latino 11th grade english language arts students who nearly met the ca standard and are not economically disadvantaged;the number of hispanic or latino 11th grade english language arts students who nearly met the ca standard and are not economically disadvantaged, divided by the total number of hispanic or latino 11th grade english language arts students;the share of hispanic or latino 11th grade english language arts students who nearly met the ca standard and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics,the percentage of hispanic or latino 11th graders who nearly met the ca_standard in mathematics;the proportion of hispanic or latino 11th graders who nearly met the ca_standard in mathematics;the number of hispanic or latino 11th graders who nearly met the ca_standard in mathematics divided by the total number of hispanic or latino 11th graders;the fraction of hispanic or latino 11th graders who nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in 11th grade who nearly met the ca mathematics standard and were not economically disadvantaged;the proportion of hispanic or latino 11th graders who nearly met the ca mathematics standard and were not economically disadvantaged;the number of hispanic or latino 11th graders who nearly met the ca mathematics standard and were not economically disadvantaged, divided by the total number of hispanic or latino 11th graders;the share of hispanic or latino 11th graders who nearly met the ca mathematics standard and were not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts,"the percentage of hispanic or latino students in grade 13 who nearly met the ca_standard in english language arts;the proportion of hispanic or latino students in grade 13 who nearly met the ca_standard in english language arts;the number of hispanic or latino students in grade 13 who nearly met the ca_standard in english language arts, divided by the total number of hispanic or latino students in grade 13;the fraction of hispanic or latino students in grade 13 who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the proportion of hispanic or latino students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the number of hispanic or latino students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13;the fraction of hispanic or latino students in school grade 13 who nearly met the ca_standard in english language arts and were not economically disadvantaged, out of all hispanic or latino students in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics,fraction of hispanic or latino 13th grade students who nearly met the ca mathematics standard;percentage of hispanic or latino 13th grade students who nearly met the ca mathematics standard;number of hispanic or latino 13th grade students who nearly met the ca mathematics standard divided by the total number of hispanic or latino 13th grade students;share of hispanic or latino 13th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the proportion of hispanic or latino students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the number of hispanic or latino students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13;the share of hispanic or latino students in school grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts,fraction of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts;proportion of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts;percentage of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts;share of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the proportion of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the number of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 3;the fraction of hispanic or latino students in grade 3 who nearly met the ca_standard in english language arts and were not economically disadvantaged, out of all hispanic or latino students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics,the fraction of hispanic or latino students in grade 3 who nearly met the ca math standard;the percentage of hispanic or latino students in grade 3 who nearly met the ca math standard;the proportion of hispanic or latino students in grade 3 who nearly met the ca math standard;the number of hispanic or latino students in grade 3 who nearly met the ca math standard divided by the total number of hispanic or latino students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,"the number of hispanic or latino students in grade 3 who nearly met the ca mathematics standard and are economically disadvantaged, divided by the total number of hispanic or latino students in grade 3;the number of hispanic or latino students in grade 3 who nearly met the ca mathematics standard and are economically disadvantaged, expressed as a percentage of the total number of hispanic or latino students in grade 3;the number of hispanic or latino students in grade 3 who nearly met the ca mathematics standard and are economically disadvantaged, expressed as a proportion of the total number of hispanic or latino students in grade 3;the number of hispanic or latino students in school grade 3 who nearly met the ca_standard in mathematics and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in grade 3 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the proportion of hispanic or latino students in grade 3 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the number of hispanic or latino students in grade 3 who nearly met the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 3;the fraction of hispanic or latino students in grade 3 who nearly met the ca_standard in mathematics and were not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts,fraction of hispanic or latino 4th graders who nearly met the ca english language arts standard;percentage of hispanic or latino 4th graders who nearly met the ca english language arts standard;number of hispanic or latino 4th graders who nearly met the ca english language arts standard divided by the total number of hispanic or latino 4th graders;proportion of hispanic or latino 4th graders who nearly met the ca english language arts standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in school grade 4 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the proportion of hispanic or latino students in school grade 4 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the percentage of hispanic or latino students in school grade 4 who nearly met the ca_standard in english language arts, out of all hispanic or latino students in school grade 4 who were not economically disadvantaged;fraction of hispanic or latino students in grade 4 who are not economically disadvantaged and nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics,"the percentage of hispanic or latino students in grade 4 who nearly met the ca math standard;the proportion of hispanic or latino fourth-graders who nearly met the ca math standard;the number of hispanic or latino fourth-graders who nearly met the ca math standard, divided by the total number of hispanic or latino fourth-graders;the fraction of hispanic or latino fourth-graders who nearly met the ca math standard" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"number of hispanic or latino students in grade 4 who nearly met the ca standard in mathematics and are economically disadvantaged divided by the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in grade 4 who nearly met the ca_standard in mathematics and are economically disadvantaged, divided by the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in grade 4 who nearly met the ca standard in mathematics and are economically disadvantaged, divided by the total number of hispanic or latino students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,fraction of hispanic or latino students in grade 4 who nearly met the ca math standard who are not economically disadvantaged;percentage of hispanic or latino students in grade 4 who nearly met the ca math standard who are not economically disadvantaged;share of hispanic or latino students in grade 4 who nearly met the ca math standard who are not economically disadvantaged;proportion of hispanic or latino students in grade 4 who nearly met the ca math standard who are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts,the percentage of hispanic or latino 5th graders who nearly met the ca_standard in english language arts;the proportion of hispanic or latino 5th graders who nearly met the ca_standard in english language arts;the number of hispanic or latino 5th graders who nearly met the ca_standard in english language arts divided by the total number of hispanic or latino 5th graders;the number of hispanic or latino 5th graders who nearly met the ca_standard in english language arts as a fraction of the total number of hispanic or latino 5th graders -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of hispanic or latino students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts;percentage of hispanic or latino students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts;number of hispanic or latino students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of hispanic or latino students in grade 5 who are not economically disadvantaged;share of hispanic or latino students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics,fraction of hispanic or latino 5th graders who nearly met the ca math standard;percentage of hispanic or latino 5th graders who nearly met the ca math standard;number of hispanic or latino 5th graders who nearly met the ca math standard divided by the total number of hispanic or latino 5th graders;share of hispanic or latino 5th graders who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,the number of hispanic or latino students in grade 5 who nearly met the ca math standard and are economically disadvantaged divided by the total number of hispanic or latino students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,the percentage of hispanic or latino students in grade 5 who nearly met the ca math standard and were not economically disadvantaged;the proportion of hispanic or latino students in grade 5 who nearly met the ca math standard and were not economically disadvantaged;the number of hispanic or latino students in grade 5 who nearly met the ca math standard and were not economically disadvantaged divided by the total number of hispanic or latino students in grade 5;the ratio of hispanic or latino students in grade 5 who nearly met the ca math standard and were not economically disadvantaged to the total number of hispanic or latino students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts,fraction of hispanic or latino 6th grade students who nearly met the ca english language arts standard;percentage of hispanic or latino 6th grade students who nearly met the ca english language arts standard;proportion of hispanic or latino 6th grade students who nearly met the ca english language arts standard;number of hispanic or latino 6th grade students who nearly met the ca english language arts standard divided by the total number of hispanic or latino 6th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in grade 6 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the proportion of hispanic or latino students in grade 6 who nearly met the ca_standard in english language arts and were not economically disadvantaged;the number of hispanic or latino students in grade 6 who nearly met the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 6;the number of hispanic or latino students in grade 6 who nearly met the ca_standard in english language arts and were not economically disadvantaged, expressed as a percentage of the total number of hispanic or latino students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics,fraction of hispanic or latino 6th grade students who nearly met the ca math standard;percentage of hispanic or latino 6th grade students who nearly met the ca math standard;number of hispanic or latino 6th grade students who nearly met the ca math standard divided by the total number of hispanic or latino 6th grade students;proportion of hispanic or latino 6th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in grade 6 who nearly met the ca standard in mathematics and were not economically disadvantaged;the proportion of hispanic or latino students in grade 6 who nearly met the ca standard in mathematics and were not economically disadvantaged;the number of hispanic or latino students in grade 6 who nearly met the ca standard in mathematics and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 6;the share of hispanic or latino students in grade 6 who nearly met the ca standard in mathematics and were not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts,the percentage of hispanic or latino students in grade 7 who nearly met the ca_standard in english language arts;the proportion of hispanic or latino students in grade 7 who nearly met the ca_standard in english language arts;the number of hispanic or latino students in grade 7 who nearly met the ca_standard in english language arts divided by the total number of hispanic or latino students in grade 7;the fraction of hispanic or latino students in grade 7 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of hispanic or latino students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts;percentage of hispanic or latino students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts;share of hispanic or latino students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts;proportion of hispanic or latino students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics,the percentage of hispanic or latino students in grade 7 who nearly met the ca_standard in mathematics;the proportion of hispanic or latino students in grade 7 who nearly met the ca_standard in mathematics;the share of hispanic or latino students in grade 7 who nearly met the ca_standard in mathematics;the number of hispanic or latino students in grade 7 who nearly met the ca_standard in mathematics divided by the total number of hispanic or latino students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,fraction of hispanic or latino 7th grade students who are not economically disadvantaged and nearly met the ca math standard;percentage of hispanic or latino 7th grade students who are not economically disadvantaged and nearly met the ca math standard;share of hispanic or latino 7th grade students who are not economically disadvantaged and nearly met the ca math standard;proportion of hispanic or latino 7th grade students who are not economically disadvantaged and nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts,fraction of hispanic or latino 8th grade students who nearly met the ca standard in english language arts;percentage of hispanic or latino 8th grade students who nearly met the ca standard in english language arts;number of hispanic or latino 8th grade students who nearly met the ca standard in english language arts divided by the total number of hispanic or latino 8th grade students;percent of hispanic or latino 8th grade students who nearly met the ca standard in english language arts out of all hispanic or latino 8th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of hispanic or latino students in grade 8 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the proportion of hispanic or latino students in grade 8 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the number of hispanic or latino students in grade 8 who nearly met the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of hispanic or latino students in grade 8;the share of hispanic or latino students in grade 8 who nearly met the ca_standard in english language arts and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics,the percentage of hispanic or latino students in grade 8 who nearly met the ca math standard;the proportion of hispanic or latino students in grade 8 who nearly met the ca math standard;the number of hispanic or latino students in grade 8 who nearly met the ca math standard divided by the total number of hispanic or latino students in grade 8;the number of hispanic or latino students in grade 8 who nearly met the ca math standard expressed as a fraction -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,fraction of hispanic or latino students in grade 8 who nearly met the ca math standard who are not economically disadvantaged;percentage of hispanic or latino students in grade 8 who nearly met the ca math standard who are not economically disadvantaged;number of hispanic or latino students in grade 8 who nearly met the ca math standard who are not economically disadvantaged divided by the total number of hispanic or latino students in grade 8 who are not economically disadvantaged;share of hispanic or latino students in grade 8 who nearly met the ca math standard who are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"the proportion of english learners in grade 11 who were initially fluent, reclassified fluent, or only english proficient in english language arts was number;the fraction of english learners in grade 11 who were initially fluent, reclassified fluent, or only english proficient in english language arts was number;the percentage of english learners in grade 11 who are initially fluent or reclassified fluent or only speak english and have nearly met the ca_standard in english language arts;the proportion of english learners in grade 11 who are initially fluent or reclassified fluent or only speak english and have nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_Mathematics,"fraction of 11th grade english learners who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics;proportion of 11th grade english learners who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics;fraction of english learners in 11th grade who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;percent of english learners in 11th grade who are initially fluent proficient or reclassified fluent proficient or only english in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_EnglishLanguageArts,"the fraction of english learners in school grade 13 who are initially fluent proficient or reclassified fluent proficient or only english in english language arts;fraction of students who are english learners and in grade 13 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;fraction of english learners in school grade 13 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts;the percentage of students who are english learners and who are proficient in english language arts, as measured by the ca_standard nearly met, initial fluent proficient, or reclassified fluent proficient standards, in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_Mathematics,the proportion of english learners who are initially fluent or reclassified fluent in mathematics in grade 13;the fraction of english learners who are initially fluent or reclassified fluent in mathematics in grade 13;the proportion of english learners in school grade 13 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;the fraction of english learners in school grade 13 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_EnglishLanguageArts,"fraction of english learners in school grade 3 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts;fraction of students who are initial fluent proficient or reclassified fluent proficient or only english in english language arts among english learners in school grade 3;fraction of students in school grade 3 who are initial fluent proficient or reclassified fluent proficient or only english in english language arts among english learners;fraction of english learners in school grade 3 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_Mathematics,"fraction of students who are english learners in school grade 3 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics;proportion of english learners in school grade 3 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_EnglishLanguageArts,"the proportion of english learners who are initially or reclassified as fluent proficient in english language arts in grade 4;the percentage of english learners in grade 4 who are initially fluent, reclassified fluent, or only speak english and have nearly met the ca standard in english language arts;the proportion of english learners in grade 4 who are initially fluent, reclassified fluent, or only speak english and have nearly met the ca standard in english language arts;the share of english learners in grade 4 who are initially fluent, reclassified fluent, or only speak english and have nearly met the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_Mathematics,"the proportion of english learners in grade 4 who were initially fluent or reclassified fluent or only english in mathematics;proportion of english learners in grade 4 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_EnglishLanguageArts,"the percentage of students who are english learners and are initially fluent or reclassified fluent in english language arts in school grade 5;the proportion of students who are english learners and are initially fluent or reclassified fluent in english language arts in school grade 5;the fraction of students who are english learners and are initially fluent or reclassified fluent in english language arts in school grade 5, out of all students;fraction of students who are english learners and are initially or reclassified fluent proficient in english language arts in school grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_Mathematics,"the percentage of students who are english learners and are either initially or reclassified as fluent proficient in mathematics in grade 5;the fraction of students who are english learners and are either initially or reclassified as fluent proficient in mathematics in grade 5;the proportion of students who are english learners and are either initially or reclassified as fluent proficient in mathematics in grade 5;the percentage of english learners in grade 5 who are proficient in mathematics, as a fraction of the total number of english learners in grade 5 who are either proficient or nearly proficient in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"the proportion of english learners in grade 6 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;the fraction of english learners in grade 6 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;the percentage of english learners in grade 6 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts, expressed as a fraction;what proportion of english learners in grade 6 were fluent or reclassified as fluent in english language arts in california?" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_Mathematics,"fraction of 6th grade english learners who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics;proportion of 6th grade english learners who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics;fraction of students who are english learners and are proficient in mathematics in grade 6 who are initially fluent or reclassified fluent or only english;proportion of english learners in grade 6 who are proficient in mathematics and are initially fluent or reclassified fluent or only english" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_EnglishLanguageArts,"fraction of students who are initial fluent proficient or reclassified fluent proficient or only english english learners in school grade 7 english language arts;proportion of students who are initial fluent proficient or reclassified fluent proficient or only english english learners in school grade 7 english language arts;fraction of students who are english learners in grade 7 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;proportion of english learners in grade 7 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_Mathematics,"fraction of students in grade 7 who are english learners and are either initially or reclassified as fluent proficient in mathematics;percentage of students in grade 7 who are english learners and are either initially or reclassified as fluent proficient in mathematics;proportion of students in grade 7 who are english learners and are either initially or reclassified as fluent proficient in mathematics;the percentage of english learners in grade 7 who are nearly proficient in mathematics, initially fluent proficient in mathematics, or reclassified fluent proficient in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_EnglishLanguageArts,"the proportion of english learners in grade 8 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts;fraction of students who are english learners and are either initial or reclassified fluent proficient in english language arts in grade 8;percentage of english learners in grade 8 who are either initial or reclassified fluent proficient in english language arts;proportion of english learners in grade 8 who are either initial or reclassified fluent proficient in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_Mathematics,the proportion of students who are english learners and initially met the ca_standard or reclassified as fluent proficient or only speak english in mathematics in school grade 8;proportion of english learners in grade 8 who are initially or reclassified as fluent in english and proficient in mathematics;fraction of students who are english learners and nearly met or were reclassified as fluent proficient in mathematics in grade 8;percentage of english learners who nearly met or were reclassified as fluent proficient in mathematics in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_Mathematics,percentage of english learners in 11th grade mathematics who are initially fluent proficient and nearly met the ca standard;proportion of english learners in 11th grade mathematics who are initially fluent proficient and nearly met the ca standard;the percentage of students who are english learners and are in school grade 11 and are initially fluent proficient and nearly met the ca_standard in mathematics;the proportion of students who are english learners and are in school grade 11 and are initially fluent proficient and nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts,fraction of english learners in grade 13 who are initially fluent proficient in english language arts and nearly met the ca standard;number of english learners in grade 13 who are initially fluent proficient in english language arts and nearly met the ca standard divided by the total number of english learners in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_Mathematics,what fraction of the students who are initially fluent proficient in english and are in grade 13 are english learners and are nearly meeting the ca_standard in mathematics?;what percentage of the students who are initially fluent proficient in english and are in grade 13 are english learners and are nearly meeting the ca_standard in mathematics?;what proportion of the students who are initially fluent proficient in english and are in grade 13 are english learners and are nearly meeting the ca_standard in mathematics? -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts,fraction of english learners in school grade 3 who are initial fluent proficient in english language arts;the fraction of students who are english learners and are initially fluent proficient in english language arts in school grade 3 who nearly met the ca_standard;the percentage of students who are english learners and are initially fluent proficient in english language arts in school grade 3 who nearly met the ca_standard;the proportion of students who are english learners and are initially fluent proficient in english language arts in school grade 3 who nearly met the ca_standard -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts,the percentage of english learners in grade 5 who are initially fluent and nearly met the ca standard in english language arts;the fraction of english learners in grade 5 who are initially fluent and nearly met the ca standard in english language arts;the ratio of english learners in grade 5 who are initially fluent and nearly met the ca standard in english language arts to the total number of english learners in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_Mathematics,the percentage of students who are english learners and are in school grade 5 and are initially fluent proficient and nearly met the ca_standard in mathematics;the proportion of students who are english learners and are in school grade 5 and are initially fluent proficient and nearly met the ca_standard in mathematics;the fraction of students who are english learners and are in school grade 5 and are initially fluent proficient and nearly met the ca_standard in mathematics;the percentage of english learners in grade 5 who are nearly proficient in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"the number of english learners who are initially fluent proficient in english language arts in grade 6 as a percentage of the total number of english learners in grade 6;fraction of students who are english learners, initially fluent proficient, and nearly met ca standards in english language arts in grade 6;number of students in grade 6 who are english learners and initially fluent proficient or nearly met ca standards in english language arts, as a percentage of the total number of students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_Mathematics,the proportion of english learners in grade 6 who are initially fluent and nearly met the ca math standard;the percentage of english learners in school grade 6 who are initially fluent proficient in mathematics and nearly met the ca_standard;the proportion of english learners in school grade 6 who are initially fluent proficient in mathematics and nearly met the ca_standard;the fraction of english learners in school grade 6 who are initially fluent proficient in mathematics and nearly met the ca_standard -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts,fraction of students who are english learners and initially fluent proficient in english language arts in grade 7 who nearly met the ca standard;number of english learners who are initially fluent proficient in english language arts in grade 7 who nearly met the ca standard divided by the total number of english learners who are initially fluent proficient in english language arts in grade 7;the number of english learners in grade 7 who are initially fluent proficient in english language arts and nearly met the ca standard as a fraction of the total number of english learners in grade 7;the number of english learners in grade 7 who are initially fluent proficient in english language arts and nearly met the ca standard as a percentage of the total number of english learners in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_Mathematics,fraction of 7th grade english learners who are initially fluent and proficient in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade11_EnglishLanguageArts,"the number of male students in grade 11 who nearly met the ca standard in english language arts, as a fraction of the total number of male students in grade 11 who took the ca standard in english language arts;the proportion of male students in grade 11 who nearly met the ca standard in english language arts, out of all male students in grade 11 who took the ca standard in english language arts;the percentage of male students in grade 11 who nearly met the ca standard in english language arts, out of all male students in grade 11 who took the ca standard in english language arts;the number of male students in grade 11 who nearly met the ca standard in english language arts, divided by the total number of male students in grade 11 who took the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade11_Mathematics,the percentage of male 11th grade students who nearly met the ca_standard in mathematics;the proportion of male 11th grade students who nearly met the ca_standard in mathematics;the number of male 11th grade students who nearly met the ca_standard in mathematics divided by the total number of male 11th grade students;the number of male 11th grade students who nearly met the ca_standard in mathematics expressed as a fraction of the total number of male 11th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade13_EnglishLanguageArts,the percentage of male students in grade 13 who nearly met the ca standard in english language arts;the proportion of male students in grade 13 who nearly met the ca standard in english language arts;the number of male students in grade 13 who nearly met the ca standard in english language arts divided by the total number of male students in grade 13;the number of male students in grade 13 who nearly met the ca standard in english language arts expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade13_Mathematics,the fraction of male students in grade 13 who nearly met the ca_standard in mathematics;the percentage of male students in grade 13 who nearly met the ca_standard in mathematics;the proportion of male students in grade 13 who nearly met the ca_standard in mathematics;the number of male students in grade 13 who nearly met the ca_standard in mathematics divided by the total number of male students in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade3_EnglishLanguageArts,the percentage of male students in grade 3 who nearly met the ca standard in english language arts;the proportion of male students in grade 3 who nearly met the ca standard in english language arts;the number of male students in grade 3 who nearly met the ca standard in english language arts divided by the total number of male students in grade 3;the number of male students in grade 3 who nearly met the ca standard in english language arts as a percentage of the total number of male students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade3_Mathematics,the percentage of male students in grade 3 who nearly met the ca mathematics standard;the proportion of male students in grade 3 who nearly met the ca mathematics standard;the number of male students in grade 3 who nearly met the ca mathematics standard divided by the total number of male students in grade 3;the number of male students in grade 3 who nearly met the ca mathematics standard expressed as a percentage of the total number of male students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade4_EnglishLanguageArts,the percentage of male students in grade 4 who nearly met the ca standard in english language arts;the fraction of male students in grade 4 who nearly met the ca standard in english language arts;the proportion of male students in grade 4 who nearly met the ca standard in english language arts;the number of male students in grade 4 who nearly met the ca standard in english language arts divided by the total number of male students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade4_Mathematics,"the fraction of male students in grade 4 who nearly met the ca_standard in mathematics;the percentage of male students in grade 4 who nearly met the ca_standard in mathematics;the number of male students in grade 4 who nearly met the ca_standard in mathematics, divided by the total number of male students in grade 4;the number of male students in grade 4 who nearly met the ca_standard in mathematics, expressed as a percentage of the total number of male students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade5_EnglishLanguageArts,the percentage of male 5th grade students who nearly met the ca_standard in english language arts;the proportion of male 5th grade students who nearly met the ca_standard in english language arts;the number of male 5th grade students who nearly met the ca_standard in english language arts divided by the total number of male 5th grade students;the fraction of male 5th grade students who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade5_Mathematics,the percentage of male 5th grade students who nearly met the ca math standard;the proportion of male 5th grade students who nearly met the ca math standard;the number of male 5th grade students who nearly met the ca math standard divided by the total number of male 5th grade students;the number of male 5th grade students who nearly met the ca math standard expressed as a fraction of the total number of male 5th grade students -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade6_EnglishLanguageArts,the fraction of male students in grade 6 who nearly met the ca_standard in english language arts;the percentage of male students in grade 6 who nearly met the ca_standard in english language arts;the proportion of male students in grade 6 who nearly met the ca_standard in english language arts;the number of male students in grade 6 who nearly met the ca_standard in english language arts divided by the total number of male students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade6_Mathematics,the percentage of male students in grade 6 who nearly met the ca mathematics standard;the proportion of male students in grade 6 who nearly met the ca mathematics standard;the number of male students in grade 6 who nearly met the ca mathematics standard divided by the total number of male students in grade 6;the number of male students in grade 6 who nearly met the ca mathematics standard expressed as a fraction of the total number of male students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade7_EnglishLanguageArts,the fraction of male students in grade 7 who nearly met the ca standard in english language arts;the percentage of male students in grade 7 who nearly met the ca standard in english language arts;the proportion of male students in grade 7 who nearly met the ca standard in english language arts;the number of male students in grade 7 who nearly met the ca standard in english language arts divided by the total number of male students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade7_Mathematics,the fraction of male students in grade 7 who nearly met the ca mathematics standard;the percentage of male students in grade 7 who nearly met the ca mathematics standard;the proportion of male students in grade 7 who nearly met the ca mathematics standard;the number of male students in grade 7 who nearly met the ca mathematics standard divided by the total number of male students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade8_EnglishLanguageArts,the percentage of male students in grade 8 who nearly met the ca standard in english language arts;the proportion of male students in grade 8 who nearly met the ca standard in english language arts;the number of male students in grade 8 who nearly met the ca standard in english language arts divided by the total number of male students in grade 8;the number of male students in grade 8 who nearly met the ca standard in english language arts expressed as a percentage of the total number of male students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_Male_SchoolGrade8_Mathematics,fraction of male students in grade 8 who nearly met the ca mathematics standard;percentage of male students in grade 8 who nearly met the ca mathematics standard;share of male students in grade 8 who nearly met the ca mathematics standard;number of male students in grade 8 who nearly met the ca mathematics standard divided by the total number of male students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_EnglishLanguageArts,fraction of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in english language arts;percentage of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in english language arts;proportion of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in english language arts;number of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in english language arts divided by the total number of native hawaiian or other pacific islander alone students in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_Mathematics,the percentage of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in mathematics;the proportion of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in mathematics;the number of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in mathematics divided by the total number of native hawaiian or other pacific islander alone students in grade 13;the fraction of native hawaiian or other pacific islander alone students in grade 13 who nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade11_EnglishLanguageArts,"the percentage of students in grade 11 who have no disabilities and nearly met the ca_standard in english language arts;the percentage of students in grade 11 who nearly met the ca_standard in english language arts, out of all students in grade 11 with no disabilities;the percentage of students in grade 11 who have no disability and nearly met the ca_standard in english language arts;the proportion of students in grade 11 who have no disability and nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade11_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade13_EnglishLanguageArts,fraction of students with no disability who nearly met the ca_standard in english language arts in grade 13;percentage of students with no disability who nearly met the ca_standard in english language arts in grade 13;number of students with no disability who nearly met the ca_standard in english language arts in grade 13 divided by the total number of students with no disability in grade 13;proportion of students with no disability who nearly met the ca_standard in english language arts in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade3_EnglishLanguageArts,number of students in grade 3 with no disabilities who nearly met the ca standard in english language arts divided by the total number of students in grade 3 with no disabilities;the number of students without disabilities who nearly met the ca_standard in english language arts in grade 3 divided by the total number of students without disabilities in grade 3;the number of students without disabilities who nearly met the ca_standard in english language arts in grade 3 expressed as a percentage of the total number of students without disabilities in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade4_EnglishLanguageArts,percentage of students with no disability who nearly met the ca_standard in english language arts in grade 4;share of students with no disability who nearly met the ca_standard in english language arts in grade 4;the fraction of students with no disabilities who nearly met the ca_standard in english language arts in school grade 4;the percentage of students with no disabilities who nearly met the ca_standard in english language arts in school grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade4_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade5_EnglishLanguageArts,number of students with no disabilities who nearly met the ca standard in english language arts in grade 5 divided by the total number of students with no disabilities in grade 5;number of students with no disabilities who nearly met the ca standard in english language arts in grade 5 expressed as a percentage of the total number of students with no disabilities in grade 5;the percentage of students in grade 5 who have no disability and nearly met the ca_standard in english language arts;the number of students in grade 5 who have no disability and nearly met the ca_standard in english language arts divided by the total number of students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade6_EnglishLanguageArts,the percentage of students in grade 6 who have no disability and nearly met the ca_standard in english language arts;the proportion of students in grade 6 who have no disability and nearly met the ca_standard in english language arts;the number of students in grade 6 who have no disability and nearly met the ca_standard in english language arts divided by the total number of students in grade 6;the fraction of students in grade 6 who have no disability and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade6_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade7_EnglishLanguageArts,"number of students in grade 7 english language arts who have no disability and nearly met the ca standard divided by the total number of students in grade 7 english language arts;number of students without disabilities who nearly met the ca_standard in english language arts in grade 7, divided by the total number of students without disabilities in grade 7;the number of students without disabilities who nearly met the ca_standard in english language arts in grade 7, as a percentage of the total number of students without disabilities in grade 7;the percentage of students in grade 7 with no disabilities who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade8_EnglishLanguageArts,the number of students without disabilities who nearly met the ca_standard in english language arts in grade 8 divided by the total number of students without disabilities in grade 8;the number of students without disabilities who nearly met the ca_standard in english language arts in grade 8 as a fraction of the total number of students without disabilities in grade 8;the number of students without disabilities who nearly met the ca_standard in english language arts in grade 8 as a percentage of the total number of students without disabilities in grade 8;the percentage of students with no disabilities who nearly met the ca_standard in english language arts in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_NoDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_EnglishLanguageArts,fraction of students in grade 11 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 11 english language arts who are not from military families and nearly met the ca standard;proportion of students in grade 11 english language arts who are not from military families and nearly met the ca standard;percent of students in grade 11 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_Mathematics,"the percentage of students in grade 11 who are not from military families and nearly met the ca standard in mathematics;the proportion of students in grade 11 who are not from military families and nearly met the ca standard in mathematics;the number of students in grade 11 who are not from military families and nearly met the ca standard in mathematics, divided by the total number of students in grade 11 who are not from military families;the number of students in grade 11 who are not from military families and nearly met the ca standard in mathematics, expressed as a percentage" -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,the percentage of students in grade 13 who are not from military families and who nearly met the ca_standard in english language arts;the proportion of students in grade 13 who are not from military families and who nearly met the ca_standard in english language arts;percentage of students who are not in the military and are in grade 13 who nearly met the ca standard in english language arts;the percentage of students in grade 13 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_Mathematics,fraction of students in grade 13 who are not from military families and nearly met the ca math standard;percentage of students in grade 13 who are not from military families and nearly met the ca math standard;number of students in grade 13 who are not from military families and nearly met the ca math standard divided by the total number of students in grade 13;number of students in grade 13 who are not from military families and nearly met the ca math standard expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_EnglishLanguageArts,fraction of students in grade 3 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 3 english language arts who are not from military families and nearly met the ca standard;proportion of students in grade 3 english language arts who are not from military families and nearly met the ca standard;share of students in grade 3 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_Mathematics,"fraction of students in grade 3 who are not from military families and nearly met the ca math standard;percentage of students in grade 3 who are not from military families and nearly met the ca math standard;number of students in grade 3 who are not from military families and nearly met the ca math standard, divided by the total number of students in grade 3 who are not from military families;number of students in grade 3 who are not from military families and nearly met the ca math standard, as a percentage of the total number of students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_EnglishLanguageArts,"fraction of students in grade 4 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 4 english language arts who are not from military families and nearly met the ca standard;number of students in grade 4 english language arts who are not from military families and nearly met the ca standard, divided by the total number of students in grade 4 english language arts who are not from military families;proportion of students in grade 4 english language arts who are not from military families and nearly met the ca standard" -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_Mathematics,fraction of students in grade 4 who are not from military families and nearly met the ca math standard;percentage of students in grade 4 who are not from military families and nearly met the ca math standard;number of students in grade 4 who are not from military families and nearly met the ca math standard divided by the total number of students in grade 4;number of students in grade 4 who are not from military families and nearly met the ca math standard expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_EnglishLanguageArts,the percentage of students in grade 5 who are not from military families and who nearly met the ca_standard in english language arts;the proportion of students in grade 5 who are not from military families and who nearly met the ca_standard in english language arts;fraction of students in grade 5 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 5 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_Mathematics,the percentage of students in grade 5 who are not from military families and nearly met the ca math standard;the fraction of students in grade 5 who are not from military families and nearly met the ca math standard;the proportion of students in grade 5 who are not from military families and nearly met the ca math standard;the number of students in grade 5 who are not from military families and nearly met the ca math standard divided by the total number of students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_EnglishLanguageArts,the percentage of students in grade 6 who are not from military families and who nearly met the ca_standard in english language arts;the proportion of students in grade 6 who are not from military families and who nearly met the ca_standard in english language arts;fraction of students in grade 6 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 6 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_Mathematics,"fraction of students in grade 6 who are not from military families and nearly met the ca math standard;percentage of students in grade 6 who are not from military families and nearly met the ca math standard;number of students in grade 6 who are not from military families and nearly met the ca math standard, expressed as a fraction of the total number of students in grade 6;number of students in grade 6 who are not from military families and nearly met the ca math standard, expressed as a percentage of the total number of students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_EnglishLanguageArts,the percentage of students in grade 7 who are not from military families and who nearly met the ca_standard in english language arts;the proportion of students in grade 7 who are not from military families and who nearly met the ca_standard in english language arts;fraction of students in grade 7 english language arts who are not from military families and nearly met the ca standard;percentage of students in grade 7 english language arts who are not from military families and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_Mathematics,"the percentage of students in grade 7 who are not from military families and nearly met the ca_standard in mathematics;the proportion of students in grade 7 who are not from military families and nearly met the ca_standard in mathematics;the number of students in grade 7 who are not from military families and nearly met the ca_standard in mathematics, divided by the total number of students in grade 7 who are not from military families;the fraction of students in grade 7 who are not from military families and nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_EnglishLanguageArts,the percentage of students in grade 8 who are not from military families and nearly met the ca_standard in english language arts;the proportion of students in grade 8 who are not from military families and nearly met the ca_standard in english language arts;the percentage of students in grade 8 who are not from military families and who nearly met the ca_standard in english language arts;the proportion of students in grade 8 who are not from military families and who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_Mathematics,fraction of students in grade 8 who are not from military families and nearly met the ca math standard;percentage of students in grade 8 who are not from military families and nearly met the ca math standard;number of students in grade 8 who are not from military families and nearly met the ca math standard divided by the total number of students in grade 8;number of students in grade 8 who are not from military families and nearly met the ca math standard expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade11_EnglishLanguageArts,"1 the percentage of students who nearly met the ca_standard in english language arts in school grade 11 is fraction;2 nearly fraction of students in school grade 11 nearly met the ca_standard in english language arts;3 fraction of students in school grade 11 nearly met the ca_standard in english language arts;4 in school grade 11, fraction of students nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade11_Mathematics,fraction of students who nearly met the ca standard in english and mathematics in grade 11;percentage of students who nearly met the ca standard in english and mathematics in grade 11;number of students who nearly met the ca standard in english and mathematics in grade 11 as a percentage of the total number of students in grade 11;number of students who nearly met the ca standard in english and mathematics in grade 11 as a fraction of the total number of students in grade 11 -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade13_EnglishLanguageArts,the percentage of students who nearly met the ca_standard in english language arts in school grade 13;the fraction of students who nearly met the ca_standard in english language arts in school grade 13;the proportion of students who nearly met the ca_standard in english language arts in school grade 13;fraction of students in grade 13 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade13_Mathematics,"fraction of students in grade 13 who nearly met the ca math standard in english only;percentage of students in grade 13 who nearly met the ca math standard in english only;number of students in grade 13 who nearly met the ca math standard in english only, divided by the total number of students in grade 13;the number of students in grade 13 who nearly met the ca math standard in english only, expressed as a percentage" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade3_EnglishLanguageArts,the percentage of students in grade 3 who nearly met the ca_standard in english language arts;the proportion of students in grade 3 who nearly met the ca_standard in english language arts;fraction of students in grade 3 who nearly met the ca standard in english language arts;percentage of students in grade 3 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade3_Mathematics,fraction of students in grade 3 who nearly met the ca standard in english and mathematics;percentage of students in grade 3 who nearly met the ca standard in english and mathematics;share of students in grade 3 who nearly met the ca standard in english and mathematics;number of students in grade 3 who nearly met the ca standard in english and mathematics divided by the total number of students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade4_EnglishLanguageArts,"the percentage of students who nearly met the ca_standard in english language arts in school grade 4, out of the total number of students who only took english in school grade 4;the fraction of students who nearly met the ca_standard in english language arts in school grade 4, out of the total number of students who took english only in school grade 4;the proportion of students who nearly met the ca_standard in english language arts in school grade 4, out of the total number of students who took english only in school grade 4;the number of students who nearly met the ca_standard in english language arts in school grade 4, divided by the total number of students who took english only in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade4_Mathematics,fraction of students in grade 4 who nearly met the ca standard in english and mathematics;percentage of students in grade 4 who nearly met the ca standard in english and mathematics;number of students in grade 4 who nearly met the ca standard in english and mathematics divided by the total number of students in grade 4;number of students in grade 4 who nearly met the ca standard in english and mathematics expressed as a percentage of the total number of students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade5_EnglishLanguageArts,the percentage of students who nearly met the ca_standard in english language arts in school grade 5;the proportion of students who nearly met the ca_standard in english language arts in school grade 5;the fraction of students in school grade 5 who nearly met the ca_standard in english language arts;the number of students in school grade 5 who nearly met the ca_standard in english language arts expressed as a percentage -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade5_Mathematics,"fraction of students in grade 5 who nearly met the ca_standard in english and mathematics;percentage of students in grade 5 who nearly met the ca_standard in english and mathematics;number of students in grade 5 who nearly met the ca_standard in english and mathematics, divided by the total number of students in grade 5;proportion of students in grade 5 who nearly met the ca_standard in english and mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade6_EnglishLanguageArts,fraction of students who nearly met the ca_standard in english language arts in grade 6;number of students who nearly met the ca_standard in english language arts in grade 6 as a fraction of the total number of students in english language arts in grade 6;percentage of students who nearly met the ca_standard in english language arts in grade 6;proportion of students who nearly met the ca_standard in english language arts in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade6_Mathematics,"fraction of students in grade 6 who nearly met the ca standard in mathematics, only taking english classes;percentage of students in grade 6 who nearly met the ca standard in mathematics, only taking english classes;proportion of students in grade 6 who nearly met the ca standard in mathematics, only taking english classes;number of students in grade 6 who nearly met the ca standard in mathematics, only taking english classes, divided by the total number of students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade7_EnglishLanguageArts,fraction of students who nearly met the ca_standard in english language arts in school grade 7;the percentage of students in school grade 7 who nearly met the ca_standard in english language arts;the number of students in school grade 7 who nearly met the ca_standard in english language arts as a proportion of the total number of students in school grade 7;the proportion of students in school grade 7 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade7_Mathematics,"fraction of students in grade 7 who nearly met the ca standard for mathematics in english only;percentage of students in grade 7 who nearly met the ca standard for mathematics in english only;number of students in grade 7 who nearly met the ca standard for mathematics in english only, as a proportion of the total number of students in grade 7;proportion of students in grade 7 who nearly met the ca standard for mathematics in english only" -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade8_EnglishLanguageArts,fraction of students who nearly met the ca_standard in english language arts in grade 8;percentage of students who nearly met the ca_standard in english language arts in grade 8;number of students who nearly met the ca_standard in english language arts in grade 8 as a proportion of the total number of students in grade 8;number of students who nearly met the ca_standard in english language arts in grade 8 as a percentage of the total number of students in english language arts in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_OnlyEnglish_SchoolGrade8_Mathematics,"fraction of students in grade 8 who nearly met the ca standard in mathematics, out of all students in grade 8 who only studied english;percentage of students in grade 8 who nearly met the ca standard in mathematics, out of all students in grade 8 who only studied english;proportion of students in grade 8 who nearly met the ca standard in mathematics, out of all students in grade 8 who only studied english;number of students in grade 8 who nearly met the ca standard in mathematics, divided by the number of students in grade 8 who only studied english" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_Mathematics,"1 the percentage of students in grade 11 who nearly met the ca standard in mathematics, but declined to the state standard;2 the proportion of students in grade 11 who nearly met the ca standard in mathematics, but declined to the state standard;3 the number of students in grade 11 who nearly met the ca standard in mathematics, but declined to the state standard, divided by the total number of students in grade 11;4 the fraction of students in grade 11 who nearly met the ca standard in mathematics, but declined to the state standard, out of all students in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_EnglishLanguageArts,fraction of students who nearly met the ca standard in english language arts in school grade 13 who declined to the state standard;number of students who nearly met the ca standard in english language arts in school grade 13 who declined to the state standard as a fraction of the total number of students who declined to the state standard in english language arts in school grade 13;percentage of students who nearly met the ca standard in english language arts in school grade 13 who declined to the state standard;proportion of students who nearly met the ca standard in english language arts in school grade 13 who declined to the state standard -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_Mathematics,fraction of students who nearly met the ca standard in mathematics in grade 13 who declined to the state standard;percentage of students who nearly met the ca standard in mathematics in grade 13 who declined to the state standard;proportion of students who nearly met the ca standard in mathematics in grade 13 who declined to the state standard;fraction of students who nearly met the ca standard in mathematics in grade 13 who declined to take the state exam -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_EnglishLanguageArts,"the fraction of students who nearly met the ca standard in english language arts in school grade 4 who declined to the state standard;the percentage of students who nearly met the ca standard in english language arts in school grade 4 who declined to the state standard;the proportion of students who nearly met the ca standard in english language arts in school grade 4 who declined to the state standard;the number of students who nearly met the ca standard in english language arts in school grade 4 who declined to the state standard, expressed as a percentage of the total number of students who nearly met the ca standard in english language arts in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_Mathematics,"fraction of students who nearly met the ca standard, declined to the state standard, and are in grade 4 mathematics;percentage of students who nearly met the ca standard, declined to the state standard, and are in grade 4 mathematics;proportion of students who nearly met the ca standard, declined to the state standard, and are in grade 4 mathematics;number of students who nearly met the ca standard, declined to the state standard, and are in grade 4 mathematics, divided by the total number of students in grade 4 mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_Mathematics,"the fraction of students in grade 5 who nearly met the ca standard in mathematics, out of all students who declined to the state standard in mathematics in grade 5;the percentage of students in grade 5 who nearly met the ca standard in mathematics, out of all students who declined to the state standard in mathematics in grade 5;the proportion of students in grade 5 who nearly met the ca standard in mathematics, out of all students who declined to the state standard in mathematics in grade 5;the number of students in grade 5 who nearly met the ca standard in mathematics, as a percentage of the number of students who declined to the state standard in mathematics in grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_EnglishLanguageArts,"the percentage of students in grade 6 who nearly met the ca standard in english language arts, but declined to the state standard;the share of students in grade 6 who nearly met the ca standard in english language arts, but decreased to the state standard" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_Mathematics,fraction of students who nearly met or declined to state standards in math in grade 6;percentage of students who nearly met or declined to state standards in math in grade 6;proportion of students who nearly met or declined to state standards in math in grade 6;fraction of students who nearly met or declined to state standards in ca mathematics in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_Mathematics,"the number of students who nearly met the ca standard in mathematics in grade 7, as a fraction of the number of students who declined to the state standard in mathematics in grade 7;the fraction of students who nearly met the ca standard in mathematics in grade 7, compared to the number of students who declined to the state standard in mathematics in grade 7;the percentage of students who nearly met the ca standard in mathematics in grade 7, compared to the number of students who declined to the state standard in mathematics in grade 7;the proportion of students who nearly met the ca standard in mathematics in grade 7, compared to the number of students who declined to the state standard in mathematics in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_Mathematics,"the fraction of students who nearly met the ca standard in mathematics in grade 8, out of all students who declined to the state standard in mathematics in grade 8;the percentage of students who nearly met the ca standard in mathematics in grade 8, out of all students who declined to the state standard in mathematics in grade 8;the proportion of students who nearly met the ca standard in mathematics in grade 8, out of all students who declined to the state standard in mathematics in grade 8;the number of students who nearly met the ca standard in mathematics in grade 8, divided by the number of students who declined to the state standard in mathematics in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_EnglishLanguageArts,"the percentage of students who are college graduates, in grade 11, and nearly met the ca_standard in english language arts;the number of students who are college graduates, in grade 11, and nearly met the ca_standard in english language arts, divided by the total number of students" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_Mathematics,"fraction of students who are college graduates, in grade 11, and nearly met the ca_standard in mathematics;the percentage of students who are college graduates, in grade 11, and nearly met the ca_standard in mathematics;the number of students who are college graduates, in grade 11, and nearly met the ca_standard in mathematics, divided by the total number of students;the proportion of students who are college graduates, in grade 11, and nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_EnglishLanguageArts,"percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 13;proportion of students who are college graduates and nearly met the ca_standard in english language arts in grade 13;fraction of students who are college graduates, in grade 13, and nearly met the ca_standard in english language arts;percentage of students who are college graduates, in grade 13, and nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_Mathematics,"the percentage of students who are college graduates, in grade 13, and nearly met the ca_standard in mathematics;the proportion of students who are college graduates, in grade 13, and nearly met the ca_standard in mathematics;the number of students who are college graduates, in grade 13, and nearly met the ca_standard in mathematics, divided by the total number of students;the ratio of students who are college graduates, in grade 13, and nearly met the ca_standard in mathematics, to the total number of students" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_EnglishLanguageArts,the percentage of students who are college graduates and nearly met the ca_standard in english language arts in school grade 3;percentage of students who are college graduates and nearly met the ca_standard in english language arts in school grade 3;proportion of students who are college graduates and nearly met the ca_standard in english language arts in school grade 3;the percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_Mathematics,the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 3;the fraction of students who are college graduates and nearly met the ca_standard in mathematics in school grade 3;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in school grade 3;the share of students who are college graduates and nearly met the ca_standard in mathematics in school grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_EnglishLanguageArts,percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 4;the percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_Mathematics,the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 4;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in school grade 4;the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 4 out of all students;fraction of students who are college graduates and nearly met the ca_standard in mathematics in school grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_EnglishLanguageArts,percentage of students who are college graduates and nearly met the ca_standard in english language arts in school grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_Mathematics,percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 5;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in school grade 5;the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 5;the share of students who are college graduates and nearly met the ca_standard in mathematics in school grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_EnglishLanguageArts,"percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 6;proportion of students who are college graduates and nearly met the ca_standard in english language arts in grade 6;the number of students who are college graduates and nearly met the ca_standard in english language arts in school grade 6, divided by the total number of students;percentage of students in grade 6 who are college graduates and nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_Mathematics,"the percentage of students who are college graduates and nearly met the ca_standard in mathematics in grade 6;the number of students who are college graduates and nearly met the ca_standard in mathematics in grade 6, divided by the total number of students in grade 6;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in grade 6;the share of students who are college graduates and nearly met the ca_standard in mathematics in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_EnglishLanguageArts,percentage of students who are college graduates and nearly met the ca_standard in english language arts in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_Mathematics,"the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 7;the number of students who are college graduates and nearly met the ca_standard in mathematics in school grade 7, as a fraction of the total number of students;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in school grade 7;the number of students who are college graduates and nearly met the ca_standard in mathematics in school grade 7, divided by the total number of students" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_Mathematics,the percentage of students who are college graduates and nearly met the ca_standard in mathematics in grade 8;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in grade 8;the percentage of students who are college graduates and nearly met the ca_standard in mathematics in school grade 8;the proportion of students who are college graduates and nearly met the ca_standard in mathematics in school grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_EnglishLanguageArts,"number of students in graduate school or post-graduate programs who nearly met the ca_standard in english language arts in grade 11, divided by the total number of students in those programs;number of students in graduate school or post-graduate programs who nearly met the ca_standard in english language arts in grade 11, expressed as a percentage of the total number of students in those programs;number of students in graduate school or post graduate who nearly met the ca_standard in english language arts in grade 11 divided by the total number of students in graduate school or post graduate in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_Mathematics,"fraction of students in grade 11 who are in graduate school or post-graduate school who nearly met the ca standard in mathematics, as a fraction of the total number of students in grade 11 who are in graduate school or post-graduate school" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_EnglishLanguageArts,"number of students who nearly met the ca_standard in english language arts in graduate school or post graduate school grade 13 divided by the number of students in graduate school or post graduate school grade 13;the number of students who nearly met the ca_standard in english language arts in graduate school or post graduate school grade 13, divided by the total number of students in graduate school or post graduate school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_Mathematics,"the number of students who nearly met the ca_standard in mathematics in graduate school or post graduate school grade 13 divided by the total number of students in graduate school or post graduate school grade 13;number of students who nearly met ca standards in mathematics in graduate or postgraduate school, grade 13, divided by the total number of students in graduate or postgraduate school, grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_EnglishLanguageArts,number of students in graduate school or post-graduate school who nearly met the ca_standard in english language arts in grade 3 divided by the total number of students in graduate school or post-graduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_Mathematics,number of students in graduate or postgraduate school who nearly met the ca standard in mathematics in grade 3 divided by the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who nearly met the ca standard in grade 3 mathematics divided by the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who nearly met the california standard in mathematics in grade 3 divided by the total number of students in graduate or postgraduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_EnglishLanguageArts,number of students in graduate or post-graduate school who nearly met the ca standard in english language arts in grade 4 divided by the total number of students in graduate or post-graduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_EnglishLanguageArts,the number of students in graduate or postgraduate school who nearly met the ca_standard for english language arts in grade 5 divided by the total number of students in graduate or postgraduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_EnglishLanguageArts,number of students in graduate or postgraduate school grade 6 who nearly met the ca_standard in english language arts divided by the total number of students in graduate or postgraduate school grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_Mathematics,number of students in graduate or postgraduate school who nearly met the ca standard in mathematics in grade 6 divided by the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who nearly met the ca standard in mathematics in grade 6 as a percentage of the total number of students in graduate or postgraduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_Mathematics,number of students in graduate or postgraduate school who nearly met the ca standard in mathematics in grade 7 divided by the total number of students in graduate or postgraduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_Mathematics,number of students in graduate or postgraduate school who nearly met the ca standard in grade 8 mathematics as a percentage of the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who nearly met the ca standard in grade 8 mathematics as a fraction of the total number of students in graduate or postgraduate school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_EnglishLanguageArts,"number of students in grade 11 who are high school graduates or have an equivalency degree and nearly met the ca_standard in english language arts divided by the number of students in grade 11;share of students in grade 11 who are high school graduates (including equivalency) and nearly met the ca_standard in english language arts;the proportion of students in school grade 11 who nearly met the ca_standard in english language arts and are high school graduates or have earned an equivalency degree;the number of students in school grade 11 who nearly met the ca_standard in english language arts and are high school graduates or have earned an equivalency degree, divided by the total number of students in school grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_EnglishLanguageArts,"number of students who are high school graduates (including equivalency) in grade 13 who nearly met the ca standard in english language arts divided by the total number of students who are high school graduates (including equivalency) in grade 13;the number of students who nearly met the ca_standard in english language arts, who are high school graduates or have equivalency degrees, and are in grade 13, divided by the total number of students who are high school graduates or have equivalency degrees and are in grade 13;the number of students who nearly met the ca_standard in english language arts, who are high school graduates or have equivalency degrees, and are in grade 13, expressed as a percentage of all students who are high school graduates or have equivalency degrees and are in grade 13;the number of students who are high school graduates (including equivalency) in grade 13 who nearly met the ca_standard in english language arts divided by the number of students who are high school graduates (including equivalency) in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_Mathematics,"number of students who are high school graduates (including equivalency) in grade 13 who nearly met the ca_standard in mathematics divided by the total number of students who are high school graduates (including equivalency) in grade 13;fraction of students who are high school graduates, including equivalency, in grade 13 who nearly met the state standard in mathematics;fraction of students who are high school graduates, including equivalency, in grade 13 who nearly met the state's standard in mathematics;the number of students who nearly met the ca_standard in mathematics, who are high school graduates (including equivalency), and are in school grade 13, divided by the total number of students who are high school graduates (including equivalency), and are in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_EnglishLanguageArts,"number of students in grade 3 who are nearly meeting the ca standard in english language arts and whose parents are high school graduates or have an equivalency degree, divided by the total number of students in grade 3;number of students in grade 3 who nearly met the ca_standard in english language arts divided by the number of students in grade 3 whose parents are high school graduates or have an equivalency degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_Mathematics,"number of students in grade 3 who are nearly meeting the ca standard in mathematics and whose parents are high school graduates or have an equivalency degree, divided by the total number of students in grade 3;the number of students in grade 3 who nearly met the ca_standard in mathematics divided by the number of students in grade 3 whose parents are high school graduates or have an equivalency degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_Mathematics,"share of students in 4th grade who are nearly meeting the ca standard in mathematics, whose parents are high school graduates or have equivalency degrees" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_EnglishLanguageArts,"percentage of students in grade 6 who are nearly meeting the ca standard in english language arts who are high school graduates or have an equivalency degree;number of students in grade 6 who are nearly meeting the ca standard in english language arts who are high school graduates or have an equivalency degree, divided by the total number of students in grade 6;percent of students in grade 6 who are nearly meeting the ca standard in english language arts who are high school graduates or have an equivalency degree;percentage of students in grade 6 who are high school graduates or have equivalency degrees and nearly met the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_Mathematics,"the number of students in the 6th grade who have nearly met the ca_standard in mathematics, divided by the number of students in the 6th grade whose parents are high school graduates or have an equivalency degree;the share of students in the 6th grade who have nearly met the ca_standard in mathematics, and whose parents are high school graduates or have an equivalency degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_EnglishLanguageArts,"fraction of students in grade 7 who are nearly meeting the ca standard in english language arts and are high school graduates or have an equivalency degree;percentage of students in grade 7 who are nearly meeting the ca standard in english language arts and are high school graduates or have an equivalency degree;number of students in grade 7 who are nearly meeting the ca standard in english language arts and are high school graduates or have an equivalency degree, divided by the total number of students in grade 7;percent of students in grade 7 who are nearly meeting the ca standard in english language arts and are high school graduates or have an equivalency degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_Mathematics,percentage of students in grade 7 who are high school graduates or have an equivalency degree and nearly met the ca_standard in mathematics;number of students in grade 7 who are high school graduates or have an equivalency degree and nearly met the ca_standard in mathematics divided by the total number of students in grade 7;proportion of students in grade 7 who are high school graduates or have an equivalency degree and nearly met the ca_standard in mathematics;share of students in grade 7 who are high school graduates or have an equivalency degree and nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_EnglishLanguageArts,"fraction of students in grade 8 who nearly met the ca_standard in english language arts and are high school graduates or have equivalency degrees;number of students in grade 8 who nearly met the ca_standard in english language arts and are high school graduates or have equivalency degrees, divided by the total number of students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_Mathematics,"fraction of students who are in the 8th grade and have nearly met the ca_standard for mathematics, who are high school graduates or have equivalency degrees;number of students who are high school graduates or equivalent in grade 8 math who nearly met the ca standard in math divided by the total number of students who are high school graduates or equivalent in grade 8 math;fraction of students in grade 8 who are nearly meeting the ca standard in mathematics, who are high school graduates or have an equivalency degree;percentage of students in grade 8 who are nearly meeting the ca standard in mathematics, who are high school graduates or have an equivalency degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_Mathematics,"the percentage of students who nearly met the ca_standard in mathematics in school grade 11 and are less than high school graduates, out of all the students who are less than high school graduates in school grade 11;the proportion of students who nearly met the ca_standard in mathematics in school grade 11 and are less than high school graduates, compared to all the students who are less than high school graduates in school grade 11;the number of students who nearly met the ca_standard in mathematics in school grade 11 and are less than high school graduates, divided by the number of students who are less than high school graduates in school grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_EnglishLanguageArts,"number of students who nearly met the ca_standard in english language arts, who are less than high school graduates, and are in school grade 13, as a fraction of the number of students who are less than high school graduates and are in school grade 13;number of students who nearly met the ca_standard in english language arts, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13;count of student: ca_standard nearly met, less than high school graduate, school grade 13, english language arts (as fraction of count student parent less than high school graduate school grade 13 english language arts);the number of students who nearly met the ca_standard in english language arts, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_Mathematics,"fraction of students who are less than high school graduates and in grade 13 who nearly met the ca_standard in mathematics;percentage of students who are less than high school graduates and in grade 13 who nearly met the ca_standard in mathematics;number of students who are less than high school graduates and in grade 13 who nearly met the ca_standard in mathematics, divided by the total number of students who are less than high school graduates and in grade 13;the number of students who are less than high school graduates and in grade 13 who nearly met the ca_standard in mathematics, expressed as a percentage of the total number of students who are less than high school graduates and in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_EnglishLanguageArts,fraction of students in grade 3 who nearly met the ca_standard in english language arts and whose parents are less than high school graduates;fraction of students in grade 3 whose parents are less than high school graduates and who nearly met the ca_standard in english language arts;fraction of students in grade 3 who nearly met the ca_standard in english language arts and whose parents did not graduate from high school;fraction of students in grade 3 whose parents did not graduate from high school and who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_Mathematics,the percentage of students in grade 3 who nearly met the ca_standard in mathematics and whose parents have less than a high school diploma;the proportion of students in grade 3 who nearly met the ca_standard in mathematics and whose parents have not graduated from high school;the number of students in grade 3 who nearly met the ca_standard in mathematics divided by the number of students in grade 3 whose parents have not graduated from high school;the fraction of students in grade 3 who nearly met the ca_standard in mathematics who have parents who have not graduated from high school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_EnglishLanguageArts,fraction of students who nearly met the ca_standard in english language arts in school grade 4 who have parents who are less than high school graduates;percentage of students who nearly met the ca_standard in english language arts in school grade 4 who have parents who are less than high school graduates;number of students who nearly met the ca_standard in english language arts in school grade 4 who have parents who are less than high school graduates divided by the total number of students who nearly met the ca_standard in english language arts in school grade 4;the proportion of students who nearly met the ca_standard in english language arts in school grade 4 who have parents who are less than high school graduates -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_Mathematics,fraction of students who nearly met the ca standard in mathematics in school grade 4 who have parents who have not graduated from high school;percentage of students who nearly met the ca standard in mathematics in school grade 4 whose parents have not graduated from high school;share of students who nearly met the ca standard in mathematics in school grade 4 whose parents have not graduated from high school;fraction of students who nearly met the ca standard in mathematics in grade 4 who have parents who are less than high school graduates -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_EnglishLanguageArts,1 the percentage of students in school grade 5 who nearly met the ca_standard in english language arts and whose parents are less than high school graduates;2 the proportion of students in school grade 5 who nearly met the ca_standard in english language arts and whose parents have not graduated from high school;4 the fraction of students in school grade 5 who nearly met the ca_standard in english language arts who have parents who have not graduated from high school;5 the percentage of students in school grade 5 who nearly met the ca_standard in english language arts whose parents have not graduated from high school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_Mathematics,the percentage of students in grade 5 who nearly met the ca mathematics standard and have parents who are less than high school graduates;the proportion of students in grade 5 who nearly met the ca mathematics standard and have parents who have not graduated from high school;the number of students in grade 5 who nearly met the ca mathematics standard divided by the number of students in grade 5 who have parents who have not graduated from high school;the fraction of students in grade 5 who nearly met the ca mathematics standard who have parents who have not graduated from high school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_EnglishLanguageArts,the percentage of students in grade 6 who nearly met the ca_standard in english language arts and who have parents who are less than high school graduates;the proportion of students in grade 6 who nearly met the ca_standard in english language arts and who come from families with parents who have not graduated from high school;the number of students in grade 6 who nearly met the ca_standard in english language arts divided by the number of students in grade 6 who have parents who have not graduated from high school;the fraction of students in grade 6 who nearly met the ca_standard in english language arts who have parents who have not graduated from high school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_Mathematics,fraction of students in grade 6 who nearly met the ca standard in mathematics and have parents who are less than high school graduates;fraction of students in grade 6 who nearly met the ca standard in mathematics and have parents with less than a high school diploma;fraction of students in grade 6 who nearly met the ca standard in mathematics and have parents who did not complete high school;fraction of students in grade 6 who nearly met the ca standard in mathematics and have parents who are not high school graduates -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english language arts in school grade 7, and whose parents have not graduated from high school, as a fraction of the total number of students in school grade 7 whose parents have not graduated from high school;the percentage of students in school grade 7 whose parents have not graduated from high school who nearly met the ca_standard in english language arts;the proportion of students in school grade 7 whose parents have not graduated from high school who nearly met the ca_standard in english language arts;the number of students in school grade 7 whose parents have not graduated from high school who nearly met the ca_standard in english language arts, expressed as a percentage" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_Mathematics,the percentage of students in grade 7 who nearly met the ca_standard in mathematics and have parents who are less than high school graduates;the proportion of students in grade 7 who nearly met the ca_standard in mathematics and have parents who have not completed high school;the number of students in grade 7 who nearly met the ca_standard in mathematics divided by the number of students in grade 7 who have parents who have not completed high school;the fraction of students in grade 7 who nearly met the ca_standard in mathematics who have parents who have not completed high school -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english language arts, who are less than high school graduates, in school grade 8, divided by the total number of students who are less than high school graduates in school grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_EnglishLanguageArts,the number of students with some college but no degree in grade 11 who nearly met the ca_standard in english language arts as a percentage of the total number of students with some college but no degree in grade 11 -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_Mathematics,"the percentage of students who nearly met the ca_standard in mathematics in school grade 11 and have some college but no degree;the proportion of students who nearly met the ca_standard in mathematics in school grade 11 and have some college but no degree;the percentage of students in school grade 11 who have some college but no degree and nearly met the ca_standard in mathematics;the percentage of students who nearly met the ca_standard in mathematics, who have some college but no degree, and are in 11th grade" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 13, divided by the total number of students who have some college but no degree and are in grade 13;the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 13, expressed as a percentage of all students who have some college but no degree and are in grade 13;number of students with some college but no degree in grade 13 who nearly met the ca standard in english language arts divided by the total number of students with some college but no degree in grade 13;number of students with some college but no degree in grade 13 who nearly met the ca standard in english language arts expressed as a percentage of the total number of students with some college but no degree in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_Mathematics,"percentage of students who nearly met the ca_standard in mathematics, who have some college but no degree, and are in grade 13;proportion of students who nearly met the ca_standard in mathematics, who have some college but no degree, and are in grade 13;percentage of students who nearly met the ca_standard in mathematics, who have some college but no degree, and are in grade 13, out of all students;percentage of students who nearly met the ca standard in mathematics, with some college but no degree, in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_EnglishLanguageArts,"what is the fraction of students in school grade 3 who have nearly met the ca_standard in english language arts, out of all the students in school grade 3 whose parents have some college but no degree;what percentage of students in grade 3 with some college but no degree nearly met the ca_standard in english language arts?;what proportion of students in grade 3 with some college but no degree nearly met the ca_standard in english language arts?;what number of students in grade 3 with some college but no degree nearly met the ca_standard in english language arts out of all students in grade 3 with some college but no degree?" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_Mathematics,"fraction of students in grade 3 who have nearly met the ca standard in mathematics, with some college but no degree;percentage of students in grade 3 who have nearly met the ca standard in mathematics, with some college but no degree;the proportion of students in grade 3 who have nearly met the ca standard in mathematics, with some college but no degree;the percentage of students in grade 3 who have nearly met the ca_standard in mathematics, and whose parents have some college but no degree, is" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_EnglishLanguageArts,"the percentage of students in school grade 4 who have some college but no degree and nearly met the ca_standard in english language arts;the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 4, divided by the total number of students who have some college but no degree and are in grade 4;the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 4, as a percentage of the total number of students who have some college but no degree and are in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_Mathematics,fraction of students in grade 4 who have some college but no degree and nearly met the ca standard in mathematics;percentage of students in grade 4 who have some college but no degree and nearly met the ca standard in mathematics;proportion of students in grade 4 who have some college but no degree and nearly met the ca standard in mathematics;percentage of students in grade 4 who have nearly met the ca_standard in mathematics and have some college but no degree -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_EnglishLanguageArts,"the percentage of students who nearly met the ca_standard in english language arts in school grade 5 and whose parents have some college but no degree;the proportion of students who nearly met the ca_standard in english language arts in school grade 5 and whose parents have some college but no degree;the ratio of students who nearly met the ca_standard in english language arts in school grade 5 and whose parents have some college but no degree, to the total number of students in school grade 5;the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 5, divided by the total number of students who have some college but no degree and are in grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_Mathematics,"the percentage of students who nearly met the ca_standard in mathematics, with some college but no degree, in school grade 5;the percentage of students who nearly met the ca_standard in mathematics in school grade 5 who have some college but no degree;the proportion of students who nearly met the ca_standard in mathematics in school grade 5 who have some college but no degree;the fraction of students in school grade 5 who nearly met the ca_standard in mathematics and have some college but no degree" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_EnglishLanguageArts,"the number of students who nearly met the ca_standard in english language arts, who have some college but no degree, and are in grade 6, divided by the total number of students who have some college but no degree and are in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_Mathematics,"percentage of students who have nearly met the ca standard in mathematics, who have some college but no degree, and are in grade 6;number of students who have nearly met the ca standard in mathematics, who have some college but no degree, and are in grade 6, divided by the total number of students who have some college but no degree and are in grade 6;the proportion of students who have nearly met the ca standard in mathematics, who have some college but no degree, and are in grade 6;the percentage of students who have nearly met the ca standard in mathematics, who have some college but no degree, and are in grade 6, out of all students who have some college but no degree and are in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_EnglishLanguageArts,"fraction of students who are in grade 7, have some college but no degree, and nearly met the ca_standard in english language arts;percentage of students who are in grade 7, have some college but no degree, and nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_Mathematics,the percentage of students who nearly met the ca_standard in mathematics in school grade 7 and have some college but no degree;the proportion of students who nearly met the ca_standard in mathematics in school grade 7 and have some college but no degree;the fraction of students in school grade 7 who nearly met the ca_standard in mathematics and have some college but no degree;the percentage of students in school grade 7 who have some college but no degree and nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_EnglishLanguageArts,"here are 5 different ways of saying ""count of student: ca_standard nearly met, some college no degree, school grade 8, english language arts (as fraction of count student parent some college no degree school grade 8 english language arts)"" in a colloquial way:;the percentage of students with some college but no degree in grade 8 who nearly met the ca_standard in english language arts;the number of students with some college but no degree in grade 8 who nearly met the ca_standard in english language arts, divided by the total number of students with some college but no degree in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_Mathematics,"fraction of students who nearly met the ca standard in mathematics in grade 8 who have some college but no degree;percentage of students who nearly met the ca standard in mathematics in grade 8 who have some college but no degree;proportion of students who nearly met the ca standard in mathematics in grade 8 who have some college but no degree;number of students who nearly met the ca standard in mathematics, who have some college but no degree, and are in grade 8, divided by the total number of students who have some college but no degree and are in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"the percentage of 11th grade english learners who were reclassified as fluent proficient in english language arts and nearly met the ca_standard;the number of 11th grade english learners who were reclassified as fluent proficient in english language arts and nearly met the ca_standard, divided by the total number of 11th grade english learners;the fraction of 11th grade english learners who were reclassified as fluent proficient in english language arts and nearly met the ca_standard;the percentage of 11th grade english learners who were reclassified as fluent proficient in english language arts and nearly met the ca_standard, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_Mathematics,"fraction of students who are english learners, reclassified as fluent proficient in mathematics, and in grade 11 who nearly met the ca standard in mathematics;fraction of 11th grade english learners who are reclassified as fluent proficient in mathematics who nearly met the ca standard;percent of 11th grade english learners who are reclassified as fluent proficient in mathematics who nearly met the ca standard;the fraction of 11th grade english learners who were reclassified as fluent proficient in mathematics and nearly met the ca standard" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_Mathematics,"fraction of students who are english learners, reclassified as fluent proficient in mathematics, and in grade 13 who nearly met the ca standard in mathematics;fraction of students who are reclassified as fluent proficient english learners in school grade 13 who nearly met the ca_standard in mathematics;the percentage of students who are reclassified as fluent proficient english learners in school grade 13 who nearly met the ca_standard in mathematics;the fraction of students who are reclassified as fluent proficient english learners in school grade 13 who nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_Mathematics,"fraction of 4th grade english learners who are reclassified as fluent proficient in mathematics;fraction of students who are english learners, reclassified as fluent proficient in mathematics, and in grade 4 who nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts,"fraction of 5th grade english learners who are reclassified fluent proficient in english language arts;fraction of 5th grade english learners who are reclassified fluent proficient in english language arts out of all 5th grade english learners;fraction of 5th grade english learners who are reclassified fluent proficient in english language arts as a percentage of all 5th grade english learners;percentage of english learners who were reclassified as fluent proficient in english language arts in school grade 5 who nearly met the ca_standard, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_Mathematics,fraction of 5th grade english learners who are reclassified as fluent proficient in mathematics;fraction of 5th grade english learners who were reclassified as fluent proficient in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_Mathematics,"fraction of 6th grade english learners reclassified as fluent proficient in mathematics who nearly met the ca standard;fraction of students who are english learners, reclassified as fluent proficient in mathematics, and in grade 6 who nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_Mathematics,fraction of 7th grade english learners who are reclassified as fluent proficient in mathematics who nearly met the ca standard;number of 7th grade english learners who are reclassified as fluent proficient in mathematics who nearly met the ca standard divided by the total number of 7th grade english learners who are reclassified as fluent proficient in mathematics;percent of 7th grade english learners who are reclassified as fluent proficient in mathematics who nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_Mathematics,"fraction of 8th grade english learners who were reclassified as fluent proficient in mathematics and nearly met the ca standard;number of 8th grade english learners who were reclassified as fluent proficient in mathematics and nearly met the ca standard, divided by the total number of 8th grade english learners;the number of 8th grade english learners who were reclassified as fluent proficient in mathematics and nearly met the ca standard, expressed as a percentage of the total number of 8th grade english learners" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_HavingHome,the percentage of students in grade 11 english language arts who nearly met the ca standard and have a home;the fraction of students in grade 11 english language arts who nearly met the ca standard and have a home;the proportion of students in grade 11 english language arts who nearly met the ca standard and have a home;fraction of students in grade 11 english language arts who nearly met the ca standard and have a home -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_Homeless,fraction of students in grade 11 who are homeless and nearly met the ca standard in english language arts;number of students in grade 11 who are homeless and nearly met the ca standard in english language arts as a fraction of the total number of students in grade 11;percentage of students in grade 11 who are homeless and nearly met the ca standard in english language arts;share of students in grade 11 who are homeless and nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,the percentage of students in grade 11 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of students in grade 11 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the number of students in grade 11 who are not economically disadvantaged and nearly met the ca_standard in english language arts as a percentage of the total number of students in grade 11;the percentage of students who nearly met the ca_standard in english language arts in grade 11 and were not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotFoster,"the percentage of students in grade 11 who nearly met the ca_standard in english language arts and are not foster children;the fraction of students in grade 11 who nearly met the ca_standard in english language arts and are not foster children;the number of students in grade 11 who nearly met the ca_standard in english language arts and are not foster children, divided by the total number of students in grade 11;the proportion of students in grade 11 who nearly met the ca_standard in english language arts and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotMigrant,"what percentage of 11th grade students in english language arts who are not migrants nearly met the ca standard?;what proportion of 11th grade students in english language arts who are not migrants nearly met the ca standard?;of 11th grade students in english language arts who are not migrants, what is the percentage that nearly met the ca standard?;of 11th grade students in english language arts who are not migrants, what is the proportion that nearly met the ca standard?" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics,"fraction of students in grade 11 who nearly met the ca math standard;percentage of students in grade 11 who nearly met the ca math standard;number of students in grade 11 who nearly met the ca math standard, as a fraction of the total number of students in grade 11;number of students in grade 11 who nearly met the ca math standard, as a percentage of the total number of students in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_HavingHome,"the percentage of students in grade 11 who nearly met the ca_standard in mathematics and have a home;the proportion of students in grade 11 who nearly met the ca_standard in mathematics and have a home;the number of students in grade 11 who nearly met the ca_standard in mathematics and have a home, divided by the total number of students in grade 11;the fraction of students in grade 11 who nearly met the ca_standard in mathematics and have a home" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_Homeless,"the fraction of students in 11th grade who are homeless and nearly met the ca_standard in mathematics;the number of students in 11th grade who are homeless and nearly met the ca_standard in mathematics, expressed as a fraction;the percentage of students in 11th grade who are homeless and nearly met the ca_standard in mathematics;the proportion of students in 11th grade who are homeless and nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,the percentage of students in grade 11 who are not economically disadvantaged and nearly met the ca standard in mathematics;the proportion of students in grade 11 who are not economically disadvantaged and nearly met the ca standard in mathematics;the number of students in grade 11 who are not economically disadvantaged and nearly met the ca standard in mathematics expressed as a percentage of the total number of students in grade 11;the number of students in grade 11 who are not economically disadvantaged and nearly met the ca standard in mathematics as a proportion of the total number of students in grade 11 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_NotFoster,"the percentage of students in grade 11 who nearly met the ca_standard in mathematics and are not foster children;the proportion of students in grade 11 who nearly met the ca_standard in mathematics and are not foster children;the number of students in grade 11 who nearly met the ca_standard in mathematics and are not foster children, divided by the total number of students in grade 11;the fraction of students in grade 11 who nearly met the ca_standard in mathematics and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade11_Mathematics_NotMigrant,"fraction of students in grade 11 who nearly met the ca standard in mathematics, excluding migrant students;percentage of students in grade 11 who nearly met the ca standard in mathematics, excluding migrant students;number of students in grade 11 who nearly met the ca standard in mathematics, excluding migrant students divided by the total number of students in grade 11;number of students in grade 11 who nearly met the ca standard in mathematics, excluding migrant students expressed as a percentage of the total number of students in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts,number of students who nearly met the ca standard in english language arts in grade 13 divided by the total number of students in grade 13;share of students in grade 13 who nearly met the ca standard in english language arts;the number of students in grade 13 who nearly met the ca standard in english language arts as a percentage of the total number of students in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Foster, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_HavingHome,"the percentage of students in grade 13 who are nearly meeting the ca standard in english language arts and have a home;the proportion of students in grade 13 who are nearly meeting the ca standard in english language arts and have a home;the number of students in grade 13 who are nearly meeting the ca standard in english language arts and have a home, divided by the total number of students in grade 13;the fraction of students in grade 13 who are nearly meeting the ca standard in english language arts and have a home" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Homeless,"the percentage of students who nearly met the ca_standard in english language arts in grade 13 who are homeless;the proportion of students who nearly met the ca_standard in english language arts in grade 13 who are homeless;the number of students who nearly met the ca_standard in english language arts in grade 13 who are homeless, divided by the total number of students who nearly met the ca_standard in english language arts in grade 13;the fraction of students who nearly met the ca_standard in english language arts in grade 13 who are homeless, out of all the students who nearly met the ca_standard in english language arts in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Migrant,"number of students who nearly met the ca_standard in english language arts in grade 13 who are also migrants divided by the total number of students who nearly met the ca_standard in english language arts in grade 13;the number of students in school grade 13 who nearly met the ca_standard in english language arts and are migrant students, divided by the total number of students in school grade 13;the number of students who nearly met the ca_standard in english language arts in school grade 13 who are migrants divided by the total number of students who nearly met the ca_standard in english language arts in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13;the proportion of students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13;the number of students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13, divided by the total number of students who are not economically disadvantaged and who took the ca_standard in english language arts in school grade 13;the number of students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 13, expressed as a percentage of the total number of students who are not economically disadvantaged and who took the ca_standard in english language arts in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotFoster,the percentage of students in grade 13 who met the ca_standard nearly in english language arts and were not foster children;the proportion of students in grade 13 who met the ca_standard nearly in english language arts and were not foster children;the number of students in grade 13 who met the ca_standard nearly in english language arts and were not foster children divided by the total number of students in grade 13;the fraction of students in grade 13 who met the ca_standard nearly in english language arts and were not foster children -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotMigrant,"the percentage of students in grade 13 who nearly met the ca standard in english language arts and are not migrants;the proportion of students in grade 13 who nearly met the ca standard in english language arts and are not migrants;the number of students in grade 13 who nearly met the ca standard in english language arts and are not migrants, divided by the total number of students in grade 13;the fraction of students in grade 13 who nearly met the ca standard in english language arts and are not migrants" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics,fraction of students in grade 13 who nearly met the ca mathematics standard;percentage of students in grade 13 who nearly met the ca mathematics standard;number of students in grade 13 who nearly met the ca mathematics standard as a proportion of the total number of students in grade 13;share of students in grade 13 who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_Foster,"the number of students in grade 13 who nearly met the ca standard in mathematics and are foster students, expressed as a fraction of the total number of students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_HavingHome,the percentage of students in grade 13 who nearly met the ca standard in mathematics and have a home;the proportion of students in grade 13 who nearly met the ca standard in mathematics and have a home;the number of students in grade 13 who nearly met the ca standard in mathematics and have a home divided by the total number of students in grade 13 who have a home;the fraction of students in grade 13 who nearly met the ca standard in mathematics and have a home -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_Homeless,the fraction of homeless students in grade 13 who nearly met the ca_standard in mathematics;the percentage of homeless students in grade 13 who nearly met the ca_standard in mathematics;the proportion of homeless students in grade 13 who nearly met the ca_standard in mathematics;the number of homeless students in grade 13 who nearly met the ca_standard in mathematics divided by the total number of homeless students in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_Migrant,"the number of students in grade 13 who nearly met the ca_standard in mathematics and were also migrants, divided by the total number of students in grade 13;the number of students who nearly met the ca_standard in mathematics in grade 13 who are also migrants, expressed as a fraction of the total number of students who took the ca_standard in mathematics in grade 13;the number of students who nearly met the ca_standard in mathematics in grade 13 who are also migrants, expressed as a percentage of the total number of students who took the ca_standard in mathematics in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,fraction of students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics;percentage of students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics;number of students in grade 13 who are not economically disadvantaged and nearly met the ca standard in mathematics as a percentage of the total number of students in grade 13;the percentage of students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_NotFoster,"the percentage of students in grade 13 who nearly met the ca_standard in mathematics and are not foster children;the proportion of students in grade 13 who nearly met the ca_standard in mathematics and are not foster children;the fraction of students in grade 13 who nearly met the ca_standard in mathematics and are not foster children;the fraction of students in grade 13 who nearly met the ca_standard in mathematics and are not foster children, out of all students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade13_Mathematics_NotMigrant,fraction of students in grade 13 who nearly met the ca standard in mathematics and are not migrants;percentage of students in grade 13 who nearly met the ca standard in mathematics and are not migrants;number of students in grade 13 who nearly met the ca standard in mathematics and are not migrants divided by the total number of students in grade 13;proportion of students in grade 13 who nearly met the ca standard in mathematics and are not migrants -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts,"the number of students in grade 3 who nearly met the ca_standard in english language arts, divided by the total number of students in grade 3;the number of students in grade 3 who nearly met the ca standard in english language arts divided by the total number of students in grade 3;the number of students in grade 3 who nearly met the ca standard in english language arts as a percentage of the total number of students in grade 3;number of students in grade 3 who nearly met the ca standard for english language arts as a fraction of the total number of students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_HavingHome,fraction of third grade students in english language arts who nearly met the ca standard and have a home;percentage of third grade students in english language arts who nearly met the ca standard and have a home;proportion of third grade students in english language arts who nearly met the ca standard and have a home;share of third grade students in english language arts who nearly met the ca standard and have a home -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_Homeless,fraction of students in grade 3 who are homeless and nearly met the ca_standard in english language arts;percentage of students in grade 3 who are homeless and nearly met the ca_standard in english language arts;number of students in grade 3 who are homeless and nearly met the ca_standard in english language arts divided by the total number of students in grade 3;number of students in grade 3 who are homeless and nearly met the ca_standard in english language arts expressed as a percentage of the total number of students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 3 who are not economically disadvantaged and nearly met the ca standard in english language arts;percentage of students in grade 3 who are not economically disadvantaged and nearly met the ca standard in english language arts;number of students in grade 3 who are not economically disadvantaged and nearly met the ca standard in english language arts divided by the total number of students in grade 3 who are not economically disadvantaged;number of students in grade 3 who are not economically disadvantaged and nearly met the ca standard in english language arts as a percentage of the total number of students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotFoster,fraction of students in grade 3 who nearly met the ca standard in english language arts and are not in foster care;percentage of students in grade 3 who nearly met the ca standard in english language arts and are not in foster care;number of students in grade 3 who nearly met the ca standard in english language arts and are not in foster care divided by the total number of students in grade 3;share of students in grade 3 who nearly met the ca standard in english language arts and are not in foster care -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotMigrant,the percentage of students in grade 3 who nearly met the ca_standard in english language arts and are not migrant;the proportion of students in grade 3 who nearly met the ca_standard in english language arts and are not migrant;the number of students in grade 3 who nearly met the ca_standard in english language arts and are not migrant divided by the total number of students in grade 3;the fraction of students in grade 3 who nearly met the ca_standard in english language arts and are not migrant -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics,fraction of students in grade 3 who nearly met the ca mathematics standard;percentage of students in grade 3 who nearly met the ca mathematics standard;number of students in grade 3 who nearly met the ca mathematics standard divided by the total number of students in grade 3;share of students in grade 3 who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_HavingHome,the percentage of students in grade 3 who nearly met the ca standard in mathematics and have a home;the fraction of students in grade 3 who have a home and nearly met the ca standard in mathematics;the number of students in grade 3 who have a home and nearly met the ca standard in mathematics divided by the total number of students in grade 3;the proportion of students in grade 3 who have a home and nearly met the ca standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_Homeless,the percentage of students in grade 3 who nearly met the ca standard in mathematics and are homeless;the proportion of homeless students in grade 3 who nearly met the ca standard in mathematics;the number of homeless students in grade 3 who nearly met the ca standard in mathematics divided by the total number of homeless students in grade 3;the number of students in grade 3 who nearly met the ca standard in mathematics and are homeless divided by the total number of students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,fraction of students in grade 3 who are not economically disadvantaged and nearly met the ca math standard;percentage of students in grade 3 who are not economically disadvantaged and nearly met the ca math standard;proportion of students in grade 3 who are not economically disadvantaged and nearly met the ca math standard;share of students in grade 3 who are not economically disadvantaged and nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_NotFoster,the percentage of students in grade 3 who nearly met the ca_standard in mathematics and are not foster children;the proportion of students in grade 3 who nearly met the ca_standard in mathematics and are not foster children;the fraction of students in grade 3 who nearly met the ca_standard in mathematics and are not foster children;the fraction of students in grade 3 who nearly met the ca mathematics standard and are not in foster care -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade3_Mathematics_NotMigrant,"the percentage of students in grade 3 who nearly met the ca standard in mathematics and are not migrants;the proportion of students in grade 3 who nearly met the ca standard in mathematics and are not migrants;the number of students in grade 3 who nearly met the ca standard in mathematics and are not migrants, divided by the total number of students in grade 3;the fraction of students in grade 3 who nearly met the ca standard in mathematics and are not migrants" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts,the number of students in grade 4 who nearly met the ca standard in english language arts as a percentage of the total number of students in grade 4;percentage of 4th grade students who nearly met the ca english language arts standard;number of 4th grade students who nearly met the ca english language arts standard divided by the total number of 4th grade students;share of 4th grade students who nearly met the ca english language arts standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_HavingHome,the percentage of students in grade 4 who nearly met the ca standard in english language arts and have a home;the fraction of students in grade 4 who have a home and nearly met the ca standard in english language arts;the proportion of students in grade 4 who have a home and nearly met the ca standard in english language arts;the number of students in grade 4 who have a home and nearly met the ca standard in english language arts divided by the total number of students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_Homeless,"the percentage of students in grade 4 who are homeless and nearly met the ca_standard in english language arts;the number of students in grade 4 who are homeless and nearly met the ca_standard in english language arts, as a percentage of all students in grade 4;the proportion of students in grade 4 who are homeless and nearly met the ca_standard in english language arts;the number of students in grade 4 who are homeless and nearly met the ca_standard in english language arts, expressed as a fraction" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 4 english language arts who are not economically disadvantaged and nearly met the ca standard;percentage of students in grade 4 english language arts who are not economically disadvantaged and nearly met the ca standard;share of students in grade 4 english language arts who are not economically disadvantaged and nearly met the ca standard;proportion of students in grade 4 english language arts who are not economically disadvantaged and nearly met the ca standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotFoster,"the percentage of students in grade 4 who nearly met the ca_standard in english language arts and are not foster children;the proportion of students in grade 4 who nearly met the ca_standard in english language arts and are not foster children;the number of students in grade 4 who nearly met the ca_standard in english language arts and are not foster children, divided by the total number of students in grade 4;the fraction of students in grade 4 who nearly met the ca_standard in english language arts and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotMigrant,fraction of students in grade 4 who nearly met the ca standard in english language arts and are not migrants;number of students in grade 4 who nearly met the ca standard in english language arts and are not migrants divided by the total number of students in grade 4;percentage of students in grade 4 who nearly met the ca standard in english language arts and are not migrants;the proportion of students in grade 4 who nearly met the ca standard in english language arts and are not migrants -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics,"fraction of students in grade 4 who nearly met the ca standard in mathematics;percentage of students in grade 4 who nearly met the ca standard in mathematics;number of students in grade 4 who nearly met the ca standard in mathematics, as a fraction of the total number of students in grade 4;number of students in grade 4 who nearly met the ca standard in mathematics, as a percentage of the total number of students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_HavingHome,"the percentage of students in grade 4 who nearly met the ca standard in mathematics and have a home;the fraction of students in grade 4 who have a home and nearly met the ca standard in mathematics;the number of students in grade 4 who have a home and nearly met the ca standard in mathematics, divided by the total number of students in grade 4;the proportion of students in grade 4 who have a home and nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_Homeless,percentage of homeless students in grade 4 who nearly met the ca standard in mathematics;number of homeless students in grade 4 who nearly met the ca standard in mathematics divided by the total number of homeless students in grade 4;number of homeless students in grade 4 who nearly met the ca standard in mathematics expressed as a percentage of the total number of students in grade 4;number of homeless students in grade 4 who nearly met the ca standard in mathematics divided by the total number of students in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 4 who met or nearly met the ca mathematics standard and were not economically disadvantaged;the proportion of students in grade 4 who met or nearly met the ca mathematics standard and were not economically disadvantaged;the number of students in grade 4 who met or nearly met the ca mathematics standard and were not economically disadvantaged, divided by the total number of students in grade 4 who were not economically disadvantaged;the fraction of students in grade 4 who met or nearly met the ca mathematics standard and were not economically disadvantaged, out of all students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_NotFoster,"fraction of students in grade 4 who nearly met the ca math standard and are not in foster care;percentage of students in grade 4 who nearly met the ca math standard and are not in foster care;number of students in grade 4 who nearly met the ca math standard and are not in foster care, divided by the total number of students in grade 4;proportion of students in grade 4 who nearly met the ca math standard and are not in foster care" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade4_Mathematics_NotMigrant,"the percentage of students in grade 4 who nearly met the ca standard in mathematics and are not migrant;the proportion of students in grade 4 who nearly met the ca standard in mathematics and are not migrant;the number of students in grade 4 who nearly met the ca standard in mathematics and are not migrant, divided by the total number of students in grade 4;the fraction of students in grade 4 who nearly met the ca standard in mathematics and are not migrant" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts,percentage of 5th grade students who nearly met the ca english language arts standard;number of 5th grade students who nearly met the ca english language arts standard divided by the total number of 5th grade students;share of 5th grade students who nearly met the ca english language arts standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_HavingHome,"the number of students in grade 5 who nearly met the ca standard in english language arts, divided by the total number of students in grade 5 who have a home;the percentage of students in grade 5 who nearly met the ca standard in english language arts, out of all students in grade 5 who have a home;the proportion of students in grade 5 who nearly met the ca standard in english language arts, compared to all students in grade 5 who have a home;the fraction of students in grade 5 who nearly met the ca standard in english language arts, relative to all students in grade 5 who have a home" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_Homeless,fraction of students in grade 5 who are homeless and nearly met the ca standard in english language arts;number of students in grade 5 who are homeless and nearly met the ca standard in english language arts as a fraction of the total number of students in grade 5;percentage of students in grade 5 who are homeless and nearly met the ca standard in english language arts;proportion of students in grade 5 who are homeless and nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the number of students in grade 5 who are not economically disadvantaged and nearly met the ca_standard in english language arts, divided by the total number of students in grade 5 who are not economically disadvantaged;the number of students in grade 5 who nearly met the ca_standard in english language arts, divided by the total number of students in grade 5 who are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotFoster,the percentage of students in grade 5 who nearly met the english language arts standard and are not foster children;the number of students in grade 5 who nearly met the english language arts standard and are not foster children as a percentage of all students in grade 5;the fraction of students in grade 5 who nearly met the english language arts standard and are not foster children;the proportion of students in grade 5 who nearly met the english language arts standard and are not foster children -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotMigrant,fraction of students in grade 5 who nearly met the ca standard in english language arts and are not migrant;percentage of students in grade 5 who nearly met the ca standard in english language arts and are not migrant;number of students in grade 5 who nearly met the ca standard in english language arts and are not migrant as a percentage of the total number of students in grade 5;number of students in grade 5 who nearly met the ca standard in english language arts and are not migrant as a proportion of the total number of students in grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics,fraction of 5th grade students who nearly met the ca mathematics standard;percentage of 5th grade students who nearly met the ca mathematics standard;number of 5th grade students who nearly met the ca mathematics standard divided by the total number of 5th grade students;proportion of 5th grade students who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_HavingHome,"the percentage of students in grade 5 who nearly met the ca_standard in mathematics and have a home;the proportion of students in grade 5 who nearly met the ca_standard in mathematics and have a home;the number of students in grade 5 who nearly met the ca_standard in mathematics and have a home, divided by the total number of students in grade 5;the fraction of students in grade 5 who nearly met the ca_standard in mathematics and have a home" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_Homeless,"the percentage of homeless students in grade 5 who nearly met the ca standard in mathematics;the proportion of homeless students in grade 5 who nearly met the ca standard in mathematics;the number of homeless students in grade 5 who nearly met the ca standard in mathematics, divided by the total number of homeless students in grade 5;the number of homeless students in grade 5 who nearly met the ca standard in mathematics, expressed as a percentage of the total number of homeless students in grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,fraction of students in grade 5 who are not economically disadvantaged and nearly met the ca math standard;percentage of students in grade 5 who are not economically disadvantaged and nearly met the ca math standard;proportion of students in grade 5 who are not economically disadvantaged and nearly met the ca math standard;share of students in grade 5 who are not economically disadvantaged and nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_NotFoster,fraction of students in grade 5 who nearly met the ca standard in mathematics and are not foster children;percentage of students in grade 5 who nearly met the ca standard in mathematics and are not foster children;number of students in grade 5 who nearly met the ca standard in mathematics and are not foster children divided by the total number of students in grade 5;proportion of students in grade 5 who nearly met the ca standard in mathematics and are not foster children -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade5_Mathematics_NotMigrant,fraction of 5th grade students who nearly met the ca math standard who are not migrants;percentage of 5th grade students who nearly met the ca math standard who are not migrants;number of 5th grade students who nearly met the ca math standard who are not migrants divided by the total number of 5th grade students who are not migrants;proportion of 5th grade students who nearly met the ca math standard who are not migrants -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 who nearly met the ca english language arts standard divided by the total number of students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_HavingHome,fraction of students in grade 6 english language arts who nearly met the ca standard and have a home;percent of students in grade 6 english language arts who nearly met the ca standard and have a home;percentage of students in grade 6 english language arts who nearly met the ca standard and have a home;number of students in grade 6 english language arts who nearly met the ca standard and have a home as a percentage of the total number of students in grade 6 english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_Homeless,fraction of students in grade 6 who are homeless and nearly met the ca_standard in english language arts;number of students in grade 6 who are homeless and nearly met the ca_standard in english language arts;percentage of students in grade 6 who are homeless and nearly met the ca_standard in english language arts;proportion of students in grade 6 who are homeless and nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 6 who are not economically disadvantaged and nearly met the ca standard in english language arts;percentage of students in grade 6 who are not economically disadvantaged and nearly met the ca standard in english language arts;share of students in grade 6 who are not economically disadvantaged and nearly met the ca standard in english language arts;number of students in grade 6 who are not economically disadvantaged and nearly met the ca standard in english language arts divided by the total number of students in grade 6 who are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotFoster,"the percentage of students in grade 6 who nearly met the ca_standard in english language arts and are not foster children;the proportion of students in grade 6 who nearly met the ca_standard in english language arts and are not foster children;the number of students in grade 6 who nearly met the ca_standard in english language arts and are not foster children, divided by the total number of students in grade 6;the fraction of students in grade 6 who nearly met the ca_standard in english language arts and are not foster children, out of all students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotMigrant,the fraction of students in grade 6 who are not migrants and nearly met the ca english language arts standard;the percentage of students in grade 6 who are not migrants and nearly met the ca english language arts standard;the proportion of students in grade 6 who are not migrants and nearly met the ca english language arts standard;the number of students in grade 6 who are not migrants and nearly met the ca english language arts standard divided by the total number of students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics,fraction of 6th grade students who nearly met the ca math standard;percentage of 6th grade students who nearly met the ca math standard;number of 6th grade students who nearly met the ca math standard divided by the total number of 6th grade students;proportion of 6th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_HavingHome,percentage of students in grade 6 who nearly met the ca mathematics standard and have a home;fraction of students in grade 6 who have a home and nearly met the ca mathematics standard;number of students in grade 6 who have a home and nearly met the ca mathematics standard divided by the total number of students in grade 6;fraction of students in grade 6 who have a home and nearly met the ca mathematics standard out of all students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_Homeless,"fraction of homeless students in grade 6 who nearly met the ca math standard;fraction of students in grade 6 who are homeless and nearly met the ca math standard;fraction of students in grade 6 who nearly met the ca math standard, out of those who are homeless;number of homeless students in grade 6 who nearly met the ca math standard divided by the total number of homeless students in grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 6 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the proportion of students in grade 6 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the number of students in grade 6 who are not economically disadvantaged and nearly met the ca_standard in mathematics, divided by the total number of students in grade 6 who are not economically disadvantaged;the number of students in grade 6 who nearly met the ca_standard in mathematics, divided by the total number of students in grade 6 who are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_NotFoster,"the percentage of students in grade 6 who nearly met the ca_standard in mathematics and are not foster children;the fraction of students in grade 6 who are not foster children and nearly met the ca_standard in mathematics;the number of students in grade 6 who are not foster children and nearly met the ca_standard in mathematics, divided by the total number of students in grade 6;the proportion of students in grade 6 who are not foster children and nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade6_Mathematics_NotMigrant,the percentage of students in grade 6 who nearly met the ca standard in mathematics and are not migrants;the proportion of students in grade 6 who nearly met the ca standard in mathematics and are not migrants;the number of students in grade 6 who nearly met the ca standard in mathematics and are not migrants divided by the total number of students in grade 6;the fraction of students in grade 6 who nearly met the ca standard in mathematics and are not migrants -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts,percentage of 7th grade students who nearly met the ca standard in english language arts;share of 7th grade students who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_HavingHome,"the percentage of students in grade 7 who nearly met the ca_standard in english language arts and have a home;the fraction of students in grade 7 who nearly met the ca_standard in english language arts and have a home;the proportion of students in grade 7 who nearly met the ca_standard in english language arts and have a home;the number of students in grade 7 who nearly met the ca_standard in english language arts and have a home, divided by the total number of students in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_Homeless,fraction of students in grade 7 who are homeless and nearly met the ca standard in english language arts;number of students in grade 7 who are homeless and nearly met the ca standard in english language arts divided by the total number of students in grade 7;number of students in grade 7 who are homeless and nearly met the ca standard in english language arts expressed as a percentage of the total number of students in grade 7;number of students in grade 7 who are homeless and nearly met the ca standard in english language arts as a proportion of the total number of students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts;percentage of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts;number of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of students in grade 7 who are not economically disadvantaged;number of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in english language arts as a percentage of the total number of students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotFoster,"the percentage of students in grade 7 who nearly met the ca standard in english language arts and are not foster children;the number of students in grade 7 who nearly met the ca standard in english language arts and are not foster children, divided by the total number of students in grade 7;the proportion of students in grade 7 who nearly met the ca standard in english language arts and are not foster children;the fraction of students in grade 7 who nearly met the ca standard in english language arts and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotMigrant,"the percentage of students in grade 7 who nearly met the ca standard in english language arts and are not migrant;the proportion of students in grade 7 who nearly met the ca standard in english language arts and are not migrant;the number of students in grade 7 who nearly met the ca standard in english language arts and are not migrant, divided by the total number of students in grade 7;the fraction of students in grade 7 who nearly met the ca standard in english language arts and are not migrant" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics,fraction of students in grade 7 who nearly met the ca math standard;percentage of students in grade 7 who nearly met the ca math standard;number of students in grade 7 who nearly met the ca math standard divided by the total number of students in grade 7;proportion of students in grade 7 who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_HavingHome,"the percentage of students in grade 7 who have met the ca_standard nearly in mathematics and have a home;the number of students in grade 7 who have met the ca_standard nearly in mathematics and have a home, divided by the total number of students in grade 7;the proportion of students in grade 7 who have met the ca_standard nearly in mathematics and have a home;the fraction of students in grade 7 who have met the ca_standard nearly in mathematics and have a home" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_Homeless,the percentage of students in grade 7 who are homeless and nearly met the ca standard in mathematics;the proportion of homeless students in grade 7 who nearly met the ca standard in mathematics;the number of homeless students in grade 7 who nearly met the ca standard in mathematics divided by the total number of homeless students in grade 7;the number of students in grade 7 who nearly met the ca standard in mathematics and are homeless divided by the total number of students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the proportion of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the number of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in mathematics, divided by the total number of students in grade 7 who are not economically disadvantaged;the number of students in grade 7 who are not economically disadvantaged and nearly met the ca_standard in mathematics, expressed as a percentage of the total number of students in grade 7 who are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_NotFoster,"the percentage of students in grade 7 who nearly met the ca_standard in mathematics and are not foster children;the proportion of students in grade 7 who nearly met the ca_standard in mathematics and are not foster children;the number of students in grade 7 who nearly met the ca_standard in mathematics and are not foster children, divided by the total number of students in grade 7;the fraction of students in grade 7 who nearly met the ca_standard in mathematics and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade7_Mathematics_NotMigrant,"fraction of students in grade 7 who nearly met the ca standard in mathematics and are not migrants;percentage of students in grade 7 who nearly met the ca standard in mathematics and are not migrants;number of students in grade 7 who nearly met the ca standard in mathematics and are not migrants, as a percentage of the total number of students in grade 7;proportion of students in grade 7 who nearly met the ca standard in mathematics and are not migrants" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts,"the percentage of students in grade 8 who nearly met the ca english language arts standard;the share of students in grade 8 who nearly met the ca english language arts standard;the number of students in grade 8 who nearly met the ca english language arts standard, divided by the total number of students in grade 8;percentage of 8th grade students who nearly met the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_HavingHome,"fraction of students in grade 8 english language arts who nearly met the ca standard and have a home;fraction of students in grade 8 english language arts who have a home and nearly met the ca standard;fraction of students in grade 8 english language arts who nearly met the ca standard and have a home, as a fraction of the total number of students in grade 8 english language arts;fraction of students in grade 8 english language arts who nearly met the ca standard and have a home, as a percentage" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_Homeless,fraction of students in grade 8 english language arts who are homeless and nearly met the ca standard;percentage of students in grade 8 english language arts who are homeless and nearly met the ca standard;number of students in grade 8 english language arts who are homeless and nearly met the ca standard divided by the total number of students in grade 8 english language arts;number of students in grade 8 english language arts who are homeless and nearly met the ca standard expressed as a percentage of the total number of students in grade 8 english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of students in grade 8 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of students in grade 8 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the number of students in grade 8 who nearly met the ca_standard in english language arts, divided by the total number of students in grade 8 who are not economically disadvantaged;the percentage of students in grade 8 who nearly met the ca_standard in english language arts, out of all students in grade 8 who are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotFoster,"the fraction of students in grade 8 who nearly met the ca_standard in english language arts and are not foster children;the percentage of students in grade 8 who nearly met the ca_standard in english language arts and are not foster children;the number of students in grade 8 who nearly met the ca_standard in english language arts and are not foster children, divided by the total number of students in grade 8;the proportion of students in grade 8 who nearly met the ca_standard in english language arts and are not foster children" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotMigrant,fraction of students in grade 8 who nearly met the ca standard in english language arts and are not migrants;percentage of students in grade 8 who nearly met the ca standard in english language arts and are not migrants;number of students in grade 8 who nearly met the ca standard in english language arts and are not migrants divided by the total number of students in grade 8;number of students in grade 8 who nearly met the ca standard in english language arts and are not migrants as a percentage of the total number of students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics,fraction of students in grade 8 who nearly met the ca math standard;percentage of students in grade 8 who nearly met the ca math standard;number of students in grade 8 who nearly met the ca math standard as a percentage of the total number of students in grade 8;percent of students in grade 8 who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_HavingHome,"the percentage of students in grade 8 who nearly met the ca standard in mathematics and have a home;the fraction of students in grade 8 who have a home and nearly met the ca standard in mathematics;the number of students in grade 8 who nearly met the ca standard in mathematics and have a home, divided by the total number of students in grade 8;the proportion of students in grade 8 who have a home and nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_Homeless,fraction of students in grade 8 who are homeless and nearly met the ca math standard;percentage of homeless students in grade 8 who nearly met the ca math standard;number of homeless students in grade 8 who nearly met the ca math standard divided by the total number of homeless students in grade 8;number of students in grade 8 who nearly met the ca math standard and are homeless divided by the total number of students in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in grade 8 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the proportion of students in grade 8 who are not economically disadvantaged and nearly met the ca_standard in mathematics;the number of students in grade 8 who are not economically disadvantaged and nearly met the ca_standard in mathematics, expressed as a percentage of the total number of students in grade 8;the percentage of students in grade 8 who are not economically disadvantaged and nearly met the ca mathematics standard" -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_NotFoster,fraction of students in grade 8 who nearly met the ca standard in mathematics and are not in foster care;percentage of students in grade 8 who nearly met the ca standard in mathematics and are not in foster care;number of students in grade 8 who nearly met the ca standard in mathematics and are not in foster care divided by the total number of students in grade 8;proportion of students in grade 8 who nearly met the ca standard in mathematics and are not in foster care -Percent_CA_StandardNearlyMet_In_Count_Student_SchoolGrade8_Mathematics_NotMigrant,"fraction of students in grade 8 who nearly met the ca mathematics standard, not including migrant students;percentage of students in grade 8 who nearly met the ca mathematics standard, not including migrant students;number of students in grade 8 who nearly met the ca mathematics standard, not including migrant students, as a proportion of the total number of students in grade 8;proportion of students in grade 8 who nearly met the ca mathematics standard, not including migrant students, out of all students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts,"fraction of students in 11th grade english language arts who are two or more races and nearly met the ca standard;percentage of students in 11th grade english language arts who are two or more races and nearly met the ca standard;number of students in 11th grade english language arts who are two or more races and nearly met the ca standard, divided by the total number of students in 11th grade english language arts who are two or more races;proportion of students in 11th grade english language arts who are two or more races and nearly met the ca standard" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"fraction of students in grade 11 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in english language arts;proportion of students in grade 11 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in english language arts;the fraction of students who are not economically disadvantaged and who are two or more races, in school grade 11, who nearly met the ca_standard in english language arts;the percentage of students who are not economically disadvantaged and who are two or more races, in school grade 11, who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics,the percentage of students in grade 11 who are two or more races and nearly met the ca standard in mathematics;the proportion of students in grade 11 who are two or more races and nearly met the ca standard in mathematics;the number of students in grade 11 who are two or more races and nearly met the ca standard in mathematics divided by the total number of students in grade 11 who are two or more races;the number of students in grade 11 who are two or more races and nearly met the ca standard in mathematics expressed as a percentage of the total number of students in grade 11 who are two or more races -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students who are two or more races, in grade 11, who nearly met the ca standard in mathematics and are not economically disadvantaged;the proportion of students who are two or more races, in grade 11, who nearly met the ca standard in mathematics and are not economically disadvantaged;the number of students who are two or more races, in grade 11, who nearly met the ca standard in mathematics and are not economically disadvantaged, divided by the total number of students who are two or more races, in grade 11;the fraction of students who are two or more races, in grade 11, who nearly met the ca standard in mathematics and are not economically disadvantaged, out of all students who are two or more races, in grade 11" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts,the percentage of students who are two or more races and in grade 13 who nearly met the ca standard in english language arts;the proportion of students who are two or more races and in grade 13 who nearly met the ca standard in english language arts;the number of students who are two or more races and in grade 13 who nearly met the ca standard in english language arts divided by the total number of students who are two or more races and in grade 13;the number of students who are two or more races and in grade 13 who nearly met the ca standard in english language arts expressed as a fraction of the total number of students who are two or more races and in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,the proportion of students who are not economically disadvantaged and who are two or more races and in school grade 13 and who nearly met the ca_standard in english language arts;the fraction of students who are not economically disadvantaged and who are two or more races and in school grade 13 and who nearly met the ca_standard in english language arts;the number of students who are not economically disadvantaged and who are two or more races and in school grade 13 and who nearly met the ca_standard in english language arts divided by the total number of students who are not economically disadvantaged and who are two or more races and in school grade 13;the number of students who are not economically disadvantaged and who are two or more races and in school grade 13 and who nearly met the ca_standard in english language arts expressed as a percentage of the total number of students who are not economically disadvantaged and who are two or more races and in school grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics,"the percentage of students who are two or more races and in grade 13 who nearly met the ca standard in mathematics;the proportion of students who are two or more races and in grade 13 who nearly met the ca standard in mathematics;the number of students who are two or more races and in grade 13 who nearly met the ca standard in mathematics, divided by the total number of students who are two or more races and in grade 13;the fraction of students who are two or more races and in grade 13 who nearly met the ca standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and who are two or more races, in school grade 13, who nearly met the ca_standard in mathematics, divided by the total number of students who are not economically disadvantaged and who are two or more races, in school grade 13;the fraction of students who are not economically disadvantaged and who are two or more races, in school grade 13, who nearly met the ca_standard in mathematics, out of all students who are not economically disadvantaged and who are two or more races, in school grade 13;the number of students who are not economically disadvantaged and who are two or more races, in school grade 13, who nearly met the ca_standard in mathematics, expressed as a percentage of all students who are not economically disadvantaged and who are two or more races, in school grade 13;the number of students who are not economically disadvantaged, are two or more races, are in school grade 13, and nearly met the ca_standard in mathematics divided by the total number of students who are not economically disadvantaged, are two or more races, are in school grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts,"the percentage of students of two or more races who nearly met the ca_standard in english language arts in school grade 3;the proportion of students of two or more races who nearly met the ca_standard in english language arts in school grade 3;the number of students of two or more races who nearly met the ca_standard in english language arts in school grade 3, divided by the total number of students of two or more races in school grade 3;the fraction of students of two or more races who nearly met the ca_standard in english language arts in school grade 3, out of all students of two or more races in school grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the fraction of students who are two or more races, in grade 3, in english language arts, and not economically disadvantaged, who nearly met the ca standard;the percentage of students who are two or more races, in grade 3, in english language arts, and not economically disadvantaged, who nearly met the ca standard;the proportion of students who are two or more races, in grade 3, in english language arts, and not economically disadvantaged, who nearly met the ca standard;the number of students who are two or more races, in grade 3, in english language arts, and not economically disadvantaged, who nearly met the ca standard, divided by the total number of students who are two or more races, in grade 3, in english language arts, and not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics,"fraction of students in grade 3 who are two or more races and nearly met the ca math standard;percentage of students in grade 3 who are two or more races and nearly met the ca math standard;number of students in grade 3 who are two or more races and nearly met the ca math standard, divided by the total number of students in grade 3 who are two or more races;the number of students in grade 3 who are two or more races and nearly met the ca math standard, expressed as a percentage of the total number of students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students in school grade 3 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in mathematics;the proportion of students in school grade 3 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in mathematics;the number of students in school grade 3 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in mathematics, divided by the total number of students in school grade 3 who are not economically disadvantaged and identify as two or more races;the fraction of students in school grade 3 who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in mathematics, out of all students in school grade 3 who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts,the percentage of students of two or more races in grade 4 who nearly met the ca standard in english language arts;the proportion of students of two or more races in grade 4 who nearly met the ca standard in english language arts;the number of students of two or more races in grade 4 who nearly met the ca standard in english language arts divided by the total number of students of two or more races in grade 4;the number of students of two or more races in grade 4 who nearly met the ca standard in english language arts expressed as a fraction of the total number of students of two or more races in grade 4 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the percentage of students who are two or more races and nearly met the ca_standard in english language arts in school grade 4, out of all students who are economically disadvantaged and nearly met the ca_standard in english language arts in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"fraction of students who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts in school grade 4;percentage of students who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts in school grade 4;proportion of students who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts in school grade 4;the percentage of students who are two or more races and who are in school grade 4 and who nearly met the ca_standard in english language arts, out of all students who are not economically disadvantaged and who are two or more races and who are in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics,"the percentage of students in school grade 4 who are two or more races and nearly met the ca_standard in mathematics;the proportion of students in school grade 4 who are two or more races and nearly met the ca_standard in mathematics;the number of students in school grade 4 who are two or more races and nearly met the ca_standard in mathematics, divided by the total number of students in school grade 4 who are two or more races;the number of students in school grade 4 who are two or more races and nearly met the ca_standard in mathematics, expressed as a percentage of the total number of students in school grade 4 who are two or more races" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students who are two or more races, in school grade 4, who nearly met the ca_standard in mathematics and are not economically disadvantaged;the proportion of students who are two or more races, in school grade 4, who nearly met the ca_standard in mathematics and are not economically disadvantaged;the number of students who are two or more races, in school grade 4, who nearly met the ca_standard in mathematics and are not economically disadvantaged, divided by the total number of students who are two or more races, in school grade 4, and are not economically disadvantaged;the fraction of students who are two or more races, in school grade 4, who nearly met the ca_standard in mathematics and are not economically disadvantaged, out of all students who are two or more races, in school grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts,"the percentage of students who are two or more races and nearly met the ca_standard in english language arts in school grade 5;the proportion of students who are two or more races and nearly met the ca_standard in english language arts in school grade 5;the number of students who are two or more races and nearly met the ca_standard in english language arts in school grade 5, divided by the total number of students who are two or more races and took the ca_standard in english language arts in school grade 5;the fraction of students who are two or more races and nearly met the ca_standard in english language arts in school grade 5, out of all students who are two or more races and took the ca_standard in english language arts in school grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of students who are two or more races, in school grade 5, in english language arts, who nearly met the ca standard, and are not economically disadvantaged;the proportion of students who are two or more races, in school grade 5, in english language arts, who nearly met the ca standard, and are not economically disadvantaged;the percent of students who are two or more races, in school grade 5, in english language arts, who nearly met the ca standard, and are not economically disadvantaged, out of all students who are two or more races, in school grade 5, in english language arts;fraction of students in school grade 5 who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics,"the percentage of students who are two or more races and in school grade 5 who nearly met the ca_standard in mathematics;the proportion of students who are two or more races and in school grade 5 who nearly met the ca_standard in mathematics;the number of students who are two or more races and in school grade 5 who nearly met the ca_standard in mathematics, divided by the total number of students who are two or more races and in school grade 5;the fraction of students who are two or more races and in school grade 5 who nearly met the ca_standard in mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and who are two or more races, in school grade 5, who nearly met the ca_standard in mathematics, divided by the total number of students who are not economically disadvantaged and who are two or more races, in school grade 5;the number of students who are not economically disadvantaged and who are two or more races, in school grade 5, who nearly met the ca_standard in mathematics, expressed as a percentage of the total number of students who are not economically disadvantaged and who are two or more races, in school grade 5;1 the fraction of students who are two or more races, in school grade 5, who nearly met the ca_standard in mathematics and are not economically disadvantaged;2 the percentage of students who are two or more races, in school grade 5, who nearly met the ca_standard in mathematics and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts,the percentage of students of two or more races in grade 6 who nearly met the ca standard in english language arts;the proportion of students of two or more races in grade 6 who nearly met the ca standard in english language arts;the number of students of two or more races in grade 6 who nearly met the ca standard in english language arts divided by the total number of students of two or more races in grade 6;the number of students of two or more races in grade 6 who nearly met the ca standard in english language arts expressed as a fraction of the total number of students of two or more races in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"1 the percentage of students who are two or more races, in school grade 6, who nearly met the ca_standard in english language arts and are not economically disadvantaged;2 the proportion of students who are two or more races, in school grade 6, who nearly met the ca_standard in english language arts and are not economically disadvantaged;3 the fraction of students who are two or more races, in school grade 6, who nearly met the ca_standard in english language arts and are not economically disadvantaged;5 the number of students who are two or more races, in school grade 6, who nearly met the ca_standard in english language arts and are not economically disadvantaged, expressed as a percentage of the total number of students who are two or more races, in school grade 6" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics,the percentage of students who are two or more races and in school grade 6 who nearly met the ca_standard in mathematics;the proportion of students who are two or more races and in school grade 6 who nearly met the ca_standard in mathematics;the number of students who are two or more races and in school grade 6 who nearly met the ca_standard in mathematics divided by the total number of students who are two or more races and in school grade 6;the number of students who are two or more races and in school grade 6 who nearly met the ca_standard in mathematics expressed as a fraction of the total number of students who are two or more races and in school grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the proportion of students who are not economically disadvantaged and who are in school grade 6 and who nearly met the ca_standard in mathematics and who are of two or more races;the percentage of students who are two or more races, in school grade 6, who nearly met the ca_standard in mathematics and are not economically disadvantaged;the proportion of students who are two or more races, in school grade 6, who nearly met the ca_standard in mathematics and are not economically disadvantaged;the number of students who are two or more races, in school grade 6, who nearly met the ca_standard in mathematics and are not economically disadvantaged, divided by the total number of students who are two or more races, in school grade 6, who are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts,"the percentage of students who are two or more races and nearly met the ca_standard in english language arts in school grade 7;the proportion of students who are two or more races and nearly met the ca_standard in english language arts in school grade 7;the number of students who are two or more races and nearly met the ca_standard in english language arts in school grade 7, divided by the total number of students who are two or more races in school grade 7;the number of students who are two or more races and nearly met the ca_standard in english language arts in school grade 7, expressed as a fraction of the total number of students who are two or more races in school grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of students who are two or more races, in school grade 7, in english language arts, who nearly met the ca_standard, and who are not economically disadvantaged;the proportion of students who are two or more races, in school grade 7, in english language arts, who nearly met the ca_standard, and who are not economically disadvantaged;the percentage of students who are two or more races, in school grade 7, in english language arts, who nearly met the ca_standard, and who are not economically disadvantaged, out of all students;1 the fraction of students who are not economically disadvantaged and who nearly met the ca_standard in english language arts in school grade 7 and who are two or more races" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics,fraction of students in grade 7 who are two or more races and nearly met the ca standard in mathematics;number of students in grade 7 who are two or more races and nearly met the ca standard in mathematics divided by the total number of students in grade 7 who are two or more races;percentage of students in grade 7 who are two or more races and nearly met the ca standard in mathematics;proportion of students in grade 7 who are two or more races and nearly met the ca standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"fraction of students who are two or more races, in grade 7, in mathematics, and not economically disadvantaged who nearly met the ca standard;percentage of students who are two or more races, in grade 7, in mathematics, and not economically disadvantaged who nearly met the ca standard;proportion of students who are two or more races, in grade 7, in mathematics, and not economically disadvantaged who nearly met the ca standard;number of students who are two or more races, in grade 7, in mathematics, and not economically disadvantaged who nearly met the ca standard divided by the total number of students who are two or more races, in grade 7, in mathematics, and not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts,"the percentage of students in grade 8 who are two or more races and nearly met the ca_standard in english language arts;the proportion of students in grade 8 who are two or more races and nearly met the ca_standard in english language arts;the number of students in grade 8 who are two or more races and nearly met the ca_standard in english language arts, divided by the total number of students in grade 8 who are two or more races;the fraction of students in grade 8 who are two or more races and nearly met the ca_standard in english language arts, out of all students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,fraction of students who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts in grade 8;number of students who are not economically disadvantaged and identify as two or more races who nearly met the ca_standard in english language arts in grade 8 divided by the total number of students in grade 8;fraction of students who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in english language arts in grade 8;proportion of students who are not economically disadvantaged and identify as two or more races who nearly met the ca standard in english language arts in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics,"the percentage of students who are two or more races and nearly met the ca_standard in grade 8 mathematics;the proportion of students who are two or more races and nearly met the ca_standard in grade 8 mathematics;the number of students who are two or more races and nearly met the ca_standard in grade 8 mathematics, divided by the total number of students who are two or more races in grade 8 mathematics;the fraction of students who are two or more races and nearly met the ca_standard in grade 8 mathematics, out of all students who are two or more races in grade 8 mathematics" -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the percentage of students who are two or more races, in school grade 8, in mathematics, who nearly met the ca standard, and who are not economically disadvantaged;the proportion of students who are two or more races, in school grade 8, in mathematics, who nearly met the ca standard, and who are not economically disadvantaged;the fraction of students who are two or more races, in school grade 8, in mathematics, who nearly met the ca standard, out of all students who are two or more races, in school grade 8, in mathematics, and who are not economically disadvantaged;the number of students in grade 8 who are not economically disadvantaged and who identify as two or more races and who nearly met the ca standard in mathematics divided by the total number of students in grade 8 who are not economically disadvantaged and who identify as two or more races" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts,"the percentage of white students in 11th grade english language arts who nearly met the ca standard;the proportion of white students in 11th grade english language arts who nearly met the ca standard;the number of white students in 11th grade english language arts who nearly met the ca standard, divided by the total number of white students in 11th grade english language arts;the fraction of white students in 11th grade english language arts who nearly met the ca standard" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 11 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 11;the fraction of white, economically disadvantaged students in grade 11 who nearly met the ca_standard in english language arts;the percentage of white, economically disadvantaged students in grade 11 who nearly met the ca_standard in english language arts, expressed as a decimal" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of white students in grade 11 who nearly met the ca standard in english language arts and were not economically disadvantaged;the proportion of white students in grade 11 who nearly met the ca standard in english language arts and were not economically disadvantaged;the number of white students in grade 11 who nearly met the ca standard in english language arts and were not economically disadvantaged, divided by the total number of white students in grade 11;the fraction of white students in grade 11 who nearly met the ca standard in english language arts and were not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_Mathematics,fraction of white 11th grade students who nearly met the ca math standard;percentage of white 11th grade students who nearly met the ca math standard;number of white 11th grade students who nearly met the ca math standard divided by the total number of white 11th grade students;share of white 11th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,the percentage of white students in grade 11 who nearly met the ca standard in mathematics and are not economically disadvantaged;the proportion of white students in grade 11 who nearly met the ca standard in mathematics and are not economically disadvantaged;the number of white students in grade 11 who nearly met the ca standard in mathematics and are not economically disadvantaged divided by the total number of white students in grade 11;the fraction of white students in grade 11 who nearly met the ca standard in mathematics and are not economically disadvantaged -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts,the percentage of white students in grade 13 who nearly met the ca_standard in english language arts;the proportion of white students in grade 13 who nearly met the ca_standard in english language arts;the number of white students in grade 13 who nearly met the ca_standard in english language arts divided by the total number of white students in grade 13;the fraction of white students in grade 13 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 13 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 13;the fraction of white, economically disadvantaged students in grade 13 who nearly met the ca_standard in english language arts;the number of white, economically disadvantaged students in grade 13 who nearly met the ca_standard in english language arts, divided by the total number of white, economically disadvantaged students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,the percentage of white students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the proportion of white students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts;the number of white students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts divided by the total number of white students in grade 13;the number of white students in grade 13 who are not economically disadvantaged and nearly met the ca_standard in english language arts expressed as a percentage of the total number of white students in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_Mathematics,"the percentage of white students in grade 13 who nearly met the ca math standard;the proportion of white students in grade 13 who nearly met the ca math standard;the number of white students in grade 13 who nearly met the ca math standard, divided by the total number of white students in grade 13;the fraction of white students in grade 13 who nearly met the ca math standard" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the proportion of white students in grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged;the number of white students in grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged, divided by the total number of white students in grade 13;the fraction of white students in grade 13 who nearly met the ca_standard in mathematics and were not economically disadvantaged, out of all white students in grade 13" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts,the percentage of white students in grade 3 who nearly met the ca_standard in english language arts;the proportion of white students in grade 3 who nearly met the ca_standard in english language arts;the number of white students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of white students in grade 3;the number of white students in grade 3 who nearly met the ca_standard in english language arts as a percentage of the total number of white students in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged,"the fraction of white, economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts;the number of white, economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 3;fraction of white, economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts;number of white, economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of white, not economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts;the proportion of white, not economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts;the share of white, not economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts;the number of white, not economically disadvantaged students in grade 3 who nearly met the ca_standard in english language arts divided by the total number of white, not economically disadvantaged students in grade 3" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_Mathematics,the percentage of white students in grade 3 who nearly met the ca math standard;the proportion of white students in grade 3 who nearly met the ca math standard;the number of white students in grade 3 who nearly met the ca math standard divided by the total number of white students in grade 3;the fraction of white students in grade 3 who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 3 who nearly met the ca standard in mathematics and are not economically disadvantaged;the proportion of white students in grade 3 who nearly met the ca standard in mathematics and are not economically disadvantaged;the number of white students in grade 3 who nearly met the ca standard in mathematics and are not economically disadvantaged, divided by the total number of white students in grade 3;the fraction of white students in grade 3 who nearly met the ca standard in mathematics and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts,the percentage of white students in grade 4 who nearly met the ca_standard in english language arts;the fraction of white students in grade 4 who nearly met the ca_standard in english language arts;the number of white students in grade 4 who nearly met the ca_standard in english language arts divided by the total number of white students in grade 4;the proportion of white students in grade 4 who nearly met the ca_standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 4 who nearly met the ca_standard in english language arts, divided by the total number of white, economically disadvantaged students in grade 4;the fraction of white, economically disadvantaged students in grade 4 who nearly met the ca_standard in english language arts;the number of white students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, divided by the total number of white students in grade 4;the fraction of white students in grade 4 who nearly met the ca_standard in english language arts and are economically disadvantaged, out of all white students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of white students in grade 4 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the proportion of white students in grade 4 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the number of white students in grade 4 who nearly met the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of white students in grade 4;the fraction of white students in grade 4 who nearly met the ca_standard in english language arts and are not economically disadvantaged, out of all white students in grade 4" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_Mathematics,"fraction of white fourth-grade students who nearly met the ca math standard;percentage of white fourth-grade students who nearly met the ca math standard;number of white fourth-grade students who nearly met the ca math standard divided by the total number of white fourth-grade students;the number of white fourth-grade students who nearly met the ca math standard, expressed as a percentage of the total number of white fourth-grade students" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 4 who nearly met the ca standard in mathematics and are not economically disadvantaged;the proportion of white students in grade 4 who nearly met the ca standard in mathematics and are not economically disadvantaged;the number of white students in grade 4 who nearly met the ca standard in mathematics and are not economically disadvantaged, divided by the total number of white students in grade 4;the fraction of white students in grade 4 who nearly met the ca standard in mathematics and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts,fraction of white 5th graders who nearly met the ca standard in english language arts;percentage of white 5th graders who nearly met the ca standard in english language arts;number of white 5th graders who nearly met the ca standard in english language arts divided by the total number of white 5th graders;proportion of white 5th graders who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 5 who nearly met the ca standard in english language arts divided by the total number of white, economically disadvantaged students in grade 5;the number of white, economically disadvantaged students in grade 5 who nearly met the ca standard in english language arts expressed as a percentage of the total number of white, economically disadvantaged students in grade 5;the fraction of white, economically disadvantaged students in grade 5 who nearly met the ca standard in english language arts;the number of white students in grade 5 who are economically disadvantaged and nearly met the ca_standard in english language arts, divided by the total number of white students in grade 5" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of white students in grade 5 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the proportion of white students in grade 5 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the number of white students in grade 5 who nearly met the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of white students in grade 5;the share of white students in grade 5 who nearly met the ca_standard in english language arts and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_Mathematics,the percentage of white students in 5th grade who nearly met the ca_standard in mathematics;the proportion of white students in 5th grade who nearly met the ca_standard in mathematics;the number of white students in 5th grade who nearly met the ca_standard in mathematics divided by the total number of white students in 5th grade;the fraction of white students in 5th grade who nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of white, economically disadvantaged 5th grade students who nearly met the ca_standard in mathematics expressed as a fraction of the total number of white, economically disadvantaged 5th grade students" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"fraction of white, non-economically disadvantaged students in grade 5 who nearly met the ca math standard;percentage of white, non-economically disadvantaged students in grade 5 who nearly met the ca math standard;proportion of white, non-economically disadvantaged students in grade 5 who nearly met the ca math standard;share of white, non-economically disadvantaged students in grade 5 who nearly met the ca math standard" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts,the percentage of white students in grade 6 who nearly met the ca_standard in english language arts;the proportion of white students in grade 6 who nearly met the ca_standard in english language arts;the number of white students in grade 6 who nearly met the ca_standard in english language arts divided by the total number of white students in grade 6;the number of white students in grade 6 who nearly met the ca_standard in english language arts expressed as a fraction of the total number of white students in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white students in grade 6 who nearly met the ca standard in english language arts and are economically disadvantaged, divided by the total number of white students in grade 6;the number of white students in grade 6 who nearly met the ca standard in english language arts and are economically disadvantaged, expressed as a percentage of the total number of white students in grade 6;the number of white students in grade 6 who nearly met the ca standard in english language arts and are economically disadvantaged, expressed as a fraction of the total number of white students in grade 6;the fraction of white, economically disadvantaged students in grade 6 who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the fraction of white students in grade 6 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the percentage of white students in grade 6 who nearly met the ca_standard in english language arts and are not economically disadvantaged;the number of white students in grade 6 who nearly met the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of white students in grade 6;the proportion of white students in grade 6 who nearly met the ca_standard in english language arts and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_Mathematics,fraction of white 6th grade students who nearly met the ca math standard;percentage of white 6th grade students who nearly met the ca math standard;number of white 6th grade students who nearly met the ca math standard divided by the total number of white 6th grade students;proportion of white 6th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"sure here are 5 different ways of saying the sentence ""count of student: ca_standard nearly met, white, school grade 6, mathematics, economically disadvantaged (as fraction of count student white school grade 6 mathematics economically disadvantaged)"" in a colloquial way:" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 6 who nearly met the ca math standard and are not economically disadvantaged;the proportion of white students in grade 6 who nearly met the ca math standard and are not economically disadvantaged;the number of white students in grade 6 who nearly met the ca math standard and are not economically disadvantaged, divided by the total number of white students in grade 6;the share of white students in grade 6 who nearly met the ca math standard and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts,the percentage of white students in grade 7 who nearly met the ca standard in english language arts;the proportion of white students in grade 7 who nearly met the ca standard in english language arts;the number of white students in grade 7 who nearly met the ca standard in english language arts divided by the total number of white students in grade 7;the number of white students in grade 7 who nearly met the ca standard in english language arts as a percentage of the total number of white students in grade 7 -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged,"fraction of white, economically disadvantaged students in grade 7 who nearly met the ca_standard in english language arts;the number of white, economically disadvantaged students in grade 7 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 7;the fraction of white, economically disadvantaged students in grade 7 who nearly met the ca_standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of white students in grade 7 who nearly met the ca standard in english language arts and are not economically disadvantaged;the proportion of white students in grade 7 who nearly met the ca standard in english language arts and are not economically disadvantaged;the number of white students in grade 7 who nearly met the ca standard in english language arts and are not economically disadvantaged, divided by the total number of white students in grade 7;the ratio of white students in grade 7 who nearly met the ca standard in english language arts and are not economically disadvantaged to the total number of white students in grade 7" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_Mathematics,fraction of white 7th grade students who nearly met the ca math standard;percentage of white 7th grade students who nearly met the ca math standard;number of white 7th grade students who nearly met the ca math standard divided by the total number of white 7th grade students;percent of white 7th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 7 who nearly met the ca standard in mathematics and are not economically disadvantaged;the number of white students in grade 7 who nearly met the ca standard in mathematics and are not economically disadvantaged, divided by the total number of white students in grade 7;the proportion of white students in grade 7 who nearly met the ca standard in mathematics and are not economically disadvantaged;the share of white students in grade 7 who nearly met the ca standard in mathematics and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts,"the fraction of white students in grade 8 who nearly met the ca standard in english language arts;the percentage of white students in grade 8 who nearly met the ca standard in english language arts;the number of white students in grade 8 who nearly met the ca standard in english language arts, divided by the total number of white students in grade 8;the proportion of white students in grade 8 who nearly met the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 8 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 8;the fraction of white, economically disadvantaged students in grade 8 who nearly met the ca_standard in english language arts;fraction of white, economically disadvantaged students in grade 8 who nearly met the ca_standard in english language arts;number of white, economically disadvantaged students in grade 8 who nearly met the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 8" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"fraction of white, non-economically disadvantaged students in grade 8 who nearly met the ca standard in english language arts;percentage of white, non-economically disadvantaged students in grade 8 who nearly met the ca standard in english language arts;number of white, non-economically disadvantaged students in grade 8 who nearly met the ca standard in english language arts divided by the total number of white, non-economically disadvantaged students in grade 8;share of white, non-economically disadvantaged students in grade 8 who nearly met the ca standard in english language arts" -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_Mathematics,fraction of white 8th grade students who nearly met the ca math standard;percentage of white 8th grade students who nearly met the ca math standard;number of white 8th grade students who nearly met the ca math standard divided by the total number of white 8th grade students;share of white 8th grade students who nearly met the ca math standard -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNearlyMet_In_Count_Student_White_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"the percentage of white students in grade 8 who nearly met the ca mathematics standard and are not economically disadvantaged;the proportion of white students in grade 8 who nearly met the ca mathematics standard and are not economically disadvantaged;the number of white students in grade 8 who nearly met the ca mathematics standard and are not economically disadvantaged, divided by the total number of white students in grade 8;the fraction of white students in grade 8 who nearly met the ca mathematics standard and are not economically disadvantaged" -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade11_EnglishLanguageArts,the fraction of students with disabilities in grade 11 who nearly met the ca standard in english language arts;the percentage of students with disabilities in grade 11 who nearly met the ca standard in english language arts;the proportion of students with disabilities in grade 11 who nearly met the ca standard in english language arts;the number of students with disabilities in grade 11 who nearly met the ca standard in english language arts divided by the total number of students with disabilities in grade 11 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade11_Mathematics,the percentage of students with disabilities in grade 11 who nearly met the ca mathematics standard;the proportion of students with disabilities in grade 11 who nearly met the ca mathematics standard;the number of students with disabilities in grade 11 who nearly met the ca mathematics standard divided by the total number of students with disabilities in grade 11;the number of students with disabilities in grade 11 who nearly met the ca mathematics standard expressed as a fraction -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade13_EnglishLanguageArts,fraction of students with disabilities who nearly met the ca_standard in english language arts in grade 13;percentage of students with disabilities who nearly met the ca_standard in english language arts in grade 13;number of students with disabilities who nearly met the ca_standard in english language arts in grade 13 divided by the total number of students with disabilities in grade 13;number of students with disabilities who nearly met the ca_standard in english language arts in grade 13 expressed as a percentage of the total number of students with disabilities in grade 13 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade13_Mathematics,fraction of students with disabilities in grade 13 who nearly met the ca standard in mathematics;percentage of students with disabilities in grade 13 who nearly met the ca standard in mathematics;number of students with disabilities in grade 13 who nearly met the ca standard in mathematics divided by the total number of students with disabilities in grade 13;proportion of students with disabilities in grade 13 who nearly met the ca standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade3_EnglishLanguageArts,fraction of students with disabilities who nearly met the ca_standard in english language arts in grade 3;percentage of students with disabilities who nearly met the ca_standard in english language arts in grade 3;number of students with disabilities who nearly met the ca_standard in english language arts in grade 3 divided by the total number of students with disabilities in grade 3;number of students with disabilities who nearly met the ca_standard in english language arts in grade 3 expressed as a percentage of the total number of students with disabilities in grade 3 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade3_Mathematics,fraction of students with disabilities in grade 3 who nearly met the ca mathematics standard;percentage of students with disabilities in grade 3 who nearly met the ca mathematics standard;number of students with disabilities in grade 3 who nearly met the ca mathematics standard divided by the total number of students with disabilities in grade 3;proportion of students with disabilities in grade 3 who nearly met the ca mathematics standard -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade4_EnglishLanguageArts,fraction of students with disabilities in grade 4 who nearly met the ca standard in english language arts;number of students with disabilities in grade 4 who nearly met the ca standard in english language arts divided by the total number of students with disabilities in grade 4;percentage of students with disabilities in grade 4 who nearly met the ca standard in english language arts;share of students with disabilities in grade 4 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade4_Mathematics,fraction of students with disabilities in grade 4 who nearly met the ca_standard in mathematics;number of students with disabilities in grade 4 who nearly met the ca_standard in mathematics divided by the total number of students with disabilities in grade 4;percentage of students with disabilities in grade 4 who nearly met the ca_standard in mathematics;percent of students with disabilities in grade 4 who nearly met the ca_standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade5_EnglishLanguageArts,fraction of students with disabilities in grade 5 who nearly met the ca standard in english language arts;number of students with disabilities in grade 5 who nearly met the ca standard in english language arts divided by the total number of students with disabilities in grade 5;percentage of students with disabilities in grade 5 who nearly met the ca standard in english language arts;proportion of students with disabilities in grade 5 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade5_Mathematics,the fraction of students with disabilities who nearly met the ca_standard in mathematics in school grade 5;the percentage of students with disabilities who nearly met the ca_standard in mathematics in school grade 5;the proportion of students with disabilities who nearly met the ca_standard in mathematics in school grade 5;the number of students with disabilities who nearly met the ca_standard in mathematics in school grade 5 divided by the total number of students with disabilities in school grade 5 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade6_EnglishLanguageArts,fraction of students with disabilities in grade 6 who nearly met the ca standard in english language arts;number of students with disabilities in grade 6 who nearly met the ca standard in english language arts as a fraction of the total number of students with disabilities in grade 6;percentage of students with disabilities in grade 6 who nearly met the ca standard in english language arts;percent of students with disabilities in grade 6 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade6_Mathematics,the percentage of students with disabilities in grade 6 who nearly met the ca mathematics standard;the proportion of students with disabilities in grade 6 who nearly met the ca mathematics standard;the number of students with disabilities in grade 6 who nearly met the ca mathematics standard divided by the total number of students with disabilities in grade 6;the number of students with disabilities in grade 6 who nearly met the ca mathematics standard expressed as a percentage of the total number of students with disabilities in grade 6 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade7_EnglishLanguageArts,fraction of students with disabilities in grade 7 who nearly met the ca standard in english language arts;number of students with disabilities in grade 7 who nearly met the ca standard in english language arts as a fraction of the total number of students with disabilities in grade 7;percentage of students with disabilities in grade 7 who nearly met the ca standard in english language arts;share of students with disabilities in grade 7 who nearly met the ca standard in english language arts -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade7_Mathematics,fraction of students with disabilities in grade 7 who nearly met the ca standard in mathematics;percentage of students with disabilities in grade 7 who nearly met the ca standard in mathematics;number of students with disabilities in grade 7 who nearly met the ca standard in mathematics divided by the total number of students with disabilities in grade 7;proportion of students with disabilities in grade 7 who nearly met the ca standard in mathematics -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade8_EnglishLanguageArts,fraction of students with disabilities in grade 8 who nearly met the ca standard in english language arts;percentage of students with disabilities in grade 8 who nearly met the ca standard in english language arts;number of students with disabilities in grade 8 who nearly met the ca standard in english language arts divided by the total number of students with disabilities in grade 8;number of students with disabilities in grade 8 who nearly met the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 8 -Percent_CA_StandardNearlyMet_In_Count_Student_WithDisability_SchoolGrade8_Mathematics,fraction of students with disabilities in grade 8 who nearly met the ca math standard;number of students with disabilities in grade 8 who nearly met the ca math standard as a fraction of the total number of students with disabilities in grade 8;percentage of students with disabilities in grade 8 who nearly met the ca math standard;proportion of students with disabilities in grade 8 who nearly met the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_EnglishLanguageArts,"the number of american indian or alaska native 11th grade students who did not meet the california standard in english language arts divided by the total number of american indian or alaska native 11th grade students;number of american indian or alaska native 11th graders who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 11th graders;the number of american indian or alaska native students who did not meet the ca standard in english language arts in grade 11, divided by the total number of american indian or alaska native students in grade 11;number of american indian or alaska native 11th graders who did not meet the ca english language arts standard divided by the total number of american indian or alaska native 11th graders" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11_Mathematics,what is the number of american indian or alaska native 11th grade students who did not meet the ca mathematics standard divided by the total number of american indian or alaska native 11th grade students?;the number of american indian or alaska native 11th grade students who did not meet the ca mathematics standard divided by the total number of american indian or alaska native 11th grade students;the number of american indian or alaska native 11th grade students who did not meet the ca mathematics standard as a percentage of the total number of american indian or alaska native 11th grade students;percentage of american indian or alaska native 11th graders who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts,"sure, here are five different ways of saying the sentence ""count of student: ca_standard not met, american indian or alaska native, school grade 13, english language arts (as fraction of count student american indian or alaska native school grade 13 english language arts)"" in a colloquial way:;what number of american indian or alaska native students in grade 13 did not meet the ca_standard in english language arts out of all american indian or alaska native students in grade 13?;number of american indian or alaska native students in grade 13 who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 13;number of american indian or alaska native 13th grade students who did not meet the ca english language arts standard divided by the total number of american indian or alaska native 13th grade students" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,the number of american indian or alaska native students in grade 13 who are economically disadvantaged and did not meet the ca_standard in english language arts as a fraction of the total number of american indian or alaska native students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the percentage of american indian or alaska native students in school grade 13 who did not meet the ca_standard in english language arts, out of all american indian or alaska native students in school grade 13 who were not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics,number of american indian or alaska native 13th grade students who did not meet the ca mathematics standard divided by the total number of american indian or alaska native 13th grade students;number of american indian or alaska native 13th grade students who did not meet the ca math standard divided by the total number of american indian or alaska native 13th grade students -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_EnglishLanguageArts,number of american indian or alaska native students in grade 3 who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 3;number of american indian or alaska native 3rd graders who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 3rd graders;number of american indian or alaska native 3rd graders who did not meet the ca english language arts standard divided by the total number of american indian or alaska native 3rd graders -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3_Mathematics,number of american indian or alaska native 3rd grade students who did not meet the ca math standard divided by the total number of american indian or alaska native 3rd grade students;number of american indian or alaska native 3rd grade students who did not meet the ca standard in mathematics divided by the total number of american indian or alaska native 3rd grade students -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts,"the number of american indian or alaska native students in grade 4 who did not meet the ca_standard in english language arts, divided by the total number of american indian or alaska native students in grade 4;number of american indian or alaska native students in grade 4 who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 4;the number of american indian or alaska native students who did not meet the ca standard in english language arts in grade 4 as a percentage of the total number of american indian or alaska native students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in school grade 4 who did not meet the ca_standard in english language arts and are economically disadvantaged, divided by the total number of american indian or alaska native students in school grade 4;the fraction of american indian or alaska native students in school grade 4 who did not meet the ca_standard in english language arts and are economically disadvantaged, out of all american indian or alaska native students in school grade 4;the percentage of american indian or alaska native students in school grade 4 who did not meet the ca_standard in english language arts and are economically disadvantaged, out of all students in school grade 4" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics,percentage of american indian or alaska native 4th grade students who did not meet the ca math standard;number of american indian or alaska native 4th grade students who did not meet the ca math standard divided by the total number of american indian or alaska native 4th grade students;percent of american indian or alaska native 4th grade students who did not meet the ca math standard out of all american indian or alaska native 4th grade students;what percentage of american indian or alaska native students in grade 4 did not meet the ca standard in mathematics -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 4 who did not meet the ca math standard and are economically disadvantaged, divided by the total number of american indian or alaska native students in grade 4;the fraction of american indian or alaska native students in grade 4 who did not meet the ca math standard and are economically disadvantaged, out of all american indian or alaska native students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts,"the number of american indian or alaska native students in grade 5 who did not meet the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 5;the percentage of american indian or alaska native students in grade 5 who did not meet the ca_standard in english language arts, expressed as a fraction;number of american indian or alaska native 5th graders who did not meet the ca english language arts standard divided by the total number of american indian or alaska native 5th graders;number of american indian or alaska native 5th graders who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 5th graders" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"percentage of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca_standard in english language arts;number of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 5;the percentage of american indian or alaska native students in 5th grade who are economically disadvantaged and did not meet the ca_standard in english language arts;the number of american indian or alaska native 5th grade students who are economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of american indian or alaska native 5th grade students" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics,"the number of american indian or alaska native students in grade 5 who did not meet the california standard in mathematics, divided by the total number of american indian or alaska native students in grade 5;number of american indian or alaska native 5th grade students who did not meet the ca standard in mathematics divided by the total number of american indian or alaska native 5th grade students" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of american indian or alaska native students in grade 5;the number of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca math standard, divided by the total number of american indian or alaska native students in grade 5;the fraction of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca math standard, out of all american indian or alaska native students in grade 5;the percentage of american indian or alaska native students in grade 5 who are economically disadvantaged and did not meet the ca math standard, out of all students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts,"the number of american indian or alaska native students who did not meet the ca_standard in english language arts in grade 6, divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native 6th graders who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 6th graders" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,the number of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca_standard in english language arts divided by the total number of american indian or alaska native students in grade 6;the fraction of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca_standard in english language arts out of all american indian or alaska native students in grade 6;the percentage of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca_standard in english language arts out of 100 american indian or alaska native students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics,"number of american indian or alaska native 6th graders who did not meet the ca math standard divided by the total number of american indian or alaska native 6th graders;the number of american indian or alaska native students in grade 6 who did not meet the ca math standard, divided by the total number of american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who did not meet the ca math standard, expressed as a percentage of the total number of american indian or alaska native students in grade 6;the number of american indian or alaska native students in grade 6 who did not meet the ca math standard, expressed as a proportion of the total number of american indian or alaska native students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,the number of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca math standard divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of american indian or alaska native students in grade 6;number of american indian or alaska native students in grade 6 who are economically disadvantaged and did not meet the ca mathematics standard divided by the total number of american indian or alaska native students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts,number of american indian or alaska native 7th graders who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 7th graders;the number of american indian or alaska native students in grade 7 who did not meet the ca_standard in english language arts as a fraction of the total number of american indian or alaska native students in grade 7;the percentage of american indian or alaska native students in grade 7 who did not meet the ca_standard in english language arts compared to the percentage of all students in grade 7 who did not meet the ca_standard in english language arts;number of american indian or alaska native 7th grade students who did not meet the ca standard in english language arts divided by the total number of american indian or alaska native 7th grade students -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 7 who are economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of american indian or alaska native students in grade 7;the number of american indian or alaska native students in school grade 7 who are economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of american indian or alaska native students in school grade 7;the fraction of american indian or alaska native students in school grade 7 who are economically disadvantaged and did not meet the ca_standard in english language arts, out of all american indian or alaska native students in school grade 7" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics,"percentage of american indian or alaska native 7th grade students who did not meet the ca math standard;number of american indian or alaska native 7th grade students who did not meet the ca math standard divided by the total number of american indian or alaska native 7th grade students;the number of american indian or alaska native students who did not meet the ca_standard in mathematics in grade 7, divided by the total number of american indian or alaska native students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7_Mathematics_EconomicallyDisadvantaged,"number of american indian or alaska native students in grade 7 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of american indian or alaska native students in grade 7;the percentage of american indian or alaska native students in school grade 7 who were economically disadvantaged and did not meet the ca_standard in mathematics, as a percentage of all american indian or alaska native students in school grade 7;number of american indian or alaska native students in grade 7 who are economically disadvantaged and did not meet the ca math standard divided by the total number of american indian or alaska native students in grade 7;number of american indian or alaska native students in grade 7 who are economically disadvantaged and did not meet the ca math standard expressed as a percentage of the total number of american indian or alaska native students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts,"the number of american indian or alaska native students who did not meet the ca_standard in english language arts in grade 8, as a fraction of the total number of american indian or alaska native students in grade 8;the percentage of american indian or alaska native students who did not meet the ca_standard in english language arts in grade 8, out of all american indian or alaska native students in grade 8;the number of american indian or alaska native students who did not meet the ca_standard in english language arts in grade 8, divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students who did not meet the ca_standard in english language arts in grade 8, expressed as a percentage of the total number of american indian or alaska native students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of american indian or alaska native students in grade 8 who did not meet the ca_standard in english language arts and were economically disadvantaged, divided by the total number of american indian or alaska native students in grade 8;the fraction of american indian or alaska native students in grade 8 who did not meet the ca_standard in english language arts and were economically disadvantaged, out of all american indian or alaska native students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics,"number of american indian or alaska native 8th grade students who did not meet the ca standard in mathematics divided by the total number of american indian or alaska native 8th grade students;the number of american indian or alaska native students in grade 8 who did not meet the ca_standard in mathematics, divided by the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who did not meet the ca_standard in mathematics, expressed as a percentage of the total number of american indian or alaska native students in grade 8;the number of american indian or alaska native students in grade 8 who did not meet the ca_standard in mathematics, expressed as a fraction of the total number of american indian or alaska native students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8_Mathematics_EconomicallyDisadvantaged,"the number of american indian or alaska native students in school grade 8 who are economically disadvantaged and did not meet the ca_standard in mathematics, divided by the total number of american indian or alaska native students in school grade 8 who are economically disadvantaged;the number of american indian or alaska native students in school grade 8 who are economically disadvantaged and did not meet the ca_standard in mathematics, expressed as a percentage of the total number of american indian or alaska native students in school grade 8;the number of american indian or alaska native students in school grade 8 who are economically disadvantaged and did not meet the ca standard in mathematics, divided by the total number of american indian or alaska native students in school grade 8;the number of american indian or alaska native students in grade 8 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of american indian or alaska native students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade11_EnglishLanguageArts,percentage of asian 11th grade students who did not meet the ca standard in english language arts;number of asian 11th grade students who did not meet the ca standard in english language arts divided by the total number of asian 11th grade students;percentage of asian 11th grade english language arts students who did not meet the ca standard;number of asian 11th grade english language arts students who did not meet the ca standard divided by the total number of asian 11th grade english language arts students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade11_Mathematics,"the percentage of asian 11th grade students who did not meet the ca math standard;the number of asian 11th grade students who did not meet the ca math standard, as a percentage of all asian 11th grade students;the number of asian 11th grade students who did not meet the ca math standard, divided by the total number of asian 11th grade students;number of asian 11th grade students who did not meet the ca standard in mathematics divided by the total number of asian 11th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts,number of asian 13th grade students who did not meet the ca english language arts standard divided by the total number of asian 13th grade students;the number of asian 13th grade students who did not meet the ca english language arts standard divided by the total number of asian 13th grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_Mathematics,"the percentage of asian students in grade 13 who did not meet the ca math standard;the number of asian 13th graders who did not meet the ca math standard, divided by the total number of asian 13th graders;number of asian 13th grade students who did not meet the ca math standard divided by the total number of asian 13th grade students;the number of asian 13th grade students who did not meet the ca math standard, divided by the total number of asian 13th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade3_EnglishLanguageArts,number of asian 3rd graders who did not meet the ca english language arts standard divided by the total number of asian 3rd graders;number of asian 3rd graders who did not meet the ca english language arts standard expressed as a percentage;number of asian 3rd grade students who did not meet the ca standard in english language arts divided by the total number of asian 3rd grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade3_Mathematics,"percentage of asian 3rd grade students who did not meet the ca math standard;number of asian 3rd grade students who did not meet the ca math standard divided by the total number of asian 3rd grade students;percent of asian 3rd grade students who did not meet the ca math standard;the number of asian 3rd grade students who did not meet the ca math standard, divided by the total number of asian 3rd grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts,"the number of asian 4th grade students who did not meet the ca standard in english language arts divided by the total number of asian 4th grade students;the percentage of asian 4th grade students who did not meet the ca standard in english language arts, expressed as a fraction;the percentage of asian 4th grade students who did not meet the ca english language arts standard;the number of asian 4th grade students who did not meet the ca english language arts standard, divided by the total number of asian 4th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"percentage of asian, economically disadvantaged students in school grade 4 who did not meet the ca_standard in english language arts;number of asian, economically disadvantaged students in school grade 4 who did not meet the ca_standard in english language arts divided by the total number of asian, economically disadvantaged students in school grade 4;the number of asian students in grade 4 who did not meet the ca standard in english language arts and are economically disadvantaged, divided by the total number of asian students in grade 4;number of asian, economically disadvantaged 4th grade students who did not meet the ca standard in english language arts divided by the total number of asian, economically disadvantaged 4th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade4_Mathematics,"the percentage of asian 4th grade students who did not meet the ca math standard;the number of asian 4th grade students who did not meet the ca math standard divided by the total number of asian 4th grade students;the number of asian 4th grade students who did not meet the ca math standard, divided by the total number of asian 4th grade students;the number of asian fourth-graders who did not meet the ca math standard, divided by the total number of asian fourth-graders" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the percentage of asian 4th grade students who are economically disadvantaged and did not meet the ca math standard;the number of asian 4th grade students who are economically disadvantaged and did not meet the ca math standard, expressed as a fraction of the total number of asian 4th grade students;the proportion of asian 4th grade students who are economically disadvantaged and did not meet the ca math standard;the share of asian 4th grade students who are economically disadvantaged and did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts,"percentage of asian 5th grade students who did not meet the ca english language arts standard;number of asian 5th grade students who did not meet the ca english language arts standard divided by the total number of asian 5th grade students;number of asian 5th graders who did not meet the ca english language arts standard, as a percentage of all asian 5th graders;the number of asian 5th grade students who did not meet the ca english language arts standard divided by the total number of asian 5th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the percentage of asian students in school grade 5 who are economically disadvantaged and did not meet the ca_standard in english language arts;the number of asian students in school grade 5 who are economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of asian students in school grade 5;the percentage of asian students in school grade 5 who are economically disadvantaged and did not meet the ca_standard in english language arts, out of all asian students in school grade 5;part of asian, 5th grade students who are economically disadvantaged and did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade5_Mathematics,percentage of asian 5th grade students who did not meet the ca math standard;number of asian 5th grade students who did not meet the ca math standard divided by the total number of asian 5th grade students;percent of asian 5th grade students who did not meet the ca math standard out of all asian 5th grade students;the percentage of asian 5th grade students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,"the number of asian students in school grade 5 who did not meet the ca mathematics standard and are economically disadvantaged, divided by the total number of asian students in school grade 5;percentage of asian 5th grade students who are economically disadvantaged and did not meet the ca standard in mathematics;part of asian 5th grade students who are economically disadvantaged and did not meet the ca standard in mathematics;percentage of asian 5th grade students who are economically disadvantaged and did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts,the number of asian 6th grade students who did not meet the ca standard in english language arts divided by the total number of asian 6th grade students;the number of asian 6th grade students who did not meet the ca standard in english language arts as a percentage of the total number of asian 6th grade students;percentage of asian 6th grade students who did not meet the ca english language arts standard;number of asian 6th grade students who did not meet the ca english language arts standard divided by the total number of asian 6th grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of asian students in grade 6 who are economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of asian students in grade 6;number of asian, economically disadvantaged students in grade 6 who did not meet the ca standard in english language arts divided by the total number of asian, economically disadvantaged students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade6_Mathematics,"the percentage of asian 6th grade students who did not meet the ca math standard;the number of asian 6th grade students who did not meet the ca math standard, divided by the total number of asian 6th grade students;percentage of asian 6th grade students who did not meet the ca math standard;number of asian 6th grade students who did not meet the ca math standard divided by the total number of asian 6th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade6_Mathematics_EconomicallyDisadvantaged,"the number of asian students in grade 6 who are economically disadvantaged and did not meet the ca standard in mathematics divided by the total number of students in grade 6;percentage of economically disadvantaged asian 6th grade students who did not meet the ca math standard;number of economically disadvantaged asian 6th grade students who did not meet the ca math standard divided by the total number of economically disadvantaged asian 6th grade students;the number of asian students in grade 6 who are economically disadvantaged and did not meet the ca math standard, divided by the total number of asian students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade7_EnglishLanguageArts,number of asian 7th graders in english language arts who did not meet the ca standard divided by the total number of asian 7th graders in english language arts;the number of asian 7th graders who did not meet the ca english language arts standard divided by the total number of asian 7th graders;percentage of asian 7th grade students who did not meet the ca standard in english language arts;number of asian 7th grade students who did not meet the ca standard in english language arts divided by the total number of asian 7th grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade7_Mathematics,percentage of asian 7th grade students who did not meet the ca mathematics standard;number of asian 7th grade students who did not meet the ca mathematics standard divided by the total number of asian 7th grade students;percentage of asian 7th grade students who did not meet the ca math standard;number of asian 7th grade students who did not meet the ca math standard divided by the total number of asian 7th grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade8_EnglishLanguageArts,percentage of asian 8th grade students who did not meet the ca standard in english language arts;number of asian 8th grade students who did not meet the ca standard in english language arts divided by the total number of asian 8th grade students;percentage of asian 8th grade students who did not meet the ca english language arts standard;number of asian 8th grade students who did not meet the ca english language arts standard divided by the total number of asian 8th grade students -Percent_CA_StandardNotMet_In_Count_Student_Asian_SchoolGrade8_Mathematics,the number of asian 8th graders who did not meet the ca math standard divided by the total number of asian 8th graders;percentage of asian 8th grade students who did not meet the ca math standard;number of asian 8th grade students who did not meet the ca math standard divided by the total number of asian 8th grade students;the percentage of asian 8th grade students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_EnglishLanguageArts,"number of black or african american 11th graders who did not meet the ca standard in english language arts divided by the total number of black or african american 11th graders;the number of black or african american students in 11th grade english language arts who did not meet the ca standard, divided by the total number of black or african american students in 11th grade english language arts;the percentage of black or african american students in 11th grade english language arts who did not meet the ca standard, expressed as a fraction;the percentage of black or african american students who did not meet the english language arts standard in 11th grade" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade11_Mathematics,"what number of black or african american 11th graders did not meet the ca standard in mathematics, as a fraction of the total number of black or african american 11th graders?;what number of black or african american 11th graders did not meet the ca standard in mathematics, as a percentage of the total number of black or african american 11th graders?;the percentage of black or african american students in 11th grade who did not meet the ca mathematics standard;the number of black or african american 11th-grade students who did not meet the ca mathematics standard, divided by the total number of black or african american 11th-grade students" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts,the number of black or african american students in grade 13 who did not meet the ca standard in english language arts divided by the total number of black or african american students in grade 13;the number of black or african american students in grade 13 who did not meet the ca standard in english language arts as a percentage of the total number of black or african american students in grade 13;number of black or african american 13th graders who did not meet the ca english language arts standard divided by the total number of black or african american 13th graders;number of black or african american 13th grade students who did not meet the ca standard in english language arts divided by the total number of black or african american 13th grade students -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the fraction of black or african american students in school grade 13 who are economically disadvantaged and did not meet the ca_standard in english language arts, out of all black or african american students in school grade 13;the number of black or african american students in grade 13 who are economically disadvantaged and did not meet the ca_standard in english language arts as a fraction of the total number of black or african american students in grade 13;the number of black or african american students in grade 13 who are economically disadvantaged and did not meet the ca_standard in english language arts as a percentage of the total number of black or african american students in grade 13;the number of black or african american students in school grade 13 who are economically disadvantaged and did not meet the ca_standard in english language arts, expressed as a percentage of all black or african american students in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"percentage of black or african american students in grade 13 who did not meet the ca standard in english language arts, divided by the percentage of black or african american students in grade 13 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics,"the number of black or african american students in grade 13 who did not meet the ca mathematics standard, divided by the total number of black or african american students in grade 13;the number of black or african american students in grade 13 who did not meet the ca mathematics standard, expressed as a percentage of the total number of black or african american students in grade 13;number of black or african american 13th grade students who did not meet the ca math standard divided by the total number of black or african american 13th grade students;the number of black or african american students in grade 13 who did not meet the ca mathematics standard divided by the total number of black or african american students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,number of black or african american students in 13th grade who did not meet the ca standard in mathematics who are not economically disadvantaged divided by the total number of black or african american students in 13th grade who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_EnglishLanguageArts,"the percentage of black or african american students in grade 6 who did not meet the ca_standard in english language arts;the number of black or african american students in grade 6 who did not meet the ca_standard in english language arts, divided by the total number of black or african american students in grade 6;percentage of black or african american students in grade 6 who did not meet the ca standard in english language arts;number of black or african american students in grade 6 who did not meet the ca standard in english language arts divided by the total number of black or african american students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade6_Mathematics,"the percentage of black or african american students in 6th grade who did not meet the ca math standard;the number of black or african american students in 6th grade who did not meet the ca math standard, as a fraction of the total number of black or african american students in 6th grade;the number of black or african american students in 6th grade who did not meet the ca math standard, expressed as a percentage;the percentage of black or african american students in 6th grade who did not meet the ca math standard, expressed as a fraction" -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_EnglishLanguageArts,number of black or african american students in grade 7 who did not meet the ca standard in english language arts divided by the total number of black or african american students in grade 7;number of black or african american 7th graders who did not meet the ca standard in english language arts divided by the total number of black or african american 7th graders;number of black or african american 7th graders who did not meet the ca english language arts standard divided by the total number of black or african american 7th graders;percentage of black or african american students in 7th grade who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_BlackOrAfricanAmericanAlone_SchoolGrade7_Mathematics,percentage of black or african american 7th graders who did not meet the ca math standard;number of black or african american 7th graders who did not meet the ca math standard divided by the total number of black or african american 7th graders;percentage of black or african american 7th grade students who did not meet the ca math standard;number of black or african american 7th grade students who did not meet the ca math standard divided by the total number of black or african american 7th grade students -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_EnglishLanguageArts,"percentage of english learners in school grade 13 who did not meet the ca_standard in english language arts, after 12 months or less in the us;share of english learners in school grade 13 who did not meet the ca_standard in english language arts, after 12 months or less in the us;fraction of english learners who did not meet the ca standard in english language arts in school grade 13 who have been english learners for 12 months or less;percentage of english learners who did not meet the ca standard in english language arts in school grade 13 who have been english learners for 12 months or less" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrLessMonth_SchoolGrade13_Mathematics,fraction of english learners who have been in the us for 12 months or less and are in grade 13 who did not meet the ca mathematics standard;percentage of english learners who have been in the us for 12 months or less and are in grade 13 who did not meet the ca mathematics standard;share of english learners who have been in the us for 12 months or less and are in grade 13 who did not meet the ca mathematics standard;proportion of english learners who have been in the us for 12 months or less and are in grade 13 who did not meet the ca mathematics standard -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_EnglishLanguageArts,"the proportion of english learners who did not meet the ca standard in english language arts after 12 months or more of instruction in school grade 11;the number of english learners who did not meet the ca standard in english language arts after 12 months or more of instruction in school grade 11, divided by the total number of english learners who received instruction in school grade 11;the percentage of english learners who did not meet the ca standard in english language arts after 12 months or more of instruction in school grade 11, out of all english learners who received instruction in school grade 11" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade11_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_EnglishLanguageArts,"number of english learners in grade 13 who did not meet the ca english language arts standard after 12 months or more of instruction, as a proportion of the total number of english learners in grade 13;number of english learners in grade 13 who did not meet the ca english language arts standard after 12 months or more of instruction, as a percentage of the total number of english learners in grade 13;the number of english learners who have not met the ca standard in english language arts after 12 or more months in school grade 13 divided by the number of english learners in school grade 13;the number of english learners who have not met the ca standard in english language arts after 12 or more months in school grade 13 expressed as a percentage of the total number of english learners in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_EnglishLanguageArts,"percentage of english learners in school grade 3 who did not meet the ca_standard for english language arts, after 12 months or more of instruction;number of english learners in school grade 3 who did not meet the ca_standard for english language arts, divided by the total number of english learners in school grade 3, after 12 months or more of instruction;proportion of english learners in school grade 3 who did not meet the ca_standard for english language arts, after 12 months or more of instruction;share of english learners in school grade 3 who did not meet the ca_standard for english language arts, after 12 months or more of instruction" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade3_Mathematics,percentage of english learners in grade 3 who did not meet the ca math standard after 12 months or more of instruction;share of english learners in grade 3 who did not meet the ca math standard after 12 months or more of instruction;proportion of english learners in grade 3 who did not meet the ca math standard after 12 months or more of instruction;percentage of english learners in school grade 3 who did not meet the ca mathematics standard after 12 or more months of instruction -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_EnglishLanguageArts,"the percentage of english learners who did not meet the ca_standard in english language arts after 12 months or more of schooling in grade 4;the proportion of english learners who did not meet the ca_standard in english language arts after 12 months or more of schooling in grade 4;the number of english learners who did not meet the ca_standard in english language arts after 12 months or more of schooling in grade 4, divided by the total number of english learners who were enrolled in grade 4;the fraction of english learners who did not meet the ca_standard in english language arts after 12 months or more of schooling in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade4_Mathematics,the percentage of english learners who have been in school for 12 months or more and did not meet the ca standard in mathematics in grade 4;the proportion of english learners who have been in school for 12 months or more and did not meet the ca standard in mathematics in grade 4;the number of english learners who have been in school for 12 months or more and did not meet the ca standard in mathematics in grade 4 divided by the total number of english learners who have been in school for 12 months or more in grade 4;the number of english learners who have been in school for 12 months or more and did not meet the ca standard in mathematics in grade 4 expressed as a percentage of the total number of english learners who have been in school for 12 months or more in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_EnglishLanguageArts,"the percentage of english learners in school grade 5 who did not meet the ca_standard for english language arts, after being enrolled in english language instruction for 12 months or more;the proportion of english learners in school grade 5 who did not meet the ca_standard for english language arts, after being enrolled in english language instruction for 12 months or more;the number of english learners in school grade 5 who did not meet the ca_standard for english language arts, divided by the total number of english learners in school grade 5 who were enrolled in english language instruction for 12 months or more;the fraction of english learners in school grade 5 who did not meet the ca_standard for english language arts, out of all english learners in school grade 5 who were enrolled in english language instruction for 12 months or more" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade5_Mathematics,percentage of english learners in grade 5 who did not meet the ca math standard after 12 months or more of instruction;proportion of english learners in grade 5 who did not meet the ca math standard after 12 months or more of instruction;the percentage of english learners in grade 5 who did not meet the ca math standard after 12 months or more of instruction;the proportion of english learners in grade 5 who did not meet the ca math standard after 12 months or more of instruction -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade6_Mathematics,the proportion of english learners in grade 6 who did not meet the ca math standard after 12 months or more of instruction;the number of english learners in grade 6 who did not meet the ca math standard after 12 months or more of instruction divided by the total number of english learners in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade7_Mathematics,"number of english learners in 7th grade who did not meet the ca math standard after 12 months or more of instruction divided by the total number of english learners in 7th grade;percent of english learners in 7th grade who did not meet the ca math standard after 12 months or more of instruction, expressed as a percentage;proportion of english learners in 7th grade who did not meet the ca math standard after 12 months or more of instruction;the proportion of english learners who have been in school for 12 months or more and did not meet the ca standard in mathematics in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_EnglishLanguageArts,"the percentage of english learners who did not meet the ca standard in english language arts after 12 months or more in school grade 8;the proportion of english learners who did not meet the ca standard in english language arts after 12 months or more in school grade 8;the number of english learners who did not meet the ca standard in english language arts after 12 months or more in school grade 8, divided by the total number of english learners in school grade 8;the fraction of english learners who did not meet the ca standard in english language arts after 12 months or more in school grade 8, out of all english learners in school grade 8" -Percent_CA_StandardNotMet_In_Count_Student_EnglishLearner_12OrMoreMonth_SchoolGrade8_Mathematics,proportion of english learners in grade 8 who did not meet the ca math standard after 12 months or more of instruction;what percentage of english learners in grade 8 did not meet the ca math standard after 12 months or more of instruction?;what percent of english learners in grade 8 did not meet the ca math standard after 12 months or more of instruction? -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_EnglishLanguageArts,number of students in grade 11 who are current learners of english and did not meet the ca standard in english language arts divided by the total number of students in grade 11 who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade11_Mathematics,the number of students in school grade 11 who are current learners of english and did not meet the ca standard in mathematics divided by the total number of students in school grade 11 who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_EnglishLanguageArts,number of students in grade 13 who are current learners of english and did not meet the ca standard in english language arts divided by the total number of students in grade 13 who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade13_Mathematics,"the percentage of students who are current learners in school grade 13 and did not meet the ca standard in english and mathematics;the number of students who are current learners in school grade 13 and did not meet the ca standard in english and mathematics, divided by the total number of students who are current learners in school grade 13;the proportion of students who are current learners in school grade 13 and did not meet the ca standard in english and mathematics;the number of students who are current learners in school grade 13 and did not meet the ca standard in english and mathematics, expressed as a percentage of the total number of students who are current learners in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_EnglishLanguageArts,number of students in grade 3 who are current learners of english and did not meet the ca standard in english language arts divided by the total number of students in grade 3 who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade3_Mathematics,number of students in grade 3 who are current learners of english and did not meet the ca standard in mathematics divided by the total number of students in grade 3 who are current learners of english;the fraction of students in grade 3 who are current learners and have not met the ca standard in english and mathematics;the percentage of students in grade 3 who are current learners and have not met the ca standard in english and mathematics;the proportion of students in grade 3 who are current learners and have not met the ca standard in english and mathematics -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_EnglishLanguageArts,number of fourth grade students who are current learners of english and did not meet the ca standard in english language arts divided by the total number of fourth grade students who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade4_Mathematics,"the fraction of students who are current learners in school grade 4 and have not met the ca standard in english and mathematics;the percentage of students in school grade 4 who are current learners and have not met the ca standard in english and mathematics;the number of students in school grade 4 who are current learners and have not met the ca standard in english and mathematics, divided by the total number of students in school grade 4 who are current learners;the proportion of students in school grade 4 who are current learners and have not met the ca standard in english and mathematics" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_EnglishLanguageArts,"number of students in grade 5 who are current learners of english and did not meet the ca standard in english language arts as a percentage of the total number of students in grade 5 who are current learners of english;number of 5th grade students who are current learners in english language arts and did not meet the ca standard, divided by the total number of 5th grade students who are current learners in english language arts;number of 5th grade students who are current learners and did not meet the ca english language arts standard, divided by the total number of 5th grade students who are current learners;number of 5th grade students who are current learners of english and did not meet the ca standard in english language arts divided by the total number of 5th grade students who are current learners of english" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade5_Mathematics,"percentage of students in grade 5 who are current learners and did not meet the ca standard in english and mathematics;number of students in grade 5 who are current learners and did not meet the ca standard in english and mathematics, divided by the total number of students in grade 5 who are current learners;the number of students in grade 5 who are current learners and did not meet the ca standard in english and mathematics, as a percentage of the total number of students in grade 5 who are current learners;percentage of 5th grade students who are current learners and did not meet the ca standard in english and mathematics" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_EnglishLanguageArts,"number of students in grade 6 who are current learners in english language arts and did not meet the ca standard, divided by the total number of students in grade 6 who are current learners in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade6_Mathematics,"percentage of students in grade 6 who are current learners and did not meet the ca standard in english and mathematics;number of students in grade 6 who are current learners and did not meet the ca standard in english and mathematics divided by the total number of students in grade 6 who are current learners;proportion of students in grade 6 who are current learners and did not meet the ca standard in english and mathematics;the number of students in grade 6 who are current learners of english and did not meet the ca standard in mathematics, divided by the total number of students in grade 6 who are current learners of english" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_EnglishLanguageArts,the number of students in grade 7 who are current learners of english and did not meet the ca standard in english language arts divided by the total number of students in grade 7 who are current learners of english;the number of students in grade 7 who are current learners of english and did not meet the ca standard in english language arts as a percentage of the total number of students in grade 7 who are current learners of english;the number of students in grade 7 who are current learners of english and did not meet the ca standard for english language arts divided by the total number of students in grade 7 who are current learners of english;the number of students in grade 7 who are current learners of english and did not meet the ca standard for english language arts expressed as a percentage of the total number of students in grade 7 who are current learners of english -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade7_Mathematics,"the number of students in grade 7 who are current learners of english and have not met the ca standard in mathematics, divided by the total number of students in grade 7;the number of students in grade 7 who are current learners of english and did not meet the ca standard in mathematics divided by the total number of students in grade 7 who are current learners of english;the number of students in grade 7 who are current learners of english and did not meet the ca standard in mathematics expressed as a percentage of the total number of students in grade 7 who are current learners of english;number of students in grade 7 who are current learners of english and have not met the ca standard in mathematics divided by the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_EnglishLanguageArts,"the number of students in grade 8 english language arts who are current learners and are not meeting the ca_standard, expressed as a percentage;percentage of 8th grade students who are current learners of english and did not meet the ca standard in english language arts;number of 8th grade students who are current learners of english and did not meet the ca standard in english language arts divided by the total number of 8th grade students who are current learners of english" -Percent_CA_StandardNotMet_In_Count_Student_English_CurrentLearner_SchoolGrade8_Mathematics,"the number of students in grade 8 who are current learners of english and did not meet the ca standard in mathematics divided by the total number of students in grade 8 who are current learners of english;the percentage of students in grade 8 who are current learners of english and have not met the ca standard in mathematics;the number of students in grade 8 who are current learners of english and have not met the ca standard in mathematics, divided by the total number of students in grade 8;percentage of 8th grade students who are current learners of english and have not met the ca standard in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade11_EnglishLanguageArts,percentage of 11th grade students who have never met the ca english language arts standard -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade11_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade13_Mathematics,"the percentage of students who have never learned english and have not met the ca standard in mathematics in school grade 13;the number of students who have never learned english and have not met the ca standard in mathematics in school grade 13, as a percentage of the total number of students;the number of students who have never learned english and have not met the ca standard in mathematics in school grade 13, expressed as a fraction of the total number of students" -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade3_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade4_EnglishLanguageArts,"the number of students who did not meet the ca_standard in english in school grade 4, as a fraction of the total number of students who ever learned english in school grade 4;the number of students who did not meet the ca_standard in english in school grade 4, divided by the number of students who ever learned english in school grade 4;the number of students who did not meet the ca_standard in english in school grade 4, expressed as a percentage of the total number of students who ever learned english in school grade 4" -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade4_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade5_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade6_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade7_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_English_EverLearned_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,"number of students in family of armed forces who did not meet ca standard in english language arts in grade 13 divided by the total number of students in family of armed forces in grade 13;what number of students in grade 13 english language arts who are from military families did not meet the ca standard, divided by the total number of students in grade 13 english language arts who are from military families?;number of students in grade 13 english language arts who are from families of armed forces and did not meet the ca standard, divided by the total number of students in grade 13 english language arts who are from families of armed forces" -Percent_CA_StandardNotMet_In_Count_Student_FamilyOfArmedForces_SchoolGrade13_Mathematics,"the number of students in grade 13 who are from military families and did not meet the ca standard in mathematics, expressed as a fraction of the total number of students in grade 13;number of students in grade 13 from military families who did not meet the ca standard in mathematics divided by the total number of students in grade 13 from military families;number of students in grade 13 who are from military families and did not meet the ca standard in mathematics divided by the total number of students in grade 13;number of students in grade 13 from military families who did not meet the ca standard in mathematics as a percentage of the total number of students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade11_EnglishLanguageArts,fraction of female 11th grade english language arts students who did not meet the ca standard;percentage of female 11th grade english language arts students who did not meet the ca standard;number of female 11th grade english language arts students who did not meet the ca standard divided by the total number of female 11th grade english language arts students;female 11th grade english language arts students who did not meet the ca standard as a percentage of all female 11th grade english language arts students -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade11_Mathematics,the percentage of female students in 11th grade who did not meet the ca math standard;the fraction of female students in 11th grade who did not meet the ca math standard;the number of female students in 11th grade who did not meet the ca math standard divided by the total number of female students in 11th grade;the proportion of female students in 11th grade who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade13_EnglishLanguageArts,"the percentage of female students in grade 13 who did not meet the ca_standard in english language arts;the number of female students in grade 13 who did not meet the ca_standard in english language arts, divided by the total number of female students in grade 13;the proportion of female students in grade 13 who did not meet the ca_standard in english language arts;the number of female students in grade 13 who did not meet the ca_standard in english language arts, expressed as a percentage of the total number of female students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade13_Mathematics,"the number of female students in grade 13 who did not meet the ca math standard, as a fraction of the total number of female students in grade 13 who took the math test;the percentage of female students in grade 13 who did not meet the ca math standard;the proportion of female students in grade 13 who did not meet the ca math standard;the number of female students in grade 13 who did not meet the ca math standard, divided by the total number of female students in grade 13 who took the math test" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade3_EnglishLanguageArts,number of female students in grade 3 who did not meet the ca standard in english language arts divided by the total number of female students in grade 3;percentage of female students in grade 3 who did not meet the ca standard in english language arts;proportion of female students in grade 3 who did not meet the ca standard in english language arts;share of female students in grade 3 who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade3_Mathematics,fraction of female students in grade 3 who did not meet the ca math standard;percentage of female students in grade 3 who did not meet the ca math standard;number of female students in grade 3 who did not meet the ca math standard divided by the total number of female students in grade 3;female students in grade 3 who did not meet the ca math standard as a percentage of all female students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade4_EnglishLanguageArts,fraction of female 4th grade students who did not meet the ca standard in english language arts;female 4th grade students who did not meet the ca standard in english language arts as a fraction of all 4th grade female students;percent of female 4th grade students who did not meet the ca standard in english language arts;percentage of female 4th grade students who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade4_Mathematics,"the percentage of female fourth-grade students who did not meet the ca math standard;the proportion of female fourth-grade students who did not meet the ca math standard;the number of female fourth-grade students who did not meet the ca math standard, divided by the total number of female fourth-grade students;the number of female fourth-grade students who did not meet the ca math standard, expressed as a fraction of the total number of female fourth-grade students" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade5_EnglishLanguageArts,the fraction of female 5th graders who did not meet the ca english language arts standard;the percentage of female 5th graders who did not meet the ca english language arts standard;the number of female 5th graders who did not meet the ca english language arts standard divided by the total number of female 5th graders;the number of female 5th graders who did not meet the ca english language arts standard expressed as a percentage -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade5_Mathematics,"the percentage of female fifth grade students who did not meet the ca math standard;the number of female fifth grade students who did not meet the ca math standard, divided by the total number of female fifth grade students;the proportion of female fifth grade students who did not meet the ca math standard;the share of female fifth grade students who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade6_EnglishLanguageArts,"the percentage of female students in grade 6 who did not meet the ca_standard in english language arts;the proportion of female students in grade 6 who did not meet the ca_standard in english language arts;the number of female students in grade 6 who did not meet the ca_standard in english language arts, divided by the total number of female students in grade 6;the number of female students in grade 6 who did not meet the ca_standard in english language arts, expressed as a percentage of the total number of female students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade6_Mathematics,the fraction of female students in grade 6 who did not meet the ca mathematics standard;the percentage of female students in grade 6 who did not meet the ca mathematics standard;the proportion of female students in grade 6 who did not meet the ca mathematics standard;the number of female students in grade 6 who did not meet the ca mathematics standard divided by the total number of female students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade7_EnglishLanguageArts,"the percentage of female students in grade 7 who did not meet the ca standard in english language arts;the number of female students in grade 7 who did not meet the ca standard in english language arts, divided by the total number of female students in grade 7;the number of female students in grade 7 who did not meet the ca standard in english language arts, expressed as a percentage of the total number of female students in grade 7;the proportion of female students in grade 7 who did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade7_Mathematics,the fraction of female students in grade 7 who did not meet the ca mathematics standard;the percentage of female students in grade 7 who did not meet the ca mathematics standard;the proportion of female students in grade 7 who did not meet the ca mathematics standard;the number of female students in grade 7 who did not meet the ca mathematics standard divided by the total number of female students in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade8_EnglishLanguageArts,fraction of female 8th grade students who did not meet the ca standard in english language arts;percentage of female 8th grade students who did not meet the ca standard in english language arts;number of female 8th grade students who did not meet the ca standard in english language arts divided by the total number of female 8th grade students;proportion of female 8th grade students who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_Female_SchoolGrade8_Mathematics,fraction of female 8th grade students who did not meet the ca math standard;percentage of female 8th grade students who did not meet the ca math standard;share of female 8th grade students who did not meet the ca math standard;number of female 8th grade students who did not meet the ca math standard divided by the total number of female 8th grade students -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts,percentage of filipino 13th grade students who did not meet the ca english language arts standard;number of filipino 13th grade students who did not meet the ca english language arts standard divided by the total number of filipino 13th grade students;the percentage of filipino grade 13 students who did not meet the ca standard in english language arts;the number of filipino grade 13 students who did not meet the ca standard in english language arts divided by the total number of filipino grade 13 students -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics,number of filipino 13th grade students who did not meet the ca mathematics standard divided by the total number of filipino 13th grade students;number of filipino 13th grade students who did not meet the ca mathematics standard expressed as a percentage of the total number of filipino 13th grade students;percentage of students in filipino 13th grade math who did not meet the ca standard;number of filipino 13th grade math students who did not meet the ca standard divided by the total number of filipino 13th grade math students -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_Filipino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"the number of filipino students in school grade 13 who are not economically disadvantaged and did not meet the ca_standard in mathematics, divided by the total number of filipino students in school grade 13 who are not economically disadvantaged;the number of filipino students in school grade 13 who are not economically disadvantaged and did not meet the ca_standard in mathematics, expressed as a percentage of the total number of filipino students in school grade 13 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts,percentage of hispanic or latino 11th grade students who did not meet the ca english language arts standard;number of hispanic or latino 11th grade students who did not meet the ca english language arts standard divided by the total number of hispanic or latino 11th grade students;percentage of hispanic or latino 11th graders who did not meet ca standards in english language arts;number of hispanic or latino 11th graders who did not meet ca standards in english language arts divided by the total number of hispanic or latino 11th graders -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics,"percentage of hispanic or latino 11th grade students who did not meet the ca mathematics standard;number of hispanic or latino 11th grade students who did not meet the ca mathematics standard divided by the total number of hispanic or latino 11th grade students;the percentage of hispanic or latino 11th grade students who did not meet the ca math standard;the number of hispanic or latino 11th grade students who did not meet the ca math standard, as a percentage of all hispanic or latino 11th grade students" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"3 the number of hispanic or latino 11th graders who did not meet the ca math standard and were not economically disadvantaged, divided by the total number of hispanic or latino 11th graders;number of hispanic or latino 11th grade students who are not economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino 11th grade students who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts,"number of hispanic or latino 13th grade students who did not meet the ca standard in english language arts divided by the total number of hispanic or latino 13th grade students;number of hispanic or latino 13th grade students who did not meet the ca english language arts standard divided by the total number of hispanic or latino 13th grade students;the number of hispanic or latino students in grade 13 who did not meet the ca_standard in english language arts, divided by the total number of hispanic or latino students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 13 who did not meet the ca_standard in english language arts and are economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in 13th grade who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in 13th grade;the number of hispanic or latino students in school grade 13 who did not meet the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13;the number of hispanic or latino students in school grade 13 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics,"the number of hispanic or latino 13th graders who did not meet the ca math standard, divided by the total number of hispanic or latino 13th graders;number of hispanic or latino 13th grade students who did not meet the ca math standard divided by the total number of hispanic or latino 13th grade students" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts,"the number of hispanic or latino students in grade 3 who did not meet the ca standard in english language arts, divided by the total number of hispanic or latino students in grade 3;number of hispanic or latino 3rd grade students who did not meet the ca english language arts standard divided by the total number of hispanic or latino 3rd grade students;number of hispanic or latino students in grade 3 who did not meet the ca english language arts standard divided by the total number of hispanic or latino students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 3 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 3;the number of hispanic or latino students in grade 3 who did not meet the ca_standard in english language arts and are not economically disadvantaged divided by the total number of hispanic or latino students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics,"percentage of hispanic or latino 3rd graders who did not meet the ca math standard;number of hispanic or latino 3rd graders who did not meet the ca math standard divided by the total number of hispanic or latino 3rd graders;percent of hispanic or latino 3rd graders who did not meet the ca math standard;the number of hispanic or latino students in grade 3 who did not meet the ca mathematics standard, divided by the total number of hispanic or latino students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_EconomicallyDisadvantaged,number of hispanic or latino students in grade 3 who are economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in school grade 3 who did not meet the ca_standard in mathematics and are not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 3 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts,number of hispanic or latino students in grade 4 who did not meet the ca standard in english language arts divided by the total number of hispanic or latino students in grade 4;percentage of hispanic or latino 4th graders who did not meet the ca english language arts standard;percent of hispanic or latino 4th graders who did not meet the ca english language arts standard;portion of hispanic or latino 4th graders who did not meet the ca english language arts standard -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"number of hispanic or latino students in grade 4 who are economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in grade 4 who did not meet the ca standard in english language arts and are economically disadvantaged, divided by the total number of hispanic or latino students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics,percentage of hispanic or latino 4th graders who did not meet the ca math standard;share of hispanic or latino 4th graders who did not meet the ca math standard;number of hispanic or latino 4th graders who did not meet the ca math standard divided by the total number of hispanic or latino 4th graders;percent of hispanic or latino 4th graders who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of hispanic or latino students in grade 4 who are economically disadvantaged and did not meet the ca math standard, expressed as a percentage of the total number of hispanic or latino students in grade 4;the number of hispanic or latino students in grade 4 who did not meet the ca math standard and are economically disadvantaged, divided by the total number of hispanic or latino students in grade 4;number of hispanic or latino students in grade 4 who are economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts,percentage of hispanic or latino 5th grade students who did not meet the ca english language arts standard;number of hispanic or latino 5th grade students who did not meet the ca english language arts standard divided by the total number of hispanic or latino 5th grade students;number of hispanic or latino 5th graders who did not meet the ca english language arts standard divided by the total number of hispanic or latino 5th graders -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics,percentage of hispanic or latino 5th grade students who did not meet the ca math standard;number of hispanic or latino 5th grade students who did not meet the ca math standard divided by the total number of hispanic or latino 5th grade students;hispanic or latino 5th graders who did not meet the ca math standard as a fraction of all hispanic or latino 5th graders;percentage of hispanic or latino 5th graders who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_EconomicallyDisadvantaged,number of hispanic or latino students in grade 5 who are economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino students in grade 5;number of hispanic or latino economically disadvantaged 5th graders who did not meet the ca math standard divided by the total number of hispanic or latino economically disadvantaged 5th graders -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,number of hispanic or latino 5th grade students who are not economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino 5th grade students who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts,number of hispanic or latino 6th graders who did not meet the ca english language arts standard divided by the total number of hispanic or latino 6th graders;number of hispanic or latino 6th graders who did not meet the ca standard in english language arts divided by the total number of hispanic or latino 6th graders;number of hispanic or latino 6th grade students who did not meet the ca standard in english language arts divided by the total number of hispanic or latino 6th grade students -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 6 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 6;5 the percentage of hispanic or latino students in grade 6 who did not meet the ca_standard in english language arts, out of all hispanic or latino students in grade 6 who were not economically disadvantaged;number of hispanic or latino students in grade 6 who are not economically disadvantaged and did not meet the ca english language arts standard divided by the total number of hispanic or latino students in grade 6 who are not economically disadvantaged;the number of hispanic or latino students in grade 6 who did not meet the ca_standard in english language arts and were not economically disadvantaged, expressed as a percentage of the total number of hispanic or latino students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics,hispanic or latino 6th grade students who did not meet the ca math standard as a fraction of all hispanic or latino 6th grade students;percentage of hispanic or latino 6th grade students who did not meet the ca math standard;hispanic or latino 6th grade students who did not meet the ca math standard as a percentage of all hispanic or latino 6th grade students;percent of hispanic or latino 6th grade students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"number of hispanic or latino students in grade 6 who are not economically disadvantaged and did not meet the ca math standard divided by the total number of hispanic or latino students in grade 6 who are not economically disadvantaged;the number of hispanic or latino students in school grade 6 who did not meet the ca_standard in mathematics and are not economically disadvantaged, divided by the total number of hispanic or latino students in school grade 6 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts,"percentage of hispanic or latino 7th graders who did not meet the ca english language arts standard;number of hispanic or latino 7th graders who did not meet the ca english language arts standard as a percentage of all hispanic or latino 7th graders;the number of hispanic or latino students in grade 7 who did not meet the ca_standard in english language arts, as a fraction of the total number of hispanic or latino students in grade 7;the number of hispanic or latino students in grade 7 who did not meet the ca_standard in english language arts, expressed as a percentage of the total number of hispanic or latino students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of hispanic or latino students in grade 7 who did not meet the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of hispanic or latino students in grade 7;the number of hispanic or latino students in grade 7 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of hispanic or latino students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics,"the number of hispanic or latino students in grade 7 who did not meet the ca math standard, divided by the total number of hispanic or latino students in grade 7;percentage of hispanic or latino 7th grade students who did not meet the ca math standard;number of hispanic or latino 7th grade students who did not meet the ca math standard divided by the total number of hispanic or latino 7th grade students;percent of hispanic or latino 7th grade students who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts,"percentage of hispanic or latino 8th grade students who did not meet the ca english language arts standard;number of hispanic or latino 8th graders who did not meet the ca standard in english language arts divided by the total number of hispanic or latino 8th graders;the number of hispanic or latino students in grade 8 who did not meet the ca_standard in english language arts, divided by the total number of hispanic or latino students in grade 8;the percentage of hispanic or latino students in grade 8 who did not meet the ca_standard in english language arts, expressed as a fraction" -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of hispanic or latino 8th grade students who are not economically disadvantaged and did not meet the ca english language arts standard divided by the total number of hispanic or latino 8th grade students who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics,percentage of hispanic or latino 8th grade students who did not meet the ca math standard;number of hispanic or latino 8th grade students who did not meet the ca math standard divided by the total number of hispanic or latino 8th grade students -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_HispanicOrLatino_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"the percentage of english learners in grade 11 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in english language arts;percentage of english learners in grade 11 english language arts who are initially fluent proficient, reclassified fluent proficient, or only english;percentage of students in grade 11 english language arts who are english learners and are initially fluent proficient, reclassified fluent proficient, or only english" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade11_Mathematics,percentage of english learners in 11th grade math who are initial or reclassified fluent proficient or only english speakers -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_EnglishLanguageArts,"percentage of english learners in grade 13 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts;the number of english learners in school grade 13 who were initially fluent proficient or reclassified fluent proficient or only english in english language arts, expressed as a percentage of the total number of english learners in school grade 13;the percentage of english learners who are initially fluent or reclassified as fluent in english language arts in school grade 13, out of all english learners in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade13_Mathematics,"percent of english learners in school grade 13 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics, out of all english learners in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_EnglishLanguageArts,"the percentage of english learners in grade 3 who are initially fluent proficient or reclassified fluent proficient or only english in english language arts;the number of english learners in grade 3 who are initially fluent proficient or reclassified fluent proficient or only english in english language arts, expressed as a percentage;the percentage of english learners in grade 3 who are initially fluent or reclassified fluent or only speak english in english language arts is number;the proportion of english learners in grade 3 who are initially fluent or reclassified fluent or only speak english in english language arts is number" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade3_Mathematics,"share of english learners in school grade 3 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;the percentage of english learners in grade 3 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics, out of all english learners in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_EnglishLanguageArts,the percentage of english learners in grade 4 who were initially fluent proficient or reclassified fluent proficient or only english in english language arts;fraction of students who are english learners and are either initially or reclassified as fluent in english in school grade 4 english language arts who did not meet the ca standard;fraction of students who are english learners and are initially fluent proficient or reclassified fluent proficient or only english in english language arts in school grade 4 -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade4_Mathematics,the percentage of fourth grade english learners who are initially fluent proficient or reclassified fluent proficient or only english in mathematics -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_EnglishLanguageArts,"the percentage of english learners in grade 5 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts;the fraction of english learners in grade 5 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts;percentage of students who are english learners and are either initially fluent proficient or reclassified fluent proficient or only english in english language arts in school grade 5;percent of students who are english learners and are either initially fluent proficient or reclassified fluent proficient or only english in english language arts in school grade 5" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade5_Mathematics,"percentage of students who are english learners in school grade 5 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;percent of students who are english learners in school grade 5 who are initially fluent proficient or reclassified fluent proficient or only english in mathematics;the percentage of english learners in school grade 5 who are not proficient in mathematics;percentage of english learners in school grade 5 who are initially fluent proficient, reclassified fluent proficient, or only english proficient in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_EnglishLanguageArts,"percentage of english learners in grade 6 english language arts who are initially fluent proficient, reclassified fluent proficient, or only english;share of english learners in grade 6 english language arts who are initially fluent proficient, reclassified fluent proficient, or only english;number of english learners in grade 6 english language arts who are initially fluent proficient, reclassified fluent proficient, or only english, divided by the total number of english learners in grade 6 english language arts;the percentage of english learners in grade 6 who are initially fluent proficient, reclassified fluent proficient, or only english in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_EnglishLanguageArts,"percentage of english learners in 7th grade english language arts who are initially fluent proficient or reclassified fluent proficient or only english;the percentage of english learners in grade 7 who are initial fluent proficient, reclassified fluent proficient, or only english in english language arts;the proportion of students who were english learners, initially fluent or reclassified fluent in english, and did not meet the ca_standard in english language arts in school grade 7;the fraction of students who were english learners, initially fluent or reclassified fluent in english, and did not meet the ca_standard in english language arts in school grade 7, out of all students who were english learners, initially fluent or reclassified fluent in english, and in school grade 7" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade7_Mathematics,the percentage of english learners in grade 7 who are not proficient in mathematics -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_EnglishLanguageArts,"percentage of english learners in grade 8 english language arts who are initially fluent proficient or reclassified fluent proficient or only english;share of english learners in grade 8 english language arts who are initially fluent proficient or reclassified fluent proficient or only english;the percentage of english learners in grade 8 who are initial or reclassified fluent proficient in english language arts, as a fraction of the total number of english learners in grade 8;the proportion of english learners in grade 8 who are initial or reclassified fluent proficient in english language arts, out of the total number of english learners in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficientOrReclassifiedFluentProficientOrOnlyEnglish_EnglishLearner_SchoolGrade8_Mathematics,the percentage of students in grade 8 who are english learners and are initially fluent proficient or reclassified fluent proficient or only english in mathematics -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts,the percentage of students who are english learners and in grade 13 who have not met the initial proficiency standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts,fraction of students who are english learners in school grade 5 who are initially fluent proficient in english language arts but do not meet the ca standard -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts,percentage of students in grade 6 who are english learners and initial fluent proficient in english language arts but did not meet the ca standard;the fraction of students who are english learners and in grade 6 who are not proficient in english language arts -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade6_Mathematics,percent of english learners in grade 6 who are not proficient in mathematics -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_InitialFluentProficient_EnglishLearner_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade11_EnglishLanguageArts,the fraction of male students in grade 11 who did not meet the ca standard in english language arts;the percentage of male students in grade 11 who did not meet the ca standard in english language arts;the proportion of male students in grade 11 who did not meet the ca standard in english language arts;the number of male students in grade 11 who did not meet the ca standard in english language arts divided by the total number of male students in grade 11 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade11_Mathematics,"the percentage of male 11th grade students who did not meet the ca math standard;the proportion of 11th grade male students who did not meet the ca math standard;the number of male 11th grade students who did not meet the ca math standard, divided by the total number of male 11th grade students;the percentage of male 11th grade students who did not meet the ca math standard, out of all male 11th grade students" -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade13_EnglishLanguageArts,the proportion of male students in grade 13 who did not meet the ca standard in english language arts;the percentage of male students in grade 13 who did not meet the ca standard in english language arts;the number of male students in grade 13 who did not meet the ca standard in english language arts divided by the total number of male students in grade 13;the number of male students in grade 13 who did not meet the ca standard in english language arts as a percentage of the total number of male students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade13_Mathematics,fraction of male students in grade 13 who did not meet the ca math standard;percentage of male students in grade 13 who did not meet the ca math standard;number of male students in grade 13 who did not meet the ca math standard divided by the total number of male students in grade 13;number of male students in grade 13 who did not meet the ca math standard as a percentage of the total number of male students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade3_EnglishLanguageArts,the percentage of male students in grade 3 who did not meet the ca english language arts standard;the proportion of male students in grade 3 who did not meet the ca english language arts standard;the number of male students in grade 3 who did not meet the ca english language arts standard divided by the total number of male students in grade 3;the number of male students in grade 3 who did not meet the ca english language arts standard expressed as a percentage -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade3_Mathematics,fraction of male students in grade 3 who did not meet the ca math standard;percentage of male students in grade 3 who did not meet the ca math standard;proportion of male students in grade 3 who did not meet the ca math standard;number of male students in grade 3 who did not meet the ca math standard divided by the total number of male students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade4_EnglishLanguageArts,fraction of male students in grade 4 who did not meet the ca standard in english language arts;percentage of male students in grade 4 who did not meet the ca standard in english language arts;number of male students in grade 4 who did not meet the ca standard in english language arts divided by the total number of male students in grade 4;number of male students in grade 4 who did not meet the ca standard in english language arts as a percentage of the total number of male students in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade4_Mathematics,fraction of male 4th grade students who did not meet the ca math standard;percentage of male 4th grade students who did not meet the ca math standard;number of male 4th grade students who did not meet the ca math standard divided by the total number of male 4th grade students;proportion of male 4th grade students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade5_EnglishLanguageArts,"the percentage of male students in grade 5 who did not meet the ca standard in english language arts;the number of male students in grade 5 who did not meet the ca standard in english language arts, divided by the total number of male students in grade 5;the proportion of male students in grade 5 who did not meet the ca standard in english language arts;the number of male students in grade 5 who did not meet the ca standard in english language arts, as a fraction of the total number of male students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade5_Mathematics,fraction of 5th grade male students who did not meet the ca math standard;percentage of 5th grade male students who did not meet the ca math standard;number of 5th grade male students who did not meet the ca math standard divided by the total number of 5th grade male students;proportion of 5th grade male students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade6_EnglishLanguageArts,percentage of male students in grade 6 who did not meet the ca standard in english language arts;number of male students in grade 6 who did not meet the ca standard in english language arts divided by the total number of male students in grade 6;number of male students in grade 6 who did not meet the ca standard in english language arts as a percentage of the total number of male students in grade 6;number of male students in grade 6 who did not meet the ca standard in english language arts as a fraction of the total number of male students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade6_Mathematics,fraction of male students in grade 6 who did not meet the ca mathematics standard;percentage of male students in grade 6 who did not meet the ca mathematics standard;number of male students in grade 6 who did not meet the ca mathematics standard divided by the total number of male students in grade 6;number of male students in grade 6 who did not meet the ca mathematics standard expressed as a percentage of the total number of male students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade7_EnglishLanguageArts,percentage of male students in grade 7 who did not meet the ca standard in english language arts;number of male students in grade 7 who did not meet the ca standard in english language arts as a percentage of the total number of male students in grade 7;number of male students in grade 7 who did not meet the ca standard in english language arts as a fraction of the total number of male students in grade 7;number of male students in grade 7 who did not meet the ca standard in english language arts as a proportion of the total number of male students in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade7_Mathematics,"the percentage of male 7th grade students who did not meet the ca math standard;the number of male 7th grade students who did not meet the ca math standard, divided by the total number of male 7th grade students;the proportion of male 7th grade students who did not meet the ca math standard;the number of male 7th grade students who did not meet the ca math standard, expressed as a percentage" -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade8_EnglishLanguageArts,"the percentage of male students in grade 8 who did not meet the ca english language arts standard;the number of male students in grade 8 who did not meet the ca english language arts standard, divided by the total number of male students in grade 8;the proportion of male students in grade 8 who did not meet the ca english language arts standard;the share of male students in grade 8 who did not meet the ca english language arts standard" -Percent_CA_StandardNotMet_In_Count_Student_Male_SchoolGrade8_Mathematics,"the percentage of male 8th grade students who did not meet the ca math standard;the proportion of male 8th grade students who did not meet the ca math standard;the number of male 8th grade students who did not meet the ca math standard, divided by the total number of male 8th grade students;the fraction of male 8th grade students who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NativeHawaiianOrOtherPacificIslanderAlone_SchoolGrade13_Mathematics,the number of native hawaiian or other pacific islander alone students who did not meet the ca_standard in mathematics in school grade 13 divided by the total number of native hawaiian or other pacific islander alone students in school grade 13 -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade11_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade13_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade3_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade4_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade5_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade6_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade7_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_NoDisability_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_EnglishLanguageArts,"number of students in grade 11 english language arts who are not from military families and did not meet the ca standard divided by the total number of students in grade 11 english language arts who are not from military families;what number of 11th grade students who are not from military families did not meet the ca english language arts standard, as a fraction of the total number of 11th grade students who are not from military families?;what number of 11th grade students who are not from military families did not meet the ca english language arts standard, as a percentage of the total number of 11th grade students who are not from military families?" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade11_Mathematics,number of students in grade 11 mathematics who are not from military families and did not meet the ca standard divided by the total number of students in grade 11 mathematics -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_EnglishLanguageArts,number of students not from military families in grade 13 who did not meet the ca english language arts standard divided by the total number of students not from military families in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade13_Mathematics,"the number of students in grade 13 who are not from military families and did not meet the ca standard in mathematics, divided by the total number of students in grade 13;the number of students in grade 13 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 13;the number of students in grade 13 who are not from military families and did not meet the ca math standard, expressed as a percentage of the total number of students in grade 13;number of students in grade 13 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 13 who are not from military families" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_EnglishLanguageArts,the number of students in grade 3 who are not from military families and did not meet the ca standard in english language arts as a fraction of the total number of students in grade 3;the number of students in grade 3 who are not from military families and did not meet the ca standard in english language arts as a percentage of the total number of students in grade 3;the proportion of students in grade 3 who are not from military families and did not meet the ca standard in english language arts as a percentage of the total number of students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade3_Mathematics,the number of students in grade 3 who are not from military families and did not meet the ca standard in mathematics divided by the total number of students in grade 3;number of students in grade 3 who are not from military families and did not meet the ca math standard divided by the total number of students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_EnglishLanguageArts,"number of students in grade 4 english language arts who are not from military families and did not meet the ca standard, divided by the total number of students in grade 4 english language arts who are not from military families;the number of students in grade 4 who are not from military families and did not meet the ca standard in english language arts, divided by the total number of students in grade 4 who are not from military families" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade4_Mathematics,number of students in grade 4 who are not from military families and did not meet the ca math standard divided by the total number of students in grade 4;number of students in grade 4 who are not from military families and did not meet the ca math standard expressed as a percentage of the total number of students in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_EnglishLanguageArts,"number of students in school grade 5 who are not from military families and did not meet the ca standard in english language arts, divided by the total number of students in school grade 5 who are not from military families" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade5_Mathematics,"the number of students in grade 5 who are not from military families and did not meet the ca mathematics standard, divided by the total number of students in grade 5 who are not from military families;the number of students in grade 5 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 5;number of students in grade 5 who are not from military families and did not meet the ca math standard divided by the total number of students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_EnglishLanguageArts,"number of students in grade 6 who are not from military families and did not meet the ca standard in english language arts, divided by the total number of students in grade 6 who are not from military families;number of students in grade 6 who are not from military families and did not meet the ca standard in english language arts, expressed as a percentage of the total number of students in grade 6;number of students in grade 6 english language arts who are not from military families and did not meet the ca standard, divided by the total number of students in grade 6 english language arts who are not from military families" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade6_Mathematics,"the number of students in grade 6 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 6;number of students in grade 6 who are not from military families and did not meet the ca math standard divided by the total number of students in grade 6;the number of students in grade 6 who are not from military families and did not meet the ca mathematics standard, divided by the total number of students in grade 6 who are not from military families;the number of students in grade 6 who are not from military families and did not meet the ca mathematics standard, expressed as a percentage of the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_EnglishLanguageArts,"number of students in grade 7 english language arts who are not from military families and did not meet the ca standard, divided by the total number of students in grade 7 english language arts who are not from military families;the percentage of students in grade 7 who are not from military families and did not meet the ca_standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade7_Mathematics,"the number of students in grade 7 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_EnglishLanguageArts,"number of students in grade 8 english language arts who are not from military families and did not meet the ca standard, divided by the total number of students in grade 8 english language arts who are not from military families" -Percent_CA_StandardNotMet_In_Count_Student_NotFamilyOfArmedForces_SchoolGrade8_Mathematics,"the number of students in grade 8 who are not from military families and did not meet the ca math standard, divided by the total number of students in grade 8;the number of students in grade 8 who are not from military families and did not meet the ca math standard, expressed as a percentage of the total number of students in grade 8;number of students in grade 8 math who are not from military families and did not meet the ca standard divided by the total number of students in grade 8 math;number of students in grade 8 math who are not from military families and did not meet the ca standard expressed as a percentage of the total number of students in grade 8 math" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade11_EnglishLanguageArts,"the number of students in grade 11 who did not meet the ca standard in english language arts as a fraction of the total number of students in grade 11;the number of students in grade 11 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 11;percentage of students in grade 11 english language arts who did not meet the ca standard in english only;number of students in grade 11 english language arts who did not meet the ca standard in english only, divided by the total number of students in grade 11 english language arts" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade11_Mathematics,number of students in grade 11 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 11;number of students in grade 11 who did not meet the ca standard in english and mathematics as a fraction of the total number of students in grade 11;number of students in 11th grade who did not meet the ca standard in english and mathematics as a percentage of the total number of students in 11th grade -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade13_EnglishLanguageArts,the number of students who did not meet the ca standard in english language arts in grade 13 divided by the total number of students in grade 13;the number of students in grade 13 who did not meet the ca_standard in english language arts divided by the total number of students in grade 13;the number of students in grade 13 who did not meet the ca_standard in english language arts as a percentage of the total number of students in grade 13;number of students who did not meet the ca standard in english language arts in grade 13 divided by the total number of students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade13_Mathematics,number of students who did not meet the ca standard in english and mathematics in grade 13 as a percentage of the total number of students in grade 13;number of students who did not meet the ca standard in english and mathematics in grade 13 divided by the total number of students in grade 13;number of students in grade 13 who did not meet the ca standard in english and mathematics as a percentage of all students in grade 13;number of students in grade 13 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade3_Mathematics,"the number of students in school grade 3 who did not meet the ca_standard in english and mathematics, divided by the total number of students in school grade 3;number of students in grade 3 who did not meet the ca standard in mathematics, only english, divided by the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade4_EnglishLanguageArts,"percentage of students in grade 4 who did not meet the ca english language arts standard in english only;number of students in grade 4 who did not meet the ca english language arts standard in english only, as a fraction of the total number of students in grade 4;number of students in grade 4 who did not meet the ca english language arts standard in english only, as a percentage of the total number of students in grade 4;the percentage of students who did not meet the ca_standard in english language arts in school grade 4, out of all students who only took english in school grade 4" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade4_Mathematics,"number of students in grade 4 who did not meet the ca standard in english and mathematics divided by the total number of students in grade 4;number of students in grade 4 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 4;number of students in grade 4 who did not meet the ca standard in mathematics, only english, as a percentage of the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in english and mathematics as a fraction of the total number of students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade5_EnglishLanguageArts,"number of 5th grade students who only speak english and did not meet the ca standard in english language arts divided by the total number of 5th grade students who only speak english;the percentage of students in grade 5 who did not meet the ca english language arts standard for english only;the number of students in grade 5 who did not meet the ca english language arts standard for english only, as a percentage of the total number of students in grade 5;the percentage of students in grade 5 who did not meet the ca english language arts standard for english only, out of all students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade5_Mathematics,number of students in grade 5 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 5;number of students in grade 5 who did not meet the ca standard in english and mathematics as a fraction of the total number of students in grade 5 -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 who did not meet the ca standard in english language arts divided by the total number of students in grade 6;number of students in grade 6 english language arts who did not meet the ca standard for english divided by the total number of students in grade 6 english language arts;percentage of students in grade 6 who did not meet the ca english language arts standard in english only;number of students in grade 6 who did not meet the ca english language arts standard in english only -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade6_Mathematics,"number of students who did not meet the ca standard in english and mathematics in grade 6 as a percentage of the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in mathematics, only english, divided by the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english and mathematics divided by the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade7_EnglishLanguageArts,number of students in 7th grade english language arts who did not meet the ca standard for english divided by the total number of students in 7th grade english language arts;the number of students in grade 7 who did not meet the ca standard in english language arts divided by the total number of students in grade 7;the number of students in grade 7 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 7;number of students in grade 7 who did not meet the ca standard in english language arts as a proportion of the total number of students in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade7_Mathematics,"number of students in grade 7 who did not meet the ca standard in english and mathematics, as a percentage of the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade8_EnglishLanguageArts,"number of students in grade 8 english language arts who did not meet the ca standard in english as a percentage of the total number of students in grade 8 english language arts;percentage of students in grade 8 english language arts who did not meet the ca standard in english only;number of students in grade 8 english language arts who did not meet the ca standard in english only, as a proportion of the total number of students in grade 8 english language arts;percentage of students in grade 8 english language arts who did not meet the ca standard in english only, expressed as a percentage" -Percent_CA_StandardNotMet_In_Count_Student_OnlyEnglish_SchoolGrade8_Mathematics,"number of students in grade 8 who did not meet the ca standard in english and mathematics as a percentage of the total number of students in grade 8;number of students in grade 8 who did not meet the ca standard in english and mathematics as a share of the total number of students in grade 8;the number of students in grade 8 who only took english and did not meet the ca standard in mathematics, divided by the total number of students in grade 8 who only took english;the number of students in grade 8 who only took english and did not meet the ca standard in mathematics, expressed as a percentage of the total number of students in grade 8 who only took english" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_EnglishLanguageArts,"the share of students in 11th grade english language arts who did not meet the ca standard and declined to state;the percentage of students who did not meet the ca standard in english language arts in grade 11 and declined to state testing;the number of students who did not meet the ca standard in english language arts in grade 11 and declined to state testing, divided by the total number of students in grade 11;the number of students who did not meet the ca standard in english language arts in grade 11 and declined to state testing, as a percentage of the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade11_Mathematics,"the percentage of students who did not meet the ca standard in mathematics in grade 11 and declined to take the state test;the number of students who did not meet the ca standard in mathematics in grade 11 and declined to take the state test, divided by the total number of students in grade 11;the fraction of students in grade 11 who did not meet the ca standard in mathematics and declined to take the state test;the percentage of students in grade 11 who did not meet the ca standard in mathematics and did not take the state test" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_EnglishLanguageArts,the percentage of students who did not meet the ca standard in english language arts in grade 13 who declined to state;the proportion of students who did not meet the ca standard in english language arts in grade 13 who declined to state;the fraction of students who did not meet the ca standard in english language arts in grade 13 who declined to state;the percentage of students in grade 13 who did not meet the ca standard in english language arts and declined to state -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade13_Mathematics,"the percentage of students in grade 13 who failed the ca mathematics standard and declined to take the state test;the number of students in grade 13 who failed the ca mathematics standard and declined to take the state test, divided by the total number of students in grade 13;the number of students in grade 13 who failed the ca mathematics standard and declined to take the state test, expressed as a percentage of the total number of students in grade 13;fraction of students in grade 13 who declined to take the ca mathematics state test and did not meet the ca standard" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_EnglishLanguageArts,"the percentage of students in grade 3 who did not meet the ca standard in english language arts and declined to state testing;the proportion of students in grade 3 who did not meet the ca standard in english language arts and declined to state testing;the number of students in grade 3 who did not meet the ca standard in english language arts and declined to state testing, divided by the total number of students in grade 3;the number of students in grade 3 who did not meet the ca standard in english language arts and declined to state testing, expressed as a percentage of the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade3_Mathematics,"fraction of students in grade 3 who declined to take the state mathematics test and did not meet the ca standard;percentage of students in grade 3 who declined to take the state mathematics test and did not meet the ca standard;number of students in grade 3 who declined to take the state mathematics test and did not meet the ca standard, as a percentage of all students in grade 3;percentage of students in grade 3 who declined to take the state mathematics test and did not meet the ca standard, out of all students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_EnglishLanguageArts,fraction of students who did not meet the ca standard in english language arts in grade 4 who also declined to state testing;percentage of students who did not meet the ca standard in english language arts in grade 4 who also declined to state testing;number of students who did not meet the ca standard in english language arts in grade 4 who also declined to state testing;proportion of students who did not meet the ca standard in english language arts in grade 4 who also declined to state testing -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade4_Mathematics,"the percentage of students in grade 4 who did not meet the ca standard in mathematics and declined to state testing;the proportion of students in grade 4 who did not meet the ca standard in mathematics and did not take the state test;the number of students in grade 4 who did not meet the ca standard in mathematics and declined to take the state test, divided by the total number of students in grade 4;the fraction of students in grade 4 who did not meet the ca standard in mathematics and declined to take the state test" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_EnglishLanguageArts,"the fraction of students in school grade 5 who did not meet the ca standard in english language arts and declined to state testing;the percentage of students in school grade 5 who did not meet the ca standard in english language arts and declined to state testing;the number of students in school grade 5 who did not meet the ca standard in english language arts and declined to state testing, divided by the total number of students in school grade 5;the proportion of students in school grade 5 who did not meet the ca standard in english language arts and declined to state testing" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade5_Mathematics,"fraction of students in grade 5 who declined to take the state math test and did not meet the ca standard;percentage of students in grade 5 who declined to take the state math test and did not meet the ca standard;proportion of students in grade 5 who declined to take the state math test and did not meet the ca standard;number of students in grade 5 who declined to take the state math test and did not meet the ca standard, divided by the total number of students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_EnglishLanguageArts,"fraction of students in grade 6 who did not meet the ca standard in english language arts and declined to state testing;percentage of students in grade 6 who did not meet the ca standard in english language arts and declined to state testing;number of students in grade 6 who did not meet the ca standard in english language arts and declined to state testing, as a percentage of all students in grade 6;percentage of students in grade 6 who did not meet the ca standard in english language arts and declined to state testing, out of all students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade6_Mathematics,"the percentage of students in grade 6 who did not meet the ca standard in mathematics and declined to state testing;the proportion of students in grade 6 who did not meet the ca standard in mathematics and did not take the state test;the number of students in grade 6 who did not meet the ca standard in mathematics and declined to take the state test, divided by the total number of students in grade 6;the fraction of students in grade 6 who did not meet the ca standard in mathematics and declined to take the state test" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_EnglishLanguageArts,percentage of students in grade 7 who did not meet the ca standard in english language arts and declined to state;fraction of students who did not meet the ca standard in english language arts in grade 7 who declined to state testing;percentage of students who did not meet the ca standard in english language arts in grade 7 who declined to state testing;number of students who did not meet the ca standard in english language arts in grade 7 who declined to state testing -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade7_Mathematics,"fraction of students who declined to take the ca mathematics state test in grade 7, out of all students who did not meet the ca mathematics standard in grade 7;percentage of students who declined to take the ca mathematics state test in grade 7, out of all students who did not meet the ca mathematics standard in grade 7;number of students who declined to take the ca mathematics state test in grade 7, divided by the number of students who did not meet the ca mathematics standard in grade 7;percent of students who declined to take the ca mathematics state test in grade 7, out of all students who did not meet the ca mathematics standard in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_EnglishLanguageArts,fraction of students who did not meet the ca standard in english language arts in grade 8 who declined to state testing;fraction of students who did not meet the ca standard in english language arts in grade 8 who did not take the state test;fraction of students who did not meet the ca standard in english language arts in grade 8 who opted out of state testing;percentage of students who did not meet the ca standard in english language arts in grade 8 who declined to state testing -Percent_CA_StandardNotMet_In_Count_Student_ParentCADeclinedToState_SchoolGrade8_Mathematics,"fraction of students in grade 8 who declined to take the state mathematics exam and did not meet the ca standard;percentage of students in grade 8 who declined to take the state mathematics exam and did not meet the ca standard;number of students in grade 8 who declined to take the state mathematics exam and did not meet the ca standard, expressed as a fraction of the total number of students in grade 8;number of students in grade 8 who declined to take the state mathematics exam and did not meet the ca standard, expressed as a percentage of the total number of students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_EnglishLanguageArts,"the number of students who are college graduates, in 11th grade english language arts, and did not meet the ca standard divided by the total number of students who are college graduates, in 11th grade english language arts" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade11_Mathematics,"the number of students who are college graduates and in grade 11 and did not meet the ca math standard, as a fraction of the total number of students who are college graduates and in grade 11;the number of students who are college graduates and in grade 11 and did not meet the ca math standard, expressed as a percentage;the number of 11th grade college graduates who did not meet the ca math standard divided by the total number of 11th grade college graduates" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_EnglishLanguageArts,"number of college graduates who did not meet the ca standard in english language arts in grade 13 divided by the total number of college graduates;number of college graduates who did not meet the ca standard in english language arts in grade 13 expressed as a percentage of the total number of college graduates;the number of students who are college graduates and did not meet the ca_standard in english language arts in school grade 13 divided by the total number of students who are college graduates and in school grade 13;percentage of students who are college graduates, in grade 13, and did not meet the ca_standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade13_Mathematics,"the percentage of students who are college graduates and have not met the ca_standard in mathematics, divided by the total number of students who are college graduates and in school grade 13;the number of students who are college graduates and have not met the ca_standard in mathematics, as a fraction of the number of students who are college graduates and in school grade 13;the number of students who are college graduates and have not met the ca_standard in mathematics, expressed as a percentage of the total number of students who are college graduates and in school grade 13;the number of students who are college graduates and have not met the ca_standard in mathematics, expressed as a proportion of the total number of students who are college graduates and in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_EnglishLanguageArts,number of students who are college graduates and did not meet the ca standard in english language arts in grade 3 divided by the total number of students;percentage of students who are college graduates and did not meet the ca_standard in english language arts in school grade 3 -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade3_Mathematics,percentage of college graduates in grade 3 who did not meet the ca math standard;number of college graduates in grade 3 who did not meet the ca math standard divided by the total number of students in grade 3;the number of students who are college graduates and did not meet the ca standard in mathematics in grade 3 divided by the total number of students;number of students who are college graduates and did not meet the ca standard in mathematics in school grade 3 divided by the total number of students -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_EnglishLanguageArts,percentage of students who are college graduates and did not meet the ca_standard in english language arts in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade4_Mathematics,percentage of college-graduate students in grade 4 who did not meet the ca standard in mathematics;number of college-graduate students in grade 4 who did not meet the ca standard in mathematics divided by the total number of students in grade 4 who are college-graduates;percentage of students who are college graduates and did not meet the ca standard in mathematics in grade 4;number of students who are college graduates and did not meet the ca standard in mathematics in grade 4 divided by the total number of students -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_EnglishLanguageArts,percentage of students who are college graduates and did not meet the ca_standard in english language arts in grade 5;number of students who are college graduates and did not meet the ca_standard in english language arts in grade 5 as a percentage of the total number of students;percentage of students who are college graduates and did not meet the ca_standard in english language arts in school grade 5;number of students who are college graduates and did not meet the ca standard in english language arts in grade 5 divided by the total number of students -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade5_Mathematics,"the percentage of students who are college graduates and did not meet the ca_standard in mathematics in school grade 5;number of students who are college graduates and did not meet the ca standard in mathematics in school grade 5 divided by the total number of students;the number of students who are college graduates and did not meet the ca_standard in mathematics in school grade 5, as a percentage of all students;percentage of students who are college graduates and did not meet the ca_standard in mathematics in school grade 5" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_EnglishLanguageArts,number of students who are college graduates and did not meet the ca standard in english language arts in grade 6 divided by the total number of students;number of students who are college graduates and in grade 6 and did not meet the ca standard in english language arts divided by the total number of students who are college graduates and in grade 6;percentage of students in grade 6 who are college graduates and did not meet the ca_standard in english language arts;the percentage of students in grade 6 who are college graduates and did not meet the ca_standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade6_Mathematics,"percentage of students who are college graduates and did not meet the ca_standard in mathematics in grade 6;the number of students who are college graduates and in the 6th grade and did not meet the ca math standard, divided by the total number of students who are college graduates and in the 6th grade;the number of students who are college graduates and in the 6th grade and did not meet the ca math standard, expressed as a percentage;the percentage of students who are college graduates and did not meet the ca_standard in mathematics in school grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade7_Mathematics,number of students who are college graduates and did not meet the ca standard in mathematics in grade 7 divided by the total number of students;number of students who are college graduates and did not meet the ca standard in mathematics in grade 7 expressed as a percentage of the total number of students;number of students who are college graduates and did not meet the ca standard in mathematics in grade 7 divided by the number of students who are college graduates and took the ca standard in mathematics in grade 7;number of students who are college graduates and did not meet the ca standard in mathematics in grade 7 divided by the total number of students who are college graduates and took the ca standard in mathematics in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentCollegeGraduate_SchoolGrade8_Mathematics,number of students who are college graduates and did not meet the ca standard in mathematics in grade 8 as a percentage of the total number of students;number of students who are college graduates and did not meet the ca standard in 8th grade math as a percentage of all students;number of students who are college graduates and did not meet the ca standard in 8th grade math as a fraction of all students;number of students who are college graduates and did not meet the ca standard in mathematics in grade 8 divided by the total number of students -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_EnglishLanguageArts,"the number of students in graduate school or post-graduate school who did not meet the ca_standard in english language arts in grade 11, divided by the total number of students in graduate school or post-graduate school in grade 11;the number of students in graduate school or post-graduate school who did not meet the ca_standard in english language arts in grade 11, expressed as a percentage of the total number of students in graduate school or post-graduate school in grade 11;number of students in graduate school or post-graduate school who did not meet the ca_standard in english language arts in grade 11 divided by the total number of students in graduate school or post-graduate school in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade11_Mathematics,number of students in graduate or postgraduate school who did not meet the ca standard in grade 11 mathematics divided by the total number of students in graduate or postgraduate school;number of students in graduate school or post-graduate school who did not meet the ca standard in grade 11 mathematics divided by the total number of students in graduate school or post-graduate school;number of students in grade 11 who did not meet the ca standard in mathematics and are in graduate school or post-graduate school divided by the total number of students in grade 11 who are in graduate school or post-graduate school -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_EnglishLanguageArts,"number of students who did not meet the ca standard in english language arts in graduate school or post-graduate school, grade 13, divided by the total number of students in graduate school or post-graduate school, grade 13;the number of students who did not meet the ca_standard in english language arts in graduate school or post graduate school grade 13, divided by the total number of students in graduate school or post graduate school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_EnglishLanguageArts,number of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 3 divided by the total number of students in graduate or post-graduate school;number of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 3 divided by the total number of students in graduate or post-graduate school in grade 3;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 3 divided by the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 3 as a percentage of the total number of students in graduate or postgraduate school -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade3_Mathematics,number of graduate school or post graduate students who did not meet the ca_standard in grade 3 mathematics divided by the total number of graduate school or post graduate students -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_EnglishLanguageArts,"number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 4 divided by the total number of students in graduate or postgraduate school in grade 4;number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 4 divided by the total number of students in graduate school or post-graduate school in grade 4;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 4, as a fraction of the total number of students in graduate or postgraduate school in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade4_Mathematics,"number of students in graduate or postgraduate school who did not meet the ca standard in mathematics in grade 4 divided by the total number of students in graduate or postgraduate school;number of students who did not meet the ca standard in mathematics in grade 4 who are enrolled in graduate school or post-graduate school, expressed as a percentage of the total number of students who are enrolled in graduate school or post-graduate school;number of students in graduate or post-graduate school who did not meet the ca standard in grade 4 mathematics divided by the total number of students in graduate or post-graduate school" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_EnglishLanguageArts,number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 5 divided by the total number of students in graduate school or post-graduate school;number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 5 expressed as a percentage of the total number of students in graduate school or post-graduate school;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 5 divided by the total number of students in graduate or postgraduate school in grade 5;number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 5 as a percentage of the total number of students in graduate school or post-graduate school -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade5_Mathematics,"the number of students who did not meet the ca standard in mathematics in grade 5 who are in graduate school or post-graduate school as a percentage of the total number of students in graduate school or post-graduate school;the number of students who did not meet the ca standard in mathematics in grade 5 who are in graduate school or post-graduate school divided by the total number of students in graduate school or post-graduate school;number of students in graduate or post-graduate school who did not meet the ca standard in grade 5 mathematics, divided by the total number of students in graduate or post-graduate school;the number of students in graduate or post-graduate school who did not meet the ca standard in grade 5 mathematics, expressed as a percentage of the total number of students in graduate or post-graduate school" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_EnglishLanguageArts,"number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 6 as a percentage of the total number of students in graduate or postgraduate school;number of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 6, divided by the total number of students in graduate or post-graduate school;percentage of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 6, divided by the total number of students in graduate or post-graduate school;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 6 divided by the total number of students in graduate or postgraduate school in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade6_Mathematics,number of students in graduate or postgraduate school who did not meet the ca standard in grade 6 mathematics divided by the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who did not meet the ca standard in mathematics in grade 6 divided by the total number of students in graduate or postgraduate school;number of students who did not meet the ca standard in mathematics in grade 6 who are in graduate school or post-graduate school expressed as a percentage of the total number of students who are in graduate school or post-graduate school -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_EnglishLanguageArts,number of students in graduate or postgraduate school who did not meet the ca standard in grade 7 english language arts as a percentage of the total number of students in graduate or postgraduate school;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 7 divided by the total number of students in graduate or postgraduate school in grade 7;number of students in graduate or postgraduate school who did not meet the ca standard in english language arts in grade 7 divided by the total number of students in graduate or postgraduate school -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade7_Mathematics,"number of students in graduate or post-graduate school who did not meet the ca standard in grade 7 mathematics divided by the total number of students in graduate or post-graduate school;number of students in graduate or post-graduate school who did not meet the ca standard in grade 7 mathematics expressed as a percentage of the total number of students in graduate or post-graduate school;number of students in grade 7 who did not meet the ca standard in mathematics, divided by the number of students in grade 7 who are in graduate school or post-graduate school;number of students in graduate or postgraduate school who did not meet the ca standard in grade 7 mathematics divided by the total number of students in graduate or postgraduate school" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_EnglishLanguageArts,"number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 8 divided by the total number of students in graduate school or post-graduate school in grade 8;number of students in graduate school or post-graduate school who did not meet the ca standard in english language arts in grade 8 expressed as a percentage of the total number of students in graduate school or post-graduate school in grade 8;number of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 8 divided by the total number of students in graduate or post-graduate school in grade 8;the number of students in graduate or post-graduate school who did not meet the ca standard in english language arts in grade 8, expressed as a percentage of the total number of students in graduate or post-graduate school in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_ParentGraduateSchoolOrPostGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_EnglishLanguageArts,share of 11th grade students who are high school graduates (including equivalency) and did not meet the ca standard in english language arts;share of 11th grade students who are high school graduates or have equivalency degrees and did not meet the ca standard in english language arts;portion of 11th grade students who are high school graduates or have equivalency degrees and did not meet the ca standard in english language arts;number of 11th grade students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts divided by the total number of 11th grade students -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade11_Mathematics,"the percentage of students who did not meet the ca_standard in mathematics in 11th grade, who are high school graduates or have an equivalency degree, as a fraction of the total number of students in 11th grade who are high school graduates or have an equivalency degree;the percentage of students in 11th grade who are high school graduates or have an equivalency degree and did not meet the ca_standard in mathematics, out of all students in 11th grade who are high school graduates or have an equivalency degree;the number of students in 11th grade who are high school graduates or have an equivalency degree and did not meet the ca_standard in mathematics, divided by the total number of students in 11th grade who are high school graduates or have an equivalency degree;number of 11th grade students who are high school graduates or have equivalency degrees and did not meet the ca mathematics standard, divided by the total number of 11th grade students" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_EnglishLanguageArts,"the proportion of students who are high school graduates or have an equivalency degree, are in grade 13, and did not meet the ca standard in english language arts;the number of students who are high school graduates or have an equivalency degree, are in grade 13, and did not meet the ca standard in english language arts, divided by the total number of students who are high school graduates or have an equivalency degree, are in grade 13;the fraction of students who are high school graduates or have an equivalency degree, are in grade 13, and did not meet the ca standard in english language arts;the percentage of students who are high school graduates or have an equivalency degree, are in grade 13, and did not meet the ca standard in english language arts, out of all students who are high school graduates or have an equivalency degree, are in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade13_Mathematics,"part of students who did not meet the ca standard in mathematics, who are high school graduates or have equivalency degrees, and are in grade 13;share of students who did not meet the ca standard in mathematics, who are high school graduates or have equivalency degrees, and are in grade 13;the proportion of students who are high school graduates or have an equivalency degree, are in school grade 13, and did not meet the ca_standard in mathematics;the number of students who are high school graduates or have an equivalency degree, are in school grade 13, and did not meet the ca_standard in mathematics, divided by the total number of students who are high school graduates or have an equivalency degree, are in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_EnglishLanguageArts,share of students in grade 3 who did not meet the ca english language arts standard and whose parents are high school graduates or have an equivalency degree;number of students in grade 3 who did not meet the ca english language arts standard divided by the number of students in grade 3 whose parents are high school graduates or have an equivalency degree;number of students in grade 3 who are high school graduates or have an equivalency diploma and did not meet the ca standard in english language arts as a fraction of the total number of students in grade 3;percentage of students in grade 3 who are high school graduates or have an equivalency diploma and did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade3_Mathematics,what percentage of 3rd grade students who are high school graduates or have an equivalency degree did not meet the ca math standard?;what percent of 3rd grade students who are high school graduates or have an equivalency degree did not meet the ca math standard?;what number of 3rd grade students who are high school graduates or have an equivalency degree did not meet the ca math standard?;what share of 3rd grade students who are high school graduates or have an equivalency degree did not meet the ca math standard? -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_EnglishLanguageArts,percent of students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts in grade 4;percentage of students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts in grade 4;proportion of students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts in grade 4;fraction of students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade4_Mathematics,"fraction of students in grade 4 who are high school graduates or have an equivalency degree and are not meeting the ca standard in mathematics;proportion of students in grade 4 who are high school graduates or have an equivalency degree and are not meeting the ca standard in mathematics;number of students in grade 4 who are high school graduates or have an equivalency degree and are not meeting the ca standard in mathematics, divided by the total number of students in grade 4;the percentage of students in grade 4 who did not meet the ca standard in mathematics, and whose parents are high school graduates or have an equivalency degree" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_EnglishLanguageArts,share of students in grade 5 who are high school graduates or have equivalent qualifications and did not meet the ca standard in english language arts;share of 5th grade students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade5_Mathematics,share of 5th grade students who are high school graduates or have an equivalency degree and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_EnglishLanguageArts,number of 6th grade students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts divided by the total number of 6th grade students;share of 6th grade students who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts;what percentage of 6th grade students who are high school graduates or have an equivalency diploma did not meet the ca_standard in english language arts?;what percentage of 6th grade students who are high school graduates or have an equivalency diploma did not meet the english language arts standard set by the state of california? -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade6_Mathematics,"fraction of students in grade 6 who did not meet the ca math standard and are high school graduates or have an equivalency degree;percentage of students in grade 6 who did not meet the ca math standard and are high school graduates or have an equivalency degree;number of students in grade 6 who did not meet the ca math standard and are high school graduates or have an equivalency degree, expressed as a fraction of the total number of students in grade 6;number of students in grade 6 who did not meet the ca math standard and are high school graduates or have an equivalency degree, expressed as a percentage of the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_EnglishLanguageArts,"share of 7th grade students who are high school graduates or have an equivalency diploma and did not meet the ca standard in english language arts;number of students in grade 7 who did not meet the ca standard in english language arts, divided by the total number of students in grade 7 who are high school graduates or have equivalency degrees;number of students in grade 7 who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts divided by the total number of students in grade 7;share of students in grade 7 who are high school graduates or have an equivalency degree and did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade7_Mathematics,fraction of students in grade 7 who did not meet the ca math standard and are high school graduates or have an equivalency degree;percent of students in grade 7 who did not meet the ca math standard and are high school graduates or have an equivalency degree;percentage of students in grade 7 who did not meet the ca math standard and are high school graduates or have an equivalency degree;share of students in grade 7 who did not meet the ca math standard and are high school graduates or have an equivalency degree -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_EnglishLanguageArts,what percentage of 8th grade students who graduated from high school or obtained an equivalency degree did not meet the ca standard in english language arts?;what percent of 8th grade students who graduated from high school or obtained an equivalency degree did not meet the ca standard in english language arts?;what proportion of 8th grade students who graduated from high school or obtained an equivalency degree did not meet the ca standard in english language arts?;what number of 8th grade students who graduated from high school or obtained an equivalency degree did not meet the ca standard in english language arts? -Percent_CA_StandardNotMet_In_Count_Student_ParentHighSchoolGraduateIncludesEquivalency_SchoolGrade8_Mathematics,number of 8th grade students who are high school graduates or have an equivalency degree and did not meet the ca math standard divided by the total number of 8th grade students;share of 8th grade students who are high school graduates or have an equivalency degree and did not meet the ca math standard;percentage of students in 8th grade who are not meeting ca standards in mathematics and are high school graduates or have an equivalency degree;number of students in 8th grade who are not meeting ca standards in mathematics and are high school graduates or have an equivalency degree divided by the total number of students in 8th grade -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade11_Mathematics,what percentage of students in grade 11 who have not graduated from high school did not meet the ca standard in mathematics?;what is the percentage of students in grade 11 who have not graduated from high school and did not meet the ca standard in mathematics? -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_EnglishLanguageArts,"number of students who did not meet the ca standard in english language arts who are less than high school graduates in grade 13 divided by the total number of students who are less than high school graduates in grade 13;number of students who did not meet the ca standard in english language arts who are less than high school graduates in grade 13 expressed as a percentage of the total number of students who are less than high school graduates in grade 13;the number of students who did not meet the ca_standard in english language arts, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13;number of students who are less than high school graduates and did not meet the ca standard in english language arts in grade 13, divided by the total number of students" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade13_Mathematics,"number of students who are less than high school graduates and in grade 13 who did not meet the ca mathematics standard divided by the total number of students who are less than high school graduates and in grade 13;number of students who did not meet the ca standard in mathematics, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13;the number of students who did not meet the ca standard in mathematics, who are less than high school graduates, and are in school grade 13, divided by the total number of students who are less than high school graduates and are in school grade 13" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_EnglishLanguageArts,"percentage of students in grade 3 who did not meet the ca standard in english language arts and whose parents did not graduate from high school;number of students in grade 3 who did not meet the ca standard in english language arts and whose parents did not graduate from high school, divided by the total number of students in grade 3;percentage of students in grade 3 who did not meet the ca standard in english language arts and whose parents did not graduate from high school, expressed as a decimal;the percentage of students who did not meet the ca standard in english language arts in grade 3 and whose parents did not graduate from high school" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade3_Mathematics,"the number of students in grade 3 who did not meet the ca standard in mathematics and whose parents did not graduate from high school, divided by the total number of students in grade 3;the number of students in grade 3 who did not meet the ca standard in mathematics and whose parents did not graduate from high school, as a fraction of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in mathematics and whose parents did not graduate from high school, as a percentage of all students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_EnglishLanguageArts,fraction of students in grade 4 who did not meet the ca standard in english language arts who have parents who did not graduate from high school;fraction of students in grade 4 who did not meet the ca standard in english language arts whose parents did not graduate from high school;fraction of students in grade 4 who did not meet the ca standard in english language arts who have parents with less than a high school diploma;fraction of students in grade 4 who did not meet the ca standard in english language arts whose parents have less than a high school diploma -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade4_Mathematics,percentage of students in grade 4 who did not meet the ca math standard and whose parents did not graduate from high school;number of students in grade 4 who did not meet the ca math standard and whose parents did not graduate from high school as a percentage of all students in grade 4;percent of students in grade 4 who did not meet the ca math standard and whose parents did not graduate from high school;share of students in grade 4 who did not meet the ca math standard and whose parents did not graduate from high school -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_EnglishLanguageArts,percent of 5th grade students who did not meet the ca standard in english language arts and have parents who did not graduate from high school;percentage of 5th grade students who did not meet the ca standard in english language arts and have parents who did not graduate from high school;number of 5th grade students who did not meet the ca standard in english language arts and have parents who did not graduate from high school as a proportion of the total number of 5th grade students;percentage of 5th grade students who did not meet the ca standard in english language arts and have parents who are less than high school graduates -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade5_Mathematics,"fraction of students in grade 5 who did not meet the ca math standard and have parents who did not graduate from high school;percentage of students in grade 5 who did not meet the ca math standard and have parents who did not graduate from high school;number of students in grade 5 who did not meet the ca math standard and have parents who did not graduate from high school, as a percentage of all students in grade 5;share of students in grade 5 who did not meet the ca math standard and have parents who did not graduate from high school" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade6_Mathematics,"the number of students in grade 6 who did not meet the ca math standard divided by the number of students in grade 6 who have parents who did not graduate from high school;the percentage of students in grade 6 who have parents who did not graduate from high school and did not meet the ca math standard;number of students in grade 6 who did not meet the ca standard in mathematics and whose parents did not graduate from high school divided by the total number of students in grade 6;the number of students in school grade 6 who did not meet the ca standard in mathematics and whose parents have not graduated from high school, divided by the total number of students in school grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade7_Mathematics,number of students in grade 7 who did not meet the ca standard in mathematics and have parents who are not high school graduates as a percentage of the total number of students in grade 7;number of students in grade 7 who did not meet the ca standard in mathematics and have parents who are not high school graduates as a proportion of the total number of students in grade 7;the number of students in grade 7 who did not meet the ca standard in mathematics divided by the number of students in grade 7 who have parents with less than a high school diploma;the number of students in grade 7 who did not meet the ca standard in mathematics divided by the number of students in grade 7 who have parents who have not graduated from high school -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentLessThanHighSchoolGraduate_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade11_Mathematics,"number of 11th graders with some college but no degree who did not meet the ca math standard, divided by the total number of 11th graders with some college but no degree" -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_EnglishLanguageArts,"the number of students in grade 13 with some college but no degree who did not meet the ca_standard in english language arts, divided by the total number of students in grade 13 with some college but no degree" -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_EnglishLanguageArts,number of students in school grade 3 who have some college but no degree and did not meet the ca standard in english language arts divided by the total number of students in school grade 3 who have some college but no degree -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade3_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade4_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade5_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_EnglishLanguageArts,number of students in grade 6 with some college but no degree who did not meet the ca standard in english language arts divided by the total number of students in grade 6 with some college but no degree -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade6_Mathematics,"number of students in grade 6 who have not met the ca math standard and have some college but no degree, divided by the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_EnglishLanguageArts,"number of students in grade 7 with some college but no degree who did not meet the ca standard in english language arts divided by the total number of students in grade 7 with some college but no degree;the number of students in grade 7 who have some college but no degree and did not meet the ca_standard in english language arts, divided by the total number of students in grade 7 who have some college but no degree" -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade7_Mathematics,the percentage of students in grade 7 who have some college but no degree and did not meet the ca_standard in mathematics -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_EnglishLanguageArts,"number of students with some college but no degree in grade 8 who did not meet the ca standard in english language arts divided by the total number of students with some college but no degree in grade 8;number of 8th grade students with some college but no degree who have not met the ca standard in english language arts, divided by the total number of 8th grade students with some college but no degree" -Percent_CA_StandardNotMet_In_Count_Student_ParentSomeCollegeNoDegree_SchoolGrade8_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_EnglishLanguageArts,"the fraction of students who are english learners and who were reclassified as fluent proficient in english language arts but did not meet the ca_standard in school grade 11, out of all students who are english learners and who were reclassified as fluent proficient in english language arts in school grade 11;the percentage of english learners who were reclassified as fluent proficient in english language arts but did not meet the ca_standard in school grade 11, out of all english learners who were reclassified as fluent proficient in english language arts in school grade 11" -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade11_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_EnglishLanguageArts,"the percentage of students who are not proficient in english and are in the 13th grade and are taking english language arts, out of all the students who are reclassified as fluent proficient english learners in the 13th grade and are taking english language arts" -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade13_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade3_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_EnglishLanguageArts,"count of student: ca_standard not met, reclassified fluent proficient, english learner, school grade 4, english language arts (as fraction of count student reclassified fluent proficient english learner school grade 4 english language arts)" -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade4_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade5_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade6_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade7_Mathematics, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_ReclassifiedFluentProficient_EnglishLearner_SchoolGrade8_Mathematics,"fraction of 8th grade english learners who are reclassified as fluent proficient in mathematics but did not meet the ca standard;fraction of 8th grade english learners who are reclassified as fluent proficient in mathematics but did not meet the ca standard, expressed as a percentage;number of 8th grade english learners who are reclassified as fluent proficient in mathematics but did not meet the ca standard divided by the total number of 8th grade english learners" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts,"the number of students in grade 11 who did not meet the ca english language arts standard, as a percentage of the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_HavingHome, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_Homeless,percentage of homeless 11th grade students who did not meet the ca standard in english language arts;number of homeless 11th grade students who did not meet the ca standard in english language arts divided by the total number of homeless 11th grade students;percentage of 11th grade english language arts students who are homeless who did not meet the ca standard;the percentage of homeless students in grade 11 who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in 11th grade english language arts who are not economically disadvantaged and did not meet the ca standard, divided by the total number of students in 11th grade english language arts who are not economically disadvantaged;what number of non-economically disadvantaged 11th graders did not meet the ca_standard in english language arts, as a fraction of the total number of non-economically disadvantaged 11th graders?;what number of non-economically disadvantaged 11th graders did not meet the ca_standard in english language arts, expressed as a percentage of the total number of non-economically disadvantaged 11th graders?;percentage of students not meeting the ca standard in english language arts in grade 11 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotFoster,"number of students in grade 11 english language arts who did not meet the ca standard, not foster as a percentage of all students in grade 11 english language arts, not foster;number of students in grade 11 english language arts who did not meet the ca standard, not foster divided by the total number of students in grade 11 english language arts, not foster;the percentage of students in grade 11 who did not meet the ca_standard in english language arts and are not foster children;the number of students in grade 11 who did not meet the ca_standard in english language arts and are not foster children, divided by the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_EnglishLanguageArts_NotMigrant,"number of students in grade 11 who did not meet the ca standard in english language arts and are not migrants, divided by the total number of students in grade 11;number of students in grade 11 who did not meet the ca standard in english language arts who are not migrants divided by the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics,"the percentage of students in grade 11 who did not meet the ca mathematics standard;the number of students in grade 11 who did not meet the ca mathematics standard, divided by the total number of students in grade 11;the share of students in grade 11 who did not meet the ca mathematics standard;the percentage of students in grade 11 who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_HavingHome,percentage of students in grade 11 who did not meet the ca standard in mathematics and have a home;number of students in grade 11 who did not meet the ca standard in mathematics and have a home divided by the total number of students in grade 11;percentage of 11th grade students who did not meet the ca math standard and have a home;number of 11th grade students who did not meet the ca math standard and have a home divided by the total number of 11th grade students who have a home -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_Homeless,"the number of homeless students in grade 11 who did not meet the ca standard in mathematics divided by the total number of students in grade 11;the ratio of homeless students in grade 11 who did not meet the ca standard in mathematics to the total number of students in grade 11;the percentage of students in grade 11 who are homeless and did not meet the ca standard in mathematics;the number of homeless students in grade 11 who did not meet the ca standard in mathematics, divided by the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"the number of students in grade 11 who did not meet the ca math standard and are not economically disadvantaged, divided by the total number of students in grade 11 who are not economically disadvantaged;the number of students in grade 11 who did not meet the ca math standard and are not economically disadvantaged, as a percentage of all students in grade 11 who are not economically disadvantaged;the number of students in grade 11 who did not meet the ca math standard and are not economically disadvantaged, divided by the number of students in grade 11 who are not economically disadvantaged;the number of students in grade 11 who are not economically disadvantaged and did not meet the ca mathematics standard expressed as a percentage of the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_NotFoster,"the number of 11th grade students who did not meet the ca math standard and were not in foster care, divided by the total number of 11th grade students;the number of students in grade 11 who did not meet the ca math standard and who are not foster children, divided by the total number of students in grade 11;the fraction of students in grade 11 who did not meet the ca math standard and who are not foster children, out of all students in grade 11;the percentage of students in grade 11 who did not meet the ca math standard, out of all students in grade 11 who are not foster children" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade11_Mathematics_NotMigrant,"number of students in grade 11 who did not meet the ca standard in mathematics, not including migrant students, as a percentage of the total number of students in grade 11;percentage of students in grade 11 who did not meet the ca standard in mathematics, not including migrant students, out of all students in grade 11;the number of students in grade 11 who did not meet the ca standard in mathematics and were not migrants, divided by the total number of students in grade 11;number of students in grade 11 who did not meet the ca standard in mathematics, excluding migrant students, expressed as a fraction of the total number of students in grade 11" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts,the number of students in grade 13 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 13;number of students in grade 13 who did not meet the ca english language arts standard divided by the total number of students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Foster, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_HavingHome,"number of students in grade 13 english language arts who did not meet the ca standard and have a home, as a fraction of the total number of students in grade 13 english language arts;percentage of students in grade 13 english language arts who did not meet the ca standard and have a home;the number of students in grade 13 who did not meet the ca standard in english language arts and have a home divided by the total number of students in grade 13;the percentage of students in grade 13 who have a home and did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Homeless,percentage of homeless students in grade 13 who did not meet the ca standard in english language arts;number of homeless students in grade 13 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 13;number of homeless students in grade 13 who did not meet the ca standard in english language arts as a fraction of the total number of students in grade 13;the percentage of students in grade 13 who are homeless and did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_Migrant, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who did not meet the ca_standard in english language arts in school grade 13, who were not economically disadvantaged, divided by the total number of students in school grade 13 who were not economically disadvantaged;number of students in grade 13 who did not meet the ca english language arts standard and are not economically disadvantaged divided by the total number of students in grade 13;the number of students who did not meet the ca_standard in english language arts in school grade 13 and were not economically disadvantaged, divided by the total number of students in school grade 13 who were not economically disadvantaged;number of students in grade 13 who did not meet the ca standard in english language arts and were not economically disadvantaged divided by the total number of students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotFoster,number of students in grade 13 who did not meet the ca standard in english language arts who are not foster children divided by the total number of students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_EnglishLanguageArts_NotMigrant,number of students who did not meet the ca standard in english language arts in grade 13 who were not migrant divided by the total number of students in grade 13 who were not migrant;number of students in grade 13 who did not meet the ca standard in english language arts and are not migrant divided by the number of students in grade 13;number of students in grade 13 who did not meet the ca standard in english language arts and were not migrant divided by the total number of students in grade 13;number of students in grade 13 who did not meet the ca standard in english language arts who are not migrants as a percentage of the total number of students in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics,fraction of students in grade 13 who did not meet the ca math standard;percentage of students in grade 13 who did not meet the ca math standard;number of students in grade 13 who did not meet the ca math standard as a percentage of the total number of students in grade 13;share of students in grade 13 who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_Foster, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_HavingHome,"the number of students in grade 13 who did not meet the ca standard in mathematics and have a home divided by the total number of students in grade 13 who have a home;the number of students in grade 13 who did not meet the ca standard in mathematics and have a home as a percentage of the total number of students in grade 13 who have a home;the number of students in grade 13 who did not meet the ca mathematics standard and have a home, divided by the total number of students in grade 13;the number of students in grade 13 who have a home and did not meet the ca standard in mathematics, divided by the total number of students in grade 13 who have a home" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_Homeless,"the percentage of homeless students in grade 13 who did not meet the ca math standard;the number of homeless students in grade 13 who did not meet the ca math standard, as a percentage of all homeless students in grade 13;the number of homeless students in grade 13 who did not meet the ca math standard, divided by the total number of homeless students in grade 13;what is the percentage of homeless students in grade 13 who did not meet the ca standard in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_Migrant,"the number of students in grade 13 who are migrants and did not meet the ca standard in mathematics, as a percentage of the total number of students in grade 13;the number of students in grade 13 who did not meet the ca standard in mathematics and are also migrants, divided by the total number of students in grade 13;the number of students in grade 13 who are migrants and did not meet the ca standard in mathematics, expressed as a fraction of the total number of students in grade 13;the number of students in grade 13 who are migrants and did not meet the ca standard in mathematics, expressed as a percentage of the total number of students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 13 who are not economically disadvantaged and did not meet the ca math standard expressed as a percentage of the total number of students in grade 13;number of students in grade 13 who are not economically disadvantaged and did not meet the ca math standard, as a percentage of all students in grade 13 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_NotFoster,"number of students in grade 13 who did not meet the ca standard in mathematics, excluding foster students, divided by the total number of students in grade 13, excluding foster students;the number of students in grade 13 who did not meet the ca math standard and were not in foster care, divided by the total number of students in grade 13;number of students in grade 13 who did not meet the ca standard in mathematics and are not foster children, divided by the total number of students in grade 13;the number of students in grade 13 who did not meet the ca standard in mathematics and are not foster children, expressed as a percentage of the total number of students in grade 13" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade13_Mathematics_NotMigrant,"number of students in grade 13 who did not meet the ca standard in mathematics, excluding migrant students divided by the total number of students in grade 13;the number of students in school grade 13 who did not meet the ca mathematics standard and are not migrants, divided by the total number of students in school grade 13 who are not migrants;the number of students in grade 13 who did not meet the ca mathematics standard, who are not migrants, divided by the total number of students in grade 13 who are not migrants;the number of students who did not meet the ca standard in mathematics in grade 13 and were not migrants, divided by the total number of students in grade 13 who were not migrants" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts,number of students in grade 3 who did not meet the ca standard in english language arts divided by the total number of students in grade 3;number of students in grade 3 who did not meet the ca english language arts standard divided by the total number of students in grade 3;number of students in grade 3 who did not meet the ca english language arts standard as a percentage of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in english language arts as a fraction of the total number of students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_HavingHome,percentage of students in grade 3 who did not meet the ca english language arts standard and have a home;number of students in grade 3 who did not meet the ca english language arts standard and have a home divided by the total number of students in grade 3;ratio of students in grade 3 who did not meet the ca english language arts standard and have a home to the total number of students in grade 3;percentage of students in grade 3 english language arts who did not meet the ca standard and have a home -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_Homeless,percentage of students in grade 3 who are homeless and did not meet the ca standard in english language arts;number of students in grade 3 who are homeless and did not meet the ca standard in english language arts divided by the total number of students in grade 3;number of students in grade 3 who are homeless and did not meet the ca standard in english language arts as a percentage of the total number of students in grade 3;number of students in grade 3 who are homeless and did not meet the ca standard in english language arts as a fraction of the total number of students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in grade 3 who did not meet the ca_standard in english language arts and are not economically disadvantaged, divided by the total number of students in grade 3;number of students in grade 3 who did not meet the ca english language arts standard and are not economically disadvantaged divided by the total number of students in grade 3 who are not economically disadvantaged;the number of students in grade 3 who did not meet the ca english language arts standard and were not economically disadvantaged, divided by the total number of students in grade 3;number of students in grade 3 who are not economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of students in grade 3 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotFoster,"number of students in grade 3 who did not meet the ca english language arts standard who are not in foster care divided by the total number of students in grade 3 who are not in foster care;the number of students in grade 3 who did not meet the ca standard in english language arts, divided by the total number of students in grade 3 who were not in foster care;number of students in grade 3 who did not meet the ca standard in english language arts and are not foster children divided by the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in english language arts, excluding foster students, divided by the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_EnglishLanguageArts_NotMigrant,"number of students in grade 3 who did not meet the ca standard in english language arts and are not migrant as a percentage of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in english language arts, excluding migrant students, as a percentage of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in english language arts and are not migrant, as a percentage of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in english language arts and are not migrants divided by the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics,percentage of students in grade 3 who did not meet the ca math standard;number of students in grade 3 who did not meet the ca math standard divided by the total number of students in grade 3;share of students in grade 3 who did not meet the ca math standard;number of students in grade 3 who did not meet the ca math standard as a percentage of the total number of students in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_HavingHome,"the number of students in grade 3 who did not meet the ca standard in mathematics and have a home, divided by the total number of students in grade 3;the number of 3rd grade students who did not meet the ca math standard and have a home, divided by the total number of 3rd grade students;the number of grade 3 students who did not meet the ca mathematics standard and have a home, divided by the total number of grade 3 students;the number of students in grade 3 who did not meet the ca standard in mathematics and have a home divided by the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_Homeless,fraction of students in grade 3 who are homeless and did not meet the ca math standard;percentage of students in grade 3 who are homeless and did not meet the ca math standard;number of students in grade 3 who are homeless and did not meet the ca math standard divided by the total number of students in grade 3;proportion of students in grade 3 who are homeless and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 3 who are not economically disadvantaged and did not meet the ca math standard divided by the total number of students in grade 3 who are not economically disadvantaged;number of students in grade 3 who are not economically disadvantaged and did not meet the ca math standard expressed as a percentage of the total number of students in grade 3;number of students in grade 3 who did not meet the ca standard in mathematics and are not economically disadvantaged divided by the total number of students in grade 3 who are not economically disadvantaged;number of students in school grade 3 who are not economically disadvantaged and did not meet the ca_standard in mathematics, divided by the total number of students in school grade 3 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_NotFoster,"number of students in grade 3 who did not meet the ca mathematics standard, excluding foster students, divided by the total number of students in grade 3;number of students in grade 3 who did not meet the ca mathematics standard, excluding foster students, as a percentage of the total number of students in grade 3;the number of students in grade 3 who did not meet the ca math standard and are not in foster care, divided by the total number of students in grade 3;the number of students in grade 3 who did not meet the ca math standard and are not in foster care, expressed as a percentage of the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade3_Mathematics_NotMigrant,"the number of students in school grade 3 who did not meet the ca standard in mathematics and are not migrants, divided by the total number of students in school grade 3;number of grade 3 students who did not meet the ca math standard and are not migrant students, divided by the total number of grade 3 students;number of students in grade 3 who did not meet the ca math standard, who are not migrant, divided by the total number of students in grade 3 who are not migrant;the number of students in grade 3 who did not meet the ca math standard and are not migrant, divided by the total number of students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts,4th grade students who did not meet the ca english language arts standard as a fraction of all 4th grade students;percentage of 4th grade students who did not meet the ca english language arts standard;4th grade students who did not meet the ca english language arts standard as a percentage of all 4th grade students;number of 4th grade students who did not meet the ca english language arts standard divided by the total number of 4th grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,number of students in grade 4 who are economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of students in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_HavingHome,percent of students in grade 4 english language arts who did not meet the ca standard and have a home;percentage of students in grade 4 english language arts who did not meet the ca standard and have a home;portion of students in grade 4 english language arts who did not meet the ca standard and have a home;number of students in grade 4 english language arts who did not meet the ca standard and have a home divided by the total number of students in grade 4 english language arts -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_Homeless,"the number of students in grade 4 who did not meet the ca standard in english language arts and are homeless, as a percentage of all students in grade 4;the number of students in grade 4 who did not meet the ca standard in english language arts and are homeless, divided by the total number of students in grade 4;the number of homeless students in grade 4 who did not meet the ca standard in english language arts, divided by the total number of students in grade 4;the number of homeless students in grade 4 who did not meet the ca standard in english language arts, expressed as a percentage of the total number of students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students in grade 4 who did not meet the ca standard in english language arts and are not economically disadvantaged, divided by the total number of students in grade 4;fraction of students not meeting ca_standard in english language arts in grade 4 who are not economically disadvantaged;percentage of students not meeting ca_standard in english language arts in grade 4 who are not economically disadvantaged;number of students not meeting ca_standard in english language arts in grade 4 who are not economically disadvantaged divided by the total number of students in grade 4 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotFoster,"number of students in grade 4 who did not meet the ca english language arts standard, not in foster care, divided by the total number of students in grade 4, not in foster care;number of students in grade 4 who did not meet the ca standard in english language arts and are not foster children divided by the total number of students in grade 4;percentage of fourth grade students who did not meet the ca english language arts standard, who are not foster children;number of fourth grade students who did not meet the ca english language arts standard, divided by the total number of fourth grade students, who are not foster children" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_EnglishLanguageArts_NotMigrant,"the number of students in grade 4 who did not meet the ca_standard in english language arts and were not migrants, as a fraction of the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in english language arts and were not migrant, divided by the total number of students in grade 4;number of students in grade 4 who did not meet the ca standard in english language arts, excluding migrant students, as a percentage of the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in english language arts and were not migrant students divided by the total number of students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics,"percentage of students in grade 4 who did not meet the ca mathematics standard;number of students in grade 4 who did not meet the ca mathematics standard, as a proportion of the total number of students in grade 4;share of students in grade 4 who did not meet the ca mathematics standard;fraction of students in grade 4 who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_HavingHome,number of students in grade 4 who have not met the ca mathematics standard and have a home expressed as a percentage;number of students in grade 4 who did not meet the ca standard in mathematics and have a home divided by the total number of students in grade 4;number of students in grade 4 who did not meet the ca standard in mathematics and have a home expressed as a percentage of the total number of students in grade 4;number of fourth-grade students who have not met the ca mathematics standard and have a home divided by the total number of fourth-grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_Homeless,"percentage of homeless students in grade 4 who did not meet the ca math standard;number of homeless students in grade 4 who did not meet the ca math standard, as a percentage of all homeless students in grade 4;number of homeless students in grade 4 who did not meet the ca math standard, as a fraction of all students in grade 4;number of homeless students in grade 4 who did not meet the ca math standard, as a proportion of all students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,number of students in grade 4 who are not economically disadvantaged and did not meet the ca math standard expressed as a percentage of the total number of students in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_NotFoster,"number of students in grade 4 who did not meet the ca standard in mathematics and are not foster children divided by the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in mathematics and are not in foster care, expressed as a fraction of the total number of students in grade 4;the number of students in grade 4 who did not meet the ca math standard and are not in foster care, divided by the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in mathematics and were not in foster care, divided by the total number of students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade4_Mathematics_NotMigrant,"the number of students in grade 4 who did not meet the ca standard in mathematics and were not migrants, divided by the total number of students in grade 4;the number of students in grade 4 who did not meet the ca standard in mathematics and are not migrants, divided by the total number of students in grade 4;number of students in grade 4 who did not meet the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts,number of students in grade 5 who did not meet the ca english language arts standard divided by the total number of students in grade 5;number of students in grade 5 who did not meet the ca english language arts standard as a percentage of the total number of students in grade 5;percentage of 5th grade students who did not meet the ca english language arts standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_HavingHome,number of 5th grade students who have not met the ca english language arts standard and have a home divided by the total number of 5th grade students;the number of students in grade 5 who did not meet the ca standard in english language arts and have a home divided by the total number of students in grade 5;percentage of 5th grade students who did not meet the ca english language arts standard and have a home;number of 5th grade students who did not meet the ca english language arts standard and have a home divided by the total number of 5th grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_Homeless,"the number of students in grade 5 who did not meet the ca standard in english language arts and are homeless, expressed as a fraction of the total number of students in grade 5;the percentage of students in grade 5 who are homeless and did not meet the ca standard in english language arts;percentage of 5th grade students who are homeless and did not meet the ca english language arts standard;number of 5th grade students who are homeless and did not meet the ca english language arts standard divided by the total number of 5th grade students" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students in grade 5 who are not economically disadvantaged and did not meet the ca english language arts standard, divided by the total number of students in grade 5 who are not economically disadvantaged;percentage of students in grade 5 who are not economically disadvantaged and did not meet the ca english language arts standard, divided by the total number of students in grade 5;the number of students in school grade 5 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of students in school grade 5;the number of students in school grade 5 who are not economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of students in school grade 5 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotFoster,"the percentage of students in grade 5 who did not meet the ca_standard in english language arts and are not foster children;the number of students in grade 5 who did not meet the ca_standard in english language arts and are not foster children divided by the total number of students in grade 5;the ratio of students in grade 5 who did not meet the ca_standard in english language arts and are not foster children to the total number of students in grade 5;the number of students in grade 5 who did not meet the ca_standard in english language arts and are not in foster care, divided by the total number of students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_EnglishLanguageArts_NotMigrant,"the number of students in grade 5 who did not meet the ca standard in english language arts, divided by the total number of students in grade 5 who were not migrant students;number of students in grade 5 who did not meet the ca english language arts standard, not including migrant students, as a percentage of the total number of students in grade 5;number of students in grade 5 who did not meet the ca english language arts standard, not including migrant students, divided by the total number of students in grade 5;number of students in grade 5 who did not meet the ca english language arts standard who are not migrant divided by the total number of students in grade 5 who are not migrant" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics,"fraction of students in grade 5 who did not meet the ca math standard;percentage of students in grade 5 who did not meet the ca math standard;number of students in grade 5 who did not meet the ca math standard as a percentage of the total number of students in grade 5;percentage of students in grade 5 who did not meet the ca math standard, as a fraction of the total number of students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_HavingHome,"number of 5th grade students who did not meet the ca standard in mathematics and have a home divided by the total number of 5th grade students;percentage of students in grade 5 who did not meet the ca standard in mathematics and have a home;number of students in grade 5 who did not meet the ca standard in mathematics and have a home, divided by the total number of students in grade 5;the percentage of students in grade 5 who did not meet the ca math standard and have a home" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_Homeless,percentage of homeless 5th graders who did not meet the ca math standard;number of homeless 5th graders who did not meet the ca math standard divided by the total number of homeless 5th graders;share of homeless 5th graders who did not meet the ca math standard;the percentage of students in grade 5 who are homeless and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"the number of students in grade 5 who did not meet the ca math standard and are not economically disadvantaged, divided by the total number of students in grade 5 who are not economically disadvantaged;the number of students in grade 5 who did not meet the ca mathematics standard and are not economically disadvantaged, divided by the total number of students in grade 5 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_NotFoster,"the number of students in grade 5 who did not meet the ca math standard, excluding foster students, divided by the total number of students in grade 5;the number of students in grade 5 who did not meet the ca math standard and are not in foster care, as a percentage of the total number of students in grade 5;number of students in grade 5 who did not meet the ca math standard and are not foster children divided by the total number of students in grade 5" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade5_Mathematics_NotMigrant,"number of students in grade 5 who did not meet the ca standard in mathematics and were not migrants as a percentage of the total number of students in grade 5;the number of students in grade 5 who did not meet the ca standard in mathematics and were not migrant, divided by the total number of students in grade 5;number of students in grade 5 who did not meet the ca standard in mathematics, as a percentage of the total number of students in grade 5, excluding migrant students;number of students in grade 5 who did not meet the ca standard in mathematics, as a proportion of the total number of students in grade 5, excluding migrant students" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_HavingHome,the number of students in grade 6 who did not meet the ca standard in english language arts and who have a home divided by the total number of students in grade 6;percentage of students in 6th grade english language arts who did not meet the ca standard and have a home;number of students in grade 6 who did not meet the ca standard in english language arts who have a home as a fraction of the total number of students in grade 6 who have a home;percentage of students in grade 6 who did not meet the ca standard in english language arts who have a home -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_Homeless,the percentage of students in grade 6 who are homeless and did not meet the ca standard in english language arts;the number of homeless students in grade 6 who did not meet the ca standard in english language arts divided by the total number of students in grade 6;the number of homeless students in grade 6 who did not meet the ca standard in english language arts expressed as a percentage of the total number of students in grade 6;percentage of students in grade 6 who are homeless and did not meet the ca english language arts standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students in grade 6 who are not economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of students in grade 6 who are not economically disadvantaged;number of students in grade 6 who are not economically disadvantaged and did not meet the ca standard in english language arts expressed as a percentage of the total number of students in grade 6;3 the number of students in grade 6 who are not economically disadvantaged and did not meet the ca_standard in english language arts, divided by the total number of students in grade 6 who are not economically disadvantaged;5 the percentage of students in grade 6 who are not economically disadvantaged and did not meet the ca_standard in english language arts, expressed as a fraction" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotFoster,"the number of students in grade 6 who did not meet the ca_standard in english language arts and were not in foster care, divided by the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english language arts and were not in foster care divided by the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english language arts and are not foster children as a fraction of the total number of students in grade 6;number of students who did not meet the ca standard in english language arts in grade 6 who are not foster children divided by the total number of students in grade 6 who are not foster children" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_EnglishLanguageArts_NotMigrant,"the number of students in grade 6 who did not meet the ca standard in english language arts and are not migrant as a fraction of the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english language arts, not including migrant students, divided by the total number of students in grade 6;number of students in grade 6 who did not meet the ca standard in english language arts, not including migrant students, as a percentage of the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics,percentage of students in grade 6 who did not meet the ca mathematics standard;number of students in grade 6 who did not meet the ca mathematics standard as a percentage of the total number of students in grade 6;number of students in grade 6 who did not meet the ca mathematics standard as a fraction of the total number of students in grade 6;fraction of students in grade 6 who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_HavingHome,"fraction of students in grade 6 who have a home and did not meet the ca standard in mathematics, as a fraction of all students in grade 6;fraction of students in grade 6 who have a home and did not meet the ca standard in mathematics, as a percentage;number of students in grade 6 who did not meet the ca math standard and have a home, divided by the total number of students in grade 6 who have a home;percentage of students in grade 6 who did not meet the ca math standard and have a home" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_Homeless,percentage of homeless students in grade 6 who did not meet the ca math standard;number of homeless students in grade 6 who did not meet the ca math standard divided by the total number of homeless students in grade 6;number of homeless students in grade 6 who did not meet the ca math standard divided by the total number of students in grade 6;percentage of students in grade 6 who are homeless and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and did not meet the ca_standard in mathematics in grade 6, divided by the total number of students who are not economically disadvantaged and took the ca_standard in mathematics in grade 6;the number of students who did not meet the ca_standard in mathematics in grade 6 and are not economically disadvantaged, divided by the total number of students who are not economically disadvantaged in grade 6;number of students in grade 6 who are not economically disadvantaged and did not meet the ca mathematics standard, as a percentage of the total number of students in grade 6 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_NotFoster,"the number of students in grade 6 who did not meet the ca math standard and are not in foster care, divided by the total number of students in grade 6;number of students in grade 6 who did not meet the ca mathematics standard, not foster, as a percentage of the total number of students in grade 6;number of students in grade 6 who did not meet the ca mathematics standard, not foster, as a fraction of the total number of students in grade 6;the number of students in grade 6 who did not meet the ca math standard and were not in foster care, divided by the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade6_Mathematics_NotMigrant,"the number of students in grade 6 who did not meet the ca standard in mathematics and are not migrants, divided by the total number of students in grade 6;the number of students in grade 6 who did not meet the ca standard in mathematics, but were not migrants, divided by the total number of students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts,number of 7th grade students who did not meet the ca english language arts standard divided by the total number of 7th grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_HavingHome,percentage of students in grade 7 english language arts who did not meet the ca standard and have a home;number of students in grade 7 english language arts who did not meet the ca standard and have a home divided by the total number of students in grade 7 english language arts -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_Homeless,percentage of 7th grade students who are homeless and did not meet the ca standard in english language arts;number of 7th grade students who are homeless and did not meet the ca standard in english language arts divided by the total number of 7th grade students;number of 7th grade students who are homeless and did not meet the ca standard in english language arts as a percentage of all 7th grade students;number of students in grade 7 who are homeless and did not meet the ca english language arts standard as a percentage of the total number of students in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who did not meet the ca_standard in english language arts in school grade 7 and are not economically disadvantaged, divided by the total number of students in school grade 7 who are not economically disadvantaged;the number of students in grade 7 who did not meet the ca_standard in english language arts and were not economically disadvantaged, divided by the total number of students in grade 7;the number of students in grade 7 who did not meet the ca standard in english language arts and are not economically disadvantaged, divided by the total number of students in grade 7;the number of students in grade 7 who did not meet the ca standard in english language arts and are not economically disadvantaged, expressed as a fraction of the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotFoster,"number of students in grade 7 who did not meet the ca standard in english language arts and are not foster children divided by the total number of students in grade 7;number of students in grade 7 who did not meet the ca standard in english language arts and are not foster children, divided by the total number of students in grade 7;the number of students in grade 7 who did not meet the ca standard in english language arts and are not foster children, as a percentage of the total number of students in grade 7;number of students in grade 7 who did not meet the ca standard in english language arts and are not foster children as a percentage of all students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_EnglishLanguageArts_NotMigrant,"number of students in grade 7 who did not meet the ca standard in english language arts and were not migrant students, as a percentage of the total number of students in grade 7;number of students in grade 7 who did not meet the ca standard in english language arts who are not migrant as a percentage of the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics,fraction of 7th grade students who did not meet the ca math standard;percentage of 7th grade students who did not meet the ca math standard;number of 7th grade students who did not meet the ca math standard divided by the total number of 7th grade students;percent of 7th grade students who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_HavingHome,"number of 7th grade students who have not met the ca math standard and have a home as a fraction of the total number of 7th grade students;the number of students in grade 7 who did not meet the ca math standard and have a home, divided by the total number of students in grade 7;fraction of students in grade 7 who did not meet the ca math standard and have a home, as a fraction of all students in grade 7 who have a home;fraction of students in grade 7 who have a home and did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_Homeless,fraction of 7th grade students who are homeless and did not meet the ca math standard;percentage of 7th grade students who are homeless and did not meet the ca math standard;number of 7th grade students who are homeless and did not meet the ca math standard divided by the total number of 7th grade students;proportion of 7th grade students who are homeless and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,"the number of students in grade 7 who did not meet the ca mathematics standard and are not economically disadvantaged, divided by the total number of students in grade 7 who are not economically disadvantaged;number of students in grade 7 who did not meet the ca math standard and are not economically disadvantaged divided by the total number of students in grade 7 who are not economically disadvantaged;number of students in grade 7 who are not economically disadvantaged and did not meet the ca math standard divided by the total number of students in grade 7 who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_NotFoster,"the number of students in grade 7 who did not meet the ca math standard and are not in foster care, divided by the total number of students in grade 7;the number of students in grade 7 who did not meet the ca math standard and are not in foster care, expressed as a percentage of the total number of students in grade 7;the number of students in grade 7 who did not meet the ca math standard, divided by the total number of students in grade 7 who are not foster children;the number of students in grade 7 who did not meet the ca math standard, as a percentage of the total number of students in grade 7 who are not foster children" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade7_Mathematics_NotMigrant,"the number of students in grade 7 who did not meet the ca mathematics standard, who are not migrants, divided by the total number of students in grade 7 who are not migrants;number of students in grade 7 who did not meet the ca standard in mathematics, who are not migrants, divided by the total number of students in grade 7 who are not migrants;number of students in grade 7 who did not meet the ca mathematics standard, who are not migrants, divided by the total number of students in grade 7 who are not migrants;the number of students in grade 7 who did not meet the ca standard in mathematics and were not migrants divided by the total number of students in grade 7" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts,number of students in grade 8 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 8;percentage of 8th grade students who did not meet the ca standard in english language arts;number of 8th grade students who did not meet the ca standard in english language arts divided by the total number of 8th grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_HavingHome,percentage of students in grade 8 english language arts who did not meet the ca standard and have a home;percent of students in grade 8 english language arts who did not meet the ca standard and have a home;percentage of 8th grade students who have not met the ca english language arts standard and have a home;number of 8th grade students who have not met the ca english language arts standard and have a home divided by the total number of 8th grade students -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_Homeless,percentage of students in grade 8 who are homeless and did not meet the ca standard in english language arts;number of students in grade 8 who are homeless and did not meet the ca standard in english language arts divided by the total number of students in grade 8;percent of homeless students in grade 8 who did not meet the ca standard in english language arts;percentage of homeless students in grade 8 who did not meet the ca standard in english language arts -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of students in grade 8 who did not meet the ca standard in english language arts and are not economically disadvantaged divided by the total number of students in grade 8 who are not economically disadvantaged;number of students in grade 8 who did not meet the ca standard in english language arts and are not economically disadvantaged as a percentage of the total number of students in grade 8;number of students in grade 8 who are not economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of students in grade 8 who are not economically disadvantaged;number of students in grade 8 who are not economically disadvantaged and did not meet the ca standard in english language arts expressed as a percentage of the total number of students in grade 8 -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotFoster,"the number of students in grade 8 who did not meet the ca standard in english language arts and were not in foster care, divided by the total number of students in grade 8;number of students in 8th grade english language arts who did not meet the ca standard, not foster, as a percentage of all students in 8th grade english language arts;number of students in grade 8 who did not meet the ca standard in english language arts, excluding foster students, divided by the total number of students in grade 8;number of students in grade 8 who did not meet the ca standard in english language arts, excluding foster students, expressed as a percentage of the total number of students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_EnglishLanguageArts_NotMigrant,the number of students who did not meet the ca standard in english language arts in grade 8 who were not migrants divided by the total number of students in grade 8 who were not migrants -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics,fraction of students in grade 8 who did not meet the ca math standard;percentage of students in grade 8 who did not meet the ca math standard;number of students in grade 8 who did not meet the ca math standard as a percentage of the total number of students in grade 8;percent of students in grade 8 who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_HavingHome,percentage of students in grade 8 who did not meet the ca math standard and have a home;number of students in grade 8 who did not meet the ca math standard and have a home divided by the total number of students in grade 8 who have a home;the percentage of students in grade 8 who did not meet the ca math standard and have a home;the fraction of students in grade 8 who have a home and did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_Homeless,"the number of homeless 8th grade students who did not meet the ca standard in mathematics divided by the total number of homeless 8th grade students;the percentage of homeless students in 8th grade who did not meet the ca math standard;the number of homeless 8th grade students who did not meet the ca math standard, divided by the total number of homeless 8th grade students;fraction of homeless students in 8th grade who did not meet the ca math standard" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,number of students not meeting the ca standard in mathematics in grade 8 who are not economically disadvantaged as a percentage of the total number of students not meeting the ca standard in mathematics in grade 8 who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_NotFoster,"number of students in grade 8 who did not meet the ca math standard, not in foster care, divided by the total number of students in grade 8, not in foster care;the number of students in grade 8 who did not meet the ca math standard and were not in foster care, divided by the total number of students in grade 8;the number of students in grade 8 who did not meet the ca mathematics standard and are not in foster care, divided by the total number of students in grade 8;number of 8th grade math students who did not meet the ca standard, excluding foster students divided by the total number of 8th grade math students, excluding foster students" -Percent_CA_StandardNotMet_In_Count_Student_SchoolGrade8_Mathematics_NotMigrant,"the number of students in grade 8 who did not meet the ca standard in mathematics and are not migrants, divided by the total number of students in grade 8;number of students in grade 8 who did not meet the ca standard in mathematics and are not migrants divided by the total number of students in grade 8;number of students in grade 8 who did not meet the ca standard in mathematics and are not migrants as a percentage of the total number of students in grade 8;number of students in grade 8 who did not meet the ca standard in mathematics divided by the total number of students in grade 8 who are not migrants" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts,"number of students who are two or more races and in grade 11 who did not meet the ca standard in english language arts divided by the total number of students who are two or more races and in grade 11;the percentage of students who did not meet the ca standard in english language arts, who are two or more races, in school grade 11;the number of students who are two or more races and in school grade 11 who did not meet the ca standard in english language arts, divided by the total number of students who are two or more races and in school grade 11;the number of students who are two or more races and in school grade 11 who did not meet the ca standard in english language arts, expressed as a percentage of the total number of students who are two or more races and in school grade 11" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged,"what number of students in school grade 11 who are not economically disadvantaged and identify as two or more races did not meet the ca_standard in english language arts out of all the students in school grade 11 who are not economically disadvantaged and identify as two or more races?;what number of students in school grade 11 who are not economically disadvantaged and identify as two or more races did not meet the ca_standard in english language arts out of all the students in school grade 11?;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 11, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 11;the fraction of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 11, out of all students who are not economically disadvantaged and identify as two or more races in school grade 11" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics,percentage of students in 11th grade mathematics who are two or more races and did not meet the ca standard;number of students in 11th grade mathematics who are two or more races and did not meet the ca standard divided by the total number of students in 11th grade mathematics who are two or more races;share of students in 11th grade mathematics who are two or more races and did not meet the ca standard;percentage of students in grade 11 who identify as two or more races and did not meet the ca standard in mathematics -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged,"number of students in school grade 11 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in school grade 11 who are not economically disadvantaged and identify as two or more races;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 11, divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 11;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 11, expressed as a percentage of the total number of students who are not economically disadvantaged and identify as two or more races in grade 11;the number of students who are not economically disadvantaged and who are two or more races and in school grade 11 and who did not meet the ca_standard in mathematics divided by the total number of students who are not economically disadvantaged and who are two or more races and in school grade 11" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts,the number of students who are two or more races and in grade 13 who did not meet the ca standard in english language arts divided by the total number of students who are two or more races and in grade 13;number of students who are two or more races and in grade 13 who did not meet the ca standard in english language arts divided by the total number of students who are two or more races and in grade 13;the number of students who are two or more races and did not meet the ca standard in english language arts in school grade 13 divided by the total number of students who are two or more races in school grade 13;the percentage of students who are two or more races and did not meet the ca standard in english language arts in school grade 13 out of all students who are two or more races in school grade 13 -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged,the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 13;the fraction of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 13 out of all students who are not economically disadvantaged and identify as two or more races in school grade 13;the percentage of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 13 out of 100 students who are not economically disadvantaged and identify as two or more races in school grade 13;3 the fraction of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 13 relative to the total number of students who are not economically disadvantaged and identify as two or more races -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics,percentage of students in grade 13 who are two or more races and did not meet the ca math standard;share of students in grade 13 who are two or more races and did not meet the ca math standard;number of students of two or more races who did not meet the ca standard in mathematics in grade 13 divided by the total number of students of two or more races in grade 13;percentage of students in grade 13 who are two or more races and did not meet the ca standard in mathematics -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in mathematics in school grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 13;the percentage of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in mathematics in school grade 13 out of all students who are not economically disadvantaged and identify as two or more races in school grade 13;number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 13;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 13 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts,"the percentage of students who did not meet the ca standard in english language arts in school grade 3, who are of two or more races;the number of students of two or more races who did not meet the ca standard in english language arts in school grade 3, divided by the total number of students of two or more races in school grade 3;number of students who are two or more races and did not meet the ca standard in english language arts in grade 3 divided by the total number of students who are two or more races in grade 3;percentage of students in grade 3 who are two or more races and did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of students who are two or more races, economically disadvantaged, and did not meet the ca_standard in english language arts in school grade 3 divided by the total number of students who are two or more races in school grade 3" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students in grade 3 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts divided by the total number of students in grade 3 who are not economically disadvantaged and identify as two or more races;number of students who are not economically disadvantaged and are two or more races who did not meet the ca standard in english language arts in grade 3, divided by the total number of students who are not economically disadvantaged and are two or more races in grade 3;number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts in grade 3, divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 3;percent of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts in grade 3, out of all students who are not economically disadvantaged and identify as two or more races in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics,"percentage of students in school grade 3 who are two or more races and did not meet the ca standard in mathematics;number of students in school grade 3 who are two or more races and did not meet the ca standard in mathematics divided by the total number of students in school grade 3 who are two or more races;share of students in school grade 3 who are two or more races and did not meet the ca standard in mathematics;the number of students who are of two or more races and did not meet the ca standard in mathematics in school grade 3, divided by the total number of students who are of two or more races in school grade 3" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,"number of students in grade 3 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in grade 3 who are not economically disadvantaged and identify as two or more races;the number of students who are not economically disadvantaged and who are two or more races and who are in school grade 3 and who did not meet the ca_standard in mathematics, divided by the total number of students who are not economically disadvantaged and who are two or more races and who are in school grade 3;the percentage of students who are not economically disadvantaged and who are two or more races and who are in school grade 3 and who did not meet the ca_standard in mathematics, out of all students who are not economically disadvantaged and who are two or more races and who are in school grade 3;number of students in school grade 3 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in school grade 3 who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts,"what percentage of students of two or more races in school grade 4 failed to meet the ca standard in english language arts?;the percentage of students who did not meet the ca standard in english language arts in school grade 4, who are two or more races;the number of students who are two or more races and did not meet the ca standard in english language arts in school grade 4, divided by the total number of students who are two or more races in school grade 4;the percentage of students who are two or more races and did not meet the ca standard in english language arts in school grade 4, out of all students" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 4, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 4;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 4, expressed as a percentage of the total number of students who are not economically disadvantaged and identify as two or more races in school grade 4;number of students who are not economically disadvantaged and are two or more races who did not meet the ca standard in english language arts in grade 4 divided by the total number of students who are not economically disadvantaged and are two or more races in grade 4;number of students in grade 4 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts divided by the total number of students in grade 4 who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics,"the number of students who are two or more races and did not meet the ca standard in mathematics in school grade 4, divided by the total number of students who are two or more races in school grade 4;the number of students who are two or more races and did not meet the ca standard in mathematics in school grade 4, expressed as a fraction of the total number of students in school grade 4;the number of students who are two or more races and did not meet the ca standard in mathematics in school grade 4, expressed as a percentage of the total number of students in school grade 4;percentage of students in grade 4 who are two or more races and did not meet the ca standard in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_EconomicallyDisadvantaged,"the number of students who are two or more races, school grade 4, mathematics, and economically disadvantaged who did not meet the ca_standard divided by the total number of students who are two or more races, school grade 4, mathematics, and economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged,"the number of students who are two or more races, in grade 4, not economically disadvantaged, and did not meet the ca standard in mathematics, divided by the total number of students who are two or more races, in grade 4, not economically disadvantaged;number of students of two or more races in grade 4 who did not meet the ca standard in mathematics and were not economically disadvantaged divided by the total number of students of two or more races in grade 4;the number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in mathematics in school grade 4, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 4" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts,percentage of students of two or more races in grade 5 who did not meet the ca standard in english language arts;number of students of two or more races in grade 5 who did not meet the ca standard in english language arts divided by the total number of students of two or more races in grade 5;percentage of students in grade 5 who are two or more races and did not meet the ca standard in english language arts;number of students in grade 5 who are two or more races and did not meet the ca standard in english language arts divided by the total number of students in grade 5 who are two or more races -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged,"the number of students who are not economically disadvantaged and are two or more races who did not meet the ca_standard in english language arts in school grade 5 divided by the total number of students who are not economically disadvantaged and are two or more races in school grade 5;number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts in grade 5 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 5;2 the proportion of students who are of two or more races, are not economically disadvantaged, and did not meet the ca_standard in english language arts in school grade 5;3 the number of students who are of two or more races, are not economically disadvantaged, and did not meet the ca_standard in english language arts in school grade 5, divided by the total number of students who are of two or more races and are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics,"the number of students who are of two or more races and did not meet the ca standard in mathematics in school grade 5, divided by the total number of students who are of two or more races in school grade 5;the percentage of students in school grade 5 who are of two or more races and did not meet the ca standard in mathematics;number of students who are two or more races and in grade 5 who did not meet the ca standard in mathematics divided by the total number of students who are two or more races and in grade 5;percentage of students in grade 5 who are two or more races and did not meet the ca standard in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged,"number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 5 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 5;the number of students in school grade 5 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in school grade 5 who are not economically disadvantaged and identify as two or more races;the number of students who are not economically disadvantaged and who are two or more races and who are in school grade 5 and who did not meet the ca standard in mathematics, divided by the total number of students who are not economically disadvantaged and who are two or more races and who are in school grade 5;the number of students who are two or more races and who are not economically disadvantaged, who did not meet the ca standard in mathematics in school grade 5, divided by the total number of students who are two or more races and who are not economically disadvantaged" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts,"the number of students who are two or more races and did not meet the ca standard in english language arts in school grade 6, divided by the total number of students who are two or more races in school grade 6;the percentage of students who are two or more races and did not meet the ca standard in english language arts in school grade 6, out of all students who are two or more races in school grade 6;number of students who are two or more races and did not meet the ca standard in english language arts in grade 6 divided by the total number of students who are two or more races in grade 6;number of students in grade 6 who are two or more races and did not meet the ca standard in english language arts as a fraction of the total number of students in grade 6 who are two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,"percentage of students who are not economically disadvantaged, identify as two or more races, are in grade 6, and did not meet the ca standard in english language arts;number of students who are not economically disadvantaged, identify as two or more races, are in grade 6, and did not meet the ca standard in english language arts;percent of students who are not economically disadvantaged, identify as two or more races, are in grade 6, and did not meet the ca standard in english language arts;number of students in grade 6 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts divided by the total number of students in grade 6 who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics,"the number of students who identify as two or more races and did not meet the ca standard in mathematics in school grade 6, divided by the total number of students who identify as two or more races in school grade 6;percentage of students in grade 6 who are two or more races and did not meet the ca standard in mathematics;number of students in grade 6 who are two or more races and did not meet the ca standard in mathematics divided by the total number of students in grade 6 who are two or more races;share of students in grade 6 who are two or more races and did not meet the ca standard in mathematics" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"number of students who are not economically disadvantaged and are two or more races who did not meet the ca standard in grade 6 mathematics divided by the total number of students who are not economically disadvantaged and are two or more races in grade 6;number of students in grade 6 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in grade 6 who are not economically disadvantaged and identify as two or more races;the number of students who are not economically disadvantaged and who did not meet the ca_standard in mathematics in school grade 6 and who are of two or more races, divided by the total number of students who are not economically disadvantaged and who are of two or more races in school grade 6;the number of students who are not economically disadvantaged and who did not meet the ca_standard in mathematics in school grade 6 and who are of two or more races, expressed as a percentage of all students who are not economically disadvantaged and who are of two or more races in school grade 6" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts,"the number of students who are two or more races and did not meet the ca standard in english language arts in school grade 7, divided by the total number of students who are two or more races in school grade 7;the fraction of students who are two or more races and did not meet the ca standard in english language arts in school grade 7, out of all students who are two or more races in school grade 7;number of students of two or more races in grade 7 who did not meet the ca standard in english language arts divided by the total number of students of two or more races in grade 7;percentage of students in grade 7 who are two or more races and did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts in grade 7 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 7;the number of students who are two or more races, not economically disadvantaged, and in school grade 7 who did not meet the ca_standard in english language arts, divided by the total number of students who are two or more races, not economically disadvantaged, and in school grade 7;the percentage of students who are two or more races, not economically disadvantaged, and in school grade 7 who did not meet the ca_standard in english language arts, out of all students who are two or more races, not economically disadvantaged, and in school grade 7;number of students in grade 7 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts divided by the total number of students in grade 7 who are not economically disadvantaged and identify as two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics,"number of students in grade 7 who did not meet the ca standard in mathematics, divided by the total number of students in grade 7 who identify as two or more races;the number of students who are two or more races and did not meet the ca standard in mathematics in grade 7, divided by the total number of students who are two or more races in grade 7;the number of students in grade 7 who are two or more races and did not meet the ca standard in mathematics, as a percentage of the total number of students in grade 7 who are two or more races;the number of students who are of two or more races and did not meet the ca standard in mathematics in school grade 7, divided by the total number of students who are of two or more races in school grade 7" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged,number of students in school grade 7 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in school grade 7 who are not economically disadvantaged and identify as two or more races;number of students in grade 7 who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics divided by the total number of students in grade 7 who are not economically disadvantaged and identify as two or more races;number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 7 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 7;share of students not meeting ca standards in math in grade 7 who are two or more races and not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts,"percentage of students of two or more races in grade 8 who did not meet the ca standard in english language arts;number of students of two or more races in grade 8 who did not meet the ca standard in english language arts divided by the total number of students of two or more races in grade 8;count of student: ca_standard not met, two or more races, school grade 8, english language arts (as fraction of count student two or more races school grade 8 english language arts);the percentage of students who did not meet the ca standard in english language arts in school grade 8 who are of two or more races" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged,"number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in english language arts in grade 8 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 8;number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 8, divided by the total number of students who are not economically disadvantaged and identify as two or more races in school grade 8;the percentage of students who are not economically disadvantaged and identify as two or more races who did not meet the ca_standard in english language arts in school grade 8, out of all students who are not economically disadvantaged and identify as two or more races in school grade 8" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics,"percentage of students in grade 8 who are two or more races and did not meet the ca standard in mathematics;number of students in grade 8 who are two or more races and did not meet the ca standard in mathematics divided by the total number of students in grade 8 who are two or more races;share of students in grade 8 who are two or more races and did not meet the ca standard in mathematics;the number of students who identify as two or more races and did not meet the ca standard in mathematics in grade 8, divided by the total number of students who identify as two or more races in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_TwoOrMoreRaces_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged,"number of students who are not economically disadvantaged and identify as two or more races who did not meet the ca standard in mathematics in grade 8 divided by the total number of students who are not economically disadvantaged and identify as two or more races in grade 8;the number of students who are not economically disadvantaged and who are two or more races and who are in school grade 8 and who did not meet the ca_standard in mathematics, divided by the total number of students who are not economically disadvantaged and who are two or more races and who are in school grade 8;the percentage of students who are not economically disadvantaged and who are two or more races and who are in school grade 8 and who did not meet the ca_standard in mathematics, out of all students who are not economically disadvantaged and who are two or more races and who are in school grade 8" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts,"percentage of white 11th grade students who did not meet the ca english language arts standard;number of white 11th grade students who did not meet the ca english language arts standard divided by the total number of white 11th grade students;number of white 11th grade students who did not meet the ca english language arts standard, divided by the total number of white 11th grade students;percentage of white 11th grade students who did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_Mathematics,"the number of white 11th grade students who did not meet the ca math standard, divided by the total number of white 11th grade students;number of white 11th grade students who did not meet the ca math standard divided by the total number of white 11th grade students;white 11th grade students who did not meet the ca math standard as a percentage of all white 11th grade students;the number of white 11th grade students who did not meet the ca standard in mathematics divided by the total number of white 11th grade students" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade11_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts,"number of white 13th grade students who did not meet the ca english language arts standard divided by the total number of white 13th grade students;the percentage of white students in grade 13 who did not meet the ca standard in english language arts;the number of white students in grade 13 who did not meet the ca standard in english language arts, divided by the total number of white students in grade 13;percentage of white students in grade 13 who did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_Mathematics,the number of white 13th graders who did not meet the ca math standard divided by the total number of white 13th graders;number of white students in grade 13 who did not meet the ca math standard divided by the total number of white students in grade 13;percentage of white students in grade 13 who did not meet the ca math standard in mathematics -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade13_Mathematics_NotEconomicallyDisadvantaged,"number of white, not economically disadvantaged 13th grade students who did not meet the ca math standard divided by the total number of white, not economically disadvantaged 13th grade students" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts,"percentage of white students in grade 3 who did not meet the ca standard in english language arts;number of white students in grade 3 who did not meet the ca standard in english language arts divided by the total number of white students in grade 3;number of white students in grade 3 who did not meet the ca standard in english language arts as a proportion of the total number of white students in grade 3;the number of white students in grade 3 who did not meet the ca standard in english language arts, divided by the total number of white students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 3 who did not meet the ca_standard in english language arts, divided by the total number of white, economically disadvantaged students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_EnglishLanguageArts_NotEconomicallyDisadvantaged,the number of white students in school grade 3 who did not meet the ca_standard in english language arts and are not economically disadvantaged divided by the total number of white students in school grade 3 -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_Mathematics,"number of white students in grade 3 who did not meet the ca math standard divided by the total number of white students in grade 3;the number of white students in grade 3 who did not meet the ca math standard, divided by the total number of white students in grade 3" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade3_Mathematics_NotEconomicallyDisadvantaged,number of white students in grade 3 who are not economically disadvantaged and did not meet the ca math standard divided by the total number of white students in grade 3 who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts,"the percentage of white students in grade 4 who did not meet the ca standard in english language arts;the number of white students in grade 4 who did not meet the ca standard in english language arts, divided by the total number of white students in grade 4;percentage of white students in grade 4 who did not meet the ca english language arts standard;number of white students in grade 4 who did not meet the ca english language arts standard divided by the total number of white students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 4 who did not meet the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 4;the number of white, economically disadvantaged students in grade 4 who did not meet the ca_standard in english language arts expressed as a percentage of the total number of white, economically disadvantaged students in grade 4;the number of white, economically disadvantaged students in grade 4 who did not meet the ca standard in english language arts, divided by the total number of white, economically disadvantaged students in grade 4" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_Mathematics,"number of white 4th grade students who did not meet the ca math standard divided by the total number of white 4th grade students;the number of white students in grade 4 who did not meet the ca math standard, divided by the total number of white students in grade 4;number of white fourth-grade students who did not meet the ca mathematics standard divided by the total number of white fourth-grade students;number of white fourth-grade students who did not meet the ca mathematics standard expressed as a percentage of the total number of white fourth-grade students" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade4_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts,"percentage of white students in grade 5 who did not meet the ca standard in english language arts;number of white students in grade 5 who did not meet the ca standard in english language arts, divided by the total number of white students in grade 5;percentage of white 5th graders who did not meet the ca standard in english language arts;number of white 5th graders who did not meet the ca standard in english language arts divided by the total number of white 5th graders" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in school grade 5 who did not meet the ca_standard in english language arts, divided by the total number of white, economically disadvantaged students in school grade 5" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_Mathematics,"number of white 5th grade students who did not meet the ca math standard divided by the total number of white 5th grade students;the number of white 5th grade students who did not meet the ca standard in mathematics divided by the total number of white 5th grade students;the number of white 5th graders who did not meet the ca math standard, divided by the total number of white 5th graders" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade5_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts,percentage of white students in grade 6 who did not meet the ca standard in english language arts;number of white students in grade 6 who did not meet the ca standard in english language arts divided by the total number of white students in grade 6;number of white students in grade 6 who did not meet the ca standard in english language arts as a percentage of the total number of white students in grade 6;number of white students in grade 6 who did not meet the ca standard in english language arts as a proportion of the total number of white students in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 6 who did not meet the ca_standard in english language arts, divided by the total number of white, economically disadvantaged students in grade 6" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_EnglishLanguageArts_NotEconomicallyDisadvantaged,number of white students in grade 6 who are not economically disadvantaged and did not meet the ca standard in english language arts divided by the total number of white students in grade 6 who are not economically disadvantaged -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_Mathematics,percentage of white 6th grade students who did not meet the ca math standard;number of white 6th grade students who did not meet the ca math standard divided by the total number of white 6th grade students;white 6th grade students who did not meet the ca math standard as a percentage of all white 6th grade students;percentage of white 6th graders who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade6_Mathematics_NotEconomicallyDisadvantaged,"number of white, non-economically disadvantaged 6th graders who did not meet the ca math standard divided by the total number of white, non-economically disadvantaged 6th graders" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts,"percentage of white 7th grade students who did not meet the ca english language arts standard;number of white 7th grade students who did not meet the ca english language arts standard divided by the total number of white 7th grade students;the number of white students in grade 7 who did not meet the ca_standard in english language arts, divided by the total number of white students in grade 7;the percentage of white students in grade 7 who did not meet the ca_standard in english language arts, expressed as a fraction" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_Mathematics,"number of white 7th grade students who did not meet the ca math standard divided by the total number of white 7th grade students;the number of white students in grade 7 who did not meet the ca standard in mathematics, divided by the total number of white students in grade 7;percentage of white 7th graders who did not meet the ca math standard;number of white 7th graders who did not meet the ca math standard as a percentage of all white 7th graders" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade7_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts,"the percentage of white students in 8th grade who did not meet the ca standard in english language arts;the number of white students in 8th grade who did not meet the ca standard in english language arts, divided by the total number of white students in 8th grade;the percentage of white students in 8th grade who did not meet the ca standard in english language arts, expressed as a fraction;percentage of white 8th grade students who did not meet the ca standard in english language arts" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_EconomicallyDisadvantaged,"the number of white, economically disadvantaged students in grade 8 who did not meet the ca_standard in english language arts divided by the total number of white, economically disadvantaged students in grade 8" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_EnglishLanguageArts_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_Mathematics,"number of white 8th grade students who did not meet the ca math standard as a percentage of the total number of white 8th grade students;the number of white 8th grade students who did not meet the ca math standard, divided by the total number of white 8th grade students;number of white 8th grade students who did not meet the ca math standard divided by the total number of white 8th grade students;number of white 8th grade students in california who did not meet the math standard divided by the total number of white 8th grade students in california" -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_Mathematics_EconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_White_SchoolGrade8_Mathematics_NotEconomicallyDisadvantaged, -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade11_EnglishLanguageArts,the percentage of students with disabilities in grade 11 who did not meet the ca standard in english language arts;the number of students with disabilities in grade 11 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 11;the number of students with disabilities in grade 11 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 11;percentage of students with disabilities in 11th grade english language arts who did not meet the ca standard -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade11_Mathematics,percentage of students with disabilities in grade 11 who did not meet the ca math standard;number of students with disabilities in grade 11 who did not meet the ca math standard divided by the total number of students with disabilities in grade 11;share of students with disabilities in grade 11 who did not meet the ca math standard;percentage of students with disabilities who did not meet the ca standard in 11th grade mathematics -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade13_EnglishLanguageArts,number of students with disabilities in grade 13 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 13;number of students with disabilities in grade 13 who did not meet the ca english language arts standard divided by the total number of students with disabilities in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade13_Mathematics,number of students with disabilities in grade 13 who did not meet the ca standard in mathematics divided by the total number of students with disabilities in grade 13;number of students with disabilities in grade 13 who did not meet the ca mathematics standard as a percentage of the total number of students with disabilities in grade 13;number of students with disabilities in grade 13 who did not meet the ca mathematics standard as a proportion of the total number of students in grade 13;number of students with disabilities in grade 13 who did not meet the ca mathematics standard divided by the total number of students with disabilities in grade 13 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade3_EnglishLanguageArts,number of students with disabilities in grade 3 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 3;share of students with disabilities in grade 3 who did not meet the ca standard in english language arts;number of students with disabilities in grade 3 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade3_Mathematics,number of students with disabilities in grade 3 who did not meet the ca mathematics standard divided by the total number of students with disabilities in grade 3;share of students with disabilities in grade 3 who did not meet the ca mathematics standard;share of students with disabilities in grade 3 who did not meet the ca standard in mathematics;number of students with disabilities in grade 3 who did not meet the ca standard in mathematics divided by the total number of students with disabilities in grade 3 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade4_EnglishLanguageArts,the number of students with disabilities in grade 4 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 4;number of students with disabilities in grade 4 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 4;share of students with disabilities in grade 4 who did not meet the ca standard in english language arts;number of students with disabilities in grade 4 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 4 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade4_Mathematics,"number of students with disabilities in grade 4 who did not meet the ca standard in mathematics divided by the total number of students with disabilities in grade 4;share of students with disabilities in grade 4 who did not meet the ca standard in mathematics;the number of students with disabilities who did not meet the ca standard in mathematics in school grade 4, as a fraction of the total number of students with disabilities in school grade 4;the percentage of students with disabilities in school grade 4 who did not meet the ca standard in mathematics, out of all students with disabilities in school grade 4" -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade5_EnglishLanguageArts,number of students with disabilities in grade 5 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 5;share of students with disabilities in grade 5 who did not meet the ca standard in english language arts;number of students with disabilities in grade 5 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 5;number of students with disabilities in grade 5 who did not meet the ca standard in english language arts expressed as a percentage of the total number of students in grade 5 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade5_Mathematics,percentage of students with disabilities in grade 5 who did not meet the ca math standard;number of students with disabilities in grade 5 who did not meet the ca math standard divided by the total number of students with disabilities in grade 5;number of students with disabilities in grade 5 who did not meet the ca math standard expressed as a percentage of the total number of students in grade 5;percent of students with disabilities in grade 5 who did not meet the ca math standard -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade6_EnglishLanguageArts,number of students with disabilities in grade 6 who did not meet the ca standard in english language arts as a fraction of the total number of students with disabilities in grade 6;number of students with disabilities in grade 6 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 6;percentage of students in grade 6 with disabilities who did not meet the ca standard in english language arts;number of students with disabilities in grade 6 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade6_Mathematics,percentage of students with disabilities in grade 6 who did not meet the ca math standard;number of students with disabilities in grade 6 who did not meet the ca math standard as a percentage of the total number of students with disabilities in grade 6;share of students with disabilities in grade 6 who did not meet the ca math standard;number of students with disabilities in grade 6 who did not meet the ca mathematics standard as a percentage of the total number of students with disabilities in grade 6 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade7_EnglishLanguageArts,the number of students with disabilities in grade 7 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 7;the number of students with disabilities in grade 7 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 7;number of students with disabilities in grade 7 who did not meet the ca standard in english language arts divided by the total number of students with disabilities in grade 7;number of students with disabilities in grade 7 who did not meet the ca standard in english language arts as a percentage of the total number of students in grade 7 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade7_Mathematics,number of students with disabilities in grade 7 who did not meet the ca standard in mathematics divided by the total number of students with disabilities in grade 7;number of students with disabilities in grade 7 who did not meet the ca standard in mathematics divided by the total number of students in grade 7;number of students with disabilities who did not meet the ca standard in grade 7 mathematics divided by the total number of students with disabilities in grade 7 mathematics;share of students with disabilities in grade 7 mathematics who did not meet the ca standard -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade8_EnglishLanguageArts,percentage of students with disabilities in grade 8 who did not meet the ca standard in english language arts;number of students with disabilities in grade 8 who did not meet the ca standard in english language arts as a percentage of the total number of students with disabilities in grade 8;share of students with disabilities in grade 8 who did not meet the ca standard in english language arts;percentage of students with disabilities who did not meet the ca standard in english language arts in grade 8 -Percent_CA_StandardNotMet_In_Count_Student_WithDisability_SchoolGrade8_Mathematics,percentage of students with disabilities in grade 8 who did not meet the ca math standard;number of students with disabilities in grade 8 who did not meet the ca math standard divided by the total number of students with disabilities in grade 8;number of students with disabilities in grade 8 who did not meet the ca math standard divided by the total number of students in grade 8;percent of students in grade 8 with disabilities who did not meet the ca math standard -Percent_Daily_TobaccoSmoking_Cigarettes_In_Count_Person,what is the proportion of the population that smokes cigarettes daily? -Percent_Daily_TobaccoSmoking_Cigarettes_In_Count_Person_Female,female smoking rates;cigarette smoking among women;women who smoke cigarettes;female tobacco use -Percent_Daily_TobaccoSmoking_Cigarettes_In_Count_Person_Male,1 what percentage of men smoke cigarettes daily?;2 what is the daily cigarette smoking rate among men?;3 what is the percentage of men who smoke cigarettes every day?;4 what is the daily prevalence of cigarette smoking among men? -Percent_Daily_TobaccoUsing_In_Count_Person,what is the rate of daily tobacco use?;how common is daily tobacco use?;how many people use tobacco every day?;how widespread is daily tobacco use? -Percent_Daily_TobaccoUsing_In_Count_Person_Female,what is the rate of daily tobacco use among females?;what is the prevalence of daily tobacco use among females?;how common is daily tobacco use among females?;what is the rate of daily tobacco use among women? -Percent_Daily_TobaccoUsing_In_Count_Person_Male,what is the rate of daily tobacco use among males?;what is the prevalence of daily tobacco use among males?;how common is daily tobacco use among males?;what is the rate of daily tobacco use among men? -Percent_LiveBirthPregnancyEvent_AnyBreastfeedingAt8Weeks_8WeeksAfterPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,what percentage of babies are breastfed at 8 weeks?;what is the percentage of live births that are breastfed at 8 weeks?;what percentage of babies are still being breastfed at 8 weeks?;what percentage of mothers are breastfeeding their babies at 8 weeks? -Percent_LiveBirthPregnancyEvent_AnyPostpartumFamilyPlanning_AsAFractionOf_Count_BirthEvent_LiveBirth,"percentage of live births that were planned;the percentage of women who had a live birth and then used postpartum family planning;the proportion of women who had a live birth and then used family planning after giving birth;the number of women who had a live birth and then used family planning, divided by the total number of women who had a live birth" -Percent_LiveBirthPregnancyEvent_BabyMostOftenLaidOnBackToSleep_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of babies who were placed on their backs to sleep after birth;fraction of live births in which the baby was placed on their back to sleep;number of live births in which the baby was placed on their back to sleep divided by the total number of live births;proportion of live births in which the baby was placed on their back to sleep -Percent_LiveBirthPregnancyEvent_EverBreastfed_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births that were ever breastfed;percentage of live births that were ever breastfed;number of live births that were ever breastfed divided by the total number of live births;proportion of live births that were ever breastfed -Percent_LiveBirthPregnancyEvent_FluShot_12MonthsBeforeBirth_AsAFractionOf_Count_BirthEvent_LiveBirth,birth of a child after a mother received a flu shot 12 months prior to delivery;child born to a mother who received a flu shot 12 months before giving birth;delivery of a baby to a mother who received a flu shot 12 months before labor and delivery;childbirth to a mother who received a flu shot 12 months before delivery -Percent_LiveBirthPregnancyEvent_HealthCareVisit_12MonthsBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,births to women who had at least one healthcare visit in the last 12 months before pregnancy;live births to women who had at least one healthcare visit in the last year before pregnancy;live births to women who had at least one healthcare visit in the 12 months prior to pregnancy;live births to women who had at least one healthcare visit in the year leading up to pregnancy -Percent_LiveBirthPregnancyEvent_HeavyDrinking_3MonthsBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of women who drink heavily in the three months before pregnancy;number of women who drink heavily in the three months before pregnancy;share of women who drink heavily in the three months before pregnancy;proportion of women who drink heavily in the three months before pregnancy -Percent_LiveBirthPregnancyEvent_HookahUsage_Last2YearsBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,hookah smoking during pregnancy;hookah use during pregnancy;pregnancy with hookah use;hookah use in pregnancy -Percent_LiveBirthPregnancyEvent_IntendedPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of live births that were intended;proportion of live births that were intended;proportion of pregnancies that were intended;intendedness of live births as a percentage of all live births -Percent_LiveBirthPregnancyEvent_IntimatePartnerViolenceByCurrentOrExPartnerOrCurrentOrExHusband_12MonthsBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,"domestic violence by a current or former partner in the 12 months before pregnancy;physical, sexual, or emotional abuse by a current or former partner in the 12 months before pregnancy;intimate partner violence (ipv) by a current or former partner in the 12 months before pregnancy;abuse by a current or former partner in the 12 months before pregnancy" -Percent_LiveBirthPregnancyEvent_IntimatePartnerViolenceByCurrentOrExPartnerOrCurrentOrExHusband_DuringPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,domestic violence during pregnancy;abuse during pregnancy;intimate partner violence (ipv) during pregnancy;partner abuse during pregnancy -Percent_LiveBirthPregnancyEvent_LeastEffectiveContraceptiveMethods_AsAFractionOf_Count_BirthEvent_LiveBirth,least effective contraceptive methods;contraceptive methods with the highest failure rate;contraceptive methods that are least likely to prevent pregnancy;contraceptive methods that are most likely to result in pregnancy -Percent_LiveBirthPregnancyEvent_LongActingReversibleContraceptiveMethods_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births from pregnancies using long-acting reversible contraceptive methods;percentage of live births from pregnancies using long-acting reversible contraceptive methods;share of live births from pregnancies using long-acting reversible contraceptive methods;proportion of live births from pregnancies using long-acting reversible contraceptive methods -Percent_LiveBirthPregnancyEvent_MaleOrFemaleSterilization_AsAFractionOf_Count_BirthEvent_LiveBirth,male or female sterilization rate among live births;rate of male or female sterilization among live births;fraction of live births resulting from male or female sterilization;percentage of live births resulting from male or female sterilization -Percent_LiveBirthPregnancyEvent_MaternalCheckup_Postpartum_AsAFractionOf_Count_BirthEvent_LiveBirth,"the percentage of live births that were preceded by a postpartum maternal checkup;the number of live births that were preceded by a postpartum maternal checkup, divided by the total number of live births;the proportion of live births that were preceded by a postpartum maternal checkup;the fraction of live births that were preceded by a postpartum maternal checkup" -Percent_LiveBirthPregnancyEvent_MistimedPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of mistimed pregnancies;fraction of mistimed pregnancies;proportion of mistimed pregnancies;share of mistimed pregnancies -Percent_LiveBirthPregnancyEvent_ModeratelyEffectiveContraceptiveMethods_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births to women using moderately effective contraceptive methods;moderately effective contraceptive methods as a percentage of live births;percentage of live births to women using moderately effective contraceptive methods;proportion of live births to women using moderately effective contraceptive methods -Percent_LiveBirthPregnancyEvent_MoreThan4TimesAWeek_MultivitaminUse_AsAFractionOf_Count_BirthEvent_LiveBirth,the number of live births to mothers who took a multivitamin more than 4 times a week;the percentage of live births to mothers who took a multivitamin more than 4 times a week;the proportion of live births to mothers who took a multivitamin more than 4 times a week;the incidence of live births to mothers who took a multivitamin more than 4 times a week -Percent_LiveBirthPregnancyEvent_NoHealthInsurance_1MonthBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,live births without health insurance 1 month before pregnancy;births to mothers without health insurance 1 month before pregnancy;births to women without health insurance 1 month before pregnancy;pregnancy without health insurance 1 month before birth -Percent_LiveBirthPregnancyEvent_NoHealthInsurance_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births where the mother did not have health insurance;number of live births to uninsured mothers divided by the total number of live births;proportion of live births to uninsured mothers;the proportion of live births to mothers who were uninsured -Percent_LiveBirthPregnancyEvent_NoHealthInsurance_Postpartum_AsAFractionOf_Count_BirthEvent_LiveBirth,pregnancy and birth outcomes for people without health insurance;live births among people without health insurance;pregnancy and birth rates among people without health insurance;the number of live births to people without health insurance -Percent_LiveBirthPregnancyEvent_Obesity_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of live births to obese mothers;share of live births to obese mothers;number of live births to obese mothers as a fraction of all live births;proportion of live births to obese mothers -Percent_LiveBirthPregnancyEvent_Overweight_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births to overweight women;percentage of live births to overweight women;share of live births to overweight women;fraction of live births from overweight pregnancies -Percent_LiveBirthPregnancyEvent_PrenatalCare_FirstTrimester_AsAFractionOf_Count_BirthEvent_LiveBirth,births after first trimester prenatal care;live births following first trimester prenatal care;live births as a result of first trimester prenatal care;live births due to prenatal care in the first trimester -Percent_LiveBirthPregnancyEvent_SelfReportedDepression_3MonthsBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,number of live births in pregnancies where the mother reported depression in the 3 months before pregnancy;number of live births to mothers who reported depression in the 3 months before pregnancy;number of babies born to mothers who reported depression in the 3 months before pregnancy;number of pregnancies that resulted in a live birth and where the mother reported depression in the 3 months before pregnancy -Percent_LiveBirthPregnancyEvent_SelfReportedDepression_DuringPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,depression during pregnancy;depression in pregnant women;depression in mothers-to-be;prenatal depression -Percent_LiveBirthPregnancyEvent_SelfReportedDepression_Postpartum_AsAFractionOf_Count_BirthEvent_LiveBirth,how many people report having postpartum depression after giving birth?;what is the rate of postpartum depression after live births?;how common is postpartum depression after live births?;what percentage of people experience postpartum depression after live births? -Percent_LiveBirthPregnancyEvent_Smoking_3MonthsBeforePregnancy_Cigarettes_AsAFractionOf_Count_BirthEvent_LiveBirth,smoking cigarettes while pregnant;smoking during the first three months of pregnancy;smoking cigarettes in the first three months of pregnancy;smoking cigarettes during the first 12 weeks of pregnancy -Percent_LiveBirthPregnancyEvent_Smoking_3MonthsBeforePregnancy_ECigarettes_AsAFractionOf_Count_BirthEvent_LiveBirth,pregnancy outcomes among mothers who smoked e-cigarettes 3 months before conception;live births among mothers who smoked e-cigarettes in the 3 months before pregnancy;live births among mothers who used e-cigarettes in the 3 months before pregnancy;live births among mothers who smoked electronic cigarettes in the 3 months before pregnancy -Percent_LiveBirthPregnancyEvent_Smoking_Last3MonthsOfPregnancy_Cigarettes_AsAFractionOf_Count_BirthEvent_LiveBirth,"number of live births where the mother smoked cigarettes in the last 3 months of pregnancy divided by the total number of live births;number of live births to women who smoked cigarettes in the last 3 months of pregnancy divided by the total number of live births;number of live births where the mother smoked cigarettes in the last 3 months of pregnancy, divided by the total number of live births" -Percent_LiveBirthPregnancyEvent_Smoking_Last3MonthsOfPregnancy_ECigarettes_AsAFractionOf_Count_BirthEvent_LiveBirth,smoking in the last 3 months of pregnancy;smoking during the last 90 days of pregnancy;smoking in the last 3 months before giving birth -Percent_LiveBirthPregnancyEvent_Smoking_Postpartum_Cigarettes_AsAFractionOf_Count_BirthEvent_LiveBirth,pregnancy and childbirth complications caused by smoking;smoking during pregnancy and its effects on the baby;the risks of smoking during pregnancy;how smoking can affect your pregnancy and baby -Percent_LiveBirthPregnancyEvent_TeethCleanedByDentistOrHygienist_DuringPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,"percentage of pregnant women who had their teeth cleaned by a dentist or hygienist during pregnancy;fraction of live births whose mothers had their teeth cleaned by a dentist or hygienist during pregnancy;number of live births whose mothers had their teeth cleaned by a dentist or hygienist during pregnancy, divided by the total number of live births;proportion of live births whose mothers had their teeth cleaned by a dentist or hygienist during pregnancy" -Percent_LiveBirthPregnancyEvent_Underweight_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births that are underweight;percentage of live births that are underweight;rate of underweight live births;proportion of live births that are underweight -Percent_LiveBirthPregnancyEvent_UnsureIfWantedPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth, -Percent_LiveBirthPregnancyEvent_UnwantedPregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,the percentage of live births that were unwanted;the number of unwanted live births as a fraction of all live births;the rate of unwanted live births;the incidence of unwanted live births -Percent_LiveBirthPregnancyEvent_WithMedicaid_1MonthBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,medicaid births in the month before pregnancy;live births with medicaid coverage in the month before pregnancy;medicaid-covered births in the month before pregnancy;births to medicaid-eligible mothers in the month before pregnancy -Percent_LiveBirthPregnancyEvent_WithMedicaid_AsAFractionOf_Count_BirthEvent_LiveBirth,fraction of live births with medicaid;percentage of live births with medicaid;medicaid births as a percentage of all births;medicaid births as a fraction of all births -Percent_LiveBirthPregnancyEvent_WithMedicaid_Postpartum_AsAFractionOf_Count_BirthEvent_LiveBirth,medicaid coverage for live births in the postpartum period;medicaid coverage for pregnancies that result in live births;medicaid coverage for women who give birth;medicaid coverage for postpartum care -Percent_LiveBirthPregnancyEvent_WithPrivateHealthInsurance_1MonthBeforePregnancy_AsAFractionOf_Count_BirthEvent_LiveBirth,private health insurance for live births in the month before pregnancy;private health insurance for live births within 1 month of pregnancy;private health insurance for live births within 30 days of pregnancy;private health insurance for live births within 4 weeks of pregnancy -Percent_LiveBirthPregnancyEvent_WithPrivateHealthInsurance_AsAFractionOf_Count_BirthEvent_LiveBirth,percentage of live births with private health insurance;number of live births with private health insurance as a proportion of all live births;fraction of live births with private health insurance;proportion of live births with private health insurance -Percent_LiveBirthPregnancyEvent_WithPrivateHealthInsurance_Postpartum_AsAFractionOf_Count_BirthEvent_LiveBirth,mothers with private health insurance who gave birth;mothers who gave birth and had private health insurance;mothers who had private health insurance and gave birth;mothers who gave birth while covered by private health insurance -Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication,what percentage of people with high blood pressure are taking blood pressure medication?;what proportion of people with high blood pressure are taking medication for their condition?;what number of people with high blood pressure are taking blood pressure medication?;what's the percentage of people with high blood pressure who are taking medication for it? -Percent_Person_18To64Years_ReceivedNoHealthInsurance,what percentage of people aged 18-64 do not have health insurance;what is the percentage of the population aged 18-64 without health insurance;what proportion of people aged 18-64 do not have health insurance;what is the proportion of the population aged 18-64 without health insurance -Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening,women aged 21 to 65 years received cervical cancer screening;cervical cancer screening was received by women aged 21 to 65 years;women aged 21 to 65 years were screened for cervical cancer;cervical cancer screening was performed on women aged 21 to 65 years -Percent_Person_50To74Years_Female_ReceivedMammography, -Percent_Person_50To75Years_ReceivedColorectalCancerScreening,the percentage of people aged 50 to 75 who have been screened for colorectal cancer;the number of people aged 50 to 75 who have had a colorectal cancer screening test;the proportion of people aged 50 to 75 who have been screened for colorectal cancer;the rate of colorectal cancer screening among people aged 50 to 75 -Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices,1 what percentage of women aged 65 and over received core preventive services?;2 what proportion of women aged 65 and over received core preventive services?;3 how many women aged 65 and over received core preventive services?;4 what is the rate of core preventive service receipt among women aged 65 and over? -Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,how common are preventive services for men over 65?;what percentage of men over 65 get preventive services?;what is the rate of preventive services for men over 65?;how many men over 65 get preventive services? -Percent_Person_65OrMoreYears_WithAllTeethLoss,what percentage of people over 65 have no teeth?;what is the percentage of people over 65 who have lost all their teeth?;what percentage of the population over 65 is toothless?;what is the rate of complete tooth loss in people over 65? -Percent_Person_BingeDrinking,what percentage of the population binge drinks?;what is the rate of binge drinking in the population?;what proportion of people binge drink?;how many people binge drink? -Percent_Person_Children_WithAsthma,what percentage of children have asthma?;what is the rate of asthma in children?;how many children have asthma?;what is the prevalence of asthma in children? -Percent_Person_ReceivedAnnualCheckup,what percentage of the population has had an annual checkup?;what is the percentage of people who have had an annual checkup?;what is the proportion of people who have had an annual checkup?;what is the number of people who have had an annual checkup as a percentage of the total population? -Percent_Person_ReceivedCholesterolScreening,how common is cholesterol screening?;what is the prevalence of cholesterol screening?;1 how common is cholesterol screening?;5 what is the prevalence of cholesterol screening? -Percent_Person_ReceivedDentalVisit,what is the prevalence of dental visits? -Percent_Person_SleepLessThan7Hours,what percentage of people sleep less than 7 hours per night?;what proportion of the population sleeps less than 7 hours per night?;what is the percentage of people who sleep less than 7 hours per night?;what is the proportion of the population who sleep less than 7 hours per night? -Percent_Person_Smoking,what percentage of the population smokes?;what is the rate of smoking in the population?;what is the proportion of smokers in the population?;what percentage of people smoke? -Percent_Person_WithArthritis,what percentage of the population has arthritis;what is the percentage of people with arthritis;what proportion of the population has arthritis;what percent of people have arthritis -Percent_Person_WithAsthma,what percentage of people have asthma;what is the percentage of people with asthma;how many people have asthma;what is the prevalence of asthma -Percent_Person_WithCancerExcludingSkinCancer,what percentage of people have a cancer other than skin cancer?;what is the percentage of people who have a cancer other than skin cancer?;what is the proportion of people who have a cancer other than skin cancer?;what is the number of people who have a cancer other than skin cancer as a percentage of the total population? -Percent_Person_WithChronicKidneyDisease,what percentage of people have chronic kidney disease;what is the prevalence of chronic kidney disease;how many people have chronic kidney disease;what is the number of people with chronic kidney disease -Percent_Person_WithChronicObstructivePulmonaryDisease,what percentage of people have chronic obstructive pulmonary disease (copd);what proportion of people have copd;what is the prevalence of copd;how many people have copd -Percent_Person_WithCoronaryHeartDisease,what percentage of the population has coronary heart disease;what proportion of the population has coronary heart disease;what is the rate of coronary heart disease in the population;how many people in the population have coronary heart disease -Percent_Person_WithHighBloodPressure,what percentage of the population has high blood pressure?;what is the prevalence of high blood pressure?;how many people have high blood pressure?;what is the number of people with high blood pressure? -Percent_Person_WithHighCholesterol,what percentage of people have high cholesterol?;what is the percentage of people with high cholesterol?;what is the proportion of people with high cholesterol?;what is the number of people with high cholesterol as a percentage of the total population? -Percent_Person_WithMentalHealthNotGood,1 what percentage of the population has poor mental health?;2 what is the percentage of people with poor mental health?;3 what proportion of the population has poor mental health?;4 how many people in the population have poor mental health? -Percent_Person_WithPhysicalHealthNotGood,what percentage of the population has poor physical health?;what is the percentage of people with poor physical health?;what proportion of the population has poor physical health?;how many people have poor physical health? -Percent_Person_WithStroke,what percentage of the population has had a stroke;what is the percentage of people who have had a stroke;what is the stroke rate;what percentage of people have experienced a stroke -Percent_TobaccoSmoking_Cigarettes_In_Count_Person,how common is cigarette smoking? -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Female,what is the prevalence of cigarette smoking among women?;what is the prevalence of cigarette smoking among women;what is the prevalence of cigarette smoking among females? -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Male,what is the prevalence of cigarette smoking among men?;what is the prevalence of cigarette smoking among men -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person,what percentage of the population smokes tobacco?;what is the rate of tobacco smoking in the population?;what is the proportion of the population that smokes tobacco? -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Female,what percentage of women smoke tobacco?;what is the rate of tobacco smoking among women?;what is the prevalence of tobacco smoking among women?;what is the proportion of women who smoke tobacco? -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Male,what percentage of men smoke tobacco?;what is the rate of tobacco smoking among men?;how many men smoke tobacco?;what is the proportion of men who smoke tobacco? -Percent_TobaccoUsing_In_Count_Person, -Percent_TobaccoUsing_In_Count_Person_Female,how many females currently use tobacco? -Percent_TobaccoUsing_In_Count_Person_Male,how many males currently use tobacco? -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Humidity_RelativeHumidity,"percentile 10 relative humidity across models compared to 1990;relative humidity percentile 10 across models compared to 1990;relative humidity relative to 1990, percentile 10;relative humidity relative to 1990, percentile 10 across models" -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Humidity_SpecificHumidity,humidity relative to 1990 percentile 10 across models;humidity relative to 1990 percentile 10 across all models -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature,the 10th percentile of the maximum temperature difference relative to 1990 across models;1 the 10th percentile of the maximum temperature difference relative to 1990 across models;the 10th percentile of the maximum temperature difference relative to 1990;the 10th percentile of the difference between the maximum temperature in 2023 and the maximum temperature in 1990 -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Mean_WindSpeed,"the average wind speed relative to 1990, percentile 10 across models;the average wind speed relative to 1990, percentile 10 for all models;the average wind speed relative to 1990, percentile 10 for all models considered;the average wind speed relative to 1990, percentile 10 for all models included" -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature,"1 the 10th percentile of minimum temperatures relative to 1990 across models;2 the minimum temperature that is exceeded by 10% of the models for each year;4 the minimum temperature that is expected to occur at least 10% of the time in each year, relative to 1990;5 the minimum temperature that is expected to occur at least 10% of the time in each year, as predicted by different models" -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_PrecipitationRate,"the amount of precipitation relative to 1990, percentile 10 across models;the percentage of models that predict a higher precipitation rate than in 1990;the average precipitation rate predicted by models, relative to 1990, for the 10th percentile;the average precipitation rate predicted by models, relative to 1990, for the lowest 10% of the models" -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_LongwaveRadiation,10th percentile of downwelling longwave radiation across models;downwelling longwave radiation at the 10th percentile across models;downwelling longwave radiation at the 10th percentile for all models;downwelling longwave radiation at the 10th percentile for all models considered -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_ShortwaveRadiation,downwelling shortwave radiation relative to 1990 10th percentile across models;downwelling shortwave radiation as a percentage of 1990 10th percentile across models;downwelling shortwave radiation as a fraction of 1990 10th percentile across models;downwelling shortwave radiation as a proportion of 1990 10th percentile across models -Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Temperature,the 10th percentile of temperature differences relative to 1990 across models;the 10th percentile of temperature differences between 1990 and now across models;the 10th percentile of temperature changes relative to 1990 across models;the 10th percentile of temperature changes between 1990 and now across models -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Humidity_RelativeHumidity,the 90th percentile of relative humidity across models for 1990;the relative humidity that was at the 90th percentile in 1990 across all models;the relative humidity that was exceeded 90% of the time in 1990 across all models;the relative humidity that was exceeded by 90% of the models in 1990 -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Humidity_SpecificHumidity,the 90th percentile of humidity relative to 1990 across models;the humidity relative to 1990 that is exceeded by 90% of the models;the humidity relative to 1990 that is predicted by 90% of the models;the humidity relative to 1990 that is the 90th percentile of the predictions of the models -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature,the 90th percentile of the maximum temperature difference relative to 1990 across models;the 90th percentile of the maximum temperature difference relative to 1990;the 90th percentile of the maximum temperature change relative to 1990;the 90th percentile of the maximum temperature increase relative to 1990 -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Mean_WindSpeed,90th percentile mean wind speed across models;the mean wind speed at the 90th percentile across models;the 90th percentile of the mean wind speed across models;the mean wind speed that is exceeded 90% of the time across models -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature,"1 the 90th percentile of the minimum temperature difference relative to 1990 across models;the 90th percentile of the minimum temperature difference relative to 1990 across models;the minimum temperature difference relative to 1990, as predicted by 90% of models;the minimum temperature difference relative to 1990, as predicted by the 90th percentile of models" -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_PrecipitationRate,"how much precipitation has fallen relative to 1990 levels, as measured by the 90th percentile across models;the percentage of models that predict a precipitation rate that is greater than or equal to the 90th percentile of precipitation rates in 1990, across all models;the rate of precipitation relative to the 90th percentile in 1990 across models;the precipitation rate compared to the 90th percentile in 1990 across models" -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_LongwaveRadiation, -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Radiation_Downwelling_ShortwaveRadiation, -Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Temperature,"the 90th percentile of the temperature difference relative to 1990 across models;the temperature difference relative to 1990, as predicted by 90% of models;the temperature difference relative to 1990, as predicted by the 90th percentile of models;the temperature difference relative to 1990, as predicted by the models that are in the 90th percentile" -PopulationWeighted_Concentration_AirPollutant_Ozone,ozone concentration weighted by population;ozone concentration averaged over the population;ozone concentration per capita;ozone concentration normalized by population -PopulationWeighted_Concentration_AirPollutant_PM2.5,population-weighted pm25 concentration;population-weighted average pm25 concentration;average pm25 concentration weighted by population;average pm25 concentration per capita -PopulationWeighted_Count_HeatWaveEvent,heat wave frequency per capita;heat wave incidence per capita;number of heat waves weighted by population;population-weighted heat wave occurrence -PopulationWeighted_Intensity_HeatWaveEvent,"the intensity of heat waves, weighted by population;the average intensity of heat waves, weighted by population;the severity of heat waves, weighted by population;the impact of heat waves, weighted by population" -PopulationWeighted_NumerOfDays_HeatWaveEvent,heat wave length;heat wave duration by population;heat wave length by population;heat wave duration weighted by population -PrecipitationRate,amount of precipitation per unit area per unit time;rate of precipitation;precipitation intensity;the rate at which precipitation falls -PrecipitationRate_RCP26,"what is the projected rate of precipitation, based on rcp 26?;what is the estimated amount of rainfall, according to rcp 26?;how much precipitation is likely to fall, based on rcp 26?;what is the projected precipitation rate, according to rcp 26?" -PrecipitationRate_RCP45,rcp 45 precipitation rate;precipitation rate under rcp 45;rcp 45 precipitation;precipitation rate in rcp 45 -PrecipitationRate_RCP60,rcp 60 precipitation rate;rcp 60 precipitation;precipitation rate under rcp 60 scenario -PrecipitationRate_RCP85,how much rain will fall based on rcp 85?;what is the expected rate of precipitation based on rcp 85?;what is the projected rate of precipitation based on rcp 85?;what is the estimated rate of precipitation based on rcp 85? -PrecipitationRate_SSP245,"how much rain will fall each year, according to rcp 45 and ssp 2;the amount of precipitation that is expected to fall each year, based on rcp 45 and ssp 2;the rate at which rain will fall each year, according to rcp 45 and ssp 2;the yearly rainfall that is projected to occur, based on rcp 45 and ssp 2" -PrecipitationRate_SSP585,precipitation rate under rcp 85 and ssp 5;rate of precipitation under rcp 85 and ssp 5;how much precipitation is expected under rcp 85 and ssp 5;the amount of precipitation that is expected under rcp 85 and ssp 5 -ProjectedMax_Until_2030_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245,"the highest temperature in 2030, relative to 2015, based on rcp 45, ssp 2;the highest temperature in 2030, relative to 2015, under the ssp 2 scenario, assuming the rcp 45 path is followed;ssp 2 rcp 45 2030 maximum temperature relative to 2015;the highest temperature in 2030, relative to 2015, based on rcp 45 and ssp 2" -ProjectedMax_Until_2030_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"the difference between the temperature in 2030 and the temperature in 2015, based on rcp 45, ssp 2;the expected temperature in 2030, relative to 2015, based on rcp 45, ssp 2;temperature in 2030, based on rcp 45 and ssp 2, highest value relative to 2015" -ProjectedMax_Until_2040_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245,"the highest temperature in 2040, relative to 2015, based on rcp 45 and ssp 2;the maximum temperature in 2040, relative to 2015, based on the rcp 45 scenario and ssp 2;the highest temperature in 2040, relative to the base year of 2015, based on the rcp 45 pathway and ssp 2;the maximum temperature in 2040, relative to the base year of 2015, based on the rcp 45 emissions scenario and ssp 2 socioeconomic pathway" -ProjectedMax_Until_2040_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"the highest temperature difference relative to the base date of 2015, based on rcp 45, in 2040, according to ssp 2;the temperature in 2040, relative to 2015, based on rcp 45 and ssp 2, at its peak" -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate1981To2010_Max_Temperature_RCP26,what is the highest temperature difference relative to the base date (between 1981 and 2010) based on rcp 26 in 2050?;what is the highest temperature increase relative to the base date (between 1981 and 2010) based on rcp 26 in 2050?;what is the highest temperature anomaly relative to the base date (between 1981 and 2010) based on rcp 26 in 2050?;what is the highest temperature deviation from the base date (between 1981 and 2010) based on rcp 26 in 2050? -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate1981To2010_Max_Temperature_RCP45,"the highest temperature difference relative to the base date between 1981 and 2010, based on rcp 45, in 2050;the highest temperature increase relative to the base date between 1981 and 2010, based on rcp 45, in 2050;the highest temperature anomaly relative to the base date between 1981 and 2010, based on rcp 45, in 2050;the highest temperature deviation relative to the base date between 1981 and 2010, based on rcp 45, in 2050" -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate1981To2010_Max_Temperature_RCP60,"5 the highest temperature in 2050, relative to the 1981-2010 reference period, based on rcp 60;highest temperature in 2050, relative to the 1981-2010 base period, based on rcp 60" -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate1981To2010_Max_Temperature_RCP85,"highest temperature in 2050, relative to the average temperature between 1981 and 2010, based on rcp 85;highest temperature in 2050, relative to the average temperature of the years 1981-2010, based on rcp 85;the highest temperature in 2050, relative to the average temperature between 1981 and 2010, based on rcp 85;the highest temperature in 2050, relative to the 1981-2010 average, based on rcp 85" -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245,"the highest temperature in 2050, relative to 2015, based on rcp 45, in ssp 2;the highest temperature in 2050, relative to 2015, based on the rcp 45 scenario, in the ssp 2 pathway;the highest temperature in 2050, relative to 2015, based on the rcp 45 emissions pathway, in the ssp 2 socioeconomic scenario;the highest temperature in 2050, relative to 2015, based on the rcp 45 emissions scenario, in the ssp 2 shared socioeconomic pathway" -ProjectedMax_Until_2050_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"temperature in 2050, relative to 2015, under ssp 2 and rcp 45;the temperature in 2050, relative to 2015, under ssp 2 and rcp 45;the temperature in 2050, relative to 2015, under the ssp 2 scenario and the rcp 45 emissions pathway;the temperature in 2050, relative to 2015, under the ssp 2 scenario and the rcp 45 radiative forcing pathway" -ProjectedMin_Until_2030_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245,lowest temperature in 2030 relative to 2015 under ssp 2 rcp 45;2030 minimum temperature relative to 2015 under ssp 2 rcp 45;lowest temperature in 2030 relative to 2015 under ssp 2;2030 minimum temperature relative to 2015 -ProjectedMin_Until_2030_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"temperature in 2030 relative to 2015 under ssp 2 rcp 45, lowest value;temperature in 2030 relative to 2015, lowest value under ssp 2 rcp 45;temperature in 2030 relative to 2015, ssp 2 rcp 45, lowest value;lowest temperature difference relative to 2015 in 2030, based on rcp 45 and ssp 2" -ProjectedMin_Until_2040_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245,"lowest temperature in 2040, relative to 2015, based on rcp 45 and ssp 2;lowest temperature in 2040, relative to 2015, under rcp 45 and ssp 2;lowest temperature in 2040, relative to 2015, under the rcp 45 scenario and ssp 2 scenario;lowest temperature in 2040, relative to 2015, under the rcp 45 pathway and ssp 2 pathway" -ProjectedMin_Until_2040_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"the lowest temperature difference from the base date (2015) in 2040, based on rcp 45 and ssp 2;the lowest temperature deviation from 2015 in 2040, based on rcp 45 and ssp 2;temperature in ssp2 rcp45 in 2040 relative to 2015, lowest;temperature in 2040 relative to 2015 in ssp2 rcp45, lowest" -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate1981To2010_Min_Temperature_RCP26,"lowest temperature in 2050, relative to 1981-2010, based on rcp 26;lowest temperature in 2050, relative to the average temperature between 1981 and 2010, based on rcp 26;lowest temperature in 2050, relative to the average temperature of the past 3 decades, based on rcp 26;lowest temperature in 2050, relative to the average between 1981 and 2010, based on rcp 26" -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate1981To2010_Min_Temperature_RCP45,"lowest temperature in 2050, relative to the average between 1981 and 2010, based on rcp 45;the lowest temperature in 2050, compared to the average between 1981 and 2010, based on rcp 45;the lowest temperature in 2050, as a difference from the average between 1981 and 2010, based on rcp 45;the lowest temperature in 2050, relative to the base date of 1981-2010, based on rcp 45" -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate1981To2010_Min_Temperature_RCP60, -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate1981To2010_Min_Temperature_RCP85, -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245,"the lowest temperature in 2050, relative to 2015, based on rcp 45 and ssp 2;the lowest temperature in 2050, relative to 2015, under the rcp 45 scenario and ssp 2 pathway;ssp2-rcp45 minimum temperature in 2050 relative to 2015;lowest temperature in 2050 relative to 2015 under ssp2-rcp45" -ProjectedMin_Until_2050_DifferenceRelativeToBaseDate2015_Temperature_SSP245,"the lowest temperature difference relative to 2015 in 2050, based on rcp 45 and ssp 2;the lowest temperature change relative to 2015 in 2050, based on rcp 45 and ssp 2;the lowest temperature increase relative to 2015 in 2050, based on rcp 45 and ssp 2;the lowest temperature deviation from 2015 in 2050, based on rcp 45 and ssp 2" -QuantitySold_FarmInventory_CattleAndCalves,amount of cattle and calves sold from farms;cattle and calves sold from farms;amount of cattle and calves sold from farms per year;the amount of cattle and calves sold from farms -QuantitySold_FarmInventory_HogsAndPigs,total number of hogs and pigs sold from farms;amount of hogs and pigs sold from farms;sum of hogs and pigs sold from farms;total hogs and pigs sold from farms -Quarterly_AshContent_Fuel_ForElectricityGeneration_BituminousCoal,"ash content in bituminous coal used for electricity generation by all sectors, quarterly;ash content in bituminous coal for electricity generation by all sectors, quarterly;ash content in bituminous coal used for electricity generation, quarterly, by all sectors;ash content in bituminous coal used in electricity generation by all sectors, quarterly" -Quarterly_AshContent_Fuel_ForElectricityGeneration_Coal,"ash content in coal by sector, quarterly;quarterly ash content in coal by sector;quarterly data on ash content in coal by sector;ash content in coal by sector, by quarter" -Quarterly_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,the amount of ash in coal used to generate electricity each quarter;the percentage of ash in coal used to generate electricity each quarter;the average amount of ash in coal used to generate electricity each quarter;the average percentage of ash in coal used to generate electricity each quarter -Quarterly_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal,the quality of ash content in subbituminous coal used for electricity generation varies annually;the quality of subbituminous coal used for electricity generation varies in terms of ash content from year to year;the amount of ash in subbituminous coal used for electricity generation changes from year to year in terms of quality;the annual quality of ash content in subbituminous coal used for electricity generation is variable -Quarterly_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,ash content in subbituminous coal for electricity generation in electric power plants on a quarterly basis;quarterly ash content of subbituminous coal used to generate electricity in power plants;the quarterly percentage of ash in subbituminous coal used to generate electricity in power plants;the amount of ash in sub-bituminous coal used to generate electricity in power plants each quarter -Quarterly_Average_AshContent_Coal_For_ElectricPower,"quarterly ash content in electric power;ash content in electric power by quarter;ash content in electric power, quarterly;quarterly ash content in electric power plants" -Quarterly_Average_AshContent_Coal_For_OtherIndustrial,"average ash content of coal for other industrial uses, quarterly;quarterly average ash content of coal for industrial uses other than power generation;ash content of coal for other industrial uses, quarterly average;quarterly average ash content of coal used in other industries" -Quarterly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas,"average cost of natural gas per quarter in all sectors;quarterly average cost of natural gas across all sectors;cost of natural gas per quarter, all sectors;average natural gas cost per quarter, all sectors" -Quarterly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"average cost of natural gas for electricity generation in electric power, by quarter;quarterly average cost of natural gas for electricity generation in electric power;natural gas cost for electricity generation in electric power, by quarter;natural gas cost for electricity generation in electric power, average by quarter" -Quarterly_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,"average cost of natural gas for electricity generation by electric utility, quarterly;quarterly average cost of natural gas for electricity generation by electric utilities;natural gas cost for electricity generation by electric utilities, quarterly average;electric utilities' quarterly average cost of natural gas for electricity generation" -Quarterly_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the average cost of petroleum liquids used to generate electricity each quarter;the average price of petroleum liquids used to generate electricity each quarter;the average amount of money spent on petroleum liquids used to generate electricity each quarter;the average cost of generating electricity using petroleum liquids each quarter -Quarterly_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the average cost of petroleum liquids fossil fuels for electricity generation per quarter;the average cost of petroleum liquids fossil fuels used to generate electricity each quarter;the average cost of petroleum liquids fossil fuels used to generate electricity every three months;the average cost of petroleum liquids fossil fuels used to generate electricity over a period of three months -Quarterly_Average_HeatContent_Coal_For_ElectricPower,the amount of heat produced by burning coal in electric power plants each quarter;the heat energy produced by coal combustion in electric power generation each quarter;the amount of heat that is released when coal is burned to produce electricity each quarter;the heat content of coal used in electric power generation each quarter -Quarterly_Average_HeatContent_Coal_For_OtherIndustrial,"heat content, other industrial, quarterly;quarterly heat content for other industrial uses;heat content of other industrial uses, quarterly;quarterly heat content for industrial uses other than electric power generation" -Quarterly_Average_RetailPrice_Electricity,"average price of electricity per kilowatt-hour in all sectors, by quarter;average retail price of electricity in all sectors, by quarter;average price of electricity paid by consumers in all sectors, by quarter;average price of electricity charged by utilities in all sectors, by quarter" -Quarterly_Average_RetailPrice_Electricity_Commercial,the average price of commercial electricity per quarter;the average cost of commercial electricity per quarter;the average charge for commercial electricity per quarter;the average tariff for commercial electricity per quarter -Quarterly_Average_RetailPrice_Electricity_Industrial,average retail price of electricity in industries per quarter;average price of electricity paid by industries per quarter;average cost of electricity for industries per quarter;average rate of electricity charged to industries per quarter -Quarterly_Average_RetailPrice_Electricity_OtherSector,average quarterly electricity bill;average quarterly electricity rate;average quarterly price of electricity;average quarterly retail electricity price -Quarterly_Average_RetailPrice_Electricity_Residential,the average price of electricity in residential areas on a quarterly basis;the average cost of electricity in residential areas over a 3-month period;the average amount of money that people in residential areas pay for electricity each quarter;the average price of electricity in residential areas per quarter -Quarterly_Average_SulfurContent_Coal_For_ElectricPower,"quarterly electric power, sulfur content;sulfur content of quarterly electric power;quarterly electric power, with sulfur content;electric power (total), quarterly, sulfur content" -Quarterly_Average_SulfurContent_Coal_For_OtherIndustrial,"sulfur content in other industrial sectors on a quarterly basis;quarterly data on sulfur content in other industrial sectors;the amount of sulfur in other industrial sectors on a quarterly basis;sulfur content in other industrial sectors, reported quarterly" -Quarterly_Consumption_Coal_ElectricPower,how much coal is used in the electric power sector each quarter?;what is the quarterly total consumption of coal in the electric power sector?;what is the amount of coal used in the electric power sector each quarter?;what is the quarterly consumption of coal in the electric power sector? -Quarterly_Consumption_Coal_ElectricUtility,coal consumption by electric utilities on a quarterly basis;coal use by electric utilities on a quarterly basis;the amount of coal used by electric utilities each quarter;the amount of coal consumed by electric utilities each quarter -Quarterly_Consumption_Coal_OtherIndustrial,other industrial coal consumption in each quarter;quarterly coal consumption by other industries;the amount of coal consumed by other industries each quarter;the amount of coal used by other industries each quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal, -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricPower,the amount of coal used to generate electricity in the past quarter;the amount of coal used to generate electricity in the last quarter of the year;the amount of coal used to generate electricity in the fourth quarter of the year;how much coal is used to generate electricity each quarter? -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtility, -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas, -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Commercial,the quarterly consumption of natural gas in the commercial sector;the amount of natural gas used by commercial businesses each quarter;the quarterly natural gas usage of commercial establishments;the amount of natural gas consumed by commercial buildings each quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen,the quarterly total consumption of natural gas in commercial cogeneration;the total amount of natural gas consumed in commercial cogeneration each quarter;the amount of natural gas used in commercial cogeneration each quarter;the quarterly consumption of natural gas in commercial cogeneration -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricPower,how much natural gas did electric power plants use in the last quarter?;what was the total amount of natural gas used by electric power plants in the last quarter?;what was the quarterly consumption of natural gas by electric power plants?;how much natural gas did electric power plants consume in the last quarter? -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtility,the total amount of natural gas consumed by electric utilities in a quarter;the quarterly consumption of natural gas by electric utilities;the amount of natural gas used by electric utilities in a quarter;the quarterly natural gas consumption of electric utilities -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen, -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityNonCogen,the amount of natural gas consumed by electric utilities that are not cogeneration facilities on a quarterly basis -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndependentPowerProducers, -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Industrial,"natural gas consumption in all industries, quarterly;quarterly natural gas consumption across all industries;natural gas consumption in all industries, by quarter;quarterly natural gas consumption in all industries, per quarter" -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndustrialCogen,quarterly natural gas consumption in industrial cogeneration;quarterly natural gas use in industrial cogeneration;quarterly natural gas demand in industrial cogeneration;quarterly natural gas usage in industrial cogeneration -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,total petroleum liquids consumed in all sectors in a quarter;total petroleum liquids consumed in all sectors in a quarter of a year;total petroleum liquids consumed in all sectors in a quarter of a fiscal year;total petroleum liquids consumed in all sectors each quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Commercial,total petroleum liquids consumed in a quarter;total amount of petroleum liquids consumed in a quarter;quarterly consumption of petroleum liquids;petroleum liquids consumed in a quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricPower,the total amount of petroleum liquids consumed in electric power plants each quarter;the quarterly consumption of petroleum liquids for electricity in electric power plants;the amount of petroleum liquids used in electric power plants each quarter;the amount of petroleum liquids consumed by electric power plants each quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtility,total petroleum liquids consumed by electric utilities in a quarter;quarterly consumption of petroleum liquids by electric utilities;amount of petroleum liquids consumed by electric utilities in a quarter;quarterly petroleum liquids consumption by electric utilities -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtilityNonCogen,total petroleum liquids consumed by electric utility non-cogen industries each quarter;quarterly consumption of petroleum liquids by electric utility non-cogen industries;the amount of petroleum liquids consumed by electric utility non-cogen industries each quarter;the total amount of petroleum liquids consumed by electric utility non-cogen industries in a quarter -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndependentPowerProducers,independent power producers' quarterly petroleum liquids consumption;independent power producers' quarterly consumption of petroleum liquids;quarterly petroleum liquids consumption by independent power producers;independent power producers' quarterly petroleum liquids usage -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Industrial,the quarterly consumption of petroleum liquids by all industries;the quarterly usage of petroleum liquids by all industries;the amount of petroleum liquids that all industries use each quarter;the quarterly consumption of petroleum liquids by all industrial sectors -Quarterly_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndustrialCogen,quarterly total consumption of petroleum liquids in industrial cogeneration;quarterly total consumption of petroleum liquids for industrial cogeneration;the total amount of petroleum liquids consumed by industrial cogeneration in a quarter;total petroleum liquids consumed in industrial cogeneration each quarter -Quarterly_Consumption_Fuel_ForElectricityGeneration_Coal,"coal consumption for electricity generation in all sectors, by quarter;quarterly coal consumption for electricity generation across all sectors;coal use for electricity generation in all sectors, by quarter;quarterly coal use for electricity generation across all sectors" -Quarterly_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricPower,coal consumption in a quarter;coal usage per quarter;how much coal is consumed in a quarter;how much coal is used in a quarter -Quarterly_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtility,"coal consumption for electricity generation, electric utility, quarterly" -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas, -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Commercial,commercial natural gas consumption for electricity generation by quarter;natural gas used for electricity generation by commercial sector by quarter;natural gas used by commercial sector to generate electricity by quarter;quarterly commercial natural gas consumption for electricity generation -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen,consumption of natural gas for electricity generation on a quarterly basis;natural gas used to generate electricity on a quarterly basis;the amount of natural gas used to generate electricity each quarter;the quarterly amount of natural gas used to generate electricity -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,the quarterly consumption of natural gas by electric power plants;the quarterly natural gas consumption of electric power plants -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,natural gas consumption in electricity plants by quarter;natural gas use in power plants by quarter;quarterly natural gas consumption in power plants;natural gas use in power plants in each quarter -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen, -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,quarterly natural gas consumption by electric utilities that do not use cogeneration;natural gas consumption by electric utilities in non-cogeneration facilities on a quarterly basis;the amount of natural gas consumed by electric utilities in non-cogeneration facilities each quarter;the quarterly amount of natural gas used by electric utilities in non-cogeneration facilities -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,independent power producers' quarterly consumption of natural gas for electricity generation;natural gas consumption by independent power producers for electricity generation on a quarterly basis;the amount of natural gas independent power producers use to generate electricity on a quarterly basis;the quarterly consumption of natural gas by independent power producers for electricity generation -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Industrial,industrial sector natural gas consumption by quarter;quarterly natural gas consumption in all industrial sectors;natural gas consumption by quarter in all industrial sectors;all industrial sectors' natural gas consumption by quarter -Quarterly_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,natural gas consumption by industrial cogen electricity generation on a quarterly basis;industrial cogen electricity generation's quarterly natural gas consumption;the amount of natural gas consumed by industrial cogen electricity generation each quarter;the quarterly natural gas consumption of industrial cogen electricity generation -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,how much petroleum is used to generate electricity each quarter?;what is the quarterly consumption of petroleum liquids for electricity generation?;how much petroleum liquids are used to generate electricity each quarter?;how much petroleum liquids are consumed for electricity generation each quarter? -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Commercial,the quarterly consumption of petroleum liquids in the commercial sector;the quarterly consumption of petroleum liquids by businesses -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the amount of petroleum liquids used to generate electricity each quarter;the amount of petroleum liquids used to generate electricity in a quarter;the quarterly consumption of petroleum liquids for electricity generation in the electric power sector;the amount of petroleum liquids used to generate electricity in the electric power sector each quarter -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,what is the quarterly consumption of petroleum liquids for electricity generation in electric utilities in the us?;what is the quarterly consumption of petroleum liquids for electricity generation in the electric utility industry?;how much petroleum liquids are used to generate electricity in the electric utility industry on a quarterly basis?;what is the quarterly consumption of petroleum liquids for electricity generation in the electric utility sector? -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen,"electric utility non-cogen petroleum liquids consumption, monthly and quarterly;quarterly petroleum liquids consumption for electric utility non-cogen in electricity generation;monthly and quarterly consumption of petroleum liquids in electric utility non-cogen;quarterly consumption of petroleum liquids for electric utility non-cogen in electricity generation" -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,what is the quarterly use of petroleum liquids by independent power producers?;the quarterly consumption of petroleum liquids by independent power producers industries;the amount of petroleum liquids independent power producers industries consume each quarter;quarterly consumption of petroleum liquids in the independent power producers industry -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Industrial,quarterly petroleum liquids demand in all industries -Quarterly_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialCogen,how much petroleum liquids are used to generate electricity by industrial cogeneration each quarter?;what is the quarterly consumption of petroleum liquids for electricity generation by industrial cogeneration?;what is the amount of petroleum liquids used to generate electricity by industrial cogeneration each quarter?;how much petroleum liquids are used by industrial cogeneration to generate electricity each quarter? -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_Coal,coal consumption for useful thermal output on a quarterly basis;the amount of coal used for useful thermal output each quarter;the quarterly rate of coal consumption for useful thermal output;coal usage for useful thermal output on a quarterly basis -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas, -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial,"the total amount of natural gas used for heating and cooling in a quarter;the total amount of natural gas used for useful thermal output in a quarter;the total amount of natural gas used for heating, cooling, and other purposes in a quarter;the total amount of natural gas used for heating, cooling, and other purposes in a three-month period" -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen,"natural gas consumption in the past quarter, measured in terms of useful thermal output;the amount of natural gas used in the past quarter, measured in terms of useful thermal output;the amount of heat produced by burning natural gas in the past quarter;quarterly useful thermal output from natural gas consumption" -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower,total amount of natural gas used for electricity in a quarter;total amount of natural gas used to produce electricity each quarter;the total amount of natural gas consumed by the electric power sector in a quarter;the total amount of natural gas used to produce electricity in a quarter -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen, -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers,independent power producers’ quarterly natural gas consumption;natural gas consumption by independent power producers on a quarterly basis;the amount of natural gas consumed by independent power producers each quarter;independent power producers’ quarterly natural gas usage -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Industrial,"the amount of natural gas used by industries for useful thermal output on a quarterly basis;the quarterly consumption of natural gas by industries for useful thermal output;the amount of natural gas used by industries for useful thermal output in each quarter;the quarterly consumption of natural gas by industries for useful thermal output, broken down by industry" -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndustrialCogen,natural gas consumption for useful thermal output on a quarterly basis;the amount of natural gas used each quarter to generate heat;the quarterly amount of natural gas used for heating purposes;the quarterly consumption of natural gas for heating -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids,quarterly petroleum liquids consumption by all sectors;quarterly petroleum liquids use by all sectors;quarterly petroleum liquids demand by all sectors;quarterly petroleum liquids usage by all sectors -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_Industrial,"industrial petroleum liquid consumption for useful thermal output, quarterly;quarterly industrial petroleum liquid consumption for useful thermal output;useful thermal output from industrial petroleum liquid consumption, quarterly;industrial petroleum liquid consumption for useful thermal output, by quarter" -Quarterly_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_IndustrialCogen,the amount of petroleum liquids used in industrial cogeneration each quarter;the quarterly consumption of petroleum liquids in industrial cogeneration;the quarterly rate of consumption of petroleum liquids in industrial cogeneration;the quarterly usage of petroleum liquids in industrial cogeneration -Quarterly_Count_ElectricityConsumer,number of customers in a quarter;number of customers in a quarter-year;number of customers in a fiscal quarter;number of customers in a quarter-end -Quarterly_Count_ElectricityConsumer_Commercial,number of commercial customers in a quarter;number of commercial customers in a quarter-year;number of commercial customers in a fiscal quarter;number of commercial customers in a quarter-end -Quarterly_Count_ElectricityConsumer_Industrial,"customer accounts for the industrial sector, on a quarterly basis;industrial customer accounts, on a quarterly basis;quarterly reports on industrial customer accounts;accounts for industrial customers, on a quarterly basis" -Quarterly_Count_ElectricityConsumer_Residential,residential customer accounts on a quarterly basis;residential customer accounts each quarter;residential customer accounts on a 3-month basis;residential customer accounts per quarter -Quarterly_Generation_Electricity,"what was the quarterly net generation of each type of fuel in each sector?;what was the quarterly net generation of all fuels in each sector?;the quarterly net generation of all fuels in all sectors;net generation of all fuels in all sectors, by quarter" -Quarterly_Generation_Electricity_Coal,"net generation of coal in all sectors on a quarterly basis;quarterly net generation of coal in all sectors;generation of coal in all sectors on a quarterly basis;generation of coal in all sectors, quarterly" -Quarterly_Generation_Electricity_Coal_ElectricPower, -Quarterly_Generation_Electricity_Coal_ElectricUtility,"coal-fired electricity generation by electric utilities, by quarter;electricity generated by coal-fired power plants, by quarter;quarterly electricity generation from coal;coal-fired electricity generation, by quarter" -Quarterly_Generation_Electricity_Commercial,the quarterly net generation of electricity from all fuels and commercial industries;quarterly net generation by all fuels and commercial industries;quarterly net generation of all fuels and industries;quarterly net generation of all fuels and commercial sectors -Quarterly_Generation_Electricity_CommercialCogen,"net generation of electricity by commercial cogeneration, by quarter;quarterly net generation of electricity from commercial cogeneration;electricity generated by commercial cogeneration, by quarter;quarterly electricity generation from commercial cogeneration" -Quarterly_Generation_Electricity_CommercialNonCogen,"the quarterly net generation of all fuels in commercial non-cogen facilities;the amount of energy produced by all fuels in commercial non-cogen facilities each quarter;the total amount of energy produced by commercial non-cogen facilities each quarter, from all fuels;the net generation of all fuels in commercial non-cogen facilities each quarter" -Quarterly_Generation_Electricity_ConventionalHydroelectric,the total output of conventional hydroelectric power plants in all sectors;the total production of conventional hydroelectric power plants in all sectors;hydroelectric power generated by conventional facilities in all sectors;electricity produced by conventional hydropower in all sectors -Quarterly_Generation_Electricity_ConventionalHydroelectric_ElectricPower,hydroelectric power generation in the electric grid on a quarterly basis;the amount of electricity generated by hydroelectric power plants each quarter;the quarterly output of hydroelectric power plants;the quarterly production of hydroelectric power plants -Quarterly_Generation_Electricity_ConventionalHydroelectric_ElectricUtility,electricity generated by conventional hydroelectric power plants for electric utilities on a quarterly basis;the amount of electricity generated by conventional hydroelectric power plants for electric utilities each quarter;the quarterly output of electricity from conventional hydroelectric power plants for electric utilities;the quarterly production of electricity from conventional hydroelectric power plants for electric utilities -Quarterly_Generation_Electricity_ElectricPower,the amount of electricity generated by electric power plants each quarter;the quarterly output of electricity from electric power plants;the quarterly production of electricity by electric power plants;the quarterly yield of electricity from electric power plants -Quarterly_Generation_Electricity_ElectricUtility,the amount of electricity generated by all fuels in electric utilities each quarter;the quarterly output of electricity from all fuels in electric utilities;the quarterly net generation of electricity from all fuels in electric utilities;the quarterly net output of electricity from all fuels in electric utilities -Quarterly_Generation_Electricity_ElectricUtilityCogen,the amount of electricity generated by all fuels and electric utility cogeneration in a quarter;the quarterly output of electricity from all fuels and electric utility cogeneration;the quarterly production of electricity from all fuels and electric utility cogeneration;the quarterly generation of electricity from all fuels and electric utility cogeneration -Quarterly_Generation_Electricity_ElectricUtilityNonCogen,the quarterly net generation of electricity from all fuels by electric utilities that do not use cogeneration;the quarterly net generation of electricity from all fuels by electric utilities that are not cogeneration facilities;the quarterly net generation of electricity from all fuels by electric utilities that are not cogeneration plants;quarterly net generation of all fuels in electric utility non-cogeneration -Quarterly_Generation_Electricity_IndependentPowerProducers,independent power producers' quarterly net generation of all fuels;all fuels net generation by independent power producers on a quarterly basis;quarterly net generation of all fuels by independent power producers;independent power producers' net generation of all fuels on a quarterly basis -Quarterly_Generation_Electricity_Industrial,quarterly net generation of all fuels in all industrial sectors;quarterly net generation of all fuels in all industries;quarterly net generation of all fuels in all industrial plants;quarterly net generation of all fuels in all industrial facilities -Quarterly_Generation_Electricity_IndustrialCogen,"net generation from all fuels in industrial cogeneration, quarterly;net generation from industrial cogeneration, all fuels, quarterly;net generation from all fuels in industrial cogeneration, by quarter;net generation from industrial cogeneration, by quarter, all fuels" -Quarterly_Generation_Electricity_IndustrialNonCogen,quarterly net generation of all fuels by industrial non-cogen;quarterly net generation of all fuels by non-cogeneration industries;quarterly net generation of all fuels by industrial non-chp;quarterly net generation of all fuels by non-cogen industries -Quarterly_Generation_Electricity_NaturalGas,"natural gas net generation in a quarter;quarterly net generation of natural gas;net generation of natural gas in a quarter;natural gas generation in a quarter, net" -Quarterly_Generation_Electricity_NaturalGas_Commercial,"net generation of natural gas in all commercial sectors by quarter;net generation of natural gas in the commercial sector, by quarter;quarterly net generation of natural gas in commercial buildings;net generation of natural gas in commercial sectors by quarter" -Quarterly_Generation_Electricity_NaturalGas_CommercialCogen,quarterly net generation of natural gas in commercial cogeneration;quarterly net generation of natural gas in commercial cogeneration plants;net generation of natural gas in commercial cogeneration by quarter;natural gas generation in commercial cogeneration by quarter -Quarterly_Generation_Electricity_NaturalGas_ElectricPower,the quarterly net generation of natural gas for electric power;the amount of electricity generated from natural gas in the electric power sector each quarter;the amount of natural gas used to generate electricity in the electric power sector each quarter;generation of electricity from natural gas on a quarterly basis -Quarterly_Generation_Electricity_NaturalGas_ElectricUtility, -Quarterly_Generation_Electricity_NaturalGas_ElectricUtilityCogen, -Quarterly_Generation_Electricity_NaturalGas_ElectricUtilityNonCogen,"electricity generated by natural gas in non-combined-cycle electric utilities, by quarter;quarterly electricity generation by natural gas in non-combined-cycle electric utilities;quarterly net generation of electricity by natural gas in electric utility non-cogen;electricity generated by natural gas in non-combined-cycle electric utility plants, on a quarterly basis" -Quarterly_Generation_Electricity_NaturalGas_IndependentPowerProducers,"natural gas net generation, quarterly, by independent power producers" -Quarterly_Generation_Electricity_NaturalGas_Industrial,quarterly net generation of natural gas in all industries;net generation of natural gas in all industries by quarter;quarterly generation of natural gas in all industries;natural gas generation in all industries by quarter -Quarterly_Generation_Electricity_NaturalGas_IndustrialCogen,"the quarterly net generation of electricity by natural gas for industrial cogeneration;the quarterly net generation of electricity from natural gas for industrial cogeneration;natural gas-fired electricity generation for industrial cogeneration, by quarter;quarterly net generation of electricity from natural gas for industrial cogeneration" -Quarterly_Generation_Electricity_Other,"net generation of other fuels in all sectors, by quarter;quarterly net generation of other fuels in all sectors;generation of other fuels in all sectors, by quarter;generation of other fuels in all sectors, quarterly" -Quarterly_Generation_Electricity_OtherBiomass,"the amount of electricity generated from other biomass fuels in all sectors each quarter;the amount of electricity generated from other biomass fuels in all sectors in a three-month period;the amount of electricity generated from other biomass fuels in all sectors in a quarter;net generation of other biomass fuel in all sectors, by quarter" -Quarterly_Generation_Electricity_OtherBiomass_ElectricPower,the amount of electricity generated from other biomass sources each quarter;the amount of electricity produced from other biomass sources each quarter of the year;the amount of electricity produced from other biomass sources each 90-day period;how much electricity was generated from other biomass sources in each quarter? -Quarterly_Generation_Electricity_OtherBiomass_ElectricUtilityNonCogen,electricity generated from other biomass by non-cogen electric utilities on a quarterly basis;quarterly electricity generation from non-cogen electric utilities using biomass;the amount of electricity generated from other biomass by non-cogen electric utilities each quarter;the quarterly production of electricity from other biomass by non-cogen electric utilities -Quarterly_Generation_Electricity_OtherBiomass_IndependentPowerProducers,"other biomass net generation of electricity for independent power producers, quarterly;quarterly net generation of electricity from other biomass for independent power producers;electricity generated from other biomass by independent power producers, quarterly;quarterly net generation of electricity by independent power producers from other biomass" -Quarterly_Generation_Electricity_Other_ElectricPower,"electricity generation from other electric power producers, quarterly;electricity generated by other electric power producers, quarterly;quarterly electricity generation by other electric power producers;electricity produced by other electric power producers, quarterly" -Quarterly_Generation_Electricity_PetroleumLiquids,quarterly yield of petroleum liquids in all sectors;net generation of petroleum liquids in all sectors on a quarterly basis;the amount of petroleum liquids generated in all sectors each quarter;quarterly net petroleum liquids production -Quarterly_Generation_Electricity_PetroleumLiquids_Commercial,electricity generated from petroleum liquids in all commercial industries each quarter;quarterly electricity production from petroleum liquids in all commercial industries;net electricity generated from petroleum liquids in all commercial industries each quarter;net electricity production from petroleum liquids in all commercial industries each quarter -Quarterly_Generation_Electricity_PetroleumLiquids_ElectricPower,"electric power (total) from petroleum liquids, net generation, quarterly" -Quarterly_Generation_Electricity_PetroleumLiquids_ElectricUtility,how much electricity did electric utilities generate from petroleum liquids in each quarter?;what was the quarterly generation of electricity from petroleum liquids by electric utilities?;what is the amount of electricity generated from petroleum liquids by electric utilities each quarter?;how much electricity did electric utilities produce from petroleum liquids each quarter? -Quarterly_Generation_Electricity_PetroleumLiquids_ElectricUtilityNonCogen,the amount of petroleum liquids produced each quarter;the volume of petroleum liquids produced each quarter;the production of petroleum liquids each quarter;the output of petroleum liquids each quarter -Quarterly_Generation_Electricity_PetroleumLiquids_IndependentPowerProducers,net generation of petroleum liquids by independent power producers on a quarterly basis;independent power producers' net generation of petroleum liquids on a quarterly basis;quarterly net generation of petroleum liquids by independent power producers;quarterly net generation of petroleum liquids from independent power producers -Quarterly_Generation_Electricity_PetroleumLiquids_Industrial,2 the net amount of electricity generated from petroleum liquids industries each quarter;4 the quarterly output of electricity from petroleum liquids industries;the quarterly net production of electricity from petroleum liquids industries;the quarterly net output of electricity from petroleum liquids industries -Quarterly_Generation_Electricity_PetroleumLiquids_IndustrialCogen,"the amount of petroleum liquids produced each quarter by industrial cogeneration facilities;the quarterly production of petroleum liquids from industrial cogeneration units;the amount of petroleum liquids generated each quarter by industrial cogeneration units;net generation of petroleum liquids in industrial cogeneration, by quarter" -Quarterly_Generation_Electricity_RenewableEnergy,"net generation of other renewables for all sectors, by quarter;quarterly net generation of other renewables for all sectors;other renewable energy generation for all sectors, by quarter;other renewable energy generation for all sectors, quarterly" -Quarterly_Generation_Electricity_RenewableEnergy_Commercial,monthly net generation of other renewables in all commercial sectors;net generation of other renewables in all commercial sectors on a monthly basis;monthly generation of other renewables in all commercial sectors;other renewable energy generation in all commercial sectors on a monthly basis -Quarterly_Generation_Electricity_RenewableEnergy_ElectricPower, -Quarterly_Generation_Electricity_RenewableEnergy_ElectricUtility,"the total amount of electricity generated by renewable sources other than hydropower in a given quarter;the total amount of electricity generated by solar, wind, geothermal, and other renewable sources in a given quarter;other renewables electric utility's total quarterly net generation;the total amount of electricity generated by other renewables electric utilities in a quarter" -Quarterly_Generation_Electricity_RenewableEnergy_ElectricUtilityNonCogen,"the amount of electricity generated by renewable sources in a quarter, not including electricity generated by cogeneration;the amount of electricity generated by renewable sources in a quarter, not from cogeneration facilities;what is the quarterly net generation of electricity from renewable electric non-cogen?;quarterly net generation of electricity from renewable electric non-cogen" -Quarterly_Generation_Electricity_RenewableEnergy_IndependentPowerProducers,"net generation of electricity by independent power producers from renewable energy, quarterly;quarterly net generation of electricity from renewable energy by independent power producers;electricity generated by independent power producers from renewable energy, quarterly;quarterly electricity generation from renewable energy by independent power producers" -Quarterly_Generation_Electricity_RenewableEnergy_Industrial,"net generation of electricity by other renewables in all industrial sectors, by quarter;quarterly net generation of electricity from other renewable sources in all industrial sectors;quarterly net generation of electricity from non-hydroelectric renewable sources in all industrial sectors;quarterly net generation of electricity from renewable sources other than hydropower in all industrial sectors" -Quarterly_Generation_Electricity_RenewableEnergy_IndustrialCogen,how much electricity did industrial cogeneration generate from renewable energy in each quarter?;what was the quarterly generation of electricity from renewable energy by industrial cogeneration?;how much renewable energy did industrial cogeneration generate each quarter?;what was the amount of renewable energy generated by industrial cogeneration each quarter? -Quarterly_Generation_Electricity_SmallScaleSolarPhotovoltaic,the amount of electricity generated by small-scale solar photovoltaics each quarter;the amount of electricity that small-scale solar photovoltaics produce each quarter;the quarterly production of electricity by small-scale solar photovoltaics;the quarterly generation of electricity by small-scale solar photovoltaics -Quarterly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Commercial, -Quarterly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Industrial,how much solar energy did small-scale solar photovoltaic systems generate in all industries each quarter?;what was the quarterly net generation of small-scale solar photovoltaic systems in all industries?;what was the amount of solar energy generated by small-scale solar photovoltaic systems in all industries each quarter?;what was the quarterly net output of small-scale solar photovoltaic systems in all industries? -Quarterly_Generation_Electricity_SmallScaleSolarPhotovoltaic_Residential,residential solar photovoltaic net generation by quarter;quarterly net generation of small-scale solar photovoltaics in residential buildings;quarterly net generation of small-scale solar photovoltaics in homes;quarterly net generation of small-scale solar photovoltaics in residential properties -Quarterly_Generation_Electricity_Solar,"solar energy generation in all sectors, on a quarterly basis;the amount of solar energy generated in all sectors, each quarter;the quarterly net generation of solar energy in all sectors;the amount of solar energy generated in all sectors, over a period of four quarters" -Quarterly_Generation_Electricity_Solar_Commercial,quarterly solar electricity generation by commercial industries;net generation of solar electricity by commercial industries on a quarterly basis;quarterly solar electricity production by commercial industries;quarterly solar electricity output by commercial industries -Quarterly_Generation_Electricity_Solar_IndependentPowerProducers,independent power producers' quarterly net solar power generation;quarterly net solar power generation by independent power producers;independent power producers' net solar power generation for the quarter;net solar power generation by independent power producers for the quarter -Quarterly_Generation_Electricity_Solar_Industrial,quarterly solar generation in all industries;quarterly net generation from solar in all industries;quarterly net generation of all solar in all industries -Quarterly_Generation_Electricity_Solar_Residential,residential solar generation by quarter;quarterly solar generation in residential areas;the amount of solar power generated in residential areas each quarter;the amount of solar energy produced in residential areas each quarter -Quarterly_Generation_Electricity_UtilityScalePhotovoltaic,what is the quarterly generation of electricity from photovoltaics?;what is the quarterly generation of photovoltaic electricity?;electricity generated by photovoltaics in utility-scale power plants on a quarterly basis;quarterly electricity generation from utility-scale photovoltaic power plants -Quarterly_Generation_Electricity_UtilityScalePhotovoltaic_ElectricPower,what was the quarterly net generation of electric power from utility-scale photovoltaics?;the quarterly net generation of electricity from utility-scale photovoltaics;the quarterly net output of electricity from utility-scale photovoltaic power plants -Quarterly_Generation_Electricity_UtilityScalePhotovoltaic_ElectricUtilityNonCogen,"quarterly net generation of electricity from utility-scale photovoltaics, excluding cogeneration;quarterly net generation of electricity in utility-scale photovoltaic, non-cogen utility;quarterly net generation of electricity from utility-scale photovoltaics, not cogeneration;quarterly net generation of electricity from utility-scale solar panels, not cogeneration" -Quarterly_Generation_Electricity_UtilityScalePhotovoltaic_IndependentPowerProducers,the amount of electricity generated by utility-scale photovoltaics in independent power producers on a quarterly basis;the quarterly net generation of utility-scale photovoltaics in independent power producers;the quarterly amount of electricity generated by utility-scale photovoltaics in independent power producers;the quarterly net generation of electricity from utility-scale photovoltaics in independent power producers -Quarterly_Generation_Electricity_UtilityScaleSolar,the amount of electricity generated by utility-scale solar power plants in all sectors each quarter;the amount of electricity generated by utility-scale solar power plants in all sectors on a quarterly basis;the quarterly output of utility-scale solar power plants in all sectors;the quarterly generation of utility-scale solar power plants in all sectors -Quarterly_Generation_Electricity_UtilityScaleSolar_ElectricPower,1 the amount of electricity generated by utility-scale solar power plants each quarter;2 the total amount of electricity generated by utility-scale solar power plants in a given quarter;4 the quarterly generation of utility-scale solar power plants;the amount of electricity generated by utility-scale solar power plants each quarter -Quarterly_Generation_Electricity_UtilityScaleSolar_ElectricUtilityNonCogen,"quarterly net generation of utility-scale solar in electric utility non-cogen;quarterly net generation of utility-scale solar in electric utilities excluding cogeneration;quarterly net generation of utility-scale solar in electric utilities, excluding cogeneration;quarterly net generation of utility-scale solar in electric utilities, not including cogeneration" -Quarterly_Generation_Electricity_UtilityScaleSolar_IndependentPowerProducers,the amount of electricity generated by utility-scale solar power plants in independent power producers on a quarterly basis;the amount of electricity generated by utility-scale solar power plants in independent power producers each quarter;the quarterly output of utility-scale solar power plants in independent power producers;the quarterly production of electricity from utility-scale solar power plants in independent power producers -Quarterly_Generation_Electricity_Wind,"net generation of electricity by wind, by quarter;quarterly net generation of electricity from wind;wind power generation, net, by quarter;quarterly electricity generation from wind" -Quarterly_Generation_Electricity_Wind_ElectricPower,wind power generation in the previous quarter;the amount of wind power produced in the previous quarter;quarterly wind power generation;quarterly net generation of wind power -Quarterly_Generation_Electricity_Wind_ElectricUtilityNonCogen,quarterly wind power generation by non-combined-cycle electric utilities;quarterly wind power generation by electric utilities not using combined-cycle technology;quarterly wind power generation by electric utilities not using combined-cycle plants;quarterly wind power generation by electric utilities not using combined-cycle units -Quarterly_Generation_Electricity_Wind_IndependentPowerProducers, -Quarterly_Receipt_Fuel_ForElectricityGeneration_BituminousCoal,"bituminous coal receipts in all sectors by quarter;quarterly bituminous coal receipts by sector;bituminous coal receipts by sector, quarterly;quarterly receipts of bituminous coal by sector" -Quarterly_Receipt_Fuel_ForElectricityGeneration_Coal,coal receipts for electricity generation each quarter;quarterly coal receipts for electricity generation;coal receipts for electricity generation in each quarter;quarterly receipts of coal used for electricity generation -Quarterly_Receipt_Fuel_ForElectricityGeneration_Coal_ElectricPower,quarterly receipts of fossil fuels by electricity plants for electric power (total);receipts of fossil fuels by electricity plants for electric power (total) on a quarterly basis;the quarterly amount of fossil fuels received by electricity plants for electric power (total);the amount of fossil fuels received by electricity plants for electric power (total) each quarter -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas,"natural gas receipts for electricity generation, by quarter;quarterly natural gas receipts for electricity generation;receipts of natural gas for electricity generation, by quarter;electricity generation natural gas receipts, by quarter" -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,quarterly natural gas receipts by electricity plants;quarterly receipts of natural gas from electricity plants;natural gas receipts from electricity plants each quarter;natural gas receipts by electricity plants on a quarterly basis -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,natural gas receipts by electricity plants in electric utilities on a quarterly basis;quarterly natural gas receipts by electricity plants in electric utilities;receipts of natural gas by electricity plants in electric utilities on a quarterly basis;receipts of natural gas by electricity plants in electric utilities in each quarter -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,the amount of natural gas received quarterly for electricity generation in electric utility non-cogen plants;the quarterly receipt of natural gas for electricity generation in non-cogen electric utility plants;the amount of natural gas received quarterly for electricity generation in electric utility plants that are not cogeneration plants;the quarterly receipt of natural gas for electricity generation in electric utility plants that do not cogenerate -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,the amount of money that natural gas independent power producers receive from selling natural gas;the income that natural gas independent power producers generate from selling natural gas;the revenue that natural gas independent power producers earn from selling natural gas;the sales that natural gas independent power producers make from selling natural gas -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_Industrial,"natural gas receipts in all industries, quarterly;natural gas receipts by industry, quarterly;quarterly natural gas receipts by industry;natural gas receipts in all industries, by quarter" -Quarterly_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,how much natural gas did industrial cogeneration plants receive in each quarter?;what were the quarterly receipts of natural gas for electricity plants in industrial cogeneration?;what were the amounts of natural gas received by industrial cogeneration plants in each quarter?;what were the quarterly natural gas receipts of industrial cogeneration plants for electricity? -Quarterly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids,"quarterly receipts of fossil fuels by electricity plants in btu, petroleum liquids;fossil fuels received by power plants (btu), petroleum liquids, all sectors, quarterly;quarterly receipts of petroleum liquids, all sectors, by electricity plants (btu);quarterly receipts of petroleum liquids by electricity plants (btu), all sectors" -Quarterly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,the sum of all petroleum liquids received by electricity plants in each quarter;the total quantity of petroleum liquids received by electricity plants in each quarter;the total volume of petroleum liquids received by electricity plants in each quarter;the total tonnage of petroleum liquids received by electricity plants in each quarter -Quarterly_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,quarterly petroleum liquids receipts in electric utilities;quarterly receipts of petroleum liquids by electric utilities;quarterly receipts of petroleum liquids for electric utilities;quarterly receipts of petroleum liquids in the electric utility industry -Quarterly_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal,the amount of money that electricity plants receive each quarter for using subbituminous coal to generate electricity;the quarterly revenue from subbituminous coal used in electricity generation;the quarterly income from subbituminous coal used to generate electricity;the quarterly receipts from subbituminous coal used to produce electricity -Quarterly_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,the amount of subbituminous coal received by electric power plants each quarter;the quarterly intake of subbituminous coal by electric power plants;how much subbituminous coal did electric power plants receive each quarter?;how much subbituminous coal did electric power plants receive in each quarter? -Quarterly_RetailSales_Electricity,sales of electricity to all sectors on a quarterly basis;quarterly sales of electricity to all sectors;electricity sales to all sectors on a quarterly basis;quarterly electricity sales to all sectors -Quarterly_RetailSales_Electricity_Commercial,sales of commercial electricity in a quarter;quarterly commercial electricity sales;commercial electricity sales by quarter;electricity sales to commercial customers in a quarter -Quarterly_RetailSales_Electricity_Industrial,quarterly electricity retail sales by industry;quarterly electricity sales to industries;sales of electricity to industries on a quarterly basis;quarterly sales of electricity to industrial customers -Quarterly_RetailSales_Electricity_OtherSector,sales of electricity to retail customers on a quarterly basis;quarterly sales of electricity to end users;quarterly retail sales of electricity;quarterly electricity sales to consumers -Quarterly_RetailSales_Electricity_Residential,sales of electricity to households on a quarterly basis;quarterly sales of electricity to residential customers;electricity sales to households in a quarter;quarterly electricity sales to homes -Quarterly_SalesRevenue_Electricity,"revenue from retail electricity sales in all sectors, quarterly;quarterly retail electricity sales revenue across all sectors;revenue from retail sales of electricity in all sectors, per quarter;quarterly retail electricity sales revenue, all sectors" -Quarterly_SalesRevenue_Electricity_Commercial,revenue from commercial electricity sales in a quarter;quarterly commercial electricity sales revenue;commercial electricity sales revenue for a quarter;quarterly sales of commercial electricity revenue -Quarterly_SalesRevenue_Electricity_Industrial,quarterly revenue from industrial electricity sales;quarterly revenue from retail sales of electricity to industrial customers;quarterly revenue from the sale of electricity to industrial customers;quarterly revenue from industrial retail electricity sales -Quarterly_SalesRevenue_Electricity_OtherSector,revenue from retail sales of electricity in other areas in the last quarter;the amount of money made from selling electricity in other areas in the last quarter;the total amount of money made from selling electricity in other areas in the last 3 months;the revenue from selling electricity in other areas in the last 90 days -Quarterly_SalesRevenue_Electricity_Residential,quarterly sales of electricity in residential areas;quarterly revenue from residential electricity sales;residential electricity sales revenue for the quarter;quarterly revenue from selling electricity to residential customers -Quarterly_Stock_Fuel_ForElectricityGeneration_Coal_ElectricPower,coal stocks for electric power generation on a quarterly basis;quarterly coal holdings for electric power generation;coal inventory for electric power generation on a quarterly basis;the level of coal reserves held by electric power generators on a quarterly basis -Quarterly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,total quarterly petroleum liquid stock for electricity generation;total quarterly petroleum liquid stock used for electricity generation;total quarterly petroleum liquid stock consumed for electricity generation;total quarterly petroleum liquid stock burned for electricity generation -Quarterly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,quarterly petroleum liquids stocks for electricity generation;quarterly petroleum liquids stocks for power generation;quarterly petroleum liquids stocks for electricity production;quarterly petroleum liquids stocks for power production -Quarterly_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,the amount of petroleum liquids that independent power producers have in stock each quarter;the quantity of petroleum liquids that independent power producers have on hand each quarter;the inventory of petroleum liquids that independent power producers have each quarter;the supply of petroleum liquids that independent power producers have each quarter -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_BituminousCoal,"sulfur content and bituminous coal quality in all sectors, quarterly;quarterly report on the quality of sulfur content and bituminous coal in all sectors;the quality of sulfur content and bituminous coal in all sectors, quarterly report;quarterly report on the quality of sulfur content and bituminous coal in all sectors, by sector" -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_Coal, -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,the amount of sulfur in coal used to generate electricity each quarter;the average amount of sulfur in coal used to generate electricity each quarter;the level of sulfur in coal used to generate electricity each quarter;the sulfur content of coal used to generate electricity each quarter -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids,"sulfur content in petroleum liquids for electricity generation, quarterly;quarterly sulfur content of petroleum liquids for electricity generation;sulfur content of petroleum liquids for electricity generation, quarter by quarter;quarterly report on sulfur content in petroleum liquids for electricity generation" -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower, -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,the quality of petroleum liquids used in electricity generation on a quarterly basis;the quality of petroleum liquids used to generate electricity on a quarterly basis;the quality of petroleum liquids in electricity generation on a quarterly basis;the quality of petroleum liquids used to generate electricity on a quarter-to-quarter basis -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal,the quality of sub-bituminous coal in all sectors on a quarterly basis;the quality of sub-bituminous coal in all sectors over the course of a quarter;the quality of sub-bituminous coal in all sectors on a 3-month basis;the quality of sub-bituminous coal in all sectors on a quarter-to-quarter basis -Quarterly_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"sulfur content of sub-bituminous coal in electric power plants on a quarterly basis;quarterly average sulfur content of sub-bituminous coal in electric power plants;sulfur content of sub-bituminous coal in electric power plants for each quarter;quarterly sulfur content of sub-bituminous coal in electric power plants, by quarter" -Radiation_Downwelling_LongwaveRadiation,radiation from the earth's surface that travels towards the atmosphere;radiation that travels from the earth to the atmosphere;radiation that goes from the earth to the sky;radiation that travels from the earth's surface to the atmosphere -Radiation_Downwelling_LongwaveRadiation_SSP245,downwelling longwave radiation based on rcp 45 ssp 2;longwave radiation based on rcp 45 ssp 2 downwelling;radiation based on rcp 45 ssp 2 downwelling longwave;longwave radiation downwelling based on rcp 45 ssp 2 -Radiation_Downwelling_LongwaveRadiation_SSP585,longwave radiation based on rcp 85 and ssp 5;longwave radiation that is downwelling and based on rcp 85 and ssp 5;longwave radiation that is downwelling in the ssp 5 scenario and based on rcp 85 -Radiation_Downwelling_ShortwaveRadiation,shortwave radiation that travels from the sun to the earth's surface;shortwave radiation from the sun that reaches the earth's surface -Radiation_Downwelling_ShortwaveRadiation_SSP245,radiation based on the rcp 45 downwelling shortwave radiation;radiation based on the rcp 45 downward shortwave radiation;radiation based on the rcp 45 downward solar radiation;radiation based on the rcp 45 downward shortwave irradiance -Radiation_Downwelling_ShortwaveRadiation_SSP585,"radiation from the sun that reaches the earth's surface, based on the rcp 85 scenario, downwelling, ssp 5, and shortwave radiation;the amount of sunlight that reaches the earth's surface, based on the rcp 85 scenario, downwelling, ssp 5, and shortwave radiation;the amount of incoming solar radiation that reaches the earth's surface, based on the rcp 85 scenario, downwelling, ssp 5, and shortwave radiation;ssp 5 shortwave radiation" -ReceiptsBillingsOrSales_Establishment_NAICSConstruction_WithPayroll,construction industry payroll receipts;construction industry receipts with payroll;receipts from the construction industry with payroll;payroll receipts from the construction industry -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll,"money earned by businesses in the arts, entertainment, and recreation industries that have employees;revenue brought in by businesses in the arts, entertainment, and recreation industries that have payroll;the amount of money earned by arts, entertainment, and recreation establishments that have employees;the sales made by arts, entertainment, and recreation companies that have payroll" -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,"arts, entertainment, and recreation revenue is exempt from federal income tax;federal income tax does not apply to revenue from arts, entertainment, and recreation;revenue from arts, entertainment, and recreation is not subject to federal income tax;federal income tax is not levied on revenue from arts, entertainment, and recreation" -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"revenue from arts, entertainment, and recreation establishments that is subject to federal income tax;the revenue of arts, entertainment, and recreation establishments that is taxable by the federal government;income tax paid by arts, entertainment, and recreation establishments;federal income tax paid by arts, entertainment, and recreation businesses" -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll,revenue of educational establishments (naics/61) with payroll;receipts from educational establishments (naics/61) with payroll;income from educational establishments (naics/61) with payroll;earnings from educational establishments (naics/61) with payroll -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,federal income tax does not apply to revenue from educational services;educational services revenue is not subject to federal income tax;federal income tax does not apply to the revenue of educational services;educational services revenue is exempt from federal income tax -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,income from educational services that is subject to federal income tax;revenue from educational services that is taxable by the federal government;money earned from educational services that is subject to federal income tax;profit from educational services that is subject to federal income tax -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,the amount of money that health care and social assistance establishments with payroll bring in;the total income of health care and social assistance establishments with payroll;the gross receipts of health care and social assistance establishments with payroll;the earnings of health care and social assistance establishments with payroll -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,healthcare and social assistance revenue is exempt from federal income tax;revenue from healthcare and social assistance is exempt from federal income tax;federal income tax is not levied on revenue from healthcare and social assistance;federal income tax does not apply to revenue generated by healthcare and social assistance -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,federal income tax on revenue from health care and social assistance;revenue from health care and social assistance subject to federal income tax;federal income tax revenue from health care and social assistance;federal income tax on health care and social assistance revenue -ReceiptsOrRevenue_Establishment_NAICSInformation_WithPayroll,income from information industries with payroll;revenue from information industries with payroll;earnings from information industries with payroll;sales from information industries with payroll -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll,"receipts from other services, excluding public administration with payrolls;income from other services, excluding public administration with payrolls;earnings from other services, excluding public administration with payrolls;takings from other services, excluding public administration with payrolls" -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"revenue from other services, except public administration, is not subject to federal income tax;revenue from other services, except public administration, is not included in federal taxable income;revenue from other services, except public administration, is not subject to federal income taxation;revenue from other services, except public administration, is not subject to federal income tax withholding" -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"income tax revenue from services other than public administration;federal income tax revenue from services other than public administration;income tax revenue from non-public administration services;revenue from other services, excluding public administration, that is taxed by the federal government" -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,professional scientific and technical services with payroll;professional scientific and technical services with payroll receipts;receipts of professional scientific and technical services with payroll;receipts of professional scientific and technical services with payroll income -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"federal income tax does not apply to receipts from professional, scientific, and technical services;receipts from professional, scientific, and technical services are not subject to federal income tax;federal income tax is not levied on receipts from professional, scientific, and technical services" -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"the amount of money that professional, scientific, and technical services establishments earned and were taxed on by the federal government;the total revenue of professional, scientific, and technical services establishments that was subject to federal income tax;the total receipts of professional, scientific, and technical services establishments that were subject to federal income tax;revenue of professional, scientific, and technical services establishments that is subject to federal income tax" -Receipts_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,money earned by administrative and support and waste management services establishments;revenue generated by administrative and support and waste management services establishments;income received by administrative and support and waste management services establishments;sales made by administrative and support and waste management services establishments -RetailDrugDistribution_DrugDistribution_Alfentanil, -RetailDrugDistribution_DrugDistribution_Amobarbital, -RetailDrugDistribution_DrugDistribution_Amphetamine,how much amphetamine is distributed through retail drug channels;the amount of amphetamine distributed through retail drug channels;the quantity of amphetamine distributed through retail drug channels;the volume of amphetamine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_AnabolicSteroids, -RetailDrugDistribution_DrugDistribution_BarbituricAcidDerivativeOrSalt,drug distribution: drug/dea/2100;drug distribution: dea 2100;drug distribution: 2100 -RetailDrugDistribution_DrugDistribution_Buprenorphine, -RetailDrugDistribution_DrugDistribution_Butalbital, -RetailDrugDistribution_DrugDistribution_Cocaine,retail drug distribution of drug distribution: drug/dea/9041 l -RetailDrugDistribution_DrugDistribution_Codeine,the quantity of codeine distributed through retail drug channels;the amount of codeine that is sold through retail drug channels;the number of codeine pills that are sold through retail drug channels;the volume of codeine that is sold through retail drug channels -RetailDrugDistribution_DrugDistribution_DMethamphetamine, -RetailDrugDistribution_DrugDistribution_Dihydrocodeine, -RetailDrugDistribution_DrugDistribution_DlMethamphetamine, -RetailDrugDistribution_DrugDistribution_Ecgonine, -RetailDrugDistribution_DrugDistribution_FDAApprovedGammaHydroxybutyricAcidPreparations,the distribution of drugs to retail stores in 2012;the sale of drugs to retail stores in 2012;the movement of drugs from manufacturers to retail stores in 2012;the transfer of drugs from manufacturers to retail stores in 2012 -RetailDrugDistribution_DrugDistribution_Fentanyl,retail drug distribution of drug distribution: drug/dea/9801;the distribution of retail drugs: drug/dea/9801;the distribution of drugs to retail outlets: drug/dea/9801;the distribution of drugs to stores: drug/dea/9801 -RetailDrugDistribution_DrugDistribution_GammaHydroxybutyricAcid,the distribution of drugs to retail stores in 2010;the sale of drugs to retail stores in 2010;the way drugs are distributed to retail stores in 2010;the way drugs are sold to retail stores in 2010 -RetailDrugDistribution_DrugDistribution_Hydrocodone,the quantity of hydrocodone dispensed through retail drug channels;the amount of hydrocodone sold through retail pharmacies;the volume of hydrocodone distributed through retail outlets;the number of hydrocodone pills sold through retail stores -RetailDrugDistribution_DrugDistribution_Hydromorphone, -RetailDrugDistribution_DrugDistribution_Levorphanol,distribution of drugs -RetailDrugDistribution_DrugDistribution_Lisdexamfetamine,drug distribution: drug/dea/1205 -RetailDrugDistribution_DrugDistribution_Lorazepam,drug distribution -RetailDrugDistribution_DrugDistribution_MarketableOralDronabinol, -RetailDrugDistribution_DrugDistribution_Methadone, -RetailDrugDistribution_DrugDistribution_Methylphenidate,the movement of drugs to retail stores -RetailDrugDistribution_DrugDistribution_Morphine,the amount of morphine distributed through retail drug channels;the quantity of morphine distributed through retail drug channels;the number of morphine doses distributed through retail drug channels;the volume of morphine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Nabilone,the delivery of drugs to retail outlets;drug distribution to retailers;drug distribution to retail stores -RetailDrugDistribution_DrugDistribution_Naloxone,drug distribution: drug/dea/9411 -RetailDrugDistribution_DrugDistribution_Noroxymorphone, -RetailDrugDistribution_DrugDistribution_Oxycodone,the quantity of oxycodone distributed through retail drug channels;the amount of oxycodone that was sold through retail drug channels;the number of oxycodone pills that were sold through retail drug channels;the volume of oxycodone that was sold through retail drug channels -RetailDrugDistribution_DrugDistribution_Oxymorphone,"retail distribution of drugs;distribution of drugs, retail;distribution of drugs to retail" -RetailDrugDistribution_DrugDistribution_Paregoric, -RetailDrugDistribution_DrugDistribution_Pentobarbital, -RetailDrugDistribution_DrugDistribution_Pethidine, -RetailDrugDistribution_DrugDistribution_Phencyclidine, -RetailDrugDistribution_DrugDistribution_Phendimetrazine,drug distribution: drug/dea/1615 -RetailDrugDistribution_DrugDistribution_Phenobarbital,retail drug distribution: drug/dea/2285 -RetailDrugDistribution_DrugDistribution_PoppyStrawConcentrate, -RetailDrugDistribution_DrugDistribution_PowderedOpium, -RetailDrugDistribution_DrugDistribution_Remifentanil, -RetailDrugDistribution_DrugDistribution_Secobarbital, -RetailDrugDistribution_DrugDistribution_Sufentanil, -RetailDrugDistribution_DrugDistribution_Tapentadol, -RetailDrugDistribution_DrugDistribution_Testosterone, -RetailDrugDistribution_DrugDistribution_TincuredOpium, -RetailDrugDistribution_DrugDistribution_Zolpidem, -RetailDrugDistribution_DrugDistribution_dea/9809, -Revenue_Establishment_NAICSFinanceInsurance_WithPayroll,finance and insurance payroll revenue;payroll revenue for finance and insurance;revenue from finance and insurance payroll;payroll revenue from finance and insurance -Revenue_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,income from managing companies and enterprises with payroll;income in corporate management with payroll;profits in business administration with payroll;revenue in enterprise administration with payroll -Revenue_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,"the revenue of the real estate and rental and leasing industries, including payroll;the total revenue of the real estate and rental and leasing industries, including payroll;the amount of money earned by the real estate and rental and leasing industries, including payroll;the total earnings of the real estate and rental and leasing industries, including payroll" -Sales_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll,wholesale trade sales;sales at wholesale establishments;sales of goods by wholesale establishments;sales of goods to other businesses -Sales_Establishment_NAICSAccommodationFoodServices_WithPayroll,"sales of food and accommodation businesses with employees;sales of hotels, restaurants, and other food and accommodation businesses with employees;sales of businesses in the accommodation and food services sector with employees;sales of businesses in the hospitality sector with employees" -Sales_Establishment_NAICSWholesaleTrade_WithPayroll,establishments in the wholesale trade sector that have paid employees;wholesale trade businesses with payrolls;wholesale trade firms with paid workers;wholesale trade companies that pay their employees -Sales_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,wholesalers who sell to retailers -SampleSize_Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication, -SampleSize_Percent_Person_18To64Years_ReceivedNoHealthInsurance, -SampleSize_Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening, -SampleSize_Percent_Person_50To74Years_Female_ReceivedMammography,"the percentage of women aged 50 to 74 who received a mammogram;the number of women aged 50 to 74 who received a mammogram, expressed as a percentage of the total number of women in that age group;the proportion of women aged 50 to 74 who received a mammogram;the rate of mammography among women aged 50 to 74" -SampleSize_Percent_Person_50To75Years_ReceivedColorectalCancerScreening, -SampleSize_Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices, -SampleSize_Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,preventive care for men aged 65 and older;essential health checks for men over 65;preventive care for men over 65;health screenings for older men -SampleSize_Percent_Person_65OrMoreYears_WithAllTeethLoss, -SampleSize_Percent_Person_BingeDrinking,what is the rate of binge drinking?;how many people were surveyed and how many of them binge drink;the number of people who participated in the survey and how many of them reported binge drinking;the number of people who were asked about their drinking habits and how many of them said they binge drink -SampleSize_Percent_Person_Obesity, -SampleSize_Percent_Person_PhysicalInactivity, -SampleSize_Percent_Person_ReceivedAnnualCheckup, -SampleSize_Percent_Person_ReceivedCholesterolScreening,"number of subjects, percentage who had their cholesterol screened" -SampleSize_Percent_Person_ReceivedDentalVisit,"number of people surveyed, percentage who had a dental visit;number of participants, percentage who went to the dentist;number of people in the study, percentage who saw a dentist;number of people surveyed, proportion who had a dental visit" -SampleSize_Percent_Person_SleepLessThan7Hours,"what was the sample size, what percentage of people slept for less than 7 hours" -SampleSize_Percent_Person_Smoking,"how many people in the sample smoke?;what is the prevalence of smoking in the sample?;sample size, proportion of smokers" -SampleSize_Percent_Person_WithArthritis, -SampleSize_Percent_Person_WithAsthma,"number of people studied, how many people have asthma;size of the study group, proportion of people with asthma;number of people in the study, rate of asthma;number of people surveyed, prevalence of asthma" -SampleSize_Percent_Person_WithCancerExcludingSkinCancer,frequency of cancer -SampleSize_Percent_Person_WithChronicKidneyDisease,"1 the number of people in a study, and how many of them have chronic kidney disease" -SampleSize_Percent_Person_WithChronicObstructivePulmonaryDisease, -SampleSize_Percent_Person_WithCoronaryHeartDisease, -SampleSize_Percent_Person_WithHighBloodPressure, -SampleSize_Percent_Person_WithHighCholesterol,how many people were studied and how many had high cholesterol;the number of people in the study and the percentage of them with high cholesterol;the sample size and the prevalence of high cholesterol -SampleSize_Percent_Person_WithMentalHealthNotGood, -SampleSize_Percent_Person_WithPhysicalHealthNotGood,the prevalence of physical health problems is high in this sample;a large number of people in this sample have physical health problems;many people in this sample are not physically healthy;a significant number of people in this sample have physical health problems -SampleSize_Percent_Person_WithStroke,"number of people studied, how often stroke occurs;number of people in the sample, how many had a stroke;number of participants, stroke incidence;number of subjects, stroke frequency" -SettlementAmount_NaturalHazardInsurance_BuildingContents_FloodEvent,how much money will i get from my natural hazard insurance for my building contents after a flood?;what is the settlement amount for my building contents after a flood from my natural hazard insurance?;what is the payout for my building contents after a flood from my natural hazard insurance?;how much will my natural hazard insurance pay for my building contents after a flood? -SettlementAmount_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,the amount of money you will receive from your natural hazard insurance policy if your building structure or contents are damaged or destroyed;the amount of money you will be paid by your natural hazard insurance company if your building structure or contents are damaged or destroyed;the amount of money you will be compensated for if your building structure or contents are damaged or destroyed by a natural hazard;the amount of money you will be reimbursed for if your building structure or contents are damaged or destroyed by a natural hazard -SettlementAmount_NaturalHazardInsurance_BuildingStructure_FloodEvent,the amount of money paid out by flood insurance for damage to buildings;the amount of money that a flood insurance policy will pay out for damage to a building;the amount of money that a building owner can expect to receive from their flood insurance policy if their building is damaged by a flood;the amount of money paid out by flood insurance for damage to building structures -ShipmentsOrReceipts_Establishment_NAICSMiningQuarryingOilGasExtraction_WithPayroll,"mining, quarrying, oil and gas extraction payroll shipments;payroll shipments for mining, quarrying, oil and gas extraction;shipments of mining, quarrying, oil and gas extraction with payroll;payroll shipments of mining, quarrying, oil and gas extraction" -StandardizedPrecipitationEvapotranspirationIndex_Atmosphere,standardized precipitation evapotranspiration index;standardized precipitation evapotranspiration;standardized precipitation-evapotranspiration index;standardized precipitation evapotranspiration index (spi) -StandardizedPrecipitationIndex_Atmosphere,standardized precipitation index;standard precipitation index;standardized precipitation index (spi);standard precipitation index (spi) -StandardizedPrecipitationIndex_Atmosphere_1MonthPeriod,january precipitation index;precipitation index for january;january spi;january's spi -StandardizedPrecipitationIndex_Atmosphere_36MonthPeriod,how much rain fell in the 36th month?;what was the average rainfall in the 36th month?;how much precipitation was there in the 36th month?;standardized precipitation index (spi) for month 36 -StandardizedPrecipitationIndex_Atmosphere_3MonthPeriod,standardized precipitation index (spi) for month 3;spi in month 3;spi of month 3;standardized precipitation index for month 3 -StandardizedPrecipitationIndex_Atmosphere_6MonthPeriod,standardized precipitation index (spi) for month 6;standardized precipitation index for month 6;standardized precipitation index in month 6;standardized precipitation index for the 6th month of the year -StandardizedPrecipitationIndex_Atmosphere_72MonthPeriod,"standardized precipitation index for month 72;spi: month 72;standardized precipitation index, month 72;spi, month 72" -StandardizedPrecipitationIndex_Atmosphere_9MonthPeriod,standardized precipitation index for month 9;standardized precipitation index in month 9;month 9 standardized precipitation index;september standardized precipitation index -Temperature, -Temperature_SSP245,rcp 45 and ssp 2 emissions scenario temperature;temperature based on rcp 45 and ssp 2 emissions scenario;temperature under rcp 45 and ssp 2 emissions scenario;temperature in rcp 45 and ssp 2 emissions scenario -Temperature_SSP585,rcp 85 and ssp 5 emissions scenario temperature;temperature based on rcp 85 and ssp 5 emissions scenario;temperature in rcp 85 and ssp 5 emissions scenario;temperature under rcp 85 and ssp 5 emissions scenario -USStateQuarterlyIndustryGDP_NAICS_11,"agriculture, forestry, fishing, and hunting industries' nominal gross domestic product;agriculture, forestry, fishing, and hunting industries' nominal gross domestic production;nominal gross domestic product of agriculture, forestry, fishing, and hunting industries;the nominal gross domestic product of agriculture, forestry, fishing, and hunting industries" -USStateQuarterlyIndustryGDP_NAICS_21,"gdp of mining, quarrying, and oil and gas extraction;gdp of the mining, quarrying, and oil and gas extraction sector;gdp from mining, quarrying, and oil and gas extraction;gdp generated by mining, quarrying, and oil and gas extraction" -USStateQuarterlyIndustryGDP_NAICS_22,the economic activity in the utilities sector;the amount of economic activity in the utilities industry;the level of economic activity in the utilities sector;the economic activity generated by the utilities sector -USStateQuarterlyIndustryGDP_NAICS_23,the economic activity generated by the construction industry;the amount of money spent on construction;the economic impact of construction;the level of construction activity -USStateQuarterlyIndustryGDP_NAICS_311_316&322_326, -USStateQuarterlyIndustryGDP_NAICS_31_33,"the amount of gross domestic product (gdp) generated by the chemical, mechanical, or physical transformation of materials;chemical, mechanical, or physical transformation of materials;amount of gross domestic production from chemical, mechanical, or physical transformation of materials;production of goods and services by chemical, mechanical, or physical transformation of materials" -USStateQuarterlyIndustryGDP_NAICS_321&327_339, -USStateQuarterlyIndustryGDP_NAICS_42,how much economic activity is there in gross domestic production and wholesale trade?;what is the amount of economic activity in gross domestic production and wholesale trade?;what is the level of economic activity in gross domestic production and wholesale trade?;what is the scope of economic activity in gross domestic production and wholesale trade? -USStateQuarterlyIndustryGDP_NAICS_44_45,retail trade gdp;gdp in retail trade;the total economic output of the retail sector;retail gdp -USStateQuarterlyIndustryGDP_NAICS_48_49,the amount of economic activity in transportation and warehousing;the amount of economic activity in the transportation and warehousing sector;the amount of economic activity in the transportation and warehousing industry;the amount of economic activity in the transportation and warehousing field -USStateQuarterlyIndustryGDP_NAICS_51,"the total value of goods and services produced by information establishments, expressed in nominal terms;the total value of goods and services produced by information establishments, not adjusted for inflation;the total value of goods and services produced by information establishments, in current dollars;the value of goods and services produced by information establishments in a given year, not adjusted for inflation" -USStateQuarterlyIndustryGDP_NAICS_52,"the total economic activity of the finance and insurance industries;the amount of economic activity in the finance and insurance industries, as measured by the nominal gross domestic product" -USStateQuarterlyIndustryGDP_NAICS_53, -USStateQuarterlyIndustryGDP_NAICS_54,"the economic activity of professional, scientific, and technical services industries;the amount of economic activity generated by professional, scientific, and technical services industries;the economic activity of the professional, scientific, and technical services industries;the amount of economic activity in professional, scientific, and technical services industries" -USStateQuarterlyIndustryGDP_NAICS_55,gdp in business management;gdp in business administration;gross domestic product (gdp) in business management;how does gdp affect businesses and enterprises -USStateQuarterlyIndustryGDP_NAICS_56,"the amount of money generated by the administrative, support, and waste management service industries in the gross domestic product;the economic activity of the administrative, support, and waste management service industries as measured by the gross domestic product;the economic output of the administrative, support, and waste management service industries;the economic activity of the administrative, support, and waste management service industries" -USStateQuarterlyIndustryGDP_NAICS_61,educational services as a percentage of gdp;the share of gdp that comes from educational services;the amount of money that is spent on education as a proportion of the total economic output of a country;the amount of gdp that is generated by the education sector -USStateQuarterlyIndustryGDP_NAICS_62,the amount of economic activity in the country is largely due to health care and social assistance -USStateQuarterlyIndustryGDP_NAICS_71,"the gross domestic product (gdp) of arts, entertainment, and recreation establishments in the united states" -USStateQuarterlyIndustryGDP_NAICS_72, -USStateQuarterlyIndustryGDP_NAICS_81,gdp excluding public administration;gdp excluding government services;gdp minus public administration;gdp without public administration -UnemploymentRate_Person,unemployment rate;the proportion of the population that is out of work;the percentage of people who are actively looking for work but are unable to find a job;the number of unemployed people divided by the total number of people in the labor force -Victim_Count_CriminalIncidents_AggravatedAssault_IsHateCrime, -Victim_Count_CriminalIncidents_AllOtherLarceny_IsHateCrime,the percentage of hate crime victims compared to all other larceny victims;the proportion of hate crime victims compared to all other larceny victims;the number of hate crime victims divided by the number of all other larceny victims;the ratio of hate crime victims to all other larceny victims -Victim_Count_CriminalIncidents_Arson_IsHateCrime,arson attacks motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_AggravatedAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_MentalDisability, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstPerson_IsHateCrime_PhysicalDisability,crimes targeting people with disabilities;hate crimes targeting people with physical disabilities -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime,crimes against property motivated by hatred of people with disabilities;crimes against property that are motivated by hatred of people with disabilities;crimes against property that are motivated by hate against people with disabilities;property crimes motivated by hatred of people with disabilities -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_MentalDisability,4 damage to the property of people with mental disabilities because of prejudice against them -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_CrimeAgainstProperty_IsHateCrime_PhysicalDisability,property crimes against physically disabled people motivated by hate;hate crimes against physically disabled people involving property damage;property crimes against physically disabled people motivated by prejudice;crimes committed against the property of physically disabled people because of their disability -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,crimes of destruction motivated by hatred of people with disabilities;crimes of destruction that target people with disabilities;crimes of destruction motivated by hate against people with disabilities;crimes of destruction against people with disabilities motivated by prejudice -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MentalDisability,vandalism of property belonging to mentally disabled people;vandalism of property against the mentally disabled -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime,crimes motivated by a person's disability that are intended to intimidate or harass -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_MentalDisability, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_Intimidation_IsHateCrime_PhysicalDisability,crimes of intimidation against people with disabilities -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_MentalDisability,hate crimes against people with mental disabilities -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime_PhysicalDisability, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_MentalDisability,assaults motivated by a person's mental disability -Victim_Count_CriminalIncidents_BiasMotivationDisabilityStatus_SimpleAssault_IsHateCrime_PhysicalDisability, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime,aggravated assaults motivated by hatred of a certain ethnicity;aggravated assaults motivated by hatred of a particular ethnicity -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_AggravatedAssault_IsHateCrime_HispanicOrLatino, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Burglary_IsHateCrime_HispanicOrLatino, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime,hate crimes against people based on their ethnicity;attacks on people because of their ethnicity;violence against people because of their ethnicity;hate crimes targeting people of a particular ethnicity -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstPerson_IsHateCrime_HispanicOrLatino, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime,ethnic hate crimes against property -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_CrimeAgainstProperty_IsHateCrime_HispanicOrLatino,hate crimes against hispanic victims involving property damage;hate crimes involving property damage against hispanic victims;crimes against property committed against hispanic victims motivated by hate;crimes against hispanic victims involving property damage motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,vandalism of property motivated by hatred of a particular ethnicity;vandalism of property motivated by hatred of a certain ethnicity;ethnically motivated vandalism -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_HispanicOrLatino,vandalism of hispanic-owned property motivated by hate;acts of vandalism against hispanic people and their property;vandalism of hispanic property motivated by hate;hispanic-owned property vandalized due to prejudice -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Intimidation_IsHateCrime_HispanicOrLatino,hispanic people are being intimidated and attacked;hispanic people are being intimidated and harassed -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime_HispanicOrLatino, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime,"robbery against a person of a particular ethnicity;robberies committed because of race, religion, or ethnicity" -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_Robbery_IsHateCrime_HispanicOrLatino,robberies against hispanics;robberies motivated by hate against hispanics;hate-motivated robberies against hispanics;hate crimes against hispanics involving robbery -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationEthnicity_SimpleAssault_IsHateCrime_HispanicOrLatino,violence against hispanic people;assaults against hispanics;assaults on hispanic people;assaults against the hispanic population -Victim_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime,crimes against people based on their gender;crimes of violence against people based on their gender;hate crimes of violence against people based on their gender;crimes against people based on gender -Victim_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Female, -Victim_Count_CriminalIncidents_BiasMotivationGender_CrimeAgainstPerson_IsHateCrime_Transgender,violence against transgender people based on their gender identity -Victim_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Female,crimes motivated by hatred of women;misogyny-motivated violence;violence against women because they are women;crimes against women because of their gender -Victim_Count_CriminalIncidents_BiasMotivationGender_IsHateCrime_Transgender, -Victim_Count_CriminalIncidents_BiasMotivationGender_SimpleAssault_IsHateCrime_Transgender, -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstPerson_IsHateCrime,crimes motivated by hatred or prejudice against a particular group of people -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_CrimeAgainstProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_Intimidation_IsHateCrime,"number of hate crimes with multiple biases as the victim, intimidation;number of hate crimes with intimidation as the motivation, multiple biases as the victim;number of hate crime incidents where the victim was targeted for multiple biases and intimidation;number of hate crime incidents where the victim was targeted for intimidation and multiple biases" -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationMultipleBias_SimpleAssault_IsHateCrime,multiple hate crimes of simple assault;multiple simple assaults motivated by hate;multiple assaults motivated by hate;multiple hate-motivated assaults -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_AggravatedAssault_IsHateCrime,aggravated assaults that are motivated by hatred of a particular ethnic group -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Burglary_IsHateCrime,burglaries against people of other races;burglaries that are motivated by prejudice against people of other races;burglary against people of other races;burglary motivated by prejudice against people of other races -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstPerson_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_CrimeAgainstProperty_IsHateCrime,ethnic or racial hate crimes against property;property crimes motivated by racial or ethnic hatred;crimes against property motivated by racial or ethnic bias;racial or ethnic hate crimes against property -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_IsHateCrime,crimes against people of other races or ethnicities;crimes motivated by hatred of a particular race or ethnicity;crimes motivated by prejudice against people of other races or ethnicities;crimes that are based on hatred or prejudice against people of other races or ethnicities -Victim_Count_CriminalIncidents_BiasMotivationOtherRaceOrEthnicity_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,hate crimes committed against transgender people for shoplifting;shoplifting as a hate crime against transgender people;transgender people targeted for shoplifting as a hate crime;shoplifting used as a weapon against transgender people -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_TwoOrMoreRaces, -Victim_Count_CriminalIncidents_BiasMotivationRace_AggravatedAssault_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime,the prevalence of racial hate crimes compared to the prevalence of all other larcenies -Victim_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes against african americans involving larceny;larceny crimes against african americans motivated by hate;larceny crimes against african americans that are racially motivated;larceny crimes against african americans that are based on race -Victim_Count_CriminalIncidents_BiasMotivationRace_AllOtherLarceny_IsHateCrime_WhiteAlone,larceny hate crimes against whites;larceny committed against whites as a hate crime;larceny as a hate crime against whites;larceny against whites motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime,arson committed because of someone's race;arson committed against someone's property because of their race;arson committed against someone's business because of their race;arson committed to send a message of hate to people of a particular race -Victim_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Arson_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Burglary_IsHateCrime_WhiteAlone,burglaries motivated by racial hatred against white people;white people being burglarized because of their race;white people being the victims of burglaries that are motivated by racial hatred;white people being targeted for burglary because of their race -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_Arab,crimes against arab people based on prejudice -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_TwoOrMoreRaces, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstPerson_IsHateCrime_WhiteAlone,hate crimes against white people;hate crimes committed against white people;crimes motivated by hate against white people;crimes against white people motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime,racially motivated property crimes;property crimes motivated by race;property crimes motivated by racial hatred -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,hate crimes against american indian or alaska native people involving property damage;criminal acts against american indian or alaska native property committed out of hate;hate-motivated crimes against american indian or alaska native property;hate crimes against american indian or alaska native people that involve property damage -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_Arab,hate crimes against arab-owned property -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes against african american property;crimes against african american property motivated by hate;property crimes motivated by hate against african americans;crimes against property motivated by racial hatred against african americans -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_TwoOrMoreRaces, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstProperty_IsHateCrime_WhiteAlone,4 crimes against white people motivated by racial hatred that involve damage to property;5 hate crimes against white people that involve damage to property -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_BlackOrAfricanAmericanAlone,crimes targeting african americans -Victim_Count_CriminalIncidents_BiasMotivationRace_CrimeAgainstSociety_IsHateCrime_WhiteAlone,crimes against society committed against white victims motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,hate crimes against american indians or alaska natives involving property damage;destruction of property motivated by hatred of american indians or alaska natives;property damage committed as a hate crime against american indians or alaska natives;destruction of property against native americans motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Arab,property damage against arabs;hate crimes against arabs that involve vandalism;vandalism of arab-owned property motivated by hatred of arabs;hate crimes against arabs involving vandalism -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_TwoOrMoreRaces,hate crimes against multiracial victims involving vandalism of property;property vandalism in hate crimes against multiracial victims;multiracial victims of hate crimes involving property vandalism;vandalism of property in hate crimes against multiracial people -Victim_Count_CriminalIncidents_BiasMotivationRace_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_WhiteAlone,acts of vandalism against white people motivated by racial prejudice;vandalism of white people's property motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_DrugOrNarcoticViolations_IsHateCrime_WhiteAlone,crimes motivated by race and involving drug or narcotic violations against white victims;hate crimes against white people involving drug or narcotic violations;racially motivated crimes against white people involving drug or narcotic violations;crimes against white people motivated by race and involving drug or narcotic violations -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AmericanIndianOrAlaskaNativeAlone,intimidation and violence against american indian or alaska native victims -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_Arab, -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_TwoOrMoreRaces, -Victim_Count_CriminalIncidents_BiasMotivationRace_Intimidation_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_Arab, -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_AsianAlone,hate crimes targeting asians;hate crimes motivated by racism against asians;hate crimes against asian americans -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_TwoOrMoreRaces,hate crimes that victimize multiracial people -Victim_Count_CriminalIncidents_BiasMotivationRace_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_MotorVehicleTheft_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime,incidents of racial discrimination -Victim_Count_CriminalIncidents_BiasMotivationRace_NotSpecified_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Rape_IsHateCrime,hate crimes against racial minorities involving rape -Victim_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime,number of hate crime incidents where the victim was robbed and the perpetrator was motivated by bias against race;number of hate crime incidents where the victim was robbed and the perpetrator was motivated by racism;number of hate crime incidents where the victim was robbed and the perpetrator was motivated by racial prejudice;number of hate crime incidents where the victim was robbed and the perpetrator was motivated by racial hatred -Victim_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_Robbery_IsHateCrime_WhiteAlone,robbery against white victims motivated by racial hatred;robbery against white victims as a hate crime -Victim_Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime,discrimination against shoplifters based on race;discrimination against shoplifters based on their race -Victim_Count_CriminalIncidents_BiasMotivationRace_Shoplifting_IsHateCrime_WhiteAlone,shoplifting against whites as a form of racial hate crime;racially motivated shoplifting against whites;shoplifting as a form of racial violence against whites;hate crimes against whites involving shoplifting -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AmericanIndianOrAlaskaNativeAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_Arab, -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_AsianAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_BlackOrAfricanAmericanAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_TwoOrMoreRaces,assault against people of color because of their race;assault motivated by racial hatred;racially motivated assaults;assaults motivated by race -Victim_Count_CriminalIncidents_BiasMotivationRace_SimpleAssault_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_TheftFromBuilding_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime,hate crimes against people of color that involve theft from motor vehicles;hate crimes against people of color that involve stealing from cars;hate crimes against people of color who have their cars stolen -Victim_Count_CriminalIncidents_BiasMotivationRace_TheftFromMotorVehicle_IsHateCrime_WhiteAlone, -Victim_Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationRace_WeaponLawViolations_IsHateCrime_BlackOrAfricanAmericanAlone,hate crimes involving weapons and african american victims -Victim_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Islam,aggravated assaults against muslims -Victim_Count_CriminalIncidents_BiasMotivationReligion_AggravatedAssault_IsHateCrime_Judaism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_AllOtherLarceny_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Arson_IsHateCrime,arson committed in order to intimidate or harm people of a particular religion;fires set in religious buildings or property due to prejudice;arson attacks on religious groups or individuals;arson attacks motivated by religious intolerance -Victim_Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Burglary_IsHateCrime_Judaism,burglaries motivated by hatred of judaism -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime,crimes against people because of their religious affiliation -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Catholicism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Islam, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_Judaism,unknown chemicals have been found in water that has made people sick and killed some;there have been cases of people getting sick and dying after drinking water that was contaminated with unknown chemicals;waterborne transmission of unknown chemicals has been confirmed in cases of people who have gotten sick or died;unknown chemicals have been found in water that has been linked to cases of people getting sick and dying -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_MultipleReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstPerson_IsHateCrime_OtherReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Catholicism,hate crimes against catholics involving property damage;crimes against catholic property;property crimes against catholics;crimes against catholic property motivated by religious hatred -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Islam,property crimes against muslims motivated by religion -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Judaism,property crimes targeting jewish people -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_MultipleReligion,hate crimes against religious property and people of multiple faiths;attacks on religious property and people of multiple faiths based on religious prejudice;hate crimes against religious buildings and people of multiple faiths;attacks on religious buildings and people of multiple faiths -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherChristian,attacks on christian property motivated by hatred of religion;attacks on christian property because of hatred of religion;attacks on christian property motivated by religious hatred;attacks on christian property motivated by religious discrimination -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_OtherReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_CrimeAgainstProperty_IsHateCrime_Protestantism,property crimes against protestant faith victims motivated by religious hatred -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,vandalism of religious property -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Catholicism,destruction of catholic property;destruction of catholic property motivated by religious hatred;attacks on catholic property motivated by religious hatred -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Islam,destruction of islamic property due to religious hatred;destruction of islamic property;destruction of muslim property due to religious hatred;attacks on islamic property -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Judaism,"destruction of jewish property;destruction, damage, or vandalism of jewish property due to religious hatred" -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_MultipleReligion,religious vandalism against multiple faiths -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherChristian,destruction or damage or vandalism of christian property motivated by religious hatred;destruction or damage or vandalism of property against christians motivated by religious hatred;damage to christian property motivated by religious hatred -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_OtherReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Protestantism,destruction of protestant property in the united states;destruction of protestant property;hate crimes against protestants that involve the destruction of property;property destruction motivated by hate against protestants -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Catholicism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Islam, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_Judaism,attacks on jewish people because of their faith -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_MultipleReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_Intimidation_IsHateCrime_OtherReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_AtheismOrAgnosticism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Catholicism,attacks on catholics -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Islam, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Judaism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_MultipleReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherChristian, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_OtherReligion, -Victim_Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime_Protestantism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_NotSpecified_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Islam,religiously motivated assaults against muslims;assaults against muslims on religious grounds;assaults on muslims motivated by religious hatred;physical abuse of muslims because of their religion -Victim_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_Judaism, -Victim_Count_CriminalIncidents_BiasMotivationReligion_SimpleAssault_IsHateCrime_OtherReligion,assaults against people of other religions based on religious hatred;violence against people of other religions motivated by religious hatred;assaults motivated by religious hatred;attacks on people of other religions -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime,crimes of aggravated assault motivated by sexual orientation;aggravated assaults against people because of their sexual orientation;hate crimes against people of a particular sexual orientation that result in aggravated assault;aggravated assaults that are motivated by hatred of a person's sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Gay,aggravated assaults against gay people because of their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_LGBT,3 aggravated assaults against lgbt people that are motivated by prejudice or bias -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_AggravatedAssault_IsHateCrime_Lesbian, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_AllOtherLarceny_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Burglary_IsHateCrime_Gay, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime,3 crimes motivated by hatred of people's sexual orientation;criminal acts against people because of their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Bisexual,crimes against bisexual people motivated by their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Gay,crimes targeting gay people;crimes against people targeting gay victims;crimes targeting people because they are gay -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Heterosexual, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_LGBT,hate crimes against lgbt people;crimes against lgbt people motivated by hate;crimes against lgbt people motivated by prejudice against lgbt people;crimes against lgbt people motivated by bigotry against lgbt people -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstPerson_IsHateCrime_Lesbian,crimes targeting lesbians -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime,hate crimes against property motivated by sexual orientation;crimes against property committed because of someone's sexual orientation;violence against property because of someone's sexual orientation;1 hate crimes against property motivated by sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Bisexual,crimes against property committed because of the victim's bisexuality;bisexuals victimized in property crimes based on prejudice -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Gay, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Heterosexual,hate crimes against property victims who are heterosexual;hate crimes against heterosexual property victims -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_LGBT,crimes against property against lgbt people;crimes against property committed against lgbt victims due to their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_CrimeAgainstProperty_IsHateCrime_Lesbian,hate crimes against lesbians that involve property damage;property damage as a result of hate crimes against lesbians;hate crimes against lesbians that result in property damage;property damage caused by hate crimes against lesbians -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,sexually motivated property damage;sexually motivated destruction of property;sexually motivated defacement of property;sexually motivated property destruction -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Gay,hate crimes against gay people that involve vandalism;crimes motivated by hate against gay people that involve damaging property;hate crimes against gay people that involve property damage;crimes against gay people that involve vandalism -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_LGBT,crimes of destruction of property against homosexuals;destruction of property against homosexuals;destruction of property against homosexuals motivated by hatred of their sexual orientation;destruction of property motivated by hatred of homosexuality -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_DestructionOrDamageOrVandalismOfProperty_IsHateCrime_Lesbian,vandalism of property against lesbians based on sexual orientation;hate crimes against lesbians involving vandalism of property;hate crimes involving vandalism of property against lesbians;vandalism of property against lesbians as a hate crime -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Bisexual, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Gay,crimes of intimidation against gay people;crimes against gay people that are intended to intimidate or threaten them;violence against gay people motivated by homophobia;intimidation and violence against gay people -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Heterosexual, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_LGBT, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Intimidation_IsHateCrime_Lesbian,violence against lesbians;harassment of lesbians -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Bisexual,hate crimes motivated by sexual orientation against bisexuals;bisexual people being discriminated against because of their sexual orientation;hate crimes against bisexuals because of their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Gay, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Heterosexual,violence against heterosexual people because they are different;hate crimes against heterosexual people;violence against heterosexuals motivated by hatred of their sexual orientation;hate crimes based on sexual orientation against heterosexuals -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_LGBT, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime_Lesbian, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime,robbery motivated by sexual hatred;sexually motivated robbery;robbery with a sexual element;robbery with a sexual motive -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_Robbery_IsHateCrime_Gay, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Bisexual,hate crimes against bisexual people involving simple assault -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Gay, -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_LGBT,assault against lgbt people because of their sexual orientation;assault against lgbt people based on their sexual orientation;simple assault against lgbt people because of their sexual orientation;assault on lgbt people due to their sexual orientation -Victim_Count_CriminalIncidents_BiasMotivationSexualOrientation_SimpleAssault_IsHateCrime_Lesbian,assaults on lesbian victims motivated by hatred of their sexual orientation;simple assault against lesbian victims motivated by bigotry;hate crimes against lesbian victims involving simple assault;lesbian victims of simple assaults motivated by hate -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_AggravatedAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_AllOtherLarceny_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Arson_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Burglary_IsHateCrime,burglary based on prejudice;prejudice-motivated burglary;bias-motivated burglary;burglary motivated by hatred or prejudice -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_CounterfeitingOrForgery_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,atm frauds motivated by discrimination -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstPerson_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstProperty_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_CrimeAgainstSociety_IsHateCrime,crimes against society motivated by prejudice;crimes that are motivated by hatred or prejudice;crimes motivated by prejudice or hatred;criminal acts motivated by bias or bigotry -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,destruction of property motivated by bias;bias-motivated property destruction -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_DrugEquipmentViolations_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_DrugOrNarcoticViolations_IsHateCrime,bias-motivated crimes involving drugs or narcotics;hate crimes motivated by bias against people who use drugs or narcotics;bias crimes motivated by bias against people who sell drugs or narcotics -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime,"number of hate crime incidents where the victim was targeted for a single bias, false pretense or swindle or confidence game;number of hate crimes where the victim was targeted because of a single bias, false pretense or swindle or confidence game;number of hate crime incidents where the victim was targeted due to a single bias, false pretense or swindle or confidence game" -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Fondling_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Impersonation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_IsHateCrime,hate crimes committed by a lone wolf -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_MotorVehicleTheft_IsHateCrime,hate crimes involving motor vehicle theft against victims;motor vehicle theft crimes against victims motivated by hate;hate crimes against victims of motor vehicle theft;motor vehicle theft against victims of hate crimes -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_MurderAndNonNegligentManslaughter_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_NotSpecified_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Rape_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Robbery_IsHateCrime,robbery motivated by bias -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_Shoplifting_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromBuilding_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_TheftFromMotorVehicle_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationSingleBias_WeaponLawViolations_IsHateCrime,single-bias hate crimes involving weapons -Victim_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstPerson_IsHateCrime,hate crimes against transgender or queer people;crimes against transgender or queer people motivated by hate;violence against transgender or queer people;discrimination against transgender or queer people -Victim_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_CrimeAgainstProperty_IsHateCrime,crimes against queer people's property;hate crimes against queer people's property;property crimes against queer people;property crimes motivated by hate against queer people -Victim_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_IsHateCrime, -Victim_Count_CriminalIncidents_BiasMotivationTransgenderOrGenderNonConforming_SimpleAssault_IsHateCrime,assaults on transgender people motivated by hate;hate-motivated assaults against transgender people -Victim_Count_CriminalIncidents_Burglary_IsHateCrime, -Victim_Count_CriminalIncidents_CounterfeitingOrForgery_IsHateCrime, -Victim_Count_CriminalIncidents_CreditCardOrAutomatedTellerMachineFraud_IsHateCrime,credit card fraud committed as a hate crime;hate crimes involving credit card fraud;credit card fraud motivated by hate;hate-motivated credit card fraud -Victim_Count_CriminalIncidents_CrimeAgainstPerson_IsHateCrime, -Victim_Count_CriminalIncidents_CrimeAgainstProperty_IsHateCrime, -Victim_Count_CriminalIncidents_CrimeAgainstSociety_IsHateCrime,crimes against society motivated by intolerance -Victim_Count_CriminalIncidents_DestructionOrDamageOrVandalismOfProperty_IsHateCrime,hateful acts of vandalism;hate crime vandalism;vandalism motivated by hate;hate-motivated vandalism -Victim_Count_CriminalIncidents_DrugEquipmentViolations_IsHateCrime, -Victim_Count_CriminalIncidents_DrugOrNarcoticViolations_IsHateCrime,hate crimes involving drugs;drug-related hate crimes;hate crimes against drug users;hate crimes against drug dealers -Victim_Count_CriminalIncidents_FalsePretenseOrSwindleOrConfidenceGame_IsHateCrime,hate crime against a confidence trickster;hate crime against confidence trick -Victim_Count_CriminalIncidents_Fondling_IsHateCrime,fondling as a hate crime;groping with a hateful intent -Victim_Count_CriminalIncidents_Impersonation_IsHateCrime, -Victim_Count_CriminalIncidents_Intimidation_IsHateCrime, -Victim_Count_CriminalIncidents_IsHateCrime, -Victim_Count_CriminalIncidents_MotorVehicleTheft_IsHateCrime, -Victim_Count_CriminalIncidents_MurderAndNonNegligentManslaughter_IsHateCrime,crimes of hate that result in murder or manslaughter;murder or manslaughter motivated by hate;homicide or manslaughter motivated by hate -Victim_Count_CriminalIncidents_NotSpecified_IsHateCrime, -Victim_Count_CriminalIncidents_Rape_IsHateCrime,rape motivated by hate -Victim_Count_CriminalIncidents_Robbery_IsHateCrime,number of hate crimes in which the victim was robbed;number of hate crimes in which the perpetrator robbed the victim -Victim_Count_CriminalIncidents_Shoplifting_IsHateCrime,people who are victims of hate crimes because they shoplift;people who are targeted for hate crimes because they shoplift;people who are attacked or harassed because they shoplift;people who are discriminated against because they shoplift -Victim_Count_CriminalIncidents_SimpleAssault_IsHateCrime, -Victim_Count_CriminalIncidents_TheftFromBuilding_IsHateCrime, -Victim_Count_CriminalIncidents_TheftFromMotorVehicle_IsHateCrime,crimes of hate against unknown victims involving theft from motor vehicles;theft from motor vehicles against unknown victims motivated by hate;unknown victims of theft from motor vehicles who were targeted because of hate;hate-motivated theft from motor vehicles against unknown victims -Victim_Count_CriminalIncidents_TheftOfMotorVehiclePartsOrAccessories_IsHateCrime,hate crimes involving the theft of motor vehicle parts;crimes motivated by hate that involve the theft of motor vehicle parts;theft of motor vehicle parts that is motivated by hate;hate-motivated theft of motor vehicle parts -Victim_Count_CriminalIncidents_WeaponLawViolations_IsHateCrime,number of hate crimes that were committed with a weapon;number of hate crimes in which a weapon was threatened -WagesAnnual_Establishment,annual wages of an establishment;establishment's annual wages;annual wages paid by an establishment;wages paid to employees by an establishment in a year -WagesAnnual_Establishment_NAICSAccommodationFoodServices,what are the annual wages for hospitality workers?;2 what are the average annual wages in the accommodation and food services industry?;what are the average annual wages in the accommodation and food services industry?;what is the typical annual income for someone working in the accommodation and food services industry? -WagesAnnual_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,annual wages of workers in different geographic areas;annual wages of workers by geographic area;annual wages of workers in different locations;annual wages of workers by location -WagesAnnual_Establishment_NAICSAgricultureForestryFishingHunting,"pay for workers in the agricultural, forestry, fishing, and hunting industries;wages in the agricultural, forestry, fishing, and hunting sectors;pay in the agricultural, forestry, fishing, and hunting fields;pay for people who work in agriculture, forestry, fishing, and hunting" -WagesAnnual_Establishment_NAICSArtsEntertainmentRecreation,"how much do people in the arts, entertainment, and recreation industries make per year?;what are the typical annual salaries for people in the arts, entertainment, and recreation industries?;what are the yearly earnings for people in the arts, entertainment, and recreation industries?;what are the annual incomes for people in the arts, entertainment, and recreation industries?" -WagesAnnual_Establishment_NAICSConstruction,what are the annual salaries for construction workers?;what do construction workers earn per year?;what are the annual wages for construction workers?;what is the average annual salary for a construction worker? -WagesAnnual_Establishment_NAICSEducationalServices,annual pay in educational services;yearly wages in educational services -WagesAnnual_Establishment_NAICSFinanceInsurance,what are the annual earnings for finance and insurance workers?;what are the yearly incomes for finance and insurance professionals?;what are the average annual wages in finance and insurance?;what are the typical annual salaries in finance and insurance? -WagesAnnual_Establishment_NAICSHealthCareSocialAssistance,how much do people in the healthcare and social assistance industries make each year?;what are the average annual salaries in the healthcare and social assistance industries?;what are the typical annual wages in the healthcare and social assistance industries?;what are the annual wages of people who work in the healthcare and social assistance industries? -WagesAnnual_Establishment_NAICSInformation,1 the average yearly salary of employees in information establishments;2 the amount of money that employees in information establishments earn per year on average;3 the typical annual income of workers in information establishments;4 the yearly earnings of people who work in information establishments -WagesAnnual_Establishment_NAICSManagementOfCompaniesEnterprises,salaries of company and enterprise managers;yearly pay for company and enterprise directors;annual pay for company and enterprise managers;compensation for company and enterprise managers -WagesAnnual_Establishment_NAICSManufacturing,the number of new manufacturing businesses that are created each year;the annual rate of new manufacturing businesses;the number of manufacturing businesses that are created in a year;the annual number of manufacturing businesses that are established -WagesAnnual_Establishment_NAICSMiningQuarryingOilGasExtraction,"annual wages for mining, quarrying, and oil and gas extraction establishments (naics/21);yearly pay for mining, quarrying, and oil and gas extraction businesses (naics/21);the amount of money that mining, quarrying, and oil and gas extraction establishments (naics/21) pay their employees each year;the annual salary of employees at mining, quarrying, and oil and gas extraction establishments (naics/21)" -WagesAnnual_Establishment_NAICSNonclassifiable,annual wages of businesses with no industry classification;wages paid to employees at establishments without a specific industry classification;annual salaries for workers at unclassified businesses;wages paid to employees of establishments that are not classified by industry -WagesAnnual_Establishment_NAICSOtherServices,"the average annual salary for workers in other services, excluding public administration;the average yearly income for workers in other services, excluding public administration;the average amount of money that workers in other services, excluding public administration, make in a year;wages of workers in other services, excluding public administration, per year" -WagesAnnual_Establishment_NAICSProfessionalScientificTechnicalServices,"annual salaries of employees in professional, scientific, and technical service industries;yearly pay for workers in professional, scientific, and technical service industries;the amount of money that workers in professional, scientific, and technical service industries earn each year;the annual income of workers in professional, scientific, and technical service industries" -WagesAnnual_Establishment_NAICSRealEstateRentalLeasing,what are the average annual wages for people in the real estate and rental and leasing industry?;what is the annual salary for someone working in the real estate and rental and leasing industry?;what is the typical annual wage for someone working in the real estate and rental and leasing industry?;what are the annual salaries of people in real estate and rental and leasing establishments? -WagesAnnual_Establishment_NAICSRetailTrade,annual wages in the retail trade sector;retail trade sector annual wages;wages in the retail trade sector per year;yearly wages in the retail trade sector -WagesAnnual_Establishment_NAICSTransportationWarehousing,how much do people working in transportation and warehousing make per year?;what are the average annual wages for transportation and warehousing workers?;what is the annual income for people working in transportation and warehousing?;what is the average salary for people working in transportation and warehousing? -WagesAnnual_Establishment_NAICSUtilities,what are the annual wages for utility workers?;what are the yearly salaries for utility workers?;what is the annual salary for utility workers?;what are the annual wages of utility workers? -WagesAnnual_Establishment_NAICSWholesaleTrade,annual wages in the wholesale trade sector;annual salaries in the wholesale trade sector;annual earnings in the wholesale trade sector;annual pay in the wholesale trade sector -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,how much do people working in federal government-owned accommodation and food services make per year?;what are the annual wages for people working in federal government-owned accommodation and food services?;what is the average annual salary for people working in federal government-owned accommodation and food services?;what is the typical annual salary for people working in federal government-owned accommodation and food services? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"salaries of employees in privately owned sports, hobby, music instrument, and book stores;annual earnings of people who work in privately owned sports, hobby, music instrument, and book stores;yearly pay of workers in privately owned sports, hobby, music instrument, and book stores;wages of people who are employed in privately owned sports, hobby, music instrument, and book stores" -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"how much do workers in federal government-owned agriculture, forestry, fishing, and hunting establishments earn per year;what are the annual wages of workers in federal government-owned agriculture, forestry, fishing, and hunting establishments;what is the average annual salary of workers in federal government-owned agriculture, forestry, fishing, and hunting establishments;what are the average annual wages of workers in federal government-owned agriculture, forestry, fishing, and hunting establishments" -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"annual salary for a person working in the federal government in the arts, entertainment, and recreation industry (naics/71);how much money a person working in the federal government in the arts, entertainment, and recreation industry (naics/71) makes in a year;the average annual salary for a person working in the federal government in the arts, entertainment, and recreation industry (naics/71);the yearly income for a person working in the federal government in the arts, entertainment, and recreation industry (naics/71)" -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSEducationalServices,how much do workers in federal government-owned educational services make per year?;what are the annual wages of workers in federal government-owned educational services?;what is the average annual wage for workers in federal government-owned educational services?;what are the salaries of workers in federal government-owned educational services? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSFinanceInsurance,annual salary of employees in the federal government's finance and insurance industries;how much do federal government employees in finance and insurance make per year?;what are the average annual wages of federal government employees in finance and insurance?;what are the annual salaries of federal government employees in finance and insurance? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSGoodsProducing,how much do workers in federal government-owned goods-producing establishments earn per year?;what are the annual wages of workers in federal government-owned goods-producing establishments?;what is the average annual wage of a worker in a federal government-owned goods-producing establishment?;what is the annual salary of a worker in a federal government-owned goods-producing establishment? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,how much do workers in federal government-owned health care and social assistance establishments earn per year?;what are the annual wages of workers in federal government-owned health care and social assistance establishments?;what are the average annual wages of workers in federal government-owned health care and social assistance establishments?;what are the salaries of workers in federal government-owned health care and social assistance establishments? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSInformation,annual salary of a person working for the federal government in the information sector (naics/51);the amount of money a person working for the federal government in the information sector (naics/51) makes in a year;the average yearly income of a person working for the federal government in the information sector (naics/51);the typical salary of a person working for the federal government in the information sector (naics/51) -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSNonclassifiable,1 how much do workers in federal government-owned unclassified industries make per year?;2 what are the annual wages of workers in federal government-owned unclassified industries?;3 what is the average annual wage of a worker in a federal government-owned unclassified industry?;4 what are the salaries of workers in federal government-owned unclassified industries? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSOtherServices,"how much do workers in federal government-owned other services, except public administration establishments, make per year?;what are the annual wages of workers in federal government-owned other services, except public administration establishments?;what is the average annual wage of workers in federal government-owned other services, except public administration establishments?;annual salaries of employees in federal government-owned services other than public administration" -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"how much do workers in federal government-owned professional, scientific, and technical service industries make per year?;what are the annual wages of workers in federal government-owned professional, scientific, and technical service industries?;what is the average annual salary of workers in federal government-owned professional, scientific, and technical service industries?;what are the typical salaries for workers in federal government-owned professional, scientific, and technical service industries?" -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSPublicAdministration,how much do people in federal government-owned public administration industries make per year?;what are the annual wages of workers in federal government-owned public administration industries?;what is the average annual salary of workers in federal government-owned public administration industries?;what is the pay scale for workers in federal government-owned public administration industries? -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSServiceProviding,annual salary of a person who works for the federal government in a service-providing industry (naics/102);how much money a person who works for the federal government in a service-providing industry (naics/102) makes in a year;the annual income of a person who works for the federal government in a service-providing industry (naics/102);the yearly wage of a person who works for the federal government in a service-providing industry (naics/102) -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,annual wages of federal government employees;annual salaries of federal government workers;annual earnings of federal government workers;annual income of federal government employees -WagesAnnual_Worker_FederalGovernmentOwnedEstablishment_NAICSUtilities,how much do people working in federal government-owned utilities industries make per year?;what are the annual salaries of workers in federal government-owned utilities industries?;what is the average annual salary of a worker in a federal government-owned utilities industry?;what are the typical annual wages of workers in federal government-owned utilities industries? -WagesAnnual_Worker_GovernmentOwnedEstablishment_NAICSTotalAllIndustries,annual wages of government workers in all industries;annual pay of government employees in all sectors;annual earnings of government workers in all fields;annual salaries of government employees in all areas -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,how much do people working in local government-owned accommodation and food services establishments earn per year?;what are the annual wages of people working in local government-owned accommodation and food services establishments?;what is the average annual salary of people working in local government-owned accommodation and food services establishments?;what are the annual salaries of people working in local government-owned accommodation and food services establishments? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,annual wages for employees in local government-owned administrative and support and waste management services (naics/56);the average annual salary for employees in local government-owned administrative and support and waste management services (naics/56);the amount of money that employees in local government-owned administrative and support and waste management services (naics/56) typically earn in a year;the yearly income of employees in local government-owned administrative and support and waste management services (naics/56) -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation, -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSConstruction,1 how much do workers in local government-owned construction industries earn per year?;2 what are the annual wages of workers in local government-owned construction industries?;3 what is the average annual wage of a worker in a local government-owned construction industry?;4 what is the annual salary of a worker in a local government-owned construction industry? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSEducationalServices,1 how much do people working in local government-owned educational service industries make per year?;2 what are the annual wages of workers in local government-owned educational service industries?;3 what is the average annual salary of workers in local government-owned educational service industries?;4 what is the pay scale for workers in local government-owned educational service industries? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSGoodsProducing,the average yearly salary of employees in local government-owned goods-producing industries;the typical annual income of workers in local government-owned goods-producing sectors;the typical yearly wage of employees in local government-owned goods-producing businesses;the average annual pay of workers in local government-owned goods-producing companies -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,how much do people in local government-owned health care and social assistance establishments get paid?;what are the annual wages of people in local government-owned health care and social assistance establishments?;what is the average annual salary of people in local government-owned health care and social assistance establishments?;what are the typical annual wages of people in local government-owned health care and social assistance establishments? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSInformation,how much do people working in local government-owned information industries make each year?;what is the average annual salary for workers in local government-owned information industries?;what are the annual wages for workers in local government-owned information industries?;what is the annual income for workers in local government-owned information industries? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSNonclassifiable,salaries of employees in local government-owned unclassified establishments;annual earnings of workers in local government-owned unclassified establishments;yearly pay of employees in local government-owned unclassified establishments;annual income of workers in local government-owned unclassified establishments -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSOtherServices,"annual pay for workers in local government-owned services, excluding public administration;annual earnings of workers in local government-owned services, excluding public administration;yearly income of workers in local government-owned services, excluding public administration;1 how much do workers in local government-owned other services, except public administration establishments, earn per year?" -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,1 how much do people in local government-owned professional scientific and technical services earn per year?;2 what are the annual wages of workers in local government-owned professional scientific and technical services?;3 what is the average annual wage for workers in local government-owned professional scientific and technical services?;5 what is the pay for workers in local government-owned professional scientific and technical services? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSPublicAdministration,what are the annual wages of workers in local government-owned public administration establishments?;what is the average annual salary of workers in local government-owned public administration establishments?;what are the average annual wages of workers in local government-owned public administration establishments?;what do workers in local government-owned public administration establishments earn per year on average? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSRealEstateRentalLeasing,how much do people working in local government-owned real estate and rental and leasing make per year?;what are the annual wages of workers in local government-owned real estate and rental and leasing?;what is the average annual salary for workers in local government-owned real estate and rental and leasing?;what is the typical annual salary for workers in local government-owned real estate and rental and leasing? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSServiceProviding,2 what are the annual wages of workers in local government-owned service-providing industries?;3 what is the average annual salary of workers in local government-owned service-providing establishments?;4 what is the average annual wage of workers in local government-owned service-providing industries?;5 what do workers in local government-owned service-providing establishments earn per year on average? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,how much do workers in local government-owned metal mining industries earn per year?;what are the annual wages of workers in local government-owned metal mining industries?;what is the average annual salary of workers in local government-owned metal mining industries?;what is the typical annual salary of workers in local government-owned metal mining industries? -WagesAnnual_Worker_LocalGovernmentOwnedEstablishment_NAICSUtilities,annual salary of a person working for a local government-owned utility company;annual wage of a person employed by a local government-owned utility company;yearly pay of a person who works for a local government-owned utility company -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSAccommodationFoodServices,annual wages for people working in privately owned accommodation and food services (naics/72);how much money do people working in privately owned accommodation and food services (naics/72) make per year?;what are the annual wages for people working in privately owned accommodation and food services (naics/72)?;the average annual wage for people working in privately owned accommodation and food services (naics/72) -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,how much do workers in privately owned administrative and support and waste management services make per year?;what are the annual wages of workers in privately owned administrative and support and waste management services?;what is the average annual wage of a worker in privately owned administrative and support and waste management services?;what is the median annual wage of a worker in privately owned administrative and support and waste management services? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"annual earnings of people working in privately owned agriculture, forestry, fishing, and hunting;annual income of people working in privately owned agriculture, forestry, fishing, and hunting;annual wages for people working in privately owned agriculture, forestry, fishing, and hunting (naics/11);the average annual salary for people working in privately owned agriculture, forestry, fishing, and hunting (naics/11)" -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much money do people in the private arts, entertainment, and recreation industries make each year?;what are the average annual salaries for people working in the private arts, entertainment, and recreation industries?;what are the typical annual wages for people working in the private arts, entertainment, and recreation industries?;what is the typical annual income for people working in the private arts, entertainment, and recreation industries?" -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSConstruction,what are the average annual wages for construction workers in the private sector?;what is the annual salary for construction workers in the private sector?;what is the typical annual wage for construction workers in the private sector?;how much do workers in privately owned construction make in a year? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSEducationalServices,how much do people working in privately owned educational services establishments make per year?;what are the annual wages of workers in privately owned educational services establishments?;what is the average annual salary of workers in privately owned educational services establishments?;what is the typical annual salary of workers in privately owned educational services establishments? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSFinanceInsurance,how much do people working in privately owned finance and insurance establishments make per year?;what are the annual wages of workers in privately owned finance and insurance establishments?;what is the average annual salary of workers in privately owned finance and insurance establishments?;what is the typical annual salary of workers in privately owned finance and insurance establishments? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSGoodsProducing,the average yearly salary of workers in private goods-producing industries;the average annual income of workers in private goods-producing industries;the average yearly wage of workers in private goods-producing industries;the average annual pay of workers in private goods-producing industries -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSHealthCareSocialAssistance,how much do workers in privately-owned health care and social assistance institutions earn per year?;what are the annual wages of workers in privately-owned health care and social assistance institutions?;what is the average annual salary of workers in privately-owned health care and social assistance institutions?;what is the typical annual salary of workers in privately-owned health care and social assistance institutions? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSInformation,the average annual salary for workers in privately owned information and cultural industries;the average yearly pay for workers in privately owned information and cultural industries;the average amount of money that workers in privately owned information and cultural industries earn per year;the average annual wage for workers in privately owned information and cultural industries -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSManagementOfCompaniesEnterprises,annual pay for managers in privately owned companies;yearly salary for private company managers;yearly income for private company executives;annual compensation for managers of privately owned businesses -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSMiningQuarryingOilGasExtraction,"the average annual salary of workers in privately owned mining, quarrying, and oil and gas extraction establishments;the yearly pay of employees in privately owned mining, quarrying, and oil and gas extraction establishments;the amount of money that workers in privately owned mining, quarrying, and oil and gas extraction establishments make each year;the compensation that employees in privately owned mining, quarrying, and oil and gas extraction establishments receive on a yearly basis" -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSNonclassifiable,annual wages of workers in privately owned nonclassifiable establishments;wages of workers in privately owned nonclassifiable establishments per year;annual earnings of workers in privately owned nonclassifiable establishments;yearly pay of workers in privately owned nonclassifiable establishments -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSOtherServices,"the total amount of money paid to employees in privately owned service industries, excluding public administration;the total earnings of people employed in privately owned service industries, excluding public administration;the total income of people working in privately owned service industries, excluding public administration;the total pay of people employed in privately owned service industries, excluding public administration" -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"annual pay for workers in private professional, scientific, and technical services companies;annual compensation for workers in private professional, scientific, and technical services organizations;yearly income for employees in private professional, scientific, and technical services firms;salaries of employees in privately owned professional, scientific, and technical services establishments" -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSRealEstateRentalLeasing,how much do people working in privately owned real estate and rental and leasing establishments make per year?;what are the annual wages of workers in privately owned real estate and rental and leasing establishments?;what is the average annual wage for workers in privately owned real estate and rental and leasing establishments?;what is the typical annual wage for workers in privately owned real estate and rental and leasing establishments? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSServiceProviding,how much do workers in privately owned service-providing establishments make per year?;what are the annual wages of workers in privately owned service-providing establishments?;what is the average annual wage of a worker in a privately owned service-providing establishment?;what are the average annual wages of workers in privately owned service-providing establishments? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,how much money do workers in privately owned industries make per year?;what are the average annual wages for workers in privately owned industries?;what is the annual income of workers in privately owned industries?;what is the average salary for workers in privately owned industries? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSUtilities,how much do workers in privately owned utilities industries make each year?;what are the annual wages of workers in privately owned utilities industries?;what is the average annual salary for workers in privately owned utilities industries?;what are the typical annual salaries for workers in privately owned utilities industries? -WagesAnnual_Worker_PrivatelyOwnedEstablishment_NAICSWholesaleTrade,how much do people in privately owned wholesale trade industries make per year?;what are the average annual wages for people in privately owned wholesale trade industries?;what is the annual salary for people in privately owned wholesale trade industries?;what is the typical annual income for people in privately owned wholesale trade industries? -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,how much money do people working in state government-owned administrative and support and waste management services establishments make per year?;what are the annual wages of workers in state government-owned administrative and support and waste management services establishments?;what is the average annual salary of workers in state government-owned administrative and support and waste management services establishments?;how much do workers in state government-owned administrative and support and waste management services establishments earn per year? -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much money do people who work in state-owned arts, entertainment, and recreation make each year?;what are the annual salaries of people who work in state-owned arts, entertainment, and recreation?;how much do people working in state-owned arts, entertainment, and recreation make per year?;what is the typical annual salary of workers in state-owned arts, entertainment, and recreation?" -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSConstruction,how much do workers in state government-owned construction establishments earn per year?;what are the annual wages of workers in state government-owned construction establishments?;what is the average annual salary for workers in state government-owned construction establishments?;what is the pay scale for workers in state government-owned construction establishments? -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSEducationalServices,how much do workers in state-owned educational services earn per year?;what are the annual wages of workers in state-owned educational services?;what is the average annual salary for workers in state-owned educational services?;what are the salaries of workers in state-owned educational services? -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSGoodsProducing,1 how much do people working in state-owned goods-producing establishments make per year?;2 what are the annual wages of workers in state government-owned goods-producing establishments?;3 what are the salaries of workers in state government-owned goods-producing establishments?;4 what is the pay of workers in state government-owned goods-producing establishments? -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,annual salary for a person working in state-owned health care and social assistance (naics/62);how much money a person working in state-owned health care and social assistance (naics/62) makes in a year;the annual income of a person working in state-owned health care and social assistance (naics/62);the yearly wage of a person working in state-owned health care and social assistance (naics/62) -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSInformation,the total amount of money paid to employees in state government-owned information industries;the total earnings of employees in state government-owned information industries;the total amount of money that state government-owned information industries paid their employees;the total amount of money paid to employees in state-owned information industries -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSNonclassifiable,state government workers' annual wages in unclassified positions;the average annual wage for state government workers in unclassified positions;the amount of money that state government workers in unclassified positions earn per year;the annual salary of state government workers in unclassified positions -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSPublicAdministration,state government employees' annual salaries;annual pay for state government workers;how much state government employees make per year;state government employees' yearly earnings -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSServiceProviding,state government service workers' annual wages;annual salaries of state government service workers;how much state government service workers earn per year;the average annual salary of a state government service worker -WagesAnnual_Worker_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,the average yearly salary of employees in state-owned industries;the typical annual income of workers in state-owned industries;the yearly pay of workers in state-owned industries;the annual earnings of workers in state-owned industries -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,the total amount of money paid to workers in federal government-owned accommodation and food services establishments;the aggregate wages of workers in federal government-owned accommodation and food services establishments;the sum of the wages of workers in federal government-owned accommodation and food services establishments;the total earnings of workers in federal government-owned accommodation and food services establishments -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,the total amount of money paid to workers in federal government-owned administrative and support and waste management services;the total compensation paid to workers in federal government-owned administrative and support and waste management services;the total earnings of workers in federal government-owned administrative and support and waste management services;the total income of workers in federal government-owned administrative and support and waste management services -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"total wages for people working in federal government-owned agriculture, forestry, fishing, and hunting (naics/11);the total amount of money paid to people working in federal government-owned agriculture, forestry, fishing, and hunting (naics/11);the total earnings of people working in federal government-owned agriculture, forestry, fishing, and hunting (naics/11);the total compensation of people working in federal government-owned agriculture, forestry, fishing, and hunting (naics/11)" -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"the total amount of money paid to workers in federal government-owned arts, entertainment, and recreation establishments;the total amount of money paid to employees in federal government-owned arts, entertainment, and recreation businesses;the total amount of money paid to staff in federal government-owned arts, entertainment, and recreation companies;the total amount of money paid to people who work in federal government-owned arts, entertainment, and recreation organizations" -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSEducationalServices,total compensation for employees of federal government-owned educational institutions;total earnings of people who work for federal government-owned schools;total pay for people who are employed by federal government-owned educational facilities;total salaries of people who work for federal government-owned colleges and universities -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSFinanceInsurance,total wages of people working in federal government owned finance and insurance (naics/52);the total amount of money paid to people working in federal government owned finance and insurance (naics/52);the total amount of money earned by people working in federal government owned finance and insurance (naics/52);the total amount of money that people working in federal government owned finance and insurance (naics/52) make -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSGoodsProducing,total wages of people working for the federal government in goods-producing industries (naics/101);the total amount of money paid to people working for the federal government in goods-producing industries (naics/101);the total amount of money earned by people working for the federal government in goods-producing industries (naics/101);the total compensation of people working for the federal government in goods-producing industries (naics/101) -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance, -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSInformation,the total amount of money paid to workers in federal government-owned information;the total sum of wages paid to workers in federal government-owned information;the total compensation paid to workers in federal government-owned information;the total earnings paid to workers in federal government-owned information -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSNonclassifiable,the total amount of money paid to workers in federal government-owned unclassified facilities;the total compensation paid to workers in federal government-owned unclassified facilities;the total earnings of workers in federal government-owned unclassified facilities;the total income of workers in federal government-owned unclassified facilities -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSOtherServices,the total amount of money paid to workers in federal government-owned industries other than public administration;the total compensation paid to workers in federal government-owned industries other than public administration;the total earnings of workers in federal government-owned industries other than public administration;the total income of workers in federal government-owned industries other than public administration -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,the total amount of money paid to workers in federal government-owned professional scientific and technical services establishments;the total compensation paid to workers in federal government-owned professional scientific and technical services establishments;the total earnings of workers in federal government-owned professional scientific and technical services establishments;the total salary and wages of workers in federal government-owned professional scientific and technical services establishments -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSPublicAdministration,the total amount of money paid to employees of federal government-owned public administration establishments;the total income of workers in federal government-owned public administration establishments;the total earnings of employees of federal government-owned public administration establishments;the total compensation of workers in federal government-owned public administration establishments -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSServiceProviding,the total amount of money paid to employees who work for the federal government in service-providing industries;the total compensation paid to workers in federal government-owned service-providing industries;the total earnings of workers in federal government-owned service-providing industries;the total income of workers in federal government-owned service-providing industries -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,the total amount of money paid to people who work in metal mining that is owned by the federal government;the total earnings of people who work in metal mining that is owned by the federal government;the total compensation of people who work in metal mining that is owned by the federal government;the total income of people who work in metal mining that is owned by the federal government -WagesTotal_Worker_FederalGovernmentOwnedEstablishment_NAICSUtilities,total wages of people working for federal government-owned utilities (naics/22);total pay of people working for federal government-owned utilities (naics/22);total earnings of people working for federal government-owned utilities (naics/22);total compensation of people working for federal government-owned utilities (naics/22) -WagesTotal_Worker_GovernmentOwnedEstablishment_NAICSTotalAllIndustries,total wages of workers in government-owned total all industries;total wages of workers in all industries owned by the government;total wages of all government workers;total wages of all workers in government-owned industries -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,the total amount of money paid to employees in local government-owned accommodation and food services establishments;the total earnings of people working in local government-owned accommodation and food services establishments;the total compensation of employees in local government-owned accommodation and food services establishments;the total remuneration of people working in local government-owned accommodation and food services establishments -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,total wages for people working in local government-owned administrative and support and waste management services (naics/56);the total amount of money paid to people working in local government-owned administrative and support and waste management services (naics/56);the total earnings of people working in local government-owned administrative and support and waste management services (naics/56);the total compensation of people working in local government-owned administrative and support and waste management services (naics/56) -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much do local government workers in the arts, entertainment, and recreation industries earn?;what are the total wages of local government workers in the arts, entertainment, and recreation industries?;what is the total amount of money paid to local government workers in the arts, entertainment, and recreation industries?;what are the average wages of local government workers in the arts, entertainment, and recreation industries?" -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSConstruction,how much money do people working in local government-owned construction make?;what are the wages of people working in local government-owned construction?;what is the total amount of money that people working in local government-owned construction make?;what is the average wage of people working in local government-owned construction? -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSEducationalServices,the total amount of money paid to employees of local government-owned educational services;the total compensation paid to workers in local government-owned educational services;the total earnings of employees of local government-owned educational services;the total income of workers in local government-owned educational services -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSGoodsProducing,the total amount of money paid to workers in local government-owned goods producing industries;the total compensation of workers in local government-owned goods producing industries;the total earnings of workers in local government-owned goods producing industries;the total income of workers in local government-owned goods producing industries -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,the total amount of money paid to workers in local government-owned health care and social assistance;the total sum of money paid to employees in local government-owned health care and social assistance;the total earnings of workers in local government-owned health care and social assistance;the total income of employees in local government-owned health care and social assistance -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSInformation, -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSNonclassifiable,the total amount of money paid to workers in unclassified local government-owned establishments;the total earnings of workers in unclassified local government-owned establishments;the total compensation of workers in unclassified local government-owned establishments;the total income of workers in unclassified local government-owned establishments -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSOtherServices,wages of workers in local government-owned services other than public administration;salaries of employees in local government-owned services other than public administration;pay of workers in local government-owned services other than public administration;compensation of employees in local government-owned services other than public administration -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"salaries of employees in local government-owned professional, scientific, and technical services;the total amount of money paid to employees in local government-owned professional, scientific, and technical services;the total amount of money earned by employees in local government-owned professional, scientific, and technical services;the total amount of money paid out in wages to employees in local government-owned professional, scientific, and technical services" -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSPublicAdministration,salaries of people working in local government-owned public administration establishments;total pay of people working in local government-owned public administration establishments;total earnings of people working in local government-owned public administration establishments;total compensation of people working in local government-owned public administration establishments -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSRealEstateRentalLeasing,"the total amount of money paid to workers in local government-owned real estate, rental, and leasing;the total compensation of workers in local government-owned real estate, rental, and leasing;the total earnings of workers in local government-owned real estate, rental, and leasing;the total income of workers in local government-owned real estate, rental, and leasing" -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSServiceProviding,the total amount of money paid to employees of local government-owned service-providing establishments;the sum of all the wages paid to people who work for local government-owned service-providing establishments;the total amount of money that local government-owned service-providing establishments pay their employees;the total compensation paid to employees of local government-owned service-providing establishments -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,the total wages of workers in local government-owned industries;the total amount of money paid to workers in local government-owned industries;the total compensation of workers in local government-owned industries;the total earnings of workers in local government-owned industries -WagesTotal_Worker_LocalGovernmentOwnedEstablishment_NAICSUtilities,total wages of people working in local government-owned utilities (naics/22);the total amount of money paid to people working in local government-owned utilities (naics/22);the sum of all wages paid to people working in local government-owned utilities (naics/22);the total compensation of people working in local government-owned utilities (naics/22) -WagesTotal_Worker_NAICSAccommodationFoodServices,the total amount of money earned by people working in the accommodation and food services industry;the total wages paid to people working in the accommodation and food services industry;the total earnings of people working in the accommodation and food services industry;the total income of people working in the accommodation and food services industry -WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,wages earned by workers in the administrative and support and waste management services industry;salaries of people working in the administrative and support and waste management services industry;earnings of employees in the administrative and support and waste management services industry;pay of people employed in the administrative and support and waste management services industry -WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"the total amount of money earned by people working in the agriculture, forestry, fishing, and hunting industry;the total wages paid to people working in the agriculture, forestry, fishing, and hunting industry;the total income earned by people working in the agriculture, forestry, fishing, and hunting industry;the total earnings of people working in the agriculture, forestry, fishing, and hunting industry" -WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"the total amount of money paid to people working in the arts, entertainment, and recreation industry;the total earnings of people working in the arts, entertainment, and recreation industry;the total income of people working in the arts, entertainment, and recreation industry;the total compensation of people working in the arts, entertainment, and recreation industry" -WagesTotal_Worker_NAICSConstruction,how much do construction workers make?;what are the average wages for construction workers?;what is the pay scale for construction workers?;how much money do construction workers earn? -WagesTotal_Worker_NAICSEducationalServices,how much do people working in the educational services industry make?;what are the wages for people working in the educational services industry?;what is the average salary for people working in the educational services industry?;what is the pay for people working in the educational services industry? -WagesTotal_Worker_NAICSFinanceInsurance,how much do people in the finance and insurance industry earn?;what are the average wages for people working in the finance and insurance industry?;what are the typical salaries for people working in the finance and insurance industry?;what are the typical income levels for people working in the finance and insurance industry? -WagesTotal_Worker_NAICSGoodsProducing,the total amount of money paid to workers in industries that produce goods;the total amount of money paid to workers in industries that make things;the total amount of money paid to workers in industries that manufacture products;the total amount of money paid to workers in industries that produce tangible goods -WagesTotal_Worker_NAICSHealthCareSocialAssistance,how much do people working in the health care and social assistance industry earn?;what are the wages for people working in the health care and social assistance industry?;what is the average wage for people working in the health care and social assistance industry?;what are the typical wages for people working in the health care and social assistance industry? -WagesTotal_Worker_NAICSInformation,how much money do people in the information industry make?;what are the average wages for people in the information industry?;what are the salaries for people in the information industry?;what are the incomes for people in the information industry? -WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,how much do people working in the management of companies and enterprises industry make?;what are the average wages for people working in the management of companies and enterprises industry?;what is the total compensation for people working in the management of companies and enterprises industry?;what are the typical salaries for people working in the management of companies and enterprises industry? -WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"the total amount of money paid to workers in the mining, quarrying, and oil and gas extraction industry;the sum of all the wages paid to workers in the mining, quarrying, and oil and gas extraction industry;the total earnings of workers in the mining, quarrying, and oil and gas extraction industry;the total compensation of workers in the mining, quarrying, and oil and gas extraction industry" -WagesTotal_Worker_NAICSNonclassifiable,total compensation paid to workers who are not classified by job title;the sum of all wages paid to workers who are not classified;wages paid to unclassified workers;salaries paid to unclassified employees -WagesTotal_Worker_NAICSOtherServices,"total wages for people working in other services, excluding public administration;total wages for people working in non-public services;total wages for people working in non-government services;wages earned by people working in other services, excluding public administration" -WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"the total amount of money paid to professional, scientific, and technical services workers;the sum of all wages paid to professional, scientific, and technical services workers;the total compensation paid to professional, scientific, and technical services workers;the total earnings of professional, scientific, and technical services workers" -WagesTotal_Worker_NAICSPublicAdministration,the total amount of money paid to public administration workers;the total wages paid to public servants;the total earnings paid to public sector workers;the total sum of money paid to public administration workers -WagesTotal_Worker_NAICSRealEstateRentalLeasing,how much money did real estate and rental and leasing workers earn in total?;what was the total amount of wages paid to real estate and rental and leasing workers?;what was the total compensation paid to real estate and rental and leasing workers?;what was the total income of real estate and rental and leasing workers? -WagesTotal_Worker_NAICSServiceProviding,total wages of people working in the service sector;total earnings of people working in the service industry;total compensation of people working in the service sector;total pay of people working in the service industry -WagesTotal_Worker_NAICSTotalAllIndustries,1 the total amount of money paid to workers in all industries;2 the sum of all wages paid to workers in all industries;3 the total compensation paid to workers in all industries;4 the total earnings of workers in all industries -WagesTotal_Worker_NAICSUtilities,the total amount of money paid to utility workers;the sum of all the wages paid to utility workers;the total compensation paid to utility workers;the total earnings of utility workers -WagesTotal_Worker_NAICSWholesaleTrade,the total amount of money paid to wholesale trade workers;the total sum of money paid to wholesale trade workers;the total earnings of wholesale trade workers;the total compensation of wholesale trade workers -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSAccommodationFoodServices,the total amount of money paid to workers in privately owned accommodation and food services;the total earnings of workers in privately owned accommodation and food services;the total compensation of workers in privately owned accommodation and food services;the total remuneration of workers in privately owned accommodation and food services -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,salaries of people working in privately owned administrative and support and waste management services;total earnings of people employed in privately owned administrative and support and waste management services;total pay of people working in privately owned administrative and support and waste management services;total compensation of people employed in privately owned administrative and support and waste management services -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"wages paid to workers in privately owned agriculture, forestry, fishing, and hunting;total amount of money paid to workers in privately owned agriculture, forestry, fishing, and hunting;sum of all wages paid to workers in privately owned agriculture, forestry, fishing, and hunting;total compensation paid to workers in privately owned agriculture, forestry, fishing, and hunting" -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSArtsEntertainmentRecreation,"the total amount of money paid to workers in privately owned arts, entertainment, and recreation establishments;the total wages earned by workers in privately owned arts, entertainment, and recreation establishments;the total compensation paid to workers in privately owned arts, entertainment, and recreation establishments;the total earnings of workers in privately owned arts, entertainment, and recreation establishments" -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSConstruction,the total amount of money paid to workers in privately owned construction;the total amount of money earned by workers in privately owned construction;the total amount of money paid out in wages to workers in privately owned construction;the total amount of money paid to workers in privately owned construction for their labor -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSEducationalServices,1 the total amount of money paid to workers in privately-owned educational service industries;2 the total compensation of workers in privately-owned educational service industries;3 the total earnings of workers in privately-owned educational service industries;4 the total income of workers in privately-owned educational service industries -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSFinanceInsurance,the total amount of money paid to employees in privately owned finance and insurance establishments;the total compensation paid to workers in privately owned finance and insurance establishments;the total earnings of workers in privately owned finance and insurance establishments;the total income of workers in privately owned finance and insurance establishments -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSGoodsProducing,total wages paid to workers in privately owned businesses that produce goods;total pay for workers in privately owned businesses that make things;total compensation for workers in privately owned businesses that produce tangible items;total income for workers in privately owned businesses that make tangible goods -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSHealthCareSocialAssistance,the total wages of people working in privately owned health care and social assistance (naics/62);the total amount of money paid to people working in privately owned health care and social assistance (naics/62);the total earnings of people working in privately owned health care and social assistance (naics/62);the total compensation of people working in privately owned health care and social assistance (naics/62) -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSInformation,wages of workers in privately owned information;total pay of workers in privately owned information;total earnings of workers in privately owned information;total salaries of workers in privately owned information -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSManagementOfCompaniesEnterprises,the total amount of money paid to workers in privately owned management positions;the total compensation of privately employed management workers;the total earnings of privately employed management workers;the total income of privately employed management workers -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSMiningQuarryingOilGasExtraction,"the total amount of money paid to workers in privately-owned mining, quarrying, and oil and gas extraction;the total wages of workers in privately-owned mining, quarrying, and oil and gas extraction;the total amount of money paid to employees in privately-owned mining, quarrying, and oil and gas extraction;the total earnings of workers in privately-owned mining, quarrying, and oil and gas extraction" -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSNonclassifiable,wages of workers in privately owned unclassified industries;total pay for workers in privately owned unclassified industries;the total amount of money paid to workers in privately owned unclassified industries;the total amount of money earned by workers in privately owned unclassified industries -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSOtherServices,the total amount of money paid to workers in privately owned services other than public administration;the total amount of money paid to workers in private services;the total amount of money paid to workers in private sector services;the total amount of money paid to workers in privately owned services that are not public administration -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"the total amount of money paid to workers in privately owned professional, scientific, and technical service industries;the total compensation paid to workers in privately owned professional, scientific, and technical service industries;the total income earned by workers in privately owned professional, scientific, and technical service industries;the total earnings of workers in privately owned professional, scientific, and technical service industries" -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSRealEstateRentalLeasing,the total amount of money paid to workers in privately owned real estate and rental and leasing establishments;the total compensation paid to workers in privately owned real estate and rental and leasing establishments;the total earnings of workers in privately owned real estate and rental and leasing establishments;the total income of workers in privately owned real estate and rental and leasing establishments -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSServiceProviding,total wages for people working in privately owned service-providing industries (naics/102);the total amount of money paid to people working in privately owned service-providing industries (naics/102);the total earnings of people working in privately owned service-providing industries (naics/102);the total compensation of people working in privately owned service-providing industries (naics/102) -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,total wages of all workers in private industries;total pay of all private-sector workers;total earnings of all private-sector employees;total compensation of all private-sector workers -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSUtilities,total wages paid to individuals working for privately owned utilities (naics/22);the total amount of money paid to employees of privately owned utilities (naics/22);the sum of all wages paid to workers at privately owned utilities (naics/22);the total compensation paid to workers at privately owned utilities (naics/22) -WagesTotal_Worker_PrivatelyOwnedEstablishment_NAICSWholesaleTrade,compensation for workers in privately owned wholesale companies;pay for workers in privately owned wholesale organizations;wages for workers in privately owned wholesale establishments;salaries of employees in privately owned wholesale trade -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,wages of state government workers in administrative and support and waste management services;total pay of state government employees in administrative and support and waste management services;salaries of state government workers in administrative and support and waste management services;total earnings of state government employees in administrative and support and waste management services -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much money do state government-owned arts, entertainment, and recreation establishments pay their workers?;what are the total wages of workers in state government-owned arts, entertainment, and recreation establishments?;what is the total amount of money that state government-owned arts, entertainment, and recreation establishments pay their workers?;what is the total compensation of workers in state government-owned arts, entertainment, and recreation establishments?" -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSConstruction,1 the total amount of money paid to workers in state government-owned construction industries;2 the total compensation of workers in state government-owned construction industries;3 the total earnings of workers in state government-owned construction industries;4 the total income of workers in state government-owned construction industries -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSEducationalServices,how much money do state government-owned educational services establishments pay their employees?;what are the total wages of workers in state government-owned educational services establishments?;what is the total amount of money that state government-owned educational services establishments pay their employees?;what is the total compensation of workers in state government-owned educational services establishments? -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSGoodsProducing,the total amount of money paid to workers in state-owned goods-producing industries;the total compensation paid to employees in state-owned goods-producing industries;the total amount of money earned by workers in state-owned goods-producing industries;the total earnings of employees in state-owned goods-producing industries -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,the total amount of money paid to workers in the health care and social assistance industries of state government-owned businesses;the total compensation of employees in the health care and social assistance industries of state government-owned companies;the total remuneration of workers in the health care and social assistance industries of state government-owned enterprises;the total earnings of employees in the health care and social assistance industries of state government-owned organizations -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSInformation,wages of state government information industry workers;salaries of state government information industry employees;total earnings of state government information industry workers;total compensation for state government information industry employees -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSNonclassifiable,the total amount of money paid to workers in state-owned unclassified industries;the total compensation of workers in state-owned unclassified industries;the total earnings of workers in state-owned unclassified industries;the total income of workers in state-owned unclassified industries -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"the total amount of money paid to workers in state-owned professional, scientific, and technical services industries;the sum of all wages paid to workers in state-owned professional, scientific, and technical services industries;the total compensation paid to workers in state-owned professional, scientific, and technical services industries;the total earnings of workers in state-owned professional, scientific, and technical services industries" -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSPublicAdministration,the total amount of money paid to employees of state government-owned public administration establishments;the total compensation paid to workers in state government-owned public administration establishments;the total earnings of employees of state government-owned public administration establishments;the total income of workers in state government-owned public administration establishments -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSServiceProviding,state government service workers' total wages;total pay of state government service workers;the total amount of money paid to state government service workers;the total amount of money earned by state government service workers -WagesTotal_Worker_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,the total amount of money paid to workers in government-owned industries;the total sum of money paid to workers in government-owned industries;the total earnings of workers in government-owned industries;the total income of workers in government-owned industries -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,weekly wages for workers in federal government-owned accommodation and food service industries;the weekly wages of workers in federal government-owned accommodation and food service industries;the average weekly wage for workers in federal government-owned accommodation and food service industries;the amount of money that workers in federal government-owned accommodation and food service industries earn each week -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,how much do workers in federal government-owned administrative and support and waste management services establishments make per week?;what are the weekly wages of workers in federal government-owned administrative and support and waste management services establishments?;what are the average weekly wages of workers in federal government-owned administrative and support and waste management services establishments?;what are the typical weekly wages of workers in federal government-owned administrative and support and waste management services establishments? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"how much do workers in federal government-owned agriculture, forestry, fishing, and hunting industries make per week;what are the weekly wages of workers in federal government-owned agriculture, forestry, fishing, and hunting industries;what is the average weekly wage of a worker in federal government-owned agriculture, forestry, fishing, and hunting industries;what is the weekly income of workers in federal government-owned agriculture, forestry, fishing, and hunting industries" -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much do people working in federal government-owned arts, entertainment, and recreation industries make per week?;what are the weekly wages of people working in federal government-owned arts, entertainment, and recreation industries?;what is the average weekly wage of people working in federal government-owned arts, entertainment, and recreation industries?;how much do people in the federal government-owned arts, entertainment, and recreation industries earn per week" -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSEducationalServices,how much do workers in federal government-owned educational services get paid per week?;what are the weekly wages of workers in federal government-owned educational services?;what is the average weekly wage of a worker in federal government-owned educational services?;what is the weekly salary of a worker in federal government-owned educational services? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSFinanceInsurance,weekly wages of federal government employees in finance and insurance;weekly pay for federal government workers in finance and insurance;how much federal government employees in finance and insurance make per week;the weekly salary of federal government employees in finance and insurance -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSGoodsProducing,weekly pay for workers in government-owned industries that produce goods;how much do workers in federal government-owned goods-producing industries make each week?;what are the weekly wages of workers in federal government-owned goods-producing industries?;what is the average weekly wage of workers in federal government-owned goods-producing industries? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,weekly wages of workers in federal government-owned health care and social assistance;weekly earnings of workers in federal government-owned health care and social assistance;weekly pay of workers in federal government-owned health care and social assistance;weekly salaries of workers in federal government-owned health care and social assistance -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSInformation,how much do people working in federal government-owned information industries make per week?;what are the weekly wages of workers in federal government-owned information industries?;what are the average weekly wages of workers in federal government-owned information industries?;what are the typical weekly wages of workers in federal government-owned information industries? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSNonclassifiable,weekly pay of employees in nonclassified federal government-owned establishments;weekly earnings of workers in nonclassified federal government-owned organizations;weekly income of people who are employed in nonclassified federal government-owned companies;weekly wages of people who are working in nonclassified federal government-owned businesses -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSOtherServices,"weekly wages of federal government employees in non-public administration services;weekly wages of federal government workers in other services, excluding public administration;weekly wages of federal government employees in non-public service sectors;weekly wages of federal government workers in other services, not including public administration" -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"how much do workers in federal government-owned professional, scientific, and technical services industries make per week?;what are the weekly wages of workers in federal government-owned professional, scientific, and technical services industries?;what is the average weekly wage of workers in federal government-owned professional, scientific, and technical services industries?;what is the typical weekly wage of workers in federal government-owned professional, scientific, and technical services industries?" -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSPublicAdministration,how much do people working in federal government-owned public administration establishments get paid each week?;what are the weekly wages of workers in federal government-owned public administration establishments?;what is the average weekly wage of a worker in a federal government-owned public administration establishment?;what are the wages of workers in federal government-owned public administration establishments on a weekly basis? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSServiceProviding,how much do workers in federal government-owned service-providing industries earn per week?;what are the weekly wages of workers in federal government-owned service-providing industries?;what are the typical weekly wages of workers in federal government-owned service-providing industries?;what is the weekly pay of workers in federal government-owned service-providing industries? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,how much do people working in federal government-owned industries get paid per week?;what are the average weekly wages in federal government-owned industries?;what is the weekly pay for people working in federal government-owned industries?;what are the weekly wages for people working in federal government-owned industries? -WagesWeekly_Worker_FederalGovernmentOwnedEstablishment_NAICSUtilities,wages of federal government utility workers per week;weekly salaries of federal government utility workers;weekly pay of federal government utility workers;weekly earnings of federal government utility workers -WagesWeekly_Worker_GovernmentOwnedEstablishment_NAICSTotalAllIndustries,how much do workers in government-owned industries get paid each week?;what are the weekly wages of workers in government-owned industries?;what is the average weekly wage of a worker in a government-owned industry?;what are the average weekly wages of workers in government-owned industries? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSAccommodationFoodServices,how much do workers in local government-owned accommodation and food services establishments get paid per week?;what are the weekly wages of workers in local government-owned accommodation and food services establishments?;what are the weekly salaries of workers in local government-owned accommodation and food services establishments?;what are the weekly earnings of workers in local government-owned accommodation and food services establishments? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,how much do local government workers in administrative and support and waste management services get paid per week?;what are the weekly wages of local government workers in administrative and support and waste management services?;what is the average weekly wage for local government workers in administrative and support and waste management services?;what is the weekly salary for local government workers in administrative and support and waste management services? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"salaries of employees in local government-owned arts, entertainment, and recreation establishments per week;weekly pay for workers in local government-owned arts, entertainment, and recreation establishments;weekly earnings of employees in local government-owned arts, entertainment, and recreation establishments;weekly income of workers in local government-owned arts, entertainment, and recreation establishments" -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSConstruction,how much do people get paid each week to work in construction at a local government-owned establishment?;what are the weekly wages for construction workers at local government-owned establishments?;what is the average weekly wage for construction workers at local government-owned establishments?;what are the typical weekly wages for construction workers at local government-owned establishments? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSEducationalServices,weekly pay for workers in local government-run schools;weekly income for workers in government-run educational facilities;how much do workers in local government-owned educational services get paid each week?;what are the weekly wages of workers in local government-owned educational services? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSGoodsProducing,how much do workers in local government-owned goods-producing industries get paid per week?;what are the weekly wages of workers in local government-owned goods-producing industries?;what is the average weekly wage of a worker in a local government-owned goods-producing industry?;how much do workers in local government-owned goods-producing industries make per week? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,how much do people working in local government-owned health care and social assistance establishments get paid per week?;what are the weekly wages of people working in local government-owned health care and social assistance establishments?;what are the average weekly wages of people working in local government-owned health care and social assistance establishments?;what is the weekly pay of people working in local government-owned health care and social assistance establishments? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSInformation,local government-owned information workers' weekly wages;weekly wages of local government-owned information workers;wages of local government-owned information workers per week;weekly earnings of local government-owned information workers -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSNonclassifiable,weekly pay of workers in local government-owned unclassified positions;weekly earnings of workers in local government-owned unclassified jobs;weekly salary of workers in local government-owned unclassified occupations;weekly income of workers in local government-owned unclassified employment -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSOtherServices,"weekly wages of local government workers in non-public administration services;weekly wages of local government workers in other services, excluding public administration;weekly wages of local government workers in services other than public administration;weekly wages of local government workers in services other than government administration" -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"how much do people in local government-owned professional, scientific, and technical services make per week?;what are the weekly wages of people in local government-owned professional, scientific, and technical services?;what is the average weekly wage of people in local government-owned professional, scientific, and technical services?;what are the typical weekly wages of people in local government-owned professional, scientific, and technical services?" -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSPublicAdministration,how much do workers in local government-owned public administration establishments get paid per week?;what are the weekly wages of workers in local government-owned public administration establishments?;what is the average weekly wage of workers in local government-owned public administration establishments?;what is the weekly salary of workers in local government-owned public administration establishments? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSRealEstateRentalLeasing,"weekly wages of local government-owned real estate, rental, and leasing establishment workers;weekly wages of workers in local government-owned real estate, rental, and leasing establishments;weekly wages for workers in local government-owned real estate, rental, and leasing establishments;weekly pay for workers in local government-owned real estate, rental, and leasing establishments" -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSServiceProviding,how much do workers in local government-owned service-providing industries make each week?;what are the weekly wages of workers in local government-owned service-providing industries?;what are the weekly salaries of workers in local government-owned service-providing industries?;what are the weekly earnings of workers in local government-owned service-providing industries? -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,how much do workers in local government-owned total and all industries earn weekly;what are the weekly wages of workers in local government-owned total and all industries;what is the weekly pay of workers in local government-owned total and all industries;what are the weekly salaries of workers in local government-owned total and all industries -WagesWeekly_Worker_LocalGovernmentOwnedEstablishment_NAICSUtilities,salaries of employees in local government-owned utilities;weekly earnings of workers in local government-owned utilities;wages of workers in local government-owned utilities per week;weekly pay of workers in local government-owned utilities -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSAccommodationFoodServices,the weekly wages of workers in privately owned accommodation and food services;the average weekly wage of workers in privately owned accommodation and food services;the amount of money that workers in privately owned accommodation and food services earn per week;the weekly earnings of workers in privately owned accommodation and food services -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,how much do workers in privately owned administrative and support and waste management services earn per week?;what are the weekly wages of workers in privately owned administrative and support and waste management services?;what is the weekly pay of workers in privately owned administrative and support and waste management services?;what is the weekly salary of workers in privately owned administrative and support and waste management services? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSAgricultureForestryFishingHunting,"how much do people in privately owned agriculture, forestry, fishing, and hunting industries make per week?;what are the weekly wages of people in privately owned agriculture, forestry, fishing, and hunting industries?;what is the average weekly wage of people in privately owned agriculture, forestry, fishing, and hunting industries?;what is the pay per week for people in privately owned agriculture, forestry, fishing, and hunting industries?" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSArtsEntertainmentRecreation,"weekly pay for workers in the private arts, entertainment, and recreation industries;weekly earnings for workers in the private arts, entertainment, and recreation sectors;weekly salaries for workers in the private arts, entertainment, and recreation fields;weekly income for workers in the private arts, entertainment, and recreation businesses" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSConstruction,how much do workers in privately owned construction industries earn per week?;what are the weekly wages of workers in privately owned construction industries?;what is the average weekly wage of a worker in a privately owned construction industry?;what are the average weekly wages of workers in privately owned construction industries? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSEducationalServices,how much do people working in privately owned educational services get paid per week?;what are the weekly wages of workers in privately owned educational services?;what is the average weekly wage for workers in privately owned educational services?;how much do workers in privately owned educational services make per week? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSFinanceInsurance,what are the weekly wages of workers in the privately owned finance and insurance industry?;what is the average weekly wage of a worker in the privately owned finance and insurance industry?;what are the typical weekly wages of workers in the privately owned finance and insurance industry?;what are the wages of workers in the privately owned finance and insurance industry on a weekly basis? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSGoodsProducing,how much do people working in privately owned goods-producing industries make per week?;what are the weekly wages of people working in privately owned goods-producing industries?;what is the average weekly wage of people working in privately owned goods-producing industries?;what are the typical weekly wages of people working in privately owned goods-producing industries? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSHealthCareSocialAssistance,how much do people working in privately-owned health care and social assistance establishments earn per week?;what are the weekly wages of workers in privately-owned health care and social assistance establishments?;what are the average weekly wages of workers in privately-owned health care and social assistance establishments?;what are the typical weekly wages of workers in privately-owned health care and social assistance establishments? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSInformation,how much do workers in privately owned information industries earn per week?;what are the weekly wages of workers in privately owned information industries?;what is the average weekly wage of workers in privately owned information industries?;what are the typical weekly wages of workers in privately owned information industries? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSManagementOfCompaniesEnterprises,how much do people who work in privately owned companies and enterprises make per week?;what are the weekly wages of workers in privately owned companies and enterprises?;what is the average weekly wage of a worker in a privately owned company or enterprise?;what are the average weekly wages of workers in privately owned companies and enterprises? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSMiningQuarryingOilGasExtraction,"what are the weekly wages of workers in privately owned mining, quarrying, and oil and gas extraction?;what is the average weekly wage of workers in privately owned mining, quarrying, and oil and gas extraction?;what are the typical weekly wages of workers in privately owned mining, quarrying, and oil and gas extraction?;what is the weekly pay of workers in privately owned mining, quarrying, and oil and gas extraction?" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSNonclassifiable,how much do people in privately owned unclassified industries make per week?;what are the weekly wages of people in privately owned unclassified industries?;what are the average weekly wages of people in privately owned unclassified industries?;what is the average weekly wage of a person in a privately owned unclassified industry? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSOtherServices,"weekly wages of workers in privately owned services, excluding public administration;weekly wages of workers in private services, excluding public administration;weekly wages of workers in privately owned non-public services;weekly wages of workers in private non-public services" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"weekly pay for workers in privately owned professional, scientific, and technical services;weekly earnings of workers in privately owned professional, scientific, and technical services;weekly salaries of workers in privately owned professional, scientific, and technical services;weekly income of workers in privately owned professional, scientific, and technical services" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSRealEstateRentalLeasing,"how much do people working in privately owned real estate, rental, and leasing industries make each week?;what are the weekly wages of workers in privately owned real estate, rental, and leasing industries?;what is the average weekly wage of workers in privately owned real estate, rental, and leasing industries?;what are the typical weekly wages of workers in privately owned real estate, rental, and leasing industries?" -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSServiceProviding,wages of employees in privately owned service establishments per week;weekly pay of workers in privately owned service businesses;how much do workers in privately owned service establishments make per week;what are the weekly wages of workers in privately owned service establishments -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,weekly wages of workers in privately owned all metal mining industries;weekly earnings of employees in privately owned all metal mining industries;weekly pay of workers in privately owned all metal mining industries;weekly salary of employees in privately owned all metal mining industries -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSUtilities,how much do people in privately owned utilities earn per week?;what are the weekly wages of people in privately owned utilities?;what is the average weekly wage of people in privately owned utilities?;what are the typical weekly wages of people in privately owned utilities? -WagesWeekly_Worker_PrivatelyOwnedEstablishment_NAICSWholesaleTrade,how much do people in privately owned wholesale trade make per week?;what are the weekly wages of people in privately owned wholesale trade?;what is the average weekly wage of people in privately owned wholesale trade?;what is the typical weekly wage of people in privately owned wholesale trade? -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSAdministrativeSupportWasteManagementRemediationServices,weekly wages of state government employees in administrative and support and waste management services;weekly pay for workers in state government-owned administrative and support and waste management services;the amount of money that state government employees in administrative and support and waste management services earn each week;the weekly salary of state government employees in administrative and support and waste management services -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSArtsEntertainmentRecreation,"how much do people in state-owned arts, entertainment, and recreation jobs make each week?;what are the weekly wages of people who work in state-owned arts, entertainment, and recreation?;what is the average weekly wage for people who work in state-owned arts, entertainment, and recreation?;what is the typical weekly wage for people who work in state-owned arts, entertainment, and recreation?" -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSConstruction,weekly pay for construction workers in state-owned industries;how much construction workers in state-owned industries get paid each week;the average weekly wage for construction workers in state-owned industries;the amount of money construction workers in state-owned industries make each week -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSEducationalServices,weekly wages of state government employees in educational services;weekly pay for state government workers in education;weekly earnings of state government employees in schools;weekly salary of state government workers in education -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSGoodsProducing,how much do state government workers in goods-producing establishments make per week?;what are the weekly wages of state government employees in goods-producing establishments?;what is the average weekly wage for state government workers in goods-producing establishments?;what are the typical weekly wages for state government employees in goods-producing establishments? -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSHealthCareSocialAssistance,how much money do workers in state-owned health care and social assistance establishments make each week?;what are the weekly wages of workers in state-owned health care and social assistance establishments?;what is the average weekly wage of workers in state-owned health care and social assistance establishments?;how much do workers in state-owned health care and social assistance establishments earn per week? -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSInformation,how much do people working in state government-owned information make per week?;what are the weekly wages of state government-owned information workers?;what is the weekly pay of state government-owned information workers?;how much money do people working in state-owned information make each week? -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSNonclassifiable,weekly pay for workers in state-owned establishments that are not classified;weekly compensation for workers in state-owned firms that are not identified;weekly pay for employees in unclassified state-owned businesses;weekly wages for workers in state-owned businesses that are not classified -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSProfessionalScientificTechnicalServices,"weekly wages of state government employees in professional, scientific, and technical services;weekly wages of state government workers in professional, scientific, and technical services;weekly wages of state government professionals, scientists, and technicians;weekly wages of state government employees in the professional, scientific, and technical fields" -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSPublicAdministration,how much do people working in state-owned public administration industries get paid each week?;what are the weekly wages of people working in state-owned public administration industries?;what is the average weekly wage of people working in state-owned public administration industries?;what are the typical weekly wages of people working in state-owned public administration industries? -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSServiceProviding,what are the weekly wages of workers in state government-owned service-providing establishments?;salaries of employees in state-owned service-providing establishments per week;weekly wages of workers in state-owned service-providing establishments;weekly earnings of workers in state-owned service-providing establishments -WagesWeekly_Worker_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,weekly earnings of people working for state-owned enterprises in all industries;weekly salary of people working for state-owned institutions in all industries;weekly wages of people employed by state governments in all industries (naics/10);weekly pay of people working for state governments in all industries (naics/10) -WetBulbTemperature_RCP45_MaxRelativeHumidity,maximum wet-bulb relative humidity based on the rcp 45 emissions scenario;the maximum wet-bulb relative humidity under the rcp 45 emissions scenario;the highest wet-bulb relative humidity that is expected to occur under the rcp 45 emissions scenario;the maximum relative humidity at wet bulb temperature based on the rcp 45 emissions scenario -WetBulbTemperature_RCP45_MeanRelativeHumidity,rcp 45 emissions scenario-based wet-bulb mean relative humidity;wet-bulb mean relative humidity based on the rcp 45 emissions scenario;relative humidity of the wet bulb based on the rcp 45 emissions scenario;mean wet-bulb relative humidity based on the rcp 45 emissions scenario -WetBulbTemperature_RCP45_MinRelativeHumidity,minimum relative humidity based on rcp 45 emissions scenario for wet bulb temperature;minimum relative humidity for wet bulb temperature based on rcp 45 emissions scenario;relative humidity at minimum wet bulb temperature based on rcp 45 emissions scenario;relative humidity based on minimum wet bulb temperature and rcp 45 emissions scenario -WetBulbTemperature_RCP60_MaxRelativeHumidity,maximum relative humidity at wet bulb temperature based on rcp 60 emissions scenario;maximum wet bulb relative humidity based on rcp 60 emissions scenario;maximum relative humidity at wet bulb temperature in rcp 60 emissions scenario;maximum wet bulb relative humidity in rcp 60 emissions scenario -WetBulbTemperature_RCP60_MeanRelativeHumidity,mean relative humidity based on the rcp 60 emissions scenario;mean wet bulb relative humidity based on the rcp 60 emissions scenario;wet bulb relative humidity based on the rcp 60 emissions scenario;relative humidity of the wet bulb based on the rcp 60 emissions scenario -WetBulbTemperature_RCP60_MinRelativeHumidity,wet-bulb temperature based on rcp 60 emissions scenario;wet-bulb temperature under rcp 60 emissions scenario;wet-bulb temperature in the rcp 60 emissions scenario;wet-bulb temperature as projected by the rcp 60 emissions scenario -WetBulbTemperature_RCP85_MaxRelativeHumidity,maximum relative humidity based on the rep 85 emissions scenario;maximum relative humidity based on the rep 85 emissions pathway;maximum relative humidity based on the rep 85 emissions trajectory;maximum relative humidity based on rep 85 emissions scenario -WetBulbTemperature_RCP85_MeanRelativeHumidity,wet bulb temperature and mean relative humidity based on rcp 85 emissions scenario -WetBulbTemperature_RCP85_MinRelativeHumidity,min relative humidity in rcp 85;minimum relative humidity in rcp 85;lowest relative humidity in rcp 85;least relative humidity in rcp 85 -WindSpeed_UComponent_Height10Meters,what is the velocity of the wind?;how many meters per second is the wind blowing?;wind speed in meters per second;wind speed in meters per hour -WindSpeed_VComponent_Height10Meters,ten-meter wind speed;wind speed at 10 meters;wind speed at a height of 10 meters;wind speed at an elevation of 10 meters -WithdrawalRate_Water,the rate at which water is taken out of a source;the amount of water that is taken out of a source over a period of time;the rate of water consumption;the rate of water use -WithdrawalRate_Water_Aquaculture,what is the water withdrawal rate for aquaculture?;how much water does aquaculture use?;what is the water consumption rate for aquaculture?;what is the water consumption of aquaculture? -WithdrawalRate_Water_Aquaculture_FreshWater,how much fresh water is used for aquaculture?;what is the rate of fresh water withdrawal for aquaculture?;what is the amount of fresh water used in aquaculture?;how much fresh water is withdrawn from the environment for aquaculture? -WithdrawalRate_Water_Aquaculture_FreshWater_GroundWater,extraction rate of fresh groundwater for aquaculture;how much fresh groundwater is withdrawn for aquaculture;the amount of fresh groundwater that is used for aquaculture;the volume of fresh groundwater that is taken out of the ground for aquaculture -WithdrawalRate_Water_Aquaculture_FreshWater_SurfaceWater,the consumption of fresh surface water by aquaculture;the use of fresh surface water by aquaculture;the rate at which aquaculture withdraws fresh surface water;the amount of fresh surface water that aquaculture withdraws -WithdrawalRate_Water_Aquaculture_GroundWater,the rate at which groundwater is removed for aquaculture;the amount of groundwater that is used for aquaculture;the rate of groundwater pumping for aquaculture;the rate at which groundwater is withdrawn for aquaculture -WithdrawalRate_Water_Aquaculture_SalineWater, -WithdrawalRate_Water_Aquaculture_SalineWater_GroundWater, -WithdrawalRate_Water_Aquaculture_SalineWater_SurfaceWater,"the rate at which water is used by aquaculture, surface water, and saline water;the consumption of water by aquaculture, surface water, and saline water;the usage of water by aquaculture, surface water, and saline water;the rate at which water is withdrawn for aquaculture from surface water and saline water" -WithdrawalRate_Water_Aquaculture_SurfaceWater,how much surface water is used for aquaculture?;what is the rate of surface water withdrawal for aquaculture?;what is the amount of surface water that is withdrawn for aquaculture?;how much surface water is taken out of the environment for aquaculture? -WithdrawalRate_Water_Domestic,water withdrawals for domestic purposes;water withdrawal for domestic use;domestic water withdrawal rate;rate of water withdrawal for domestic purposes -WithdrawalRate_Water_Domestic_FreshWater,rate of domestic water withdrawal;the withdrawal of fresh water for domestic purposes -WithdrawalRate_Water_Domestic_FreshWater_GroundWater,"the rate at which fresh water is withdrawn for domestic use;the amount of fresh water that is taken from rivers, lakes, and aquifers for domestic purposes" -WithdrawalRate_Water_Domestic_FreshWater_SurfaceWater,"the rate at which fresh surface water is withdrawn for domestic use;the amount of fresh surface water that is withdrawn for domestic use;the amount of fresh surface water that is used for domestic purposes;the amount of fresh surface water that is taken from rivers, lakes, and other surface water bodies for domestic purposes" -WithdrawalRate_Water_Domestic_GroundWater,taking water from the ground;removing water from the ground;pumping water from the ground;drawing water from the ground -WithdrawalRate_Water_Domestic_SalineWater,the rate at which saline water is used for domestic purposes;the amount of saline water that is used for domestic purposes per unit of time;the volume of saline water that is used for domestic purposes per unit of time;the quantity of saline water that is used for domestic purposes per unit of time -WithdrawalRate_Water_Domestic_SalineWater_GroundWater,rate of domestic saline groundwater withdrawal;amount of domestic saline groundwater withdrawn;how much domestic saline groundwater is withdrawn;domestic saline groundwater withdrawal rate -WithdrawalRate_Water_Domestic_SalineWater_SurfaceWater,the rate at which surface saline water is withdrawn for domestic use;the amount of surface saline water that is withdrawn for domestic use per unit time;the rate of domestic water withdrawal from surface saline water sources;the amount of surface saline water that is withdrawn for domestic use in a given period of time -WithdrawalRate_Water_Domestic_SurfaceWater,the rate of domestic water withdrawal from surface water;the amount of surface water that is withdrawn for domestic use;the rate at which domestic surface water is withdrawn;the amount of domestic surface water that is withdrawn per unit of time -WithdrawalRate_Water_Industrial,industrial water withdrawal;water withdrawal for industrial use;water use in industry;water used by industry -WithdrawalRate_Water_Industrial_FreshWater,how much fresh water is used for industrial purposes?;what is the rate of fresh water withdrawal for industrial use?;how much fresh water is taken out of the environment for industrial use?;what is the amount of fresh water that is used by industry? -WithdrawalRate_Water_Industrial_FreshWater_GroundWater,the rate at which fresh groundwater is used for industrial purposes;the amount of fresh groundwater that is used for industrial purposes per unit of time;the volume of fresh groundwater that is used for industrial purposes per unit of time;the quantity of fresh groundwater that is used for industrial purposes per unit of time -WithdrawalRate_Water_Industrial_FreshWater_SurfaceWater,"the rate at which industrial facilities withdraw surface fresh water;the amount of surface fresh water that industrial facilities withdraw per unit time;the quantity of surface fresh water that industrial facilities take from rivers, lakes, and other surface water bodies;the volume of surface fresh water that industrial facilities use in their operations" -WithdrawalRate_Water_Industrial_GroundWater,rate at which groundwater is removed for industrial use;amount of groundwater taken out for industrial purposes;volume of groundwater extracted for industrial purposes;quantity of groundwater taken for industrial use -WithdrawalRate_Water_Industrial_SalineWater,the rate at which saline water is withdrawn;the amount of saline water that is taken out over a period of time;the rate at which saline water is removed;the amount of saline water that is taken out over time -WithdrawalRate_Water_Industrial_SalineWater_GroundWater,taking salty water from the ground for industrial use;removing saline water from the ground for industrial purposes;extracting saline water from the ground for industrial use;pumping saline water from the ground for industrial use -WithdrawalRate_Water_Industrial_SalineWater_SurfaceWater,2 the amount of surface and saline water that is withdrawn over a period of time;3 the rate of water consumption from surface and saline sources;4 the amount of water that is taken from surface and saline sources;how much surface and saline water is being withdrawn? -WithdrawalRate_Water_Industrial_SurfaceWater,the rate at which surface water is taken from industrial sources;the amount of surface water that is used by industry;the volume of surface water that is withdrawn from industrial sites;the amount of surface water that is used by industrial processes -WithdrawalRate_Water_Irrigation,irrigation water use;water use for irrigation;irrigation water consumption;irrigation water demand -WithdrawalRate_Water_Irrigation_FreshWater,the rate at which irrigation water is withdrawn;the amount of irrigation water that is taken out of a source over a period of time;the rate of water consumption for irrigation purposes;rate of water withdrawal for irrigation -WithdrawalRate_Water_Irrigation_FreshWater_GroundWater,the rate at which ground water and fresh water are withdrawn for irrigation;the amount of ground water and fresh water that is used for irrigation;the rate of consumption of ground water and fresh water for irrigation;the amount of ground water and fresh water that is taken out of the ground for irrigation -WithdrawalRate_Water_Irrigation_FreshWater_SurfaceWater,"the rate at which fresh water and surface water are withdrawn for irrigation;the amount of fresh water and surface water that is used for irrigation;the quantity of fresh water and surface water that is taken out of the environment for irrigation;the amount of fresh water and surface water that is taken from rivers, lakes, and aquifers to water crops" -WithdrawalRate_Water_Irrigation_GroundWater,how much water is taken out of the ground for irrigation and groundwater? -WithdrawalRate_Water_Irrigation_SalineWater,rate of water withdrawal for saline water irrigation;rate of irrigation water withdrawal for saline water;rate of water withdrawal for irrigation with saline water;what is the rate of water withdrawal for saline irrigation? -WithdrawalRate_Water_Irrigation_SalineWater_GroundWater,the rate at which saline groundwater is withdrawn for irrigation;the amount of saline groundwater that is withdrawn for irrigation each year;the volume of saline groundwater that is withdrawn for irrigation each year;the quantity of saline groundwater that is withdrawn for irrigation each year -WithdrawalRate_Water_Irrigation_SalineWater_SurfaceWater,the amount of saline water that is used for irrigation;the rate at which saline water is used for irrigation;the rate of withdrawal of saline water for irrigation;the rate of irrigation with saline water -WithdrawalRate_Water_Irrigation_SurfaceWater,the rate at which surface water is withdrawn for irrigation;the amount of surface water that is withdrawn for irrigation;the quantity of surface water that is withdrawn for irrigation;the volume of surface water that is withdrawn for irrigation -WithdrawalRate_Water_Livestock,how much water do livestock use?;how much water is used by livestock?;what is the water withdrawal rate for livestock?;what is the amount of water used by livestock? -WithdrawalRate_Water_Livestock_FreshWater,how much freshwater is used by livestock;how much freshwater do livestock use;the amount of freshwater used by livestock;the amount of freshwater that livestock use -WithdrawalRate_Water_Livestock_FreshWater_GroundWater,the amount of fresh groundwater that is used for livestock;the rate at which fresh groundwater is withdrawn for livestock use;the amount of fresh groundwater that is taken out of the ground for livestock;the rate at which fresh groundwater is taken out of the ground for livestock -WithdrawalRate_Water_Livestock_FreshWater_SurfaceWater,the rate at which fresh surface water is used for livestock;the amount of fresh surface water that is used for livestock;the quantity of fresh surface water that is used for livestock;the volume of fresh surface water that is used for livestock -WithdrawalRate_Water_Livestock_GroundWater,how much water do livestock and groundwater withdraw? -WithdrawalRate_Water_Livestock_SalineWater,how much saline water can livestock drink?;what is the maximum amount of saline water that livestock can drink?;what is the safe level of saline water intake for livestock?;the rate at which livestock drink saline water -WithdrawalRate_Water_Livestock_SalineWater_GroundWater,what is the maximum amount of saline water that livestock can consume?;what is the recommended amount of saline water for livestock to drink?;the rate at which saline water is withdrawn for livestock;the amount of saline water that is withdrawn for livestock per unit of time -WithdrawalRate_Water_Livestock_SalineWater_SurfaceWater,"how much water do livestock, surface water, and saline water use?;what is the rate of water withdrawal for livestock, surface water, and saline water?;how much water is used by livestock, surface water, and saline water?;what is the amount of water used by livestock, surface water, and saline water?" -WithdrawalRate_Water_Livestock_SurfaceWater,the amount of surface water used for livestock;the rate at which surface water is used for livestock;the amount of surface water that is withdrawn for livestock;the rate at which surface water is withdrawn for livestock -WithdrawalRate_Water_Mining,rate of water withdrawal for mining;water consumption by mining;water usage in mining;what is the water withdrawal rate for mining? -WithdrawalRate_Water_Mining_FreshWater,the rate at which fresh water is withdrawn for mining;the quantity of fresh water that is taken from a source for mining;the amount of fresh water that is taken out of a source for mining;the rate at which fresh water is used for mining -WithdrawalRate_Water_Mining_FreshWater_GroundWater,mining industries take fresh groundwater;mining companies extract fresh groundwater;mining operations use fresh groundwater;mining activities draw on fresh groundwater -WithdrawalRate_Water_Mining_FreshWater_SurfaceWater,"the rate at which fresh surface water is withdrawn for mining;the amount of fresh surface water that is used for mining;the quantity of fresh surface water that is taken from rivers, lakes, and other sources for mining;the volume of fresh surface water that is extracted from natural bodies of water for mining" -WithdrawalRate_Water_Mining_GroundWater, -WithdrawalRate_Water_Mining_SalineWater,the rate at which saline water is withdrawn from mines;the amount of saline water that is taken out of mines per unit of time;the speed at which saline water is removed from mines;the rate of saline water extraction from mines -WithdrawalRate_Water_Mining_SalineWater_GroundWater, -WithdrawalRate_Water_Mining_SalineWater_SurfaceWater,"the rate at which water is withdrawn from mines, surface water sources, and saline water sources;the amount of water that is taken out of mines, surface water sources, and saline water sources;the rate of water consumption from mines, surface water sources, and saline water sources;the amount of water that is used up from mines, surface water sources, and saline water sources" -WithdrawalRate_Water_Mining_SurfaceWater,"the rate at which surface water is withdrawn for mining purposes;the amount of surface water that is used in mining operations;the volume of surface water that is taken out of rivers, lakes, and other bodies of water for mining;the rate of water consumption by mining operations" -WithdrawalRate_Water_PublicSupply,the quantity of water that is withdrawn from public supplies per unit of time;the flow of water that is withdrawn from public supplies per unit of time;public water withdrawal rate;rate of water withdrawal from public supplies -WithdrawalRate_Water_PublicSupply_FreshWater,the rate at which fresh water is withdrawn from public supplies;the consumption of fresh water from public supplies;the drawdown of fresh water from public supplies;the quantity of fresh water that is withdrawn from public supplies -WithdrawalRate_Water_PublicSupply_FreshWater_GroundWater,the rate at which fresh groundwater is withdrawn for public supply;the amount of fresh groundwater that is withdrawn for public supply per unit time;the volume of fresh groundwater that is withdrawn for public supply per unit time;the rate of fresh groundwater use for public supply -WithdrawalRate_Water_PublicSupply_FreshWater_SurfaceWater,"the amount of water that is withdrawn from public supplies, surface water, and fresh water;the volume of water that is withdrawn from public supplies, surface water, and fresh water;the flow of water that is withdrawn from public supplies, surface water, and fresh water;the amount of water withdrawn from public supplies, surface water, and fresh water" -WithdrawalRate_Water_PublicSupply_GroundWater, -WithdrawalRate_Water_PublicSupply_SalineWater,the rate at which public supply and saline water are withdrawn;the amount of public supply and saline water that is taken out;the rate of consumption of public supply and saline water;the rate at which public supply and saline water are used up -WithdrawalRate_Water_PublicSupply_SalineWater_GroundWater,taking salt water from the ground for public use;removing saline water from the ground for public supply;extracting saline water from the ground for public use;pumping saline water from the ground for public supply -WithdrawalRate_Water_PublicSupply_SalineWater_SurfaceWater,rate of surface saline water withdrawal;rate at which surface saline water is withdrawn;amount of surface saline water withdrawn per unit time;volume of surface saline water withdrawn per unit time -WithdrawalRate_Water_PublicSupply_SurfaceWater,percentage of public water supply that comes from surface water;how much of the public water supply comes from surface water;what percentage of public water comes from surface water;what is the rate of surface water in public supply -WithdrawalRate_Water_Thermoelectric,thermoelectric water withdrawal rate;rate of water withdrawal by thermoelectric power plants;how much water is withdrawn by thermoelectric power plants;the amount of water withdrawn by thermoelectric power plants -WithdrawalRate_Water_Thermoelectric_FreshWater,how much fresh water is used by thermoelectric power plants?;what is the rate of fresh water withdrawal by thermoelectric power plants?;what is the amount of fresh water that thermoelectric power plants use?;how much fresh water do thermoelectric power plants use? -WithdrawalRate_Water_Thermoelectric_FreshWater_GroundWater,the rate at which fresh groundwater is withdrawn for thermoelectric purposes;the amount of fresh groundwater that is used for thermoelectric purposes per unit of time;the rate of fresh groundwater consumption for thermoelectric purposes;the rate at which fresh groundwater is taken out of the ground for thermoelectric purposes -WithdrawalRate_Water_Thermoelectric_FreshWater_SurfaceWater,the rate at which fresh water is withdrawn from thermoelectric surfaces;the amount of fresh water that is taken from thermoelectric surfaces over a period of time;the volume of fresh water that is removed from thermoelectric surfaces per unit time;the quantity of fresh water that is extracted from thermoelectric surfaces per unit time -WithdrawalRate_Water_Thermoelectric_GroundWater,the rate at which thermoelectric and ground water is withdrawn;the amount of thermoelectric and ground water that is withdrawn per unit of time;the rate of consumption of thermoelectric and ground water;the rate of use of thermoelectric and ground water -WithdrawalRate_Water_Thermoelectric_SalineWater,the rate at which saline water is withdrawn for thermoelectric use;the amount of saline water that is withdrawn for thermoelectric use per unit of time;the volume of saline water that is withdrawn for thermoelectric use per unit of time;the quantity of saline water that is withdrawn for thermoelectric use per unit of time -WithdrawalRate_Water_Thermoelectric_SalineWater_GroundWater,the rate at which saline groundwater is removed from the ground;the speed at which saline groundwater is taken out of the ground;the rate of extraction of saline groundwater;the rate of pumping of saline groundwater -WithdrawalRate_Water_Thermoelectric_SalineWater_SurfaceWater,the rate at which saline water is removed from the surface for thermoelectric use;the amount of saline water that is taken from the surface for thermoelectric use per unit of time;the speed at which saline water is extracted from the surface for thermoelectric use;the volume of saline water that is taken from the surface for thermoelectric use per unit of time -WithdrawalRate_Water_Thermoelectric_SurfaceWater,the rate at which thermoelectric surface water is withdrawn;the amount of thermoelectric surface water that is withdrawn per unit time;the rate of consumption of thermoelectric surface water;the rate of depletion of thermoelectric surface water -dc/0165994v0l8fh,foreign-born population who speaks an indo-european language but is not fluent in english;people who were born in another country and speak an indo-european language but are not fluent in english;people who were not born in the united states and speak an indo-european language but are not fluent in english;foreign-born people who speak an indo-european language but are not fluent in english -dc/025qv4dsg09w6,a man of asian descent who is employed full-time;a full-time working asian man;a male asian working full-time;an asian male who works full-time -dc/03ewbkyh6zey2,male native hawaiian or other pacific islander incarceration rate;number of native hawaiian or other pacific islander males in prison;percentage of native hawaiian or other pacific islander males who are incarcerated;proportion of native hawaiian or other pacific islander males who are in jail -dc/03l0q0wyqrk39,number of incarcerated men by jurisdiction;male incarceration rates by jurisdiction;percentage of men incarcerated by jurisdiction;male incarceration statistics by jurisdiction -dc/03wqmq686n779,number of unmarried white women;the unmarried white female demographic;the number of unmarried white women;the population of unmarried white women -dc/03z5xvp7fbdc2,number of asian students enrolled in grade 2;percentage of asian students enrolled in grade 2;proportion of asian students enrolled in grade 2;asian student enrollment in grade 2 -dc/04zn512rcrx23,the number of white females with a high school diploma or ged;the percentage of white females with a high school diploma or ged;the proportion of white females with a high school diploma or ged;the share of white females with a high school diploma or ged -dc/05vn39gf0bz64,the percentage of multiracial males who do not have a high school diploma;the percentage of multiracial males who are not high school educated;percentage of multiracial males without high school diplomas;number of multiracial males without high school diplomas -dc/06f0jf8xvzw4f,hispanic women with bachelor's degrees;the number of hispanic women with bachelor's degrees;the percentage of hispanic women with bachelor's degrees;hispanic women who have bachelor's degrees -dc/06m8j6xz3h0wf,people who work in construction and maintenance and use motorcycles or bicycles;the number of people who work in construction and maintenance and use motorcycles or bicycles;the percentage of people who work in construction and maintenance and use motorcycles or bicycles;the proportion of people who work in construction and maintenance and use motorcycles or bicycles -dc/079ewbkwfmswg,born outside the us and widowed;not a us native and widowed;not born in the us and a widow;a widow who was not born in the us -dc/07rw0lsvkv1ld,"the number of incarcerated non-citizen women in state, federal, and privately operated prisons;the number of non-citizen women who are incarcerated in state, federal, and privately operated prisons;the population of incarcerated non-citizen women in state, federal, and privately operated prisons;the incarcerated female population of non-citizens in state, federal, and privately operated prisons" -dc/0b6z588ttk7s7,mortality in african american males aged 55 to 64 years due to digestive system diseases;number of deaths in african american males aged 55 to 64 years caused by digestive system diseases;death rate in african american males aged 55 to 64 years due to digestive system diseases;percentage of deaths in african american males aged 55 to 64 years caused by digestive system diseases -dc/0d4e9jmyhvs38, -dc/0gettc3bc60cb,"number of people who drove alone in a car, truck, or van;number of people who drove solo in a car, truck, or van;number of people who drove by themselves in a car, truck, or van;number of people who were the only driver in a car, truck, or van" -dc/0hdkptqbl6lh1,white non-hispanic immigrants who speak english fluently;english-fluent white non-hispanic immigrants;white non-hispanic immigrants who are proficient in english;english-proficient white non-hispanic immigrants -dc/0jbhkc9vzh3kc,number of american indian and alaska native students enrolled in grade 12;number of american indian and native students in 12th grade;number of american indian and native students who are 12th graders;number of american indian and native students who are enrolled in high school and are in their 12th year -dc/0jtctjm33mgh1,undergraduate hispanic enrollment;hispanic college enrollment;number of hispanic college students;hispanic students enrolled in college -dc/0kx32ff9c6d79,people who are not native english speakers -dc/0lr57b7391w12,"the number of students enrolled in grade 5 who identify as some other race;the percentage of students enrolled in grade 5 who identify as some other race;the proportion of students enrolled in grade 5 who identify as some other race;the number of students enrolled in grade 5 who identify as ""some other race""" -dc/0ltdeskbvkn3d, -dc/0m0ky4wkxsfb1,"male, married and not separated, two or more races;male, married and not separated, multiple races" -dc/0mz1rg7mm3y66,the number of people who are in prison or jail and are being held by the federal government;the number of people who are incarcerated in federal prisons and jails;the number of people who are behind bars in federal prisons and jails;federally operated prison population -dc/0nebext7v1r91,native hawaiians;hawaiian people;people from hawaii -dc/0r4qqmjxw3xe,the hispanic female population that graduated from high school -dc/0r5m0xkb9d4g3,civilian men aged 18 or older who are not veterans and have an income;non-veteran male civilians over the age of 18 who earn money;civilian men aged 18 and older who are not veterans and have a job;non-veteran male civilians who are over the age of 18 and are employed -dc/0tn58fc77r0z6,african americans who are in prison or jail;black people who are incarcerated;black people who are behind bars;african americans who are in the criminal justice system -dc/0tx0mhnep19yf, -dc/0zz4drf66j6w7,the number of full-time working women by race;the percentage of women by race who work full time;the proportion of women by race who work full time;the number of full-time working women of color -dc/10d542rs75l3g,the number of incarcerated women in federal facilities;the female prison population in the federal system;female inmates in federal prisons;women incarcerated in federal prisons -dc/15v2cx47svlb8,number of american indian or alaska native students enrolled in grade 2;percentage of american indian or alaska native students enrolled in grade 2;proportion of american indian or alaska native students enrolled in grade 2;american indian or alaska native student enrollment in grade 2 -dc/1b6dcdtx5ytqc,1 white students in second grade;2 second-grade white students;second-grade white students;white students in second grade -dc/1bflzn76nn6mb,"foreign-born white non-hispanics who are fluent in english;white non-hispanics who were born in another country and are fluent in english;individuals who were not born in the united states, identify as white and non-hispanic, and are fluent in english;individuals who were born outside of the united states, are white and non-hispanic, and have a high level of english proficiency" -dc/1c4zcyw02n71g,number of asian children enrolled in kindergarten;percentage of asian children enrolled in kindergarten;proportion of asian children enrolled in kindergarten;share of asian children enrolled in kindergarten -dc/1g7g3rdh7e0r2,"white non-hispanic widowed females;widowed white non-hispanic women;women who are white, non-hispanic, and widowed;female population of white, non-hispanic widows" -dc/1kt512ynvpmc2,high school enrollment of asian americans;the number of asian americans enrolled in high school;the percentage of asian americans enrolled in high school;the proportion of asian americans enrolled in high school -dc/1lm9k2vdxj4c6, -dc/1m3fjkmrezthf,number of asian students in grade 11;proportion of asian students in grade 11;percentage of asian students in grade 11;asian student enrollment in grade 11 -dc/1qbzq30erfy89,"population of people of other races;population of other races;population of people who identify as other, separated by race;population of other, by race" -dc/1t989xd1tn701,native hawaiian or other pacific islander college enrollment;number of native hawaiian or other pacific islander college students;native hawaiian or other pacific islander undergraduate population;native hawaiian or other pacific islander college attendance -dc/1v84c9j8gg1g6,6th grade hispanic students;hispanic students in 6th grade;6th graders who are hispanic;hispanic kids in 6th grade -dc/1wynb0rv84jy9,number of hispanics enrolled in grade 2;hispanic students in grade 2;hispanic population in grade 2;hispanic students enrolled in the second grade -dc/1x48nzrne2f88,how many people from asian and pacific island countries speak english fluently?;what percentage of the asian and pacific island population speaks english fluently?;what is the level of english proficiency among the asian and pacific island population?;how well do people from asian and pacific island countries speak english? -dc/1xyxb890ww5n6,employed population over 16 years old -dc/1y59h5d6qjq91,number of people in the united states who were born outside the country and have an income;people born outside the united states who have an income;people who were born outside the united states and have an income;people who were born in another country and now live in the united states and have an income -dc/1yyzpv9wsld34,white non hispanic students enrolled in grade ii;the number of white non hispanic students enrolled in grade ii;the percentage of white non hispanic students enrolled in grade ii;the proportion of white non hispanic students enrolled in grade ii -dc/20p4v7bwb4ggf,the population of white and hispanic women who are high school graduates;the number of white and hispanic women who are high school graduates;the percentage of white and hispanic women who are high school graduates;the proportion of white and hispanic women who are high school graduates -dc/21j845ny0gpl6,"how much money do male veterans over the age of 18 make, on average?;what is the average income of male veterans aged 18 or older?;what is the median income for male veterans aged 18 or older?;what is the typical income for male veterans aged 18 or older?" -dc/2487zfwx2423d,american indian or alaska native women in prison;american indian or alaska native women in jail;american indian or alaska native women in correctional facilities;american indian or alaska native women in detention centers -dc/24d7852x7mlvh,male high school graduates or equivalent who are native hawaiian or other pacific islander;male high school graduates or equivalent of native hawaiian or other pacific islander descent;native hawaiian or other pacific islander men who have graduated from high school or have an equivalent qualification;native hawaiian or other pacific islander men who have completed high school or have an equivalent qualification -dc/253ercqs2dp46,american indian or alaska native men who work part-time;american indian or alaska native male part-time employees;american indian or alaska native men who are employed part-time;american indian or alaska native men who have part-time jobs -dc/273kn2nmgl4rf,people born in other states of the united states who have no income;people who were born in other states of the united states and do not have an income;people who were born in other states of the united states and do not make any money;people who were born in other states of the united states and are not employed -dc/28nfbs113meqb,number of incarcerated men who are awaiting execution;number of incarcerated males who have been sentenced to capital punishment;number of male inmates awaiting execution;number of men in prison who have been convicted of a capital offense -dc/29he4212wwkch,the middle income of full-time workers aged 16 and older -dc/29vy1f58gdm0g,"people who were born in another country and identify as more than one race;people who were born in the united states to parents who are multiracial and identify as more than one race;people who were born in the united states and identify as more than one race, regardless of their parents' birthplace;multiracial people who were born in another country" -dc/2d5rby4n8sf38,how many people lived in vietnam during the vietnam war?;what was the population of vietnam during the vietnam war?;what was the number of people living in vietnam during the vietnam war?;how many people were living in vietnam during the vietnam war? -dc/2fy8mlefry90h,percentage of asian males without a high school diploma;number of asian males without a high school diploma;proportion of asian males without a high school diploma;share of asian males without a high school diploma -dc/2hhr4qp4b4r0b,"population of public transportation workers excluding taxicab, natural resources, construction, and maintenance occupations;size of the public transportation workforce excluding taxicab, natural resources, construction, and maintenance occupations;public transportation workforce excluding taxicab, natural resources, construction, and maintenance occupations" -dc/2hl1cck59cr7d,men who are married but whose wives are not present;men who are married but whose wives are not living with them;men who are married but whose wives are away from home;men who are married but whose wives are not available to them -dc/2hlbd99ffpke,number of white children enrolled in preschool;percentage of white children enrolled in preschool;white preschool enrollment;proportion of white children enrolled in preschool -dc/2l16dmjljlx36,native hawaiian women or other pacific islanders;women of native hawaiian or other pacific islander descent;native hawaiian or other pacific islander women;women who are native hawaiian or other pacific islander -dc/2r1c78wzvbq58,number of people who walked in military-specific occupations;number of people who worked in military-specific occupations on foot;number of people who walked while working in military-specific occupations;number of people who walked as part of their military-specific occupations -dc/2r21y7g5j2fl2,people who are widowed and were born in another state in the us;people who are widowed and were born in a state other than the one they currently live in;people who are widowed and were born in another state in the united states;people who are widowed and were born in a state other than the one they were born in -dc/2rgfl7ss9l2yh,the number of male people of some other races who did not work full time;the number of male people of some other races who were not working full time;the number of men of other races who did not work full time;the number of males of other races who did not work full time -dc/2s9jqlpe84dk,the number of asian men who are in prison or jail;the percentage of asian men who are incarcerated;the incarcerated population of asian men;the number of asian men who are in the criminal justice system -dc/2vzwj7k0cmg2c,"the median income of individuals aged 16 years or older, before deductions;the average income of individuals aged 16 years or older, before deductions;the middle income of individuals aged 16 years or older, before deductions;the half-way point of the income distribution for individuals aged 16 years or older, before deductions" -dc/2wv73v2rme3rf,number of hispanic men with bachelor's degrees;population of hispanic men with bachelor's degrees;percentage of hispanic men with bachelor's degrees;proportion of hispanic men with bachelor's degrees -dc/2xd2ktjs23hk3,"people who identify as native american and two or more races;people who identify as native american and another race;people who identify as native american and two or more other races;people who identify as two or more races, including native american" -dc/2xzbs6m305m9b,"number of people aged 16 or older employed in natural resources, construction, and maintenance occupations;percentage of the population aged 16 or older employed in natural resources, construction, and maintenance occupations;number of people aged 16 or older who are employed in natural resources, construction, and maintenance occupations;number of people aged 16 or older who are working in natural resources, construction, and maintenance occupations" -dc/31mgfjs08le08,men who were in prison for 2 years are now out;men who were locked up for 2 years are now free;men who were behind bars for 2 years are now out in the world;men who were serving time for 2 years are now back on the streets -dc/36d93ckypx3bb,number of women admitted to prison for 2 years or more and then released;number of women released from prison after serving 2 years or more;number of women incarcerated for 2 years or more and then released;number of women who served 2 years or more in prison and then were released -dc/395z864p6qly6,hispanic men with a high school diploma or ged;hispanic males who have graduated from high school or earned a ged;hispanic men who have completed high school or earned a ged;males of hispanic descent who have graduated from high school or obtained a ged -dc/3bg4r46ly61q9,the experiences of african americans in high school;the lives of african american high school students;the challenges and opportunities faced by african american high school students;the struggles and triumphs of african american high school students -dc/3bz5n6t83nqv1, -dc/3ex5z6ys04wsf,female population of some other race who are married and not separated;population of married and unseparated females of some other race;females of some other race who are married and not separated;population of females of some other race who are married and not separated -dc/3f6nmhf0zhtd4,spanish-speaking foreign-born population with moderate english proficiency;spanish-speaking immigrants who speak english moderately;population of foreign-born spanish speakers with moderate english skills -dc/3fl8y8x4gslwg,number of asian students enrolled in grade 12;percentage of asian students enrolled in grade 12;proportion of asian students enrolled in grade 12;asian student enrollment in grade 12 -dc/3kex5wnwcehj6,number of hispanic students in grade 4;how many hispanic students are in grade 4;hispanic student enrollment in grade 4;hispanic students enrolled in grade 4 -dc/3kk4xws30zxlb,deaths caused by prisoners;deaths caused by inmates;deaths caused by people in prison;deaths caused by people in jail -dc/3lvepgjsreml3,number of white students in grade 4;white students in grade 4;white students enrolled in grade 4;white population in grade 4 -dc/3n8g9we5yv7th,kids of multiple races in kindergarten;kindergarteners who are multiracial;kindergarteners of mixed race;kindergarteners of multiple ethnicities -dc/3pb2gexynec0b,american indians or alaska natives who only speak english;american indian or alaska native people who speak only english;american indian or alaska native people who speak english as their only language;american indian or alaska native people who are english-only speakers -dc/3s0q1pjxf4d56,number of hispanic students in grade 7;number of hispanic children in grade 7;number of hispanic kids in grade 7;number of hispanic pupils in grade 7 -dc/3s7lndm5j3wp4,deaths in prison from illness or natural causes;deaths in jail from illness or natural causes;deaths in the incarcerated population from illness or natural causes;deaths in the correctional population from illness or natural causes -dc/3tjts4msxh3j9,"death rate of white females aged 85 years due to blood diseases, blood-forming organs, and certain immune disorders;number of white female deaths aged 85 years due to blood diseases, blood-forming organs, and certain immune disorders;percentage of white female deaths aged 85 years due to blood diseases, blood-forming organs, and certain immune disorders;white women aged 85 who died from diseases of the blood, blood-forming organs, and certain disorders involving the immune mechanism" -dc/3vbln1rkltxk,"asian males with high school diploma, ged, or equivalent;asian males who have graduated from high school, earned a ged, or completed an alternative program;asian men with a high school diploma, ged, or equivalent;asian men who have graduated from high school, earned a ged, or have an equivalent qualification" -dc/3vtb9ms1sbd7h,part-time male workers of multiple races;men of multiple races who work part-time;part-time workers who are male and multiracial;male part-time workers who are multiracial -dc/3w039ndqy7qv1,hispanic women with some college or associate's degrees;the number of hispanic women with some college or associate's degrees;the percentage of hispanic women with some college or associate's degrees;the proportion of hispanic women with some college or associate's degrees -dc/3x9bgs81fqyz6,what is the median income of full-time working men?;the average annual income of full-time male workers;what is the median income of full-time male workers?;the average amount of money that a full-time male worker makes -dc/3yq4xlxpc6yjd,hispanic employment;hispanic people aged 16 years or older who are employed in the labor force;hispanic people aged 16 years or older who are working;hispanic people aged 16 years or older who are in the workforce -dc/3z6z9w930dl7b,the number of african americans in graduate school;the percentage of african americans in graduate school;the proportion of african americans in graduate school;the african american student body in graduate school -dc/3zy5zptr0tsmg,male incarceration deaths;deaths of male inmates;male prisoner deaths;deaths of male incarcerated people -dc/40724bjd19ej7,population of native hawaiians or other pacific islanders born outside the united states;number of native hawaiians or other pacific islanders born abroad;native hawaiians or other pacific islanders who were not born in the united states;foreign-born people who identify as native hawaiian or other pacific islander -dc/42gsdwxn6km93,2 the percentage of african american women who have never been married;5 the number of african american women who are not married;the percentage of african american women who have never been married;the number of african american women who are not married -dc/43gm4rs97v1sh,students of multiple races in tenth grade;tenth graders who are multiracial;tenth grade students with multiple racial backgrounds;students of multiple races in grade 10 -dc/4601s3h4zgkvh,number of african americans enrolled in grade 11;african american student enrollment in grade 11;percentage of african americans enrolled in grade 11;african american students enrolled in grade 11 -dc/46t96zpewfrhc,married asians;asians who are married;asians who are in a married relationship;asians who are married to each other -dc/4737stmx46bnb, -dc/473zrj2223by7,the number of white women working full time;the percentage of white women working full time;the proportion of white women working full time;the share of white women working full time -dc/4786yl5837tyf,hispanic women with low educational attainment;hispanic women with less than a high school diploma;the number of hispanic women with less than a high school diploma;the percentage of hispanic women with less than a high school diploma -dc/49j53qsb03yy7,the percentage of the white non-hispanic population aged 16 years or more who are employed in the labor force;the number of white non-hispanic people aged 16 years or more who are employed in the labor force as a percentage of the total white non-hispanic population aged 16 years or more;the proportion of the white non-hispanic population aged 16 years or more who are employed in the labor force;the white non-hispanic labor force participation rate -dc/49rrqphqmkg24, -dc/4bc2hks7w5r0g,number of native hawaiian or other pacific islander students enrolled in grade 9;number of native hawaiian or other pacific islander 9th graders;number of native hawaiian or other pacific islander students in the 9th grade;number of native hawaiian or other pacific islander students enrolled in 9th grade -dc/4crqk0tzg7h4g,white non-hispanic children enrolled in nursery school;the number of white non-hispanic children enrolled in nursery school;the percentage of white non-hispanic children enrolled in nursery school;the proportion of white non-hispanic children enrolled in nursery school -dc/4f8yh8l1pf4z4,women of diverse racial backgrounds who are apart -dc/4hzyqndyzntm,the percentage of white students in high school;the number of white students in high school;the proportion of white students in high school;the share of white students in high school -dc/4j5t00e5s5el3,kids in pre-k and kindergarten;preschoolers and kindergarteners;the number of children in pre-k and kindergarten;the number of kids in pre-k and kindergarten -dc/4jqzmk4jtzwnb,hispanic women in prison;hispanic female prisoners;hispanic women who are incarcerated;hispanic women who are in prison -dc/4kbb1mt42l0gf, -dc/4lq5grhwyrle2,female incarceration and release rates for sentences of 2 years or more;what is the rate of incarceration and release for women in the us for sentences of 2 years or more;women who have been incarcerated in the united states for 2 years or more;female incarceration rates and releases for sentences of two years or more -dc/4lvmzr1h1ylk1,women are disproportionately affected by obesity;obesity is common among females;a large number of females are obese;obesity is a prevalent issue among females -dc/4n1l2j3e2wy7f,3 the number of people who were alive during the korean war -dc/4n1wg2c7hjem,spanish-speaking people who speak english well;spanish speakers who speak english well;people who speak spanish natively and english well;spanish-speaking americans who speak english well -dc/4n6zfr7knc9gb,population of widowed males of some other race;number of widowed males of some other race;male population that is widowed and of some other race;men of some other race who are widowed -dc/4qbgpy1bdq9ng,number of multiracial students in grade 1;proportion of multiracial students in grade 1;percentage of multiracial students in grade 1;share of multiracial students in grade 1 -dc/4qkhs33t1v2w1,the number of full-time working asian women;the population of asian women who work full-time;the number of asian women who work full-time;the number of asian women employed full-time -dc/4qtse8536dg63, -dc/4vss7dyxcf7xc,the population of divorced white non-hispanic males;the number of divorced white non-hispanic males;the percentage of divorced white non-hispanic males;the proportion of divorced white non-hispanic males -dc/4wdtyd2bbf9m9,multiracial students in school;students who identify as multiracial in school;1 the number of students in school who identify as multiracial;2 the percentage of students in school who identify as multiracial -dc/4wkzsq23w6reb,white non-hispanic students enrolled in college undergraduate years;white non-hispanic undergraduates;white non-hispanic college students;white non-hispanic students in college -dc/4wnhh8y9kyjjb,the number of white males working full time;the percentage of white males working full time;the proportion of white males working full time;the share of white males working full time -dc/4x1jbp34f4085,number of incarcerated multiracial women;number of multiracial women in prison;number of multiracial women in jail;number of multiracial women in the criminal justice system -dc/4xklqxfc27w1f,"percentage of people working in management, business, science, and arts occupations who use public transportation excluding taxis;share of people working in management, business, science, and arts occupations who use public transportation excluding taxis;number of people working in management, business, science, and arts occupations who use public transportation excluding taxis as a percentage of the total number of people working in those occupations;proportion of people working in management, business, science, and arts occupations who use public transportation excluding taxis" -dc/4xykjw3v6n4t3,people from asia and the pacific islands who are not fluent in english;asians and pacific islanders who are not fluent in english;asian americans and pacific islanders who are not fluent in english;asian americans and pacific islanders who are not native english speakers -dc/50fzsjlvqk58g, -dc/50yq5l3ek70t7,enrollment of students of other races in college undergraduate years;number of students of other races enrolled in college undergraduate years;percentage of students of other races enrolled in college undergraduate years;proportion of students of other races enrolled in college undergraduate years -dc/510pv6eq2vtw7,native hawaiian or other pacific islander prisoners;the number of native hawaiian or other pacific islanders in prison;the percentage of native hawaiian or other pacific islanders in prison;the incarceration rate of native hawaiian or other pacific islanders -dc/52fefhezp2lhf,people who speak english fluently as their native language;people who are fluent in english;people who are fluent in english as their first language -dc/52kr7y6d6zlv3, -dc/52zwp6khpmd86,multiracial students in grade 3;students who are multiracial in grade 3;the number of students in grade 3 who identify as multiracial;the percentage of students in grade 3 who identify as multiracial -dc/556pqlh586bmc,the number of native hawaiian or other pacific islander children enrolled in kindergarten;the percentage of native hawaiian or other pacific islander children enrolled in kindergarten;the proportion of native hawaiian or other pacific islander children enrolled in kindergarten;the native hawaiian or other pacific islander kindergarten enrollment rate -dc/55cs80tc3ryvh,people who were born outside of the united states and have a mixed racial background who are very good at speaking english;people who were born in other countries and identify as multiple races and are very good at speaking english;people who were born outside the us and identify as more than one race and are very good at speaking english fluently;people who were born outside of the united states and identify as multiple races and speak english fluently -dc/55d9n710f1l43,number of white students enrolled in college undergraduate programs;percentage of white students enrolled in college undergraduate programs;proportion of white students enrolled in college undergraduate programs;white student enrollment in college undergraduate programs -dc/56md3ndhrmvm7,1 the number of african american women with some college or associate's degrees;2 the percentage of african american women with some college or associate's degrees;3 the proportion of african american women with some college or associate's degrees;4 the share of african american women with some college or associate's degrees -dc/56wvdkq084erc,us citizens of white ethnicity who speak english with a moderate level of fluency;english-speaking americans of white racial background who have a moderate command of the language -dc/59k03h1hvxp89,female prisoners killed by other people;women in prison killed by other people;incarcerated women who were killed by other people;female prisoners who were killed by other people -dc/59tb0nkn0nfrg,number of native hawaiian or other pacific islander students enrolled in grade 10;native hawaiian or other pacific islander student enrollment in grade 10;native hawaiian or other pacific islander students enrolled in tenth grade;native hawaiian or other pacific islander students enrolled in 10th grade -dc/5blsqw3w9jmnc,the percentage of multiracial people not enrolled in school;the number of multiracial people not enrolled in school;the share of multiracial people not enrolled in school;multiracial students not enrolled in school -dc/5bv5566pj35v7,number of white non-hispanic students in grade 2;white non-hispanic students enrolled in grade 2;white non-hispanic students enrolled in second grade;the number of white non-hispanic students enrolled in grade 2 -dc/5dw5587jynlq9,women who are not employed and do not have an income -dc/5ergd75hbfbs2,the number of native hawaiian or other pacific islander alone students enrolled in grade 3;the number of native hawaiian or other pacific islander alone students in grade 3;the native hawaiian or other pacific islander alone student population in grade 3;the number of native hawaiian or other pacific islander alone students enrolled in the third grade -dc/5f7zv3ydq8ttb,females of other races who have been divorced;divorced women of other races;women of other races who have been through a divorce;female population of other races who are divorced -dc/5g7vkrkzfre5g,foreign-born married population;foreign-born population who are married;population of foreign-born people who are married;foreign-born people who are married and not separated -dc/5gtp8jjdzczh8,people who were born in the state they currently reside in and have no income;people who were born in the state they currently reside in and do not have a job;people who were born in the state they currently reside in and are unemployed;people who were born in the state they currently reside in and are not working -dc/5hc4etrfyj9qg,the number of white women with bachelor's degrees or higher;the percentage of white women with bachelor's degrees or higher;the proportion of white women with bachelor's degrees or higher;the share of white women with bachelor's degrees or higher -dc/5jbbtfhddvbt4,the number of males of some other race who graduated from high school or its equivalent;the number of males of some other race who have a high school diploma or its equivalent;the number of males of some other race who have completed high school or its equivalent;the number of males of some other race who have a high school equivalency diploma -dc/5pcx89t7j9bq,people born in the state they currently live in who are married and not separated;people who are married and not separated and were born in the state they currently live in;people who are married and not separated and live in the state they were born in;people who were born in the state they currently live in and are married and not separated -dc/5pkkpv87t13e6,"native hawaiian or other pacific islander women who have graduated from high school, earned a ged, or completed an alternative program;population of native hawaiian or other pacific islander females with a high school diploma, ged, or equivalent;number of native hawaiian or other pacific islander females who have graduated from high school or obtained a ged or equivalent;percentage of native hawaiian or other pacific islander females who have graduated from high school or obtained a ged or equivalent" -dc/5qnjtqc0w783b,american indian or alaska native school enrollment;number of american indian or alaska native students enrolled in school;percentage of american indian or alaska native students enrolled in school;american indian or alaska native school attendance -dc/5qwlxpztw7cf8,male native hawaiian or other pacific islander who is single;native hawaiian or other pacific islander male who is not attached;a male native hawaiian or other pacific islander;a native hawaiian or other pacific islander man -dc/5rk9h9zvbyz5,hispanic students in 12th grade;the number of hispanic students in 12th grade;the percentage of hispanic students in 12th grade;the proportion of hispanic students in 12th grade -dc/5s1ytn01dxpn4,number of women in private state prisons;population of female inmates in privately run state correctional facilities;number of women incarcerated in privately owned state prisons;number of female prisoners in privately operated state correctional facilities -dc/5trrbtpffls3,women who graduated from high school and are white;high school-educated white women;white women who completed high school;white female high school alumni -dc/5z841n2qnsc18,white female infant mortality rate due to perinatal conditions;white female infant death rate due to perinatal conditions;perinatal death rate for white female infants aged 0-1 year -dc/602cjzlv5hyzh,women of color who work part-time;women who work part-time and are of a race other than white;women who work part-time and are not of the majority race -dc/6288j45632xgb,married native hawaiian or other pacific islander men;native hawaiian or other pacific islander men who are married;the population of native hawaiian or other pacific islander men who are married;the number of native hawaiian or other pacific islander men who are married -dc/62pg70d2beyh9,prison population aged 2 years or older admitted to prison;people aged 2 years or older admitted to prison;people admitted to prison aged 2 years or older;people admitted to prison who are aged 2 years or older -dc/63ttq636cd4zc,"white, non-hispanic men who are not working full-time;white, non-hispanic males who are not employed full-time;white, non-hispanic men who are not working full-time jobs;white, non-hispanic males who are not employed full-time jobs" -dc/64cddpx6l6qd9,white males who are married and not separated;the population of white males who are married and not separated;the number of white males who are married and not separated;the percentage of white males who are married and not separated -dc/66sy80vs0b8q7,population of divorced people born in other states in the united states;number of divorced people born in other states in the united states;people born in other states who are divorced in the united states;divorced people in the united states who were born in other states -dc/67lg0h8ldbr43,"african american female infants dying from conditions that start before or during birth;african american female infants dying from conditions that start before, during, or shortly after birth;african american female infant mortality due to perinatal conditions;death rate of african american female infants due to perinatal conditions" -dc/67ttwfn9dswch,the number of people who died while incarcerated;number of deaths (measured by jurisdiction): incarcerated -dc/68cg2z97cpl7d,the number of hispanic students in elementary schools;the percentage of hispanic students in primary education;the proportion of hispanic students in k-5 schools;the number of hispanic children in primary school -dc/68rek3hyfvw3d,population of students of other races enrolled in grade 9;number of students of other races enrolled in grade 9;percentage of students of other races enrolled in grade 9;students of other races enrolled in grade 9 -dc/6bcwz6fgqsmtc,the number of asian women not working full-time is high;the percentage of asian women not working full-time is high;there are many asian women who are not working full-time;a large number of asian women are not working full-time -dc/6bkn9vt30f5c1,population of american indians or alaska natives born outside the united states;number of american indians or alaska natives who were born in another country;number of american indians or alaska natives who were not born in the united states;total number of american indians or alaska natives who are foreign-born -dc/6d454xmppxjhb,native hawaiian or other pacific islander bilinguals;people who are bilingual in native hawaiian or other pacific islander and english;native hawaiians and other pacific islanders who are bilingual;people who are bi- or multilingual in english and a native hawaiian or other pacific islander language -dc/6dqm6n76jg2gc,number of female prisoners who have died;female inmate deaths;female incarceration-related deaths;number of incarcerated women who have died -dc/6dsh2c30wcptc,percentage of students in grade 6 who identify as multiracial;multiracial students enrolled in grade 6;students who identify as multiracial enrolled in grade 6;students in sixth grade who identify as multiracial -dc/6k1k1gxh7kgg7,white and non-hispanic men who are separated from their wives or partners;white and non-hispanic men who are not in a relationship;white men who are separated from their wives;white men who are separated from their spouses -dc/6kkefdzvzwz3c,the percentage of african american women who are not working full time is high;a large number of african american women are not working full time;many african american women are not working full time;a significant number of african american women are not working full time -dc/6m11q7bk4qge,number of hispanic students enrolled in first grade;proportion of hispanic students in first grade;percentage of hispanic students in first grade;hispanic student enrollment in first grade -dc/6nl4fvbfpfbf3, -dc/6p9ys3pv227ef,white english-speaking native population -dc/6rltk4kf75612,the number of people who worked from home;the percentage of people who worked from home;the proportion of people who worked from home;the share of people who worked from home -dc/6rzmvxpgqlww6,people who were born outside the us and don't speak english fluently;people who were born in other countries and have limited english proficiency -dc/6xg0t3qjdtqn5,the number of native hawaiian or other pacific islander women who are in prison or jail;the percentage of native hawaiian or other pacific islander women who are incarcerated;the rate of incarceration for native hawaiian or other pacific islander women;the number of native hawaiian or other pacific islander women who are in the criminal justice system -dc/6xlk95n27cn23,number of deaths (by jurisdiction): male detainees -dc/6yzk8t4e9t6v6,people who speak an indo-european language as their first language but are not fluent in english;native speakers of indo-european languages who do not speak english well;people who speak an indo-european language as their mother tongue but are not proficient in english;people who are not fluent in english but speak an indo-european language as their native language -dc/6zbb7s5nx6rxb,population of middle school students who are not of the majority race;number of middle school students who are not of the majority race;percentage of middle school students who are not of the majority race -dc/6zrlr86zt61yg,"what is the prevalence of people who use taxis, motorcycles, and bicycles?" -dc/708rvcfph3j43,students of color in seventh grade;seventh graders who are not white;non-white seventh graders;seventh graders of diverse backgrounds -dc/70zj83ev915f8, -dc/73gx0bbh8msr5,foreign-born people of other races who speak english less than very well;people of other races who were born outside the us and speak english less than very well;people of other races who were born in another country and speak english less than very well -dc/73hq7ndp08jxc,people who speak english fluently and are native speakers of other indo-european languages;english speakers who are native speakers of other indo-european languages;native speakers of other indo-european languages who are fluent in english;people who speak english fluently and are from other indo-european language backgrounds -dc/747gqczgzpcqd,5 what was the population of the world in world war 2?;how many people lived during world war 2;what was the population of the world during world war 2;how many people were alive during world war 2 -dc/7645ck4vrj3z4,multiracial students in grade 2;students with multiple racial identities in grade 2;students of two or more races in grade 2;students who identify as multiracial in grade 2 -dc/79jbm5zv0f5s7,"women of other races who have graduated from high school or obtained a ged or equivalent;females of other races with a high school diploma, ged, or other equivalent credential;women of other races who have completed high school or obtained a ged or equivalent certificate;women of other races who have a high school diploma or ged" -dc/7b1kt6jvs29m5,the number of african american students in grade 7;the percentage of african american students in grade 7;the proportion of african american students in grade 7;number of african americans enrolled in grade 7 -dc/7cxlkzf56zk26,people who speak spanish as their native language and are not fluent in english;spanish speakers who are not proficient in english;spanish-speaking people who are not english-fluent -dc/7emh9f893kn4g,hispanic male population breakdown -dc/7fdfhnnjr5sh8,american indian or alaska native students enrolled in graduate or professional schools;american indian or alaska native students who have completed graduate or professional school;american indian or alaska native students who have earned a graduate or professional degree;the number of american indian or alaska native students enrolled in graduate or professional schools -dc/7g77dy8hfb1rg,number of hispanic children enrolled in kindergarten;percent of hispanic children enrolled in kindergarten;hispanic kindergarten enrollment;hispanic kindergarten attendance -dc/7g8v95ycwgwgg,incarcerated white women;white female prisoners;white women in prison;white women who are incarcerated -dc/7lwnw9syv0hb7,population of divorced native hawaiian or other pacific islander women;number of divorced native hawaiian or other pacific islander women;percentage of native hawaiian or other pacific islander women who are divorced;share of native hawaiian or other pacific islander women who are divorced -dc/7nqp2vc6y6fef,the percentage of native hawaiians not enrolled in school;the number of native hawaiians not enrolled in school;the proportion of native hawaiians not enrolled in school;the share of native hawaiians not enrolled in school -dc/7qs9zcrxhm28f,people who were born in another country and speak asian or pacific island languages and are fluent in english;people who are immigrants and speak asian or pacific island languages and are fluent in english;people who are foreign-born and speak asian or pacific island languages and are fluent in english;the number of people born in another country who speak asian or pacific island languages and are fluent in english -dc/7s7lp7ttmp3k3,the number of native hawaiian or other pacific islander students in 12th grade;the percentage of native hawaiian or other pacific islander students in 12th grade;the proportion of native hawaiian or other pacific islander students in 12th grade;the native hawaiian or other pacific islander student population in 12th grade -dc/7ssfc4pnxyqvd,the number of multiracial students enrolled in grade 8;the proportion of multiracial students enrolled in grade 8;the percentage of multiracial students enrolled in grade 8;the share of multiracial students enrolled in grade 8 -dc/7st63yed0l4x,immigrants who speak english well;foreign-born people who speak english well;foreign-born people who are fluent in english;immigrants who have a good command of english -dc/7tctphw60mstd,the number of asian high school graduates who are female;the percentage of asian high school graduates who are female;the proportion of asian high school graduates who are female;the female asian high school graduate population -dc/7wt44yv38rew,1 the number of people working from home in sales and office occupations;2 the percentage of people working from home in sales and office occupations;3 the proportion of people working from home in sales and office occupations;4 the share of people working from home in sales and office occupations -dc/7xf6mm0sg9y18,hispanic men with college degrees;the number of hispanic men with college degrees;the percentage of hispanic men with college degrees;hispanic men who have college degrees -dc/7ym82e881ety2,"population: only english, native, white alone not hispanic or latino;only english, native, white alone not hispanic or latino are included in the population;the population only includes english, native, white alone not hispanic or latino;english, native, white alone not hispanic or latino are the only groups included in the population" -dc/7yq84qysey1b7,native and multiracial people speak english very well;native and multiracial people are very good at speaking english;native and multiracial people are able to communicate effectively in english;native and multiracial populations are good at speaking english -dc/80q8jrnkvwtt3,"percentage of people who carpool in management, business, science, and arts occupations;share of people who carpool in management, business, science, and arts occupations;number of people who carpool in management, business, science, and arts occupations;number of people who carpool to work in management, business, science, and arts occupations" -dc/80wsxnfj3secc,unintentional injury deaths in incarcerated populations;deaths from unintentional injuries in incarcerated people;incarcerated people who died from unintentional injuries;unintentional injuries that caused the deaths of incarcerated people -dc/81gkggtxkfep3,the number of full-time working males of other races;the number of other races male full-time workers;the number of full-time working men of other races;the number of other races male full-time employees -dc/8276gss3d3q82,white non-hispanic students enrolled in grade 7;white non-hispanic students in grade 7;white students who are not hispanic and are enrolled in grade 7;white students who are not hispanic and are in grade 7 -dc/834l34hp5krkd,the number of american indian or alaska natives who speak fluent english and were born outside of the united states;the percentage of american indian or alaska natives who speak fluent english and were born outside of the united states;the proportion of american indian or alaska natives who speak fluent english and were born outside of the united states;the share of american indian or alaska natives who speak fluent english and were born outside of the united states -dc/84m6s0b5vqsw6,foreign-born race with a language other than english;race of foreign-born people who speak a language other than english;foreign-born race that speaks a language other than english -dc/858f4wnnbjdd9,the number of american indian or alaska native women who worked full time;the percentage of american indian or alaska native women who worked full time;the proportion of american indian or alaska native women who worked full time;the american indian or alaska native female workforce -dc/88znpts47dszb,illness-related deaths among incarcerated males;incarcerated males who died from illness;deaths of incarcerated males due to illness;illness as a cause of death in incarcerated males -dc/89kqjl3ky5cgh,the number of white students in 10th grade;the percentage of white students in 10th grade;white students in 10th grade as a percentage of all students;the proportion of white students in 10th grade -dc/8cjck1jlnvfy7,women who did not work full time and did not have an income;female population who did not have a full-time job and did not earn money;women who did not work full time and did not make money;female population who did not have a full-time job and did not have an income -dc/8cnhmxe67qddf,number of native hawaiian or other pacific islander students enrolled in school;native hawaiian or other pacific islander school enrollment;percentage of native hawaiian or other pacific islander students enrolled in school;number of native hawaiian or other pacific islander students attending school -dc/8jc9x4b90tp5,share of african american males with a high school diploma or equivalent;proportion of african american males who have completed high school;share of african american males who have a high school diploma or equivalent;the proportion of african american males who are high school graduates -dc/8jmdhtz20bj07,asian english speakers;native english speakers of asian descent;native asian speakers of english;the number of asian americans who are native english speakers -dc/8qkkf1vx7cmh,women earn less than high school graduates on average;the median income for women is lower than the median income for high school graduates;women make less money than high school graduates on average;women's salaries are lower than high school graduates' salaries on average -dc/8qxk942qb0gh1,african americans who were born in another country and speak a language other than english;african americans who were born outside of the united states and speak a language other than english -dc/8v4jefbe61e5d,foreign-born native hawaiian or other pacific islanders who speak english at a moderate level;1 native hawaiian or other pacific islander immigrants who are moderate english speakers;3 native hawaiian or other pacific islander immigrants who have a moderate level of english proficiency;4 foreign-born native hawaiian or other pacific islanders who have a moderate command of english -dc/8vjrm6rjszg9c,electric power supply;electric power inventory;electric power reserves;electric power stockpile -dc/8vk4jxpr9cc6f,the number of full-time working white non-hispanic males;the number of white non-hispanic males who are employed full time;the number of white non-hispanic males who are employed full-time;the population of white non-hispanic males who work full time -dc/8xbzew3hh3zj2,american indian or alaska native students enrolled in grade 4;the number of american indian or alaska native students enrolled in grade 4;the american indian or alaska native student population enrolled in grade 4;the number of american indian or alaska native students in grade 4 -dc/91vy0sf20wlg9, -dc/92mnzpclp7tbd,other indo-european languages spoken by foreign-born english speakers;foreign-born english speakers who speak other indo-european languages;english speakers who are foreign-born and speak other indo-european languages;foreign-born speakers of other indo-european languages who are fluent in english -dc/92sfrvdv82jh9,other nps deaths in the incarcerated male population;deaths of incarcerated males caused by other nps;deaths of incarcerated males due to other nps;other nps-related deaths in the incarcerated male population -dc/98kjs8sqg8dc6,american indian or alaska native students in 10th grade;american indian or alaska native high school students in grade 10;american indian or alaska native 10th graders;10th grade american indian or alaska native students -dc/99t3dyzp34tg2,foreign-born people of other races;people of other races who are immigrants;foreign-born population of other races;immigrants of other races -dc/99y4sk89ch1v6,male population that is multiracial;male population that is of mixed race;population of males who identify as biracial -dc/9cqv67nn7pn1b,the number of hispanic people with graduate or professional degrees;the percentage of hispanic people with graduate or professional degrees;the proportion of hispanic people with graduate or professional degrees;the share of hispanic people with graduate or professional degrees -dc/9cztw75rt7qp7,the number of people in the united states who are married and not separated and who were born in other states;the number of married and not separated people in the us who were born outside of the us;the number of people in the us who are married and not separated and who were not born in the us;number of people living in the us who are married and were born in other states -dc/9lq3bgx0gq5x6,"white, non-hispanic, divorced females;female population of white, non-hispanic divorcees;divorced white, non-hispanic women;women who are white, non-hispanic, and divorced" -dc/9pxfcgnmpb4ld,african american nursery preschool enrollment;the number of african american children enrolled in nursery preschools;the percentage of african american children enrolled in nursery preschools;african american nursery preschool attendance -dc/9q73ecfhmd0y9,students of other races in high school;high school students who are not white;high school students of color;students of diverse backgrounds in high school -dc/9q9rgwpcgt2gd, -dc/9sneyc8lpk8dc,the number of white women with some college or associate's degrees;the percentage of white women with some college or associate's degrees;the proportion of white women with some college or associate's degrees;the share of white women with some college or associate's degrees -dc/9steqj1edh965,a large number of hispanic women do not work full time;many hispanic women do not work full time;a significant portion of hispanic women do not work full time;a large percentage of hispanic women do not work full time -dc/9vlv8l9dbgsk7,"public transportation workers, excluding taxi drivers and military personnel;people who work in public transportation, except for taxi drivers and members of the military;employees in public transportation, other than taxi drivers and military personnel;workers in the public transportation sector, excluding taxi drivers and military personnel" -dc/9w78f7yet9t5g,the number of african americans who were born in another country and speak only english;the percentage of african americans who were born in another country and speak only english;the proportion of african americans who were born in another country and speak only english;the share of african americans who were born in another country and speak only english -dc/9xw6peejzgbd5,native hawaiian or other pacific islander women who have never married;native hawaiian or other pacific islander females who have never been married;native hawaiian or other pacific islander women who are not married;the percentage of native hawaiian or other pacific islander women who have never married -dc/b0npgpvp37mvf,deaths caused by accidents in male inmates;accidental deaths of male prisoners;accidental deaths in male prisoners;deaths caused by accidents in male prisons -dc/b18vkxwgc8xbd,who are the native hawaiians and other pacific islanders?;who are the indigenous people of hawaii and the pacific islands?;what are the native peoples of hawaii and the pacific islands called?;what are the indigenous groups of hawaii and the pacific islands? -dc/b1dn069ptggg7,black female population;african american female community -dc/b2l0jcm65s4x2,korean war and vietnam era population;people born during the korean war and vietnam war -dc/b3bcvxz3b2cn8,coal receipts per quarter;coal received per quarter;coal receipts in a quarter;coal receipts for the quarter -dc/b3jgznxenlrm2,"foreign nationals held in state, federal, and private prisons;non-citizens imprisoned in state, federal, and private correctional facilities;people who are not us citizens and are in jails or prisons that are run by the state, federal government, or a private company;individuals who are not us citizens and are incarcerated in state, federal, or privately operated detention centers" -dc/b3nmcj3w1lhed,the number of students in middle school who identify as multiracial is increasing;the racial makeup of middle schools is becoming more diverse;more and more students in middle school are coming from mixed-race families;the percentage of students in middle school who identify as multiracial is on the rise -dc/b4k66whfezer7,asians who are fluent in english;asians who are proficient in english;asian people who are fluent in english;people of asian descent who are native english speakers -dc/b4lvhh3skn2p8,how much do workers in privately owned office supplies and stationery stores earn per year?;what are the annual wages of workers in privately owned office supplies and stationery stores?;what is the average annual salary of workers in privately owned office supplies and stationery stores?;what is the typical annual salary of workers in privately owned office supplies and stationery stores? -dc/b6h698m2vmdcc,the percentage of white and non-hispanic students in primary school;the number of white and non-hispanic students in primary school;the proportion of white and non-hispanic students in primary school;the share of white and non-hispanic students in primary school -dc/b6m8vf5yqlcr2,american indian or alaska native men who have lost their wives;american indian or alaska native widowers;american indian or alaska native men who are bereaved of their wives;men who are american indian or alaska native and are widowers -dc/b74sg6px9mw25, -dc/b9plt3q5k6gyb,"how many people in natural resources, construction, and maintenance occupations drive cars, trucks, or vans?;what is the number of people in natural resources, construction, and maintenance occupations who drive cars, trucks, or vans?;what percentage of people in natural resources, construction, and maintenance occupations drive cars, trucks, or vans?;what is the proportion of people in natural resources, construction, and maintenance occupations who drive cars, trucks, or vans?" -dc/bb2jpneq7n71f,people who were born in other countries and speak other languages -dc/bc2xs21yqssff,"the number of black or african american people who are 16 years or older, are civilians, are employed, and are in the labor force;the number of black or african american people who are of working age, are not in the armed forces, are currently employed, and are actively seeking employment;the number of black or african american people who are of working age, are not in the military, have a job, and are available for work;the number of black or african american people who are of working age, are not in the military, are currently employed, and are willing to work" -dc/bdeb78d09xt0f,married hispanic women;hispanic women who are married;hispanic married women;unseparated hispanic women -dc/bf85zc6wypd2h,the number of white students in primary school;the percentage of white students in primary school;the proportion of white students in primary school;the share of white students in primary school -dc/bfvrlp1kfypsb,divorced men of other races;men of other races who are divorced;men who are divorced and are of other races;men of other races who have been divorced -dc/bg08bb0z564gh,"the number of deaths of white females aged 1 year or less caused by congenital malformations, deformations and chromosomal abnormalities;the number of white female deaths aged 1 year or less caused by chromosomal abnormalities;the number of white female deaths aged 1 year or less caused by congenital anomalies;the number of white female deaths aged 1 year or less caused by genetic abnormalities" -dc/bhc16vntggjyd,"how many people use taxicabs, motorcycles, and bicycles in military occupations?;what is the number of people who use taxicabs, motorcycles, and bicycles in military occupations?;what is the population of people who use taxicabs, motorcycles, and bicycles in military occupations?;how many people in military occupations use taxicabs, motorcycles, and bicycles?" -dc/bqbxc8gc6tge4, -dc/bqy52h7y4nq34,white people who have attended college or received an associate degree;the percentage of white people in the us who have some college or an associate degree -dc/bre4whrdn7pt7,the percentage of the workforce employed in service occupations;the proportion of the population working in service jobs;the proportion of workers in the service industry;the number of people who work in service jobs -dc/bsln6vyt4ked8, -dc/bzb64xknj90x,american indian or alaska native students in grade 7;american indian or alaska native students in the seventh grade;american indian or alaska native students who are in the seventh grade;american indian or alaska native students who are enrolled in the seventh grade -dc/c17kzp0zrfkq9, -dc/c2nl10sz5wmw3,the number of white students enrolled in first grade;the percentage of white students enrolled in first grade;the proportion of white students enrolled in first grade;the white student population in first grade -dc/c53jk16c4g1r1, -dc/c55jsq158z4d9,asian male community -dc/c57vzg7l74577,native hawaiian or other pacific islander students in middle school;the number of native hawaiian or other pacific islander students in middle school;the percentage of native hawaiian or other pacific islander students in middle school;the proportion of native hawaiian or other pacific islander students in middle school -dc/c684e489pk3t7, -dc/c6n2z7vh9sy31,what percentage of kindergarteners are from other races?;what is the percentage of kindergarteners who are from minority groups?;what is the percentage of kindergarteners who are not of the majority race?;students of other races enrolled in kindergarten -dc/c6wtfpgdccdkb,american indian or alaska native men who work full-time;full-time working american indian or alaska native men;men who are american indian or alaska native and work full-time;american indian or alaska native men who are employed full-time -dc/c70q24p6xgk33, -dc/c75qlm98pmcb2,number of white and non-hispanic students in middle school;percentage of white and non-hispanic students in middle school;proportion of white and non-hispanic students in middle school;share of white and non-hispanic students in middle school -dc/c7dc1t4k7lej4,hispanic men who are not working full-time hours;hispanic men who are not working full-time schedules -dc/c8e1pl3hkw2t5,the percentage of multiracial females who have graduated from high school or obtained an equivalency degree;the proportion of multiracial women who have completed high school or its equivalent;the share of multiracial females who have a high school education;the percentage of multiracial females who are high school graduates -dc/c9mgg82fd5vs8,the average income of men with graduate or professional degrees;the amount of money that men with graduate or professional degrees typically make;the typical salary of men with graduate or professional degrees;the middle income of men with graduate or professional degrees -dc/cb1jtf8j55xx9,unsentenced male prisoners by jurisdiction;number of unsentenced male inmates by jurisdiction -dc/cc71n5d28t8m6,the number of people living in the united states between the vietnam war and the korean war;the population of the united states during the vietnam war and the korean war;the number of people in the united states during the vietnam war and the korean war;the population of the us between the vietnam war and the korean war -dc/cc8wk2n0ywd9,high school enrollment of hispanics;hispanics in high school;the number of hispanics enrolled in high school;the percentage of hispanics enrolled in high school -dc/ce5kxveswe148,number of hispanic men who have lost their wives;number of hispanic widowers;hispanic population of widowers;hispanic male widowers -dc/cgsr3vgj7xv33,white students enrolled in grade 3;the number of white students enrolled in grade 3;the percentage of white students enrolled in grade 3;the proportion of white students enrolled in grade 3 -dc/ck1emtds61j27,hispanic men in prison;hispanic men in jail;hispanic men in the criminal justice system;hispanic men who are incarcerated -dc/ckx7vgvvyfc64,"number of deaths in the white male population aged 1 year or less due to congenital malformations, deformations, and chromosomal abnormalities;number of white male deaths aged 1 year or less due to chromosomal abnormalities;number of white male deaths aged 1 year or less due to congenital anomalies;the number of white male deaths due to congenital malformations, deformations, and chromosomal abnormalities in the first year of life" -dc/cl02rz75lby1c,native hawaiian or other pacific islander students enrolled in first grade;number of native hawaiian or other pacific islander students enrolled in first grade;number of native hawaiian or other pacific islander students enrolled in grade 1;native hawaiian or other pacific islander student enrollment in grade 1 -dc/cl44jeh79x6e7,american indian or alaska native men who have never been married;american indian or alaska native unmarried men;american indian or alaska native men who are single;american indian or alaska native men who are not married -dc/cm6c4ldwcvq7g,the percentage of asian females who have not completed high school;the proportion of asian females who have not completed high school;the share of asian females who have not completed high school;the proportion of asian females who have not graduated from high school -dc/cmspqtw32e039,8th graders who are native hawaiian or other pacific islander;8th graders from hawaii or other pacific islands;8th graders who identify as native hawaiian or other pacific islander;8th graders who are of native hawaiian or other pacific islander descent -dc/cpe0qnv36m8z,high school-educated white males;white males who graduated from high school;white males who completed high school;white males who are high school graduates -dc/cqlt4r8lh54bf,the percentage of native hawaiian or other pacific islander males who are divorced;the number of native hawaiian or other pacific islander males who are divorced;the proportion of native hawaiian or other pacific islander males who are divorced;the rate of divorce among native hawaiian or other pacific islander males -dc/cs8fvwkmpmlpg,"the number of people who worked at home, in production, transportation, and material moving occupations;the number of people who were employed in home-based, production, transportation, and material moving occupations;the number of people who had jobs in home-based, production, transportation, and material moving occupations;the number of people who worked in home-based, production, transportation, and material moving industries" -dc/cyks77wkz3796, -dc/cyl7pk7c07rv2,hispanic males with low educational attainment;hispanic males with less than a high school diploma;hispanic men with low educational attainment;hispanic men with less than a high school diploma -dc/czlchgc8fl935,number of english-fluent students in college or university student housing;share of english-fluent students in college or university student housing;prevalence of english-fluent students in college or university student housing;number of english-fluent students in college or university dorms -dc/d0n993ddpgxr3,the number of white women who are divorced;the percentage of white women who are divorced;the proportion of white women who are divorced;the share of white women who are divorced -dc/d2ct8qmvcct81,"male, white alone with some college or associates degree;some college or associates degree, male, white alone;some college or associates degree, white male;male, white, some college or associates degree" -dc/d3ess9ketycc6,"white males who have graduated from high school, including those who have earned an equivalency diploma;white men who graduated from high school, including those with equivalency degrees;white, non-hispanic males who have graduated from high school or obtained an equivalency degree;white, non-hispanic males who have completed a high school equivalency program" -dc/d5g4tqgqlx6s2,the number of multiracial children enrolled in nursery school and preschool has increased;more and more multiracial children are attending nursery school and preschool;the multiracial population in nursery school and preschool is growing;the number of multiracial children in nursery school and preschool is on the rise -dc/d66p8jy0397s5, -dc/d9gzy7g1sl1wd,the percentage of african americans who only speak english;the proportion of african americans who are monolingual english speakers;the number of african americans who do not speak any other language;the number of african americans who are english-only speakers -dc/dc2zeq33ew2p2,american indian or alaska native english speakers who were born in another country;foreign-born american indian or alaska native english speakers;english-speaking american indian or alaska native immigrants;american indian or alaska native english speakers who were not born in the united states -dc/dc9v9h3q8l8n7,"white, non-hispanic male with some college or associate's degree;white, non-hispanic male with some college experience;white, non-hispanic male with some college training;white, non-hispanic males with some college or associate's degree" -dc/dd1ngpwxrfq8c, -dc/deh75ckkkc8w3,number of asian students enrolled in 6th grade;number of asian children enrolled in 6th grade;proportion of asian students in 6th grade;proportion of asian children in 6th grade -dc/deswzr13kt5ld,number of other race males with less than a high school diploma;number of other race males who do not have a high school diploma;number of male people of other races who do not have a high school diploma;number of male people of other races who have not earned a high school diploma -dc/dfjxbxwz1ss2,population of multiracial females with a high school ged or alternative;multiracial females who have a high school ged or alternative;females who identify as multiracial and have a high school ged or alternative -dc/dhz3rb9pbvnb,multiracial people who speak english poorly -dc/dj7cvhr91sff5, -dc/dj7khl7q78412,"the number of people who carpool in cars, trucks, or vans is highest in the production, transportation, and material moving occupations;carpooling is most common in the production, transportation, and material moving occupations;the production, transportation, and material moving occupations have the highest rate of carpooling;more people in the production, transportation, and material moving occupations carpool than in any other occupation" -dc/dk783byzcbpm3,white women who work part-time;white female employees who work part-time -dc/dlp5xgcwee7yb,gulf war veterans;gulf war-era veterans;veterans of the persian gulf war;veterans of the gulf war -dc/dmh46kzqymc46,"white male high school graduates or ged holders;white males who have completed high school or obtained a ged;white males who have graduated from high school or earned a ged;the population of white males with a high school diploma, ged, or equivalent" -dc/dn2h9yfcgbkg2,number of people in service occupations who worked from home;number of people working from home in service occupations;number of people in service occupations who work from home;percentage of people in service occupations who work from home -dc/drvcnjld04b06,population of divorced people who were born in the state they currently reside in;number of divorced people who were born in the state they currently live in;percentage of divorced people who were born in the state they currently live in;proportion of divorced people who were born in the state they currently live in -dc/dtrqvdzyqzek7,number of white and non-hispanic students enrolled in grade 1;number of white and non-hispanic children enrolled in grade 1;number of white and non-hispanic kids enrolled in grade 1;number of white and non-hispanic pupils enrolled in grade 1 -dc/dxq7vxxwvp7pg,the number of american indian or alaska native men who are in prison or jail;the percentage of american indian or alaska native men who are in prison or jail;the number of american indian or alaska native men who have been incarcerated at some point in their lives;the percentage of american indian or alaska native men who have been incarcerated at some point in their lives -dc/dxsxcw009pdm4,native hawaiian or other pacific islander students in high school;the number of native hawaiian or other pacific islander students in high school;the proportion of native hawaiian or other pacific islander students in high school;the percentage of native hawaiian or other pacific islander students in high school -dc/dyhxtqe2pxhl5,people who were born in another country and do not have an income;foreign-born individuals with no income;foreign-born people with no income;people who were born in another country and are unemployed -dc/dzfdgrtcv5h7,white non-hispanic students in high school;high school students who are white and non-hispanic;the number of white non-hispanic students in high school;the percentage of white non-hispanic students in high school -dc/e27c5t4tbplg,"other ways to say ""population production taxicab motorcycle bicycle or other means of transportation"" include:" -dc/e2szvml8jkld8,the number of african american students in middle school;the percentage of african american students in middle school;the proportion of african american students in middle school;the demographics of african american students in middle school -dc/e3jblh1b616b5,people who are in jail but haven't been convicted of a crime;people who are in prison but haven't been sentenced;people who are in pretrial detention;people who are in jail or prison without having been convicted of a crime -dc/e4jl4qe9xc4n9,people who speak other indo-european languages and have poor english skills;people who speak other indo-european languages poorly;native speakers of other indo-european languages who speak english poorly;people who speak other indo-european languages as a second language poorly -dc/e4y4hqq6mjfsh,the number of african american students in elementary schools;the percentage of african american students in primary education;the proportion of african american students in k-5 schools;the number of african american children in primary school -dc/e718gzyclkcq8, -dc/e783knv4pn079,number of people alive during the vietnam war and gulf war from august 1990 to august 2001;number of people living during the vietnam war and gulf war from august 1990 to august 2001;population during the vietnam war and gulf war from august 1990 to august 2001;total number of people alive during the vietnam war and gulf war from august 1990 to august 2001 -dc/e7h67vn5w4g13,the number of african american men with some college education or an associate's degree;the percentage of african american men with some college education or an associate's degree;the proportion of african american men with some college education or an associate's degree;the share of african american men with some college education or an associate's degree -dc/e9gftzl2hm8h9,the amount of time spent traveling between home and work;the amount of time spent commuting;the travel time between home and work;the amount of time it takes to travel from home to work and back again -dc/ebtrk99chtsh7, -dc/ec13z1eh1d5d8,veterans who are at least 18 years old and have income;veterans who are 18 or older and earn money;veterans who are adults and have a source of income;veterans who are of legal age and have a job -dc/edbzbwf3ychr4,women married to absent spouses;female population with absent husbands -dc/edfjy64gmxf6f,"people who were born in another country and speak english well, as well as one or more asian or pacific island languages;population of people born outside the us who speak asian and pacific island languages and english well;foreign-born people who speak asian and pacific island languages and english well" -dc/edpnrsy7glfzf, -dc/eehyt7ymt7hmg,"a single, never-married male native hawaiian or other pacific islander;male, never married, native hawaiian or other pacific islander alone" -dc/eergc1rzgq61b, -dc/eg6rrdr1tkf76,the percentage of asian females with a bachelor's degree or higher;the number of asian females with a bachelor's degree or higher;the proportion of asian females with a bachelor's degree or higher;the share of asian females with a bachelor's degree or higher -dc/ehqmj8bfhrpld,american indian or alaska native men who graduated from high school or have an equivalent level of education;american indian or alaska native men who have a high school diploma or equivalent;american indian or alaska native males who have graduated from high school or have a similar level of education;american indian or alaska native men who have completed high school or have a comparable level of education -dc/ej9175h5g52n4,the number of african americans enrolled in grade 10;african american students in grade 10;the percentage of african americans enrolled in grade 10;african americans enrolled in the tenth grade -dc/ejrrn7r565619,"african american male deaths aged 1 year and below are caused by certain conditions originating in the perinatal period;african american male deaths aged 1 year and below are caused by certain conditions that begin during pregnancy or childbirth;african american male deaths aged 1 year and below are caused by certain conditions that begin before or during birth;african american male deaths aged 1 year and below are caused by certain conditions that begin during pregnancy, childbirth, or the first year of life" -dc/ekyc06n24txh2,"white, non-hispanic population;non-hispanic white population;white population, non-hispanic;population of white people who are not hispanic" -dc/env3140jqssg8,what is the percentage of students in primary school who are not of the majority race?;what is the racial makeup of primary school students?;what percentage of primary school students are from minority groups?;what is the diversity of primary school students? -dc/ep052e5d1p2t4, -dc/epw58ne8mytn5,the percentage of females of other races with college degrees;the number of females of other races with college degrees;the proportion of females of other races with college degrees;the share of females of other races with college degrees -dc/epw963xktppx9,students of other races enrolled in grade 8;the number of students of other races enrolled in grade 8;the percentage of students of other races enrolled in grade 8;the proportion of students of other races enrolled in grade 8 -dc/ewchtlvjlljk5, -dc/ex6e9d32q7n55,the income that is in the exact middle of the range of incomes of employed males aged 16 years or older;the typical income of employed males aged 16 or older;the typical income of employed men aged 16 or older;the average income of employed men aged 16 or older -dc/exprpnfdb8sw2,men who are widowed and have multiple racial backgrounds;population of widowed males who identify as multiracial;number of multiracial widowed males;men who are widowed and multiracial -dc/f0drj0vx374yc,the percentage of american indian or alaska native women who are married;the number of american indian or alaska native women who are married;the proportion of american indian or alaska native women who are married;the share of american indian or alaska native women who are married -dc/f1h8l5d76q239,the percentage of multiracial women who have never married;the count of multiracial women who are not currently married;female population who identifies as multiracial and has never married;population of women who are multiracial and have never been married -dc/f1mn2c36kz0mc,"population of students enrolled in grades 10 who are not of any of the listed races;population of students enrolled in grades 10 who identify as ""other race"";population of students enrolled in grades 10 who are of mixed race or ethnicity;population of students enrolled in grades 10 who do not identify with any of the listed races" -dc/f2fq3grswrtbh,number of students enrolled in grade 12 who identify as some other race alone;population of students enrolled in grade 12 who identify as some other race alone;percentage of students enrolled in grade 12 who identify as some other race alone;students enrolled in grade 12 who identify as some other race alone -dc/f8qh4hp1830dg,spanish speakers who don't speak english well;spanish-speaking people who don't speak english well;spanish natives who don't speak english well;people who speak spanish as their first language and don't speak english well -dc/fdm5mx10w8r5b,the number of native hawaiian or other pacific islander men who worked full time;the number of native hawaiian or other pacific islander males who worked full-time;the native hawaiian or other pacific islander male population who worked full-time;the native hawaiian or other pacific islander male population that worked full-time -dc/fgt7thnws9vx9,"the number of people who walk to work in production, transportation, and material moving occupations;the percentage of people who walk to work in production, transportation, and material moving occupations;the proportion of people who walk to work in production, transportation, and material moving occupations;the share of people who walk to work in production, transportation, and material moving occupations" -dc/fh4td3znm3l4g,number of american indian or alaska native students in high school;percentage of american indian or alaska native students in high school;proportion of american indian or alaska native students in high school;share of american indian or alaska native students in high school -dc/fkn44bzm03t01,number of native hawaiian or other pacific islander females who are married and not separated;native hawaiian or other pacific islander female population who are married and not separated;percentage of native hawaiian or other pacific islander females who are married and not separated;share of native hawaiian or other pacific islander females who are married and not separated -dc/fkvnj4rlrs84f,the number of asian males who have some college or associate's degrees;the percentage of asian males who have some college or associate's degrees;the proportion of asian males who have some college or associate's degrees;the share of asian males who have some college or associate's degrees -dc/fmx7fkrpd3jl2,graduates who are native hawaiian or other pacific islander;graduates of native hawaiian or other pacific islander descent;graduates who identify as native hawaiian or other pacific islander;graduates who are members of native hawaiian or other pacific islander communities -dc/fpkjrc19wfr82,number of people enrolled in grade 6 who are white and not hispanic or latino;number of white students enrolled in grade 6 who are not hispanic or latino;number of students in grade 6 who are white and not hispanic or latino;number of white students in grade 6 who are not hispanic or latino -dc/fs27m9j4vpvc7,"american indian or alaska native incarceration rate by jurisdiction;rate of incarceration of american indians and alaska natives by jurisdiction;percentage of american indians and alaska natives incarcerated by jurisdiction;number of american indians and alaska natives incarcerated per 100,000 people by jurisdiction" -dc/fwcmh8cxdydz1,what percentage of nursing home residents speak english fluently?;what is the proportion of nursing home residents who are fluent in english?;what is the percentage of nursing home residents who speak english as their first language?;what is the proportion of nursing home residents who are native english speakers? -dc/fwpmf9tfjv982,people who speak fluent english and live in group quarters;people who speak english fluently and live in institutional group quarters;people who speak english fluently and live in group housing;people who speak english fluently and live in group living -dc/fwwm465nrweyb,the number of people enrolled in grade 8 who are white alone and not hispanic or latino;the population of white alone not hispanic or latino students enrolled in grade 8;the number of white alone not hispanic or latino students in grade 8;the number of students in grade 8 who are white alone and not hispanic or latino -dc/g4fthg3t3y5td,the number of asian students in middle school;the proportion of asian students in middle school;the percentage of asian students in middle school;the demographics of asian students in middle school -dc/g7yg16710b0x8,"male non-us citizens incarcerated in state, federal, and private prisons without a sentence;unsentenced male non-us citizens incarcerated in state, federal, and private prisons;male non-us citizens incarcerated in state, federal, and private prisons without being sentenced;male non-us citizens in state, federal, and private prisons who have not been sentenced" -dc/g8537zqf45wl3,high school enrollment of multiracial students;number of multiracial students enrolled in high school;percentage of multiracial students enrolled in high school;proportion of multiracial students enrolled in high school -dc/gb0b3cwxyfsh9,number of incarcerated females who have died;number of deaths among incarcerated females -dc/gcsgte71jdvl2,hispanic students enrolled in 11th grade;the hispanic population enrolled in 11th grade -dc/gdce2gd8jpb96,women who work full-time and earn money;women who have a full-time job and get paid;women who work full-time and have a salary;women who work full-time and receive a wage -dc/gf663n33ejqnh,the unmarried african american male demographic;number of unmarried african american men;the number of unmarried african american men;the percentage of african american men who are unmarried -dc/gh535f95wn3g6,female widows of other races;widows of other races;women of other races who are widows;women of other races who have lost their husbands -dc/ghqs0gz0cvgx1,"number of black or african american students enrolled in the third grade, as of the most recent data available;the number of black or african american students who are enrolled in school and are in the third grade" -dc/gpwcf2wkszh63,population of married women who are of multiple races;number of married women who identify as more than one race;percentage of married women who are multiracial;population of married women who identify as multiracial -dc/gr3zem8shyhbf,white children in kindergarten;white kids in kindergarten;white students in kindergarten;white pupils in kindergarten -dc/gv6kl8j829gz8,"the number of people who are 16 years or older, civilians, employed, and in the labor force who identify as two or more races;the number of people who are 16 years or older, civilians, employed, and in the labor force who are multiracial;the number of people who are 16 years or older, civilians, employed, and in the labor force who are biracial;the number of people who are 16 years or older, civilian, employed, and in the labor force and who identify as two or more races" -dc/gvnh5cpl9h1rf,1 population by income and foreign born status;3 population by income and country of birth;4 population by income and immigrant status;population by income and foreign born status -dc/gyr009wv5rm98,number of african american men who are married and not separated;percentage of african american men who are married and not separated;share of african american men who are married and not separated;proportion of african american men who are married and not separated -dc/h024xx4dcw5x2, -dc/h0lc69wwsbhy5,population of students enrolled in grade 4 who identify as some other race;number of students enrolled in grade 4 who identify as some other race;percentage of students enrolled in grade 4 who identify as some other race;proportion of students enrolled in grade 4 who identify as some other race -dc/h5cmpv789d4h1,"the midpoint of the income range for men who have not graduated from high school;typical income of males with less than a high school diploma;the amount of money that half of all men without a high school diploma make, and half make less;the amount of money that the average man with less than a high school diploma makes" -dc/h65xnebc15y0g, -dc/h6bfsj9vgzg18,number of african american men enrolled in college undergraduate programs;number of african american male college undergraduates;african american male undergraduate enrollment in college;african american male college attendance -dc/h7dltj3mrq778,11th grade white students;white students in 11th grade;11th grade students who are white;students in 11th grade who are white -dc/h8hnx87sjgvhf,american indian or alaska native students in 11th grade;american indian or alaska native 11th graders;11th grade american indian or alaska native students;11th grade american indian or alaska natives -dc/h8llkcyexqn05,the percentage of native hawaiian or other pacific islander females who worked full time;the number of native hawaiian or other pacific islander females who worked full time;the proportion of native hawaiian or other pacific islander females who worked full time;the share of native hawaiian or other pacific islander females who worked full time -dc/h8p2m5rx43j3b,the percentage of white students in graduate or professional schools;the number of white students in graduate or professional schools;the proportion of white students in graduate or professional schools;the share of white students in graduate or professional schools -dc/hbhg5q8n0g397,native hawaiian or other pacific islander people born outside the united states who speak languages other than english;people born outside the united states who are native hawaiian or other pacific islanders and speak languages other than english;native hawaiian or other pacific islander immigrants who speak languages other than english;people who were born outside the united states and are native hawaiian or other pacific islanders and speak languages other than english -dc/hbkh95kc7pkb6,how many people use public transportation other than taxis;public transportation users excluding taxis;number of public transportation users excluding taxis;public transportation ridership excluding taxis -dc/hbqhxpwsdvyj8,spanish-speaking immigrants who speak english fluently;spanish-speaking foreign-born population that speaks fluent english;percent of foreign-born spanish speakers who are fluent in english;the percentage of spanish-speaking foreign-born people who speak fluent english -dc/hcte4krdb6g3h,asian students in grade 4;the number of asians enrolled in grade 4;the percentage of asians enrolled in grade 4;the proportion of asians enrolled in grade 4 -dc/hep54bd4vbysh,"the average income of women with some college or an associate's degree;the amount of money that women with some college or an associate's degree typically earn;the middle value of the incomes of women with some college or an associate's degree;the amount of money that half of women with some college or an associate's degree earn more than, and half earn less than" -dc/hg63vjs5wes3b, -dc/hj5tsyykynhxc, -dc/hm1dfmygtttn6,"the number of white, non-hispanic males with a bachelor's degree or higher;the percentage of white, non-hispanic males with a bachelor's degree or higher;the proportion of white, non-hispanic males with a bachelor's degree or higher;the share of white, non-hispanic males with a bachelor's degree or higher" -dc/hpzt7l9dxswp7,population of students of other races enrolled in grade 11;number of students of other races enrolled in grade 11;percentage of students of other races enrolled in grade 11;students of other races enrolled in grade 11 -dc/hq6fekrv02763,number of african american students enrolled in grade 2;how many african american students are enrolled in grade 2;african american student enrollment in grade 2;african american students enrolled in grade 2 -dc/hs4jcbp4stmp2,hispanic people who are bilingual or multilingual;hispanic people who are multilingual and speak english and another language and were born outside of the united states;hispanics who are multilingual in english and other languages -dc/hxsdmw575en24,people who are incarcerated;prisoners who work;people who are locked up and have jobs;convicts who have jobs -dc/hyfn2tlyz48lb,people of multiple races with bachelor's degrees or higher;people who identify as multiracial and have a bachelor's degree or higher;the percentage of people who identify as multiracial and have a bachelor's degree or higher;the number of people who identify as multiracial and have a bachelor's degree or higher -dc/hz8zd2scxctgf,native hawaiians or other pacific islanders who speak english moderately well;native hawaiians or other pacific islanders who are somewhat fluent in english;native hawaiians or other pacific islanders who have a moderate level of english proficiency;native hawaiians or other pacific islanders who have a basic understanding of english -dc/j1g7s3jy6ppnf,native white non-hispanics who speak languages other than english;white non-hispanics who are native speakers of languages other than english;native white non-hispanics who are bilingual or multilingual;white non-hispanics who speak a language other than english at home -dc/j4jtrsnn9n2dc,the number of people alive during the gulf war compared to the vietnam war;the population during the gulf war versus the vietnam war;the gulf war vs the vietnam war population;the number of people alive in the gulf war and vietnam war eras -dc/j7lkt2ww5qsn5,"number of people working in public transportation excluding taxicab, production, and material moving occupations;public transportation workers excluding taxicab, production, and material moving occupations;number of public transportation workers excluding taxicab, production, and material moving occupations;public transportation workforce excluding taxicab, production, and material moving occupations" -dc/j7pej9wer7lkd,"car, truck, or van commuters in natural resources, construction, and maintenance occupations;natural resources, construction, and maintenance workers who carpool in cars, trucks, or vans;workers in natural resources, construction, and maintenance occupations who share rides in cars, trucks, or vans;workers in natural resources, construction, and maintenance occupations who travel together in cars, trucks, or vans" -dc/j84rwbdl9knx5,african americans who were born in another country and do not speak english well;african americans who are bilingual;african americans who are multilingual;african americans who were born in another country and do not speak english fluently -dc/j8708n21vjn7g,white non-hispanic students enrolled in grade 3;white non-hispanic students in grade 3;white students who are not hispanic and are enrolled in grade 3;third-grade students who are not hispanic -dc/j9s1qmrf3yxy8,white non-hispanic women;non-hispanic white women;white women of non-hispanic origin -dc/jbj3e09w9hsl8,8th graders in asia;8th grade students in asia;students in 8th grade in asia;8th grade students from asia -dc/jbv3zc0ezvcyc,population of students enrolled in school who identify as other race;number of students enrolled in school who identify as other race;percentage of students enrolled in school who identify as other race;students enrolled in school who identify as other race -dc/jceld0k7ysbw3, -dc/jh0nks36n1jc1,number of female prisoners executed in the united states;number of women executed in the us;female prisoners executed by the us;the number of incarcerated women who have been executed by the state -dc/jhjdplbeg26k1,the number of students in primary schools who identify as multiracial;the percentage of students in primary schools who identify as multiracial;the proportion of students in primary schools who identify as multiracial;the diversity of students in primary schools -dc/jj7yd7v3pk3s6,men of multiple races with bachelor's degrees or higher;men who identify as multiracial and have a bachelor's degree or higher;men who are multiracial and have completed a bachelor's degree or higher;men who are multiracial and have bachelor's degrees or higher -dc/jk91lheqelvm3, -dc/jnr548vs7cnxc,asian men with bachelor's degrees or higher;asian men who have completed a bachelor's degree or higher;asian men who have a bachelor's degree or higher;asian men with a bachelor's degree or higher -dc/jszfr5wd4f7pb,"the number of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the percentage of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the proportion of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the share of people who drive cars, trucks, or vans in management, business, science, and arts occupations" -dc/jte92xq8qsgtd,number of deaths due to intentional self-harm (suicide) among incarcerated people;number of suicides among incarcerated people;number of people who died by suicide while incarcerated;number of incarcerated people who died by suicide -dc/jtf63bh66k41g,"number of deaths from assault (homicide) and incarceration, by jurisdiction;number of people who died from assault (homicide) or were incarcerated, by jurisdiction;number of deaths and incarcerations due to assault (homicide), by jurisdiction;number of people who died or were incarcerated due to assault (homicide), by jurisdiction" -dc/jvhsg0tbsk0d4,the number of asian women who are divorced;the percentage of asian women who are divorced;the proportion of asian women who are divorced;the prevalence of divorce among asian women -dc/jw8sd8kncejy5,the number of unmarried white non-hispanic males;the population of unmarried white non-hispanic males;the unmarried white non-hispanic male demographic;the unmarried white non-hispanic male community -dc/jwehv4hfjnsq1,the median number of male citizens with bachelor's degrees -dc/jxd329x7k27fb,white people in the united states;white people in the us -dc/jxsx1rb4xg84f,the percentage of people in sales and office occupations who use car trucks;the number of people in sales and office occupations who use car trucks;the proportion of people in sales and office occupations who use car trucks;the share of people in sales and office occupations who use car trucks -dc/jyrqxpx2eyxl8,female population of some other race;female population of some other racial group;female population of some other ethnic group -dc/k0vhk7fmcjteg,african americans who are native english speakers;african americans who speak english fluently;african americans who are well-spoken;african americans who are well-spoken in english -dc/k23qwx05c5de3,the number of unmarried asian men;the unmarried asian male population;the number of unmarried asian males;the percentage of asian males who are unmarried -dc/k258ge5kec1tb,"the number of hispanic males who have graduated from high school, or have an equivalent credential, is included in the population;the hispanic male population includes those who have graduated from high school, or have an equivalent credential;the hispanic male population includes those who have completed high school, or have an equivalent credential;the hispanic male population includes those who have completed a high school equivalency program, or have an equivalent credential" -dc/k33ngtzpqxql6,"number of people who drive cars, trucks, or vans in service occupations;number of people in service occupations who drive cars, trucks, or vans;number of people who drive cars, trucks, or vans for work;number of people who drive cars, trucks, or vans as part of their job" -dc/k3fq8hdvn7z4g,english-speaking white immigrants;white english speakers who were born in another country;english-speaking people of white descent who were born outside of the united states;people of white descent who speak english as a first language and were born outside of the us -dc/k7dlecx0l0zn8,how many people lived during the gulf war in september 2001?;what was the population of the world during the gulf war in september 2001?;what was the population of the united states during the gulf war in september 2001?;how many people were alive during the gulf war in september 2001? -dc/k7gzvt7h4p1t2,number of american indian or alaska native students enrolled in grades 5;total number of american indian or alaska native students in grades 5;population of american indian or alaska native students in grades 5;american indian or alaska native student population in grades 5 -dc/k99qckp1rqv01,labor force participation rate of other civilian races aged 16 years or older;employment-to-population ratio of other civilian races aged 16 years or older;percentage of other civilian races aged 16 years or older in the labor force;percentage of other civilian races aged 16 years or older who are employed -dc/kbkjzlgr185j4,men who work full-time and earn money;men who are employed full-time and have an income;men who work full-time and are paid;men who are in full-time employment and receive a salary -dc/kck513ctbmwcf,native hawaiian or other pacific islander women who are widowed;women of native hawaiian or other pacific islander descent who are widowed;widowed native hawaiian or other pacific islander females;native hawaiian or other pacific islander females who have lost their husbands -dc/kebe2wtgsej37,how much money do women make on average in full-time jobs?;what's the average salary for women who work full-time?;what's the median income for female full-time workers?;what's the typical income for women who work full-time? -dc/klby6rjw2xvp3,hispanic women who are widowed;hispanic widows;the population of hispanic women who are widowed;the number of hispanic women who are widowed -dc/km8en9ep7bwh6,asian students in school;asian students enrolled in school;the number of asian students enrolled in school;the percentage of asian students enrolled in school -dc/knzv36s2fpzeb,male population of american indians or alaska natives -dc/kp4mfrz2432hc,the percentage of african american women who have graduated from high school or obtained an equivalency degree;the number of african american women who have completed high school or an equivalent program;the rate of high school graduation among african american women;the number of african american women who have completed high school or equivalent -dc/kpcfmb6lp3zpd,native hawaiian or other pacific islander women with some college or associate's degrees;native hawaiian or other pacific islander women who have some college or associate's degrees;native hawaiian or other pacific islander women who have some college education;native hawaiian or other pacific islander women who have some college experience -dc/krcqys6j3lcrf,african american women who are widowed;the population of african american women who are widowed;the number of african american women who are widowed;the percentage of african american women who are widowed -dc/krq9b63v51kmh, -dc/kt900ezddrf79,"the number of people who commute by car, truck, or van in sales and office occupations;the percentage of people who commute by car, truck, or van in sales and office occupations;the proportion of people who commute by car, truck, or van in sales and office occupations;the share of people who commute by car, truck, or van in sales and office occupations" -dc/ktf5098lxb8sc,black and native american people;african americans and native americans;people of african descent and native american descent;black and indigenous people -dc/ktkbjq2bkp8xc,black male students in pre-kindergarten;black boys in pre-k;african american male students in pre-kindergarten;black male pre-k students -dc/kv595wxh7wmy2,hispanics who only speak english;the hispanic population that speaks only english -dc/kxzpmb82rnn12,number of asian students enrolled in grade 3;number of asian children in grade 3;number of asian kids in grade 3;number of asian pupils in grade 3 -dc/ky1hbybytyzq,the number of american indian or alaska native women who are divorced;the percentage of american indian or alaska native women who are divorced;the proportion of american indian or alaska native women who are divorced;the american indian or alaska native female divorce rate -dc/kz9r60zp6s32b,graduates who identify as more than one race -dc/kzdnqrdxj4vw7,the percentage of american indian or alaska native males with a bachelor's degree or higher;the number of american indian or alaska native males with a bachelor's degree or higher;the proportion of american indian or alaska native males with a bachelor's degree or higher;the share of american indian or alaska native males with a bachelor's degree or higher -dc/l1zr0zx1yje61,the locals who don't speak english very well -dc/l2pbn6flhhmq, -dc/l8qmxymjkdn3,the number of asian men who are married;the percentage of asian men who are married;the proportion of asian men who are married;the married asian male demographic -dc/l8s2vy9jnbf9b,native english speakers of other races -dc/lex5l1z3xb019,white non-hispanic students enrolled in fourth grade;the number of white non-hispanic students enrolled in fourth grade;the percentage of white non-hispanic students enrolled in fourth grade;the proportion of white non-hispanic students enrolled in fourth grade -dc/lh2p6deyhh1w8,multiracial students enrolled in 12th grade;students with multiple racial identities enrolled in 12th grade;students who identify as multiracial enrolled in 12th grade;students who are multiracial enrolled in 12th grade -dc/lj7nby2lrc6c5,number of men not working full-time and earning money -dc/ljrjkp31x9ny2,people who were sentenced to 2 years or more in prison and then released;people who were incarcerated for 2 years or more and then released;people who were in prison for 2 years or more and then released;people who were serving a sentence of 2 years or more and then released -dc/lk0kmfe59te,male high school graduates who are not hispanic or latino;high school graduates who are white and not hispanic or latino -dc/lk9fd4v63ke94,male prisoners of mixed race;multiracial men in prison;men of mixed race who are incarcerated;incarcerated men who are of mixed race -dc/lkfgpz9cz0x93,number of white non-hispanic students enrolled in grade 10;white non-hispanic students in grade 10;white non-hispanic students enrolled in the tenth grade;the number of white non-hispanic students in the tenth grade -dc/ll54s8y2d720d,"the number of people alive during the korean war, the vietnam war, and world war ii;the population during the korean war, the vietnam war, and world war ii;the number of people who lived during the korean war, the vietnam war, and world war ii;the population of people who lived during the korean war, the vietnam war, and world war ii" -dc/lmz346hgpgl7b,native hawaiian or other pacific islander males who have completed high school or obtained a ged;native hawaiian or other pacific islander males who have graduated from high school or earned a ged;native hawaiian or other pacific islander males who have graduated from high school or obtained a ged;native hawaiian or other pacific islander males who are high school graduates or ged holders -dc/lnp5g90fwpct8,the number of incarcerated women;the female prison population;the incarcerated female population;women in jail -dc/lp45rhhvvsyz3,asian students in grade 10;the number of asian students in grade 10;the percentage of asian students in grade 10;the enrollment of asian students in grade 10 -dc/lv94fnc9rnzg7,african american students in first grade;first-grade students who are african american;african american students in the first grade;the number of african american students in first grade -dc/lyt8y97bbrkpc,the number of american indian or alaska native males with an associate's degree;the percentage of american indian or alaska native males with an associate's degree;the proportion of american indian or alaska native males with an associate's degree;the american indian or alaska native male population with an associate's degree -dc/m18kt4h10rhv9,9th grade hispanic enrollment;enrollment of hispanics in 9th grade;the number of hispanics enrolled in 9th grade;the percentage of hispanics enrolled in 9th grade -dc/m1g67e33zkdnc,men of multiple races who work full-time;full-time working men of multiple races;men of multiple races who work full-time hours;men of multiple races working full-time -dc/m54m06x6r5xm9,number of people who carpool in military-specific occupations;number of people who carpool to work in military-specific occupations;number of people who carpool in military-specific occupation industries;percentage of people who carpool in military-specific occupation industries -dc/m5ltqeg1src,unsentenced female prisoners;women who are incarcerated but have not been found guilty;women who are incarcerated but not yet sentenced;female prisoners who have not been sentenced -dc/m5wzmsxyngrh9,the number of hispanic women who are divorced;the percentage of hispanic women who are divorced;the proportion of hispanic women who are divorced;the prevalence of divorce among hispanic women -dc/m615rq99fwf2c,service workers who carpool;workers in the service industry who carpool;people who work in service jobs and carpool;service workers who share rides -dc/mbpfpyzw0r11b, -dc/mf0lyheydhfc1,the median income for civilians 18 years or older who are not veterans -dc/mfm3brd2b55jb,not all women of multiple races work full-time;there is a portion of the multiracial female population that does not work full-time;some women of multiple races do not work full-time;some multiracial women do not work full-time -dc/mgewrrcbsg5mc,american indian or alaska native students in 8th grade;the number of american indian or alaska native students in 8th grade;the population of american indian or alaska native students in 8th grade;the percentage of american indian or alaska native students in 8th grade -dc/mjmz36lytkxtb,foreign-born asians who speak languages other than english;asians who were born in other countries and speak languages other than english;asians who speak languages other than english as their first language;people born in asia who speak languages other than english -dc/mjqlm4q2efmvh,female prisoners who died of illness or natural causes;incarcerated women who died of illness or natural causes;women in prison who died of illness or natural causes;female inmates who died of illness or natural causes -dc/mkb700gmwjn2c,asian women who have graduated from high school or obtained a ged;asian females who have completed high school or obtained a ged;female asian high school graduates or ged holders;asian women who graduated from high school or earned a ged -dc/mpfq5ew1eycqc,the number of married women with present spouses;the number of women who are married and have a spouse present;population of married women with present spouses;number of married women with present spouses -dc/mq0vx8ky9nq7c,only english speakers in the native hawaiian or other pacific islander foreign-born population;the native hawaiian or other pacific islander foreign-born population who speak only english;the share of native hawaiian or other pacific islander immigrants who are english-only speakers -dc/mqxdr821c7kw3,the number of american indian or alaska native women who have some college or an associate's degree;the percentage of american indian or alaska native women who have some college or an associate's degree;the proportion of american indian or alaska native women who have some college or an associate's degree;the share of american indian or alaska native women who have some college or an associate's degree -dc/mr1f76pb6yq98,white people who are not enrolled in school;the number of white people who are not enrolled in school;the percentage of white people who are not enrolled in school;the proportion of white people who are not enrolled in school -dc/mwbmxs2q9zcgd,number of american indian or alaska native students enrolled in college undergraduate programs;proportion of american indian or alaska native students enrolled in college undergraduate programs;percentage of american indian or alaska native students enrolled in college undergraduate programs;american indian or alaska native student enrollment in college undergraduate programs -dc/mwvj0qeye94r4,the male population of some other race who are married;the number of married males of some other race;the percentage of males of some other race who are married;the number of married males of some other race as a percentage of the total male population of some other race -dc/mwvwsjyv2nqd9,the number of people aged 16 and over who are employed and working in the military;the percentage of people in the labor force who are employed in military-specific occupations;number of people 16 years or older who are employed and working in the labor force in military specific occupations;number of people 16 years or older who are employed and working in the military -dc/myd3m7cwvsn7g,population of divorced asian males;number of divorced asian men;percentage of asian men who are divorced;number of asian men who have been divorced -dc/n0bp6h6zcgm74,"the average amount of money earned by women who did not work full time;the middle amount of money earned by women who did not work full time;the amount of money that half of women who did not work full time earned, and half earned less;the amount of money that most women who did not work full time earned" -dc/n11nnhnf54h78,african american women in prison;african american women who are incarcerated;african american women who are in jail;african american women who are behind bars -dc/n2vhkpw0slkv5,number of people working in public transportation excluding taxicab service occupations;number of public transportation workers excluding taxicab service occupations;number of people employed in public transportation excluding taxicab service occupations;public transportation workforce excluding taxicab service occupations -dc/n5fmmhn8w641g, -dc/n5mhly5lm0c9,women who are married but whose spouses are not present;women who are married but whose spouses are not living with them;married women whose spouses are away;married women whose spouses are not available -dc/n8mg3ymdh5mc6, -dc/n92hgh8ned7k5,the number of people who are locked up in state and privately run prisons;the number of people who are serving time in state and private jails;the number of people who are incarcerated in state and private correctional facilities;the number of people who are in prison or jail in state and private facilities -dc/n99t0lnl3fch6,"the population of people who work in the following occupations: walking, natural resources, construction, and maintenance;the number of people who work in the following occupations: walking, natural resources, construction, and maintenance;the people who work in the following occupations: walking, natural resources, construction, and maintenance;the people who are employed in the following occupations: walking, natural resources, construction, and maintenance" -dc/nb1l1xnrvtggd,hispanics who are conversant in spanish and english;hispanics who speak english at an intermediate level;hispanics who speak english well;hispanics who speak english moderately -dc/nc36cwd39pqyb,number of american indian or alaska native students enrolled in grade 6;how many american indian or alaska native students are enrolled in grade 6;how many american indian or alaska native students are in grade 6;what is the number of american indian or alaska native students in grade 6 -dc/nfdf9rt7kbggb,"people who work in management, business, science, and arts occupations at home;home-based workers in management, business, science, and arts occupations;workers in management, business, science, and arts occupations who work from home;home-based employees in management, business, science, and arts occupations" -dc/nfwsxpyxcjhhb,the white male population;the population of white males -dc/nh3s4skee5483,what percentage of women have diabetes?;what is the rate of diabetes among women?;what proportion of women have diabetes?;how many women have diabetes? -dc/nhecfv83n1nt9,alaska native population;native peoples of alaska;alaska native;native alaskan -dc/nhmjhp72kjr48,how many asian students are enrolled in college?;what is the percentage of asian students enrolled in college?;what is the number of asian students enrolled in college undergraduate years?;how many asian students are enrolled in college undergraduate programs? -dc/njgzb8knf11n8,number of american indian or alaska native students enrolled in middle school;percentage of american indian or alaska native students enrolled in middle school;proportion of american indian or alaska native students enrolled in middle school;share of american indian or alaska native students enrolled in middle school -dc/njvdbteys5xz,men who worked full time but did not earn an income;number of men who worked full-time but did not earn an income;number of male full-time workers without income;the number of men who worked full time but did not earn an income -dc/nkhxr3btprred,1 number of african americans enrolled in grade 8;3 african american population in grade 8;4 african american students enrolled in grade 8;african american students enrolled in grade 8 -dc/nly6ye236m1t9,"the percentage of people aged 16 and over who are employed in management, business, science, and arts occupations;the proportion of the working-age population who are employed in management, business, science, and arts occupations;the number of people aged 16 and over who are employed in management, business, science, and arts occupations as a share of the total population;the percentage of people aged 16 or older who are employed in management, business, science, and arts occupations" -dc/nm9hcklgg5zb3, -dc/nms5k24k5gc98, -dc/npcy1gpy98t3f,english-only hispanics;hispanics born in other countries who only speak english;hispanics who are not bilingual;hispanics who were born in another country but only speak english -dc/nrnvcdnlg1hqb,the percentage of hispanic males who are never married;the number of hispanic males who have never been married;the percentage of hispanic males who are not married;the percentage of hispanic males who have never been married -dc/ns1rqx6wy9909,number of black or african american kindergarteners;number of black or african american students in kindergarten;black or african american kindergarten enrollment;number of black or african american kindergarten students -dc/nt9cq96phw6nf,percentage of white non-hispanic students enrolled in kindergarten;number of white non-hispanic students enrolled in kindergarten;proportion of white non-hispanic students enrolled in kindergarten;share of white non-hispanic students enrolled in kindergarten -dc/nvfkved5p7pv1,"the percentage of asians not enrolled in school;the number of asians not enrolled in school;the proportion of asians not enrolled in school;the number of asians not enrolled in school, as a percentage of the total asian population" -dc/nvrxn11yxlen2,the number of people who use public transportation;the percentage of people who use public transportation;the proportion of people who use public transportation;the share of people who use public transportation -dc/nvxghp3p89bbb,the percentage of african americans who do not have a high school diploma;the number of african americans who have not graduated from high school;the proportion of african americans who have not completed high school;the number of african americans who have not earned a high school diploma -dc/nwmssnmerhgq2,"number of female non-citizens sentenced to less than 1 year in state, federal, and private prisons;female non-citizens sentenced to less than 1 year in state, federal, and private correctional facilities;number of female non-citizens sentenced to less than 1 year in state, federal, and private detention centers;number of female non-citizens sentenced to less than 1 year in state, federal, and private jails" -dc/nxmlfll4jbvv7,coal stock in other industrial sectors on a quarterly basis;coal inventory in other industrial sectors on a quarterly basis;quarterly coal reserves in other industrial sectors;quarterly coal holdings in other industrial sectors -dc/nz8kmke5yqvn,"deaths caused by other incarcerated people, measured by jurisdiction;incarcerated person-on-incarcerated person deaths, by jurisdiction;inmate-on-inmate deaths, by jurisdiction;deaths caused by other inmates, measured by jurisdiction" -dc/nzby95gg431yg,american indian or alaska native women with a high school diploma or ged;american indian or alaska native women who have graduated from high school or earned a ged;american indian or alaska native women who have completed high school or earned a ged;american indian or alaska native women who have a high school education or ged -dc/nzl0lpyjshxe5,less than high school diploma males who are native hawaiian or other pacific islander -dc/p0yjn8heys192,1 the number of students in grade 5 who identify as multiracial;2 the percentage of students in grade 5 who identify as multiracial;3 the proportion of students in grade 5 who identify as multiracial;the number of multiracial students in 5th grade -dc/p3n2f227fxgmb,black men who have lost their wives;african american men who are no longer married;men of african descent whose wives have died;black men who are widowed -dc/p3vqwthpjtdw,population of people of other races in graduate or professional schools;number of people of other races in graduate or professional schools;percentage of people of other races in graduate or professional schools;proportion of people of other races in graduate or professional schools -dc/p4jbqx5jteneg,hispanic people who are fluent in english;hispanics who are bilingual;hispanics who are english-fluent;hispanics who are fluent in english -dc/p4jzvj8q1lnmd,american indian students in elementary school;native american students in primary school;indigenous students in elementary school;american indian children in primary school -dc/p50h6v76w3d4,"the percentage of white, non-hispanic people who speak english very well;the share of white, non-hispanic people who have a good command of english;the prevalence of white, non-hispanic people who are able to speak english very well;the percentage of white and non-hispanic people who speak english very well" -dc/p5dz37cv7n17c,how much money do male high school graduates make on average?;what is the typical salary for a male high school graduate?;what is the average income for a male high school graduate?;what is the median income for a male high school graduate? -dc/p5ggg1h7nn5wf,english-only speakers who are multiracial -dc/p9z627h529tch,the percentage of white civilians aged 16 years or more who are employed in the labor force;the proportion of white civilians aged 16 years or more who are working or actively looking for work;the number of white civilians aged 16 years or more who are employed as a percentage of the total number of white civilians aged 16 years or more;the rate of employment among white civilians aged 16 years or more -dc/pe93w691swx6c,"the number of people aged 16 or older who are employed in production, transportation, and material moving occupations;the percentage of the population aged 16 or older who are employed in production, transportation, and material moving occupations;the proportion of the population aged 16 or older who are employed in production, transportation, and material moving occupations;the share of the population aged 16 or older who are employed in production, transportation, and material moving occupations" -dc/pexzqq68dnek5,white students who are not hispanic and are enrolled in the 12th grade;white non-hispanic students in 12th grade;white students who are not hispanic and are enrolled in grade 12;white students who are not of hispanic origin and are enrolled in grade 12 -dc/pf5dpsj6zfm9g,number of asian students enrolled in grade 5;percentage of asian students enrolled in grade 5;proportion of asian students enrolled in grade 5;asian student enrollment in grade 5 -dc/pf6qb802w04r8,the percentage of american indian or alaska native males who have not completed high school;the proportion of american indian or alaska native males who have not completed high school;the number of american indian or alaska native males who do not have a high school diploma;the percentage of american indian or alaska native males who do not have a high school diploma -dc/pgpb74yrq7s77,the number of white females who are married and not separated;the percentage of white females who are married and not separated;the proportion of white females who are married and not separated;the share of white females who are married and not separated -dc/pjl2d6jdf41pg,"coal receipts in other industrial sectors, quarterly;coal received by other industrial sectors, quarterly;quarterly coal receipts for other industrial sectors;coal receipts in other industrial sectors, by quarter" -dc/ppe3pntdhnb4d,number of people born in other states living in the us with income;number of people living in the us with income who were born in other states;number of people born in other states with income in the us;number of people with income in the us who were born in other states -dc/ppmj83cyfx2x4,count of married american indian or alaska native males;married american indian or alaska native males;number of married american indian or alaska native men;count of married american indian or alaska native men -dc/ps4ncxtk7gej2,a woman who is separated and asian lives alone;a female asian who is separated lives alone;an asian woman who is separated lives alone;a separated asian woman lives alone -dc/psvlr9qyj0gmb,number of white students in grade 7;white students in grade 7;percent of white students in grade 7;white students enrolled in grade 7 -dc/ptp31y11913b6,1 the percentage of african american men who are incarcerated;2 the number of african american men who are in prison or jail;3 the rate of incarceration among african american men;5 the number of african american men who are serving time in the criminal justice system -dc/pwpgqvlz3zxtc,causes of death for incarcerated females other than nps;deaths of incarcerated females due to causes other than nps;causes of death for incarcerated females that are not nps;death rates for incarcerated females due to causes other than nps -dc/pyznmbw0s6m2f,hispanic people who are married and not separated;the hispanic population that is married and not separated;the number of hispanic people who are married and not separated;the percentage of hispanic people who are married and not separated -dc/pzqfvzwl52kq7,asian men who work part-time;asian men who have part-time jobs;asian men who are employed part-time;asian men who work part-time hours -dc/q2pgyz35p79l4,deaths of female prisoners due to assaults;deaths of incarcerated women due to assaults;deaths of female inmates due to assaults;deaths of incarcerated females due to assaults -dc/q378bg9lpfnx5,the number of african american women who are divorced;the percentage of african american women who are divorced;the proportion of african american women who are divorced;the share of african american women who are divorced -dc/q420sgnxr70cg,the number of students in grade 3 who identify as some other race;the population of students in grade 3 who identify as some other race;the number of students enrolled in grade 3 who identify as other races;the population of students enrolled in grade 3 who identify as other races -dc/q779fwy6k8skd,the number of full-time female workers increased;the percentage of women working full-time increased;the number of women working full-time is on the rise;the number of women working full-time has increased -dc/q8t98xp3wtmm,english-fluent asian and pacific islanders;asian and pacific islanders who are fluent in english;english-fluent asian and pacific islander native language speakers;asian and pacific islander native language speakers who are fluent in english -dc/q98jxycvs422f,women of multiple races who have some college or an associate's degree;female multiracial college students;multiracial women with some college experience;women who are multiracial and have some college or associate's degree -dc/qb3h0k8rxnm02,hispanic women who work full-time;full-time hispanic female workers;hispanic women who work full-time jobs;full-time working hispanic women -dc/qcj421m935ppd,coal received by other industries each year;coal received by other industries annually;the annual receipt of coal by industries other than mining -dc/qd3ppr2tlgzzg,american indian or alaska native people who are 16 years old or older and are in the labor force;american indian or alaska native people who are 16 years old or older and are employed or looking for work;american indian or alaska native people who are 16 years old or older and are part of the workforce;american indian or alaska native people who are 16 years old or older and are in the labor market -dc/qe3n5lejpz2vd,other men are now married and their spouses are not present;other men are now married and their wives are not with them;other men are now married and their partners are not with them;other men are now married and their significant others are not with them -dc/qgv9d3frn35qc,number of people in privately operated out-of-state correctional facilities;total number of people incarcerated in privately operated out-of-state prisons;population of privately operated out-of-state prisons;number of people held in privately operated out-of-state correctional facilities -dc/qj9v0vqzp9vlg,people who were born in another country and whose spouse has died;foreign-born people who are widowed;people who are widowed and were born in another country;people who have been widowed and were born in another country -dc/qjphp1pbessf8,hispanic women who have never been married;hispanic females who have never been married;the population of hispanic women who have never been married;the number of hispanic women who have never been married -dc/qkp6k68gg0244,total wages paid to workers in privately owned other engine equipment manufacturing industries;the total amount of money paid to workers in privately owned other engine equipment manufacturing industries;the sum of all the wages paid to workers in privately owned other engine equipment manufacturing industries;the total amount of money that workers in privately owned other engine equipment manufacturing industries earned -dc/qnnbzwrjn50jh,deaths of incarcerated females due to aids;aids-related deaths among incarcerated females;female prisoners who died of aids;women in prison who died of aids -dc/qnphlls92tvs9,american indian children enrolled in kindergarten;american indian students enrolled in kindergarten;american indian kindergarteners;american indian children attending kindergarten -dc/qnzfwlegkmr,male asian high school seniors;asian high school seniors who are male;asian male students who have graduated from high school;high school graduates who are asian and male -dc/qpsfm7g91ksnb,hispanic women who completed high school;female hispanic high school seniors;latina high school grads;female high school graduates who are hispanic -dc/qt5n8lwm3efcc,11th grade native hawaiian or other pacific islanders;grade 11 native hawaiian or other pacific islander students;11th grade students who are native hawaiian or other pacific islanders;native hawaiian or other pacific islander students in grade 11 -dc/qt93zwetzzjw7,foreign-born white people who are english-fluent;foreign-born white people who are very fluent in english;white people who have moved to another country and speak english very well;white immigrants are very good at speaking english -dc/qvf1yrhwzp8rd,middle school students of caucasian descent;caucasian middle school students;white kids in middle school;middle school kids who are white -dc/qx3kfy4r5ce49,asian immigrants who are fluent in english;asian people who were born in another country but speak english well;people from asia who have moved to the united states and speak english fluently;asian-born individuals who are proficient in english -dc/qzjpw3tj2wxw7,white immigrants who are not hispanic;white immigrants who are not of hispanic origin;white immigrants who are not latino;white immigrants who are not of latino origin -dc/r0delcsw86kc6,"car, truck, or van drivers in production, transportation, and material moving occupations;workers in production, transportation, and material moving occupations who drive cars, trucks, or vans;drivers of cars, trucks, or vans in production, transportation, and material moving occupations;workers who drive cars, trucks, or vans in the production, transportation, and material moving industries" -dc/r11mft5m8we58,english-only speakers of other races;natives of other races speak only english;some natives speak only english;some people of other races speak only english -dc/r1y3f7lf2pzy3,american indian or alaska native men who graduated from high school or earned a ged;american indian or alaska native males who completed high school or obtained a ged;american indian or alaska native men who have a high school diploma or ged;american indian or alaska native males who are high school graduates or ged recipients -dc/r3l3rfl1ms85f,the number of native hawaiian or other pacific islander men with some college or associate's degree;the percentage of native hawaiian or other pacific islander men with some college or associate's degree;the proportion of native hawaiian or other pacific islander men with some college or associate's degree;the share of native hawaiian or other pacific islander men with some college or associate's degree -dc/r3nyqwc41tdx4,the number of american indian or alaska native women who worked part-time;the percentage of american indian or alaska native women who worked part-time;the proportion of american indian or alaska native women who worked part-time;the american indian or alaska native female part-time workforce -dc/r5ebll5x2zxfg, -dc/r5syy9vz2l2j6,native hawaiians and other pacific islanders speak english well;a large percentage of native hawaiians and other pacific islanders speak english fluently;english is a common language among native hawaiians and other pacific islanders;native hawaiian or other pacific islander population speak english well -dc/r7xqdm2s9r7d7,white students in sixth grade;sixth grade students who are white;sixth-grade students who are white;sixth grade white students -dc/r8224e56gqm86,number of asian children enrolled in nursery school or preschool;percentage of asian children enrolled in nursery school or preschool;proportion of asian children enrolled in nursery school or preschool;percent of asian children enrolled in nursery school or preschool -dc/rcg5pcew63bsg,female population of other races who are unmarried;population of unmarried females of other races;unmarried females of other races;number of unmarried females of other races -dc/rctprrbmyt4k5,multiracial students in grade 11;students who identify as multiracial in grade 11;the number of students in 11th grade who identify as multiracial;the percentage of students in 11th grade who identify as multiracial -dc/rdbe1lns1yqj,bachelor-holding white males;white men with bachelor's degrees;white males with a bachelor's degree;white males who have a bachelor's degree -dc/rdj26sxmhk6gf,group quarters residents who speak english fluently;english speakers in group quarters;fluent english speakers in group quarters;people in group quarters who speak english well -dc/rfkwl069m93jh,fifth grade white kids;white kids in fifth grade;fifth graders who are white;white fifth graders -dc/rflxtne8wnyr6,hispanic men who are divorced;hispanic men who have been divorced;hispanic men who are no longer married;hispanic men who are separated from their wives -dc/rg80grwrd1pkc,african american men worked full-time;african american males were employed full-time;african american men had full-time jobs;african american males were gainfully employed -dc/rhn4yz79mvrx1,male high school graduates of other races;other-race male high school graduates;male high school graduates who are not of the majority race;high school graduates who are male and of other races -dc/rkk2qytzv30eb,native hawaiian or other pacific islander females with less than a high school diploma;females who are native hawaiian or other pacific islander and have less than a high school diploma;women with less than a high school diploma who are native hawaiian or other pacific islander alone;native hawaiian or other pacific islander alone women with less than a high school diploma -dc/rkxgse26ln224,"never married, natives, foreign-born, outside the us;never married, born in the us, born outside the us;never married, us citizens, not us citizens;never married, us residents, not us residents" -dc/rlxhqz8mgxf07,african american students enrolled in fourth grade;number of african american students in fourth grade;african american fourth-grade enrollment;number of african americans enrolled in grade 4 -dc/rmwl11tzy7vkh,multiracial incarceration rates by jurisdiction;the percentage of incarcerated people who identify as multiracial in different jurisdictions;the rate of incarceration for multiracial people in different jurisdictions;the number of incarcerated multiracial people by jurisdiction -dc/rn90czcrqcv06,the average cost of medicare coverage;the typical price of medicare;the usual cost of medicare;the standard price of medicare -dc/rppnrs4s3lhn9,population of unmarried people by state;number of unmarried people in each state;percentage of unmarried people in each state;distribution of unmarried people by state -dc/rq1d1jrbzqv7,foreign-born white non-hispanics who only speak english;white non-hispanic immigrants who only speak english;english-only white non-hispanic immigrants;white non-hispanic immigrants who speak only english -dc/rrp56w0hvs6x6,hispanic students in eighth grade;the number of hispanic students in eighth grade;the percentage of hispanic students in eighth grade;the proportion of hispanic students in eighth grade -dc/rvw3m8tnk9rzg,number of students enrolled in grade 1 who identify as some other race alone;number of students in grade 1 who are some other race alone;number of students enrolled in first grade who identify as some other race alone;number of first-grade students who identify as some other race only -dc/rxprknx7sls4c,american indian or alaska native male population who have been divorced;number of american indian or alaska native males who have been divorced;american indian or alaska native males who are divorced;american indian or alaska native males who have been through a divorce -dc/rxtjbe97rt917,the number of african americans enrolled in grade 9;the percentage of african americans enrolled in grade 9;the proportion of african americans enrolled in grade 9;the enrollment of african americans in grade 9 -dc/ry2tnmstly7wd,people who were born outside the united states and do not have an income;people who were born outside the united states and don't have an income;people who were born outside the us and don't make any money;people who were born outside the us and don't have any source of income -dc/rysbtdzyxtzwg,number of native hawaiian or other pacific islander students enrolled in grade 7;native hawaiian or other pacific islander student enrollment in grade 7;percentage of native hawaiian or other pacific islander students enrolled in grade 7;native hawaiian or other pacific islander student population in grade 7 -dc/s0kcbjef3zxrc,the percentage of the united states population that is foreign born and never married;the number of people in the united states who are foreign born and never married;the proportion of the united states population that is foreign born and never married;the share of the united states population that is foreign born and never married -dc/s7ce9rqnnxx2,"the number of students enrolled in grade 6 who identify as ""some other race"";the percentage of students enrolled in grade 6 who identify as ""some other race"";the proportion of students enrolled in grade 6 who identify as ""some other race"";the number of students enrolled in grade 6 who identify as some other race" -dc/s8kemf13ymzfh,the number of married men with current spouses;the number of married men who are currently in a relationship with their spouses;married men with current spouses;men who are married and have a spouse -dc/s9wyy5tf5megg,white immigrants who speak languages other than english -dc/scmdl20nfr0l, -dc/scnp6d6sv1jqd, -dc/scyj6rz15mq82,the percentage of the labor force aged 16 or older who are employed in service occupations;number of people aged 16 or older in the labor force working in service occupations;number of people aged 16 or older in the labor force working in the service sector -dc/sdc1bw2pxc46g,hispanic students in grade 3;the number of hispanic students in grade 3;the percentage of hispanic students in grade 3;the proportion of hispanic students in grade 3 -dc/sdn6v3hz8knb5,inmates who speak english fluently;convicts who speak english well;prisoners who speak english fluently;people who are incarcerated and speak english well -dc/sgpf5hy02lcj2,"number of african american men with a high school diploma, ged, or equivalent;percentage of african american men with a high school diploma, ged, or equivalent;share of african american men with a high school diploma, ged, or equivalent;proportion of african american men with a high school diploma, ged, or equivalent" -dc/shejk69d4k3fh,"number of non-us citizen men in prison, state-run, federal-run, and privately run;count of non-us citizen males in jail, state-operated, federally operated, and privately operated;total number of non-us citizen males incarcerated, state-run, federal-run, and privately run;sum of non-us citizen males in prison, state-operated, federally operated, and privately operated" -dc/shgj6xwg96pp3,female inmates who commit suicide;deaths of incarcerated women by self-harm;self-harm deaths of female prisoners;suicides among incarcerated women -dc/shlqb1cv20bvf,people of multiple races who speak languages other than english;people who are multiracial and multilingual;people who speak more than one language and have more than one race;people who are not monolingual and not monoracial -dc/sj7vc7ntdf971,foreign-born native hawaiian or other pacific islander who speaks fluent english;native hawaiian or other pacific islander who was born in another country and speaks fluent english;foreign-born person of native hawaiian or other pacific islander descent who speaks fluent english;person born in another country who is a native hawaiian or other pacific islander and speaks fluent english -dc/skv4cd74gsnpf,women with a bachelor's degree or higher who identify as some other race alone;women with a bachelor's degree or higher who are of mixed race -dc/slbyzbleg76rg,multiracial students in 9th grade;9th graders who identify as multiracial;the number of students enrolled in 9th grade who identify as multiracial;the percentage of students enrolled in 9th grade who identify as multiracial -dc/slhc0k07wwmq1, -dc/slp5hywj7b9c1,"the number of people working in sales and office occupations who use taxicabs, motorcycles, bicycles, or other means of transportation;the number of people employed in sales and office occupations who commute by taxicab, motorcycle, bicycle, or other means;the number of people working in sales and office occupations who travel to work by taxicab, motorcycle, bicycle, or other means;number of people employed in sales and office occupations who use taxicabs, motorcycles, bicycles, or other means of transportation" -dc/sm77lg8njsrzh,number of students of other races enrolled in nursery school and preschool;number of other-race students enrolled in nursery school and preschool;number of nursery school and preschool students who are of other races;number of children of other races enrolled in nursery school or preschool -dc/smytzhn5chpq7,multiracial students in grade 4;students who identify as multiracial in grade 4;students who are multiracial in grade 4;multiracial students enrolled in grade 4 -dc/sp5k1jygkt21,the number of students of multiple races enrolled in grade 7;the percentage of students of multiple races enrolled in grade 7;the proportion of students of multiple races enrolled in grade 7;multiracial students in 7th grade -dc/sq1dtp7kq1tv2, -dc/sqfy1r8mbg8j7,the divorce rate among multiracial males is high;many multiracial males get divorced;a large number of multiracial males are divorced;a significant portion of multiracial males are divorced -dc/sqqee4d2eczw4,spanish-speaking foreign-born population that is fluent in english;foreign-born spanish speakers who are fluent in english;foreign-born spanish speakers who speak english fluently;spanish-speaking foreign-born population who are fluent in english -dc/sthflrgmg8byc, -dc/stp8qcer02x07, -dc/sxh4tyz8ph4lh,the average annual income for men with some college or an associate's degree;the amount of money that most men with some college or an associate's degree make in a year;the typical income for men with some college or an associate's degree;the amount of money that men with some college or an associate's degree typically make in a year -dc/sxlzxvkfby3yh, -dc/syxm9nnsl3wcc,how much money do female high school graduates or equivalency earn on average?;what is the median income for female high school graduates or equivalency?;what is the typical income for female high school graduates or equivalency?;what is the average salary for female high school graduates or equivalency? -dc/sz6drg887lp56,population of males of multiple races who have graduated from high school or earned a ged;number of men of mixed race who have a high school diploma or ged;population of multiracial males with a high school diploma or ged;number of multiracial males who have graduated from high school or earned a ged -dc/szdmyn5skvqjb,native hawaiian or other pacific islander children enrolled in nursery school or preschool;number of native hawaiian or other pacific islander children enrolled in nursery school or preschool;percentage of native hawaiian or other pacific islander children enrolled in nursery school or preschool;proportion of native hawaiian or other pacific islander children enrolled in nursery school or preschool -dc/t043g8lwvm8th,the number of asian men who are widowed;the percentage of asian men who are widowed;the number of asian men who have been widowed at some point in their lives;the community of asian men who are widowed -dc/t0mcpxqgr2lm9,"men of some other race who have some college or associate's degree;male adults of some other race who have some college or associate's degree;male adults of some other race who have some post-secondary education;men of some other race who have some college or associate's degree, but not a bachelor's degree" -dc/t14epl3f66wn, -dc/t1t5x8vk6fyn7,native hawaiian or other pacific islander men who work full time;full-time working native hawaiian or other pacific islander men;native hawaiian or other pacific islander men who work full-time hours;native hawaiian or other pacific islander men who are employed full-time -dc/t2tfpx3f19px,american indian or alaska native student population in 9th grade;number of american indian or alaska native students in 9th grade;percentage of american indian or alaska native students in 9th grade;proportion of american indian or alaska native students in 9th grade -dc/t3qdrccyvv92d,number of asian students in grade 7;proportion of asian students in grade 7;percentage of asian students in grade 7;asian students enrolled in grade 7 -dc/t7403chwvspm,number of african american women with bachelor's degrees or higher;percentage of african american women with bachelor's degrees or higher;proportion of african american women with bachelor's degrees or higher;share of african american women with bachelor's degrees or higher -dc/tbe5rlxz0qx71,women of other races with less than a high school diploma;the female population of other races with less than a high school diploma;the number of women of other races with less than a high school diploma;the percentage of women of other races with less than a high school diploma -dc/tby1462m0e7eb, -dc/tcqb49dvg7k53,many women are not getting enough exercise;a large number of women are not active enough;a significant proportion of women are not getting the recommended amount of physical activity;a large percentage of women are not meeting the physical activity guidelines -dc/tdev61pzs9xk8,number of full-time working multiracial women;number of multiracial women working full-time;multiracial women working full-time;multiracial women in full-time employment -dc/tgblf2c5s0kp5,the population of married non-hispanic white males;the number of married non-hispanic white males;married white males who are not hispanic;married white men who are not hispanic -dc/tgvpcmdbx6jn5,percentage of white students enrolled in grade 8;proportion of white students enrolled in grade 8;number of white students enrolled in grade 8 as a percentage of the total number of students enrolled in grade 8;share of white students enrolled in grade 8 -dc/th9nmgcwr7zch,people of other races who speak english less than very well in the native population;people of other races who are not fluent in english in the native population;people of other races who speak english as a second language in the native population;people of other races who are not native english speakers in the native population -dc/tm2h6clmndl3b,"the percentage of the foreign-born population who have never been married;the number of foreign-born people who have never been married;the share of the foreign-born population who are not married;the number of foreign-born people who are not married, expressed as a percentage of the total foreign-born population" -dc/tn5kxlgy0shl4, -dc/tpmehzw6jvp2c,english-speaking white natives;white people who speak fluent english;native english speakers who are white;white people who are fluent in english -dc/tr1xqzhtb8fr6,number of american indian and alaska native students enrolled in grade 3;total number of american indian and alaska native students in grade 3;count of american indian and alaska native students in grade 3;number of american indians and alaska natives enrolled in grade 3 -dc/ttms13r578hq9, -dc/twlffl9b5vgn3,people who were born in another country and are now divorced;people who were born in a foreign country and are now divorced from their spouse;people who were born in a country other than the united states and are now divorced from their partner;people who were born in a different country and are now divorced from their significant other -dc/txv6ckbc2r3v1,men who are unemployed and do not have income;men who are not employed and do not have income;men who are not working and do not have income -dc/ty7pq88d26963,the majority of men are physically inactive;most men are not active enough;a high proportion of men are not physically active;a large proportion of men are not physically active -dc/tyc40c36ey286,the percentage of american indian or alaska native females who do not have a high school diploma;the share of american indian or alaska native females who have not earned a high school diploma;american indian or alaska native women who have not graduated from high school;the number of american indian or alaska native females who do not have a high school diploma -dc/v0ef1kl6tpb26,female population of multiracial widows;widowed multiracial women;women who are multiracial and widowed;multiracial women who are widowed -dc/v16qqrhtdvdf4,what percentage of foreign-born white non-hispanics speak a language other than english;what proportion of foreign-born white non-hispanics speak a language other than english;what percentage of white non-hispanics who were born in another country speak a language other than english;what percentage of foreign-born white non-hispanics speak a language other than english? -dc/v33p7mwnpe9vb,"the number of people who work in management, business, science, and the arts;the workforce in management, business, science, and the arts;the percentage of people who work in management, business, science, and the arts;the population of people who work in management, business, science, and arts occupations" -dc/v37c92kcxv3hc,white men who are not married;white men who are not in a relationship;white men who are not living with a partner;white men who are not partnered -dc/v6834kbm0lq32,number of native hawaiian or other pacific islander widowed males;count of native hawaiian or other pacific islander widowed males;total native hawaiian or other pacific islander widowed males;native hawaiian or other pacific islander men who have lost their wives -dc/v78t45118s0bb,population by income and state of birth;number of people by income and state of birth;distribution of population by income and state of birth;demographics of population by income and state of birth -dc/v7bhlqc1lfxlg,black immigrants;foreign-born african americans;african american immigrants;black immigrants to the united states -dc/v7yl3k9w3h7e8,the percentage of native hawaiian or other pacific islander women with a bachelor's degree or higher;the proportion of native hawaiian or other pacific islander women with a bachelor's degree or higher;the number of native hawaiian or other pacific islander women with a bachelor's degree or higher;the share of native hawaiian or other pacific islander women with a bachelor's degree or higher -dc/v8zb9mw4qnbw8,african american english speakers;black english speakers;african american speakers of english -dc/v97hd2eq4r6s3,hispanic population that speaks a language other than english;hispanic population that is bilingual or multilingual;hispanic people who speak a language other than english;people of hispanic descent who speak a language other than english -dc/v9rks84c0kkcc,african american women who worked full time;the number of african american women who worked full time;the african american female workforce;african american women in the workforce -dc/vbh6pq6vhbgrf, -dc/vdc20m1xr96k,american indian or alaska native students enrolled in nursery school;american indian or alaska native children in nursery school;american indian or alaska native students in preschool;american indian or alaska native children in preschool -dc/vde5g33gwxz64,perinatal deaths in white males under 1 year of age;perinatal deaths of white males under 1 year;white male deaths due to perinatal conditions;deaths of white males under 1 year of age due to perinatal conditions -dc/vdss0k16mbq34,"people who speak english very well, other indo-european languages, and foreign-born people;population: speak english very well, other indo european languages, foreign born;population: people who speak english very well, people who speak other indo-european languages, people who were born outside of the united states" -dc/ve9j3grym8wj9,american indian or alaska natives with moderate english proficiency;american indian or alaska native who speaks english at a moderate level;american indian or alaska native who has a moderate level of english proficiency;american indian or alaska native population that speaks english moderately -dc/ves02m300f6lc,spanish-speaking immigrants who don't speak english;foreign-born spanish speakers who don't speak english;spanish-speaking immigrants who are non-english speakers -dc/vg392qes18p6c,civilian women aged 18 or older who are not veterans and have an income;non-veteran civilian women over 18 with an income;civilian women aged 18 and older who are not veterans and earn money;civilian women aged 18 or older who are not veterans and are employed -dc/vgp4mf3hsv365,the number of white females without a high school diploma;the percentage of white females without a high school diploma;the proportion of white females without a high school diploma;the share of white females without a high school diploma -dc/vh36nvvkwxz5g,"people who worked from home, in natural resources, construction, and maintenance occupations made up the population;the population consisted of people who worked from home, in natural resources, construction, and maintenance occupations;the population was made up of people who worked from home, in natural resources, construction, and maintenance occupations;people who worked from home, in natural resources, construction, and maintenance occupations were part of the population" -dc/vh52n3qgw0kt,people who speak asian and pacific island languages and do not speak english;people who are native speakers of asian and pacific island languages and do not speak english;people who are from asia or the pacific islands and do not speak english;people who speak asian and pacific island languages as their first language and do not speak english -dc/vm61pznxzhh7c, -dc/vn3t2e2df18xb,the number of females from other races who have graduated from high school or have obtained an equivalent credential;the percentage of females from other races who have graduated from high school or have an equivalency degree;the proportion of women from other races who have completed high school or have an equivalency credential;the percentage of females of other races who have graduated from high school or have an equivalency degree -dc/vnqfyjybvze64,white men who work part-time;white male part-time employees;white men who work less than 40 hours per week;white men who are employed part-time -dc/vp8cbt6k79t94,people walked;the number of people who walked;the number of people who went for a walk;the number of people who took a stroll -dc/vpldv41glvlgg,the number of widowed white non-hispanic males;the proportion of white non-hispanic males who are widowed;the percentage of white non-hispanic males who are widowed;number of widowed white non-hispanic males -dc/vqmpm1kxknhlg,"the percentage of people of some other race who are not enrolled in school;the number of people of some other race who are not enrolled in school;the number of people of some other race who are not enrolled in school, as a percentage of the total population;population of students who are not enrolled in school and identify as ""some other race""" -dc/vt2q292eme79f,"what is the population of people who use taxis, motorcycles, bicycles, or other means of transportation?;what is the population of people who use taxicabs, motorcycles, bicycles, or other means of transportation?;how many people get around by taxicab, motorcycle, bicycle, or other means?;what is the number of people who use taxicabs, motorcycles, bicycles, or other means of transportation?" -dc/vx85c3xzwg981,population of native indo-european language speakers who are also fluent in english;population of native indo-european language speakers who are also english speakers;population of native speakers of indo-european languages who are fluent in english -dc/vxhvgzjhwwmj6,asian people living in the united states;the asian population in the united states;population of asian descent;people of asian ethnicity -dc/w0empn05hck9,number of hispanic students in grade 10;hispanic student enrollment in grade 10;percentage of hispanic students in grade 10;hispanic students enrolled in grade 10 as a percentage of all students enrolled in grade 10 -dc/w138eg8cxs7hd, -dc/w56by78w2crr2,number of hispanic or latino students enrolled in grade 5;hispanic or latino students enrolled in grade 5;hispanic or latino students in grade 5;hispanic or latino students enrolled in the 5th grade -dc/w5e4bhwph82b9,percentage of native hawaiian or other pacific islander females who graduated from high school;number of native hawaiian or other pacific islander female high school graduates;proportion of native hawaiian or other pacific islander females who completed high school;share of native hawaiian or other pacific islander females who finished high school -dc/wbjmvkyqf6dm3,native asian and pacific islander languages;languages spoken by indigenous peoples of asia and the pacific;people who speak asian and pacific island languages as their first language;languages spoken by indigenous peoples of the asia-pacific region -dc/wc8q05drd74bd,"number of people who carpooled in a car, truck, or van;how many people carpooled in a car, truck, or van;car, truck, or van carpooling population;population of car, truck, or van carpoolers" -dc/wcl0fysjk3cdf,women who work for privately owned businesses and live out of state;female employees of privately owned businesses who live outside of the state;women who are employed by privately owned businesses and are not residents of the state;women who work for privately owned businesses and are not from the state -dc/wd5g31pcj0zr3,women with a bachelor's degree or higher who are white alone and not hispanic or latino;females with a bachelor's degree or higher who are white alone and not hispanic or latino;women who are white alone and not hispanic or latino with a bachelor's degree or higher -dc/wf1rm5zx34dtg,foreign-born asians and pacific islanders have a moderate level of english proficiency;foreign-born asians and pacific islanders speak english at an intermediate level;english is spoken moderately by asians and pacific islanders who were born in other countries;english proficiency among asians and pacific islanders who were born in other countries is moderate -dc/whn99h1l0xgth,women with some college or an associate's degree who identify as asian alone;women who identify as asian alone and have some college or an associate's degree -dc/why1nnx9w8qj9,foreign-born whites who are fluent in english -dc/wj5l0n6wkep45,people who were born in other countries and speak indo-european languages;population of foreign-born people who speak indo-european languages;people who were born outside the us and speak indo-european languages;foreign-born people who speak languages from the indo-european language family -dc/wj5y1vh8thnrb,"female population who are married, separated, or have an absent spouse;female population with a marital status of married, separated, or absent spouse;female population who are married, separated, or have a spouse who is not present;female population who are married, separated, or have a spouse who is not living with them" -dc/wjtdrd9wq4m2g,number of african americans enrolled in college undergraduate programs;percentage of african americans enrolled in college undergraduate programs;proportion of african americans enrolled in college undergraduate programs;african american college undergraduate enrollment -dc/wk2vjrzfgyq5d,native hawaiian or other pacific islander students in elementary schools;native hawaiian or other pacific islander children in primary education;native hawaiian or other pacific islander pupils in primary school;native hawaiian or other pacific islander learners in primary education -dc/wnecwy4tfcr17,people who fought in the gulf war from august 1990 to august 2001 and the gulf war from september 2001 or later;people who participated in the gulf war from august 1990 to august 2001 and the gulf war from september 2001 or later;people who served in the gulf war from august 1990 to august 2001 and the gulf war from september 2001 or later;people who were deployed to the gulf war from august 1990 to august 2001 and the gulf war from september 2001 or later -dc/wp843855b1r4c,1 the number of white people in prison;2 the percentage of white people in prison;3 the proportion of white people in prison;4 the white prison population -dc/wpkpr906ft37g,hispanic foreign-borns;hispanic immigrants;hispanics born outside the united states;people of hispanic descent who were born in another country -dc/wpkqjslkwknbc,population before world war ii;population in the years leading up to world war ii;population in the years before world war ii;population in the 1930s -dc/wqbf0ppbmly7,"number of people who live in military occupations and drive cars, trucks, or vans;number of people in military occupations who drive cars, trucks, or vans;number of people who drive cars, trucks, or vans and live in military occupations;number of people who live in military occupations and drive vehicles" -dc/wsxptgxe4dy33,the number of hispanic men who are divorced;the population of hispanic men who are divorced;the percentage of hispanic men who are divorced;the proportion of hispanic men who are divorced -dc/wtr7ml1jwbhx3,1 male population that is not married and identifies as multiracial;male population who is unmarried and multiracial;unmarried men who are multiracial;population of multiracial men who are unmarried -dc/wx80z5tjym33,unmarried males of some other race;unmarried men of color;male population of some other race who are unmarried;population of unmarried males of some other race -dc/wygcf0xy4dgrd,american indians or alaska natives who were born in another country and speak a language other than english;people who were born in another country and are now american indian or alaska native and speak a language other than english;people who were born outside the united states and are now members of american indian or alaska native tribes and speak a language other than english;people who were born in another country and are now american indian or alaska native and do not speak english as their first language -dc/wyxmw2dy6t2xh,white non-hispanics who have graduated from college or are currently enrolled in a professional school;white non-hispanics who are college-educated or in school to become so;white non-hispanics with a post-secondary education;white non-hispanics who are pursuing a professional degree -dc/wzbz28yp0r0z7,number of white non-hispanic students enrolled in grade 5;white non-hispanic student population in grade 5;percentage of white non-hispanic students in grade 5;proportion of white non-hispanic students in grade 5 -dc/wzg3w37nlbt16,men of native hawaiian or other pacific islander descent who have a bachelor's degree or higher;men of native hawaiian or other pacific islander descent who have completed a bachelor's degree program;men of native hawaiian or other pacific islander descent who have earned a bachelor's degree;men of native hawaiian or other pacific islander descent who hold a bachelor's degree or higher -dc/x08wqym1s9f98,the percentage of hispanic immigrants who are moderately fluent in english;the number of hispanic immigrants who speak english moderately well;the proportion of hispanic immigrants who have a moderate level of english proficiency;hispanic immigrants who are moderately fluent in english -dc/x13tvt8jsgrm4,the prevalence of obesity in males is high;obesity is a common problem among men;the number of obese males;the incidence of obesity in males -dc/x1fkr624fq691,american indian or alaska native students in first grade;american indian or alaska native first-graders;first-grade students who are american indian or alaska native;students in first grade who are american indian or alaska native -dc/x1nc3mrc2dpq7,percentage of american indian or alaska native females who have graduated from high school or obtained an equivalent credential;number of american indian or alaska native females who have graduated from high school or obtained an equivalent credential;share of american indian or alaska native females who have graduated from high school or obtained an equivalent credential;proportion of american indian or alaska native females who have graduated from high school or obtained an equivalent credential -dc/x4jl7c411edy9,the number of american indians or alaska natives not enrolled in school;the percentage of american indians or alaska natives not enrolled in school;the proportion of american indians or alaska natives not enrolled in school;the share of american indians or alaska natives not enrolled in school -dc/x883yyh2dtnmd,what proportion of african americans born outside the us are fluent in english?;the percentage of african americans who were born in another country and are fluent in english;the share of african americans who were born in another country and are english-proficient;the percentage of african americans who were born outside of the united states and are fluent in english -dc/x8sw80p2lx1tf, -dc/x9e7150515yt7,what is the percentage of asian students in primary school?;what is the number of asian students in elementary school?;what is the proportion of asian students in primary school?;what's the percentage of asian students in primary school? -dc/xc49pjeynx3s1,the percentage of white students enrolled in grades 9-12;number of white students enrolled in 9th grade;percentage of white students enrolled in 9th grade;white students as a percentage of total students enrolled in 9th grade -dc/xc7ms0v0r7vy5,number of asian students enrolled in grade 1;proportion of asian students in grade 1;percentage of asian students in grade 1;share of asian students in grade 1 -dc/xcds4j8hmrjk5,average salary of men who did not work full-time;typical income for men who did not work full-time;the amount of money that most men who did not work full-time earned;the middle income for men who did not work full-time -dc/xdfcsgf05b4mc,the number of asian immigrants in the united states;the asian immigrant population in the united states;population of asian immigrants -dc/xe4nwk6z1w4ld,number of african american students in 5th grade;percentage of african american students in 5th grade;proportion of african american students in 5th grade;african american student enrollment in 5th grade -dc/xeb8jg49cry4b,the number of native hawaiian or other pacific islander students in 5th grade;the native hawaiian or other pacific islander student population in 5th grade;the percentage of native hawaiian or other pacific islander students in 5th grade;the proportion of native hawaiian or other pacific islander students in 5th grade -dc/xefh58ckxwk7b,asian women in prison;asian female prisoners;female asian prisoners;asian women incarcerated -dc/xewq6n5r3nzch,number of people in prison who died from being executed by the government;number of people in jail who died from being put to death by the state;number of people in detention who died from being put to death by the justice system;number of people in prison who died from being executed by the courts -dc/xg4bepzr1wb93,female veterans aged 18 and over with median income;female veterans aged 18 and over with average income;female veterans aged 18 and over with typical income;female veterans aged 18 and over with middle-of-the-road income -dc/xjgevxgte0nr3,"the percentage of the asian civilian population aged 16 years or more who are in the labor force and employed;the proportion of the asian civilian population aged 16 years or more who are in the workforce and have a job;the number of asian civilians aged 16 years or more who are in the labor force and employed as a percentage of the total asian civilian population aged 16 years or more;the percentage of asian civilians aged 16 years or more who are in the labor force and have a job, expressed as a percentage" -dc/xjj3rf2hbvttc,number of native hawaiian or other pacific islander students enrolled in grade 4;how many native hawaiian or other pacific islander students are enrolled in grade 4;native hawaiian or other pacific islander student enrollment in grade 4;native hawaiian or other pacific islander students in grade 4 -dc/xm8sdr5jcwkzg,native americans or alaska natives who speak languages other than english;american indians or alaska natives whose first language is not english;american indians or alaska natives who are bilingual or multilingual;american indians or alaska natives who speak indigenous languages -dc/xmmw7klt43my7,american indian or alaska native people who speak fluent english;american indian or alaska native people who are fluent in english;american indian or alaska native people who speak english well;american indian or alaska native people who are proficient in english -dc/xmpy89x1nh8cg,what percentage of males have diabetes?;what is the percentage of males with diabetes?;what is the proportion of males with diabetes?;what is the rate of diabetes among males? -dc/xnmh7xgwghej,number of hispanic children enrolled in preschool;hispanic preschool enrollment;percent of hispanic children enrolled in preschool;hispanic preschool attendance -dc/xvdx8kfyj41kh,people born in asia who speak only english;asian immigrants who speak only english;english-only asian immigrants;immigrants from asia who speak only english -dc/xxqx5mhwx5xy8,the percentage of native hawaiian or other pacific islander civilians aged 16 years or more who are employed;the proportion of native hawaiian or other pacific islander civilians aged 16 years or more who are in the labor force and employed;the number of native hawaiian or other pacific islander civilians aged 16 years or more who are employed divided by the total number of native hawaiian or other pacific islander civilians aged 16 years or more;the percentage of native hawaiian or other pacific islander civilians aged 16 years or more who are working -dc/xzq5kcxgn5xj3,native hawaiian or other pacific islander students enrolled in second grade;second grade students of native hawaiian or other pacific islander descent;second grade students who identify as native hawaiian or other pacific islander;second grade students who are of native hawaiian or other pacific islander heritage -dc/xzstrrsk6mzvg,african american women who are married;african american females who are married -dc/y0brw153k6b48, -dc/y1gfw4jel63s3,population between world war 2 and korean war;population during world war 2 and korean war;population between the korean war and world war 2;population during the korean war and world war 2 -dc/y5t5r8bkr80p6,number of white students in grade 12;percentage of white students in grade 12;proportion of white students in grade 12;white student enrollment in grade 12 -dc/y6srse6jgteg3,"white, non-hispanic women who are married and not separated;the number of white, non-hispanic women who are married and not separated;the population of white, non-hispanic women who are married and not separated;the proportion of white, non-hispanic women who are married and not separated" -dc/y7jvz4e4ln1w5,women in state-run prisons outside of their home state;female inmates in out-of-state correctional facilities;women incarcerated in state prisons outside their home state;female prisoners in out-of-state state-run correctional facilities -dc/y9yb58snpfzw5,"population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, management, business, science, and the arts;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, or in management, business, science, or the arts;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, or in management, business, science, or the arts fields;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, management, business, science, and arts" -dc/yc8bfetcz1d92,"the number of students enrolled in grade 2 who identify as ""some other race alone"";the number of students enrolled in grade 2 who identify as some other race alone;number of students in grade 2 who identify as some other race alone;number of students enrolled in grade 2 who identify as some other race alone" -dc/ye0clyfeh6hg7,high school grads who are male and identify as multiracial;male high school graduates who are multiracial;high school graduates who are male and multiracial;multiracial males who have graduated from high school -dc/yf4jd2tbl49cc,the number of men who did not work full time;the percentage of men who did not work full time;the proportion of men who did not work full time;the male population who did not work full time -dc/yfk47wfg2dqh7,coal inventory for other industrial use;coal supply for other industrial use;coal reserves for other industrial use;coal stockpile for other industrial use -dc/ygegm32ht78jf,the number of white non-hispanic women who are not working full-time;the percentage of white non-hispanic women who are not working full-time;the proportion of white non-hispanic women who are not working full-time;the share of white non-hispanic women who are not working full-time -dc/ygzrrxpn9bjt9,the number of american indian or alaska native women who are widowed;the percentage of american indian or alaska native women who are widowed;the proportion of american indian or alaska native women who are widowed;the number of american indian or alaska native women who are living as widows -dc/ykmg1pn1ee421,native hawaiian or other pacific islander students in grade 6;number of native hawaiian or other pacific islander students in grade 6;how many native hawaiian or other pacific islander students are in grade 6;native hawaiian or other pacific islander student enrollment in grade 6 -dc/yksgwhwsbtv9c,people of asian descent who are in prison;asian prisoners;asians who are incarcerated;asians who are behind bars -dc/ym3bfmz5e91gg,the number of white people who were born in another country and now live in the united states;the number of white people in the united states who are foreign-born;population of white people born outside of the united states;white population of foreign origin -dc/ymrh67bhjhzj2,"white, non-hispanic, unmarried females;females who are white, non-hispanic, and unmarried;white non-hispanic unmarried females;unmarried white non-hispanic women" -dc/yneg81m4e49z6,white men in prison;the number of white men in jail;the percentage of white men who are incarcerated;the incarcerated white male population -dc/yqkck35sv1k9c,number of people speaking fluent english in non-institutional group quarters;proportion of people in non-institutional group quarters who speak fluent english;percentage of people in non-institutional group quarters who speak fluent english -dc/yrtqz8lswyfm4,what percentage of native hawaiian or other pacific islander women do not work full-time?;what is the proportion of native hawaiian or other pacific islander women who are not working full-time?;what is the number of native hawaiian or other pacific islander women who are not working full-time?;the percentage of native hawaiian or other pacific islander women who do not work full-time is high -dc/ys49z0lqtj9g3,the average income of women with graduate degrees;the median income for women with graduate degrees;the typical income of women with graduate degrees;the average salary of women with graduate degrees -dc/ytdgjr0dcff1g,"man, currently married, separated, married spouse absent" -dc/yvzmwphpsbbgf,number of incarcerated men in privately-run out-of-state facilities;total number of inmate males in privately-operated out-of-state institutions;sum of incarcerated males in privately-run out-of-state organizations;male inmate populace in privately-owned out-of-state places -dc/yx0mdj3dnk3mb,asians and pacific islanders who were born in another country and speak english well;foreign-born asians and pacific islanders who are fluent in english;english-speaking asians and pacific islanders who were born outside the united states;asians and pacific islanders who were born abroad and are proficient in english -dc/yx31s3ylzj28g,hispanic men who work full time;full-time hispanic male workers;hispanic men who work full-time jobs;hispanic men who are employed full-time -dc/z28z4j6449pzh,the population of white men who are widowed;the number of white men who are no longer married because their wife has died;the number of white men who are living as widowers;white men who are widowed -dc/z29z7w7ldnwl4, -dc/z5rhq3c5qd5pd,"female high school graduates who are white and non-hispanic;non-hispanic white female high school graduates;white female high school graduates who are not hispanic;high school graduates who are white, female, and non-hispanic" -dc/z6b28mspkx2zg,the population of white non-hispanic males who have not graduated from high school;white non-hispanic males with less than a high school diploma;white non-hispanic males who have not attained a high school diploma -dc/z6w4rxbxb4eg8,number of incarcerated people aged 0 to 17;number of children in prison;number of incarcerated youth;number of incarcerated minors -dc/z89e0y0bvfhq2,the number of white and non-hispanic students enrolled in grade 9;the percentage of white and non-hispanic students enrolled in grade 9;the proportion of white and non-hispanic students enrolled in grade 9;the share of white and non-hispanic students enrolled in grade 9 -dc/zcth2y8fqte1f,how many people in sales and office occupations walk?;how many sales and office workers walk?;what is the number of people in sales and office occupations who walk?;what is the number of sales and office workers who walk? -dc/zdb0f7sj2419d,hispanic people in prison;hispanic prisoners;hispanic inmates;hispanic people in jail -dc/zf0wjwwyddbj4,number of people who work in the military and work from home;number of military occupations that can be done from home;number of people who work in the military and telecommute;number of military occupations that can be done remotely -dc/zgct0hgv0l8zf,aids deaths in the male prison population;aids-related deaths in male prisons;male prisoners who died of aids;aids-related deaths in incarcerated males -dc/zh1v0wmmnxzjg, -dc/zh4sly3kmwbwg,foreign-born population who speak english at a moderate level -dc/zjjfp97521yv9,african american women with a high school diploma or ged;african american females who have graduated from high school or earned a ged;african american women who have completed high school or earned a ged;african american women with a ged -dc/zjlfv8d8v14f8,the percentage of multiracial males with college or associate degrees;the number of multiracial males with college or associate degrees;the proportion of multiracial males with college or associate degrees;the share of multiracial males with college or associate degrees -dc/zk4npe0wztz1,the average income of people aged 16 and above in the civilian workforce;the middle value of the income range for people aged 16 and above in the civilian workforce;the average income of people aged 16 and over in the civilian workforce;the middle income of people aged 16 and over in the civilian workforce -dc/zkwm5fc58dy17,people who are widowed and were born in the state they currently live in;people who are widowed and are residents of the state they were born in;people who are widowed and live in the state they were born in;people who are widowed and were born in the same state they currently live in -dc/zmp6qzgzp7ly2,asian students who have graduated from professional schools;asian people who have completed their education at professional schools;asian graduates of professional schools;asian people who have earned degrees from professional schools -dc/znsjvyem00w63,population of white widows;women who are white and widowed;the white female widow population;the number of white women who are widowed -dc/zq864lhfql079,white school enrollment;number of white students in school;percentage of white students in school;white school population -dc/zqjml3mcrpsgd,the typical income of female college graduates;the average salary of women with degrees;the median income for female college graduates;the typical income of women who have degrees -dc/zrtnqhw8mhdp1,females who are multiracial and have less than a high school diploma -dc/ztt7qcdctxdv6,the number of people of other native races;the population of other native peoples;the number of people who identify as other native races;other native populations -dc/zv5g19y8dl9r1,the number of multiracial students enrolled in college undergraduate programs;the percentage of multiracial students enrolled in college undergraduate programs;the proportion of multiracial students enrolled in college undergraduate programs;multiracial students in college -dc/zvr6djt1p9gj3,the number of hispanic students in middle school;the percentage of hispanic students in middle school;the proportion of hispanic students in middle school;the share of hispanic students in middle school -dc/zwsmx83980w3f,the number of african men who are divorced;the percentage of african men who are divorced;the proportion of african men who are divorced;the prevalence of divorce among african men -dc/zxgqmcexf910g,black students in sixth grade;sixth-grade african american students;african american students in the sixth grade;sixth-grade students who are african american -dc/zy9c697cnp5hb,the number of multiracial males with bachelor's degrees or higher;the percentage of multiracial males with bachelor's degrees or higher;the proportion of multiracial males with bachelor's degrees or higher;the prevalence of multiracial males with bachelor's degrees or higher -indianCensus/Count_Person_Religion_Buddhist,how many buddhists are there in the world?;what is the number of buddhists in the world?;what is the global buddhist population?;what is the worldwide buddhist population? -indianCensus/Count_Person_Religion_Buddhist_Female,the number of buddhist women;the population of buddhist women;the female buddhist population;the number of women who are buddhist -indianCensus/Count_Person_Religion_Buddhist_Illiterate,illiterate buddhists;buddhists who are illiterate;people who are illiterate and follow buddhism;illiterate people who practice buddhism -indianCensus/Count_Person_Religion_Buddhist_Illiterate_Female,the number of illiterate buddhist women;the proportion of buddhist women who are illiterate;female population of illiterate buddhists;buddhism female population who can't read -indianCensus/Count_Person_Religion_Buddhist_Illiterate_Male,men who cannot read and write and practice buddhism;buddhist men who cannot read and write;illiterate buddhist men;men who are buddhist and cannot read and write -indianCensus/Count_Person_Religion_Buddhist_Illiterate_Rural,the number of illiterate buddhists in rural areas;the percentage of illiterate buddhists in rural areas;the proportion of illiterate buddhists in rural areas;the share of illiterate buddhists in rural areas -indianCensus/Count_Person_Religion_Buddhist_Illiterate_Urban,illiterate buddhists in cities;urban buddhist illiterates;illiterate buddhists in urban areas;buddhists who are illiterate in urban areas -indianCensus/Count_Person_Religion_Buddhist_Literate,the number of buddhists who can read and write;the percentage of buddhists who can read and write;the proportion of buddhists who can read and write;the literacy rate of buddhists -indianCensus/Count_Person_Religion_Buddhist_Literate_Female, -indianCensus/Count_Person_Religion_Buddhist_Literate_Male,number of male buddhists who can read;number of literate male buddhists;number of buddhist men who can read;number of literate buddhist men -indianCensus/Count_Person_Religion_Buddhist_Literate_Rural,teaches buddhist people in the countryside;educates buddhists in rural areas;helps buddhists in rural areas learn to read and write;provides literacy education to buddhists in rural areas -indianCensus/Count_Person_Religion_Buddhist_Literate_Urban,the percentage of buddhists who can read and write in urban areas;the number of buddhists who can read and write in urban areas;the proportion of buddhists who can read and write in urban areas;the number of buddhists who are literate in urban areas -indianCensus/Count_Person_Religion_Buddhist_MainWorker,buddhists who are main workers;buddhists who work full-time;buddhists who are employed;buddhists who have jobs -indianCensus/Count_Person_Religion_Buddhist_MainWorker_AgriculturalLabourers,buddhists who work in agriculture;farmers who practice buddhism;people who practice buddhism and work in agriculture;buddhists who work on farms -indianCensus/Count_Person_Religion_Buddhist_MainWorker_Cultivators,the most important buddhist practitioners;the most devoted buddhist followers;the most dedicated buddhist disciples;the most fervent buddhist believers -indianCensus/Count_Person_Religion_Buddhist_MainWorker_Female,female buddhist heads of household -indianCensus/Count_Person_Religion_Buddhist_MainWorker_HouseholdIndustries,household industries with the most buddhist workers;industries with the most buddhist workers in the household sector;industries with the highest concentration of buddhist workers;industries with the highest proportion of buddhist workers -indianCensus/Count_Person_Religion_Buddhist_MainWorker_Male,men who are buddhist and work full-time -indianCensus/Count_Person_Religion_Buddhist_MainWorker_OtherWorkers, -indianCensus/Count_Person_Religion_Buddhist_MainWorker_Rural,most buddhists live in rural areas;the majority of buddhists live in rural areas;the largest buddhist population is found in rural areas;the majority of buddhists live in the countryside -indianCensus/Count_Person_Religion_Buddhist_MainWorker_Urban,urban buddhist workers;urban buddhist primary earners -indianCensus/Count_Person_Religion_Buddhist_Male,men who practice buddhism;buddhist men;male followers of buddhism;men who follow the teachings of buddha -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker,buddhism and marginal workers;buddhism's relationship with marginal workers;the role of buddhism in the lives of marginal workers;how buddhism can help marginal workers -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_AgriculturalLabourers,buddhist farmers;buddhist agricultural workers;poor farmers who follow buddhism;buddhist farmers who are struggling to make ends meet -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_Cultivators,marginal buddhist cultivators;buddhist marginal cultivators;cultivators on the margins of buddhism -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_Female,buddhist women who are marginalized in the workforce;5 buddhist women who are marginalized in society -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_HouseholdIndustries,"buddhist workers in the informal economy;buddhist workers in informal, family-run businesses;buddhist workers in family-run businesses;buddhist workers in the informal, low-wage economy" -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_Male,men who are buddhist and work in low-paying jobs;buddhist men who are struggling to make ends meet;buddhist men who are marginalized;buddhist men who are employed in low-wage positions -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_OtherWorkers, -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_Rural,buddhist workers in rural areas who are disadvantaged;buddhist workers in rural areas who are marginalized -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker_Urban,urban buddhist blue-collar workers;marginalized buddhists who live in cities;marginal buddhist workers in urban areas -indianCensus/Count_Person_Religion_Buddhist_NonWorker,buddhist non-clergy;buddhist non-monks;people who don't work in buddhism;those who don't work in the buddhist faith -indianCensus/Count_Person_Religion_Buddhist_NonWorker_Female,female buddhists who are not employed;unemployed buddhist women;buddhist women who are not in the workforce;buddhist women who do not have a job -indianCensus/Count_Person_Religion_Buddhist_NonWorker_Male,men who are buddhist and do not work;buddhist men who are unemployed;non-working buddhist men;men who are buddhist and are not employed -indianCensus/Count_Person_Religion_Buddhist_NonWorker_Rural,people who do not work and are buddhist in rural areas;non-working buddhists in rural areas;buddhist people who do not work in rural areas;people in rural areas who are buddhist and do not work -indianCensus/Count_Person_Religion_Buddhist_NonWorker_Urban,urban buddhists who are not employed;buddhists in cities who don't work;urban buddhists who are unemployed;buddhists in cities who are not working -indianCensus/Count_Person_Religion_Buddhist_Rural,number of buddhists in rural areas;what percentage of the population in rural areas is buddhist;what is the buddhist population in rural areas;buddhist population in rural areas -indianCensus/Count_Person_Religion_Buddhist_Rural_Female,the number of women who practice buddhism in rural areas;the percentage of women who practice buddhism in rural areas;the proportion of women who practice buddhism in rural areas;the incidence of buddhism among women in rural areas -indianCensus/Count_Person_Religion_Buddhist_Rural_Male,number of male buddhists in rural areas;number of rural male buddhists;number of male buddhists in the countryside;number of rural buddhists who are male -indianCensus/Count_Person_Religion_Buddhist_Urban,city-dwelling buddhists;buddhists who live in cities;urbanites who practice buddhism;buddhists who live in urban areas -indianCensus/Count_Person_Religion_Buddhist_Urban_Female,female buddhists living in cities;urban buddhist women;women who practice buddhism in cities;city-dwelling buddhist women -indianCensus/Count_Person_Religion_Buddhist_Urban_Male,population of male buddhists in urban areas;number of male buddhists in cities;male buddhists living in urban areas;male population of buddhists in urban areas -indianCensus/Count_Person_Religion_Buddhist_Workers,the number of buddhist workers;the total number of workers who are buddhist;the number of people who are buddhist and who are also workers;the number of people who are employed and who are also buddhist -indianCensus/Count_Person_Religion_Buddhist_Workers_Female,number of buddhist female workers;population of buddhist women who work;the number of buddhist female workers;the population of buddhist female workers -indianCensus/Count_Person_Religion_Buddhist_Workers_Male,number of male buddhist workers;number of buddhist male workers;number of working buddhist men;number of buddhist men who work -indianCensus/Count_Person_Religion_Buddhist_Workers_Rural,people who work in rural areas and practice buddhism;workers in rural areas who are buddhist;buddhists who work in rural areas;rural buddhist workers -indianCensus/Count_Person_Religion_Buddhist_Workers_Urban,buddhists who work in cities;buddhist workers in cities;buddhist workers in urban settings;buddhists who work in urban areas -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6,number of buddhists under 6 years old;number of buddhists younger than 6 years old;number of buddhists aged 0-5;number of buddhists aged 0-6 -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Female,number of buddhist females under 6 years old;number of buddhist girls under 6;buddhist female population under 6;number of buddhist females aged 6 or less -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Male,number of buddhist males under 6 years old;count of buddhist boys under 6;number of buddhist males aged 0-5;number of buddhist boys aged 0-5 -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural,the number of buddhists under the age of 6 in rural areas;the number of buddhists in rural areas who are under the age of 6;the percentage of the buddhist population in rural areas who are under the age of 6;the number of buddhists in rural areas who are younger than 6 -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural_Female,number of buddhist girls under 6 in rural areas;number of buddhist female children under 6 in rural areas;number of buddhist girls under 6 in the countryside;number of buddhist girls under 6 in rural locations -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural_Male,the number of rural buddhist males aged 6 years or less;the rural buddhist male population under the age of 6;the number of buddhist males living in rural areas who are 6 years old or younger;the population of buddhist males aged 6 years or less who live in rural areas -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban,urban buddhists under the age of 6;buddhists in urban areas aged 6 and under;buddhists aged 6 and under living in urban areas;urban buddhists aged 6 and younger -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban_Female,number of buddhist girls under 6 in cities;number of buddhist female children under 6 in urban areas;number of buddhist girls under 6 in urban centers;number of buddhist female children under 6 in urban settlements -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban_Male,boys who are buddhist and under the age of 6 in urban areas;young buddhist boys in urban areas;urban buddhist boys under the age of 6;buddhist boys under the age of 6 who live in cities -indianCensus/Count_Person_Religion_Christian,the number of christians in the united states;the christian population of the united states;the percentage of people in the united states who are christian;the proportion of the united states population that is christian -indianCensus/Count_Person_Religion_Christian_Female,1 female christians;3 women who identify as christian;4 the number of women who are christian;5 the female christian community -indianCensus/Count_Person_Religion_Christian_Illiterate,the number of christians who cannot read or write;the percentage of christians who are illiterate;the proportion of christians who cannot read or write;the number of christians who cannot read -indianCensus/Count_Person_Religion_Christian_Illiterate_Female,women who are illiterate in christianity;women who cannot read or write the christian faith;women who are not educated in christianity;women who are not familiar with the christian faith -indianCensus/Count_Person_Religion_Christian_Illiterate_Male,men who are christian and illiterate;population of christian men who are illiterate;male christian population who cannot read or write;christian men who are unable to read or write -indianCensus/Count_Person_Religion_Christian_Illiterate_Rural,illiterate christians in rural areas;christians who are illiterate in rural areas;illiterate christians who live in rural areas;christians who are illiterate and live in rural areas -indianCensus/Count_Person_Religion_Christian_Illiterate_Urban,urban christians who cannot read or write;christians in cities who cannot read or write;illiterate christians living in cities;christians who cannot read or write in urban areas -indianCensus/Count_Person_Religion_Christian_Literate,christians who can read;christians who are literate;christians who are educated;christians who are well-read -indianCensus/Count_Person_Religion_Christian_Literate_Female,women who are christian and can read;female christians who can read;christian women who can read;women who are christian and literate -indianCensus/Count_Person_Religion_Christian_Literate_Male,christian men who can read and write;male christians who are literate;christian men who are educated;men who are christian and literate -indianCensus/Count_Person_Religion_Christian_Literate_Rural,christians in rural areas who can read and write;rural christians who are literate;christians in rural areas who are well-read;christians in rural areas who are able to read and write -indianCensus/Count_Person_Religion_Christian_Literate_Urban,the number of christians who can read and write in cities;the percentage of christians who can read and write in cities;the proportion of christians who can read and write in cities;the literacy rate of christians in cities -indianCensus/Count_Person_Religion_Christian_MainWorker, -indianCensus/Count_Person_Religion_Christian_MainWorker_AgriculturalLabourers,"the main occupation of the population is agricultural labor, and the majority religion is christianity;most people in this population are christian agricultural laborers;the majority of the population is christian agricultural laborers;christianity is the majority religion, and agricultural labor is the main occupation" -indianCensus/Count_Person_Religion_Christian_MainWorker_Cultivators,christian growers;christian planters;christian cultivators;people who follow the teachings of jesus christ -indianCensus/Count_Person_Religion_Christian_MainWorker_Female,female christian heads of household -indianCensus/Count_Person_Religion_Christian_MainWorker_HouseholdIndustries,christians who work in the home;christian homemakers;christians who work in the household;christians who work in the home industry -indianCensus/Count_Person_Religion_Christian_MainWorker_Male,male christian breadwinners -indianCensus/Count_Person_Religion_Christian_MainWorker_OtherWorkers,other workers besides christians -indianCensus/Count_Person_Religion_Christian_MainWorker_Rural,christians are the main workers in rural areas;the majority of workers in rural areas are christians;christianity is the dominant religion among workers in rural areas;christians are the primary workforce in rural areas -indianCensus/Count_Person_Religion_Christian_MainWorker_Urban,christians are the majority of urban workers;the majority of urban workers are christians;most urban workers are christians;christians make up the majority of urban workers -indianCensus/Count_Person_Religion_Christian_Male,population of men who are christian;the number of christian men;the male christian demographic;the male christian population -indianCensus/Count_Person_Religion_Christian_MarginalWorker,population of christian marginal workers;population of christian workers who are marginalized;population of christian workers who are on the margins;population of christian workers who are working in low-wage jobs -indianCensus/Count_Person_Religion_Christian_MarginalWorker_AgriculturalLabourers,poor christian farmers;christian agricultural workers;christian agricultural workers who are struggling to make ends meet;christian laborers who work in the agricultural industry and are living in poverty -indianCensus/Count_Person_Religion_Christian_MarginalWorker_Cultivators,christians who are on the fringes of society;christians who are not very committed to their faith;christians who are not very involved in their church;marginal christians -indianCensus/Count_Person_Religion_Christian_MarginalWorker_Female,christian women who are marginalized in the workforce;female christians who are marginalized in the workforce;christian women who are discriminated against in the workplace;christian women who are not given equal opportunities in the workplace -indianCensus/Count_Person_Religion_Christian_MarginalWorker_HouseholdIndustries,christian workers in marginal household industries;workers in christian household industries on the margins;those who are employed by christian-based businesses -indianCensus/Count_Person_Religion_Christian_MarginalWorker_Male,christian male marginal workers;christian men who are marginal workers;christian male workers who are marginal;christian men who are on the margins of society -indianCensus/Count_Person_Religion_Christian_MarginalWorker_OtherWorkers,laity who work in church-related positions -indianCensus/Count_Person_Religion_Christian_MarginalWorker_Rural,rural christian workers who are on the margins -indianCensus/Count_Person_Religion_Christian_MarginalWorker_Urban,christianity and marginal workers in cities;christianity and the working poor in cities;christianity and the marginalized in cities;christianity and the marginalized in urban areas -indianCensus/Count_Person_Religion_Christian_NonWorker,people who are christian and don't work;christians who aren't employed;christians who are unemployed;christians who don't have jobs -indianCensus/Count_Person_Religion_Christian_NonWorker_Female,women who identify as christian and do not have a job;female christians who are unemployed;christian women who are not in the workforce;women who are christian and don't work -indianCensus/Count_Person_Religion_Christian_NonWorker_Male,men who are christian and do not work;male christians who are not employed;non-working christian men;christian men who are unemployed -indianCensus/Count_Person_Religion_Christian_NonWorker_Rural,people who are christian and don't work in rural areas;non-working christians in rural areas;christians who are unemployed in rural areas;rural christians who are not employed -indianCensus/Count_Person_Religion_Christian_NonWorker_Urban,the number of christians who live in cities and do not have jobs;the percentage of christians who live in cities and do not have jobs;people who identify as christian and live in urban areas but do not have a job;people who live in cities and identify as christian but do not have a job -indianCensus/Count_Person_Religion_Christian_Rural,people who practice christianity in rural areas;rural christians;christians who live in rural areas;people who live in rural areas and are christian -indianCensus/Count_Person_Religion_Christian_Rural_Female,the number of christian women living in rural areas;the percentage of christian women living in rural areas;the proportion of christian women living in rural areas;the christian female population in rural areas -indianCensus/Count_Person_Religion_Christian_Rural_Male,men who identify as christian and live in rural areas;rural christian males;christian men in rural communities;men who are christian and live in the countryside -indianCensus/Count_Person_Religion_Christian_Urban,the number of christians in cities;the percentage of christians in urban areas;the prevalence of christianity in cities;the distribution of christians in urban areas -indianCensus/Count_Person_Religion_Christian_Urban_Female,the number of christian women living in urban areas;the percentage of christian women living in urban areas;the proportion of christian women living in urban areas;the christian female population in cities -indianCensus/Count_Person_Religion_Christian_Urban_Male,christian men in cities;urban christian men;men who are christian and live in cities;city-dwelling christian men -indianCensus/Count_Person_Religion_Christian_Workers,christian workers;christian laborers;christian employees;christian people who work -indianCensus/Count_Person_Religion_Christian_Workers_Female,number of female christian workers;number of christian female workers in the us;christian female workforce;female christian workers in the us -indianCensus/Count_Person_Religion_Christian_Workers_Male,men who are christian;christian men;men who practice christianity;male christian workers -indianCensus/Count_Person_Religion_Christian_Workers_Rural,"here are 5 different ways of saying ""christian rural workers"":;people who work in rural areas and are christian;christian farmers;christian people who work on farms" -indianCensus/Count_Person_Religion_Christian_Workers_Urban,urban christian workers;christian workers in cities;christians who work in urban areas;christian professionals in cities -indianCensus/Count_Person_Religion_Christian_YearsUpto6,the number of christians under the age of 6;the percentage of christians who are under the age of 6;the proportion of christians who are under the age of 6;the christian population aged 0-5 -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Female,the number of christian females aged 6 and under;the christian female population under the age of 6;the number of christian females aged 6 or less;the christian female population aged 6 and younger -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Male,christian males under the age of 6;the population of christian males aged 6 or younger;the number of christian males aged 6 or younger;christian males aged 6 and under -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural, -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural_Female,number of rural christian females aged 6 years or less;number of christian females aged 6 years or less living in rural areas;number of rural christian females under the age of 7;number of christian females under the age of 7 living in rural areas -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural_Male,the number of rural christian males aged 6 years or less;the population of rural christian males under the age of 7;the number of rural christian boys aged 6 or under;the number of rural christian males aged 6 and younger -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban,urban christians under the age of six;christians in urban areas who are six years old or younger;urban christians aged six and under;christians in urban areas who are six years old or less -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban_Female,number of christian women living in urban areas for 6 years or less;number of female christians living in cities for 6 years or less;number of christian women living in urban areas for at most 6 years;number of female christians living in cities for at most 6 years -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban_Male,number of christian males aged 6 years or less living in urban areas;number of christian male children aged 6 years or less living in urban areas;number of christian male under-6s living in urban areas;number of christian male infants and toddlers living in urban areas -indianCensus/Count_Person_Religion_Hindu,hinduism's population;the number of people who practice hinduism;the global hindu population;the number of people who follow hinduism -indianCensus/Count_Person_Religion_Hindu_Female,the number of female hindus in the world;the number of women who practice hinduism;the female population of hindus;the number of female hindus worldwide -indianCensus/Count_Person_Religion_Hindu_Illiterate,how many hindus are illiterate?;what is the percentage of hindus who are illiterate?;number of illiterate hindus;percentage of hindus who are illiterate -indianCensus/Count_Person_Religion_Hindu_Illiterate_Female,female illiteracy rate in india;percentage of illiterate women in india;number of illiterate women in india;illiterate women in india -indianCensus/Count_Person_Religion_Hindu_Illiterate_Male,illiterate hindu males;hindu males who are illiterate;the number of illiterate hindu males;the percentage of hindu males who are illiterate -indianCensus/Count_Person_Religion_Hindu_Illiterate_Rural,the percentage of hindus who are illiterate in rural areas;the proportion of hindus who are illiterate in rural areas;the percentage of hindus in rural areas who are illiterate;illiteracy rate in rural areas among hindus -indianCensus/Count_Person_Religion_Hindu_Illiterate_Urban, -indianCensus/Count_Person_Religion_Hindu_Literate,hindus who can read and write;hindus who are literate;hindus who are well-read;hindus who are learned -indianCensus/Count_Person_Religion_Hindu_Literate_Female,female hindu population who can read and write;the number of hindu women who are literate;the percentage of hindu women who are literate;the proportion of hindu women who are literate -indianCensus/Count_Person_Religion_Hindu_Literate_Male,male hindu population who can read and write;hindu men who are literate;the number of hindu men who can read and write;the percentage of hindu men who can read and write -indianCensus/Count_Person_Religion_Hindu_Literate_Rural,rural hindus who can read and write;hindus living in the countryside who can read and write;hindus who live in rural areas and are literate;hindus who live in the countryside and can read and write -indianCensus/Count_Person_Religion_Hindu_Literate_Urban, -indianCensus/Count_Person_Religion_Hindu_MainWorker,hindu workers -indianCensus/Count_Person_Religion_Hindu_MainWorker_AgriculturalLabourers,hindu farmers;hindu agricultural workers;hindu farmhands;hindu laborers -indianCensus/Count_Person_Religion_Hindu_MainWorker_Cultivators,hindu people who cultivate the land;hindu people who cultivate land -indianCensus/Count_Person_Religion_Hindu_MainWorker_Female,female hindu population in the workforce;population of hindu women who are employed;number of hindu women who work;percentage of hindu women who are employed -indianCensus/Count_Person_Religion_Hindu_MainWorker_HouseholdIndustries,the majority of workers in household industries are hindu;hindu workers make up the largest percentage of workers in household industries;household industries employ more hindu workers than any other type of industry;hindu workers are the most common type of worker in household industries -indianCensus/Count_Person_Religion_Hindu_MainWorker_Male,most hindu workers are men;the main workers in the hindu community are men -indianCensus/Count_Person_Religion_Hindu_MainWorker_OtherWorkers,"hindu and other workers;other workers, including hindus" -indianCensus/Count_Person_Religion_Hindu_MainWorker_Rural,hindu workers in the countryside;rural hindu workers;hindu rural laborers;hindu workers in rural areas -indianCensus/Count_Person_Religion_Hindu_MainWorker_Urban,urban hinduism;hinduism in cities;hinduism in urban areas;hinduism in the city -indianCensus/Count_Person_Religion_Hindu_Male,the number of men who practice hinduism;the male population of hindus;the male followers of hinduism;male hindu population -indianCensus/Count_Person_Religion_Hindu_MarginalWorker,hindu workers on the margins of society;hindu workers who are marginalized -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_AgriculturalLabourers,hindu farmers who struggle to make ends meet -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_Cultivators,hindu smallholders -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_Female,hindu women who are marginalized workers;hindu women who are in vulnerable employment -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_HouseholdIndustries,"hindu workers in precarious employment;hindu workers in informal, home-based businesses" -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_Male,hindu men who work in low-paying jobs;hindu men who are struggling to make ends meet;hindu men who are underemployed;hindu men who are working in the informal economy -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_OtherWorkers,hindu workers who are disadvantaged;hindu workers who are discriminated against;hindu workers who are oppressed -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_Rural,hindu workers in the countryside who are struggling to make ends meet;hindu workers in rural areas who are living in poverty;hindu workers in rural areas who are struggling to get by;hindu workers in rural areas who are living in difficult conditions -indianCensus/Count_Person_Religion_Hindu_MarginalWorker_Urban,hindu workers in urban areas who are struggling to make ends meet;hindu workers in urban areas who are struggling to find stable employment;hindu urban workers who are struggling to make ends meet;hindu urban workers who are marginalized -indianCensus/Count_Person_Religion_Hindu_NonWorker,hindus who are not working;hindus who are unemployed;hindus who are not in the workforce;hindus who are not employed -indianCensus/Count_Person_Religion_Hindu_NonWorker_Female,hindu women who are not employed;hindu women who do not work;hindu women who are unemployed;hindu women who are not in the workforce -indianCensus/Count_Person_Religion_Hindu_NonWorker_Male,non-working hindu men;hindu men who are not working;hindu men who are unemployed;hindu men who are not employed -indianCensus/Count_Person_Religion_Hindu_NonWorker_Rural,non-working hindus in rural areas;rural hindus who don't work;hindus in rural areas who don't have jobs;hindus who live in rural areas and don't work -indianCensus/Count_Person_Religion_Hindu_NonWorker_Urban,people who are not working and are hindu in urban areas;hindu people who are not working in urban areas;non-working hindus in urban areas;hindus who are not working in cities -indianCensus/Count_Person_Religion_Hindu_Rural,the number of hindus living in rural areas;the percentage of hindus living in rural areas;the distribution of hindus across rural and urban areas;the rural hindu population -indianCensus/Count_Person_Religion_Hindu_Rural_Female,number of hindu women living in rural areas;population of hindu women in rural areas;percentage of hindu women living in rural areas;share of hindu women in rural areas -indianCensus/Count_Person_Religion_Hindu_Rural_Male,the number of hindu men living in rural areas;the number of hindu males living in rural areas;the population of hindu men in rural areas;the number of hindu males in rural areas -indianCensus/Count_Person_Religion_Hindu_Urban,the number of hindus living in cities;the number of hindus living in urban areas;the number of hindus living in metropolitan areas;the number of hindus living in urban centers -indianCensus/Count_Person_Religion_Hindu_Urban_Female,"female, urban, hindu;female, city-dwelling, hindu;female, urbanite, hindu;a population of females who live in urban areas and practice hinduism" -indianCensus/Count_Person_Religion_Hindu_Urban_Male,male hindu population in urban areas;hindu men living in cities;the number of hindu men living in urban areas;the population of hindu men in urban areas -indianCensus/Count_Person_Religion_Hindu_Workers,number of hindu workers;number of people who practice hinduism and are employed;number of people who are both hindu and working;number of people who identify as hindu and have a job -indianCensus/Count_Person_Religion_Hindu_Workers_Female,hindu women who work;female hindu employees;hindu ladies who have jobs;hindu women in the workforce -indianCensus/Count_Person_Religion_Hindu_Workers_Male,the number of hindu men who are employed;the number of hindu men who are working;the number of hindu men who are in the workforce;the number of hindu men who are employed or self-employed -indianCensus/Count_Person_Religion_Hindu_Workers_Rural,peasant hindu;hindu field worker;hindu agricultural worker;rural hindu laborer -indianCensus/Count_Person_Religion_Hindu_Workers_Urban,urban hindu workers;hindu workers in cities;hindus who work in cities;hindu city workers -indianCensus/Count_Person_Religion_Hindu_YearsUpto6,number of hindu children under 6 years old;population of hindus under 6 years old;number of hindu children aged 0-5;number of hindus below 6 years old -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Female,"the female hindu population is 6 years younger;the average age of a hindu female is 6 years less than the average age of a female in the general population;hindu females are, on average, 6 years younger than the general population;hindu females are, on average, 6 years younger than the average female" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Male,number of hindu males aged 6 years or less;hindu male population under 6 years old;number of hindu boys aged 6 years or less;hindu male population under 6 years of age -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural,hindus living in rural areas who are 6 years old or younger;hindus who are 6 years old or younger and live in rural areas;hindus under the age of 6 who live in rural areas;hindus who are 6 years old or younger and are rural residents -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural_Female,female hindu population in rural areas aged 6 years or less;number of hindu females aged 6 years or less in rural areas;percentage of hindu females aged 6 years or less in rural areas;hindu female population in rural areas under the age of 6 -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural_Male,number of hindu boys aged 0-6 in rural areas;number of male hindus aged 0-6 in rural areas;population of hindu boys aged 0-6 in rural areas;population of male hindus aged 0-6 in rural areas -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban,urban hindus aged 6 years or older;hindus in urban areas aged 6 years or older;hindus aged 6 years or older living in urban areas;hindus living in urban areas who are aged 6 years or older -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban_Female,the number of indian girls aged 6 or less living in urban areas;the population of indian females aged 6 or less in urban areas;the number of indian female children aged 6 or less living in urban areas;the population of indian female children aged 6 or less in urban areas -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban_Male, -indianCensus/Count_Person_Religion_Jain,how many people practice jainism?;how many jains are there in the world?;what is the population of jains?;what is the number of jains? -indianCensus/Count_Person_Religion_Jain_Female,jain women;women who follow jainism;jain female followers;jainism practitioners who are women -indianCensus/Count_Person_Religion_Jain_Illiterate,the number of jains who cannot read or write;the percentage of jains who are illiterate;the proportion of jains who are illiterate;the number of jains who do not have basic literacy skills -indianCensus/Count_Person_Religion_Jain_Illiterate_Female,the number of illiterate female jains;the percentage of female jains who are illiterate;the number of female jains who are not educated;the proportion of jain women who are illiterate -indianCensus/Count_Person_Religion_Jain_Illiterate_Male,population of illiterate jainist males;number of illiterate jainist males;jainist males who are illiterate;the number of illiterate jainist males -indianCensus/Count_Person_Religion_Jain_Illiterate_Rural,jains who are illiterate in rural areas;illiterate jains who live in rural areas;jains in rural areas who are illiterate;illiterate jains in rural areas -indianCensus/Count_Person_Religion_Jain_Illiterate_Urban,how many jains in urban areas can't read or write?;what percentage of jains in urban areas are illiterate?;what's the literacy rate among jains in urban areas?;what proportion of jains in urban areas are illiterate? -indianCensus/Count_Person_Religion_Jain_Literate, -indianCensus/Count_Person_Religion_Jain_Literate_Female,1 the percentage of jain women who can read and write;2 the number of jain women who are literate;3 the literacy rate of jain women;4 the proportion of jain women who are literate -indianCensus/Count_Person_Religion_Jain_Literate_Male,the number of jainist men who can read and write;the percentage of jainist men who are literate;the proportion of jainist men who are able to read and write;the number of jainist men who are educated -indianCensus/Count_Person_Religion_Jain_Literate_Rural,teach jains in the countryside how to read and write;provide literacy education to jains in rural areas;help jains in rural areas learn how to read and write;offer literacy classes to jains in rural areas -indianCensus/Count_Person_Religion_Jain_Literate_Urban,jains who can read and write in urban areas;urban jains who are literate;jains who live in cities and can read and write;jains who live in cities and have the ability to read and write -indianCensus/Count_Person_Religion_Jain_MainWorker,jain population in the workforce;number of jains in the workforce -indianCensus/Count_Person_Religion_Jain_MainWorker_AgriculturalLabourers,jains who are agricultural laborers;jain agricultural workers;jains who are employed in agriculture;jains who are farmers -indianCensus/Count_Person_Religion_Jain_MainWorker_Cultivators,jain people who work in agriculture;jains who work in the fields;jains who work with plants;jain people who cultivate crops -indianCensus/Count_Person_Religion_Jain_MainWorker_Female,jain women who are the main providers for their families;jain women who are the main income-earners in their families;jain women who are the main income earners in their households;jain women who are the main income earners in their families -indianCensus/Count_Person_Religion_Jain_MainWorker_HouseholdIndustries,jains are the main workers in household industries;jains are the main workforce in household industries;jains are the main employees in household industries;jains are the main laborers in household industries -indianCensus/Count_Person_Religion_Jain_MainWorker_Male,jain men who are the main income earners in their families;jain men who are the main providers for their dependents;male jains who are the main workers;jain men who are the main workers -indianCensus/Count_Person_Religion_Jain_MainWorker_OtherWorkers,jainism practitioners -indianCensus/Count_Person_Religion_Jain_MainWorker_Rural,rural jains who are the main providers for their families;rural jains who are the main earners in their families;rural jain farmers;rural jain agricultural workers -indianCensus/Count_Person_Religion_Jain_MainWorker_Urban,urban jains' main occupations;the jobs that jains in cities mostly do;the main professions of jains in urban areas;the most popular jobs for jains in cities -indianCensus/Count_Person_Religion_Jain_Male,number of male jains;count of male jains;how many male jains are there;how many jains are male -indianCensus/Count_Person_Religion_Jain_MarginalWorker,jain workers who are not treated fairly;jain workers who are not given equal opportunities;jain workers who are not given the same opportunities as other workers -indianCensus/Count_Person_Religion_Jain_MarginalWorker_AgriculturalLabourers,jain farmers who are barely getting by;jain marginal agricultural laborers;jain farmers who earn little -indianCensus/Count_Person_Religion_Jain_MarginalWorker_Cultivators,jain smallholders -indianCensus/Count_Person_Religion_Jain_MarginalWorker_Female,jain women who are marginalized workers -indianCensus/Count_Person_Religion_Jain_MarginalWorker_HouseholdIndustries,jains who are marginal workers in household industries -indianCensus/Count_Person_Religion_Jain_MarginalWorker_Male,male jains who are marginalized;jain men who are marginalized;jain men who are on the margins of society -indianCensus/Count_Person_Religion_Jain_MarginalWorker_OtherWorkers,jainist marginal workers;jain workers who are marginalized;jain workers who are on the periphery of society;jain workers who are on the margins of society -indianCensus/Count_Person_Religion_Jain_MarginalWorker_Rural,"people who live in rural areas, people who practice jainism, and people who are marginal workers" -indianCensus/Count_Person_Religion_Jain_MarginalWorker_Urban,jains in the city who are struggling to make ends meet;jains who are marginalized in urban areas;jains who are living on the margins in urban areas;jainism marginal workers in urban areas -indianCensus/Count_Person_Religion_Jain_NonWorker,jainist people who don't work;jainist people who are unemployed;jainist people who are not employed;jainist people who are not in the workforce -indianCensus/Count_Person_Religion_Jain_NonWorker_Female,jain women who are not employed;jain women who do not work;jain women who are unemployed;jain women who are not gainfully employed -indianCensus/Count_Person_Religion_Jain_NonWorker_Male,men who are jains and do not work;jain men who are not employed;jain men who are unemployed;jain men who are not in the workforce -indianCensus/Count_Person_Religion_Jain_NonWorker_Rural,jains who don't work in rural areas;jains not working in rural areas;non-working jains in rural areas;jains who are not working in rural areas -indianCensus/Count_Person_Religion_Jain_NonWorker_Urban,jains who live in cities and do not have jobs;jains who live in urban areas and are unemployed;jains who live in cities and are not employed;jains who live in urban areas and do not work -indianCensus/Count_Person_Religion_Jain_Rural,how many jains live in rural areas?;what is the number of jains in rural areas?;what is the jain population in rural areas?;how many people in rural areas are jains? -indianCensus/Count_Person_Religion_Jain_Rural_Female,jain women in rural areas;rural jain women;women in jain rural areas;jain women in rural communities -indianCensus/Count_Person_Religion_Jain_Rural_Male,a rural male jain;a man who is jain and lives in a rural area;a jain man from the countryside;a jain living in a rural area who is a male -indianCensus/Count_Person_Religion_Jain_Urban,the number of jains in urban areas;the population of jains in cities;the number of jains living in urban areas;the number of jains in urban settings -indianCensus/Count_Person_Religion_Jain_Urban_Female,jain women in cities;urban jain women;jain women living in cities;jain women in urban areas -indianCensus/Count_Person_Religion_Jain_Urban_Male,"number of jain males living in cities;jain men in urban areas;jain population in urban areas, male;male jains in urban areas" -indianCensus/Count_Person_Religion_Jain_Workers,jain employees;jain workers;jain people who work;jains who work -indianCensus/Count_Person_Religion_Jain_Workers_Female,jain women who work;jain women in the workforce;jain women who have jobs;jain women who are employed -indianCensus/Count_Person_Religion_Jain_Workers_Male,number of jainist male workers;jainist male workforce;jainist male working population;jainist male employed population -indianCensus/Count_Person_Religion_Jain_Workers_Rural,jain workers in rural areas;jains who work in rural areas;jain workers in the countryside;jains who are employed in rural areas -indianCensus/Count_Person_Religion_Jain_Workers_Urban,number of jains working in cities;number of jain workers in urban areas;number of jains working in urban areas -indianCensus/Count_Person_Religion_Jain_YearsUpto6,jain population under 6 years old;number of jains aged 6 or younger;jains aged 6 and under;jain population aged 6 and below -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Female,jain female population under 6 years old;number of jain girls under 6 years old;jain female population aged 0-5;jain female population under the age of 6 -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Male,urban male jainists up to 6 years old;male jainists aged 6 and under in urban areas -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural,jains under 6 in rural areas;jain children under 6 in rural areas;jain kids under 6 in rural areas;jain under-6s in rural areas -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural_Female,1 the number of jain girls under the age of 6 living in rural areas;2 the population of jain females aged 6 or less in rural areas;3 the number of jain girls aged 6 or less living in the countryside;4 the number of jain females aged 6 or less living in the villages -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural_Male,jain boys in the countryside under the age of 6;jain boys in rural areas aged 6 or younger;jain boys in the countryside who are 6 years old or younger;jain boys in rural areas who are under the age of 6 -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban,number of jains aged 6 years or less in urban areas;jains aged 6 or younger in urban areas;jain population aged 6 or less in urban areas;number of jains aged 6 or younger in urban areas -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban_Female,the number of jainist females 6 years old or younger living in urban areas;the population of jainist females 6 years old or younger living in cities;the number of jainist girls 6 years old or younger living in urban areas;the population of jainist girls 6 years old or younger living in cities -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban_Male,number of jain males aged 6 years or less in urban areas;jain male population aged 6 years or less in urban areas;jain male population in urban areas aged 6 years or less;number of jain males in urban areas aged 6 years or less -indianCensus/Count_Person_Religion_Muslim,the number of people who follow islam;the number of muslims in the world;the global muslim population;the number of people who practice islam -indianCensus/Count_Person_Religion_Muslim_Female,the number of muslim women;the muslim female demographic;the muslim female population;the number of women who identify as muslim -indianCensus/Count_Person_Religion_Muslim_Illiterate,the number of muslims who cannot read or write;the percentage of muslims who are illiterate;the proportion of muslims who are illiterate;the muslim population that is illiterate -indianCensus/Count_Person_Religion_Muslim_Illiterate_Female, -indianCensus/Count_Person_Religion_Muslim_Illiterate_Male, -indianCensus/Count_Person_Religion_Muslim_Illiterate_Rural,illiteracy rate in rural islamic areas;the percentage of illiterate people in rural islamic areas;the number of illiterate people in rural islamic areas;the proportion of illiterate people in rural islamic areas -indianCensus/Count_Person_Religion_Muslim_Illiterate_Urban,people who live in cities and are muslim and cannot read or write;urban muslims who cannot read or write;illiterate muslims living in cities;illiterate muslims in urban areas -indianCensus/Count_Person_Religion_Muslim_Literate,muslims who can read and write;muslims who are educated;muslims who are literate;muslims who are well-read -indianCensus/Count_Person_Religion_Muslim_Literate_Female,number of muslim women who can read and write;number of literate muslim women;number of female muslims who are literate;number of muslim women with literacy skills -indianCensus/Count_Person_Religion_Muslim_Literate_Male,number of muslim men who can read and write;number of literate muslim men;number of male muslims who can read and write;number of male muslims who are literate -indianCensus/Count_Person_Religion_Muslim_Literate_Rural,muslims who can read and write in rural areas;muslims who are literate in rural areas;muslims who can read and write in the countryside;muslims who are literate in the countryside -indianCensus/Count_Person_Religion_Muslim_Literate_Urban,urban muslims who are literate;muslims who can read and write in urban areas;muslims in urban areas who are able to read and write;muslims who are literate and live in urban areas -indianCensus/Count_Person_Religion_Muslim_MainWorker, -indianCensus/Count_Person_Religion_Muslim_MainWorker_AgriculturalLabourers,most agricultural laborers are muslim;the majority of agricultural laborers are muslim;muslims make up the majority of agricultural laborers;agricultural laborers are predominantly muslim -indianCensus/Count_Person_Religion_Muslim_MainWorker_Cultivators,main muslim growers;main muslim planters;main muslim cultivators;the main muslim growers -indianCensus/Count_Person_Religion_Muslim_MainWorker_Female,muslim women who are the main providers for their families;muslim women who are the main breadwinners in their families;muslim women who are the main earners for their families -indianCensus/Count_Person_Religion_Muslim_MainWorker_HouseholdIndustries,muslim workers in household industries;household industries with a high percentage of muslim workers;industries where muslims are the majority of workers;industries where muslims are the main workforce -indianCensus/Count_Person_Religion_Muslim_MainWorker_Male,islamic men who are the main providers for their families -indianCensus/Count_Person_Religion_Muslim_MainWorker_OtherWorkers,other major muslim occupations;other muslim professions;other muslim jobs;other muslim careers -indianCensus/Count_Person_Religion_Muslim_MainWorker_Rural,muslims are the main workers in rural areas;the majority of workers in rural areas are muslim;muslims make up the largest percentage of workers in rural areas;muslims are a significant part of the workforce in rural areas -indianCensus/Count_Person_Religion_Muslim_MainWorker_Urban,muslims who worked in cities;urban muslims;muslims in urban areas;muslims who lived and worked in cities -indianCensus/Count_Person_Religion_Muslim_Male,the total population of muslim men;the number of men who practice islam;the population of muslim males;the male population of muslims -indianCensus/Count_Person_Religion_Muslim_MarginalWorker,islamic workers who are not well-off;islamic workers who are struggling;islamic workers who are disadvantaged;islamic workers who are marginalized -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_AgriculturalLabourers,muslim farmers who are struggling;muslim farm workers who are disadvantaged;muslim farmers who are marginalized;muslim agricultural laborers who are disadvantaged -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_Cultivators,muslim smallholders -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_Female,women in islamic societies who are marginalized in the workforce;women in islamic countries who are not able to participate fully in the workforce;women in islamic cultures who are not given equal opportunities in the workplace;women in islamic communities who are not able to achieve their full potential in the workforce -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_HouseholdIndustries,islamic workers in the informal economy;islamic workers in the home-based economy;islamic workers in the undeclared economy;workers in islamic household industries who are marginalized -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_Male,muslim men who are marginalized in the workforce;muslim men who are discriminated against in the workplace;muslim men who are not given equal opportunities in the workplace;muslim men who are not treated fairly in the workplace -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_OtherWorkers,workers who are muslim and marginalized;muslim workers who are on the margins of society;muslim workers who are marginalized;muslim workers who are disadvantaged -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_Rural,rural muslim workers who are marginalized;muslim workers in rural areas who are on the margins of society;muslim workers in rural areas who are disadvantaged;marginal muslim workers in rural areas -indianCensus/Count_Person_Religion_Muslim_MarginalWorker_Urban,urban islamic workers who are struggling to make ends meet;islamic workers in cities who are living paycheck to paycheck;islamic workers in urban areas who are struggling to get by;islamic workers in cities who are living below the poverty line -indianCensus/Count_Person_Religion_Muslim_NonWorker,the number of muslims who are not in the workforce;the percentage of muslims who are not employed;population of muslims who are not employed;number of muslims who are not working -indianCensus/Count_Person_Religion_Muslim_NonWorker_Female,women who are muslim and do not work;female muslims who are not employed;non-working muslim women;muslim women who are unemployed -indianCensus/Count_Person_Religion_Muslim_NonWorker_Male,muslim men who are not employed;muslim men who are unemployed;muslim men who are not working;muslim men who are jobless -indianCensus/Count_Person_Religion_Muslim_NonWorker_Rural,rural muslims who are not working;rural muslim non-workers;muslims who live in rural areas and are not working;muslims who live in rural areas and do not have a job -indianCensus/Count_Person_Religion_Muslim_NonWorker_Urban,people who live in urban areas and practice islam and are not employed -indianCensus/Count_Person_Religion_Muslim_Rural,the number of muslims living in rural areas;the percentage of muslims living in rural areas;the proportion of muslims living in rural areas;the muslim population of rural areas -indianCensus/Count_Person_Religion_Muslim_Rural_Female,number of muslim women living in rural areas;percentage of muslim women living in rural areas;muslim women in rural areas;rural muslim women -indianCensus/Count_Person_Religion_Muslim_Rural_Male,the number of muslim men living in rural areas;the total number of muslim men living in the countryside;the number of muslim men living in rural communities;the total number of muslim men living in rural places -indianCensus/Count_Person_Religion_Muslim_Urban,population of muslims in urban areas;number of muslims living in cities;proportion of muslims living in cities;number of muslims living in urban areas -indianCensus/Count_Person_Religion_Muslim_Urban_Female,the number of muslim women living in urban areas;the percentage of muslim women living in urban areas;the proportion of muslim women living in urban areas;the urban muslim female population -indianCensus/Count_Person_Religion_Muslim_Urban_Male,number of muslim men in urban areas;number of urban muslim men;total male muslim population in urban areas;total urban male muslim population -indianCensus/Count_Person_Religion_Muslim_Workers,muslim employees;muslim workers in the workforce;muslim workers in the united states;muslim workers in the workplace -indianCensus/Count_Person_Religion_Muslim_Workers_Female,muslim women in the workforce;muslim women who work;female muslim professionals;muslim women in the workplace -indianCensus/Count_Person_Religion_Muslim_Workers_Male,muslim men who work;muslim men in the workforce;muslim men who are employed;muslim men who have jobs -indianCensus/Count_Person_Religion_Muslim_Workers_Rural,number of muslims living and working in rural areas;percentage of muslims living and working in rural areas -indianCensus/Count_Person_Religion_Muslim_Workers_Urban,the number of muslim workers in urban areas;the total number of muslim workers in cities;the number of muslim workers in urban centers;the total number of muslim workers in metropolitan areas -indianCensus/Count_Person_Religion_Muslim_YearsUpto6,the number of muslims under the age of 6;the muslim population under 6 years old;the number of people who practice islam and are under 6 years old;the number of muslims who are 6 years old or younger -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Female,female population of islam below 6 years;number of islam female population below 6 years;islam female population under 6 years;islam female population aged 0-5 years -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Male,muslim male population under 6 in urban areas;muslim male children under 6 in urban areas;muslim boys under 6 in urban areas;muslim male population under 6 in cities -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural,the number of islamic people under 6 years old in rural areas;the number of islamic people aged 0-5 in rural areas;the percentage of islamic people under 6 years old in rural areas;the percentage of islamic people aged 0-5 in rural areas -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural_Female,number of rural muslim females aged 6 or less;number of muslim girls aged 6 or less living in rural areas;number of muslim females under the age of 6 living in rural areas;number of muslim girls under the age of 6 living in rural areas -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural_Male, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban,the number of muslims aged 6 years or less in urban areas;the muslim population under the age of 6 in urban areas;the percentage of muslims aged 6 years or less in urban areas;the number of muslims aged 6 years or less in urban areas as a percentage of the total population -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban_Female,number of female muslims under 6 years old in urban areas;number of muslim girls aged 6 and under in urban areas;number of muslim girls under 6 in urban areas;number of female muslim children under 6 in urban areas -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban_Male,number of muslim males aged 6 and under;muslim male population aged 6 or younger;number of islamic males aged 6 years or less;number of islamic male under-6s -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions,other religious groups in india;other religions and beliefs in india;other faiths in india;other beliefs in india -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Female,the number of women who practice other religions or persuasions;number of women who follow other religions or persuasions;total number of female adherents to other religions or persuasions;female population who practice other religions or persuasions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate_Female,"female population of other religions and persuasions who are illiterate;illiterate female population of other religions and persuasions;illiterate female population of other religions and persuasions who are not literate;women who cannot read or write, regardless of religion or persuasion" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate_Male,men who can't read or write and have different faiths;illiterate men who follow other religions and have other beliefs;men who can't read or write and have different faiths and beliefs;illiterate men who follow other religions and have other faiths and beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate_Rural,people who can't read or write in rural areas who don't follow the main religion;illiterate people in rural areas who don't follow the main religion;illiterate people in rural areas who don't believe in the main religion;illiteracy rates in rural areas among non-christian religions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate_Urban, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate_Female,women who can read and write and have different religious beliefs;women who are literate and have other religious beliefs;female population who are literate and have different faiths -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate_Male,men who are literate and have other religions and persuasions;men who can read and write and have different beliefs;men who can read and write and have different religious beliefs;male population who are literate and have different religious beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate_Rural,the number of people in rural india who are literate and not hindu or muslim;the number of literate people in rural india who are not of the hindu or muslim faith;the number of people in rural india who can read and write and are not hindu or muslim;the number of people in rural india who are literate and not of the hindu or muslim religion -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate_Urban,people of other religions and persuasions who can read and write in cities;urbanites who are literate and have different beliefs;people who are literate in urban areas and belong to other religions or persuasions;people who are literate in urban areas and have different beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_AgriculturalLabourers,agricultural workers who have other religions or beliefs;agricultural workers who have different beliefs;agricultural workers who follow minority religions;farmers who follow other religions and beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_Cultivators,people who practice other religions and persuasions;people who follow other religions and beliefs;adherents of other religions and faiths;people who follow other religions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_Female, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_HouseholdIndustries,people who practice other religions and persuasions who work in household industries;people of other religions and persuasions who work in household industries;employees in household industries who belong to other religions and persuasions;people who work in household industries and have other religions or beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_Male, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_OtherWorkers,people of other faiths;people of other beliefs;people of other religions and denominations;people of other religions and beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_Rural,people of other religions and persuasions are the main workers in rural areas;the majority of workers in rural areas are people of other religions and persuasions;people of other religions and persuasions make up the majority of the workforce in rural areas;people of other religions and persuasions are the most common type of worker in rural areas -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker_Urban,people of other religions and persuasions are the main workers in urban areas;the majority of workers in urban areas are people of other religions and persuasions;people of other religions and persuasions make up the majority of the workforce in urban areas;the workforce in urban areas is predominantly made up of people of other religions and persuasions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Male,the number of men who identify with a religion other than christianity;number of men with other religions and persuasions;male population of other beliefs;men who have a different religious belief system -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker,workers of other religions and persuasions who are marginalized -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_AgriculturalLabourers, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_Cultivators,people who practice other religions and persuasions and who are marginal cultivators -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_Female,"women who are marginalized in the workplace because of their gender, religion, or beliefs;women who are discriminated against because of their gender, religion, or beliefs;women who are religious minorities or have different beliefs;women who are marginalized because of their gender, religion, or ethnicity" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_HouseholdIndustries,workers in household industries who are not of the same religion or persuasion as the majority -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_Male,men who are not part of the mainstream and who have different beliefs;men who are not part of the establishment and who have different persuasions;men who are not part of the norm and who have different ideas;men who are not part of the mainstream and have different beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_OtherWorkers, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_Rural,marginal workers in rural areas of other religions and persuasions;marginal workers in rural areas of other faiths and beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker_Urban,people who are marginalized in urban areas because of their religion or beliefs;marginalized workers in urban areas who practice other religions and beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker,people who are not employed and do not identify with any religion or religious persuasion;people who are not employed and do not belong to any religion or persuasion;people who are not in the workforce and have other religious persuasions;people who are unemployed and have other religions or persuasions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker_Female,non-working women of other religions and faiths -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker_Male, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker_Rural, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker_Urban,non-employed people with different religions and beliefs in urban areas;unemployed people with different religions and opinions in cities;people who don't work and have different faiths and opinions in urban areas;non-employed urbanites with alternative religions or ideologies -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Rural,number of people in rural areas who practice other religions and persuasions;how many people in rural areas practice other religions or persuasions?;what is the total population of people in rural areas who practice other religions or persuasions?;what is the number of people in rural areas who identify with other religions or persuasions? -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Rural_Female,the number of women who practice religions other than christianity in rural areas;number of women in rural areas who practice other religions;women in rural areas who identify with other religions or persuasions;women of other religions and persuasions in rural areas -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Rural_Male,number of rural males with other religions and persuasions;number of men in rural areas who identify with other religions and persuasions;the number of rural males with other religions and persuasions;the number of rural males who follow other religions or have other beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Urban,people of different religions and beliefs in urban areas;people of other faiths and creeds in cities;people of minority religions in urban areas;people of different religions and beliefs in cities -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Urban_Female,the number of women who live in urban areas and practice other religions or persuasions;number of urban women of other religions and persuasions;female population of other religions and persuasions in urban areas;total urban female population of other religions and persuasions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Urban_Male,men of other religions and beliefs in urban areas;men who practice other religions in cities;urban males of other religions and persuasions;males of other religions and persuasions in cities -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers_Female, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers_Male, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers_Rural,people who live in rural areas and follow other religions or beliefs;people who live in rural areas and have different religious persuasions;people who live in the countryside and follow other religions or beliefs -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers_Urban,workers in urban areas who practice other religions or persuasions;people who work in urban areas and have a religion or persuasion other than christianity -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Female,number of females under 6 years of age with other religions;number of girls under 6 years of age with other religions;female population under 6 years of age with other religions;number of female children under 6 years of age with other religions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Male,number of males under 6 years old with other religions or persuasions;male population aged 6 or less with other religions or persuasions;number of males under 6 with non-christian religions or persuasions;number of males aged 6 years or less who are not affiliated with any religion -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Rural,number of children under 6 years old in rural areas who identify with other religions or persuasions;number of children under 6 in rural areas who identify with a non-christian persuasion;number of people under 6 years old in rural areas who follow other religions and persuasions;number of people under 6 years old in rural areas who are not affiliated with any religion -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Rural_Female,"the number of rural indian females under the age of 6, by religion;the number of rural indian girls under the age of 6, by religion;the number of rural indian females aged 6 and under, by religion;the number of rural indian girls aged 6 and under, by religion" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Rural_Male,rural male population aged 6 or younger who do not have a religion;rural male population aged 6 or younger who are not affiliated with any religion;male population of rural areas who are 6 years old or younger and are unaffiliated with any religion;male population of rural areas aged 6 years or less who are not affiliated with any religion -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Urban,urban population aged 6 years or less who practice other religions or persuasions;people aged 6 years or less in urban areas who follow other religions or persuasions;the number of people aged 6 years or less in urban areas who practice other religions or persuasions;the percentage of the urban population aged 6 years or less who practice other religions or persuasions -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Urban_Female,"the number of people in india who are 6 years old or younger, female, and live in urban areas, and who do not identify with any of the major religions;the number of people in india who are 6 years old or younger, female, and live in urban areas, and who have other religious beliefs;the number of people in india who are 6 years old or younger, female, and live in urban areas, and who do not identify with any of the major religions or religious beliefs;the number of people in india who are 6 years old or younger, female, and live in urban areas, and who have religious beliefs that are not considered to be major religions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Urban_Male,male population below 6 years old in urban areas who follow other religions or persuasions;male population below 6 years old in urban areas who practice other religions or persuasions;the number of boys under 6 years old in urban areas who identify with other religions and persuasions;the male population under 6 years old in urban areas who identify with other religions and persuasions -indianCensus/Count_Person_Religion_ReligionNotStated,the number of people whose religion is not stated;the number of people who have not stated their religion;no religion stated;religion not reported -indianCensus/Count_Person_Religion_ReligionNotStated_Female,number of women with no religious affiliation;female population with no religion;female non-religious population;number of females who do not identify with a religion -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate,illiterate people who don't identify with a religion;people who can't read or write and are not religious;people who can't read or write and don't have a religious affiliation;those who can't read or write and don't identify with a religion -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate_Female,population of illiterate females with unstated religion;illiterate females with unstated religion population;illiterate females who have unstated religion;females who are illiterate and have unstated religion -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate_Male,1 illiterate male population of unstated religion;2 illiterate males of unstated religious affiliation;3 illiterate males who do not state their religion;4 illiterate males whose religion is unknown -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate_Rural, -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate_Urban,people who cannot read or write in urban areas who do not identify with a particular religion;people who are illiterate and do not have a religion in cities;illiterate people who do not identify with a religion in urban areas;people who cannot read or write and do not have a religion in urban areas -indianCensus/Count_Person_Religion_ReligionNotStated_Literate,number of literate people with no stated religion;number of people who can read and write and do not have a religion;number of literate people whose religion is not stated;number of people who can read and write and have not stated their religion -indianCensus/Count_Person_Religion_ReligionNotStated_Literate_Female,number of literate females with no stated religion;percentage of females who can read and write and do not have a religion;share of women who can read and write and do not identify with a religion;proportion of females who are literate and do not have a religious affiliation -indianCensus/Count_Person_Religion_ReligionNotStated_Literate_Male,the number of literate males with an unstated religion;the number of males who can read and write and do not have a religion;the number of males who can read and write and do not identify with a religion;the number of males who can read and write and do not specify their religion -indianCensus/Count_Person_Religion_ReligionNotStated_Literate_Rural,"the population is literate and rural, with religion not stated;the population is literate, rural, and their religion is not stated;the population is literate and rural, and their religion is unknown;the population is literate, rural, and their religion is not specified" -indianCensus/Count_Person_Religion_ReligionNotStated_Literate_Urban,urbanites who don't have a religion;urbanites who are not religious -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker, -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_AgriculturalLabourers,agricultural workers who do not specify their religion;people who work in agriculture and do not identify with a religion;agricultural workers whose religion is unknown;agricultural workers whose religion is not known -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_Cultivators,people who practice unstated religions;individuals who follow unstated religions;adherents of unstated religions;people who believe in unstated religions -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_Female, -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_HouseholdIndustries,1 people who work in household industries and do not state their religion;2 workers in household industries who do not identify with a religion;3 employees in household industries who do not specify their religion;4 household industry workers who do not declare their religion -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_Male,men who are the main workers of religions that have not been stated -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_OtherWorkers, -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_Rural,the majority of workers in rural areas do not have a stated religion;most rural workers do not identify with any religion;the majority of people who work in rural areas do not have a religious affiliation;the majority of people who work in rural areas do not practice any religion -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker_Urban, -indianCensus/Count_Person_Religion_ReligionNotStated_Male,number of men with no religion;number of men who have not stated their religion;number of men with no religious affiliation;number of men who are not religious -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker,"here are five different ways of saying ""marginal workers of unstated religion"":" -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_AgriculturalLabourers,farmers who don't practice a religion;farmers who don't specify their religion;farmers who do not identify with any religion;farmers who don't belong to any religion -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_Cultivators,people who practice religions that are not part of the mainstream;people who practice religion without affiliation;adherents of non-established religions;people who practice a religion that is not mainstream -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_Female,"women who hold low-wage, precarious positions and do not belong to a particular religious group" -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_HouseholdIndustries,people who work in marginal household industries -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_Male, -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_OtherWorkers,people who work in marginalized jobs and do not state their religion -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_Rural, -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker_Urban, -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker,number of people who do not work and have no religion;number of non-working people with no religious affiliation;number of people who are not employed and do not identify with any religion;number of people who are not in the workforce and do not have a religious belief -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker_Female,women who do not have a job and do not identify with a religion;female non-working people who do not have a religion;women who are not employed and do not have a religion;female non-working people who do not identify with a religious group -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker_Male,men who do not work and do not have a religious affiliation;non-working men who do not identify with a religion;men who are not employed and do not have a religion;men who are unemployed and do not have a religious belief -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker_Rural,"people who live in rural areas and do not have a job, and whose religion is not stated;people who live in small towns and villages and do not have a job, and whose religious beliefs are not known;people who live in agricultural areas and are not working, and whose faith is not specified;people who live in remote areas and are not employed, and whose religious affiliation is not known" -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker_Urban,people who don't work and don't have a religion in cities;urbanites who don't work and don't have a religion;people who don't work and don't identify with a religion in urban areas;city dwellers who don't work and don't have a religion -indianCensus/Count_Person_Religion_ReligionNotStated_Rural,number of people with unstated religion in rural areas;number of people in rural areas who did not state their religion;number of people in rural areas who did not identify with any religion;number of people in rural areas who have no religion -indianCensus/Count_Person_Religion_ReligionNotStated_Rural_Female,female population in rural areas who do not identify with a religion;the number of women in rural areas who do not have a religion;the percentage of women in rural areas who are not religious;women in rural areas who are not affiliated with a religion -indianCensus/Count_Person_Religion_ReligionNotStated_Rural_Male,men who do not state their religion and live in rural areas;rural men who do not identify with a religion;men in rural areas who do not specify their religious affiliation;men who live in rural areas and do not have a religion -indianCensus/Count_Person_Religion_ReligionNotStated_Urban,what percentage of people in urban areas don't state a religion?;what's the percentage of people in cities who don't identify with a religion?;what's the number of people in urban areas who don't have a religion?;what's the number of people in cities who don't identify as religious? -indianCensus/Count_Person_Religion_ReligionNotStated_Urban_Female,the number of urban females with no religious affiliation;the percentage of urban females with no religious affiliation;the proportion of urban females with no religious affiliation;the share of urban females with no religious affiliation -indianCensus/Count_Person_Religion_ReligionNotStated_Urban_Male,the number of men in urban areas who have not stated their religion;the number of male residents of urban areas who have no religious affiliation;the number of men in cities who do not identify with any religion;the number of male urbanites who are religiously unaffiliated -indianCensus/Count_Person_Religion_ReligionNotStated_Workers,workers who have not stated their religion;workers who have chosen not to disclose their religion;workers who do not identify with any religion;workers with no religion -indianCensus/Count_Person_Religion_ReligionNotStated_Workers_Female,women whose religion is unknown;women who are secular -indianCensus/Count_Person_Religion_ReligionNotStated_Workers_Male,men whose religion is unknown;men who are secular;2 men whose religion is unknown -indianCensus/Count_Person_Religion_ReligionNotStated_Workers_Rural,people who live in the countryside and do not practice any religion -indianCensus/Count_Person_Religion_ReligionNotStated_Workers_Urban, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6,people who have not stated their religion and are below the age of 6;people below the age of 6 who have not declared a religion;people below the age of 6 who do not follow any religion;people who have not stated their religion and are under the age of 6 -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Female,the number of female people under 6 who do not believe in a god or gods;the number of non-religious females below 6 years old;the population of non-religious females below 6 years old;the percentage of non-religious females below 6 years old -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Male,little boys with no stated religion;boys under 6 who don't have a religion;boys under 6 who haven't chosen a religion;boys under 6 who don't identify with any religion -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Rural,"6 and under, rural, no religion;6 years or less, rural, no religious affiliation;6 and under, rural, religion not specified" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Rural_Female,number of girls under 6 years old with no stated religion in rural areas;number of rural girls under 6 years old with no religion;number of girls under 6 years old in rural areas with no religious affiliation;number of rural girls under 6 years old who do not identify with any religion -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Rural_Male, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Urban,how many people aged 0 to 6 years old in urban areas have no stated religion?;what is the number of people aged 0 to 6 years old in urban areas who do not state a religion?;what is the population of people aged 0 to 6 years old in urban areas who have no religious affiliation?;what is the percentage of people aged 0 to 6 years old in urban areas who do not have a religion? -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Urban_Female,number of urban female children aged 0 to 6 with unstated religion;number of urban female children aged 0 to 6 who have not stated their religion;number of urban female children aged 0 to 6 with no religious affiliation;number of urban female children aged 0 to 6 who are religiously unaffiliated -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Urban_Male,number of urban males aged 6 years or less with an unstated religion;number of urban males aged 6 years or less with no religious affiliation;number of urban males aged 6 years or less who did not state their religion;number of urban males aged 6 years or less whose religion is unknown -indianCensus/Count_Person_Religion_Sikh,how many people are sikh?;how many people practice sikhism?;what is the population of sikhs?;how many people follow sikhism? -indianCensus/Count_Person_Religion_Sikh_Female,how many female sikhs are there?;what is the number of female sikhs?;what is the population of female sikhs?;how many women are sikhs? -indianCensus/Count_Person_Religion_Sikh_Illiterate,people who are illiterate and are sikhs;sikhs who are illiterate;illiterate sikhs;sikhs who cannot read or write -indianCensus/Count_Person_Religion_Sikh_Illiterate_Female,sikh women who cannot read or write;illiterate sikh women;sikh women who are not literate;sikh women who have not learned to read or write -indianCensus/Count_Person_Religion_Sikh_Illiterate_Male, -indianCensus/Count_Person_Religion_Sikh_Illiterate_Rural,illiterate sikhs living in the countryside;rural sikhs who are illiterate;illiterate sikhs living in rural areas;sikhs who are illiterate and live in rural areas -indianCensus/Count_Person_Religion_Sikh_Illiterate_Urban,the number of illiterate sikhs in urban areas;the proportion of sikhs who are illiterate in urban areas;illiteracy rate of sikhs in urban areas;number of illiterate sikhs in urban areas -indianCensus/Count_Person_Religion_Sikh_Literate,the number of literate sikhs;the percentage of sikhs who are literate;the proportion of sikhs who can read and write;the literacy rate of sikhs -indianCensus/Count_Person_Religion_Sikh_Literate_Female,female sikh literacy rate;the percentage of sikh women who can read and write;the number of sikh women who are literate;the number of sikh women who can read and write at least one language -indianCensus/Count_Person_Religion_Sikh_Literate_Male,sikh men who can read and write;literate sikh men;sikh men who are literate;sikh males who are literate -indianCensus/Count_Person_Religion_Sikh_Literate_Rural,sikhs who can read and write in rural areas;sikhs who are educated in rural areas;sikhs who are literate in rural areas;sikhs who are educated in the countryside -indianCensus/Count_Person_Religion_Sikh_Literate_Urban,the percentage of sikhs who can read and write in urban areas;the number of sikhs who can read and write in urban areas;the proportion of sikhs who can read and write in urban areas;the number of literate sikhs in urban areas -indianCensus/Count_Person_Religion_Sikh_MainWorker,the majority of sikh workers;the majority of the working population in the sikh community -indianCensus/Count_Person_Religion_Sikh_MainWorker_AgriculturalLabourers,sikhs are the main agricultural laborers;sikhs are the primary agricultural laborers;sikhs are the most common agricultural laborers;sikhs are the most numerous agricultural laborers -indianCensus/Count_Person_Religion_Sikh_MainWorker_Cultivators,sikhs cultivate the land;sikhs cultivate land -indianCensus/Count_Person_Religion_Sikh_MainWorker_Female,sikh women who are the main earners in their families -indianCensus/Count_Person_Religion_Sikh_MainWorker_HouseholdIndustries,the main workers in household industries are sikhs;sikhs are the main workers in household industries;household industries are the main employers of sikhs;sikhs are the main workforce in household industries -indianCensus/Count_Person_Religion_Sikh_MainWorker_Male,sikh men as main workers;male sikh workers;sikh men who are the main workers -indianCensus/Count_Person_Religion_Sikh_MainWorker_OtherWorkers,the number of sikh people who work;the number of people who are employed and are sikh;the population of sikh workers;the proportion of sikh workers -indianCensus/Count_Person_Religion_Sikh_MainWorker_Rural,sikhs are the main workers in rural areas;sikhs are the majority of workers in rural areas;sikhs are the most common workers in rural areas;sikhs are the most numerous workers in rural areas -indianCensus/Count_Person_Religion_Sikh_MainWorker_Urban,sikh workers are the majority in urban areas;sikhs are the main workforce in urban areas;sikhs are the most common workers in urban areas;sikhs are the most numerous workers in urban areas -indianCensus/Count_Person_Religion_Sikh_Male,sikh men;men who are sikh;males who practice sikhism;people of the male gender who are sikh -indianCensus/Count_Person_Religion_Sikh_MarginalWorker,sikh workers who are marginalized;sikh workers who are on the periphery;sikh workers who are on the fringes -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_AgriculturalLabourers,sikhs who work in agriculture and are not rich -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_Cultivators, -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_Female,sikh women who are marginalized workers;female sikh workers who are on the margins of society;sikh women who are working in low-wage jobs;sikh women who are working in non-traditional occupations -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_HouseholdIndustries,sikhs who work in family-owned businesses;industries in sikh households that employ marginal workers;industries in sikh households that employ people who are not considered to be full-time workers;industries in sikh households that employ people who are not considered to be part of the formal workforce -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_Male,sikh men who are marginalized workers;sikh men who are working in low-wage jobs;sikh men who are working in low-paying jobs;sikh men who are struggling to find good jobs -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_OtherWorkers,sikhism and other minority workers;sikh workers and other marginalized groups;sikh and other minority workers' rights;sikh and other marginalized workers' rights -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_Rural,sikh urban working population;sikh working population in urban areas -indianCensus/Count_Person_Religion_Sikh_MarginalWorker_Urban,urban sikh workers on the margins;sikh workers in urban areas who are marginalized;sikh workers in urban areas who are on the periphery;sikh laborers in urban areas with few opportunities -indianCensus/Count_Person_Religion_Sikh_NonWorker,sikhs who are not employed;sikhs who are unemployed;sikhs who do not have a job;sikhs who are not working -indianCensus/Count_Person_Religion_Sikh_NonWorker_Female,female sikh population not in the workforce;female sikh population not employed;female sikh population not working;female sikh population not in the labor force -indianCensus/Count_Person_Religion_Sikh_NonWorker_Male,men who are sikh and not employed;sikh men who are not working;non-working sikh men;men who are sikh and not in the workforce -indianCensus/Count_Person_Religion_Sikh_NonWorker_Rural,rural sikhs who are not employed;sikhs who live in rural areas and do not have a job;sikhs who live in the countryside and are not working;sikhs who live in rural areas and are unemployed -indianCensus/Count_Person_Religion_Sikh_NonWorker_Urban,urban sikhs who are not employed;non-working sikhs in cities;sikhs who live in cities and are not employed;sikhs who live in urban areas and are not employed -indianCensus/Count_Person_Religion_Sikh_Rural,number of sikhs living in rural areas;population of sikhs in rural areas;percentage of sikhs living in rural areas;rural sikh population -indianCensus/Count_Person_Religion_Sikh_Rural_Female,rural sikh woman;rural female sikh;sikh woman in rural area;sikh woman in the countryside -indianCensus/Count_Person_Religion_Sikh_Rural_Male,number of sikh males in rural areas;how many sikh males live in rural areas;sikh male population in rural areas;rural sikh male population -indianCensus/Count_Person_Religion_Sikh_Urban,where do most sikhs live?;what are some cities with a large sikh population?;what are some urban areas with a large sikh population?;what are some urban areas with a high percentage of sikhs? -indianCensus/Count_Person_Religion_Sikh_Urban_Female,the number of sikh women living in cities;the total population of sikh women in urban areas;the number of sikh women living in metropolitan areas;the total population of sikh women in urban centers -indianCensus/Count_Person_Religion_Sikh_Urban_Male,urban sikh men;sikh men in cities;men who practice sikhism and live in cities;city-dwelling sikh men -indianCensus/Count_Person_Religion_Sikh_Workers,number of sikh workers;number of sikh employees;the number of sikh workers;the total number of sikh workers -indianCensus/Count_Person_Religion_Sikh_Workers_Female,the number of female sikh workers;the total number of sikh women in the workforce;the number of sikh women who are employed;the total number of sikh women who have jobs -indianCensus/Count_Person_Religion_Sikh_Workers_Male,the number of sikh men who work;the total number of sikh male employees;the number of sikh men who are employed;the total number of sikh men who have jobs -indianCensus/Count_Person_Religion_Sikh_Workers_Rural,sikhs who work in rural areas;sikhs who live and work in rural areas;sikhs who are employed in rural areas;sikh people who work in rural areas -indianCensus/Count_Person_Religion_Sikh_Workers_Urban,sikh people who work in urban areas;sikh professionals in cities;sikh people who work in urban settings;sikhs in urban areas -indianCensus/Count_Person_Religion_Sikh_YearsUpto6,kids under 6 who are sikh;sikh children under 6;young sikhs under 6;under-6 sikh children -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Female,girls who are sikh and are 6 years old or younger;female sikhs who are 6 years old or younger;sikh girls under the age of 6;female sikhs under the age of 6 -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Male,sikh boys under 6;sikh boys aged 6 or younger;male sikhs under 6 years old;sikh boys under 6 years old -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural,population of sikhs aged 6 or younger;the population of sikhs aged 6 years or less;the population of sikhs aged 6 or less;the number of people aged 6 or less who are sikh -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural_Female,number of rural sikh girls under 6 years old;rural sikh female population under 6 years old;number of rural sikh girls under the age of 6;rural sikh female population under the age of 6 -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural_Male,young sikh boys living in rural areas;rural sikh boys under the age of 6;sikh boys who are 6 years old or younger and live in rural areas;6-year-old sikh boys who live in rural areas -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban,number of sikhs under 6 years old in urban areas;population of sikhs under 6 years old in urban areas;count of sikhs under 6 years old in urban areas;number of people who are sikh and under 6 years old in urban areas -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban_Female,number of urban sikh girls under 6 years old;number of sikh female children under 6 years old in urban areas;how many sikh girls under 6 years old live in urban areas;how many sikh female children under 6 years old live in urban areas -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban_Male,male sikhs under 6 years old living in cities;male sikhs under 6 years old who live in urban areas;urban male sikhs under the age of 6;city-dwelling male sikhs under the age of 6 -Amount_FarmInventory_PimaCotton,how much pima cotton is grown?;what is the amount of pima cotton grown?;what is the quantity of pima cotton grown?;how much pima cotton is produced? -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,the number of american indian or alaska native youth in juvenile facilities;the number of american indian or alaska native youth who are in the juvenile justice system;the number of american indian or alaska native youth who are in detention centers;the number of american indian or alaska native juveniles in juvenile facilities -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,number of american indian or alaska natives living in military quarters or military ships;how many american indian or alaska natives live in military quarters or military ships?;what is the number of american indian or alaska natives living in military quarters or military ships?;the number of american indian or alaska natives living in military quarters or military ships -Count_Person_AsianAlone_ResidesInJuvenileFacilities,the number of asian people living in juvenile facilities;the number of asian youth in juvenile detention;the number of asian children in juvenile facilities;the number of asian juveniles in detention -Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,number of people who are asian and live in military quarters or on military ships;number of people who are asian and live in military housing;number of people who are asian and live in military bases;number of people who are asian and live on military vessels -Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,the number of black or african american people living in juvenile facilities;the number of black or african american juveniles in detention centers;the number of black or african american minors in juvenile detention;the number of black or african american youths in juvenile corrections -Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,how many black or african american people live in military quarters or on military ships?;what is the population of black or african american people living in military quarters or on military ships?;how many black or african american people live in military housing?;what is the number of black or african american people living in military housing? -Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,the number of female juvenile offenders who were born outside the united states;the number of foreign-born girls in juvenile detention centers;the number of girls in juvenile detention centers who were born in other countries;number of foreign-born girls in juvenile detention centers -Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,how many foreign-born females are living in military quarters or on military ships?;what is the population of foreign-born females staying in military quarters or on military ships?;number of foreign-born women living in military housing or on military ships;number of foreign-born women residing in military housing or on military ships -Count_Person_Female_NonWhite,female population that is not white;females who are not white;females of color;number of women who are not white -Count_Person_Female_ResidesInJuvenileFacilities,number of girls in juvenile detention centers;number of female juvenile offenders;number of girls in juvenile facilities;number of girls in juvenile justice facilities -Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,number of women living in military housing or on military ships;number of female military personnel living in military housing or on military ships;number of women in the military living in military housing or on military ships;number of female service members living in military housing or on military ships -Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,number of juvenile girls who are employed;number of female juvenile offenders who are employed;number of juvenile girls who have jobs;number of juvenile girls who are working while incarcerated -Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips, -Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,the number of hispanic youth in juvenile detention centers;the number of hispanic children in juvenile facilities;the number of hispanic juveniles in detention centers;the number of hispanic kids in juvenile facilities -Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,the number of hispanics living in military quarters or on military ships;the number of hispanics staying in military housing;the number of hispanics residing in military barracks;the number of hispanics living on military bases -Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,how many foreign-born males are in juvenile detention?;how many male juveniles are foreign-born?;what is the number of foreign-born male juveniles in detention?;what is the number of male juveniles in detention who are foreign-born? -Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,number of foreign-born males living in military quarters or on military ships;number of males born outside the united states living in military quarters or on military ships;number of males born in other countries living in military quarters or on military ships;number of males who are not native-born americans living in military quarters or on military ships -Count_Person_Male_NonWhite,number of non-white men;count of non-white males;total number of non-white males;sum of non-white males -Count_Person_Male_ResidesInJuvenileFacilities,number of males in juvenile detention centers;number of boys in juvenile facilities;number of young men in juvenile detention centers;number of male juveniles in detention centers -Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,number of men living in military quarters or on military ships;number of male military personnel living in quarters or on ships;number of males living in military housing or on military vessels;number of male service members living in barracks or on naval vessels -Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,number of boys who are earning money while living in juvenile detention centers;number of male juveniles who are employed;number of juvenile boys who are earning an income;number of male juveniles who are working -Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,number of males who earn money and live in military quarters or on military ships;number of male earners living in military quarters or on military ships;number of males who are paid and live in military quarters or on military ships;number of men who are paid and live in military quarters or on military ships -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,number of native hawaiian or other pacific islander youth in juvenile facilities;number of native hawaiian or other pacific islander youth in juvenile detention centers;number of native hawaiian or other pacific islander youth in juvenile correctional facilities;number of native hawaiian or other pacific islander youth in juvenile treatment centers -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,how many native hawaiian or other pacific islanders are living in military quarters or on military ships?;what is the number of native hawaiian or other pacific islanders who live in military quarters or on military ships?;what is the population of native hawaiian or other pacific islanders who live in military quarters or on military ships?;how many native hawaiian or other pacific islanders are residing in military quarters or on military ships? -Count_Person_NonWhite,population of non-white people;number of people who are not white;total number of non-white individuals;count of non-white people -Count_Person_OneRace_ResidesInJuvenileFacilities,number of people of a single race in juvenile facilities;number of people of a single race in juvenile detention centers;number of people of a single race in juvenile correctional facilities;number of people of a single race in youth detention centers -Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,how many people of a single race live in military quarters or on military ships?;what is the number of people of a single race who live in military quarters or on military ships?;what is the population of people of a single race who live in military quarters or on military ships?;how many people of a single race are living in military quarters or on military ships? -Count_Person_SomeOtherRaceAlone_ResidesInJuvenileFacilities,number of people identifying as some other race alone residing in juvenile facilities;number of people identifying as some other race alone in juvenile facilities;number of people identifying as some other race alone in juvenile detention centers;number of people identifying as some other race alone in juvenile correctional facilities -Count_Person_SomeOtherRaceAlone_ResidesInMilitaryQuartersOrMilitaryShips,how many people who identify as some other race alone live in military quarters or on military ships?;what is the number of people who identify as some other race alone who live in military quarters or on military ships?;what is the population of people who identify as some other race alone who live in military quarters or on military ships?;how many people who identify as some other race alone are living in military quarters or on military ships? -Count_Person_TwoOrMoreRaces_ResidesInJuvenileFacilities,multiracial people in juvenile facilities;number of multiracial people in juvenile facilities;number of multiracial youth in juvenile facilities;how many multiracial people are in juvenile facilities? -Count_Person_TwoOrMoreRaces_ResidesInMilitaryQuartersOrMilitaryShips,the number of multiracial people living in military quarters or on military vessels;how many multiracial people live in military quarters or on military ships?;what is the number of multiracial people living in military quarters or on military ships?;what is the population of multiracial people living in military quarters or on military ships? -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInJuvenileFacilities,the number of non-hispanic white people living in juvenile facilities;the number of white people living in juvenile facilities who are not hispanic;the number of non-hispanic white juveniles in detention centers -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,number of non-hispanic white people living in military quarters or on military ships;number of non-hispanic white people residing in military housing;number of non-hispanic white people living in military facilities;number of non-hispanic white people residing in military bases -Count_Person_WhiteAlone_ResidesInJuvenileFacilities,number of white people in juvenile facilities;number of white juveniles in detention centers;number of white youth in juvenile justice facilities;number of white children in juvenile detention -Count_Person_WhiteAlone_ResidesInMilitaryQuartersOrMilitaryShips,number of white people living in military quarters or on military ships;number of white people living in military housing;number of white people living in military barracks;number of white people living on military bases -Count_Person_WithDisability_ResidesInJuvenileFacilities,how many people with disabilities live in juvenile facilities?;what is the number of people with disabilities living in juvenile facilities?;what is the population of people with disabilities living in juvenile facilities?;how many people with disabilities are in juvenile facilities? -Count_Person_WithDisability_ResidesInMilitaryQuartersOrMilitaryShips,how many people with disabilities live in military quarters or ships?;how many people with disabilities live in military housing?;how many people with disabilities live in military bases?;how many people with disabilities live on military ships? -Count_Person_WithFoodStampsInThePast12Months_ResidesInJuvenileFacilities,how many people received food stamps in the past 12 months and lived in juvenile facilities;how many people lived in juvenile facilities and received food stamps in the past 12 months;what is the number of people who received food stamps in the past 12 months and lived in juvenile facilities;what is the number of people who lived in juvenile facilities and received food stamps in the past 12 months -Mean_Earnings_Person_Female_ResidesInJuvenileFacilities,how much money do girls in juvenile facilities make on average?;what are the average earnings of girls living in juvenile facilities?;what is the average salary of girls living in juvenile facilities?;what is the average income of girls living in juvenile facilities? -Mean_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,how much money do women make on average while living in military quarters or ships?;what is the average salary for women who live in military quarters or ships?;what is the average income for women who live in military quarters or ships?;what is the average wage for women who live in military quarters or ships? -Mean_Earnings_Person_Male_ResidesInJuvenileFacilities,how much money do males living in juvenile facilities earn on average?;what is the average salary for males living in juvenile facilities?;what is the average income for males living in juvenile facilities?;what is the average wage for males living in juvenile facilities? -Mean_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,how much money do men who live in military quarters or ships make on average?;what are the average earnings of men who live in military quarters or ships?;what is the average salary of men who live in military quarters or ships?;what is the average income of men who live in military quarters or ships? -Median_Earnings_Person_Female_ResidesInJuvenileFacilities,what is the median income for girls in juvenile facilities?;what is the median salary for girls in juvenile facilities?;what is the median income for girls in juvenile detention centers? -Median_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,what is the median income for women who live in military quarters or on military ships?;what is the median income for women living in military quarters or military ships?;what is the median income for females living in military quarters or military ships?;what is the median income for women who live in military quarters or military ships? -Median_Earnings_Person_Male_ResidesInJuvenileFacilities,what is the median salary for males living in juvenile facilities?;what is the median income for males living in juvenile facilities?;what is the median salary for boys in juvenile detention centers?;what is the median income of males living in juvenile facilities? -Median_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,what is the median salary for men living in military quarters or military ships?;what is the median income for men who live in military quarters or military ships?;what is the median income for men who live in military quarters or on military ships? -UnemploymentRate_Person_Female,what is the unemployment rate for women?;what is the rate of unemployment among women?;unemployment rate among women;female unemployment rate -UnemploymentRate_Person_Male,what is the unemployment rate for men?;what is the number of unemployed men as a percentage of the male labor force?;what is the male unemployment rate?;the number of unemployed men as a percentage of the total male population -Area_Farm_PimaCotton,the amount of land used to grow pima cotton;the acreage of pima cotton farms;the land area devoted to pima cotton cultivation;the land area used for pima cotton farming -Count_Farm_PimaCotton,how many farms grow pima cotton?;what is the number of farms that grow pima cotton?;how many pima cotton farms are there?;what is the total number of farms that grow pima cotton? -dc/9pmyhk89dj3pf,how much money do accommodation and food services workers make on average?;what is the average salary for accommodation and food services workers?;what is the median income for accommodation and food services workers?;what is the typical income for accommodation and food services workers? -dc/4z9xy6wn8xns1,how much money do people in the administrative and support and waste management services industry make on average?;what is the median income for people working in the administrative and support and waste management services industry?;what is the typical salary for people working in the administrative and support and waste management services industry?;what is the average salary for people working in the administrative and support and waste management services industry? -dc/yw52qqrrb2w11,"the average yearly income of people working in the agriculture, forestry, fishing, and hunting industry;the average salary of people working in the agriculture, forestry, fishing, and hunting industry;the middle value of the salaries of people working in the agriculture, forestry, fishing, and hunting industry;how much money do people in the agriculture, forestry, fishing, and hunting industry make on average?" -dc/8lqwvg8m9x7z8,the total amount of money earned by people working in cattle ranching and farming;the sum of all the wages earned by people working in cattle ranching and farming;the total income of people working in cattle ranching and farming;the total earnings of people working in cattle ranching and farming -dc/63gkdt13bmsv8,how many people work in the air transportation industry?;what is the number of people employed in the air transportation industry?;what is the workforce size of the air transportation industry?;how many people are employed in the air transportation sector? -dc/4ky4sj05bw4nd,the total amount of money paid to people who work in the air transportation industry;the total compensation of people who work in the air transportation industry;the total earnings of people who work in the air transportation industry;the total income of people who work in the air transportation industry -dc/z27q5dymqyrnf,how many people work in the apparel manufacturing industry?;what is the number of people employed in the apparel manufacturing industry?;how many people are employed in the apparel manufacturing sector?;what is the size of the apparel manufacturing workforce? -dc/lygznlxpkj318,the total amount of money earned by people working in the apparel manufacturing industry;the total earnings of people working in the apparel manufacturing industry;the total income of people working in the apparel manufacturing industry;the total compensation of people working in the apparel manufacturing industry -dc/mfz54y2skbpeh,"how much money do people in the arts, entertainment, and recreation industry make?;what is the average salary for people in the arts, entertainment, and recreation industry?;what is the median income for people in the arts, entertainment, and recreation industry?;what is the typical income for people in the arts, entertainment, and recreation industry?" -dc/rlk1yxmkk1qqg,number of people employed in the beverage and tobacco product manufacturing industry;number of workers in the beverage and tobacco product manufacturing industry;number of people working in the beverage and tobacco product manufacturing sector;number of employees in the beverage and tobacco product manufacturing sector -dc/9kk3vkzn5v0fb,the average salary for people working in the beverage and tobacco product manufacturing industry;the average wage for people working in the beverage and tobacco product manufacturing industry;the total amount of money earned by people working in the beverage and tobacco product manufacturing industry;the total compensation for people working in the beverage and tobacco product manufacturing industry -dc/eh7s78v8s14l9,1 number of people employed in the chemical manufacturing industry;2 size of the workforce in the chemical manufacturing industry;3 number of people working in chemical manufacturing;4 number of people employed in the chemical industry -dc/rfdrfdc164y3b,how much do people working in the chemical manufacturing industry make?;what is the average salary for people working in the chemical manufacturing industry?;what are the wages for people working in the chemical manufacturing industry?;what is the pay for people working in the chemical manufacturing industry? -dc/m07n4w3ywjzs3,what's the average salary for construction workers?;what's the pay for construction workers?;what's the typical salary for construction workers?;what's the typical income for construction workers? -dc/n87t9dkckzxc8,number of people working as couriers and messengers;number of couriers and messengers;number of people employed as couriers and messengers;number of people in the courier and messenger industry -dc/95gev5g99r7nc,how much do couriers and messengers make?;what is the average salary for couriers and messengers?;what is the pay range for couriers and messengers?;what are the wages for couriers and messengers? -dc/jefhcs9qxc971,how much money do people in the educational services industry make on average?;what is the average salary for people working in the educational services industry?;what is the median income for people working in the educational services industry?;what is the typical income for people working in the educational services industry? -dc/x3gghqtglpr59,what is the average salary for people working in the finance and insurance industry?;what is the median income for people working in the finance and insurance industry?;what is the typical salary for people working in the finance and insurance industry?;how much money do people in the finance and insurance industry make on average? -dc/107jnwnsh17xb,number of people employed in the food manufacturing industry;number of people working in the food industry;number of people working in food production;number of people working in food processing -dc/jngmh68j9z4q,how much do people working in the food manufacturing industry make?;what are the wages for people working in the food manufacturing industry?;what is the average salary for people working in the food manufacturing industry?;what are the average wages for people working in the food manufacturing industry? -dc/c0wxmt45gffxc,number of people working in general merchandise stores;number of general merchandise store employees;number of people employed in general merchandise stores;number of people who work in general merchandise stores -dc/dchdrg93spxkf,how much do people working in general merchandise stores make?;what is the average salary for people working in general merchandise stores?;what are the wages for people working in general merchandise stores?;what is the pay for people working in general merchandise stores? -dc/2wgh04kx6es88,how much do people in the health care and social assistance industry make on average?;what is the median income for people working in the health care and social assistance industry?;what is the typical income for people working in the health care and social assistance industry?;how much money do people in the health care and social assistance industry make on average? -dc/xj2nk2bg60fg,how much money do people in the information industry make on average?;what is the median income for people working in the information industry?;what is the typical income for people working in the information industry?;what is the usual income for people working in the information industry? -dc/7bck6xpkc205c,number of people employed in the leather and allied product manufacturing industry;number of people working in the leather and allied product manufacturing sector;number of people working in the leather and allied product manufacturing business;number of people working in the leather and allied product manufacturing field -dc/fetj39pqls2df,how much do people working in the leather and allied product manufacturing industry make?;what are the wages for people working in the leather and allied product manufacturing industry?;what are the salaries for people working in the leather and allied product manufacturing industry?;what are the earnings for people working in the leather and allied product manufacturing industry? -dc/t6m99mqmqxjbc,"the average salary for people working in the management of companies and enterprises industry;the middle value of salaries for people working in the management of companies and enterprises industry;the amount of money that half of the people working in the management of companies and enterprises industry earn, and half earn less;the typical salary for people working in the management of companies and enterprises industry" -dc/b4dj4sbgqybh7,"what is the median income for people working in the mining, quarrying, and oil and gas extraction industry?;the amount of money that half of the people working in the mining, quarrying, and oil and gas extraction industry earn, and half earn less;the average yearly income for people working in the mining, quarrying, and oil and gas extraction industry;the middle income for people working in the mining, quarrying, and oil and gas extraction industry" -dc/4mm2p1rxr5wz4,number of people working in miscellaneous retail stores;number of people employed in miscellaneous retail stores;number of people working in retail stores that sell a variety of goods;number of people employed in retail stores that sell a variety of products -dc/6ets5evke9mw5,how much money do people working in miscellaneous retail stores make?;what are the average wages for people working in miscellaneous retail stores?;what is the pay range for people working in miscellaneous retail stores?;what are the salaries for people working in miscellaneous retail stores? -dc/90nswpkp8wlw5,the number of people employed in the nonmetallic mineral product manufacturing industry;the number of workers in the nonmetallic mineral product manufacturing industry;the workforce of the nonmetallic mineral product manufacturing industry;the number of people who work in the nonmetallic mineral product manufacturing industry -dc/yxxs3hh2g2shd,the average salary for people working in the nonmetallic mineral product manufacturing industry;the average wage for people working in the nonmetallic mineral product manufacturing industry;the total amount of money earned by people working in the nonmetallic mineral product manufacturing industry;the total amount of money paid to people working in the nonmetallic mineral product manufacturing industry -dc/2etwgx6vecreh,"number of people employed in retail outside of a store;number of people working in retail, but not in a store;number of people working in the retail industry, but not in a store;number of people working in retail, but not in a brick-and-mortar store" -dc/8pxklrk2q6453,how much do people working in retail outside of a store earn?;what are the wages for people working in retail outside of a store?;what is the average salary for people working in retail outside of a store?;what is the typical pay for people working in retail outside of a store? -dc/knhvyxwsd3y6h,"the amount of money that most people working in other services, excluding public administration, earn;the middle income for people working in other services, excluding public administration;the 50th percentile for people working in other services, excluding public administration;the median wage for people working in other services, excluding public administration" -dc/6n6l2wrzv7473,number of people employed in the paper manufacturing industry;number of people working in the paper industry;number of people employed in the production of paper;number of people working in the production of paper products -dc/kl7t3p3de7tlh,how much money do people working in the paper manufacturing industry make?;what are the average wages for people working in the paper manufacturing industry?;what is the pay scale for people working in the paper manufacturing industry?;what are the salaries for people working in the paper manufacturing industry? -dc/34t2kjrwbjd31,how many people work in the petroleum and coal products manufacturing industry?;what is the number of people employed in the petroleum and coal products manufacturing industry?;what is the workforce size of the petroleum and coal products manufacturing industry?;how many people are employed in the petroleum and coal products manufacturing sector? -dc/8cssekvykhys5,the total amount of money earned by people working in the petroleum and coal products manufacturing industry;the total compensation of people working in the petroleum and coal products manufacturing industry;the total earnings of people working in the petroleum and coal products manufacturing industry;the total income of people working in the petroleum and coal products manufacturing industry -dc/yn0h4nw4k23f1,number of people working in pipeline transportation;number of people employed in pipeline transportation;number of people working in the pipeline transportation industry;number of people employed in the pipeline transportation industry -dc/n0m3e2r3pxb21,what do pipeline workers make?;what is the average salary for a pipeline worker?;what are the wages for pipeline workers?;how much money do pipeline workers make? -dc/qnz3rlypmfvw6,number of people employed in the plastics and rubber products manufacturing industry;number of people working in the plastics and rubber products manufacturing industry;number of people working in the manufacturing of plastics and rubber products;number of people employed in the manufacturing of plastics and rubber products -dc/9yj0bdp6s4ml5,the average salary for people working in the plastics and rubber products manufacturing industry;the total amount of money that people working in the plastics and rubber products manufacturing industry earn;the sum of all the wages paid to people working in the plastics and rubber products manufacturing industry;the total compensation for people working in the plastics and rubber products manufacturing industry -dc/8j8w7pf73ekn,how many people work for the postal service?;what is the number of employees at the postal service?;how many people are employed by the postal service?;what is the workforce size of the postal service? -dc/ntpwcslsbjfc8,the total amount of money paid to postal service workers;the total compensation paid to postal service workers;the total earnings of postal service workers;the total income of postal service workers -dc/vp4cplffwv86g,number of people who work in printing and related support activities;number of workers in the printing and related support activities industry;number of people employed in printing and related support activities;number of people who have jobs in printing and related support activities -dc/wv0mr2t2f5rj9,the total amount of money paid to printing and related support activities workers;the total compensation paid to printing and related support activities workers;the total earnings of printing and related support activities workers;the total income of printing and related support activities workers -dc/5hv2p802zmh03,"the average salary for professional, scientific, and technical services workers;the average salary of professional, scientific, and technical services workers;the middle income of professional, scientific, and technical services workers;the middle salary for professional, scientific, and technical services workers" -dc/7jqw95h5wbelb,what is the average salary for public administration workers?;what is the median income for public administration workers?;what is the typical salary for public administration workers?;what is the pay range for public administration workers? -dc/3kwcvm428wpq4,how many people work in rail transportation?;what is the number of people employed in rail transportation?;what is the workforce size of the rail transportation industry?;how many people are employed in the rail transportation industry? -dc/ksynl8pj8w5t5,the total amount of money paid to rail transportation workers;the total compensation paid to rail transportation workers;the total earnings of rail transportation workers;the total income of rail transportation workers -dc/015d58s9xh8kd,the average yearly income of real estate and rental and leasing workers;the typical salary of real estate and rental and leasing workers;the middle value of the yearly incomes of real estate and rental and leasing workers;what is the typical salary for real estate and rental and leasing workers? -dc/5f3gkej4mrq24,what is the typical salary for retail trade workers?;what is the average income for retail trade workers?;what is the median income for retail trade workers?;what is the middle income for retail trade workers? -dc/p69tpsldf99h7,what is the number of people employed in retail?;what is the workforce size of the retail industry?;how many people are employed in the retail sector?;what is the number of retail workers? -dc/dxcbt2knrsgg9,the total amount of money paid to retail trade workers;the total compensation paid to retail trade workers;the total income of retail trade workers;the total pay of retail trade workers -dc/v3qgyhwx13m44,how many people work in scenic and sightseeing transportation?;what is the number of scenic and sightseeing transportation workers?;what is the workforce size of scenic and sightseeing transportation?;how many people are employed in scenic and sightseeing transportation? -dc/qgpqqfzwz03d,the total amount of money paid to scenic and sightseeing transportation workers;the total compensation paid to scenic and sightseeing transportation workers;the total earnings of scenic and sightseeing transportation workers;the total income of scenic and sightseeing transportation workers -dc/e2zdnwjjhyj36,"how many people work in sports, hobbies, music instruments, and bookstores?;what is the number of people who work in sports, hobbies, music instruments, and bookstores?;how many people are employed in sports, hobbies, music instruments, and bookstores?;what is the workforce of sports, hobbies, music instruments, and bookstores?" -dc/k4grzkjq201xh,"the total amount of money paid to workers in sports, hobby, music instrument, and book stores;the total wages paid to workers in the sports, hobby, music instrument, and book stores industries;the total amount of money earned by workers in sports, hobby, music instrument, and book stores;the total compensation paid to workers in sports, hobby, music instrument, and book stores" -dc/bb4peddkgmqe7,how many people work in support roles for transportation?;how many people support transportation workers?;how many people work in transportation-related support roles?;how many people are employed in transportation support? -dc/bceet4dh33ev,wages paid to support transportation workers;wages paid to support activities related to transportation;wages paid to support the work of transportation workers;wages paid to support the transportation industry -dc/3ex11eg2q9hp6,"the average salary of manufacturing workers;the middle value of the salaries of manufacturing workers;the amount of money that half of manufacturing workers earn more than, and half earn less than;the typical salary of manufacturing workers" -dc/ndg1xk1e9frc2,how many people work in manufacturing?;what is the number of people employed in manufacturing?;what is the workforce in manufacturing?;how many people are employed in the manufacturing sector? -dc/tqgf8zv96r5t8,how many people work in textile and fabric finishing mills?;what is the number of textile and fabric finishing mill workers?;what is the workforce of textile and fabric finishing mills?;how many people are employed in textile and fabric finishing mills? -dc/wzz9t818m1gk8,the total amount of money paid to manufacturing workers;the total amount of wages paid to manufacturing workers;the total amount of salaries paid to manufacturing workers;the total compensation paid to manufacturing workers -dc/1jqm2g7cm9m75,the total amount of money paid to textile and fabric finishing mill workers;the total sum of money paid to textile and fabric finishing mill workers;the total earnings of textile and fabric finishing mill workers;the total income of textile and fabric finishing mill workers -dc/8b3gpw1zyr7bf,how many people work in textile mills?;how many textile mill workers are there?;what is the number of textile mill workers?;what is the workforce of textile mills? -dc/7w0e0p0dzj82g,the total amount of money paid to textile mill workers;the sum of all the wages paid to textile mill workers;the total amount of money earned by textile mill workers;the total amount of money paid out in wages to textile mill workers -dc/dy2k68mmhenfd,the number of people who work in the production of textiles;the number of people who work in the textile manufacturing industry;the number of people who work in the textile production industry -dc/1q3ker7zf14hf,the total amount of money paid to textile product mills workers;the total sum of money paid to textile product mills workers;the total earnings of textile product mills workers;the total income of textile product mills workers -dc/bwr1l8y9we9k7,how many people work in transit and ground passenger transportation?;what is the number of people employed in transit and ground passenger transportation?;how many people are employed in the transit and ground passenger transportation industry?;what is the number of people working in the transit and ground passenger transportation sector? -dc/9t5n4mk2fxzdg,the total amount of money paid to transit and ground passenger transportation workers;the total compensation paid to transit and ground passenger transportation workers;the total earnings of transit and ground passenger transportation workers;the total income of transit and ground passenger transportation workers -dc/zbpsz8dg01nh2,the average salary of transportation and warehousing workers;the middle salary of transportation and warehousing workers;the mid-point income of transportation and warehousing workers;the median pay of transportation and warehousing workers -dc/8p97n7l96lgg8,how many people work in transportation and warehousing?;what is the number of people employed in transportation and warehousing?;what is the workforce size of transportation and warehousing?;how many people are employed in the transportation and warehousing industry? -dc/84czmnc1b6sp5,the total amount of money paid to transportation and warehousing workers;the sum of all the wages paid to transportation and warehousing workers;the total compensation paid to transportation and warehousing workers;the total earnings of transportation and warehousing workers -dc/k3hehk50ch012,1 how many people work in the trucking industry?;2 what is the number of truck drivers in the united states?;3 how many people are employed in truck transportation?;5 how many people work as truck drivers? -dc/h77bt8rxcjve3,the total amount of money paid to truck transportation workers;the total compensation of truck transportation workers;the total earnings of truck transportation workers;the total income of truck transportation workers -dc/x95kmng969n42,what's the median income for utilities workers?;what's the average salary for utilities workers?;what's the typical income for utilities workers?;what's the pay range for utilities workers? -dc/w1tfjz3h6138,how many people work in warehousing and storage?;what is the number of people employed in warehousing and storage?;what is the workforce size of the warehousing and storage industry?;how many people are employed in the warehousing and storage sector? -dc/fcn7wgvcwtsj2,the total amount of money paid to warehousing and storage workers;the total compensation paid to warehousing and storage workers;the total earnings of warehousing and storage workers;the total pay of warehousing and storage workers -dc/h1jy2glt2m7e6,1 how many people work in water transportation?;2 what is the number of water transportation workers?;3 what is the workforce in water transportation?;4 how many people are employed in water transportation? -dc/0hq9z5mspf73f,the total amount of money paid to water transportation workers;the total sum of money paid to water transportation workers;the total earnings of water transportation workers;the total income of water transportation workers -dc/8hy0p1ex5s2cb,how much money do wholesale trade workers make on average?;what's the median income for wholesale trade workers?;what's the average salary for wholesale trade workers?;what's the typical salary for wholesale trade workers? -dc/ws19bm1hl105b,how many people work in wood product manufacturing?;what is the number of wood product manufacturing workers?;how many people are employed in wood product manufacturing?;what is the workforce size of wood product manufacturing? -dc/nesnbmrncfjrb,the total amount of money paid to wood product manufacturing workers;the total compensation paid to wood product manufacturing workers;the total earnings of wood product manufacturing workers;the total income of wood product manufacturing workers -Percent_Person_WithAllTeethLoss,the extent to which tooth loss is present in the population;the degree to which tooth loss is a problem in the population;how many people have lost all of their teeth?;what is the prevalence of complete tooth loss in the population? -Percent_Person_WithDiabetes,what percentage of the population has diabetes;the percentage of people with diabetes;what proportion of the population has diabetes;what is the prevalence of diabetes -Percent_Person_20OrMoreYears_WithDiabetes,what percentage of people aged 20 or older have diabetes?;what is the rate of diabetes among people aged 20 or older?;what proportion of people aged 20 or older have diabetes?;how many people aged 20 or older have diabetes? -Median_Income_Person,the middle income of a population;the income that half of the population earns more than and half earns less than;the income that is in the middle of the income distribution;the amount of money that half of the people in a population earn more than and the other half earn less than -Count_MedicalConditionIncident_COVID_19_PatientInICU,how many covid-19 patients are in the icu?;how many people with covid-19 are in the icu?;what is the number of covid-19 patients in the icu?;what is the number of people with covid-19 who are in the icu? -Percent_Person_Obesity,what percentage of the population is obese?;what is the obesity rate?;how many people in the population are obese?;what is the proportion of the population that is obese? -Annual_Generation_Energy_Coal,the amount of energy generated from coal each year;the total amount of energy produced by coal-fired power plants each year;the annual output of coal-fired power plants;the annual production of electricity from coal -Annual_Generation_Fuel_Nuclear,the amount of energy generated from nuclear fuel each year;the annual output of nuclear power plants;the yearly production of nuclear energy;the annual yield of nuclear power -Median_Income_Person_15OrMoreYears_Female_WithIncome,the average amount of money earned by women aged 15 or older who have an income;the middle amount of money earned by women aged 15 or older who have an income;the amount of money earned by women aged 15 or older who are in the middle of the income distribution;the amount of money earned by women aged 15 or older who are in the 50th percentile of the income distribution -Median_Income_Person_15OrMoreYears_Male_WithIncome,the median income of men aged 15 and older who have an income;the middle income of men aged 15 and older who have an income;the half-way point in the income distribution of men aged 15 and older who have an income;the income level at which half of men aged 15 and older who have an income earn more and half earn less -Percent_Person_18To64Years_Female_NoHealthInsurance,3 what proportion of women aged 18 to 64 are without health insurance?;5 what is the percentage of women aged 18 to 64 who are not covered by health insurance?;2 what is the percentage of women aged 18 to 64 who do not have health insurance?;4 what is the proportion of women aged 18 to 64 who do not have health insurance? -Percent_Person_18To64Years_Male_NoHealthInsurance,what proportion of men aged 18 to 64 do not have health insurance?;what is the percentage of men aged 18 to 64 who are not covered by health insurance?;what is the number of men aged 18 to 64 who do not have health insurance as a percentage of all men in that age group?;what is the percentage of men aged 18 to 64 who do not have health insurance -Percent_Person_18To64Years_NoHealthInsurance_BlackOrAfricanAmericanAlone,what percentage of black or african americans aged 18 to 64 do not have health insurance?;what is the percentage of black or african americans aged 18 to 64 who do not have health insurance?;what proportion of black or african americans aged 18 to 64 do not have health coverage?;what is the rate of uninsurance among black or african americans aged 18 to 64? -Percent_Person_18To64Years_NoHealthInsurance_HispanicOrLatino,what percentage of hispanic or latino people aged 18 to 64 do not have health insurance?;what is the percentage of hispanic or latino people aged 18 to 64 who are uninsured?;what proportion of hispanic or latino people aged 18 to 64 do not have health insurance coverage?;what is the rate of uninsurance among hispanic or latino people aged 18 to 64? -Percent_Person_18To64Years_NoHealthInsurance_WhiteAlone,what is the percentage of white people aged 18 to 64 who do not have health insurance?;what is the percentage of the white population aged 18 to 64 without health insurance?;what proportion of white people aged 18 to 64 do not have health insurance?;what is the percentage of the white population aged 18 to 64 who do not have health insurance? -Percent_Person_PhysicalInactivity,the percentage of people who are sedentary;the percentage of people who are physically inactive;the percentage of people who are not active enough;the percentage of people who are not physically active -dc/hlxvn1t8b9bhh,how many farmers and cattle ranchers are there?;what is the number of farmers and cattle ranchers?;what is the number of people employed in farming and ranching?;what is the agricultural workforce? -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,share of population with a bachelor's degree;proportion of population with a bachelor's degree;percentage of the population with a bachelor's degree;share of the population with a bachelor's degree -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female, -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,men with a bachelor's degree or higher;the male population with a bachelor's degree or higher;the number of men with a bachelor's degree or higher;the percentage of men with a bachelor's degree or higher -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,the number of women with bachelor's degrees;the share of women with bachelor's degrees;the number of women who have bachelor's degrees;the female population with bachelor's degrees -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,number of men with a bachelor's degree;population of males with a bachelor's degree;male bachelor's degree holders;men who have a bachelor's degree -Percent_TreeCanopy,the percentage of land covered by trees;the amount of tree cover;the percentage of an area covered by tree canopy;tree canopy coverage -MapFacts/Count_park,number of parks;number of recreational parks;number of public parks;number of recreation areas -MapFacts/Count_hiking_area,hiking trails;trekking area;hiking paths;walking trails -Percent_Student_AsAFractionOf_Count_Teacher ,student-teacher ratio;teacher-student ratio;students per teacher;the student-teacher ratio -Count_Teacher,educators;instructors;professors;tutors -dc/c58mvty4nhxdb,how students are performing academically;the academic progress of students;the level of student achievement;how students are meeting academic standards -dc/3jr0p7yjw06z9,the gambling business;the gaming industry;the betting industry;the casino industry -dc/5br285q68be6,people who work in the gambling industry;gambling industry workers;gambling industry employees;gambling industry staff -Count_VolcanicAshEvent,volcanic events;volcanic eruptions;volcanic activity;eruptions of volcanoes -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal Percent of Nominal Gross Domestic Production (GDP) Spent on Education, diff --git a/tools/nl/embeddings/data/autogen_input/medium/autogen_svs.csv b/tools/nl/embeddings/data/autogen_input/medium/autogen_svs.csv deleted file mode 100644 index eb6a001bee..0000000000 --- a/tools/nl/embeddings/data/autogen_input/medium/autogen_svs.csv +++ /dev/null @@ -1,4978 +0,0 @@ -dcid,Name,Description,Override_Alternatives,Curated_Alternatives -AirQualityIndex_AirPollutant_CO,Air Quality Index: Carbon Monoxide,,, -AirQualityIndex_AirPollutant_NO2,Air Quality Index: Nitrogen Dioxide,,, -AirQualityIndex_AirPollutant_Ozone,Air Quality Index: Ozone,,, -AirQualityIndex_AirPollutant_PM10,Air Quality Index: PM 10,,, -AirQualityIndex_AirPollutant_PM2.5,Air Quality Index: PM 2.5,,, -AirQualityIndex_AirPollutant_SO2,Air Quality Index: Sulfur Dioxide,,, -Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy,Amount of Consumption: Renewable Energy (As Fraction of Amount Consumption Energy),Annual Consumption Of Renewable Energy,, -Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government,"Amount of Economic Activity: Expenditure Activity, Tertiary Education Expenditure, Government (As Fraction of Amount Economic Activity Expenditure Activity Education Expenditure Government)",Percent of Government Expenditure on Tertiary Education,, -Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person,Amount of Economic Activity (Nominal): Gross Domestic Production (Per Capita),Nominal Gross Domestic Production in Population,, -Amount_EconomicActivity_GrossDomesticProduction_RealValue,Amount of Economic Activity (Real Value): Gross Domestic Production,Gross Domestic Production,, -Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Agriculture, Hunting, Forestry, Fishing",Gross Value Added in Agriculture Hunting and Forestry Fishing Industry,, -Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Construction",Gross Value Added in Construction Industry,, -Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Manufacturing",Gross Value Added in Manufacturing Industry,, -Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Mining, Manufacturing, Utilities","Gross Value Added in Mining, Manufacturing and Utilities Industry",, -Amount_EconomicActivity_GrossValueAdded_ISICOtherActivities_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Other Activities",Gross Value Added in Other Activities Industry,, -Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Transport, Storage And Communications","Gross Value Added in Transport, Storage and Communications Industry",, -Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Wholesale, Retail Trade, Restaurants And Hotels","Gross Value Added in Wholesale, Retail Trade, Restaurants and Hotels Industry",, -Amount_EconomicActivity_GrossValueAdded_RealValue,Amount of Economic Activity (Real Value): Gross Value Added,Real Gross Value Added,, -Amount_Emissions_CarbonDioxide_PerCapita,CO2 Emissions Per Capita,Total Emissions of Carbon Dioxide Per Capita,, -Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy,Amount of Production: Electricity From Nuclear Sources (As Fraction of Amount Production Energy),Amount of Production in Electricity From Nuclear Sources,, -Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy,Amount of Production: Electricity From Oil Gas or Coal Sources (As Fraction of Amount Production Energy),Amount of Production of Electricity From Oil Gas Or Coal Sources As a Fraction of Amount Production Energy,, -Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion,"Annual Amount Emissions Acetaldehyde, ExternalCombustion (1)",Annual Emissions of Acetaldehyde in External Combustion,, -Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Acetaldehyde, InternalCombustionEngines (2)",Annual Emissions of Acetaldehyde in Internal Combustion Engines,, -Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Acetaldehyde, StationarySourceFuelCombustion (21)",Annual Emissions of Acetaldehyde in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources,"Annual Amount Emissions Acetaldehyde, MobileSources (22)",Annual Emissions of Acetaldehyde in Mobile Sources,, -Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (23)",Annual Emissions of Acetaldehyde in Industrial Processes,, -Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization,"Annual Amount Emissions Acetaldehyde, SolventUtilization (24)",Annual Emissions of Acetaldehyde in Solvent Utilization,, -Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Acetaldehyde, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Acetaldehyde in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources,"Annual Amount Emissions Acetaldehyde, NaturalSources (27)",Annual Emissions of Acetaldehyde in Natural Sources,, -Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Acetaldehyde, MiscellaneousAreaSources (28)",Annual Emissions of Acetaldehyde in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (3)",Annual Emissions of Acetaldehyde in Industrial Processes,, -Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Acetaldehyde, PetroleumAndSolventEvaporation (4)",Annual Emissions of Acetaldehyde in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal,"Annual Amount Emissions Acetaldehyde, WasteDisposal (5)",Annual Emissions of Acetaldehyde in Waste Disposal,, -Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion,"Annual Amount Emissions Ammonia, ExternalCombustion (1)",Annual Emissions of Ammonia in External Combustion,, -Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Ammonia, InternalCombustionEngines (2)",Annual Emissions of Ammonia in Internal Combustion Engines,, -Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Ammonia, StationarySourceFuelCombustion (21)",Annual Emissions of Ammonia in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources,"Annual Amount Emissions Ammonia, MobileSources (22)",Annual Emissions of Ammonia in Mobile Sources,, -Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,"Annual Amount Emissions Ammonia, IndustrialProcesses (23)",Annual Emissions of Ammonia in Industrial Processes,, -Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization,"Annual Amount Emissions Ammonia, SolventUtilization (24)",Annual Emissions of Ammonia in Solvent Utilization,, -Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport,"Annual Amount Emissions Ammonia, StorageAndTransport (25)",Annual Emissions of Ammonia in Storage and Transport,, -Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Ammonia, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Ammonia in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources,"Annual Amount Emissions Ammonia, NaturalSources (27)",Annual Emissions of Ammonia in Natural Sources,, -Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Ammonia, MiscellaneousAreaSources (28)",Annual Emissions of Ammonia in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,"Annual Amount Emissions Ammonia, IndustrialProcesses (3)",Annual Emissions of Ammonia in Industrial Processes,, -Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Ammonia, PetroleumAndSolventEvaporation (4)",Annual Emissions of Ammonia in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal,"Annual Amount Emissions Ammonia, WasteDisposal (5)",Annual Emissions of Ammonia in Waste Disposal,, -Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion,"Annual Amount Emissions Arsenic, ExternalCombustion (1)",Annual Emissions of Arsenic in External Combustion,, -Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Arsenic, InternalCombustionEngines (2)",Annual Emissions of Arsenic in Internal Combustion Engines,, -Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Arsenic, StationarySourceFuelCombustion (21)",Annual Emissions of Arsenic in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources,"Annual Amount Emissions Arsenic, MobileSources (22)",Annual Emissions of Arsenic in Mobile Sources,, -Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,"Annual Amount Emissions Arsenic, IndustrialProcesses (23)",Annual Emissions of Arsenic in Industrial Processes,, -Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization,"Annual Amount Emissions Arsenic, SolventUtilization (24)",Annual Emissions of Arsenic in Solvent Utilization,, -Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Arsenic, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Arsenic in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Arsenic, MiscellaneousAreaSources (28)",Annual Emissions of Arsenic in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,"Annual Amount Emissions Arsenic, IndustrialProcesses (3)",Annual Emissions of Arsenic in Industrial Processes,, -Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Arsenic, PetroleumAndSolventEvaporation (4)",Annual Emissions of Arsenic in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal,"Annual Amount Emissions Arsenic, WasteDisposal (5)",Annual Emissions of Arsenic in Waste Disposal,, -Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses,"Annual Amount Emissions Asbestos, IndustrialProcesses (3)",Annual Emissions of Asbestos in Industrial Processes,, -Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion,"Annual Amount Emissions Benzene, ExternalCombustion (1)",Annual Emissions of Benzene in External Combustion,, -Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Benzene, InternalCombustionEngines (2)",Annual Emissions of Benzene in Internal Combustion Engines,, -Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Benzene, StationarySourceFuelCombustion (21)",Annual Emissions of Benzene in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Benzene_SCC_22_MobileSources,"Annual Amount Emissions Benzene, MobileSources (22)",Annual Emissions of Benzene in Mobile Sources,, -Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Benzene, IndustrialProcesses (23)",Annual Emissions of Benzene in Industrial Processes,, -Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization,"Annual Amount Emissions Benzene, SolventUtilization (24)",Annual Emissions of Benzene in Solvent Utilization,, -Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport,"Annual Amount Emissions Benzene, StorageAndTransport (25)",Annual Emissions of Benzene in Storage and Transport,, -Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Benzene, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Benzene in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Benzene, MiscellaneousAreaSources (28)",Annual Emissions of Benzene in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Benzene, IndustrialProcesses (3)",Annual Emissions of Benzene in Industrial Processes,, -Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Benzene, PetroleumAndSolventEvaporation (4)",Annual Emissions of Benzene in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal,"Annual Amount Emissions Benzene, WasteDisposal (5)",Annual Emissions of Benzene in Waste Disposal,, -Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion,"Annual Amount Emissions Cadmium, ExternalCombustion (1)",Annual Emissions of Cadmium in External Combustion,, -Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Cadmium, InternalCombustionEngines (2)",Annual Emissions of Cadmium in Internal Combustion Engines,, -Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cadmium, StationarySourceFuelCombustion (21)",Annual Emissions of Cadmium in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources,"Annual Amount Emissions Cadmium, MobileSources (22)",Annual Emissions of Cadmium in Mobile Sources,, -Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cadmium, IndustrialProcesses (23)",Annual Emissions of Cadmium in Industrial Processes,, -Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization,"Annual Amount Emissions Cadmium, SolventUtilization (24)",Annual Emissions of Cadmium in Solvent Utilization,, -Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cadmium, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Cadmium in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cadmium, MiscellaneousAreaSources (28)",Annual Emissions of Cadmium in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cadmium, IndustrialProcesses (3)",Annual Emissions of Cadmium in Industrial Processes,, -Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cadmium, PetroleumAndSolventEvaporation (4)",Annual Emissions of Cadmium in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal,"Annual Amount Emissions Cadmium, WasteDisposal (5)",Annual Emissions of Cadmium in Waste Disposal,, -Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Carbon Dioxide, ExternalCombustion (1)",Annual Emissions of Carbon Dioxide in External Combustion,, -Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Carbon Dioxide, InternalCombustionEngines (2)",Annual Emissions of Carbon Dioxide in Internal Combustion Engines,, -Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources,"Annual Amount Emissions Carbon Dioxide, MobileSources (22)",Annual Emissions of Carbon Dioxide in Mobile Sources,, -Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Carbon Dioxide, MiscellaneousAreaSources (28)",Annual Emissions of Carbon Dioxide in Miscellaneous Area Sources,, -Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Carbon Dioxide, IndustrialProcesses (3)",Annual Emissions of Carbon Dioxide in Industrial Processes,, -Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Carbon Dioxide, PetroleumAndSolventEvaporation (4)",Annual Emissions of Carbon Dioxide in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal,"Annual Amount Emissions Carbon Dioxide, WasteDisposal (5)",Annual Emissions of Carbon Dioxide in Waste Disposal,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Carbon Monoxide, ExternalCombustion (1)",Annual Emissions of Carbon Monoxide in External Combustion,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Carbon Monoxide, InternalCombustionEngines (2)",Annual Emissions of Carbon Monoxide in Internal Combustion Engines,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Carbon Monoxide, StationarySourceFuelCombustion (21)",Annual Emissions of Carbon Monoxide in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources,"Annual Amount Emissions Carbon Monoxide, MobileSources (22)",Annual Emissions of Carbon Monoxide in Mobile Sources,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (23)",Annual Emissions of Carbon Monoxide in Industrial Processes,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization,"Annual Amount Emissions Carbon Monoxide, SolventUtilization (24)",Annual Emissions of Carbon Monoxide in Solvent Utilization,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport,"Annual Amount Emissions Carbon Monoxide, StorageAndTransport (25)",Annual Emissions of Carbon Monoxide in Storage and Transport,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Carbon Monoxide, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Carbon Monoxide in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources,"Annual Amount Emissions Carbon Monoxide, NaturalSources (27)",Annual Emissions of Carbon Monoxide in Natural Sources,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Carbon Monoxide, MiscellaneousAreaSources (28)",Annual Emissions of Carbon Monoxide in Miscellaneous Area Sources,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (3)",Annual Emissions of Carbon Monoxide in Industrial Processes,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Carbon Monoxide, PetroleumAndSolventEvaporation (4)",Annual Emissions of Carbon Monoxide in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal,"Annual Amount Emissions Carbon Monoxide, WasteDisposal (5)",Annual Emissions of Carbon Monoxide in Waste Disposal,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Chemical and Allied Product Manufacturing,, -Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,"Annual Amount Emissions Chlorane, ExternalCombustion (1)",Annual Emissions of Chlorine in External Combustion,, -Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Chlorane, InternalCombustionEngines (2)",Annual Emissions of Chlorine in Internal Combustion Engines,, -Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chlorane, StationarySourceFuelCombustion (21)",Annual Emissions of Chlorine in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chlorane, IndustrialProcesses (23)",Annual Emissions of Chlorine in Industrial Processes,, -Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization,"Annual Amount Emissions Chlorane, SolventUtilization (24)",Annual Emissions of Chlorine in Solvent Utilization,, -Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chlorane, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Chlorine in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chlorane, MiscellaneousAreaSources (28)",Annual Emissions of Chlorine in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chlorane, IndustrialProcesses (3)",Annual Emissions of Chlorine in Industrial Processes,, -Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chlorane, PetroleumAndSolventEvaporation (4)",Annual Emissions of Chlorine in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal,"Annual Amount Emissions Chlorane, WasteDisposal (5)",Annual Emissions of Chlorine in Waste Disposal,, -Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,"Annual Amount Emissions Chlorine, ExternalCombustion (1)",Annual Emissions of Chlorine in External Combustion,, -Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Chlorine, InternalCombustionEngines (2)",Annual Emissions of Chlorine in Internal Combustion Engines,, -Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chlorine, StationarySourceFuelCombustion (21)",Annual Emissions of Chlorine in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources,"Annual Amount Emissions Chlorine, MobileSources (22)",Annual Emissions of Chlorine in Mobile Sources,, -Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chlorine, IndustrialProcesses (23)",Annual Emissions of Chlorine in Industrial Processes,, -Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chlorine, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Chlorine in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chlorine, MiscellaneousAreaSources (28)",Annual Emissions of Chlorine in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chlorine, IndustrialProcesses (3)",Annual Emissions of Chlorine in Industrial Processes,, -Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chlorine, PetroleumAndSolventEvaporation (4)",Annual Emissions of Chlorine in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal,"Annual Amount Emissions Chlorine, WasteDisposal (5)",Annual Emissions of Chlorine in Waste Disposal,, -Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion,"Annual Amount Emissions Chloroform, ExternalCombustion (1)",Annual Emissions of Chloroform in External Combustion,, -Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Chloroform, InternalCombustionEngines (2)",Annual Emissions of Chloroform Internal Combustion Engines,, -Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chloroform, StationarySourceFuelCombustion (21)",Annual Emissions of Chloroform in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chloroform, IndustrialProcesses (23)",Annual Emissions of Chloroform in Industrial Processes,, -Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization,"Annual Amount Emissions Chloroform, SolventUtilization (24)",Annual Emissions of Chloroform in Solvent Utilization,, -Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chloroform, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Chloroform in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chloroform, MiscellaneousAreaSources (28)",Annual Emissions of Chloroform in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chloroform, IndustrialProcesses (3)",Annual Emissions of Chloroform in Industrial Processes,, -Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chloroform, PetroleumAndSolventEvaporation (4)",Annual Emissions of Chloroform in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal,"Annual Amount Emissions Chloroform, WasteDisposal (5)",Annual Emissions of Chloroform in Waste Disposal,, -Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion,"Annual Amount Emissions Chromium(6+), ExternalCombustion (1)",Annual Emissions of Chromium in External Combustion,, -Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Chromium(6+), InternalCombustionEngines (2)",Annual Emissions of Chromium in Internal Combustion Engines,, -Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chromium(6+), StationarySourceFuelCombustion (21)",Annual Emissions of Chromium in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources,"Annual Amount Emissions Chromium(6+), MobileSources (22)",Annual Emissions of Chromium in Mobile Sources,, -Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chromium(6+), IndustrialProcesses (23)",Annual Emissions of Chromium in Industrial Processes,, -Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization,"Annual Amount Emissions Chromium(6+), SolventUtilization (24)",Annual Emissions of Chromium in Solvent Utilization,, -Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chromium(6+), WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Chromium in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chromium(6+), MiscellaneousAreaSources (28)",Annual Emissions of Chromium in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chromium(6+), IndustrialProcesses (3)",Annual Emissions of Chromium in Industrial Processes,, -Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chromium(6+), PetroleumAndSolventEvaporation (4)",Annual Emissions of Chromium in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal,"Annual Amount Emissions Chromium(6+), WasteDisposal (5)",Annual Emissions of Chromium in Waste Disposal,, -Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion,"Annual Amount Emissions Cobalt, ExternalCombustion (1)",Annual Emissions of Cobalt in External Combustion,, -Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Cobalt, InternalCombustionEngines (2)",Annual Emissions of Cobalt in Internal Combustion Engines,, -Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cobalt, StationarySourceFuelCombustion (21)",Annual Emissions of Cobalt in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources,"Annual Amount Emissions Cobalt, MobileSources (22)",Annual Emissions of Cobalt in Mobile Sources,, -Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cobalt, IndustrialProcesses (23)",Annual Emissions of Cobalt in Industrial Processes,, -Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization,"Annual Amount Emissions Cobalt, SolventUtilization (24)",Annual Emissions of Cobalt in Solvent Utilization,, -Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cobalt, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Cobalt in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cobalt, MiscellaneousAreaSources (28)",Annual Emissions of Cobalt in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cobalt, IndustrialProcesses (3)",Annual Emissions of Cobalt in Industrial Processes,, -Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cobalt, PetroleumAndSolventEvaporation (4)",Annual Emissions of Cobalt in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal,"Annual Amount Emissions Cobalt, WasteDisposal (5)",Annual Emissions of Cobalt in Waste Disposal,, -Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion,"Annual Amount Emissions Cyanide, ExternalCombustion (1)",Annual Emissions of Cyanide in External Combustion,, -Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Cyanide, InternalCombustionEngines (2)",Annual Emissions of Cyanide in Internal Combustion Engines,, -Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cyanide, StationarySourceFuelCombustion (21)",Annual Emissions of Cyanide in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cyanide, IndustrialProcesses (23)",Annual Emissions of Cyanide in Industrial Processes,, -Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization,"Annual Amount Emissions Cyanide, SolventUtilization (24)",Annual Emissions of Cyanide in Solvent Utilization,, -Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cyanide, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Cyanide in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cyanide, MiscellaneousAreaSources (28)",Annual Emissions of Cyanide in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cyanide, IndustrialProcesses (3)",Annual Emissions of Cyanide in Industrial Processes,, -Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cyanide, PetroleumAndSolventEvaporation (4)",Annual Emissions of Cyanide in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From EPA Fuel Combustion Other,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From EPA Miscellaneous,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Other Industrial Processes,, -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non BiogenicEmissionSource_VolatileOrganicCompound,, -Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion,"Annual Amount Emissions Fluorane, ExternalCombustion (1)",Annual Emissions of Fluorine in External Combustion,, -Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Fluorane, InternalCombustionEngines (2)",Annual Emissions of Fluorine in Internal Combustion Engines,, -Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Fluorane, StationarySourceFuelCombustion (21)",Annual Emissions of Fluorine in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Fluorane, IndustrialProcesses (23)",Annual Emissions of Fluorine in Industrial Processes,, -Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization,"Annual Amount Emissions Fluorane, SolventUtilization (24)",Annual Emissions of Fluorane in Solvent Utilization,, -Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Fluorane, MiscellaneousAreaSources (28)",Annual Emissions of Fluorine in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Fluorane, IndustrialProcesses (3)",Annual Emissions of Fluorine in Industrial Processes,, -Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Fluorane, PetroleumAndSolventEvaporation (4)",Annual Emissions of Fluorine in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal,"Annual Amount Emissions Fluorane, WasteDisposal (5)",Annual Emissions of Fluorine in Waste Disposal,, -Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion,"Annual Amount Emissions Formaldehyde, ExternalCombustion (1)",Annual Emissions of Formaldehyde in External Combustion,, -Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Formaldehyde, InternalCombustionEngines (2)",Annual Emissions of Formaldehyde in Internal Combustion Engines,, -Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Formaldehyde, StationarySourceFuelCombustion (21)",Annual Emissions of Formaldehyde in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources,"Annual Amount Emissions Formaldehyde, MobileSources (22)",Annual Emissions of Formaldehyde in Mobile Sources,, -Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,"Annual Amount Emissions Formaldehyde, IndustrialProcesses (23)",Annual Emissions of Formaldehyde in Industrial Processes,, -Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization,"Annual Amount Emissions Formaldehyde, SolventUtilization (24)",Annual Emissions of Formaldehyde in Solvent Utilization,, -Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Formaldehyde, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Formaldehyde in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources,"Annual Amount Emissions Formaldehyde, NaturalSources (27)",Annual Emissions of Formaldehyde in Natural Sources,, -Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Formaldehyde, MiscellaneousAreaSources (28)",Annual Emissions of Formaldehyde in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,"Annual Amount Emissions Formaldehyde, IndustrialProcesses (3)",Annual Emissions of Formaldehyde in Industrial Processes,, -Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Formaldehyde, PetroleumAndSolventEvaporation (4)",Annual Emissions of Formaldehyde in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal,"Annual Amount Emissions Formaldehyde, WasteDisposal (5)",Annual Emissions of Formaldehyde in Waste Disposal,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Fuel Combustion Electric Utility,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Fuel Combustion Industrial,, -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Fuel Combustion Industrial,, -Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion,"Annual Amount Emissions Hexane, ExternalCombustion (1)",Annual Emissions of Hexane in External Combustion,, -Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Hexane, InternalCombustionEngines (2)",Annual Emissions of Hexane in Internal Combustion Engines,, -Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Hexane, StationarySourceFuelCombustion (21)",Annual Emissions of Hexane in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Hexane_SCC_22_MobileSources,"Annual Amount Emissions Hexane, MobileSources (22)",Annual Emissions of Hexane in Mobile Sources,, -Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Hexane, IndustrialProcesses (23)",Annual Emissions of Hexane in Industrial Processes,, -Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization,"Annual Amount Emissions Hexane, SolventUtilization (24)",Annual Emissions of Hexane in Solvent Utilization,, -Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport,"Annual Amount Emissions Hexane, StorageAndTransport (25)",Annual Emissions of Hexane in Storage and Transport,, -Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Hexane, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Hexane in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Hexane, MiscellaneousAreaSources (28)",Annual Emissions of Hexane in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Hexane, IndustrialProcesses (3)",Annual Emissions of Hexane in Industrial Processes,, -Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Hexane, PetroleumAndSolventEvaporation (4)",Annual Emissions of Hexane in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal,"Annual Amount Emissions Hexane, WasteDisposal (5)",Annual Emissions of Hexane in Waste Disposal,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Industrial and Other Processes,, -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Industrial and Other Processes,, -Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion,"Annual Amount Emissions Lead, ExternalCombustion (1)",Annual Emissions of Lead in External Combustion,, -Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Lead, InternalCombustionEngines (2)",Annual Emissions of Lead in Internal Combustion Engines,, -Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Lead, StationarySourceFuelCombustion (21)",Annual Emissions of Lead in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Lead_SCC_22_MobileSources,"Annual Amount Emissions Lead, MobileSources (22)",Annual Emissions of Lead in Mobile Sources,, -Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,"Annual Amount Emissions Lead, IndustrialProcesses (23)",Annual Emissions of Lead in Industrial Processes,, -Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization,"Annual Amount Emissions Lead, SolventUtilization (24)",Annual Emissions of Lead in Solvent Utilization,, -Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport,"Annual Amount Emissions Lead, StorageAndTransport (25)",Annual Emissions of Lead in Storage and Transport,, -Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Lead, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Lead in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Lead, MiscellaneousAreaSources (28)",Annual Emissions of Lead in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,"Annual Amount Emissions Lead, IndustrialProcesses (3)",Annual Emissions of Lead in Industrial Processes,, -Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Lead, PetroleumAndSolventEvaporation (4)",Annual Emissions of Lead in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal,"Annual Amount Emissions Lead, WasteDisposal (5)",Annual Emissions of Lead in Waste Disposal,, -Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion,"Annual Amount Emissions Manganese, ExternalCombustion (1)",Annual Emissions of Manganese in External Combustion,, -Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Manganese, InternalCombustionEngines (2)",Annual Emissions of Manganese in Internal Combustion Engines,, -Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Manganese, StationarySourceFuelCombustion (21)",Annual Emissions of Manganese in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Manganese_SCC_22_MobileSources,"Annual Amount Emissions Manganese, MobileSources (22)",Annual Emissions of Manganese in Mobile Sources,, -Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,"Annual Amount Emissions Manganese, IndustrialProcesses (23)",Annual Emissions of Manganese in Industrial Processes,, -Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization,"Annual Amount Emissions Manganese, SolventUtilization (24)",Annual Emissions of Manganese in Solvent Utilization,, -Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Manganese, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Manganese in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Manganese, MiscellaneousAreaSources (28)",Annual Emissions of Manganese in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,"Annual Amount Emissions Manganese, IndustrialProcesses (3)",Annual Emissions of Manganese in Industrial Processes,, -Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Manganese, PetroleumAndSolventEvaporation (4)",Annual Emissions of Manganese in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal,"Annual Amount Emissions Manganese, WasteDisposal (5)",Annual Emissions of Manganese in Waste Disposal,, -Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion,"Annual Amount Emissions Mercury, ExternalCombustion (1)",Annual Emissions of Mercury in External Combustion,, -Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Mercury, InternalCombustionEngines (2)",Annual Emissions of Mercury in Internal Combustion Engines,, -Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Mercury, StationarySourceFuelCombustion (21)",Annual Emissions of Mercury in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Mercury_SCC_22_MobileSources,"Annual Amount Emissions Mercury, MobileSources (22)",Annual Emissions of Mercury in Mobile Sources,, -Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,"Annual Amount Emissions Mercury, IndustrialProcesses (23)",Annual Emissions of Mercury in Industrial Processes,, -Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization,"Annual Amount Emissions Mercury, SolventUtilization (24)",Annual Emissions of Mercury in Solvent Utilization,, -Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport,"Annual Amount Emissions Mercury, StorageAndTransport (25)",Annual Emissions of Mercury in Storage and Transport,, -Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Mercury, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Mercury in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Mercury, MiscellaneousAreaSources (28)",Annual Emissions of Mercury in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,"Annual Amount Emissions Mercury, IndustrialProcesses (3)",Annual Emissions of Mercury in Industrial Processes,, -Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Mercury, PetroleumAndSolventEvaporation (4)",Annual Emissions of Mercury in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal,"Annual Amount Emissions Mercury, WasteDisposal (5)",Annual Emissions of Mercury in Waste Disposal,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Metals Processing,, -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Metals Processing,, -Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion,"Annual Amount Emissions Methane, ExternalCombustion (1)",Annual Emissions of Methane in External Combustion,, -Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Methane, InternalCombustionEngines (2)",Annual Emissions of Methane in Internal Combustion Engines,, -Annual_Amount_Emissions_Methane_SCC_22_MobileSources,"Annual Amount Emissions Methane, MobileSources (22)",Annual Emissions of Methane in Mobile Sources,, -Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Methane, MiscellaneousAreaSources (28)",Annual Emissions of Methane in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Methane, IndustrialProcesses (3)",Annual Emissions of Methane in Industrial Processes,, -Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Methane, PetroleumAndSolventEvaporation (4)",Annual Emissions of Methane in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal,"Annual Amount Emissions Methane, WasteDisposal (5)",Annual Emissions of Methane in Waste Disposal,, -Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion,"Annual Amount Emissions Methanol, ExternalCombustion (1)",Annual Emissions of Methanol in External Combustion,, -Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Methanol, InternalCombustionEngines (2)",Annual Emissions of Methanol in Internal Combustion Engines,, -Annual_Amount_Emissions_Methanol_SCC_22_MobileSources,"Annual Amount Emissions Methanol, MobileSources (22)",Annual Emissions of Methanol in Mobile Sources,, -Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,"Annual Amount Emissions Methanol, IndustrialProcesses (23)",Annual Emissions of Methanol in Industrial Processes,, -Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization,"Annual Amount Emissions Methanol, SolventUtilization (24)",Annual Emissions of Methanol in Solvent Utilization,, -Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Methanol, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Methanol in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources,"Annual Amount Emissions Methanol, NaturalSources (27)",Annual Emissions of Methanol in Natural Sources,, -Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Methanol, MiscellaneousAreaSources (28)",Annual Emissions of Methanol in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,"Annual Amount Emissions Methanol, IndustrialProcesses (3)",Annual Emissions of Methanol in Industrial Processes,, -Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Methanol, PetroleumAndSolventEvaporation (4)",Annual Emissions of Methanol in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal,"Annual Amount Emissions Methanol, WasteDisposal (5)",Annual Emissions of Methanol in Waste Disposal,, -Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion,"Annual Amount Emissions Naphthalene, ExternalCombustion (1)",Annual Emissions of Naphthalene in External Combustion,, -Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Naphthalene, InternalCombustionEngines (2)",Annual Emissions of Naphthalene in Internal Combustion Engines,, -Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Naphthalene, StationarySourceFuelCombustion (21)",Annual Emissions of Naphthalene in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources,"Annual Amount Emissions Naphthalene, MobileSources (22)",Annual Emissions of Naphthalene in Mobile Sources,, -Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Naphthalene, IndustrialProcesses (23)",Annual Emissions of Naphthalene in Industrial Processes,, -Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization,"Annual Amount Emissions Naphthalene, SolventUtilization (24)",Annual Emissions of Naphthalene in Solvent Utilization,, -Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport,"Annual Amount Emissions Naphthalene, StorageAndTransport (25)",Annual Emissions of Naphthalene in Storage and Transport,, -Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Naphthalene, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Naphthalene in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Naphthalene, MiscellaneousAreaSources (28)",Annual Emissions of Naphthalene in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Naphthalene, IndustrialProcesses (3)",Annual Emissions of Naphthalene in Industrial Processes,, -Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Naphthalene, PetroleumAndSolventEvaporation (4)",Annual Emissions of Naphthalene in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal,"Annual Amount Emissions Naphthalene, WasteDisposal (5)",Annual Emissions of Naphthalene in Waste Disposal,, -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Ammonia",Annual Emissions of Biogenic Ammonia From Natural Resource,, -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Biogenic Carbon Monoxide From Natural Resource,, -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Biogenic Oxides of Nitrogen From Natural Resource,, -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Biogenic Volatile Organic Compound From Natural Resource,, -Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion,"Annual Amount Emissions Nickel, ExternalCombustion (1)",Annual Emissions of Nickel in External Combustion,, -Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Nickel, InternalCombustionEngines (2)",Annual Emissions of Nickel in Internal Combustion Engines,, -Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Nickel, StationarySourceFuelCombustion (21)",Annual Emissions of Nickel in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Nickel_SCC_22_MobileSources,"Annual Amount Emissions Nickel, MobileSources (22)",Annual Emissions of Nickel in Mobile Sources,, -Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,"Annual Amount Emissions Nickel, IndustrialProcesses (23)",Annual Emissions of Nickel in Industrial Processes,, -Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization,"Annual Amount Emissions Nickel, SolventUtilization (24)",Annual Emissions of Nickel in Solvent Utilization,, -Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Nickel, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Nickel in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Nickel, MiscellaneousAreaSources (28)",Annual Emissions of Nickel in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,"Annual Amount Emissions Nickel, IndustrialProcesses (3)",Annual Emissions of Nickel in Industrial Processes,, -Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Nickel, PetroleumAndSolventEvaporation (4)",Annual Emissions of Nickel in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal,"Annual Amount Emissions Nickel, WasteDisposal (5)",Annual Emissions of Nickel in Waste Disposal,, -Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Nitrous Oxide, ExternalCombustion (1)",Annual Emissions of Nitrous Oxide in External Combustion,, -Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Nitrous Oxide, InternalCombustionEngines (2)",Annual Emissions of Nitrous Oxide in Internal Combustion Engines,, -Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources,"Annual Amount Emissions Nitrous Oxide, MobileSources (22)",Annual Emissions of Nitrous Oxide in Mobile Sources,, -Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Nitrous Oxide, IndustrialProcesses (3)",Annual Emissions of Nitrous Oxide in Industrial Processes,, -Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Nitrous Oxide, PetroleumAndSolventEvaporation (4)",Annual Emissions of Nitrous Oxide in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal,"Annual Amount Emissions Nitrous Oxide, WasteDisposal (5)",Annual Emissions of Nitrous Oxide in Waste Disposal,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, PM 10",Annual Emissions Non Biogenic PM10 From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Non Road Engines and Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM2.5 On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide On Road Vehicles,, -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound On Road Vehicles,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion,"Annual Amount Emissions Oxides Of Nitrogen, ExternalCombustion (1)",Annual Emissions of Oxides of Nitrogen in External Combustion,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Oxides Of Nitrogen, InternalCombustionEngines (2)",Annual Emissions of Oxides of Nitrogen in Internal Combustion Engines,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Oxides Of Nitrogen, StationarySourceFuelCombustion (21)",Annual Emissions of Oxides of Nitrogen in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,"Annual Amount Emissions Oxides Of Nitrogen, MobileSources (22)",Annual Emissions of Oxides of Nitrogen in Industrial Processes,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,"Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (23)",Annual Emissions of Oxides of Nitrogen in Industrial Processes,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,"Annual Amount Emissions Oxides Of Nitrogen, SolventUtilization (24)",Annual Emissions of Oxides of Nitrogen in Solvent Utilization,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,"Annual Amount Emissions Oxides Of Nitrogen, StorageAndTransport (25)",Annual Emissions of Oxides of Nitrogen in Storage and Transport,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Oxides of Nitrogen in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources,"Annual Amount Emissions Oxides Of Nitrogen, NaturalSources (27)",Annual Emissions of Oxides of Nitrogen in Natural Sources,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Oxides Of Nitrogen, MiscellaneousAreaSources (28)",Annual Emissions of Oxides of Nitrogen in Miscellaneous Area Sources,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,"Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (3)",Annual Emissions of Oxides of Nitrogen in Industrial Processes,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Oxides Of Nitrogen, PetroleumAndSolventEvaporation (4)",Annual Emissions of Oxides of Nitrogen in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal,"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposal (5)",Annual Emissions of Oxides of Nitrogen in Waste Disposal,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, ExternalCombustion (1)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From External Combustion,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, InternalCombustionEngines (2)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Internal Combustion Engines,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, StationarySourceFuelCombustion (21)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MobileSources (22)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Mobile Sources,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (23)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Industrial Processes,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, SolventUtilization (24)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Solvent Utilization,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MiscellaneousAreaSources (28)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Miscellaneous Area Sources,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (3)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Industrial Processes,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, PetroleumAndSolventEvaporation (4)",Annual Emissions of Oxo (Oxochromiooxy) Chromium From Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposal (5)",Annual Emissions of Oxo(Oxochromiooxy) Chromium From Waste Disposal,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Petroleum and Related Industries,, -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Petroleum and Related Industries,, -Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion,"Annual Amount Emissions Phenol, ExternalCombustion (1)",Annual Emissions of Phenol in External Combustion,, -Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Phenol, InternalCombustionEngines (2)",Annual Emissions of Phenol in Internal Combustion Engines,, -Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Phenol, StationarySourceFuelCombustion (21)",Annual Emissions of Phenol in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Phenol_SCC_22_MobileSources,"Annual Amount Emissions Phenol, MobileSources (22)",Annual Emissions of Phenol in Mobile Sources,, -Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,"Annual Amount Emissions Phenol, IndustrialProcesses (23)",Annual Emissions of Phenol in Industrial Processes,, -Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization,"Annual Amount Emissions Phenol, SolventUtilization (24)",Annual Emissions of Phenol in Solvent Utilization,, -Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Phenol, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Phenol in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Phenol, MiscellaneousAreaSources (28)",Annual Emissions of Phenol in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,"Annual Amount Emissions Phenol, IndustrialProcesses (3)",Annual Emissions of Phenol in Industrial Processes,, -Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Phenol, PetroleumAndSolventEvaporation (4)",Annual Emissions of Phenol in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal,"Annual Amount Emissions Phenol, WasteDisposal (5)",Annual Emissions of Phenol in Waste Disposal,, -Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion,"Annual Amount Emissions Phosphorus, ExternalCombustion (1)",Annual Emissions of Phosphorus in External Combustion,, -Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Phosphorus, InternalCombustionEngines (2)",Annual Emissions of Phosphorus in Internal Combustion Engines,, -Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Phosphorus, StationarySourceFuelCombustion (21)",Annual Emissions of Phosphorus in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources,"Annual Amount Emissions Phosphorus, MobileSources (22)",Annual Emissions of Phosphorus in Mobile Sources,, -Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,"Annual Amount Emissions Phosphorus, IndustrialProcesses (23)",Annual Emissions of Phosphorus in Industrial Processes,, -Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization,"Annual Amount Emissions Phosphorus, SolventUtilization (24)",Annual Emissions of Phosphorus in Solvent Utilization,, -Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Phosphorus, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Phosphorus in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Phosphorus, MiscellaneousAreaSources (28)",Annual Emissions of Phosphorus in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,"Annual Amount Emissions Phosphorus, IndustrialProcesses (3)",Annual Emissions of Phosphorus in Industrial Processes,, -Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Phosphorus, PetroleumAndSolventEvaporation (4)",Annual Emissions of Phosphorus in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal,"Annual Amount Emissions Phosphorus, WasteDisposal (5)",Annual Emissions of Phosphorus in Waste Disposal,, -Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion,"Annual Amount Emissions PM10, ExternalCombustion (1)",Annual Emissions of PM10 in External Combustion,, -Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines,"Annual Amount Emissions PM10, InternalCombustionEngines (2)",Annual Emissions of PM10 in Internal Combustion Engines,, -Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions PM10, StationarySourceFuelCombustion (21)",Annual Emissions of PM10 in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_PM10_SCC_22_MobileSources,"Annual Amount Emissions PM10, MobileSources (22)",Annual Emissions of PM10 in Mobile Sources,, -Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,"Annual Amount Emissions PM10, IndustrialProcesses (23)",Annual Emissions of PM10 in Industrial Processes,, -Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,"Annual Amount Emissions PM10, SolventUtilization (24)",Annual Emissions of PM10 in Solvent Utilization,, -Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,"Annual Amount Emissions PM10, StorageAndTransport (25)",Annual Emissions of PM10 in Storage and Transport,, -Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions PM10, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of PM10 in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions PM10, MiscellaneousAreaSources (28)",Annual Emissions of PM10 in Miscellaneous Area Sources,, -Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,"Annual Amount Emissions PM10, IndustrialProcesses (3)",Annual Emissions of PM10 in Industrial Processes,, -Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions PM10, PetroleumAndSolventEvaporation (4)",Annual Emissions of PM10 in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal,"Annual Amount Emissions PM10, WasteDisposal (5)",Annual Emissions of PM10 in Waste Disposal,, -Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories,"Annual Amount Emissions PM10, MACTSourceCategories (6)",Annual Emissions of PM10 in MACT Source Categories,, -Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion,"Annual Amount Emissions PM2.5, ExternalCombustion (1)",Annual Emissions of PM2.5 in External Combustion,, -Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines,"Annual Amount Emissions PM2.5, InternalCombustionEngines (2)",Annual Emissions of PM2.5 in Internal Combustion Engines,, -Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions PM2.5, StationarySourceFuelCombustion (21)",Annual Emissions of PM2.5 in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources,"Annual Amount Emissions PM2.5, MobileSources (22)",Annual Emissions of PM2.5 in Mobile Sources,, -Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,"Annual Amount Emissions PM2.5, IndustrialProcesses (23)",Annual Emissions of PM2.5 in Industrial Processes,, -Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,"Annual Amount Emissions PM2.5, SolventUtilization (24)",Annual Emissions of PM2.5 in Solvent Utilization,, -Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,"Annual Amount Emissions PM2.5, StorageAndTransport (25)",Annual Emissions of PM2.5 in Storage and Transport,, -Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions PM2.5, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of PM2.5 in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions PM2.5, MiscellaneousAreaSources (28)",Annual Emissions of PM2.5 in Miscellaneous Area Sources,, -Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,"Annual Amount Emissions PM2.5, IndustrialProcesses (3)",Annual Emissions of PM2.5 in Industrial Processes,, -Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions PM2.5, PetroleumAndSolventEvaporation (4)",Annual Emissions of PM2.5 in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal,"Annual Amount Emissions PM2.5, WasteDisposal (5)",Annual Emissions of PM2.5 in Waste Disposal,, -Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories,"Annual Amount Emissions PM2.5, MACTSourceCategories (6)",Annual Emissions of PM2.5 in MACT Source Categories,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Prescribed Fire,, -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Prescribed Fire,, -Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion,"Annual Amount Emissions Pyrene, ExternalCombustion (1)",Annual Emissions of Pyrene in External Combustion,, -Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Pyrene, InternalCombustionEngines (2)",Annual Emissions of Pyrene in Internal Combustion Engines,, -Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Pyrene, StationarySourceFuelCombustion (21)",Annual Emissions of Pyrene in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources,"Annual Amount Emissions Pyrene, MobileSources (22)",Annual Emissions of Pyrene in Mobile Sources,, -Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Pyrene, IndustrialProcesses (23)",Annual Emissions of Pyrene in Industrial Processes,, -Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Pyrene, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Pyrene in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Pyrene, MiscellaneousAreaSources (28)",Annual Emissions of Pyrene in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Pyrene, IndustrialProcesses (3)",Annual Emissions of Pyrene in Industrial Processes,, -Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Pyrene, PetroleumAndSolventEvaporation (4)",Annual Emissions of Pyrene in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_SCC_1_ExternalCombustion,Annual Amount Emissions ExternalCombustion (1),Annual Emissions by External Combustion,, -Annual_Amount_Emissions_SCC_2_InternalCombustionEngines,Annual Amount Emissions InternalCombustionEngines (2),Annual Emissions by Internal Combustion Engines,, -Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion,Annual Amount Emissions StationarySourceFuelCombustion (21),Annual Emissions by Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_SCC_22_MobileSources,Annual Amount Emissions MobileSources (22),Annual Emissions by Mobile Sources,, -Annual_Amount_Emissions_SCC_23_IndustrialProcesses,Annual Amount Emissions IndustrialProcesses (23),Annual Emissions by Industrial Processes,, -Annual_Amount_Emissions_SCC_24_SolventUtilization,Annual Amount Emissions SolventUtilization (24),Annual Emissions by Solvent Utilization,, -Annual_Amount_Emissions_SCC_25_StorageAndTransport,Annual Amount Emissions StorageAndTransport (25),Annual Emissions by Storage and Transport,, -Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery,Annual Amount Emissions WasteDisposalTreatmentAndRecovery (26),Annual Emissions by Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_SCC_27_NaturalSources,Annual Amount Emissions NaturalSources (27),Annual Emissions by Natural Sources,, -Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources,Annual Amount Emissions MiscellaneousAreaSources (28),Annual Emissions by Miscellaneous Area Sources,, -Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual Amount Emissions IndustrialProcesses (3),Annual Emissions by Industrial Processes,, -Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation,Annual Amount Emissions PetroleumAndSolventEvaporation (4),Annual Emissions by Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_SCC_5_WasteDisposal,Annual Amount Emissions WasteDisposal (5),Annual Emissions by Waste Disposal,, -Annual_Amount_Emissions_SCC_6_MACTSourceCategories,Annual Amount Emissions MACTSourceCategories (6),Annual Emissions by MACT Source Categories,, -Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion,"Annual Amount Emissions Selenium, ExternalCombustion (1)",Annual Emissions of Selenium in External Combustion,, -Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Selenium, InternalCombustionEngines (2)",Annual Emissions of Selenium in Internal Combustion Engines,, -Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Selenium, StationarySourceFuelCombustion (21)",Annual Emissions of Selenium in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Selenium_SCC_22_MobileSources,"Annual Amount Emissions Selenium, MobileSources (22)",Annual Emissions of Selenium in Mobile Sources,, -Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Selenium, IndustrialProcesses (23)",Annual Emissions of Selenium in Industrial Processes,, -Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization,"Annual Amount Emissions Selenium, SolventUtilization (24)",Annual Emissions of Selenium in Solvent Utilization,, -Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Selenium, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Selenium in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Selenium, MiscellaneousAreaSources (28)",Annual Emissions of Selenium in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Selenium, IndustrialProcesses (3)",Annual Emissions of Selenium in Industrial Processes,, -Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Selenium, PetroleumAndSolventEvaporation (4)",Annual Emissions of Selenium in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal,"Annual Amount Emissions Selenium, WasteDisposal (5)",Annual Emissions of Selenium in Waste Disposal,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic Sulfur Dioxide From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Solvent Utilization,, -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Solvent Utilization,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Stationary Fuel Combustion,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Storage and Transport,, -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Storage and Transport,, -Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion,"Annual Amount Emissions Sulfane, ExternalCombustion (1)",Annual Emissions of Sulfane in External Combustion,, -Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Sulfane, InternalCombustionEngines (2)",Annual Emissions of Sulfane in Internal Combustion Engines,, -Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Sulfane, IndustrialProcesses (23)",Annual Emissions of Sulfane in Industrial Processes,, -Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization,"Annual Amount Emissions Sulfane, SolventUtilization (24)",Annual Emissions of Sulfane in Solvent Utilization,, -Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Sulfane, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Sulfane in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Sulfane, MiscellaneousAreaSources (28)",Annual Emissions of Sulfane in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Sulfane, IndustrialProcesses (3)",Annual Emissions of Sulfane in Industrial Processes,, -Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Sulfane, PetroleumAndSolventEvaporation (4)",Annual Emissions of Sulfane in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal,"Annual Amount Emissions Sulfane, WasteDisposal (5)",Annual Emissions of Sulfane in Waste Disposal,, -Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Sulfur Dioxide, ExternalCombustion (1)",Annual Emissions of Sulfur Dioxide in External Combustion,, -Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Sulfur Dioxide, InternalCombustionEngines (2)",Annual Emissions of Sulfur Dioxide in Internal Combustion Engines,, -Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Sulfur Dioxide, StationarySourceFuelCombustion (21)",Annual Emissions of Sulfur Dioxide in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources,"Annual Amount Emissions Sulfur Dioxide, MobileSources (22)",Annual Emissions of Sulfur Dioxide in Mobile Sources,, -Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (23)",Annual Emissions of Sulfur Dioxide in Industrial Processes,, -Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization,"Annual Amount Emissions Sulfur Dioxide, SolventUtilization (24)",Annual Emissions of Sulfur Dioxide in Solvent Utilization,, -Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport,"Annual Amount Emissions Sulfur Dioxide, StorageAndTransport (25)",Annual Emissions of Sulfur Dioxide in Storage and Transport,, -Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Sulfur Dioxide, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Sulfur Dioxide in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Sulfur Dioxide, MiscellaneousAreaSources (28)",Annual Emissions of Sulfur Dioxide in Miscellaneous Area Sources,, -Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (3)",Annual Emissions of Sulfur Dioxide in Industrial Processes,, -Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Sulfur Dioxide, PetroleumAndSolventEvaporation (4)",Annual Emissions of Sulfur Dioxide in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal,"Annual Amount Emissions Sulfur Dioxide, WasteDisposal (5)",Annual Emissions of Sulfur Dioxide in Waste Disposal,, -Annual_Amount_Emissions_SulfurDioxide_SCC_6_MACTSourceCategories,"Annual Amount Emissions Sulfur Dioxide, MACTSourceCategories (6)",,, -Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion,"Annual Amount Emissions Toluene, ExternalCombustion (1)",Annual Emissions of Toluene in External Combustion,, -Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Toluene, InternalCombustionEngines (2)",Annual Emissions of Toluene in Internal Combustion Engines,, -Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Toluene, StationarySourceFuelCombustion (21)",Annual Emissions of Toluene in Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_Toluene_SCC_22_MobileSources,"Annual Amount Emissions Toluene, MobileSources (22)",Annual Emissions of Toluene in Mobile Sources,, -Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Toluene, IndustrialProcesses (23)",Annual Emissions of Toluene in Industrial Processes,, -Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization,"Annual Amount Emissions Toluene, SolventUtilization (24)",Annual Emissions of Toluene in Solvent Utilization,, -Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport,"Annual Amount Emissions Toluene, StorageAndTransport (25)",Annual Emissions of Toluene in Storage and Transport,, -Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Toluene, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Toluene in Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Toluene, MiscellaneousAreaSources (28)",Annual Emissions of Toluene in Miscellaneous Area Sources,, -Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Toluene, IndustrialProcesses (3)",Annual Emissions of Toluene in Industrial Processes,, -Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Toluene, PetroleumAndSolventEvaporation (4)",Annual Emissions of Toluene in Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal,"Annual Amount Emissions Toluene, WasteDisposal (5)",Annual Emissions of Toluene in Waste Disposal,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions of Non Biogenic Sulfur Dioxide From Transportation,, -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Transportation,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion,"Annual Amount Emissions Volatile Organic Compound, ExternalCombustion (1)",Annual Emissions of Volatile Organic Compound From External Combustion,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Volatile Organic Compound, InternalCombustionEngines (2)",Annual Emissions of Volatile Organic Compound From Internal Combustion Engines,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Volatile Organic Compound, StationarySourceFuelCombustion (21)",Annual Emissions of Volatile Organic Compound From Stationary Source Fuel Combustion,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources,"Annual Amount Emissions Volatile Organic Compound, MobileSources (22)",Annual Emissions of Volatile Organic Compound From Mobile Sources,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (23)",Annual Emissions of Volatile Organic Compound From Industrial Processes,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization,"Annual Amount Emissions Volatile Organic Compound, SolventUtilization (24)",Annual Emissions of Volatile Organic Compound From Solvent Utilization,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport,"Annual Amount Emissions Volatile Organic Compound, StorageAndTransport (25)",Annual Emissions of Volatile Organic Compound From Storage and Transport,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Volatile Organic Compound, WasteDisposalTreatmentAndRecovery (26)",Annual Emissions of Volatile Organic Compound From Waste Disposal Treatment and Recovery,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources,"Annual Amount Emissions Volatile Organic Compound, NaturalSources (27)",Annual Emissions Volatile Organic Compound From Natural Sources,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Volatile Organic Compound, MiscellaneousAreaSources (28)",Annual Emissions of Volatile Organic Compound From Miscellaneous Area Sources,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (3)",Annual Emissions of Volatile Organic Compound From Industrial Processes,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Volatile Organic Compound, PetroleumAndSolventEvaporation (4)",Annual Emissions of Volatile Organic Compound From Petroleum and Solvent Evaporation,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal,"Annual Amount Emissions Volatile Organic Compound, WasteDisposal (5)",Annual Emissions of Volatile Organic Compound From Waste Disposal,, -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories,"Annual Amount Emissions Volatile Organic Compound, MACTSourceCategories (6)",Annual Emissions of Volatile Organic Compound From MACT Source Categories,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions Non Biogenic Sulfur Dioxide From Waste Disposal and Recycling,, -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Waste Disposal and Recycling,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Ammonia",Annual Emissions of Non Biogenic Ammonia From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Carbon Monoxide",Annual Emissions of Non Biogenic Carbon Monoxide From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Oxides of Nitrogen",Annual Emissions of Non Biogenic Oxides of Nitrogen From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, PM 10",Annual Emissions of Non Biogenic PM10 From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, PM 2.5",Annual Emissions of Non Biogenic PM2.5 From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Sulfur Dioxide",Annual Emissions Non Biogenic Sulfur Dioxide From Wildfire,, -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Volatile Organic Compound",Annual Emissions of Non Biogenic Volatile Organic Compound From Wildfire,, -Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal,"Quality of fossil fuels in electricity generation, ash content, bituminous coal, all sectors, annual",Quality of Fossil Fuels in Electricity Generation,, -Annual_AshContent_Fuel_ForElectricityGeneration_Coal,"Quality of fossil fuels in electricity generation, ash content, coal, all sectors, annual",Annual Quality of Coal in Electricity Generation,, -Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Quality of fossil fuels in electricity generation, ash content, coal, electric power (total), annual",Annual Ash Content In Coal For Electricity Generation In Electric Power Plants,, -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal,"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, all sectors, annual",Annual Quality of Subbituminous Coal in All Sectors,, -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric power (total), annual",Annual Ash Content In Subbituminous Coal For Electricity Generation by Electric Power,, -Annual_Average_AshContent_Coal_For_ElectricPower,"Ash content, electric power (total), annual",Annual Ash Content In Electric Power,, -Annual_Average_AshContent_Coal_For_OtherIndustrial,"Ash content, other industrial, annual",Annual Ash Content For Other Industries,, -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric power (total), annual",Total Annual Average Cost of Natural Gas for Electricity Generation,, -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric utility, annual",Average Cost of Fossil Fuels For Electricity Generation From Natural Gas,, -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,"Average cost of fossil fuels for electricity generation (per Btu), natural gas, independent power producers (total), annual",Total Annual Average Cost of Natural Gas for Electricity Generation,, -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric power (total), annual",Total Annual Average Cost of Petroleum Liquids for Electricity Generation,, -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric utility, annual",Annual Average Cost Of Petroleum Liquids For Electricity Production,, -Annual_Average_HeatContent_Coal_For_ElectricPower,"Heat content, electric power (total), annual",Total Annual Heat Content of Electric Power,, -Annual_Average_HeatContent_Coal_For_OtherIndustrial,"Heat content, other industrial, annual",Annual Average of Heat Content in Coal For Other Industrial,, -Annual_Average_RetailPrice_Electricity_Commercial,"Average retail price of electricity, commercial, annual",Annual Average Retail Price of Electricity in Commercial,, -Annual_Average_RetailPrice_Electricity_Industrial,"Average retail price of electricity, industrial, annual",Annual Average Retail Price of Electricity in Industries,, -Annual_Average_RetailPrice_Electricity_OtherSector,"Average retail price of electricity, other, annual",Annual Average Retail Price of Electricity;Annual Average Retail Price Electricity in Other Sectors,, -Annual_Average_RetailPrice_Electricity_Residential,"Average retail price of electricity, residential, annual",Annual Average Retail Price of Residential Electricity,, -Annual_Average_SulfurContent_Coal_For_ElectricPower,"Sulfur content, electric power (total), annual",Total Annual Sulfur Content For Electric Power,, -Annual_Average_SulfurContent_Coal_For_OtherIndustrial,"Sulfur content, other industrial, annual",Annual Sulfur content in Other Industrial,, -Annual_Capacity_Electricity_AutoProducer,Annual Capacity of Electricity: Auto Producer,Annual Capacity of Electricity Auto Producers,, -Annual_Capacity_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,"Annual Capacity of Electricity: From Combustible Fuel, Auto Producer Electricity Power Plants",Annual Capacity Of Electricity From Combustible Fuel In Autoproducer Electricity Power Plants,, -Annual_Capacity_Electricity_CombustibleFuel_ElectricityPowerPlants,"Annual Capacity of Electricity: From Combustible Fuel, Electricity Power Plants",Annual Capacity Electricity From Combustible Fuel in Electricity Power Plants,, -Annual_Capacity_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity: From Combustible Fuel, Main Activity Producer Electricity Power Plants",Annual Capacity of Combustible Fuel in Main Activity Producer Electricity Power Plants,, -Annual_Capacity_Electricity_ElectricityPowerPlants,Annual Capacity of Electricity: Electricity Power Plants,Annual Capacity Of Electricity Power Plants,, -Annual_Capacity_Electricity_MainActivityProducer,Annual Capacity of Electricity: Main Activity Producer,Annual Capacity of Electricity by Main Activity Producers,, -Annual_Capacity_Electricity_Solar_AutoProducerElectricityPowerPlants,"Annual Capacity of Electricity: From Solar, Auto Producer Electricity Power Plants",Annual Capacity of Electricity From Solar Energy By Autoproducer Electricity Power Plants,, -Annual_Capacity_Electricity_Solar_ElectricityPowerPlants,"Annual Capacity of Electricity: From Solar, Electricity Power Plants",Annual Capacity of Electric Power Plants From Solar,, -Annual_Capacity_Electricity_Solar_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity: From Solar, Main Activity Producer Electricity Power Plants",Annual Capacity of Electricity From Solar Main Activity Producer Electricity Power Plants,, -Annual_Capacity_Electricity_SolarPhotovoltaic,Annual Capacity of Electricity: From Solar Photovoltaic,Annual Capacity of Electricity From Solar Photovoltaic,, -Annual_Capacity_Electricity_SolarPhotovoltaic_MainActivityProducer,"Annual Capacity of Electricity: From Solar Photovoltaic, Main Activity Producer",Annual Capacity of Electricity by Solar Photovoltaic For Main Activity Producer,, -Annual_Capacity_Electricity_Water_AutoProducerElectricityPowerPlants,"Annual Capacity of Electricity: From EIA_Water, Auto Producer Electricity Power Plants",Annual Capacity of EIA_Water by Auto Producer Electricity Power Plants,, -Annual_Capacity_Electricity_Water_ElectricityPowerPlants,"Annual Capacity of Electricity: From EIA_Water, Electricity Power Plants",Annual Capacity of Electricity From Water by Electricity Power Plants,, -Annual_Capacity_Electricity_Water_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity: From EIA_Water, Main Activity Producer Electricity Power Plants",Annual Capacity of Electricity From Water by Main Activity Producer Electricity Power Plants,, -Annual_Capacity_Electricity_Wind_ElectricityPowerPlants,"Annual Capacity of Electricity: From Wind, Electricity Power Plants",Annual Capacity of Electricity From Wind In Electricity Power Plants,, -Annual_Capacity_Electricity_Wind_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity: From Wind, Main Activity Producer Electricity Power Plants",Annual Capacity of Electricity From Wind in Main Activity Producer Electricity Power Plants,, -Annual_Capacity_Fuel_CrudeOil_Refinery,"Annual Capacity of Fuel: Crude Oil, Refinery",Annual Capacity of Crude Oil in Refinery,, -Annual_Consumption_Coal_ElectricPower,"Total consumption, electric power (total), annual",Annual Consumption of Electric Power,, -Annual_Consumption_Coal_ElectricUtility,"Total consumption, electric utility, annual",Total Annual Consumption of Electric Utility,, -Annual_Consumption_Coal_OtherIndustrial,"Total consumption, other industrial, annual",Annual Consumption of Coal in Other industrial,, -Annual_Consumption_Electricity_Agriculture,Annual Consumption of Electricity: for Agriculture,Annual Consumption of Electricity for Agriculture,, -Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry,Annual Consumption of Electricity: for Chemical Petrochemical Industry,Annual Consumption of Electricity for Chemical Petrochemical Industries,, -Annual_Consumption_Electricity_CoalMines_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Coal Mines, Energy Industry Own Use",Annual Consumption of Electricity In Coal Mines,, -Annual_Consumption_Electricity_CommerceAndPublicServices,Annual Consumption of Electricity: for Commerce And Public Services,Annual Consumption of Electricity for Commerce And Public Services,, -Annual_Consumption_Electricity_ConstructionIndustry,Annual Consumption of Electricity: for Construction Industry,Annual Consumption for Construction Industry,, -Annual_Consumption_Electricity_ElectricityGeneration_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Electricity Generation, Energy Industry Own Use",Annual Consumption Of Electricity In Electricity Generation Industries,, -Annual_Consumption_Electricity_EnergyIndustry_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Energy Industry, Energy Industry Own Use",Annual Consumption Of Electricity For Industrial Use,, -Annual_Consumption_Electricity_FoodAndTobaccoIndustry,Annual Consumption of Electricity: for Food And Tobacco Industry,Annual Consumption For Food And Tobacco Industries,, -Annual_Consumption_Electricity_Households,Annual Consumption of Electricity: for Households,Annual Consumption of Electricity in Households,, -Annual_Consumption_Electricity_Industry_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Industry, Energy Industry Own Use",Annual Consumption of Electricity in Industries For Energy Industry Own Use,, -Annual_Consumption_Electricity_IronSteel,Annual Consumption of Electricity: for Iron Steel,Annual Consumption of Electricity By Iron Steel Industries,, -Annual_Consumption_Electricity_MachineryIndustry,Annual Consumption of Electricity: for Machinery Industry,Annual Consumption of Electricity For Machinery Industries,, -Annual_Consumption_Electricity_Manufacturing,Annual Consumption of Electricity: for Manufacturing,Annual Consumption of Electricity For Manufacturing,, -Annual_Consumption_Electricity_MiningAndQuarryingIndustry,Annual Consumption of Electricity: for Mining And Quarrying Industry,Annual Consumption of Electricity in The Mining And Quarrying Industry,, -Annual_Consumption_Electricity_NonFerrousMetalsIndustry,Annual Consumption of Electricity: for Non Ferrous Metals Industry,Annual Consumption of Electricity in Non-Ferrous Metals Industries,, -Annual_Consumption_Electricity_NonMetallicMineralsIndustry,Annual Consumption of Electricity: for Non Metallic Minerals Industry,Annual Consumption of Electricity By The Non-Metallic Minerals Industry,, -Annual_Consumption_Electricity_OilGasExtraction_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Oil Gas Extraction, Energy Industry Own Use",Annual Consumption Of Electricity in Oil Gas Extraction,, -Annual_Consumption_Electricity_OilRefineries_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Oil Refineries, Energy Industry Own Use",Annual Consumption of Oil Refineries in Energy Industry Own Use,, -Annual_Consumption_Electricity_OtherIndustry,Annual Consumption of Electricity: for UN_Other Industry,Annual Consumption of Electricity By Other Industries,, -Annual_Consumption_Electricity_OtherManufacturingIndustry,Annual Consumption of Electricity: for UN_Other Manufacturing Industry,Annual Consumption Of Electricity In Manufacturing Industries,, -Annual_Consumption_Electricity_OtherSector,Annual Consumption of Electricity: for UN_Other Sector,Annual Consumption of Electricity In Other Sectors,, -Annual_Consumption_Electricity_OtherTransport,Annual Consumption of Electricity: for UN_Other Transport,Annual Consumption of Electricity in UN Other Transport,, -Annual_Consumption_Electricity_PaperPulpPrintIndustry,Annual Consumption of Electricity: for Paper Pulp Print Industry,Annual Electricity Consumption By Paper Pulp Print Industries,, -Annual_Consumption_Electricity_RailTransport,Annual Consumption of Electricity: for Rail Transport,Annual Consumption of Electricity In Rail Transport,, -Annual_Consumption_Electricity_TextileAndLeatherIndustry,Annual Consumption of Electricity: for Textile And Leather Industry,Annual Consumption Of Electricity By Textile And Leather Industries,, -Annual_Consumption_Electricity_TransportEquipmentIndustry,Annual Consumption of Electricity: for Transport Equipment Industry,Annual Consumption of Electricity in Transport Equipment Industries,, -Annual_Consumption_Electricity_TransportIndustry,Annual Consumption of Electricity: for Transport Industry,Annual Consumption of Electricity in Transport Industries,, -Annual_Consumption_Electricity_UnspecifiedSector,Annual Consumption of Electricity: for UN_Unspecified Sector,Annual Consumption Of Electricity in UN_Unspecified Sectors,, -Annual_Consumption_Electricity_WoodAndWoodProductsIndustry,Annual Consumption of Electricity: for Wood And Wood Products Industry,Annual Consumption For Wood And Wood Products Industries,, -Annual_Consumption_Energy_CommerceAndPublicServices_Heat,"Annual Consumption of Energy: Commerce And Public Services, Heat",Annual Consumption of Heat In Commerce And Public Services,, -Annual_Consumption_Energy_ElectricityGeneration_Heat_EnergyIndustryOwnUse,"Annual Consumption of Energy: Electricity Generation, Heat, Energy Industry Own Use",Annual Consumption of Heat for Own Use in Electricity Generation Industries,, -Annual_Consumption_Energy_Geothermal,Annual Consumption of Energy: Geothermal,Annual Consumption of Geothermal,, -Annual_Consumption_Energy_Heat,Annual Consumption of Energy: Heat,Annual Consumption of Energy in Heat,, -Annual_Consumption_Energy_Households_Heat,"Annual Consumption of Energy: Households, Heat",Annual Consumption of Heat in Households,, -Annual_Consumption_Energy_Households_SolarThermal,"Annual Consumption of Energy: Households, Solar Thermal",Annual Consumption of Solar Thermal in Households,, -Annual_Consumption_Energy_Manufacturing_Heat,"Annual Consumption of Energy: Manufacturing, Heat",Annual Consumption of Heat in Manufacturing Industries,, -Annual_Consumption_Energy_OilRefineries_Refinery_FuelTransformation,"Annual Consumption of Energy: Oil Refineries, Refinery, Fuel Transformation","Annual Consumption of Fuel Transformation in Oil Refineries, Refinery",, -Annual_Consumption_Energy_OtherIndustry_Heat,"Annual Consumption of Energy: UN_Other Industry, Heat",Annual Consumption of Heat in Other Industries,, -Annual_Consumption_Energy_OtherManufacturingIndustry_Heat,"Annual Consumption of Energy: UN_Other Manufacturing Industry, Heat",Annual Consumption of Heat in Other Manufacturing Industries,, -Annual_Consumption_Energy_OtherSector_Heat,"Annual Consumption of Energy: UN_Other Sector, Heat",Annual Consumption of Heat in Other Sectors;Annual Consumption Of Heat In Other Sectors,, -Annual_Consumption_Energy_OtherSector_SolarThermal,"Annual Consumption of Energy: UN_Other Sector, Solar Thermal",Annual Consumption Of Solar Thermal Energy BY Other Sectors,, -Annual_Consumption_Energy_SolarThermal,Annual Consumption of Energy: Solar Thermal,Annual Consumption Of Solar Thermal Energy,, -Annual_Consumption_Fuel_Agriculture_DieselOil,"Annual Consumption of Fuel: Agriculture, Diesel Oil",Annual Consumption of Diesel Oil in Agriculture,, -Annual_Consumption_Fuel_Agriculture_FuelOil,"Annual Consumption of Fuel: Agriculture, Fuel Oil",Annual Consumption Of Fuel Oil In Agriculture,, -Annual_Consumption_Fuel_Agriculture_Fuelwood,"Annual Consumption of Fuel: Agriculture, Fuelwood",Annual Consumption of Fuel Wood In Agriculture,, -Annual_Consumption_Fuel_Agriculture_Kerosene,"Annual Consumption of Fuel: Agriculture, EIA_Kerosene",Annual Consumption of Kerosene in Agriculture,, -Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Agriculture, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas In Agriculture,, -Annual_Consumption_Fuel_Agriculture_MotorGasoline,"Annual Consumption of Fuel: Agriculture, Motor Gasoline",Annual Consumption of Motor Gasoline In Agriculture,, -Annual_Consumption_Fuel_Agriculture_NaturalGas,"Annual Consumption of Fuel: Agriculture, Natural Gas",Annual Consumption of Natural Gas by Agriculture,, -Annual_Consumption_Fuel_AnthraciteCoal,Annual Consumption of Fuel: EIA_Anthracite Coal,Annual Consumption of Anthracite Coal,, -Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Combined Heat Power Plants, Natural Gas, Fuel Transformation",Annual Consumption of Natural Gas in Auto Producer Combined Heat Power Plants,, -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_DieselOil_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Diesel Oil, Fuel Transformation",Annual Consumption of Diesel Oil in Autoproducer Electricity Power Plants,, -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_FuelOil_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Fuel Oil, Fuel Transformation",Annual Consumption of Fuel Oil in Autoproducer Electricity Power Plants,, -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Hard Coal, Fuel Transformation",Annual Consumption Of Hard Coal In Fuel Transmission,, -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Natural Gas, Fuel Transformation",Annual Consumption of Natural Gas by Autoproducer Electricity Power Plants for Fuel Transformation,, -Annual_Consumption_Fuel_AviationGasoline,Annual Consumption of Fuel: Aviation Gasoline,Annual Consumption of Aviation Gasoline,, -Annual_Consumption_Fuel_Bagasse,Annual Consumption of Fuel: Bagasse,Annual Consumption of Bagasse,, -Annual_Consumption_Fuel_BioDiesel,Annual Consumption of Fuel: Bio Diesel,Annual Consumption of Biodiesel,, -Annual_Consumption_Fuel_BioGas,Annual Consumption of Fuel: Bio Gas,Annual Consumption of Bio Gas,, -Annual_Consumption_Fuel_BioGasoline,Annual Consumption of Fuel: Bio Gasoline,Annual Consumption of Bio Gasoline,, -Annual_Consumption_Fuel_BituminousCoal,Annual Consumption of Fuel: EIA_Bituminous Coal,Annual Consumption Of Bituminous Coal,, -Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse,"Annual Consumption of Fuel: EIA_Bituminous Coal, Non Energy Use",Annual Consumption Bituminous Coal in Non Energy Use,, -Annual_Consumption_Fuel_BlastFurnaceGas,Annual Consumption of Fuel: Blast Furnace Gas,Annual Consumption of Blast Furnace Gas,, -Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation,"Annual Consumption of Fuel: Blast Furnaces, Coke Oven Coke, Fuel Transformation",Annual Consumption Of Coke In Blast Furnaces,, -Annual_Consumption_Fuel_BrownCoal,Annual Consumption of Fuel: Brown Coal,Annual Brown Coal Consumption,, -Annual_Consumption_Fuel_Charcoal,Annual Consumption of Fuel: Charcoal,Annual Consumption of Charcoal,, -Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation,"Annual Consumption of Fuel: Charcoal Plants, Fuelwood, Fuel Transformation",Annual Consumption of Charcoal Plants and Fuelwood in Fuel Transformation Industries,, -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Diesel Oil",Annual Consumption of Diesel Oil in Chemical Petrochemical Industries,, -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Fuel Oil",Annual Consumption of Fuel Oil in Chemical Petrochemical Industries,, -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Hard Coal",Annual Consumption of Hard Coal in Chemical Petrochemical Industries,, -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Chemical Petrochemical Industries,, -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Natural Gas",Annual Consumption of Natural Gas in Chemical Petrochemical Industries,, -Annual_Consumption_Fuel_CokeOvenCoke,Annual Consumption of Fuel: Coke Oven Coke,Annual Consumption of Coke Oven Coke,, -Annual_Consumption_Fuel_CokeOvens_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Coke Ovens, Hard Coal, Fuel Transformation",Annual Consumption of Hard Coal by Coke Ovens,, -Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal,"Annual Consumption of Fuel: Commerce And Public Services, Charcoal",Annual Consumption of Charcoal By Commerce And Public Services Establishments,, -Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil,"Annual Consumption of Fuel: Commerce And Public Services, Diesel Oil",Annual Consumption of Diesel Oil in Commerce and Public Services,, -Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil,"Annual Consumption of Fuel: Commerce And Public Services, Fuel Oil",Annual Consumption of Fuel Oil by Commerce and Public Services,, -Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood,"Annual Consumption of Fuel: Commerce And Public Services, Fuelwood",Annual Consumption of Fuelwood in Commerce And Public Services,, -Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal,"Annual Consumption of Fuel: Commerce And Public Services, Hard Coal",Annual Consumption of Hard Coal by Commerce And Public Services Establishments,, -Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene,"Annual Consumption of Fuel: Commerce And Public Services, EIA_Kerosene",Annual Consumption of Kerosene in Commerce And Public Services,, -Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Commerce And Public Services, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Commerce And Public Service Industries,, -Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline,"Annual Consumption of Fuel: Commerce And Public Services, Motor Gasoline",Annual Consumption of Motor Gasoline in Commerce And Public Services,, -Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas,"Annual Consumption of Fuel: Commerce And Public Services, Natural Gas",Annual Consumption Of Natural Gas By Commerce And Public Services,, -Annual_Consumption_Fuel_ConstructionIndustry_DieselOil,"Annual Consumption of Fuel: Construction Industry, Diesel Oil",Annual Consumption of Diesel Oil in Construction Industries,, -Annual_Consumption_Fuel_ConstructionIndustry_FuelOil,"Annual Consumption of Fuel: Construction Industry, Fuel Oil",Annual Consumption of Fuel Oil in Construction Industries,, -Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Construction Industry, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas In Construction Industries,, -Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas,"Annual Consumption of Fuel: Construction Industry, Natural Gas",Annual Consumption of Natural Gas in Construction Industries,, -Annual_Consumption_Fuel_DieselOil,Annual Consumption of Fuel: Diesel Oil,Annual Consumption of Diesel Oil,, -Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline,"Annual Consumption of Fuel: Domestic Aviation Transport, Aviation Gasoline",Annual Consumption of Aviation Gasoline in Domestic Aviation Transport,, -Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel,"Annual Consumption of Fuel: Domestic Aviation Transport, Kerosene Jet Fuel",Annual Consumption of Kerosene Jet Fuel for Domestic Aviation Transport,, -Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil,"Annual Consumption of Fuel: Domestic Navigation Transport, Diesel Oil",Annual Consumption of Diesel Oil in Domestic Navigation Transport,, -Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil,"Annual Consumption of Fuel: Domestic Navigation Transport, Fuel Oil",Annual Consumption of Fuel Oil in Domestic Navigation Transport,, -Annual_Consumption_Fuel_ElectricityGeneration_Bagasse_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Bagasse, Fuel Transformation",Annual Consumption of Bagasse in Fuel Transformation,, -Annual_Consumption_Fuel_ElectricityGeneration_BioGas_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Bio Gas, Fuel Transformation",Annual Consumption of Biogas in Electricity Generation Industries for Fuel Transformation,, -Annual_Consumption_Fuel_ElectricityGeneration_BrownCoal_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Brown Coal, Fuel Transformation",Annual Consumption of Brown Coal For Electricity Generation,, -Annual_Consumption_Fuel_ElectricityGeneration_DieselOil_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Diesel Oil, Fuel Transformation",Annual Consumption of Diesel Oil in Electricity Generation,, -Annual_Consumption_Fuel_ElectricityGeneration_FuelOil_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Fuel Oil, Fuel Transformation",Annual Consumption of Fuel Oil in Electricity Generation And Fuel Transformation Industries,, -Annual_Consumption_Fuel_ElectricityGeneration_Fuelwood_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Fuelwood, Fuel Transformation",Annual Consumption of Fuelwood in Electricity Generation,, -Annual_Consumption_Fuel_ElectricityGeneration_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Hard Coal, Fuel Transformation",Annual Consumption of Hard Coal For Electricity Generation,, -Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Natural Gas, Fuel Transformation",Annual Consumption of Natural Gas in Fuel Transformation,, -Annual_Consumption_Fuel_ElectricityGeneration_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, UN_Other Bituminous Coal, Fuel Transformation",Annual Consumption of Bituminous Coal For Electricity Generation,, -Annual_Consumption_Fuel_EnergyIndustry_DieselOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Diesel Oil, Energy Industry Own Use",Annual Consumption of Diesel Oil by Energy Industries,, -Annual_Consumption_Fuel_EnergyIndustry_FuelOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Fuel Oil, Energy Industry Own Use",Annual Consumption of Fuel Oil in Energy Industries Own Use,, -Annual_Consumption_Fuel_EnergyIndustry_LiquifiedPetroleumGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Liquefied Petroleum Gas, Energy Industry Own Use",Annual Consumption Of Liquefied Petroleum Gas In Energy Industries,, -Annual_Consumption_Fuel_EnergyIndustry_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Natural Gas, Energy Industry Own Use",Annual Consumption Of Natural Gas In the Energy Industry,, -Annual_Consumption_Fuel_EnergyIndustry_RefineryGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Refinery Gas, Energy Industry Own Use",Annual Consumption of Refinery Gas in Energy Industry Own Use,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil,"Annual Consumption of Fuel: Food And Tobacco Industry, Diesel Oil",Annual Consumption Of Diesel Oil In Food And Tobacco Industries,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil,"Annual Consumption of Fuel: Food And Tobacco Industry, Fuel Oil",Annual Consumption of Fuel Oil in Food and Tobacco Industries,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal,"Annual Consumption of Fuel: Food And Tobacco Industry, Hard Coal",Annual Consumption of Hard Coal in Food And Tobacco Industries,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Food And Tobacco Industry, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas In The Food And Tobacco Industries,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas,"Annual Consumption of Fuel: Food And Tobacco Industry, Natural Gas",Annual Consumption of Natural Gas in The Food And Tobacco Industries,, -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherBituminousCoal,"Annual Consumption of Fuel: Food And Tobacco Industry, UN_Other Bituminous Coal",Annual Consumption Of Bituminous Coal In The Food And Tobacco Industries,, -Annual_Consumption_Fuel_ForElectricityGeneration_Coal,"Consumption for electricity generation, coal, all sectors, annual",Annual Consumption of Coal in Electricity Generation,, -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas,"Consumption for electricity generation (Btu), natural gas, all sectors, annual",Annual Consumption for Electricity Generation From Natural Gas,, -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen,"Consumption for electricity generation (Btu), natural gas, commercial cogen, annual",Annual Consumption of Natural Gas For Electricity Generation,, -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen,"Consumption for electricity generation (Btu), natural gas, electric utility cogen, annual",Annual Consumption For Natural Gas In Electricity Generation By Cogen Utilities,, -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,"Consumption for electricity generation (Btu), petroleum liquids, all sectors, annual",Annual Consumption of Petroleum Liquids For Electricity Generation In All Sectors,, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal,"Total consumption (Btu), coal, all sectors, annual",Annual Total Consumption of Coal in All Sectors,, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,"Total consumption (Btu), natural gas, all sectors, annual",Annual Consumption of Natural Gas in All Sectors,, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen,"Total consumption (Btu), natural gas, commercial cogen, annual",Total Annual Consumption Of Natural Gas,, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen,"Total consumption (Btu), natural gas, electric utility cogen, annual",Annual Consumption Electric Utility Cogen For Electricity Generation And Thermal Output,, -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,"Total consumption (Btu), petroleum liquids, all sectors, annual",Annual Total Consumption of Petroleum Liquids In All Sectors,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal,"Consumption for useful thermal output, coal, all sectors, annual",Annual Consumption of Coal For Useful Thermal Output,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas,"Consumption for useful thermal output (Btu), natural gas, all sectors, annual",Annual Consumption of Natural Gas in All Sectors,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial,"Consumption for useful thermal output, natural gas, all commercial (total), annual",Annual Consumption of Natural Gas For Useful Thermal Output by Commercial,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen,"Consumption for useful thermal output, natural gas, commercial cogen, annual",Annual Consumption Of Natural Gas For Useful Thermal Output,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower,"Consumption for useful thermal output, natural gas, electric power (total), annual",Annual Consumption of Natural Gas in Electric Power Industries;Annual Consumption Of Natural Gas Electric Power in Electric Power Plants,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen,"Consumption for useful thermal output (Btu), natural gas, electric utility cogen, annual",Annual Consumption Of Natural Gas By Electric Utility Cogen,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers,"Consumption for useful thermal output (Btu), natural gas, independent power producers (total), annual",Annual Consumption of Natural Gas For Useful Thermal Output by Independent Power Producers,, -Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids,"Consumption for useful thermal output (Btu), petroleum liquids, all sectors, annual",Annual Consumption of Petroleum Liquids For Thermal Output,, -Annual_Consumption_Fuel_FuelOil,Annual Consumption of Fuel: Fuel Oil,Annual Consumption of Fuel Oil,, -Annual_Consumption_Fuel_FuelTransformationIndustry_Bagasse_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Bagasse, Fuel Transformation",Annual Consumption of Bagasse in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_BioGas_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Bio Gas, Fuel Transformation",Annual Consumption of Bio Gas in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_BrownCoal_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Brown Coal, Fuel Transformation",Annual Consumption Of Brown Coal In Fuel Transmission Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_CokeOvenCoke_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Coke Oven Coke, Fuel Transformation",Annual Consumption of Coke Oven Coke in Fuel Transformation,, -Annual_Consumption_Fuel_FuelTransformationIndustry_CrudeOil_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Crude Oil, Fuel Transformation",Annual Consumption of Crude Oil By Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_DieselOil_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Diesel Oil, Fuel Transformation",Annual Consumption Of Diesel Oil In Fuel Transmission Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_FuelOil_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Fuel Oil, Fuel Transformation",Annual Consumption of Fuel Oil By Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_Fuelwood_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Fuelwood, Fuel Transformation",Annual Consumption of Fuelwood by Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Hard Coal, Fuel Transformation",Annual Consumption of Hard Coal in the Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_LiquifiedPetroleumGas_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Liquefied Petroleum Gas, Fuel Transformation",Annual Consumption of Liquefied Petroleum Gas in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Natural Gas, Fuel Transformation",Annual Consumption of Natural Gas in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Natural Gas Liquids, Fuel Transformation",Annual Consumption of Natural Gas Liquids in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, UN_Other Bituminous Coal, Fuel Transformation",Annual Consumption of Bituminous Coal in Fuel Transformation Industries,, -Annual_Consumption_Fuel_FuelTransformationIndustry_RefineryFeedstocks_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Refinery Feedstocks, Fuel Transformation",Annual Consumption of Refinery Feedstocks In Fuel Transformation Industry And Fuel Transformation,, -Annual_Consumption_Fuel_Fuelwood,Annual Consumption of Fuel: Fuelwood,Annual Consumption of Fuelwood,, -Annual_Consumption_Fuel_HardCoal,Annual Consumption of Fuel: Hard Coal,Annual Consumption of Hard Coal,, -Annual_Consumption_Fuel_Households_Charcoal,"Annual Consumption of Fuel: Households, Charcoal",Annual Consumption of Charcoal in Households,, -Annual_Consumption_Fuel_Households_DieselOil,"Annual Consumption of Fuel: Households, Diesel Oil",Annual Consumption of Diesel Oil In Households,, -Annual_Consumption_Fuel_Households_FuelOil,"Annual Consumption of Fuel: Households, Fuel Oil",Annual Consumption Of Fuel Oil By Households,, -Annual_Consumption_Fuel_Households_Fuelwood,"Annual Consumption of Fuel: Households, Fuelwood",Annual Consumption of Fuelwood in Households,, -Annual_Consumption_Fuel_Households_HardCoal,"Annual Consumption of Fuel: Households, Hard Coal",Annual Consumption of Hard Coal in Households,, -Annual_Consumption_Fuel_Households_Kerosene,"Annual Consumption of Fuel: Households, EIA_Kerosene",Annual Consumption of Kerosene in Households,, -Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Households, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas By Households,, -Annual_Consumption_Fuel_Households_NaturalGas,"Annual Consumption of Fuel: Households, Natural Gas",Annual Consumption of Natural Gas in Households,, -Annual_Consumption_Fuel_Households_VegetalWaste,"Annual Consumption of Fuel: Households, Vegetal Waste",Annual Consumption of Vegetal Waste in Households,, -Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Industry, Natural Gas, Energy Industry Own Use",Annual Consumption of Natural Gases,, -Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline,"Annual Consumption of Fuel: International Aviation Bunkers, Aviation Gasoline",Annual Consumption of Aviation Gasoline in International Aviation Bunkers,, -Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel,"Annual Consumption of Fuel: International Aviation Bunkers, Kerosene Jet Fuel",Annual Consumption of Kerosene Jet Fuel in International Aviation Bunkers,, -Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil,"Annual Consumption of Fuel: International Marine Bunkers, Diesel Oil",Annual Consumption Of Diesel Oil By International Marine Bunkers,, -Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil,"Annual Consumption of Fuel: International Marine Bunkers, Fuel Oil",Annual Consumption of Fuel Oil in International Marine Bunkers,, -Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas,"Annual Consumption of Fuel: Iron Steel, Blast Furnace Gas",Annual Consumption of Blast Furnace Gas in Iron Steel,, -Annual_Consumption_Fuel_IronSteel_CokeOvenCoke,"Annual Consumption of Fuel: Iron Steel, Coke Oven Coke",Annual Consumption of Iron Steel Coke Oven Coke in Iron Steel,, -Annual_Consumption_Fuel_IronSteel_DieselOil,"Annual Consumption of Fuel: Iron Steel, Diesel Oil",Annual Consumption of Diesel Oil in Iron Steel Industries,, -Annual_Consumption_Fuel_IronSteel_FuelOil,"Annual Consumption of Fuel: Iron Steel, Fuel Oil",Annual Consumption of Fuel Oil in Iron Steel,, -Annual_Consumption_Fuel_IronSteel_HardCoal,"Annual Consumption of Fuel: Iron Steel, Hard Coal",Annual Consumption of Hard Coal in Iron Steel,, -Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Iron Steel, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Iron and Steel Industries,, -Annual_Consumption_Fuel_IronSteel_NaturalGas,"Annual Consumption of Fuel: Iron Steel, Natural Gas",Annual Consumption of Natural Gas in Iron Steel,, -Annual_Consumption_Fuel_Kerosene,Annual Consumption of Fuel: EIA_Kerosene,Annual Consumption of EIA_Kerosene,, -Annual_Consumption_Fuel_KeroseneJetFuel,Annual Consumption of Fuel: Kerosene Jet Fuel,Annual Consumption of Kerosene Jet Fuel,, -Annual_Consumption_Fuel_LiquifiedPetroleumGas,Annual Consumption of Fuel: Liquefied Petroleum Gas,Annual Consumption of Liquefied Petroleum Gas,, -Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse,"Annual Consumption of Fuel: Liquefied Petroleum Gas, Non Energy Use",Annual Consumption of Liquefied Petroleum Gas,, -Annual_Consumption_Fuel_Lubricants,Annual Consumption of Fuel: Lubricants,Annual Consumption of Lubricants,, -Annual_Consumption_Fuel_Lubricants_NonEnergyUse,"Annual Consumption of Fuel: Lubricants, Non Energy Use",Annual Consumption of Lubricants in Non-Energy Use,, -Annual_Consumption_Fuel_MachineryIndustry_DieselOil,"Annual Consumption of Fuel: Machinery Industry, Diesel Oil",Annual Consumption of Diesel Oil in Machinery Industries,, -Annual_Consumption_Fuel_MachineryIndustry_FuelOil,"Annual Consumption of Fuel: Machinery Industry, Fuel Oil",Annual Consumption of Fuel Oil in Machinery Industries,, -Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Machinery Industry, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas In Machinery Industries,, -Annual_Consumption_Fuel_MachineryIndustry_NaturalGas,"Annual Consumption of Fuel: Machinery Industry, Natural Gas",Annual Consumption Of Natural Gas In Machinery Industries,, -Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Combined Heat Power Plants, Natural Gas, Fuel Transformation",Annual Consumption of Coke Oven Coke in Main Activity Producer Combined Heat Power Plants,, -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_DieselOil_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Diesel Oil, Fuel Transformation",Annual Consumption of Diesel Oil in Main Activity Producer Electricity Power Plants Industries for Fuel Transformation,, -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_FuelOil_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Fuel Oil, Fuel Transformation",Annual Consumption of Fuel Oil in Main Activity Producer Electricity Power Plants,, -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Hard Coal, Fuel Transformation",Annual Consumption of Hard Coal in Fuel Transformation,, -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Natural Gas, Fuel Transformation",Annual Consumption of Natural Gas by Main Activity Producer Electricity Power Plants,, -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, UN_Other Bituminous Coal, Fuel Transformation",Annual Consumption of Other Bituminous Coal in Fuel Transformation,, -Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal,"Annual Consumption of Fuel: Manufacturing, EIA_Anthracite Coal",Annual Consumption of Anthracite Coal in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_Bagasse,"Annual Consumption of Fuel: Manufacturing, Bagasse",Annual Consumption of Bagasse in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas,"Annual Consumption of Fuel: Manufacturing, Blast Furnace Gas",Annual Consumption of Blast Furnace Gas in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_BrownCoal,"Annual Consumption of Fuel: Manufacturing, Brown Coal",Annual Consumption of Brown Coal in Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke,"Annual Consumption of Fuel: Manufacturing, Coke Oven Coke",Annual Consumption of Coke Oven Coke in Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_DieselOil,"Annual Consumption of Fuel: Manufacturing, Diesel Oil",Annual Consumption of Diesel Oil by Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_FuelOil,"Annual Consumption of Fuel: Manufacturing, Fuel Oil",Annual Consumption of Fuel Oil in Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_Fuelwood,"Annual Consumption of Fuel: Manufacturing, Fuelwood",Annual Consumption of Fuelwood in Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_HardCoal,"Annual Consumption of Fuel: Manufacturing, Hard Coal",Annual Consumption of Hard Coal in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_Kerosene,"Annual Consumption of Fuel: Manufacturing, EIA_Kerosene",Annual Consumption Of Kerosene In Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Manufacturing, Liquefied Petroleum Gas",Annual Consumption of Liquified Petroleum Gas in Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_MotorGasoline,"Annual Consumption of Fuel: Manufacturing, Motor Gasoline",Annual Consumption Of Motor Gasoline In Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_NaturalGas,"Annual Consumption of Fuel: Manufacturing, Natural Gas",Annual Consumption of Natural Gas for Manufacturing,, -Annual_Consumption_Fuel_Manufacturing_OtherBituminousCoal,"Annual Consumption of Fuel: Manufacturing, UN_Other Bituminous Coal",Annual Consumption of Other Bituminous Coal in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_OtherOilProducts,"Annual Consumption of Fuel: Manufacturing, UN_Other Oil Products",Annual Consumption of UN Other Oil Product in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_PetroleumCoke,"Annual Consumption of Fuel: Manufacturing, Petroleum Coke",Annual Consumption of Petroleum Coke in Manufacturing Industries,, -Annual_Consumption_Fuel_Manufacturing_VegetalWaste,"Annual Consumption of Fuel: Manufacturing, Vegetal Waste",Annual Consumption of Vegetal Waste Manufacturing,, -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil,"Annual Consumption of Fuel: Mining And Quarrying Industry, Diesel Oil",Annual Consumption of Diesel Oil in Mining And Quarrying Industries,, -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil,"Annual Consumption of Fuel: Mining And Quarrying Industry, Fuel Oil",Annual Consumption of Fuel Oil in Mining and Quarrying Industries,, -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Mining And Quarrying Industry, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Mining And Quarrying Industries,, -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas,"Annual Consumption of Fuel: Mining And Quarrying Industry, Natural Gas",Annual Consumption of Natural Gas in Mining And Quarrying Industries,, -Annual_Consumption_Fuel_MotorGasoline,Annual Consumption of Fuel: Motor Gasoline,Annual Consumption of Motor Gasoline,, -Annual_Consumption_Fuel_Naphtha,Annual Consumption of Fuel: Naphtha,Annual Consumption Of Naphtha,, -Annual_Consumption_Fuel_Naphtha_NonEnergyUse,"Annual Consumption of Fuel: Naphtha, Non Energy Use",Annual Consumption of Naphtha For Non-Energy Use,, -Annual_Consumption_Fuel_NaturalGas,Annual Consumption of Fuel: Natural Gas,Annual Consumption of Natural Gas,, -Annual_Consumption_Fuel_NaturalGas_NonEnergyUse,"Annual Consumption of Fuel: Natural Gas, Non Energy Use",Annual Consumption Of Natural Gas For Non-Energy Use,, -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil,"Annual Consumption of Fuel: Non Ferrous Metals Industry, Diesel Oil",Annual Consumption of Diesel Oil in Non Ferrous Metals Industry,, -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas,"Annual Consumption of Fuel: Non Ferrous Metals Industry, Natural Gas",Annual Consumption of Natural Gas by Non-Ferrous Metal Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Diesel Oil",Annual Consumption of Diesel Oil in Non-Metallic Minerals Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Fuel Oil",Annual Consumption of Fuel Oil In The Non-Metallic Industry,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Hard Coal",Annual Consumption of Hard Coal in Non-Metallic Minerals Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Non-Metallic Minerals Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Natural Gas",Annual Consumption of Natural Gas by Non-Metallic Minerals Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherBituminousCoal,"Annual Consumption of Fuel: Non Metallic Minerals Industry, UN_Other Bituminous Coal",Annual Consumption of Other Bituminous Coal in Non-Metallic Mineral Industries,, -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Petroleum Coke",Annual Petroleum Coke Consumption By Non-Metallic Minerals Industries,, -Annual_Consumption_Fuel_OilGasExtraction_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Gas Extraction, Natural Gas, Energy Industry Own Use",Annual Consumption Of Natural Gas Used For Oil and Gas Extraction,, -Annual_Consumption_Fuel_OilRefineries_CrudeOil_FuelTransformation,"Annual Consumption of Fuel: Oil Refineries, Crude Oil, Fuel Transformation",Annual Consumption of Crude Oil In Fuel Transformation,, -Annual_Consumption_Fuel_OilRefineries_DieselOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Diesel Oil, Energy Industry Own Use",Annual Consumption Of Diesel Oil By Oil Refineries,, -Annual_Consumption_Fuel_OilRefineries_FuelOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Fuel Oil, Energy Industry Own Use",Annual Consumption of Fuel Oil in Oil Refineries,, -Annual_Consumption_Fuel_OilRefineries_LiquifiedPetroleumGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Liquefied Petroleum Gas, Energy Industry Own Use",Annual Consumption of Liquefied Petroleum Gas in Oil Refineries,, -Annual_Consumption_Fuel_OilRefineries_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Natural Gas, Energy Industry Own Use",Annual Consumption of Natural Gas for Oil Refineries,, -Annual_Consumption_Fuel_OilRefineries_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: Oil Refineries, Natural Gas Liquids, Fuel Transformation",Annual Consumption of Natural Gas Liquids in Fuel Transformation,, -Annual_Consumption_Fuel_OilRefineries_RefineryFeedstocks_FuelTransformation,"Annual Consumption of Fuel: Oil Refineries, Refinery Feedstocks, Fuel Transformation",Annual Consumption of Refinery Feedstocks In Oil Refineries,, -Annual_Consumption_Fuel_OilRefineries_RefineryGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Refinery Gas, Energy Industry Own Use",Annual Consumption of Refinery Gas in Energy Industry Own Use,, -Annual_Consumption_Fuel_OtherBituminousCoal,Annual Consumption of Fuel: UN_Other Bituminous Coal,Annual Consumption of Other Bituminous Coal,, -Annual_Consumption_Fuel_OtherIndustry_DieselOil,"Annual Consumption of Fuel: UN_Other Industry, Diesel Oil",Annual Consumption of Diesel Oil in Other Industry,, -Annual_Consumption_Fuel_OtherIndustry_FuelOil,"Annual Consumption of Fuel: UN_Other Industry, Fuel Oil",Annual Consumption of Fuel Oil in Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_Fuelwood,"Annual Consumption of Fuel: UN_Other Industry, Fuelwood",Annual Consumption of Fuel Wood in Other Industry,, -Annual_Consumption_Fuel_OtherIndustry_HardCoal,"Annual Consumption of Fuel: UN_Other Industry, Hard Coal",Annual Consumption of Hard Coal In Other Industry,, -Annual_Consumption_Fuel_OtherIndustry_Kerosene,"Annual Consumption of Fuel: UN_Other Industry, EIA_Kerosene",Annual Consumption of Kerosene by Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Other Industry, Liquefied Petroleum Gas",Annual Consumption of Fuel-Liquefied Petroleum Gas in Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_MotorGasoline,"Annual Consumption of Fuel: UN_Other Industry, Motor Gasoline",Annual Consumption of Motor Gasoline in Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_NaturalGas,"Annual Consumption of Fuel: UN_Other Industry, Natural Gas",Annual Consumption of Natural Gas in Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: UN_Other Industry, Natural Gas Liquids, Fuel Transformation",Annual Consumption of Natural Gas Liquids in Other Industries,, -Annual_Consumption_Fuel_OtherIndustry_OtherBituminousCoal,"Annual Consumption of Fuel: UN_Other Industry, UN_Other Bituminous Coal",Annual Consumption of Bituminous Coal by Other Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_Bagasse,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Bagasse",Annual Consumption of Bagasse in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_BrownCoal,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Brown Coal",Annual Consumption of Brown Coal in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_CokeOvenCoke,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Coke Oven Coke",Annual Consumption Of Coke Oven Gas In Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_DieselOil,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Diesel Oil",Annual Consumption of Diesel Oil in Other Manufacturing Industry,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_FuelOil,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Fuel Oil",Annual Consumption of Fuel Oil in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_Fuelwood,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Fuelwood",Annual Consumption of Fuel Wood in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_HardCoal,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Hard Coal",Annual Consumption Of Hard Coal By Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_Kerosene,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, EIA_Kerosene",Annual Consumption of Kerosene in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Liquefied Petroleum Gas",Annual Liquefied Petroleum Gas Consumption in Other UN Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_MotorGasoline,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Motor Gasoline",Annual Consumption Of Motor Gasoline By Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_NaturalGas,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Natural Gas",Annual Consumption of Natural Gas in Other Manufacturing Industry,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherBituminousCoal,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, UN_Other Bituminous Coal",Annual Consumption Of Bituminous Coal in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherOilProducts,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, UN_Other Oil Products",Annual Consumption of Other Oil Products in Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_PetroleumCoke,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Petroleum Coke",Annual Consumption Of Petroleum Coke By Other Manufacturing Industries,, -Annual_Consumption_Fuel_OtherManufacturingIndustry_VegetalWaste,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Vegetal Waste",Annual Consumption of Vegetal Waste in Other Manufacturing Industry,, -Annual_Consumption_Fuel_OtherOilProducts,Annual Consumption of Fuel: UN_Other Oil Products,Annual Consumption of Other Oil Products,, -Annual_Consumption_Fuel_OtherOilProducts_NonEnergyUse,"Annual Consumption of Fuel: UN_Other Oil Products, Non Energy Use",Annual Consumption of Other Oil Products in Non-Energy Use,, -Annual_Consumption_Fuel_OtherSector_Charcoal,"Annual Consumption of Fuel: UN_Other Sector, Charcoal",Annual Consumption of Charcoal by Other Sectors,, -Annual_Consumption_Fuel_OtherSector_DieselOil,"Annual Consumption of Fuel: UN_Other Sector, Diesel Oil",Annual Consumption of Diesel Oil in Other Sectors,, -Annual_Consumption_Fuel_OtherSector_FuelOil,"Annual Consumption of Fuel: UN_Other Sector, Fuel Oil",Annual Consumption of Fuel Oil in Other Sectors,, -Annual_Consumption_Fuel_OtherSector_Fuelwood,"Annual Consumption of Fuel: UN_Other Sector, Fuelwood",Annual Consumption of Fuelwood in Other Sectors,, -Annual_Consumption_Fuel_OtherSector_HardCoal,"Annual Consumption of Fuel: UN_Other Sector, Hard Coal",Annual Consumption of Hard Coal in UN_Other Sectors,, -Annual_Consumption_Fuel_OtherSector_Kerosene,"Annual Consumption of Fuel: UN_Other Sector, EIA_Kerosene",Annual Consumption of EIA_Kerosene,, -Annual_Consumption_Fuel_OtherSector_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Other Sector, Liquefied Petroleum Gas",Annual Consumption of Liquified Petroleum Gas by Other Sectors,, -Annual_Consumption_Fuel_OtherSector_MotorGasoline,"Annual Consumption of Fuel: UN_Other Sector, Motor Gasoline",Annual Consumption of Motor Gasoline in Other Sectors,, -Annual_Consumption_Fuel_OtherSector_NaturalGas,"Annual Consumption of Fuel: UN_Other Sector, Natural Gas",Annual Consumption of Natural Gas in Other Sectors,, -Annual_Consumption_Fuel_OtherSector_OtherBituminousCoal,"Annual Consumption of Fuel: UN_Other Sector, UN_Other Bituminous Coal",Annual Consumption Of Bituminous Coal By Other Sectors,, -Annual_Consumption_Fuel_OtherSector_VegetalWaste,"Annual Consumption of Fuel: UN_Other Sector, Vegetal Waste",Annual Consumption of Vegetal Waste In Other Sectors,, -Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil,"Annual Consumption of Fuel: Paper Pulp Print Industry, Diesel Oil",Annual consumption Of Diesel Oil In The Paper Pulp Print Industries,, -Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil,"Annual Consumption of Fuel: Paper Pulp Print Industry, Fuel Oil",Annual Consumption of Fuel Oil in Paper Pulp Print Industries,, -Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Paper Pulp Print Industry, Liquefied Petroleum Gas",Annual Consumption Of Liquefied Petroleum Gas Fuel In The Paper Pulp Print Industries,, -Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas,"Annual Consumption of Fuel: Paper Pulp Print Industry, Natural Gas",Annual Consumption of Natural Gas In The Paper Pulp Industry,, -Annual_Consumption_Fuel_ParaffinWaxes,Annual Consumption of Fuel: Paraffin Waxes,Annual Consumption of Paraffin Waxes,, -Annual_Consumption_Fuel_ParaffinWaxes_NonEnergyUse,"Annual Consumption of Fuel: Paraffin Waxes, Non Energy Use",Annual Consumption of Paraffin Waxes For Non-Energy Use,, -Annual_Consumption_Fuel_PetroleumCoke,Annual Consumption of Fuel: Petroleum Coke,Annual Consumption of Petroleum Coke,, -Annual_Consumption_Fuel_PetroleumCoke_NonEnergyUse,"Annual Consumption of Fuel: Petroleum Coke, Non Energy Use",Annual Consumption of Petroleum Coke In Non-Energy Use,, -Annual_Consumption_Fuel_RailTransport_DieselOil,"Annual Consumption of Fuel: Rail Transport, Diesel Oil",Annual Consumption of Diesel Oil in Rail Transport,, -Annual_Consumption_Fuel_RoadTransport_BioDiesel,"Annual Consumption of Fuel: Road Transport, Bio Diesel",Annual Consumption of Biodiesel in Road Transport,, -Annual_Consumption_Fuel_RoadTransport_BioGasoline,"Annual Consumption of Fuel: Road Transport, Bio Gasoline",Annual Consumption of Bio Gasoline in Road Transport,, -Annual_Consumption_Fuel_RoadTransport_DieselOil,"Annual Consumption of Fuel: Road Transport, Diesel Oil",Annual Consumption of Diesel Oil in Road Transport,, -Annual_Consumption_Fuel_RoadTransport_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Road Transport, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Road Transport,, -Annual_Consumption_Fuel_RoadTransport_MotorGasoline,"Annual Consumption of Fuel: Road Transport, Motor Gasoline",Annual Consumption of Motor Gasoline in Road Transport,, -Annual_Consumption_Fuel_RoadTransport_NaturalGas,"Annual Consumption of Fuel: Road Transport, Natural Gas",Annual Natural Gas Consumption For Road Use,, -Annual_Consumption_Fuel_TextileAndLeatherIndustry_DieselOil,"Annual Consumption of Fuel: Textile And Leather Industry, Diesel Oil",Annual Consumption of Diesel Oil in Textile And Leather Industries,, -Annual_Consumption_Fuel_TextileAndLeatherIndustry_FuelOil,"Annual Consumption of Fuel: Textile And Leather Industry, Fuel Oil",Annual Consumption Of Fuel Oil In Textile And Leather Industries,, -Annual_Consumption_Fuel_TextileAndLeatherIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Textile And Leather Industry, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Textile And Leather Industries,, -Annual_Consumption_Fuel_TextileAndLeatherIndustry_NaturalGas,"Annual Consumption of Fuel: Textile And Leather Industry, Natural Gas",Annual Consumption of Natural Gas in Textile And Leather Industry;Annual Consumption of Natural Gas in Textile And Leather Industries,, -Annual_Consumption_Fuel_TransportEquipmentIndustry_NaturalGas,"Annual Consumption of Fuel: Transport Equipment Industry, Natural Gas",Annual Consumption Of Natural Gas In Transport Equipment Industries,, -Annual_Consumption_Fuel_TransportIndustry_AviationGasoline,"Annual Consumption of Fuel: Transport Industry, Aviation Gasoline",Annual Consumption of Aviation Gasoline in Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_BioDiesel,"Annual Consumption of Fuel: Transport Industry, Bio Diesel",Annual Consumption of Biodiesel in Transport Industry,, -Annual_Consumption_Fuel_TransportIndustry_BioGasoline,"Annual Consumption of Fuel: Transport Industry, Bio Gasoline",Annual Consumption of Bio Gasoline in Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_DieselOil,"Annual Consumption of Fuel: Transport Industry, Diesel Oil",Annual Consumption of Diesel Oil for Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_FuelOil,"Annual Consumption of Fuel: Transport Industry, Fuel Oil",Annual Consumption of Fuel Oil in Transport Industry,, -Annual_Consumption_Fuel_TransportIndustry_KeroseneJetFuel,"Annual Consumption of Fuel: Transport Industry, Kerosene Jet Fuel",Annual Consumption of Kerosene Jet Fuel in Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Transport Industry, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas For Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_MotorGasoline,"Annual Consumption of Fuel: Transport Industry, Motor Gasoline",Annual Consumption of Motor Gasoline in Transport Industries,, -Annual_Consumption_Fuel_TransportIndustry_NaturalGas,"Annual Consumption of Fuel: Transport Industry, Natural Gas",Annual Consumption Of Natural Gas In Transport Industries,, -Annual_Consumption_Fuel_UnspecifiedSector_Charcoal,"Annual Consumption of Fuel: UN_Unspecified Sector, Charcoal",Annual Consumption of Charcoal By Unspecified Sectors,, -Annual_Consumption_Fuel_UnspecifiedSector_DieselOil,"Annual Consumption of Fuel: UN_Unspecified Sector, Diesel Oil",Annual Consumption of Diesel Oil in Unspecified Sectors,, -Annual_Consumption_Fuel_UnspecifiedSector_FuelOil,"Annual Consumption of Fuel: UN_Unspecified Sector, Fuel Oil",Annual Consumption of Fuel Oil in Unspecified Sectors,, -Annual_Consumption_Fuel_UnspecifiedSector_Fuelwood,"Annual Consumption of Fuel: UN_Unspecified Sector, Fuelwood",Annual Consumption of Fuelwood in Unspecified Sectors,, -Annual_Consumption_Fuel_UnspecifiedSector_HardCoal,"Annual Consumption of Fuel: UN_Unspecified Sector, Hard Coal",Annual Consumption of Hard Coal in Unspecified Sector,, -Annual_Consumption_Fuel_UnspecifiedSector_Kerosene,"Annual Consumption of Fuel: UN_Unspecified Sector, EIA_Kerosene",Annual Consumption of Kerosene in Unspecified Sector,, -Annual_Consumption_Fuel_UnspecifiedSector_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Unspecified Sector, Liquefied Petroleum Gas",Annual Consumption of Liquefied Petroleum Gas in Unspecified Sector,, -Annual_Consumption_Fuel_UnspecifiedSector_MotorGasoline,"Annual Consumption of Fuel: UN_Unspecified Sector, Motor Gasoline",Annual Consumption of Motor Gasoline in UN Unspecified Sector Industries,, -Annual_Consumption_Fuel_UnspecifiedSector_NaturalGas,"Annual Consumption of Fuel: UN_Unspecified Sector, Natural Gas",Annual Consumption of Natural Gas in Unspecified Sectors,, -Annual_Consumption_Fuel_VegetalWaste,Annual Consumption of Fuel: Vegetal Waste,Annual Consumption of Vegetal Waste Fuels,, -Annual_Consumption_Fuel_WhiteSpirit,Annual Consumption of Fuel: White Spirit,Annual Consumption of White Spirit,, -Annual_Consumption_Fuel_WhiteSpirit_NonEnergyUse,"Annual Consumption of Fuel: White Spirit, Non Energy Use",Annual Consumption of White Spirit in Non-Energy Use,, -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_DieselOil,"Annual Consumption of Fuel: Wood And Wood Products Industry, Diesel Oil",Annual Consumption Of Diesel Oil By The Wood And Wood Products Industries,, -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_NaturalGas,"Annual Consumption of Fuel: Wood And Wood Products Industry, Natural Gas",Annual Consumption of Natural Gas in Wood And Wood Products Industries,, -Annual_Count_ElectricityConsumer_Commercial,"Number of customer accounts, commercial, annual",Annual Customer Consumer of Commercial Electricity,, -Annual_Count_ElectricityConsumer_Industrial,"Number of customer accounts, industrial, annual",Annual Electricity Consumers in Industrial,, -Annual_Count_ElectricityConsumer_Residential,"Number of customer accounts, residential, annual",Annual Electricity Consumers in Residential,, -Annual_Emissions_CarbonDioxide_Agriculture,"Annual Amount of Emissions: Agriculture, Carbon Dioxide",Annual Emissions of Carbon Dioxide From Agriculture,, -Annual_Emissions_CarbonDioxide_AluminumProduction,"Annual Amount of Emissions: Aluminum Production, Carbon Dioxide",Annual Emissions of Carbon Dioxide From Aluminum Production,, -Annual_Emissions_CarbonDioxide_Biogenic,"Annual Amount of Emissions: Biogenic Emission Source, Carbon Dioxide",Annual Emissions of Carbon Dioxide From Biogenic,, -Annual_Emissions_CarbonDioxide_CementProduction,"Annual Amount of Emissions: Cement Production, Carbon Dioxide",Annual Emissions of Carbon Dioxide From Cement Production,, -Annual_Emissions_CarbonDioxide_ChemicalPetrochemicalIndustry,"Annual Amount of Emissions: Chemical Petrochemical Industry, Carbon Dioxide",Annual Emissions of Carbon Dioxide From Chemical Petrochemical Industry,, -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Carbon Dioxide",Annual Emissions of Carbon Dioxide Climate Trace From Other Energy Use,, -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Carbon Dioxide",Annual Emissions of Carbon Dioxide Climate Trace From Other Fossil Fuel Operations,, -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Carbon Dioxide",Annual Emissions of Carbon Dioxide Climate Trace From Other Manufacturing,, -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Carbon Dioxide",Annual Emissions of Carbon Dioxide Climate Trace From Other Onsite Fuel Usage,, -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Carbon Dioxide",Annual Emissions of Carbon Dioxide Climate Trace From Other Transportation,, -Annual_Emissions_CarbonDioxide_CoalMining,"Annual Amount of Emissions: Coal Mining, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Coal Mining,, -Annual_Emissions_CarbonDioxide_CopperMining,"Annual Amount of Emissions: Copper Mining, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Copper Mining,, -Annual_Emissions_CarbonDioxide_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Cropland Fire,, -Annual_Emissions_CarbonDioxide_ElectricityGeneration,"Annual Amount of Emissions: Electricity Generation, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Electricity Generation,, -Annual_Emissions_CarbonDioxide_ForestryAndLandUse,"Annual Amount of Emissions: Forestry And Land Use, Carbon Dioxide",,, -Annual_Emissions_CarbonDioxide_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Fossil Fuel Operations,, -Annual_Emissions_CarbonDioxide_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Carbon Dioxide",Annual Emissions of Carbon Dioxide For Domestic Aviation,, -Annual_Emissions_CarbonDioxide_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Carbon Dioxide",Annual Emissions of Carbon Dioxide For International Aviation,, -Annual_Emissions_CarbonDioxide_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Carbon Dioxide",Annual Emissions of Carbon Dioxide For Railways,, -Annual_Emissions_CarbonDioxide_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Carbon Dioxide",Annual Emissions of Carbon Dioxide For Residential Commercial Onsite Heating,, -Annual_Emissions_CarbonDioxide_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Carbon Dioxide",Annual Emissions of Carbon Dioxide For Road Vehicles,, -Annual_Emissions_CarbonDioxide_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Buildings,, -Annual_Emissions_CarbonDioxide_IronMining,"Annual Amount of Emissions: Iron Mining, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Iron Mining,, -Annual_Emissions_CarbonDioxide_Manufacturing,"Annual Amount of Emissions: Manufacturing, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Manufacturing,, -Annual_Emissions_CarbonDioxide_MaritimeShipping,"Annual Amount of Emissions: Maritime Shipping, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Maritime Shipping,, -Annual_Emissions_CarbonDioxide_MineralExtraction,"Annual Amount of Emissions: Mineral Extraction, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Net Forest,, -Annual_Emissions_CarbonDioxide_NetForestEmissions,"Annual Amount of Emissions: Net Forest Emissions, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Net Forest,, -Annual_Emissions_CarbonDioxide_NetGrasslandEmissions,"Annual Amount of Emissions: Net Grassland Emissions, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Net Grassland,, -Annual_Emissions_CarbonDioxide_NetWetlandEmissions,"Annual Amount of Emissions: Net Wetland Emissions, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Net Wetland,, -Annual_Emissions_CarbonDioxide_OilAndGasProduction,"Annual Amount of Emissions: Oil And Gas Production, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Oil and Gas Production,, -Annual_Emissions_CarbonDioxide_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Oil and Gas Refining,, -Annual_Emissions_CarbonDioxide_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Open Burning Waste,, -Annual_Emissions_CarbonDioxide_Power,"Annual Amount of Emissions: Power, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Power,, -Annual_Emissions_CarbonDioxide_PulpAndPaperManufacturing,"Annual Amount of Emissions: Pulp And Paper Manufacturing, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Pulp and Paper Manufacturing,, -Annual_Emissions_CarbonDioxide_RockQuarry,"Annual Amount of Emissions: Rock Quarry, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Rock Quarry,, -Annual_Emissions_CarbonDioxide_SandQuarry,"Annual Amount of Emissions: Sand Quarry, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Sand Quarry,, -Annual_Emissions_CarbonDioxide_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Solid Fuel Transformation,, -Annual_Emissions_CarbonDioxide_SteelManufacturing,"Annual Amount of Emissions: Steel Manufacturing, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Steel Manufacturing,, -Annual_Emissions_CarbonDioxide_Transportation,"Annual Amount of Emissions: Transportation, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Transportation,, -Annual_Emissions_CarbonDioxide_WasteManagement,"Annual Amount of Emissions: Waste Management, Carbon Dioxide",Annual Emissions of Carbon Dioxide in Waste Management,, -Annual_Emissions_EPA_OtherFullyFluorinatedCompound_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, EPA_Other Fully Fluorinated Compound",Annual Emissions of Non Biogenic Other Fully Fluorinated Compound,, -Annual_Emissions_GreenhouseGas_Agriculture,"Annual Amount of Emissions: Agriculture, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Agriculture,, -Annual_Emissions_GreenhouseGas_AluminumProduction,"Annual Amount of Emissions: Aluminum Production, Greenhouse Gas",,, -Annual_Emissions_GreenhouseGas_AmmoniaManufacturing_NonBiogenic,"Annual Amount of Emissions: Ammonia Manufacturing, Non Biogenic Emission Source",Annual Emissions of Greenhouse Gas Non Biogenic Ammonia From Manufacturing,, -Annual_Emissions_GreenhouseGas_BauxiteMining,"Annual Amount of Emissions: Bauxite Mining, Greenhouse Gas",,, -Annual_Emissions_GreenhouseGas_CementProduction,"Annual Amount of Emissions: Cement Production, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Cement Production,, -Annual_Emissions_GreenhouseGas_CementProduction_NonBiogenic,"Annual Amount of Emissions: Cement Production, Non Biogenic Emission Source",Annual Emissions of Greenhouse Gas Non Biogenic From Cement Production,, -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Greenhouse Gas",Annual Emissions of Greenhouse Gas Climate Trace in Other Energy Use,, -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Greenhouse Gas",Annual Emissions of Greenhouse Gas Climate Trace in Other Manufacturing,, -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Greenhouse Gas",Annual Emissions of Greenhouse Gas Climate Trace in Other Transportation,, -Annual_Emissions_GreenhouseGas_CopperMining,"Annual Amount of Emissions: Copper Mining, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Copper Mining,, -Annual_Emissions_GreenhouseGas_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Cropland Fire,, -Annual_Emissions_GreenhouseGas_ElectricityGeneration,"Annual Amount of Emissions: Electricity Generation, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Electricity Generation,, -Annual_Emissions_GreenhouseGas_ElectricityGeneration_NonBiogenic,"Annual Amount of Emissions: Electricity Generation, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Electricity Generation,, -Annual_Emissions_GreenhouseGas_ElectricityGenerationFromThermalPowerPlant,"Annual Amount of Emissions: Electricity Generation From Thermal Power Plant, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Electricity Generation From Thermal Power Plant,, -Annual_Emissions_GreenhouseGas_ElectronicsManufacture_NonBiogenic,"Annual Amount of Emissions: Electronics Manufacture, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Electronics Manufacture,, -Annual_Emissions_GreenhouseGas_EntericFermentation,"Annual Amount of Emissions: Enteric Fermentation, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Enteric Fermentation,, -Annual_Emissions_GreenhouseGas_FluorinatedGHGProduction_NonBiogenic,"Annual Amount of Emissions: Fluorinated GHGProduction, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Fluorinated GHG Production,, -Annual_Emissions_GreenhouseGas_ForestClearing,"Annual Amount of Emissions: Forest Clearing, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Forest Clearing,, -Annual_Emissions_GreenhouseGas_ForestFire,"Annual Amount of Emissions: Forest Fire, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Forest Fire,, -Annual_Emissions_GreenhouseGas_ForestryAndLandUse,"Annual Amount of Emissions: Forestry And Land Use, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Forestry and Land Use,, -Annual_Emissions_GreenhouseGas_FuelCombustionForAviation,"Annual Amount of Emissions: Fuel Combustion for Aviation, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Aviation,, -Annual_Emissions_GreenhouseGas_FuelCombustionForCooking,"Annual Amount of Emissions: Fuel Combustion for Cooking, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Cooking,, -Annual_Emissions_GreenhouseGas_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Railways,, -Annual_Emissions_GreenhouseGas_FuelCombustionForRefrigerationAirConditioning,"Annual Amount of Emissions: Fuel Combustion for Refrigeration Air Conditioning, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Refrigeration Air Conditioning,, -Annual_Emissions_GreenhouseGas_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Residential Commercial Onsite Heating,, -Annual_Emissions_GreenhouseGas_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Greenhouse Gas",Annual Emissions of Greenhouse Gas For Road Vehicles,, -Annual_Emissions_GreenhouseGas_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Buildings,, -Annual_Emissions_GreenhouseGas_GlassProduction_NonBiogenic,"Annual Amount of Emissions: Glass Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Glass Production,, -Annual_Emissions_GreenhouseGas_HydrogenProduction_NonBiogenic,"Annual Amount of Emissions: Hydrogen Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Hydrogen Production,, -Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,"Annual Amount of Emissions: Industrial Waste Landfills, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Industrial Waste Landfills,, -Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,"Annual Amount of Emissions: Industrial Wastewater Treatment, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Industrial Waste Landfills,, -Annual_Emissions_GreenhouseGas_IronAndSteelProduction_NonBiogenic,"Annual Amount of Emissions: Iron And Steel Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Iron and Steel Production,, -Annual_Emissions_GreenhouseGas_IronMining,"Annual Amount of Emissions: Iron Mining, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Iron Mining,, -Annual_Emissions_GreenhouseGas_LimeProduction_NonBiogenic,"Annual Amount of Emissions: Lime Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Lime Production,, -Annual_Emissions_GreenhouseGas_ManagedSoils,"Annual Amount of Emissions: Managed Soils, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Managed Soils,, -Annual_Emissions_GreenhouseGas_Manufacturing,"Annual Amount of Emissions: Manufacturing, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Manufacturing,, -Annual_Emissions_GreenhouseGas_ManureManagement,"Annual Amount of Emissions: Manure Management, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Manure Management,, -Annual_Emissions_GreenhouseGas_MaritimeShipping,"Annual Amount of Emissions: Maritime Shipping, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Maritime Shipping,, -Annual_Emissions_GreenhouseGas_MaritimeTransport,"Annual Amount of Emissions: Maritime Transport, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Maritime Transport,, -Annual_Emissions_GreenhouseGas_MineralExtraction,"Annual Amount of Emissions: Mineral Extraction, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Mineral Extraction,, -Annual_Emissions_GreenhouseGas_MiscellaneousUseOfCarbonates_NonBiogenic,"Annual Amount of Emissions: Miscellaneous Use of Carbonates, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Miscellaneous Use of Carbonates,, -Annual_Emissions_GreenhouseGas_MunicipalLandfills_NonBiogenic,"Annual Amount of Emissions: Municipal Landfills, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Municipal Landfills,, -Annual_Emissions_GreenhouseGas_NitricAcidProduction_NonBiogenic,"Annual Amount of Emissions: Nitric Acid Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas From Nitric Acid Production,, -Annual_Emissions_GreenhouseGas_NonBiogenic_Per_Annual_Generation_Electricity,Annual Non-Biogenic Greenhouse Gas Emissions per Unit of Electricity Generated,Annual Emissions of Non Biogenic Greenhouse Gas in Generation Electricity,, -Annual_Emissions_GreenhouseGas_OilAndGas,"Annual Amount of Emissions: Oil And Gas, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Oil and Gas,, -Annual_Emissions_GreenhouseGas_OilAndGasProduction,"Annual Amount of Emissions: Oil And Gas Production, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Oil and Gas Production,, -Annual_Emissions_GreenhouseGas_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Open Burning Waste,, -Annual_Emissions_GreenhouseGas_PetrochemicalProduction,"Annual Amount of Emissions: Petrochemical Production, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Petrochemical Production,, -Annual_Emissions_GreenhouseGas_PetrochemicalProduction_NonBiogenic,"Annual Amount of Emissions: Petrochemical Production, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Petrochemical Production,, -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_Processing_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Processing, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum and Natural Gas Systems Processing,, -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_TransmissionOrCompression_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Transmission or Compression, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum and Natural Gas Systems Transmission or Compression,, -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_UndergroundStorage_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Underground Storage, Non Biogenic Emission Source",Annual Emissions of Greenhouse Gas in Petroleum and Natural Gas Systems Underground Storage,, -Annual_Emissions_GreenhouseGas_PetroleumRefining,"Annual Amount of Emissions: Petroleum Refining, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Petroleum Refining,, -Annual_Emissions_GreenhouseGas_PetroleumRefining_NonBiogenic,"Annual Amount of Emissions: Petroleum Refining, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum Refining,, -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing,"Annual Amount of Emissions: Pulp And Paper Manufacturing, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Pulp and Paper Manufacturing,, -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing_NonBiogenic,"Annual Amount of Emissions: Pulp And Paper Manufacturing, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Pulp and Paper Manufacturing,, -Annual_Emissions_GreenhouseGas_RiceCultivation,"Annual Amount of Emissions: Rice Cultivation, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Rice Cultivation,, -Annual_Emissions_GreenhouseGas_RockQuarry,"Annual Amount of Emissions: Rock Quarry, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Rock Quarry,, -Annual_Emissions_GreenhouseGas_SandQuarry,"Annual Amount of Emissions: Sand Quarry, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Sand Quarry,, -Annual_Emissions_GreenhouseGas_SavannaFire,"Annual Amount of Emissions: Savanna Fire, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Savanna Fire,, -Annual_Emissions_GreenhouseGas_ShrublandFire,"Annual Amount of Emissions: Shrubland Fire, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Shrubland Fire,, -Annual_Emissions_GreenhouseGas_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Solid Fuel Transformation,, -Annual_Emissions_GreenhouseGas_SolidWasteDisposal,"Annual Amount of Emissions: Solid Waste Disposal, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Solid Waste Disposal,, -Annual_Emissions_GreenhouseGas_StationaryCombustion_NonBiogenic,"Annual Amount of Emissions: Stationary Combustion, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Stationary Combustion,, -Annual_Emissions_GreenhouseGas_SteelManufacturing,"Annual Amount of Emissions: Steel Manufacturing, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Steel Manufacturing,, -Annual_Emissions_GreenhouseGas_Transportation,"Annual Amount of Emissions: Transportation, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Transportation,, -Annual_Emissions_GreenhouseGas_UndergroundCoalMines_NonBiogenic,"Annual Amount of Emissions: Underground Coal Mines, Non Biogenic Emission Source",Annual Emissions of Non Biogenic Greenhouse Gas in Underground Coal Mines,, -Annual_Emissions_GreenhouseGas_WasteManagement,"Annual Amount of Emissions: Waste Management, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Waste Management,, -Annual_Emissions_GreenhouseGas_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Greenhouse Gas",Annual Emissions of Greenhouse Gas in Wastewater Treatment and Discharge,, -Annual_Emissions_Hydrofluorocarbon_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Hydrofluorocarbon",Annual Emissions of Non Biogenic Hydrofluorocarbon,, -Annual_Emissions_Hydrofluoroether_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Hydrofluoroether",Annual Emissions of Non Biogenic Hydrofluoroether,, -Annual_Emissions_Methane_Agriculture,"Annual Amount of Emissions: Agriculture, Methane",Annual Emissions of Methane in Agriculture,, -Annual_Emissions_Methane_BiologicalTreatmentOfSolidWasteAndBiogenic,"Annual Amount of Emissions: Biological Treatment of Solid Waste And Biogenic, Methane",Annual Emissions of Methane in Biological Treatment of Solid Waste and Biogenic,, -Annual_Emissions_Methane_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Methane",Annual Emissions of Methane Climate Trace in Other Energy Use,, -Annual_Emissions_Methane_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Methane",Annual Emissions of Methane Climate Trace in Other Fossil Fuel Operations,, -Annual_Emissions_Methane_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Methane",Annual Emissions of Methane Climate Trace in Other Manufacturing,, -Annual_Emissions_Methane_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Methane",Annual Emissions of Methane Climate Trace in Other Onsite Fuel Usage,, -Annual_Emissions_Methane_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Methane",Annual Emissions of Methane Climate Trace in Other Transportation,, -Annual_Emissions_Methane_CoalMining,"Annual Amount of Emissions: Coal Mining, Methane",Annual Emissions of Methane in Coal Mining,, -Annual_Emissions_Methane_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Methane",Annual Emissions of Methane in Cropland Fire,, -Annual_Emissions_Methane_EntericFermentation,"Annual Amount of Emissions: Enteric Fermentation, Methane",Annual Emissions of Methane in Enteric Fermentation,, -Annual_Emissions_Methane_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Methane",Annual Emissions of Methane in Fossil Fuel Operations,, -Annual_Emissions_Methane_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Methane",Annual Emissions of Methane For Domestic Aviation,, -Annual_Emissions_Methane_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Methane",Annual Emissions of Methane For International Aviation,, -Annual_Emissions_Methane_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Methane",Annual Emissions of Methane For Railways,, -Annual_Emissions_Methane_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Methane",Annual Emissions of Methane For Residential Commercial Onsite Heating,, -Annual_Emissions_Methane_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Methane",Annual Emissions of Methane For Road Vehicles,, -Annual_Emissions_Methane_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Methane",Annual Emissions of Methane in Buildings,, -Annual_Emissions_Methane_Manufacturing,"Annual Amount of Emissions: Manufacturing, Methane",Annual Emissions of Methane in Manufacturing,, -Annual_Emissions_Methane_ManureManagement,"Annual Amount of Emissions: Manure Management, Methane",Annual Emissions of Methane in Manure Management,, -Annual_Emissions_Methane_OilAndGasProduction,"Annual Amount of Emissions: Oil And Gas Production, Methane",Annual Emissions of Methane in Oil and Gas Production,, -Annual_Emissions_Methane_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Methane",Annual Emissions of Methane in Oil and Gas Refining,, -Annual_Emissions_Methane_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Methane",Annual Emissions of Methane in Open Burning Waste,, -Annual_Emissions_Methane_Power,"Annual Amount of Emissions: Power, Methane",Annual Emissions of Methane in Power,, -Annual_Emissions_Methane_RiceCultivation,"Annual Amount of Emissions: Rice Cultivation, Methane",Annual Emissions of Methane in Rice Cultivation,, -Annual_Emissions_Methane_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Methane",Annual Emissions of Methane in Solid Fuel Transformation,, -Annual_Emissions_Methane_SolidWasteDisposal,"Annual Amount of Emissions: Solid Waste Disposal, Methane",Annual Emissions of Methane in Solid Waste Disposal,, -Annual_Emissions_Methane_Transportation,"Annual Amount of Emissions: Transportation, Methane",Annual Emissions of Methane in Transportation,, -Annual_Emissions_Methane_WasteManagement,"Annual Amount of Emissions: Waste Management, Methane",Annual Emissions of Methane in Waste Management,, -Annual_Emissions_Methane_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Methane",Annual Emissions of Methane in Wastewater Treatment and Discharge,, -Annual_Emissions_NitrogenTrifluoride_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Nitrogen Trifluoride",Annual Emissions of Non Biogenic Nitrogen Trifluoride,, -Annual_Emissions_NitrousOxide_Agriculture,"Annual Amount of Emissions: Agriculture, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Agriculture,, -Annual_Emissions_NitrousOxide_BiologicalTreatmentOfSolidWasteAndBiogenic,"Annual Amount of Emissions: Biological Treatment of Solid Waste And Biogenic, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Biological Treatment of Solid Waste And Biogenic,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherAgriculturalSoilEmissions,"Annual Amount of Emissions: Other Agricultural Soil Emissions, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Agricultural Soil,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Energy Use,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Fossil Fuel Operations,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Manufacturing,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Onsite Fuel Usage,, -Annual_Emissions_NitrousOxide_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Nitrous Oxide",Annual Emissions of Nitrous Oxide Climate Trace in Other Transportation,, -Annual_Emissions_NitrousOxide_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Cropland Fire,, -Annual_Emissions_NitrousOxide_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Fossil Fuel Operations,, -Annual_Emissions_NitrousOxide_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Nitrous Oxide",Annual Emissions of Nitrous Oxide For Domestic Aviation,, -Annual_Emissions_NitrousOxide_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Nitrous Oxide",Annual Emissions of Nitrous Oxide For International Aviation,, -Annual_Emissions_NitrousOxide_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Nitrous Oxide",Annual Emissions of Nitrous Oxide For Railways,, -Annual_Emissions_NitrousOxide_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Nitrous Oxide",Annual Emissions of Nitrous Oxide For Residential Commercial Onsite Heating,, -Annual_Emissions_NitrousOxide_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Nitrous Oxide",Annual Emissions of Nitrous Oxide For Road Vehicles,, -Annual_Emissions_NitrousOxide_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Buildings,, -Annual_Emissions_NitrousOxide_Manufacturing,"Annual Amount of Emissions: Manufacturing, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Manufacturing,, -Annual_Emissions_NitrousOxide_ManureManagement,"Annual Amount of Emissions: Manure Management, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Manure Management,, -Annual_Emissions_NitrousOxide_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Oil and Gas Refining,, -Annual_Emissions_NitrousOxide_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Open Burning Waste,, -Annual_Emissions_NitrousOxide_Power,"Annual Amount of Emissions: Power, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Power,, -Annual_Emissions_NitrousOxide_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Solid Fuel Transformation,, -Annual_Emissions_NitrousOxide_SyntheticFertilizerApplication,"Annual Amount of Emissions: Synthetic Fertilizer Application, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Synthetic Fertilizer Application,, -Annual_Emissions_NitrousOxide_Transportation,"Annual Amount of Emissions: Transportation, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Transportation,, -Annual_Emissions_NitrousOxide_WasteManagement,"Annual Amount of Emissions: Waste Management, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Waste Management,, -Annual_Emissions_NitrousOxide_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Nitrous Oxide",Annual Emissions of Nitrous Oxide in Wastewater Treatment and Discharge,, -Annual_Emissions_Perfluorocarbon_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Perfluorocarbon",Annual Emissions of Non Biogenic Perfluorocarbon,, -Annual_Emissions_SulfurHexafluoride_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Sulfur Hexafluoride",Annual Emissions of Non Biogenic Sulfur Hexafluoride,, -Annual_Emissions_VeryShortLivedCompounds_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Very Short Lived Compounds",Annual Emissions of Non Biogenic Very Short Lived Compounds,, -Annual_ExpectedLoss_NaturalHazardImpact_AvalancheEvent,Annual Expected Loss from Natural Hazard Impact: Avalanche,Annual Expected Loss on Avalanche Event,, -Annual_ExpectedLoss_NaturalHazardImpact_CoastalFloodEvent,Annual Expected Loss from Natural Hazard Impact: Coastal Flood,Annual Expected Loss on Coastal Floods,, -Annual_ExpectedLoss_NaturalHazardImpact_ColdWaveEvent,Annual Expected Loss from Natural Hazard Impact: Cold Wave,Annual Expected Loss on old Waves,, -Annual_ExpectedLoss_NaturalHazardImpact_DroughtEvent,Annual Expected Loss from Natural Hazard Impact: Drought,Annual Expected Loss on Drought,, -Annual_ExpectedLoss_NaturalHazardImpact_EarthquakeEvent,Annual Expected Loss from Natural Hazard Impact: Earthquake,Annual Expected Loss Earthquakes,, -Annual_ExpectedLoss_NaturalHazardImpact_HailEvent,Annual Expected Loss from Natural Hazard Impact: Hail,Annual Expected Loss Hails,, -Annual_ExpectedLoss_NaturalHazardImpact_HeatWaveEvent,Annual Expected Loss from Natural Hazard Impact: Heat Wave,Annual Expected Loss on Heat Waves,, -Annual_ExpectedLoss_NaturalHazardImpact_HurricaneEvent,Annual Expected Loss from Natural Hazard Impact: Hurricane,Annual Expected Loss on Hurricanes,, -Annual_ExpectedLoss_NaturalHazardImpact_IceStormEvent,Annual Expected Loss from Natural Hazard Impact: Ice Storm,Annual Expected Loss on Ice Storms,, -Annual_ExpectedLoss_NaturalHazardImpact_LandslideEvent,Annual Expected Loss from Natural Hazard Impact: Landslide,Annual Expected Loss on Landslides,, -Annual_ExpectedLoss_NaturalHazardImpact_LightningEvent,Annual Expected Loss from Natural Hazard Impact: Lightning,Annual Expected Loss on Lightnings,, -Annual_ExpectedLoss_NaturalHazardImpact_RiverineFloodingEvent,Annual Expected Loss from Natural Hazard Impact: Riverine Flooding,Annual Expected Loss on Riverine Floods,, -Annual_ExpectedLoss_NaturalHazardImpact_StrongWindEvent,Annual Expected Loss from Natural Hazard Impact: Strong Wind,Annual Expected Loss on Strong Winds,, -Annual_ExpectedLoss_NaturalHazardImpact_TornadoEvent,Annual Expected Loss from Natural Hazard Impact: Tornado,Annual Expected Loss on Tornados,, -Annual_ExpectedLoss_NaturalHazardImpact_TsunamiEvent,Annual Expected Loss from Natural Hazard Impact: Tsunami,Annual Expected Loss on Tsunamis,, -Annual_ExpectedLoss_NaturalHazardImpact_VolcanicActivityEvent,Annual Expected Loss from Natural Hazard Impact: Volcanic Activity,Annual Expected Loss on Volcanic Activities,, -Annual_ExpectedLoss_NaturalHazardImpact_WildfireEvent,Annual Expected Loss from Natural Hazard Impact: Wildfire,Annual Expected Loss on Wildfires,, -Annual_ExpectedLoss_NaturalHazardImpact_WinterWeatherEvent,Annual Expected Loss from Natural Hazard Impact: Winter Weather,Annual Expected Loss on Winter Weather,, -Annual_Exports_Electricity,Annual Exports of Electricity,Annual Exports of Electricity,, -Annual_Exports_Fuel_AviationGasoline,Annual Exports of Fuel: Aviation Gasoline,Annual Exports of Aviation Gasoline,, -Annual_Exports_Fuel_BituminousCoal,Annual Exports of Fuel: EIA_Bituminous Coal,Annual Exports of Bituminous Coal,, -Annual_Exports_Fuel_BrownCoal,Annual Exports of Fuel: Brown Coal,Annual Exports Of Brown Coal,, -Annual_Exports_Fuel_Charcoal,Annual Exports of Fuel: Charcoal,Annual Exports of Charcoal,, -Annual_Exports_Fuel_CokeOvenCoke,Annual Exports of Fuel: Coke Oven Coke,Annual Exports of Coke Oven Coke,, -Annual_Exports_Fuel_CrudeOil,Annual Exports of Fuel: Crude Oil,Annual Exports of Crude Oil,, -Annual_Exports_Fuel_DieselOil,Annual Exports of Fuel: Diesel Oil,Annual Exports of Diesel Oil,, -Annual_Exports_Fuel_FuelOil,Annual Exports of Fuel: Fuel Oil,Annual Exports Of Fuel Oil,, -Annual_Exports_Fuel_Fuelwood,Annual Exports of Fuel: Fuelwood,Annual Exports of Fuelwood,, -Annual_Exports_Fuel_HardCoal,Annual Exports of Fuel: Hard Coal,Annual Exports Of Hard Coal,, -Annual_Exports_Fuel_Kerosene,Annual Exports of Fuel: EIA_Kerosene,Annual Exports of EIA_Kerosene,, -Annual_Exports_Fuel_KeroseneJetFuel,Annual Exports of Fuel: Kerosene Jet Fuel,Annual Exports of Kerosene Jet Fuel,, -Annual_Exports_Fuel_LiquifiedPetroleumGas,Annual Exports of Fuel: Liquefied Petroleum Gas,Annual Exports of Liquefied Petroleum Gas,, -Annual_Exports_Fuel_Lubricants,Annual Exports of Fuel: Lubricants,Annual Exports of Lubricants,, -Annual_Exports_Fuel_MotorGasoline,Annual Exports of Fuel: Motor Gasoline,Annual Exports of Motor Gasoline,, -Annual_Exports_Fuel_Naphtha,Annual Exports of Fuel: Naphtha,Annual Exports of Naphtha,, -Annual_Exports_Fuel_NaturalGas,Annual Exports of Fuel: Natural Gas,Annual Exports of Natural Gas,, -Annual_Exports_Fuel_NaturalGasLiquids,Annual Exports of Fuel: Natural Gas Liquids,Annual Exports of Natural Gas Liquids,, -Annual_Exports_Fuel_OtherBituminousCoal,Annual Exports of Fuel: UN_Other Bituminous Coal,Annual Exports of UN Other Bituminous Coal,, -Annual_Exports_Fuel_OtherOilProducts,Annual Exports of Fuel: UN_Other Oil Products,Annual Exports of Other Oil Products,, -Annual_Exports_Fuel_ParaffinWaxes,Annual Exports of Fuel: Paraffin Waxes,Annual Exports of Paraffin Waxes,, -Annual_Exports_Fuel_PetroleumCoke,Annual Exports of Fuel: Petroleum Coke,Annual Exports of Petroleum Coke,, -Annual_Exports_Fuel_WhiteSpirit,Annual Exports of Fuel: White Spirit,Annual Exports of White Spirit,, -Annual_Generation_Electricity_AutoProducer,Annual Generation of Electricity: Auto Producer,Annual Generation of Auto-Produced Electricity,, -Annual_Generation_Electricity_BioGas_ThermalElectricity,"Annual Generation of Electricity: From Bio Gas, Thermal Electricity",Annual Generation of Bio Gas in Thermal Electricity,, -Annual_Generation_Electricity_BrownCoal_ThermalElectricity,"Annual Generation of Electricity: From Brown Coal, Thermal Electricity",Annual Generation of Electricity by Brown Coal in Thermal Electricity,, -Annual_Generation_Electricity_Coal,"Net generation, coal, all sectors, annual",Annual Net Generation of Coal By All Sectors,, -Annual_Generation_Electricity_Coal_ElectricPower,"Net generation, coal, electric power (total), annual",Annual Generation of Electricity by Coal in Electric Power,, -Annual_Generation_Electricity_Coal_ElectricUtility,"Net generation, coal, electric utility, annual",Annual Generation of Coal in Electric Utility,, -Annual_Generation_Electricity_Coal_ThermalElectricity,"Annual Generation of Electricity: From Coal, Thermal Electricity",Annual Generation of Thermal Electricity From Coal,, -Annual_Generation_Electricity_CombustibleFuel_AutoProducer,"Annual Generation of Electricity: From Combustible Fuel, Auto Producer",Annual Generation of Electricity by Combustible Fuel Auto Producers,, -Annual_Generation_Electricity_CombustibleFuel_AutoProducerCombinedHeatPowerPlants,"Annual Generation of Electricity: From Combustible Fuel, Auto Producer Combined Heat Power Plants",Annual Generation of Combustible Fuel in Auto Producer Combined Heat Power Plants,, -Annual_Generation_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,"Annual Generation of Electricity: From Combustible Fuel, Auto Producer Electricity Power Plants",Annual Generation Of Combustible Fuel In Autoproducer Electricity Power Plants,, -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducer,"Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer",Annual Generation of Electricity From Combustible Fuel,, -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,"Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer Combined Heat Power Plants",Annual Generation of Electricity From Combustible Fuel by Main Activity Producer Combined Heat Power Plants,, -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,"Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer Electricity Power Plants",Annual Generation of Electricity From Combustible Fuel,, -Annual_Generation_Electricity_Commercial,"Net generation, all fuels, all commercial (total), annual",Annual Net Generation Of All Fuels,, -Annual_Generation_Electricity_CommercialCogen,"Net generation, all fuels, commercial cogen, annual",Annual Net Generation of All Fuels in Commercial Cogen,, -Annual_Generation_Electricity_CommercialNonCogen,"Net generation, all fuels, commercial non-cogen, annual",Annual Net Generation of All Fuels in Commercial Non-Cogen,, -Annual_Generation_Electricity_ConventionalHydroelectric,"Net generation, conventional hydroelectric, all sectors, annual",Annual Net Generation Of Conventional Hydroelectric Energy In All Sectors,, -Annual_Generation_Electricity_ConventionalHydroelectric_AutoProducer,"Annual Generation of Electricity: From Conventional Hydroelectric, Auto Producer",Annual Generation of Electricity From Conventional Hydroelectric by Auto Producers,, -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricPower,"Net generation, conventional hydroelectric, electric power (total), annual",Annual Net Generation of conventional Hydroelectric in Total Electric Power,, -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricUtility,"Net generation, conventional hydroelectric, electric utility, annual",Annual Net Generation of Conventional Hydroelectric in Electric Utility,, -Annual_Generation_Electricity_ConventionalHydroelectric_MainActivityProducer,"Annual Generation of Electricity: From Conventional Hydroelectric, Main Activity Producer",Annual Generation oF Conventional Hydroelectric in Main Activity Producer,, -Annual_Generation_Electricity_DieselOil_ThermalElectricity,"Annual Generation of Electricity: From Diesel Oil, Thermal Electricity",Annual Generation of Thermal Electricity From Diesel Oil,, -Annual_Generation_Electricity_ElectricPower,"Net generation, all fuels, electric power (total), annual",Annual Generation of Electric Power in Electricity,, -Annual_Generation_Electricity_ElectricUtility,"Net generation, all fuels, electric utility, annual",Annual Net Generation of Electricity in Electric Utility,, -Annual_Generation_Electricity_ElectricUtilityCogen,"Net generation, all fuels, electric utility cogen, annual",Annual Net generation All fuels Electric Uity Cogen,, -Annual_Generation_Electricity_ElectricUtilityNonCogen,"Net generation, all fuels, electric utility non-cogen, annual",Annual Net generation of all Fuels in Electric Utility Non-Cogen,, -Annual_Generation_Electricity_FuelOil_ThermalElectricity,"Annual Generation of Electricity: From Fuel Oil, Thermal Electricity",Annual Generation of Thermal Electricity From Fuel Oil,, -Annual_Generation_Electricity_Households,Annual Generation of Electricity: for Households,Annual Generation of Electricity for Households,, -Annual_Generation_Electricity_IndependentPowerProducers,"Net generation, all fuels, independent power producers (total), annual",Annual Net Generation of Electricity From All Fuels By Independent Power Producers,, -Annual_Generation_Electricity_Industrial,"Net generation, all fuels, all industrial (total), annual",Annual Net Generation Of All Fuels By Industries,, -Annual_Generation_Electricity_IndustrialCogen,"Net generation, all fuels, industrial cogen, annual",Annual Net Generation of Electricity by Industrial Cogen,, -Annual_Generation_Electricity_IndustrialNonCogen,"Net generation, all fuels, industrial non-cogen, annual",Annual Generation of Electricity by Industrial Non Cogen;Annual Generation of Electricity by Industrial Non-Cogen,, -Annual_Generation_Electricity_MainActivityProducer,Annual Generation of Electricity: Main Activity Producer,Annual Generation of Electricity by Main Activity Producer,, -Annual_Generation_Electricity_NaturalGas,"Net generation, natural gas, all sectors, annual",Annual Net Generation of Natural Gas in All Sectors,, -Annual_Generation_Electricity_NaturalGas_Commercial,"Net generation, natural gas, all commercial (total), annual",Annual Generation of Natural Gas in Commercial,, -Annual_Generation_Electricity_NaturalGas_CommercialCogen,"Net generation, natural gas, commercial cogen, annual",Annual Net Generation of Natural Gas in Commercial Cogen,, -Annual_Generation_Electricity_NaturalGas_ElectricPower,"Net generation, natural gas, electric power (total), annual",Annual Net Generation of Natural Gas in Electric Power,, -Annual_Generation_Electricity_NaturalGas_ElectricUtility,"Net generation, natural gas, electric utility, annual",Annual Net Generation Of Natural Gas In Electric Utility,, -Annual_Generation_Electricity_NaturalGas_ElectricUtilityCogen,"Net generation, natural gas, electric utility cogen, annual",Annual Generation of Natural Gas in Electric Utility Cogen,, -Annual_Generation_Electricity_NaturalGas_ElectricUtilityNonCogen,"Net generation, natural gas, electric utility non-cogen, annual",Annual Net Generation of Natural Gas in Utility Non-Cogen,, -Annual_Generation_Electricity_NaturalGas_IndependentPowerProducers,"Net generation, natural gas, independent power producers (total), annual",Annual Net Generation Of Natural Gas in Independent Power Producers,, -Annual_Generation_Electricity_NaturalGas_Industrial,"Net generation, natural gas, all industrial (total), annual",Annual Net Generation of Natural Gas In All Industrials,, -Annual_Generation_Electricity_NaturalGas_IndustrialCogen,"Net generation, natural gas, industrial cogen, annual",Annual Net Generation Of Natural Gas for industrial cogen,, -Annual_Generation_Electricity_NaturalGas_ThermalElectricity,"Annual Generation of Electricity: From Natural Gas, Thermal Electricity",Annual Generation of Electricity From Natural Gas In Thermal Electricity,, -Annual_Generation_Electricity_NonRenewableWaste_ThermalElectricity,"Annual Generation of Electricity: From Non Renewable Waste, Thermal Electricity",Annual Generation of Non-Renewable Waste in Thermal Electricity,, -Annual_Generation_Electricity_OilProducts_ThermalElectricity,"Annual Generation of Electricity: From Oil Products, Thermal Electricity",Annual Generation of Thermal Electricity From Oil Products Industries,, -Annual_Generation_Electricity_Other,"Net generation, other, all sectors, annual",Annual Net generation in All Sectors,, -Annual_Generation_Electricity_Other_ElectricPower,"Net generation, other, electric power (total), annual",Annual Net Generation of Other Fuels in Electric Power Generation,, -Annual_Generation_Electricity_OtherBiomass,"Net generation, other biomass, all sectors, annual",Annual Net generation Of Other Biomass In All Sectors,, -Annual_Generation_Electricity_OtherBiomass_ElectricPower,"Net generation, other biomass, electric power (total), annual",Annual Net Generation of Biomass For Electric Power,, -Annual_Generation_Electricity_OtherBiomass_ElectricUtilityNonCogen,"Net generation, other biomass, electric utility non-cogen, annual",Annual Net Generation of Other Biomass in Electric Utility Non-cogen,, -Annual_Generation_Electricity_OtherBiomass_IndependentPowerProducers,"Net generation, other biomass, independent power producers (total), annual",Annual Net generation Of Electricity by Other Biomass From Independent Power Producers,, -Annual_Generation_Electricity_PetroleumLiquids,"Net generation, petroleum liquids, all sectors, annual",Annual Net Generation of Petroleum Liquids in All Sectors,, -Annual_Generation_Electricity_PetroleumLiquids_Commercial,"Net generation, petroleum liquids, all commercial (total), annual",Annual Net Generation of Petroleum Liquids in All Commercial,, -Annual_Generation_Electricity_PetroleumLiquids_ElectricPower,"Net generation, petroleum liquids, electric power (total), annual",Total Annual Net Generation of Petroleum Liquids in Electric Power Plants,, -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtility,"Net generation, petroleum liquids, electric utility, annual",Annual Net Generation of Petroleum Liquids in Electric Utility,, -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtilityNonCogen,"Net generation, petroleum liquids, electric utility non-cogen, annual",Annual Net Generation of Petroleum Liquids in Electric Utility Non-Cogen,, -Annual_Generation_Electricity_PetroleumLiquids_IndependentPowerProducers,"Net generation, petroleum liquids, independent power producers (total), annual",Annual Net Generation of Petroleum Liquids in Independent Power Producers,, -Annual_Generation_Electricity_PetroleumLiquids_Industrial,"Net generation, petroleum liquids, all industrial (total), annual",Annual Net Generation of Petroleum Liquids in all industrial,, -Annual_Generation_Electricity_PetroleumLiquids_IndustrialCogen,"Net generation, petroleum liquids, industrial cogen, annual",Annual Net Generation of Electricity by Petroleum Liquids in Industrial Cogen,, -Annual_Generation_Electricity_RenewableEnergy,"Net generation, other renewables (total), all sectors, annual",Annual Net Generation of Other Renewables in All Sectors,, -Annual_Generation_Electricity_RenewableEnergy_Commercial,"Net generation, other renewables (total), all commercial (total), annual",Total Annual Net Generation Other Renewables,, -Annual_Generation_Electricity_RenewableEnergy_ElectricPower,"Net generation, other renewables (total), electric power (total), annual",Total Annual Net Generation of Other Renewables in Electric Power,, -Annual_Generation_Electricity_RenewableEnergy_ElectricUtility,"Net generation, other renewables (total), electric utility, annual",Annual Net generation Of Other Renewables In Electric Utility,, -Annual_Generation_Electricity_RenewableEnergy_ElectricUtilityNonCogen,"Net generation, other renewables (total), electric utility non-cogen, annual",Total Annual Net Generation of Other Renewables in Electric Utility Non-Cogen,, -Annual_Generation_Electricity_RenewableEnergy_IndependentPowerProducers,"Net generation, other renewables (total), independent power producers (total), annual",Annual Net Generation of Other Renewables in Independent Power Producers,, -Annual_Generation_Electricity_RenewableEnergy_Industrial,"Net generation, other renewables (total), all industrial (total), annual",Annual Net Generation Of Other Renewables By All Industries,, -Annual_Generation_Electricity_RenewableEnergy_IndustrialCogen,"Net generation, other renewables (total), industrial cogen, annual",Annual Net Generation of Other Renewables in industrial cogen,, -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic,"Net generation, small-scale solar photovoltaic, all sectors, annual",Annual Generation of Small Scale Solar Photovoltaic in Electricity,, -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Commercial,"Net generation, small-scale solar photovoltaic, all commercial (total), annual",Annual Net Generation Small-Scale Solar Photovoltaic in All Commercial,, -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Industrial,"Net generation, small-scale solar photovoltaic, all industrial (total), annual",Annual Net Generation Of Small Scale Solar Photovoltaic In All Industrial,, -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Residential,"Net generation, small-scale solar photovoltaic, residential, annual",Annual Net generation of Small-Scale Solar Photovoltaic Residential,, -Annual_Generation_Electricity_Solar,"Net generation, all solar, all sectors, annual",Annual Net generation of All Solar in All Sectors,, -Annual_Generation_Electricity_Solar_AutoProducer,"Annual Generation of Electricity: From Solar, Auto Producer",Annual Generation of Electricity From Solar in Auto Producer,, -Annual_Generation_Electricity_Solar_Commercial,"Net generation, all solar, all commercial (total), annual",Annual Generation Of Electricity From Solar Energy By Commercial Industries,, -Annual_Generation_Electricity_Solar_IndependentPowerProducers,"Net generation, all solar, independent power producers (total), annual",Annual Net Generation of Electricity by Solar For Independent Power Producers,, -Annual_Generation_Electricity_Solar_Industrial,"Net generation, all solar, all industrial (total), annual",Annual Net Generation of All Solar in All Industries,, -Annual_Generation_Electricity_Solar_MainActivityProducer,"Annual Generation of Electricity: From Solar, Main Activity Producer",Annual Generation of Main Activity Producer From Solar,, -Annual_Generation_Electricity_Solar_Residential,"Net generation, all solar, residential, annual",Annual Net Generation of All Solar In Residential,, -Annual_Generation_Electricity_SolarPhotovoltaic_AutoProducer,"Annual Generation of Electricity: From Solar Photovoltaic, Auto Producer",Annual Generation of Electricity From Solar Photovoltaic Auto Producers,, -Annual_Generation_Electricity_SolarPhotovoltaic_MainActivityProducer,"Annual Generation of Electricity: From Solar Photovoltaic, Main Activity Producer",Annual Generation of Electricity From Solar Photovoltaic,, -Annual_Generation_Electricity_SolidBioFuel_ThermalElectricity,"Annual Generation of Electricity: From Solid Bio Fuel, Thermal Electricity",Annual Generation of Solid Bio Fuel in Thermal Electricity,, -Annual_Generation_Electricity_ThermalElectricity,Annual Generation of Electricity: Thermal Electricity,Annual Net Generation of Thermal Electricity,, -Annual_Generation_Electricity_UtilityScalePhotovoltaic,"Net generation, utility-scale photovoltaic, all sectors, annual",Annual Net Generation of Photovoltaic in Electricity Utility Scale,, -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricPower,"Net generation, utility-scale photovoltaic, electric power (total), annual",Total Annual Net Generation in Utility-Scale Photovoltaic,, -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricUtilityNonCogen,"Net generation, utility-scale photovoltaic, electric utility non-cogen, annual",Annual Net Generation of Utility-scale Photovoltaic by Electric Utility Non-cogen,, -Annual_Generation_Electricity_UtilityScalePhotovoltaic_IndependentPowerProducers,"Net generation, utility-scale photovoltaic, independent power producers (total), annual",Annual Net Generation of Electricity by Utility Scale Photovoltaic in Independent Producers,, -Annual_Generation_Electricity_UtilityScaleSolar,"Net generation, all utility-scale solar, all sectors, annual",Annual Net Generation of All Utility-Scale Solar,, -Annual_Generation_Electricity_UtilityScaleSolar_ElectricPower,"Net generation, all utility-scale solar, electric power (total), annual",Annual Net Generation of Electricity in all Utility-scale Solar Electric Power,, -Annual_Generation_Electricity_UtilityScaleSolar_ElectricUtilityNonCogen,"Net generation, all utility-scale solar, electric utility non-cogen, annual",Annual Net Generational Utility-Scale Solar in Electric Utility Non-Cogen,, -Annual_Generation_Electricity_UtilityScaleSolar_IndependentPowerProducers,"Net generation, all utility-scale solar, independent power producers (total), annual",Total Annual Utility Scale Electricity Generation in Independent Power Producer Industries,, -Annual_Generation_Electricity_Wind,"Net generation, wind, all sectors, annual",Annual Net Generation of Wind Energy in All Sectors,, -Annual_Generation_Electricity_Wind_ElectricPower,"Net generation, wind, electric power (total), annual",Annual Wind Electricity Generation,, -Annual_Generation_Electricity_Wind_ElectricUtilityNonCogen,"Net generation, wind, electric utility non-cogen, annual",Annual Net Generation of Wind in Electric Utility Non-Cogen,, -Annual_Generation_Electricity_Wind_IndependentPowerProducers,"Net generation, wind, independent power producers (total), annual",Total Annual Net Generation of Wind in Independent Power Producers,, -Annual_Generation_Electricity_Wind_MainActivityProducer,"Annual Generation of Electricity: From Wind, Main Activity Producer",Annual Generation Of Electricity From Wind,, -Annual_Generation_Energy_CombustibleFuel_MainActivityProducer,"Annual Generation of Energy: Combustible Fuel, Main Activity Producer",Annual Generation of Combustible Fuel,, -Annual_Generation_Energy_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,"Annual Generation of Energy: Combustible Fuel, Main Activity Producer Combined Heat Power Plants",Annual Generation of Energy by Combustible Fuel For Main Activity Producer Combined Heat Power Plants,, -Annual_Generation_Energy_FuelOil,Annual Generation of Energy: Fuel Oil,Annual Oil Generation,, -Annual_Generation_Energy_Geothermal,Annual Generation of Energy: Geothermal,Annual Generation of Geothermal Energy,, -Annual_Generation_Energy_Heat,Annual Generation of Energy: Heat,Annual Generation of Heat,, -Annual_Generation_Energy_Heat_AutoProducer,"Annual Generation of Energy: Heat, Auto Producer",Annual Generation of Heat Energy in Auto Producers,, -Annual_Generation_Energy_Heat_MainActivityProducer,"Annual Generation of Energy: Heat, Main Activity Producer",Annual Generation Of Heat From Main Activity Producer,, -Annual_Generation_Energy_HeatCombustibleFuels,Annual Generation of Energy: Heat Combustible Fuels,Annual Generation of Heat Combustible Fuels,, -Annual_Generation_Energy_NaturalGas,Annual Generation of Energy: Natural Gas,Annual Generation of Natural Gas,, -Annual_Generation_Energy_OilProducts,Annual Generation of Energy: Oil Products,Yearly Oil Products Energy Generation,, -Annual_Generation_Energy_Refinery,Annual Generation of Energy: Refinery,Annual Generation of Refinery Energy,, -Annual_Generation_Energy_Solar,Annual Generation of Energy: Solar,Annual Generation of Solar Energy,, -Annual_Generation_Energy_Water,Annual Generation of Energy: EIA_Water,Annual Generation of EIA Water,, -Annual_Generation_Fuel_AdditivesOxygenates,Annual Generation of Fuel: Additives Oxygenates,Annual Generation of Additives Oxygenates,, -Annual_Generation_Fuel_AnthraciteCoal,Annual Generation of Fuel: EIA_Anthracite Coal,Annual Generation of Anthracite Coal,, -Annual_Generation_Fuel_AviationGasoline,Annual Generation of Fuel: Aviation Gasoline,Annual Generation of Aviation Gasoline,, -Annual_Generation_Fuel_AviationGasoline_Refinery,"Annual Generation of Fuel: Aviation Gasoline, Refinery",Annual Generation Of Aviation Of Aviation Gasoline By Refineries,, -Annual_Generation_Fuel_Bagasse,Annual Generation of Fuel: Bagasse,Annual Generation of Bagasse,, -Annual_Generation_Fuel_BioDiesel,Annual Generation of Fuel: Bio Diesel,Annual Generation of Biodiesel,, -Annual_Generation_Fuel_BioGas,Annual Generation of Fuel: Bio Gas,Annual Generation of Biogas,, -Annual_Generation_Fuel_BioGasoline,Annual Generation of Fuel: Bio Gasoline,Annual Generation Of Bio Gasoline,, -Annual_Generation_Fuel_BituminousCoal,Annual Generation of Fuel: EIA_Bituminous Coal,Annual Generation of Bituminous Coal,, -Annual_Generation_Fuel_BituminousCoal_Refinery,"Annual Generation of Fuel: EIA_Bituminous Coal, Refinery",Annual Generation of Bituminous Coal in Refinery Industries,, -Annual_Generation_Fuel_BlastFurnaceGas,Annual Generation of Fuel: Blast Furnace Gas,Annual Generation of Blast Furnace Gas,, -Annual_Generation_Fuel_BrownCoal,Annual Generation of Fuel: Brown Coal,Annual Generation of Brown Coal,, -Annual_Generation_Fuel_Charcoal,Annual Generation of Fuel: Charcoal,Annual Generation of Charcoal,, -Annual_Generation_Fuel_CokeOvenCoke,Annual Generation of Fuel: Coke Oven Coke,Annual Generation of Oven Coke,, -Annual_Generation_Fuel_CokeOvenGas,Annual Generation of Fuel: Coke Oven Gas,Annual Generation Of Coke Oven Gas,, -Annual_Generation_Fuel_CokingCoal,Annual Generation of Fuel: Coking Coal,Annual Generation of Coking Coal,, -Annual_Generation_Fuel_DieselOil_Refinery,"Annual Generation of Fuel: Diesel Oil, Refinery",Annual Generation of Diesel Oil in Refinery Industries,, -Annual_Generation_Fuel_FuelOil,Annual Generation of Fuel: Fuel Oil,Annual Generation Of Fuel,, -Annual_Generation_Fuel_FuelOil_Refinery,"Annual Generation of Fuel: Fuel Oil, Refinery",Annual Generation of Fuel Oil in Refinery,, -Annual_Generation_Fuel_Fuelwood,Annual Generation of Fuel: Fuelwood,Annual Generation of Fuelwood,, -Annual_Generation_Fuel_HardCoal,Annual Generation of Fuel: Hard Coal,Annual Generation of Hard Coal,, -Annual_Generation_Fuel_Kerosene,Annual Generation of Fuel: EIA_Kerosene,Annual Generation of EIA Kerosene,, -Annual_Generation_Fuel_Kerosene_Refinery,"Annual Generation of Fuel: EIA_Kerosene, Refinery",Annual Generation of Kerosene From Refineries,, -Annual_Generation_Fuel_KeroseneJetFuel,Annual Generation of Fuel: Kerosene Jet Fuel,Annual Generation Of Kerosene Jet Fuel,, -Annual_Generation_Fuel_KeroseneJetFuel_Refinery,"Annual Generation of Fuel: Kerosene Jet Fuel, Refinery",Annual Generation of Kerosene Jet Fuel in Refinery,, -Annual_Generation_Fuel_LigniteCoal,Annual Generation of Fuel: Lignite Coal,Annual Generation of Electricity by Lignite Coal,, -Annual_Generation_Fuel_LiquifiedPetroleumGas,Annual Generation of Fuel: Liquefied Petroleum Gas,Annual Generation of Liquefied Petroleum Gas,, -Annual_Generation_Fuel_LiquifiedPetroleumGas_PetroleumPlants,"Annual Generation of Fuel: Liquefied Petroleum Gas, Petroleum Plants",Annual Generation of Liquefied Petroleum Gas By Petroleum Plants,, -Annual_Generation_Fuel_LiquifiedPetroleumGas_Refinery,"Annual Generation of Fuel: Liquefied Petroleum Gas, Refinery",Annual Net Generation of Liquefied Petroleum Gas in Refinery,, -Annual_Generation_Fuel_Lubricants,Annual Generation of Fuel: Lubricants,Annual Generation of Lubricants,, -Annual_Generation_Fuel_Lubricants_Refinery,"Annual Generation of Fuel: Lubricants, Refinery",Annual Generation of Fuel Lubricants Refineries,, -Annual_Generation_Fuel_MotorGasoline,Annual Generation of Fuel: Motor Gasoline,Annual Generation of Motor Gasoline,, -Annual_Generation_Fuel_MotorGasoline_Refinery,"Annual Generation of Fuel: Motor Gasoline, Refinery",Annual Generation of Motor Gasoline,, -Annual_Generation_Fuel_MunicipalWaste,Annual Generation of Fuel: Municipal Waste,Annual Generation of Municipal Waste,, -Annual_Generation_Fuel_Naphtha,Annual Generation of Fuel: Naphtha,Annual Generation of Naphtha,, -Annual_Generation_Fuel_Naphtha_Refinery,"Annual Generation of Fuel: Naphtha, Refinery",Annual Generation of Naphtha In Refinery,, -Annual_Generation_Fuel_NaturalGas,Annual Generation of Fuel: Natural Gas,Annual Generation of Natural Gases,, -Annual_Generation_Fuel_NaturalGasLiquids,Annual Generation of Fuel: Natural Gas Liquids,Annual Generation of Natural Gas Liquids,, -Annual_Generation_Fuel_OtherBituminousCoal,Annual Generation of Fuel: UN_Other Bituminous Coal,Annual Generation of Bituminous Coal,, -Annual_Generation_Fuel_OtherOilProducts,Annual Generation of Fuel: UN_Other Oil Products,Annual Generation of Other Oil Products,, -Annual_Generation_Fuel_OtherOilProducts_Refinery,"Annual Generation of Fuel: UN_Other Oil Products, Refinery",Annual Generation Of Other Oil Products By Refinery Industries,, -Annual_Generation_Fuel_ParaffinWaxes,Annual Generation of Fuel: Paraffin Waxes,Annual Generation Of Paraffin Waxes,, -Annual_Generation_Fuel_ParaffinWaxes_Refinery,"Annual Generation of Fuel: Paraffin Waxes, Refinery",Annual Generation of Paraffin Waxes Refinery;Annual Generation of Refinery Paraffin Waxes,, -Annual_Generation_Fuel_PetroleumCoke,Annual Generation of Fuel: Petroleum Coke,Annual Generation of Petroleum Coke,, -Annual_Generation_Fuel_PetroleumCoke_Refinery,"Annual Generation of Fuel: Petroleum Coke, Refinery",Annual Generation of Petroleum Coke From Refineries,, -Annual_Generation_Fuel_RefineryFeedstocks,Annual Generation of Fuel: Refinery Feedstocks,Annual Generation of Refinery Feedstocks,, -Annual_Generation_Fuel_RefineryGas,Annual Generation of Fuel: Refinery Gas,Annual Generation of Refinery Gas,, -Annual_Generation_Fuel_RefineryGas_Refinery,"Annual Generation of Fuel: Refinery Gas, Refinery",Annual Generation of Refinery Gas,, -Annual_Generation_Fuel_VegetalWaste,Annual Generation of Fuel: Vegetal Waste,Annual Generation of Vegetal Waste,, -Annual_Generation_Fuel_WhiteSpirit,Annual Generation of Fuel: White Spirit,Annual Generation of White Spirit,, -Annual_Generation_Fuel_WhiteSpirit_Refinery,"Annual Generation of Fuel: White Spirit, Refinery",Annual Generation of White Spirit in Refinery,, -Annual_Imports_Electricity,Annual Imports of Electricity,Annual Imports of Electricity,, -Annual_Imports_Fuel_AnthraciteCoal,Annual Imports of Fuel: EIA_Anthracite Coal,Annual Imports of Anthracite Coal,, -Annual_Imports_Fuel_AviationGasoline,Annual Imports of Fuel: Aviation Gasoline,Annual Imports of Aviation Gasoline,, -Annual_Imports_Fuel_BituminousCoal,Annual Imports of Fuel: EIA_Bituminous Coal,Annual Imports of Bituminous Coal,, -Annual_Imports_Fuel_BrownCoal,Annual Imports of Fuel: Brown Coal,Annual Imports of Brown Coal,, -Annual_Imports_Fuel_Charcoal,Annual Imports of Fuel: Charcoal,Annual Imports of Charcoal,, -Annual_Imports_Fuel_CokeOvenCoke,Annual Imports of Fuel: Coke Oven Coke,Annual Imports of Coke Oven Coke,, -Annual_Imports_Fuel_CokingCoal,Annual Imports of Fuel: Coking Coal,Annual Coking Coal Imports,, -Annual_Imports_Fuel_CrudeOil,Annual Imports of Fuel: Crude Oil,Yearly Crude Oil Imports,, -Annual_Imports_Fuel_DieselOil,Annual Imports of Fuel: Diesel Oil,Annual Imports of Diesel Oil,, -Annual_Imports_Fuel_FuelOil,Annual Imports of Fuel: Fuel Oil,Annual Imports of Fuel Oil,, -Annual_Imports_Fuel_Fuelwood,Annual Imports of Fuel: Fuelwood,Annual Imports of Fuelwood,, -Annual_Imports_Fuel_HardCoal,Annual Imports of Fuel: Hard Coal,Annual Imports of Hard Coal,, -Annual_Imports_Fuel_Kerosene,Annual Imports of Fuel: EIA_Kerosene,Annual Imports Of Kerosene,, -Annual_Imports_Fuel_KeroseneJetFuel,Annual Imports of Fuel: Kerosene Jet Fuel,Annual Imports of Kerosene Jet Fuel,, -Annual_Imports_Fuel_LiquifiedPetroleumGas,Annual Imports of Fuel: Liquefied Petroleum Gas,Annual Imports of Liquified Petroleum Gas,, -Annual_Imports_Fuel_Lubricants,Annual Imports of Fuel: Lubricants,Annual Imports of Lubricants,, -Annual_Imports_Fuel_MotorGasoline,Annual Imports of Fuel: Motor Gasoline,Annual Exports of Motor Gasoline,, -Annual_Imports_Fuel_Naphtha,Annual Imports of Fuel: Naphtha,Annual Imports of Naphtha,, -Annual_Imports_Fuel_NaturalGas,Annual Imports of Fuel: Natural Gas,Annual Imports Of Natural Gas,, -Annual_Imports_Fuel_OtherBituminousCoal,Annual Imports of Fuel: UN_Other Bituminous Coal,Annual Imports of Other UN Bituminous Coal,, -Annual_Imports_Fuel_OtherOilProducts,Annual Imports of Fuel: UN_Other Oil Products,Annual Imports of Other Oil Products,, -Annual_Imports_Fuel_ParaffinWaxes,Annual Imports of Fuel: Paraffin Waxes,Annual Imports Of Paraffin Waxes,, -Annual_Imports_Fuel_PetroleumCoke,Annual Imports of Fuel: Petroleum Coke,Annual Income of Petroleum Coke Fuel,, -Annual_Imports_Fuel_WhiteSpirit,Annual Imports of Fuel: White Spirit,Annual Imports of White Spirit,, -Annual_Loss_Electricity,Annual Loss of Electricity,Annual Loss of Electricity,, -Annual_Loss_Energy_Heat,Annual Loss of Energy: Heat,Annual Loss of Heat,, -Annual_Loss_Fuel_NaturalGas,Annual Loss of Fuel: Natural Gas,Annual Loss Of Natural Gas,, -Annual_Loss_Fuel_NaturalGas_GasLostFlaredAndVented,"Annual Loss of Fuel: Natural Gas, Gas Lost Flared And Vented","Annual Loss of Natural Gas, Lost Flared and Vented",, -Annual_ProductReclassification_Fuel_DieselOil,Annual Product Reclassification of Fuel: Diesel Oil,Annual Product Reclassification of Diesel Oil,, -Annual_ProductReclassification_Fuel_FuelOil,Annual Product Reclassification of Fuel: Fuel Oil,Annual Product Reclassification of Fuel Oil,, -Annual_ProductReclassification_Fuel_Kerosene,Annual Product Reclassification of Fuel: EIA_Kerosene,Annual Product Reclassification of Kerosene,, -Annual_ProductReclassification_Fuel_KeroseneJetFuel,Annual Product Reclassification of Fuel: Kerosene Jet Fuel,Annual Product Reclassification Of Kerosene Jet Fuel,, -Annual_ProductReclassification_Fuel_MotorGasoline,Annual Product Reclassification of Fuel: Motor Gasoline,Annual Product Reclassification of Motor Gasoline,, -Annual_ProductReclassification_Fuel_OtherOilProducts,Annual Product Reclassification of Fuel: UN_Other Oil Products,Annual Product Reclassification of Other Oil Products,, -Annual_ProductReclassification_Fuel_RefineryFeedstocks,Annual Product Reclassification of Fuel: Refinery Feedstocks,Annual Reclassification of Refinery Feedstocks,, -Annual_Receipt_Fuel_ForElectricityGeneration_BituminousCoal,"Receipts of fossil fuels by electricity plants (Btu), bituminous coal, all sectors, annual",Annual Receipts of Bituminous Coal by Electricity Plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_Coal,"Receipts of fossil fuels by electricity plants (Btu), coal, all sectors, annual",Annual Receipts of Coal For Electricity Generation in All Sectors,, -Annual_Receipt_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Receipts of fossil fuels by electricity plants, coal, electric power (total), annual",Annual Receipts of Coal For Electricity Generation by Electric Power,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas,"Receipts of fossil fuels by electricity plants (Btu), natural gas, all sectors, annual",Annual Receipts of Natural Gas in All Sectors,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"Receipts of fossil fuels by electricity plants (Btu), natural gas, electric power (total), annual",Annual Receipts of Natural Gas in Electric Power,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,"Receipts of fossil fuels by electricity plants (Btu), natural gas, electric utility, annual",Annual Receipts of Natural Gas in Electricity Plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,"Receipts of fossil fuels by electricity plants (Btu), natural gas, electric utility non-cogen, annual",Annual Receipts of Natural Gas by electricity plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,"Receipts of fossil fuels by electricity plants (Btu), natural gas, independent power producers (total), annual",Annual Receipts Of Natural Gas in Independent Power Producers,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_Industrial,"Receipts of fossil fuels by electricity plants (Btu), natural gas, all industrial (total), annual",Annual Receipts of Natural gas in All Industrial,, -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,"Receipts of fossil fuels by electricity plants (Btu), natural gas, industrial cogen, annual",Annual Receipts of Natural Gas by Electricity Plants in Industrial Cogen,, -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids,"Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, all sectors, annual",Annual Receipts of Petroleum Liquids by Electricity Plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, electric power (total), annual",Total Annual Receipts of petroleum liquids by electricity plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, electric utility, annual",Annual Receipts Of Petroleum Liquids In Electricity Plants,, -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal,"Receipts of fossil fuels by electricity plants (Btu), subbituminous coal, all sectors, annual",Annual Receipts Of Sub Bituminous Coal For Electricity Generation,, -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Receipts of fossil fuels by electricity plants (Btu), subbituminous coal, electric power (total), annual",Annual Receipts of Sub-bituminous Coal in Electricity Power Plants,, -Annual_Reserves_Fuel_BrownCoal,Annual Reserves of Fuel: Brown Coal,Annual Reserves Of Brown Coal,, -Annual_Reserves_Fuel_BrownCoal_EnergyAdditionalResources,"Annual Reserves of Fuel: Brown Coal, Energy Additional Resources",Annual Reserves of Brown Coal For Energy Additional Resources,, -Annual_Reserves_Fuel_BrownCoal_EnergyKnownReserves,"Annual Reserves of Fuel: Brown Coal, Energy Known Reserves",Annual Reserves of Brown Coal in Energy Known Reserves,, -Annual_Reserves_Fuel_BrownCoal_EnergyRecoverableReserves,"Annual Reserves of Fuel: Brown Coal, Energy Recoverable Reserves",Annual Reserves Of Brown Coal in Energy Recoverable Reserves,, -Annual_Reserves_Fuel_CrudeOil,Annual Reserves of Fuel: Crude Oil,Annual Reserves of Crude Oil,, -Annual_Reserves_Fuel_FallingWater_HydraulicResources,"Annual Reserves of Fuel: Falling Water, Hydraulic Resources",Annual Reserves of Hydraulic Resources in Falling Water,, -Annual_Reserves_Fuel_HardCoal,Annual Reserves of Fuel: Hard Coal,Annual Reserves of Hard Coal,, -Annual_Reserves_Fuel_HardCoal_EnergyAdditionalResources,"Annual Reserves of Fuel: Hard Coal, Energy Additional Resources",Annual Reserves Of Hard Coal As Energy Additional Resources,, -Annual_Reserves_Fuel_HardCoal_EnergyKnownReserves,"Annual Reserves of Fuel: Hard Coal, Energy Known Reserves",Annual Reserves of Hard Coal in Energy Known Reserves,, -Annual_Reserves_Fuel_HardCoal_EnergyRecoverableReserves,"Annual Reserves of Fuel: Hard Coal, Energy Recoverable Reserves",Annual Reserves Of Hard Coal Energy,, -Annual_Reserves_Fuel_NaturalGas,Annual Reserves of Fuel: Natural Gas,Annual Reservations Of Natural Gas,, -Annual_Reserves_Fuel_OilShaleAndTarSands_CrudeOil,"Annual Reserves of Fuel: Oil Shale And Tar Sands, Crude Oil",Annual Reserves of Crude Oil in Oil Shale And Tar Sands,, -Annual_Reserves_Fuel_Uranium_EnergyReservesAssured,"Annual Reserves of Fuel: Uranium, Energy Reserves Assured",Annual Reserves of Uranium,, -Annual_RetailSales_Electricity,"Retail sales of electricity, all sectors, annual",Annual Retail Sales of Electricity in All Sectors,, -Annual_RetailSales_Electricity_Commercial,"Retail sales of electricity, commercial, annual",Annual Retail Sales of Electricity in Commercial,, -Annual_RetailSales_Electricity_Industrial,"Retail sales of electricity, industrial, annual",Annual Retail Sales of Industrial Electricity,, -Annual_RetailSales_Electricity_OtherSector,"Retail sales of electricity, other, annual",Annual Retail Sales Of Electricity,, -Annual_RetailSales_Electricity_Residential,"Retail sales of electricity, residential, annual",Annual Retail Sales Of Electricity In Residential Industries,, -Annual_SalesRevenue_Electricity,"Revenue from retail sales of electricity, all sectors, annual",Annual Revenue From Retail Sales of Electricity,, -Annual_SalesRevenue_Electricity_Commercial,"Revenue from retail sales of electricity, commercial, annual",Annual Revenue From Retail Sales of Electricity,, -Annual_SalesRevenue_Electricity_Industrial,"Revenue from retail sales of electricity, industrial, annual",Annual Revenue from Retail Sales of Electricity in Industrial,, -Annual_SalesRevenue_Electricity_OtherSector,"Revenue from retail sales of electricity, other, annual",Annual Revenue From Retail Sales of Electricity For Other Sectors Consumption,, -Annual_SalesRevenue_Electricity_Residential,"Revenue from retail sales of electricity, residential, annual",Annual Revenue From Retail Sales Of Electricity For Residential Consumption,, -Annual_Stock_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Fossil-fuel stocks for electricity generation, coal, electric power (total), annual",Annual Fossil Coal in Electric Power,, -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Fossil-fuel stocks for electricity generation, petroleum liquids, electric power (total), annual",Total Annual Petroleum Liquids Stocks For Electricity Generation,, -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Fossil-fuel stocks for electricity generation, petroleum liquids, electric utility, annual",Annual Fossil-Fuel Stocks of Petroleum Liquids in Electric Utility,, -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,"Fossil-fuel stocks for electricity generation, petroleum liquids, independent power producers, annual",Annual Consumption of Petroleum Liquids For Electricity Generation in Independent Power Producers,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_BituminousCoal,"Quality of fossil fuels in electricity generation, sulfur content, bituminous coal, all sectors, annual",Annual Sulfur Content In Bituminous Coal For Electricity Generation,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal,"Quality of fossil fuels in electricity generation, sulfur content, coal, all sectors, annual",Annual Quality of Sulfur Content In Coal,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Quality of fossil fuels in electricity generation, sulfur content, coal, electric power (total), annual",Annual Quality of Fossil Fuels in Electricity Generation,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids,"Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, all sectors, annual",Annual Quality of Petroleum Liquids in All Sectors,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, electric power (total), annual",Total Annual Quality of Petroleum Liquids in Electricity Generation,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, electric utility, annual",Annual Sulfur Content of Petroleum Liquids For Electricity Generation in Electric Utility,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal,"Quality of fossil fuels in electricity generation, sulfur content, subbituminous coal, all sectors, annual",Annual Sulfur Content In Subbituminous Coal For Electricity Generation,, -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Quality of fossil fuels in electricity generation, sulfur content, subbituminous coal, electric power (total), annual",Total Annual Quality of Subbituminous Coal in Electricity Generation in Electric Power,, -AnnualChange_Stocks_Fuel_AviationGasoline,Stocks of Fuel (Annual Change): Aviation Gasoline,Stocks of Aviation Gasoline,, -AnnualChange_Stocks_Fuel_BituminousCoal,Stocks of Fuel (Annual Change): EIA_Bituminous Coal,Stocks of Bituminous Coal,, -AnnualChange_Stocks_Fuel_BrownCoal,Stocks of Fuel (Annual Change): Brown Coal,Annual Brown Coal Stocks Change,, -AnnualChange_Stocks_Fuel_CokeOvenCoke,Stocks of Fuel (Annual Change): Coke Oven Coke,Annual Change Stocks of Coke Oven Coke,, -AnnualChange_Stocks_Fuel_CrudeOil,Stocks of Fuel (Annual Change): Crude Oil,Annual Stocks Of Crude Oil,, -AnnualChange_Stocks_Fuel_DieselOil,Stocks of Fuel (Annual Change): Diesel Oil,Annual Stocks Of Diesel Oil,, -AnnualChange_Stocks_Fuel_FuelOil,Stocks of Fuel (Annual Change): Fuel Oil,Annual Change of Fuel Oil,, -AnnualChange_Stocks_Fuel_HardCoal,Stocks of Fuel (Annual Change): Hard Coal,Stocks of Hard Coals,, -AnnualChange_Stocks_Fuel_Kerosene,Stocks of Fuel (Annual Change): EIA_Kerosene,Annual Stocks Change of Kerosene,, -AnnualChange_Stocks_Fuel_KeroseneJetFuel,Stocks of Fuel (Annual Change): Kerosene Jet Fuel,Annual Stocks of Kerosene Jet Fuel,, -AnnualChange_Stocks_Fuel_LiquifiedPetroleumGas,Stocks of Fuel (Annual Change): Liquefied Petroleum Gas,Annual Stocks Of Liquefied Petroleum Gas,, -AnnualChange_Stocks_Fuel_Lubricants,Stocks of Fuel (Annual Change): Lubricants,Annual Stock Annual Lubricants,, -AnnualChange_Stocks_Fuel_MotorGasoline,Stocks of Fuel (Annual Change): Motor Gasoline,Stocks of Motor Gasoline,, -AnnualChange_Stocks_Fuel_Naphtha,Stocks of Fuel (Annual Change): Naphtha,Stocks Of Naphtha,, -AnnualChange_Stocks_Fuel_NaturalGas,Stocks of Fuel (Annual Change): Natural Gas,Annual Stocks Of Natural Gas,, -AnnualChange_Stocks_Fuel_OtherBituminousCoal,Stocks of Fuel (Annual Change): UN_Other Bituminous Coal,Annual Change Stocks In Other Bituminous Coal Industries,, -AnnualChange_Stocks_Fuel_OtherOilProducts,Stocks of Fuel (Annual Change): UN_Other Oil Products,Stocks of Other Oil Products,, -AnnualChange_Stocks_Fuel_PetroleumCoke,Stocks of Fuel (Annual Change): Petroleum Coke,Annual Stock of Petroleum Coke,, -Area_Farm_Forage,Area of Farm: Forage,Forage Farm Area,, -Area_Farm_OtherSpringWheatForGrain,Area of Farm: Other Spring Wheat for Grain,Other Spring Wheat for Grain Area,, -Area_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,"Area of Farm: Primary Producer, American Indian or Alaska Native Alone",Area of Farms with American Indians or Alaska Natives Primary Producers,, -Area_Farm_PrimaryProducer_AsianAlone,"Area of Farm: Primary Producer, Asian Alone",Asian Primary Producers,, -Area_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,"Area of Farm: Primary Producer, Black or African American Alone",African Americans Primary Producers,, -Area_Farm_PrimaryProducer_HispanicOrLatino,"Area of Farm: Primary Producer, Hispanic or Latino",Hispanic Primary Farm Producers,, -Area_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,"Area of Farm: Primary Producer, Native Hawaiian or Other Pacific Islander Alone",Area Of Native Hawaiian or Other Pacific Islander Primary Farm Producer,, -Area_Farm_PrimaryProducer_TwoOrMoreRaces,"Area of Farm: Primary Producer, Two or More Races",Area Of Multiracial Primary Farm,, -Area_Farm_PrimaryProducer_WhiteAlone,"Area of Farm: Primary Producer, White Alone",Total Area of White Primary Producer Farms,, -Area_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,"Area of Farm: Producer, American Indian or Alaska Native Alone",American Indian or Alaska Native Producer in Farm,, -Area_Farm_Producer_AsianAlone,"Area of Farm: Producer, Asian Alone",Area Of Farms With Asian Producers,, -Area_Farm_Producer_BlackOrAfricanAmericanAlone,"Area of Farm: Producer, Black or African American Alone",African American Producers,, -Area_Farm_Producer_HispanicOrLatino,"Area of Farm: Producer, Hispanic or Latino",Area of Farm For Hispanic Producers,, -Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"Area of Farm: Producer, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Farm Producers,, -Area_Farm_Producer_TwoOrMoreRaces,"Area of Farm: Producer, Two or More Races",Multiracial Farm Producers,, -Area_Farm_Producer_WhiteAlone,"Area of Farm: Producer, White Alone",Area of Farms Owned By White Producers;White Population Area of Farm Producers,, -Area_Farm_SorghumForSilageOrGreenchop,Area of Farm: Sorghum for Silage or Greenchop,Total Area of Sorghum For Silage Farms,, -Area_FireEvent,Area of Fire Event,Total Area of Fire Events,, -Area_FloodEvent,Area of Flood Event,Total Area of Flood Events,, -Area_WetBulbTemperatureEvent,Area of Wet Bulb Temperature Event,,, -Area_WildlandFireEvent,Area of Wildland Fire Event,Total Area of Wildland Fire Events,, -AtmosphericPressure_SurfaceLevel,Atmospheric Pressure: Surface Level,Surface Level of Atmospheric Pressure,, -BurnedArea_FireEvent,Total area that burned (Acres),Total Area That burned,, -BurnedArea_FireEvent_Forest,Area of forest that burned (Acres),Total Area of Forest That burned,, -Concentration_AirPollutant_SmokePM25,Concentration of Smoke PM2.5,Concentration of Smoke PM2.5 Pollutant,, -Count_BirthEvent,Count of Birth Event,Birth Events,, -Count_BirthEvent_AsAFractionOfCount_Person,Count of Birth Event (Per Capita),Birth Event Per Capita,, -Count_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Count of live births where mothers Education is 9 Th To12 Th Grade No Diploma,Live Births of Mothers With 9th to 12th Grade Education,, -Count_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Count of live births where mothers Race is American Indian Or Alaska Native Alone,Live Births Where Mothers Race is American Indian Or Alaska Native,, -Count_BirthEvent_LiveBirth_MotherAsianIndian,Count of live births where mothers Race is Asian Indian,Live Births For Asian Indian Mothers,, -Count_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Count of live births where mothers Race is Asian Or Pacific Islander,Live Births of Asian Or Pacific Islander Mothers,, -Count_BirthEvent_LiveBirth_MotherAssociatesDegree,Count of live births where mothers Education is Associates Degree,Live Births of Mothers With Associate's Degrees,, -Count_BirthEvent_LiveBirth_MotherBachelorsDegree,Count of live births where mothers Education is Bachelors Degree,Live Births of Mothers with a Bachelor's Degree,, -Count_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Count of live births where mothers Race is Black Or African American Alone,African American Mothers Live Births,, -Count_BirthEvent_LiveBirth_MotherChinese,Count of live births where mothers Race is Chinese,Live Births Among Chinese Mothers,, -Count_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Count of live births where mothers Education is Doctorate Degree& Professional School Degree,Live Births Among Mothers with Doctorate Degrees And Professional School Degrees,, -Count_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Count of live births where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Live Births Among Mothers With Unknown Educational Attainment,, -Count_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Count of live births where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Live Births Among Mothers Of Unstated Ethnicity,, -Count_BirthEvent_LiveBirth_MotherFilipino,Count of live births where mothers Race is Filipino,Births By Filipino Mothers,, -Count_BirthEvent_LiveBirth_MotherForeignBorn,Count of live births where mothers Nativity is USC_ Foreign Born,Live Births of Foreign-Born Mothers,, -Count_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Count of live births where mothers Race is Guamanian Or Chamorro,Number of Chamorro Live Births For Mothers,, -Count_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Count of live births where mothers Education is High School Graduate Ged Or Alternative,Live Births of Mothers with a High School Graduate Ged,, -Count_BirthEvent_LiveBirth_MotherHispanicOrLatino,Count of live births where mothers Ethnicity is Hispanic Or Latino,Live Births for Hispanic Mothers,, -Count_BirthEvent_LiveBirth_MotherJapanese,Count of live births where mothers Race is Japanese,Live Births For Japanese Mothers,, -Count_BirthEvent_LiveBirth_MotherKorean,Count of live births where mothers Race is Korean,Live Births of Korean Mothers,, -Count_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Count of live births where mothers Education is Less Than9 Th Grade,Live Births For Mothers Whose Education is Less Than 9th Grade,, -Count_BirthEvent_LiveBirth_MotherMastersDegree,Count of live births where mothers Education is Masters Degree,Live Births of Mothers with Masters Degree,, -Count_BirthEvent_LiveBirth_MotherNative,Count of live births where mothers Nativity is USC_ Native,Live Births For USC Mothers,, -Count_BirthEvent_LiveBirth_MotherNativeHawaiian,Count of live births where mothers Race is Native Hawaiian,Live Births of Native Hawaiian Mothers,, -Count_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Count of live births where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Births By Mothers Of Unknown Nativity,, -Count_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Count of live births where mothers Ethnicity is Not Hispanic Or Latino,Live Births of Non-Hispanic Mothers,, -Count_BirthEvent_LiveBirth_MotherNowMarried,Count of live births where mothers Marital Status is Now Married,Live Births By Married Mothers,, -Count_BirthEvent_LiveBirth_MotherOtherAsian,Count of live births where mothers Race is Other Asian,Live Births Among Asian Mothers,, -Count_BirthEvent_LiveBirth_MotherOtherPacificIslander,Count of live births where mothers Race is Other Pacific Islander,Live Births of Other Pacific Islander Mothers,, -Count_BirthEvent_LiveBirth_MotherSamoan,Count of live births where mothers Race is Samoan,Live Births By Samoan Mothers,, -Count_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Count of live births where mothers Education is Some College No Degree,Live Births of Mothers with Some College Education Without Degrees,, -Count_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Count of live births where mothers Race is Two Or More Races,Number of Multiracial Live Births Among Multiracial Mothers,, -Count_BirthEvent_LiveBirth_MotherUnmarried,Count of live births where mothers Marital Status is Unmarried,Live Births of Unmarried Mothers,, -Count_BirthEvent_LiveBirth_MotherVietnamese,Count of live births where mothers Race is Vietnamese,Live Births By Vietnamese Mothers,, -Count_BirthEvent_LiveBirth_MotherWhiteAlone,Count of live births where mothers Race is White Alone,Live Births of White Mothers,, -Count_BlizzardEvent,Count of Blizzard Event,Blizzard Events,, -Count_ColdTemperatureEvent,Count of Cold Temperature Event,Cold Temperature Events,, -Count_ColdWindChillEvent,Count of Cold Wind Chill Event,Cold Wind Chill Events,, -Count_CycloneEvent_ExtratropicalCyclone,Count of Cyclone Event: Extratropical Cyclone,Extratropical Cyclone Events,, -Count_CycloneEvent_SubtropicalStorm,Count of Cyclone Event: Subtropical Storm,Subtropical Storm Events,, -Count_CycloneEvent_TropicalDisturbance,Count of Cyclone Event: Tropical Disturbance,Tropical Disturbance Events,, -Count_CycloneEvent_TropicalStorm,Count of Cyclone Event: Tropical Storm,Tropical Storm Events,, -Count_Death_15To24Years_MentalBehaviouralDisorders,"Count of Mortality Event: 15 - 24 Years, F01-F99 (Mental And Behavioural Disorders)",,, -Count_Death_15To24Years_Neoplasms,"Count of Mortality Event: 15 - 24 Years, C00-D48 (Neoplasms)",,, -Count_Death_1To4Years_Neoplasms,"Count of Mortality Event: 1 - 4 Years, C00-D48 (Neoplasms)",Deaths Of Population Aged 1 to 4 Years Due to Neoplasms,, -Count_Death_25To34Years_MentalBehaviouralDisorders,"Count of Mortality Event: 25 - 34 Years, F01-F99 (Mental And Behavioural Disorders)",Deaths in Population Aged 25 to 34 Years Caused by Mental And Behavioural Disorders,, -Count_Death_25To34Years_Neoplasms,"Count of Mortality Event: 25 - 34 Years, C00-D48 (Neoplasms)",Deaths of Population Aged 25 to 34 Years Caused By Neoplasms,, -Count_Death_35To44Years_MentalBehaviouralDisorders,"Count of Mortality Event: 35 - 44 Years, F01-F99 (Mental And Behavioural Disorders)",Deaths of Population Aged 35 to 44 Years Caused By Mental And Behavioural Disorders,, -Count_Death_35To44Years_Neoplasms,"Count of Mortality Event: 35 - 44 Years, C00-D48 (Neoplasms)",Deaths Of Population Aged 35 to 44 Years Due to Neoplasms,, -Count_Death_45To54Years_MentalBehaviouralDisorders,"Count of Mortality Event: 45 - 54 Years, F01-F99 (Mental And Behavioural Disorders)",Deaths of Population Aged 45 to 54 Years From Mental And Behavioural Disorders,, -Count_Death_45To54Years_Neoplasms,"Count of Mortality Event: 45 - 54 Years, C00-D48 (Neoplasms)",Deaths Of Population Aged 45 to 54 Years Caused By Neoplasms,, -Count_Death_55To64Years_MentalBehaviouralDisorders,"Count of Mortality Event: 55 - 64 Years, F01-F99 (Mental And Behavioural Disorders)",Deaths Of People Aged 65 to 64 Years Caused by Mental and Behavioural Disorders,, -Count_Death_55To64Years_Neoplasms,"Count of Mortality Event: 55 - 64 Years, C00-D48 (Neoplasms)",,, -Count_Death_5To14Years_Neoplasms,"Count of Mortality Event: 5 - 14 Years, C00-D48 (Neoplasms)",Deaths of Population Aged 5 to 14 Years Caused By Neoplasm,, -Count_Death_65To74Years_MentalBehaviouralDisorders,"Count of Mortality Event: 65 - 74 Years, F01-F99 (Mental And Behavioural Disorders)",Death Of Population Aged 65 to 74 Years Caused By The Mental And Behavioural Disorders,, -Count_Death_65To74Years_Neoplasms,"Count of Mortality Event: 65 - 74 Years, C00-D48 (Neoplasms)",Deaths Aged 65 to 74 Years Caused By Neoplasms,, -Count_Death_75To84Years_MentalBehaviouralDisorders,"Count of Mortality Event: 75 - 84 Years, F01-F99 (Mental And Behavioural Disorders)",Deaths of Population Aged 75 to 84 Caused by Mental and Behavioural Disorders,, -Count_Death_75To84Years_Neoplasms,"Count of Mortality Event: 75 - 84 Years, C00-D48 (Neoplasms)",Deaths Aged 75 to 84 Years Caused by Neoplasms,, -Count_Death_85Years_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,"Count of Mortality Event: Years 85, D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female",Female Deaths Aged 85 Years Caused By Diseases Of The Blood And Blood-Forming Organs And Certain Disorders Involving The Immune Mechanism,, -Count_Death_85Years_DiseasesOfTheNervousSystem_AsianOrPacificIslander,"Count of Mortality Event: Years 85, G00-G98 (Diseases of The Nervous System), Asian or Pacific Islander",Deaths Of Asian or Pacific Islander Population Aged 85 Years Caused By The Nervous System Diseases,, -Count_Death_85Years_DiseasesOfTheSkinSubcutaneousTissue,"Count of Mortality Event: Years 85, L00-L98 (Diseases of The Skin And Subcutaneous Tissue)",Deaths Aged 85 Years Caused Skin And Subcutaneous Tissue Diseases,, -Count_Death_85Years_MentalBehaviouralDisorders,"Count of Mortality Event: Years 85, F01-F99 (Mental And Behavioural Disorders)",Deaths in Population Aged 85 Years Caused by Mental and Behavioural Disorders,, -Count_Death_85Years_MentalBehaviouralDisorders_AsianOrPacificIslander,"Count of Mortality Event: Years 85, F01-F99 (Mental And Behavioural Disorders), Asian or Pacific Islander",Deaths in Asian or Pacific Islander Population Aged 85 Years Caused by Mental And Behavioural Disorders,, -Count_Death_85Years_Neoplasms,"Count of Mortality Event: Years 85, C00-D48 (Neoplasms)",Deaths For Population Aged 85 Years Old Caused by Neoplasms,, -Count_Death_AbnormalNotClassfied,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified)",Abnormal Deaths,, -Count_Death_AbnormalNotClassfied_BlackOrAfricanAmerican,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Black or African American","Deaths of African American Population Caused by Symptoms, Signs, Abnormal Clinical and Laboratory Findings",, -Count_Death_AbnormalNotClassfied_Female,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Female","Deaths Of Female Population Caused by Unclassified Symptoms, Signs, And Abnormal Clinical And Laboratory Findings",, -Count_Death_AbnormalNotClassfied_Male,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Male",Abnormal Deaths of Male Population,, -Count_Death_AbnormalNotClassfied_White,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), White","Deaths of White Population Caused by Unclassified Symptoms, Signs, Abnormal Clinical and Laboratory Findings",, -Count_Death_AgeAdjusted_AsAFractionOf_Count_Person,Count of Mortality Event (Age Adjusted) (Per Capita),Deaths of Adjusted Age,, -Count_Death_AmericanIndianAndAlaskaNativeAlone,Count of Mortality Event: American Indian And Alaska Native Alone,American Indian And Alaska Native Population Deaths,, -Count_Death_AsianOrPacificIslander,Count of Mortality Event: Asian or Pacific Islander,Asian Or Pacific Islander Population Deaths,, -Count_Death_BlackOrAfricanAmerican,Count of Mortality Event: Black or African American,African American Population Deaths,, -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod,Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period),Deaths Caused by Certain Conditions Originating In Perinatal Period,, -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Black or African American",Deaths of African Americans Caused by Certain Conditions Originating in The Perinatal Period,, -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Female,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Female",Deaths of Female Population Due to Certain Conditions Originating in The Perinatal Period,, -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Male,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Male",Deaths Of Male Population Caused By Certain Perinatal Conditions,, -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_White,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), White",White Population Deaths Caused By Certain Conditions Originating in The Perinatal Period,, -Count_Death_CertainInfectiousParasiticDiseases,Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases),Deaths Caused by Certain Infectious Parasitic Diseases,, -Count_Death_CertainInfectiousParasiticDiseases_AsianOrPacificIslander,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Asian or Pacific Islander",Asian Or Pacific Islander Deaths Due To Certain Infectious And Parasitic Diseases,, -Count_Death_CertainInfectiousParasiticDiseases_BlackOrAfricanAmerican,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Black or African American",African American Deaths CAused By Certain Infectious And Parasitic Diseases,, -Count_Death_CertainInfectiousParasiticDiseases_Female,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Female",Deaths Of Female Population Caused By Certain Infectious And Parasitic Diseases,, -Count_Death_CertainInfectiousParasiticDiseases_Male,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Male",Male Population Deaths From Certain Infectious And Parasitic Diseases,, -Count_Death_CertainInfectiousParasiticDiseases_White,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), White",Death of White Population Caused by Certain Infectious And Parasitic Diseases,, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities)",Deaths Caused by Congenital Malformations Deformations Chromosomal Abnormalities,, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Black or African American","Deaths of African American Population Caused by Congenital Malformations, Deformations and Chromosomal Abnormalities",, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female",Deaths of Female Population Caused by Congenital Malformations Deformations And Chromosomal Abnormalities,, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female, White","White Female Deaths Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities",, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male","Deaths of Male Population Caused By Congenital Malformations, Deformations And Chromosomal Abnormalities",, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male, White","Deaths of White Male Population Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities",, -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), White",Deaths of White Population Caused By Congenital Malformations Deformations And Chromosomal Abnormalities,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders,Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism),Deaths Caused by Diseases Of Blood And Blood Forming Organs And Immune Disorders,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_BlackOrAfricanAmerican,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Black or African American",African Americans Deaths Caused by Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female",Deaths in Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism;Deaths of Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female_BlackOrAfricanAmerican,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female, Black or African American",Deaths Of African American Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Male",Deaths of Male Population Caused by Diseases of the Blood and Blood-forming Organs and Certain Disorders Involving the Immune Mechanism,, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male_White,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Male, White","White Male Deaths Caused by Diseases of the Blood, Blood-Forming Organs, and Certain Disorders Involving The Immune Mechanism",, -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_White,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), White",Deaths Of White Population Caused By The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), American Indian And Alaska Native Alone",Deaths Of American Indian And Alaska Native Population Due To The Circulatory System Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_AsianOrPacificIslander,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Asian or Pacific Islander",Deaths of Asian or Pacific Islanders From Circulatory System Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_BlackOrAfricanAmerican,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Black or African American",Deaths of African Americans Caused by Circulatory System Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_Female,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Female",Female Deaths Caused by Circulatory System Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_Male,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Male",Male Deaths Caused By Circulatory System Diseases,, -Count_Death_DiseasesOfTheCirculatorySystem_White,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), White",Deaths of White Population Caused By Circulatory Diseases,, -Count_Death_DiseasesOfTheDigestiveSystem,Count of Mortality Event: K00-K92 (Diseases of The Digestive System),Deaths Caused by Digestive System Diseases,, -Count_Death_DiseasesOfTheDigestiveSystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), American Indian And Alaska Native Alone",Deaths of American Indian and Alaska Native Population Caused by Digestive Diseases,, -Count_Death_DiseasesOfTheDigestiveSystem_AsianOrPacificIslander,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Asian or Pacific Islander",Asian or Pacific Islander Deaths Caused By Digestive System Diseases,, -Count_Death_DiseasesOfTheDigestiveSystem_BlackOrAfricanAmerican,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Black or African American",Deaths Caused by Digestive System Diseases in African American,, -Count_Death_DiseasesOfTheDigestiveSystem_Female,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Female",Female Deaths Caused By Diseases Of The Digestive System,, -Count_Death_DiseasesOfTheDigestiveSystem_Male,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Male",Male Deaths Caused By Digestive System Diseases,, -Count_Death_DiseasesOfTheDigestiveSystem_White,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), White",Deaths Of White People Caused By Digestive System Diseases,, -Count_Death_DiseasesOfTheGenitourinarySystem,Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System),Deaths Caused by Genitourinary System Diseases,, -Count_Death_DiseasesOfTheGenitourinarySystem_AsianOrPacificIslander,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Asian or Pacific Islander",Deaths Of Asians Or Pacific Islanders Caused By Diseases of The Genitourinary System,, -Count_Death_DiseasesOfTheGenitourinarySystem_BlackOrAfricanAmerican,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Black or African American",Deaths Of African American Population Caused by Genitourinary Diseases,, -Count_Death_DiseasesOfTheGenitourinarySystem_Female,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Female",Deaths of Female Population Caused by Diseases of the Genitourinary System,, -Count_Death_DiseasesOfTheGenitourinarySystem_Male,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Male",Deaths of Male Population Caused by Genitourinary System Diseases,, -Count_Death_DiseasesOfTheGenitourinarySystem_White,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), White",White Population Deaths Event Caused by Diseases of The Genitourinary System,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue,Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue),Deaths Caused by Musculoskeletal System Connective Tissue Diseases,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_BlackOrAfricanAmerican,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Black or African American",African American Deaths Caused By Musculoskeletal System And Connective Tissue Diseases,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Female",Female Deaths Caused By Diseases of The Musculoskeletal System And Connective Tissue,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female_BlackOrAfricanAmerican,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Female, Black or African American",Deaths of African American Female Population Caused by Diseases of The Musculoskeletal System and Connective Tissue,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Male",Deaths Of Males Caused By Diseases of The Musculoskeletal System And Connective Tissue,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male_White,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Male, White",White Death Male Event Caused by Diseases of The Musculoskeletal System And Connective Tissue,, -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_White,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), White",Deaths Of White Population Caused By Diseases of The Musculoskeletal System And Connective Tissue,, -Count_Death_DiseasesOfTheNervousSystem_AsianOrPacificIslander,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Asian or Pacific Islander",Deaths of Asian or Pacific Islanders Caused By Diseases of The Nervous System,, -Count_Death_DiseasesOfTheNervousSystem_BlackOrAfricanAmerican,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Black or African American",Death of African Americans Caused By Diseases of The Nervous System,, -Count_Death_DiseasesOfTheNervousSystem_Female,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Female",Female Deaths Caused by Nervous System Diseases,, -Count_Death_DiseasesOfTheNervousSystem_Male,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Male",Death of Male Population Caused by Diseases of The Nervous System,, -Count_Death_DiseasesOfTheNervousSystem_White,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), White","Deaths Due To Nervous System Diseases, White",, -Count_Death_DiseasesOfTheRespiratorySystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), American Indian And Alaska Native Alone",Deaths of American Indian And Alaska Native Population Caused By Respiratory Diseases,, -Count_Death_DiseasesOfTheRespiratorySystem_AsianOrPacificIslander,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Asian or Pacific Islander",Deaths Of Asian or Pacific Islander Population Caused By Respiratory Diseases,, -Count_Death_DiseasesOfTheRespiratorySystem_BlackOrAfricanAmerican,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Black or African American",African American Deaths Caused By Diseases Of The Respiratory System,, -Count_Death_DiseasesOfTheRespiratorySystem_Female,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Female",Deaths of Female Population Caused By Respiratory System Diseases,, -Count_Death_DiseasesOfTheRespiratorySystem_Male,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Male",Males Deaths Due to Disease of The Respiratory System,, -Count_Death_DiseasesOfTheRespiratorySystem_White,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), White",Deaths Of White People Caused By Diseases of The Respiratory System,, -Count_Death_DiseasesOfTheSkinSubcutaneousTissue,Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue),Deaths Caused by Skin Subcutaneous Tissue Diseases,, -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Female",Deaths of Female Population Caused by Diseases of The Skin And Subcutaneous Tissue,, -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female_White,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Female, White",Deaths of White Female Population Due to Diseases of The Skin And Subcutaneous Tissue,, -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Male,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Male",Deaths in Male Population Caused by Diseases of the Skin and Subcutaneous Tissue,, -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_White,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), White",Deaths Of White People Caused By Diseases of The Skin And Subcutaneous Tissue,, -Count_Death_EndocrineNutritionalMetabolicDiseases,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases)",Deaths Caused by Endocrine Nutritional Metabolic Diseases,, -Count_Death_EndocrineNutritionalMetabolicDiseases_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), American Indian And Alaska Native Alone",Deaths of American Indian And Alaska Natives Caused by Endocrine Nutritional And Metabolic Diseases,, -Count_Death_EndocrineNutritionalMetabolicDiseases_AsianOrPacificIslander,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Asian or Pacific Islander","Deaths of Asian or Pacific Islander Population Caused By Endocrine, Nutritional And Metabolic Diseases",, -Count_Death_EndocrineNutritionalMetabolicDiseases_BlackOrAfricanAmerican,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Black or African American",Deaths Of African American Population Caused by Endocrine Nutritional And Metabolic Diseases,, -Count_Death_EndocrineNutritionalMetabolicDiseases_Female,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Female","Deaths of Female Population Caused by Endocrine, Nutritional And Metabolic Diseases",, -Count_Death_EndocrineNutritionalMetabolicDiseases_Male,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Male",Deaths of Male Population Caused by Endocrine Nutritional And Metabolic Diseases,, -Count_Death_EndocrineNutritionalMetabolicDiseases_White,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), White","Death of White Population Caused By Endocrine, Nutritional And Metabolic Diseases",, -Count_Death_ExternalCauses_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), American Indian And Alaska Native Alone",Deaths of American Indian And Alaska Native Population Caused by External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_AsianOrPacificIslander,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Asian or Pacific Islander",Deaths of Asian or Pacific Islanders Due to External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_BlackOrAfricanAmerican,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Black or African American",Deaths of African American Population Caused By External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_Female,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Female",Female Deaths Caused by External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_Male,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Male",Male Population Deaths Caused by External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_Male_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Male, American Indian And Alaska Native Alone",Deaths of American Indian And Alaska Native Male Population Due to External Causes of Morbidity And Mortality,, -Count_Death_ExternalCauses_White,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), White",Deaths Of White Population Caused By External Causes of Morbidity And Mortality,, -Count_Death_Female,Count of Mortality Event: Female,Female Population Deaths,, -Count_Death_Female_AgeAdjusted_AsAFractionOf_Count_Person_Female,Count of Mortality Event (Age Adjusted): Female (As Fraction of Count Person Female),Female Population Deaths With Adjusted Age,, -Count_Death_Female_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: Female, American Indian And Alaska Native Alone",Deaths Of American Indian And Alaska Native Female Population,, -Count_Death_Female_AsAFractionOf_Count_Person_Female,Count of Mortality Event: Female (As Fraction of Count Person Female),Female Deaths,, -Count_Death_Female_AsianOrPacificIslander,"Count of Mortality Event: Female, Asian or Pacific Islander",Deaths Of Asian Or Pacific Islander Female Population,, -Count_Death_Female_BlackOrAfricanAmerican,"Count of Mortality Event: Female, Black or African American",Deaths of African American Female Population,, -Count_Death_Female_White,"Count of Mortality Event: Female, White",Death For White Female Population,, -Count_Death_IntentionalSelfHarm_AsFractionOf_Count_Person,Count of Mortality Event: X60-X84 (Intentional Self-harm) (Per Capita),Deaths Caused by Intentional Self Harm,, -Count_Death_IntentionalSelfHarm_Female_AsFractionOf_Count_Person_Female,"Count of Mortality Event: X60-X84 (Intentional Self-harm), Female (As Fraction of Count Person Female)",Deaths of Female Population Caused by Intentional Self-Harm,, -Count_Death_IntentionalSelfHarm_Male_AsFractionOf_Count_Person_Male,"Count of Mortality Event: X60-X84 (Intentional Self-harm), Male (As Fraction of Count Person Male)","Deaths Due to Intentional Self-Harm, Male",, -Count_Death_LessThan1Year_AsAFractionOf_Count_BirthEvent,Count of Mortality Event: 1 Years or Less (As Fraction of Count Birth Event),Infant Deaths During First Year,, -Count_Death_LessThan1Year_Female_AsAFractionOf_Count_BirthEvent_Female,"Count of Mortality Event: 1 Years or Less, Female (As Fraction of Count Birth Event Female)",Deaths Of Female Population Aged 1 Year or Less,, -Count_Death_LessThan1Year_Male_AsAFractionOf_Count_BirthEvent_Male,"Count of Mortality Event: 1 Years or Less, Male (As Fraction of Count Birth Event Male)","Infant Deaths During First Year, Male",, -Count_Death_Male,Count of Mortality Event: Male,Male Deaths,, -Count_Death_Male_AgeAdjusted_AsAFractionOf_Count_Person_Male,Count of Mortality Event (Age Adjusted): Male (As Fraction of Count Person Male),Male Deaths With Adjusted Age,, -Count_Death_Male_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: Male, American Indian And Alaska Native Alone",Deaths of American Indian And Alaska Native Male Population,, -Count_Death_Male_AsAFractionOf_Count_Person_Male,Count of Mortality Event: Male (As Fraction of Count Person Male),Male Deaths,, -Count_Death_Male_AsianOrPacificIslander,"Count of Mortality Event: Male, Asian or Pacific Islander",Asian or Pacific Islander Male Deaths,, -Count_Death_Male_BlackOrAfricanAmerican,"Count of Mortality Event: Male, Black or African American",Deaths Of African American Male Population,, -Count_Death_Male_White,"Count of Mortality Event: Male, White",Deaths Of White Male Population,, -Count_Death_MentalBehaviouralDisorders,Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders),Deaths Caused by Mental Behavioural Disorders,, -Count_Death_MentalBehaviouralDisorders_AsianOrPacificIslander,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Asian or Pacific Islander",Deaths of Asian or Pacific Islander Population Caused by Mental And Behavioural Disorders,, -Count_Death_MentalBehaviouralDisorders_BlackOrAfricanAmerican,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Black or African American",African Americans Deaths Mental And Behavioural Disorders,, -Count_Death_MentalBehaviouralDisorders_Female,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Female",Deaths Of Female Population Due To Mental And Behavioural Disorders,, -Count_Death_MentalBehaviouralDisorders_Male,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Male",Deaths Of Male Population Caused By Mental And Behavioural Disorders,, -Count_Death_MentalBehaviouralDisorders_White,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), White",Mortality Rate of White Population Due to Mental And Behavioural Disorders,, -Count_Death_Neoplasms_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: C00-D48 (Neoplasms), American Indian And Alaska Native Alone",Deaths Of American Indian and Alaska Native Population Due to Neoplasms,, -Count_Death_Neoplasms_AsianOrPacificIslander,"Count of Mortality Event: C00-D48 (Neoplasms), Asian or Pacific Islander",Death of Asian or Pacific Islander Population Caused by Neoplasms,, -Count_Death_Neoplasms_BlackOrAfricanAmerican,"Count of Mortality Event: C00-D48 (Neoplasms), Black or African American",African American Deaths Caused By Neoplasm,, -Count_Death_Neoplasms_Female,"Count of Mortality Event: C00-D48 (Neoplasms), Female",Female Deaths Caused By Neoplasms,, -Count_Death_Neoplasms_Male,"Count of Mortality Event: C00-D48 (Neoplasms), Male",Male Deaths Caused by Neoplasms,, -Count_Death_Neoplasms_White,"Count of Mortality Event: C00-D48 (Neoplasms), White",White Population Deaths Caused By Neoplasm,, -Count_Death_PregnancyChildbirthThePuerperium,"Count of Mortality Event: O00-O99 (Pregnancy, Childbirth And The Puerperium)",,, -Count_Death_PregnancyChildbirthThePuerperium_Female,"Count of Mortality Event: O00-O99 (Pregnancy, Childbirth And The Puerperium), Female","Deaths Of Female Population Caused by Pregnancy, Childbirth, And The Puerperium",, -Count_Death_SpecialCases,Count of Mortality Event: U00-U99 (Codes for Special Purposes),,, -Count_Death_SpecialCases_Female,"Count of Mortality Event: U00-U99 (Codes for Special Purposes), Female",Deaths of Female Population Caused by Codes for Special Purposes,, -Count_Death_Upto14Years_AsAFractionOf_Count_Person_Upto14Years,Count of Mortality Event: 14 Years or Less (As Fraction of Count Person Upto 14 Years),Deaths of Population With Upto 14 Years,, -Count_Death_Upto14Years_Female_AsAFractionOf_Count_Person_Upto14Years_Female,"Count of Mortality Event: 14 Years or Less, Female (As Fraction of Count Person Upto 14 Years Female)",Female Deaths Aged 14 Years Or Less,, -Count_Death_Upto14Years_Male_AsAFractionOf_Count_Person_Upto14Years_Male,"Count of Mortality Event: 14 Years or Less, Male (As Fraction of Count Person Upto 14 Years Male)",Deaths of Male Population Aged Below 14 Years Old,, -Count_Death_Upto1Years_AbnormalNotClassfied,"Count of Mortality Event: 1 Years or Less, R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified)","Deaths Of People Aged 1 Year or Less Caused by Unclassified Symptoms, Signs, And Abnormal Clinical And Laboratory Findings",, -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period)",Deaths of Population Aged 1 Year or Less Caused by Certain Perinatal Conditions,, -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Black or African American",Deaths Of African American Population Aged 1 Year or Less,, -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Female,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Female",Deaths of Female Population Aged 1 Year or Less Caused By Certain Conditions Originating in The Perinatal Period,, -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Male,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Male",Male Population Below 1-Year-Old Deaths Caused by Certain Conditions Originating in The Perinatal Period,, -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_White,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), White",Deaths of White Population Aged 1 Year Or Less Caused By Certain Conditions Originating in The Perinatal Period),, -Count_Death_Upto1Years_CertainInfectiousParasiticDiseases,"Count of Mortality Event: 1 Years or Less, A00-B99 (Certain Infectious And Parasitic Diseases)",Deaths of Population Aged 1 Year or Less Caused By Certain Infectious And Parasitic Diseases,, -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities)","Deaths Of People Aged 1 Year Or Less Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities",, -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Black or African American","Deaths Of African Americans Aged 1 Year And Below Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities",, -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female","Deaths of Female Population Aged 1 Year or Less Caused by Congenital Malformations, Deformations And Chromosomal Abnormalities",, -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male",Deaths Of Male Population Aged 1 Year or Less Caused By Congenital Malformations Deformations And Chromosomal Abnormalities,, -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), White","White Population Below 1 Year Deaths Are Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities",, -Count_Death_Upto1Years_DiseasesOfTheCirculatorySystem,"Count of Mortality Event: 1 Years or Less, I00-I99 (Diseases of The Circulatory System)",Deaths of Population Aged 1 Year Old or Less Caused by Diseases of the Circulatory System;Deaths of Population Aged 1 Year Old or Less Caused by Circulatory System Diseases,, -Count_Death_Upto1Years_DiseasesOfTheDigestiveSystem,"Count of Mortality Event: 1 Years or Less, K00-K92 (Diseases of The Digestive System)",Deaths of Population Aged 1 Year or Less Caused by Diseases of The Digestive System,, -Count_Death_Upto1Years_DiseasesOfTheGenitourinarySystem,"Count of Mortality Event: 1 Years or Less, N00-N98 (Diseases of The Genitourinary System)",Deaths of Population Aged 1 Year or Less Caused By Diseases of The Genitourinary System,, -Count_Death_Upto1Years_DiseasesOfTheNervousSystem,"Count of Mortality Event: 1 Years or Less, G00-G98 (Diseases of The Nervous System)",Deaths of Population Aged 1 Year or Less Caused By Diseases of The Nervous System,, -Count_Death_Upto1Years_DiseasesOfTheRespiratorySystem,"Count of Mortality Event: 1 Years or Less, J00-J98 (Diseases of The Respiratory System)",Deaths Aged 1 Year or Less Caused by Diseases Of The Respiratory System,, -Count_Death_Upto1Years_EndocrineNutritionalMetabolicDiseases,"Count of Mortality Event: 1 Years or Less, E00-E88 (Endocrine, Nutritional And Metabolic Diseases)","Deaths Of People Aged 1 Year Or Less Caused By Endocrine, Nutritional And Metabolic Diseases",, -Count_Death_Upto1Years_ExternalCauses,"Count of Mortality Event: 1 Years or Less, V01-Y89 (External Causes of Morbidity And Mortality)",Deaths Of People Aged 1 Year or Less Caused By External Causes of Morbidity And Mortality,, -Count_Death_Upto1Years_Neoplasms,"Count of Mortality Event: 1 Years or Less, C00-D48 (Neoplasms)",Deaths of Population Aged 1 Year or Less Caused by Neoplasms,, -Count_Death_White,Count of Mortality Event: White,Deaths of White Population,, -Count_DebrisFlowEvent,Count of Debris Flow Event,Debris Flow Events,, -Count_DenseFogEvent,Count of Dense Fog Event,Dense Fog Events,, -Count_DustDevilEvent,Count of Dust Devil Event,Dust Devil Events,, -Count_DustStormEvent,Count of Dust Storm Event,,, -Count_EarthquakeEvent_M5To6,Count of Earthquake Event: 5 - 6 Magnitude,,, -Count_EarthquakeEvent_M6To7,Count of Earthquake Event: 6 - 7 Magnitude,,, -Count_EarthquakeEvent_M7To8,Count of Earthquake Event: 7 - 8 Magnitude,,, -Count_EarthquakeEvent_M8To9,Count of Earthquake Event: 8 - 9 Magnitude,,, -Count_EarthquakeEvent_M9Onwards,Count of Earthquake Event: 9 Magnitude or More,,, -Count_Establishment,Count of Establishment,Number of Establishments (Organizations),, -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: Federal Government Owned, Total, All Industries (NAICS/10)",Federal Government Owned Total All Industries Establishments,, -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: Local Government Owned, Total, All Industries (NAICS/10)",Local Government Owned Total All Industries Establishments,, -Count_Establishment_NAICSAccommodationFoodServices,Count of Establishment: Accommodation And Food Services (NAICS/72),Accommodation and Food Services,, -Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,Count of Establishment: Administrative And Support And Waste Management Services (NAICS/56),Administrative Support and Waste Management Services Establishments,, -Count_Establishment_NAICSAgricultureForestryFishingHunting,"Count of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Agriculture, Forestry, Fishing, And Hunting Industries",, -Count_Establishment_NAICSArtsEntertainmentRecreation,"Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71)","Arts, Entertainment, And Recreation Establishments",, -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Exempt From Federal Income Tax","Arts, Entertainment, and Recreation Establishments",, -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Subject To Federal Income Tax","Arts, Entertainment, and Recreation Establishments, Subject to Federal Income Tax",, -Count_Establishment_NAICSConstruction,Count of Establishment: Construction (NAICS/23),Construction Establishments,, -Count_Establishment_NAICSEducationalServices,Count of Establishment: Educational Services (NAICS/61),Educational Services,, -Count_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Educational Services (NAICS/61), Exempt From Federal Income Tax",Educational Services Establishments Exempt From Federal Income Taxes,, -Count_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Educational Services (NAICS/61), Subject To Federal Income Tax",Educational Services Establishments Subject To Federal Income Taxes,, -Count_Establishment_NAICSFinanceInsurance,Count of Establishment: Finance And Insurance (NAICS/52),Finance And Insurance Establishments,, -Count_Establishment_NAICSGoodsProducing,Count of Establishment: Goods-producing (NAICS/101),Goods-Producing Industries,, -Count_Establishment_NAICSHealthCareSocialAssistance,Count of Establishment: Health Care And Social Assistance (NAICS/62),Health Care and Social Assistance Sector,, -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Health Care And Social Assistance (NAICS/62), Exempt From Federal Income Tax",Health Care And Social Assistance are Exempted From Federal Income Tax,, -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Health Care And Social Assistance (NAICS/62), Subject To Federal Income Tax","Health Care And Social Assistance Industries, Subject To Federal Income Tax",, -Count_Establishment_NAICSInformation,Count of Establishment: Information (NAICS/51),Information And Cultural Industries,, -Count_Establishment_NAICSManagementOfCompaniesEnterprises,Count of Establishment: Management of Companies And Enterprises (NAICS/55),Management of Companies And Enterprises Industries,, -Count_Establishment_NAICSManufacturing,Count of Establishment: Manufacturing (NAICS/31),Animal Food Manufacturing Industries,, -Count_Establishment_NAICSMiningQuarryingOilGasExtraction,"Count of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Mining, Quarrying, And Oil And Gas Extraction",, -Count_Establishment_NAICSNonclassifiable,Count of Establishment: Unclassified (NAICS/99),Nonclassifiable Establishments,, -Count_Establishment_NAICSOtherServices,"Count of Establishment: Other Services, Except Public Administration (NAICS/81)","Other Services, Except Public Administration Industries",, -Count_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Other Services, Except Public Administration (NAICS/81), Exempt From Federal Income Tax","Other Services, Except Public Administration Industries Exempted From Federal Income Tax",, -Count_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Other Services, Except Public Administration (NAICS/81), Subject To Federal Income Tax","Other Services, Except Public Administration Establishments Subject To Federal Income Tax",, -Count_Establishment_NAICSProfessionalScientificTechnicalServices,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54)","Professional, Scientific, and Technical Services Establishments",, -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Exempt From Federal Income Tax","Professional, Scientific, and Technical Service Industries, Exempt From Federal Income Tax",, -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Subject To Federal Income Tax","Professional, Scientific, And Technical Services, Subject To Federal Income Tax",, -Count_Establishment_NAICSPublicAdministration,Count of Establishment: Public Administration (NAICS/92),Public Administration And Government,, -Count_Establishment_NAICSRealEstateRentalLeasing,Count of Establishment: Real Estate And Rental And Leasing (NAICS/53),Real Estate And Rental And Leasing,, -Count_Establishment_NAICSRetailTrade,Count of Establishment: Retail Trade (NAICS/44),Retail Trade Industries,, -Count_Establishment_NAICSServiceProviding,Count of Establishment: Service-providing (NAICS/102),Service Providing Establishments,, -Count_Establishment_NAICSTotalAllIndustries,"Count of Establishment: Total, All Industries (NAICS/10)",All Industries,, -Count_Establishment_NAICSTransportationWarehousing,Count of Establishment: Transportation And Warehousing (NAICS/48),Transportation And Warehousing Establishments,, -Count_Establishment_NAICSUtilities,Count of Establishment: Utilities (NAICS/22),Utility Establishments,, -Count_Establishment_NAICSWholesaleTrade,Count of Establishment: Wholesale Trade (NAICS/42),Wholesale Trade,, -Count_Establishment_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: Privately Owned, Total, All Industries (NAICS/10)",All Privately Owned Industries,, -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: State Government Owned, Total, All Industries (NAICS/10)",All State Government-Owned Industries,, -Count_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Count of Establishment: Merchant Wholesalers, Wholesale Trade (NAICS/42)",Trade Merchant Wholesalers,, -Count_ExcessiveHeatEvent,Count of Excessive Heat Event,Excessive Heat Events,, -Count_ExtremeColdWindChillEvent,Count of Extreme Cold Wind Chill Event,Extreme Cold Wind Chill Events,, -Count_Faculty_ElementarySchoolCounselor,Count of Faculty: Elementary School Counselor,Number Of Elementary School Counselors,, -Count_Faculty_LEAAdministrativeSupportStaff,Count of Faculty: LEAAdministrative Support Staff,LEA Administrative Support Staff,, -Count_Faculty_LEAAdministrator,Count of Faculty: LEAAdministrator,Count of Faculty in LEA Administrator,, -Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,Count of Faculty: Para Professionals Aides or Instructional Aide,Para Professionals Aides Faculties,, -Count_Faculty_SchoolAdministrativeSupportStaff,Count of Faculty: School Administrative Support Staff,School Administrative Support Staff,, -Count_Faculty_SchoolAdministrator,Count of Faculty: School Administrator,School Administrators,, -Count_Faculty_SchoolOtherGuidanceCounselor,Count of Faculty: School Other Guidance Counselor,School Other Guidance Counselor Faculties,, -Count_Faculty_SchoolPsychologist,Count of Faculty: School Psychologist,School Psychologists,, -Count_Faculty_SecondarySchoolCounselor,Count of Faculty: Secondary School Counselor,Secondary School Counselor Faculties,, -Count_Faculty_TotalGuidanceCounselor,Count of Faculty: Total Guidance Counselor,,, -Count_Farm_Forage,Count of Farm: Forage,Farm Forage,, -Count_Farm_OtherSpringWheatForGrain,Count of Farm: Other Spring Wheat for Grain,Other Spring Wheat for Grain Farms,, -Count_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,"Count of Farm: Primary Producer, American Indian or Alaska Native Alone",American Indian or Alaska Native Primary Producer,, -Count_Farm_PrimaryProducer_AsianAlone,"Count of Farm: Primary Producer, Asian Alone",Asians Primary Farm Producers,, -Count_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,"Count of Farm: Primary Producer, Black or African American Alone",African American Primary Producer Farms,, -Count_Farm_PrimaryProducer_HispanicOrLatino,"Count of Farm: Primary Producer, Hispanic or Latino",Hispanic Primary Producers,, -Count_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Farm: Primary Producer, Native Hawaiian or Other Pacific Islander Alone",Farms For Native Hawaiian or other Pacific Islanders,, -Count_Farm_PrimaryProducer_TwoOrMoreRaces,"Count of Farm: Primary Producer, Two or More Races",Multiracial Primary Producers,, -Count_Farm_PrimaryProducer_WhiteAlone,"Count of Farm: Primary Producer, White Alone",White Population Farms,, -Count_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,"Count of Farm: Producer, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Farm Producers,, -Count_Farm_Producer_AsianAlone,"Count of Farm: Producer, Asian Alone",Producer Asian Farms,, -Count_Farm_Producer_BlackOrAfricanAmericanAlone,"Count of Farm: Producer, Black or African American Alone",African American Producers,, -Count_Farm_Producer_HispanicOrLatino,"Count of Farm: Producer, Hispanic or Latino",Farms with Hispanic Producers,, -Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Farm: Producer, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Farm Producers,, -Count_Farm_Producer_TwoOrMoreRaces,"Count of Farm: Producer, Two or More Races",Multiracial Farm Producers,, -Count_Farm_Producer_WhiteAlone,"Count of Farm: Producer, White Alone",White Population Producer Farms,, -Count_Farm_ReportedIncome,Count of Farm: Reported Income,Reported Farm Income,, -Count_Farm_ReportedNetIncome,Count of Farm: Reported Net Income,Reported Net Income of Farms,, -Count_Farm_SorghumForSilageOrGreenchop,Count of Farm: Sorghum for Silage or Greenchop,Sorghum for Silage or Greenchop Population,, -Count_FireEvent,Count of Fire Event,Fire Events,, -Count_FireIncidentComplex,Count of Fire Incident Complex Event,Fire Incident Complex,, -Count_FlashFloodEvent,Count of Flash Flood Event,Flash Flood Events,, -Count_FreezingFogEvent,Count of Freezing Fog Event,,, -Count_FrostFreezeEvent,Count of Frost Freeze Event,Frost Freeze Events,, -Count_FunnelCloudEvent,Count of Funnel Cloud Event,Funnel Cloud Events,, -Count_HailEvent,Count of Hail Event,Hail Events,, -Count_HeatTemperatureEvent,Count of Heat Temperature Event,Heat Temperature Events,, -Count_HeatWaveEvent,Count of Heat Wave Event,Heat Wave Events,, -Count_HighWindEvent,Count of High Wind Event,High Wind Events,, -Count_Household_AsianAndPacificIslandLanguagesSpokenAtHome,Count of Household: Asian And Pacific Island Languages,Asian And Pacific Island Languages Households,, -Count_Household_FamilyHousehold,Count of Household: Family Household,Family Households,, -Count_Household_FamilyHousehold_OwnerOccupied,"Count of Household: Family Household, Owner Occupied",Family Households Occupied By The Owner,, -Count_Household_FamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months",Occupied Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_FamilyHousehold_RenterOccupied,"Count of Household: Family Household, Renter Occupied",Renter Occupied Family Households,, -Count_Household_FamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months",Family Households Occupied by Renters Below Poverty Level in The Past 12 Months,, -Count_Household_FamilyHousehold_With0Worker,"Count of Household: Family Household, Worker 0",Family Households with 0 Workers,, -Count_Household_FamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Worker 0, Below Poverty Level in The Past 12 Months",Family Households Workers Below Poverty Level in The Past 12 Months,, -Count_Household_FamilyHousehold_With1Worker,"Count of Household: Family Household, Worker 1",Family Households With 1 Worker,, -Count_Household_FamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Worker 1, Below Poverty Level in The Past 12 Months",Family Households with 1 Worker Below Poverty Level in The Past 12 Months,, -Count_Household_FamilyHousehold_With2Worker,"Count of Household: Family Household, Worker 2",Family Households With 2 Workers,, -Count_Household_FamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Worker 2, Below Poverty Level in The Past 12 Months",Family Households With 2 Workers Below Poverty Level in The Past 12 Months,, -Count_Household_FamilyHousehold_With3OrMoreWorker,"Count of Household: Family Household, 3 Worker or More",Family Households With 3 or More Workers,, -Count_Household_FamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months",Family Households with 3 Workers or More Below Poverty Level in The Past 12 Months,, -Count_Household_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: Foreign Born, Africa",Foreign-Born In Africa Households,, -Count_Household_ForeignBorn_PlaceOfBirthAsia,"Count of Household: Foreign Born, Asia",Foreign Born Asian Householders;Foreign Born Population In Asia Households,, -Count_Household_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: Foreign Born, Caribbean",Householders Foreign-Born In The Caribbean,, -Count_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: Foreign Born, Central America Except Mexico",Households Foreign Born in Central America Except Mexico,, -Count_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: Foreign Born, Eastern Asia",Households of Foreign-Born Population in Eastern Asia,, -Count_Household_ForeignBorn_PlaceOfBirthEurope,"Count of Household: Foreign Born, Europe",Foreign Born in Europe Households,, -Count_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: Foreign Born, Latin America",Foreign-Born Households in Latin America,, -Count_Household_ForeignBorn_PlaceOfBirthMexico,"Count of Household: Foreign Born, Country/MEX",Households of Foreign-Born Population,, -Count_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: Foreign Born, Northamerica",North American Foreign-Born Households,, -Count_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: Foreign Born, Northern Western Europe",Foreign Born Population in Northern Western Europe Households,, -Count_Household_ForeignBorn_PlaceOfBirthOceania,"Count of Household: Foreign Born, Oceania",Households of Foreign Borns in Oceania,, -Count_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: Foreign Born, Southamerica",Households With Foreign Born South Americans,, -Count_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: Foreign Born, South Central Asia",Households Owned By Foreign-Born Population In South Central Asia,, -Count_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: Foreign Born, South Eastern Asia",Foreign-Born Population in South Eastern Asia Households,, -Count_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: Foreign Born, Southern Eastern Europe",Foreign Born In South Eastern Europe Households,, -Count_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: Foreign Born, Western Asia",Foreign-Born Population in Western Asia,, -Count_Household_FullTimeYearRoundWorker_FamilyHousehold,"Count of Household: Family Household, Full Time Year Round Worker",Family Households Full Time Year Round Workers,, -Count_Household_FullTimeYearRoundWorker_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months",Full-Time Year-Round Worker Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Full Time Year Round Worker",Married Couple Family Households Who are Full Time Year Round Worker,, -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months",Married Couple Family Household Full Time Year Round Worker Below Poverty Level In The Past 12 Months,, -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Full Time Year Round Worker",Households Of Full Time Working Single Mothers,, -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months",Single Mother Family Households Full Time Year Round Worker Below Poverty Level In The Past 12 Months,, -Count_Household_HasComputer,Count of Household: Has Computer,Households with Computers,, -Count_Household_HasComputer_NoInternetAccess,"Count of Household: Has Computer, No Internet Access",Households With Computers and Without Internet Access,, -Count_Household_HasComputer_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,"Count of Household: Has Computer, With Internet Subscription, Broadband Internet Such as Cable Fiber Optic or Dsl","Households With a Computer, Internet Subscription, and Broadband internets Such as Cable Fiber Optic or Dsl",, -Count_Household_HasComputer_WithInternetSubscription_DialUpInternetOnly,"Count of Household: Has Computer, With Internet Subscription, Dial Up Internet Only",Households With Computers And Dial-Up Internet Subscriptions,, -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold,"Count of Household: Family Household, 65 Years or More",Family Households Aged 65 Years or More,, -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months",Family Households Aged 65 Years or More Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, 65 Years or More",Married Couple Family Households For Population Aged 65 Years or More,, -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months",Married Couple Family Households Above 65 Years Old Below Poverty Level in the Past 12 Months,, -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, 65 Years or More",Household Of Population Aged 65 Years Or More With Single Mother Family Household,, -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months",Single Mother Family Households of Population Aged 50 Years or More Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold,"Count of Household: Family Household, Bachelors Degree or Higher",Family Households With a Bachelor's Degree or Higher,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months",Family Household With Bachelor's Degree or Higher Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Bachelors Degree or Higher",Married Couple Family Household With Bachelor's Degree or Higher,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months",Married Couple Family Household With Educational Attainment Bachelor's Degree Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Bachelors Degree or Higher",Single Mother Family Householders With Bachelor's Degrees or Higher Education,, -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months","Single Mother Family Householders With Bachelor's Degree or Higher, Below Poverty Level in The Past 12 Months",, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold,"Count of Household: Family Household, High School Graduate Includes Equivalency",Family Households Of High School Graduates Or Equivalent,, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months",Family Household With Educational Attainment High School Graduate Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, High School Graduate Includes Equivalency",Married Couple Family Households with High School Graduates Includes Equivalency,, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months",Married Couple Family Households With High School Graduate Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, High School Graduate Includes Equivalency",Single Mother Family Households with High School Graduates Includes Equivalency,, -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months",Single Mother Family Household With Educational Attainment High School Graduate Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold,"Count of Household: Family Household, Less Than High School Graduate",Family Households With Less Than High School Graduate Education,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months",Family Households with Population with Less Than High School Graduate Below Poverty In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Less Than High School Graduate",Married Couple Family Households With Less Than High School Graduate,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months",Married Couple Family Households Less Than High School Graduates Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Less Than High School Graduate",Single Mother Family Households With Less Than High School Graduate Education,, -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months",Single Mother Family Household Less Than High School Graduates Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold,"Count of Household: Family Household, Some College or Associates Degree",Family Households with Some College or Associate's Degrees,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months",Family Households With Some College Or Associate's Degree With Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Some College or Associates Degree",Married Couple Family Households With Some College or Associate's Degrees,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months",Married Couple Family Household With Some College or Associate's Degree Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Some College or Associates Degree",Single Mother Family Household With Some College or Associate's Degree,, -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months",Single Mother Family Households With Associate Degree Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Count of Household: American Indian or Alaska Native Alone,Households of American Indians or Alaska Natives,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold,"Count of Household: Family Household, American Indian or Alaska Native Alone",American Indian or Alaska Native Family Households,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months",American Indians or Alaska Natives Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, American Indian or Alaska Native Alone",American Indian or Alaska Native Married Couple Family Households,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months",American Indian Or Alaska Native Married Couple Households Living Below Poverty Level In The Past 12 Months,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, American Indian or Alaska Native Alone",American Indian or Alaska Native Single Mother Family Households,, -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months",American Indian or Alaska Native Single Mother Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceAsianAlone,Count of Household: Asian Alone,Asian Households,, -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold,"Count of Household: Family Household, Asian Alone",Asian Family Households,, -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Asian Alone, Below Poverty Level in The Past 12 Months",Family Households of Asians Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Asian Alone",Family Households of Asian Married Couple,, -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Asian Alone, Below Poverty Level in The Past 12 Months",Asian Married Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Asian Alone",Asian Single Mother Family Households,, -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Asian Alone, Below Poverty Level in The Past 12 Months",Asian Single Mother Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Count of Household: Black or African American Alone,African American Population Households,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,"Count of Household: Family Household, Black or African American Alone",African American Family Households,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months",African American Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Black or African American Alone",African Americans Married Couple Family Households,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months",Family Households of African American Married Couples Below Poverty Level in the Past 12 Months,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Black or African American Alone",African American Single Mother Households,, -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months",African American Single Mother Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceHispanicOrLatino,Count of Household: Hispanic or Latino,Hispanic Households,, -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold,"Count of Household: Family Household, Hispanic or Latino",Hispanic Family Households,, -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months",Hispanic Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Hispanic or Latino",Hispanic Married Couple Family Households,, -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months",Hispanic with Married Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Hispanic or Latino",Single Mother Family Households Of Hispanic Population,, -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months",Single Mother Family Households of Hispanic Population Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Count of Household: Native Hawaiian or Other Pacific Islander Alone,Native Hawaiian or Other Pacific Islander Households,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold,"Count of Household: Family Household, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Family Households,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months",Family Households of Native Hawaiian or Other Pacific Islander Population Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Married Couple Family Households,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months",Native Hawaiian or Other Pacific Islanders Married Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian Or Other Pacific Islander Single Mother Households,, -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months",Native Hawaiian or Other Pacific Islander Single Mother Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceSomeOtherRaceAlone,Count of Household: Some Other Race Alone,Households With Some Other Race Population,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold,"Count of Household: Family Household, Some Other Race Alone",Some Other Race Family Households,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months",Some Other Race Family Households With Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Some Other Race Alone",Some Other Race Married Couple Family Households,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months",Some Other Race Married Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Some Other Race Alone",Single Mother Family Households of Some Other Race Population,, -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months",Some Other Race Households of Single Mothers Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceTwoOrMoreRaces,Count of Household: Two or More Races,Multiracial Householders,, -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold,"Count of Household: Family Household, Two or More Races",Multiracial Family Households,, -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Two or More Races, Below Poverty Level in The Past 12 Months",Multiracial Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Two or More Races",Multiracial Married Couple Family Households,, -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Two or More Races, Below Poverty Level in The Past 12 Months",Multiracial Married Couple Family Households Below Poverty Level in the Past 12 Months,, -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Two or More Races",Households Of Multiracial Single Mother Families,, -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Two or More Races, Below Poverty Level in The Past 12 Months",Multiracial Households With Single Mothers Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceWhiteAlone,Count of Household: White Alone,Households of White Population,, -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold,"Count of Household: Family Household, White Alone",Family Households of White Population,, -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, White Alone, Below Poverty Level in The Past 12 Months",White Population Family Households Below Poverty Level in The Past 12 Month,, -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, White Alone",White Households Married Couple Family,, -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, White Alone, Below Poverty Level in The Past 12 Months",Married White Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, White Alone",Single Mother Family Households of White Population,, -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, White Alone, Below Poverty Level in The Past 12 Months",Single Mother Family Households For White Population Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,Count of Household: White Alone Not Hispanic or Latino,White Non-Hispanic Households,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold,"Count of Household: Family Household, White Alone Not Hispanic or Latino",Households of White And Non-Hispanic People With Families,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months",Family Households of White Non-Hispanic Population Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, White Alone Not Hispanic or Latino",Married Couple Family Households of White Non-Hispanic Population,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months",White Non-Hispanic Married Couple Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, White Alone Not Hispanic or Latino",White Non Hispanic Single Mother Family Households,, -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months",Households of White Non-Hispanic Single Mothers Below Poverty Level in The Past 12 Months,, -Count_Household_Houseless,Count of Household: Houseless,Houseless,, -Count_Household_Houseless_Rural,"Count of Household: Houseless, Rural",Houseless in Rural,, -Count_Household_Houseless_Urban,"Count of Household: Houseless, Urban",Houseless in Urban,, -Count_Household_LimitedEnglishSpeakingHousehold,Count of Household: Limited English Speaking Household,Limited English Speaking Households,, -Count_Household_LimitedEnglishSpeakingHousehold_AsianAndPacificIslandLanguagesSpokenAtHome,"Count of Household: Limited English Speaking Household, Asian And Pacific Island Languages",Asians And Pacific Islanders With Limited English Speaking Household,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Asia",Households of Foreign-Born Population in Asia Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: Limited English Speaking Household, Foreign Born, Caribbean",Households of Foreign-Born-Population In the Caribbean Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: Limited English Speaking Household, Foreign Born, Central America Except Mexico",Households of Foreign-Born-Population In Central America Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCountry/MEX,"Count of Household: Limited English Speaking Household, Foreign Born, Country/MEX",Foreign-Born Households in Mexico Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Eastern Asia",Foreign-Born in Eastern Asia Limited English Speaking Households,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Europe",Foreign-Born Population Household In Europe Speaking Limited English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: Limited English Speaking Household, Foreign Born, Latin America",Foreign-Born in Latin America Limited English Speaking Households,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Northern Western Europe",Foreign Born Northern Western European Households Speaking Limited English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: Limited English Speaking Household, Foreign Born, Southamerica",Households With Foreign Born in South America Owners Who Speak Limited English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: Limited English Speaking Household, Foreign Born, South Central Asia",Households of Foreign-Born Population in South Central Asia Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, South Eastern Asia",Limited English Speaking of Foreign Borns in South Eastern Asia Households,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Southern Eastern Europe",Households of Foreign-Born Population in Southern Eastern Europe Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Western Asia",Households of Foreign-Born Population in Western Asia Moderately Fluent in English,, -Count_Household_LimitedEnglishSpeakingHousehold_OtherIndoEuropeanLanguagesSpokenAtHome,"Count of Household: Limited English Speaking Household, Other Indo European Languages",Other Indo-European Languages Speaking Households with Limited English Speaking,, -Count_Household_LimitedEnglishSpeakingHousehold_OtherLanguagesSpokenAtHome,"Count of Household: Limited English Speaking Household, Other Languages",Households Speaking Limited English and Other Languages,, -Count_Household_LimitedEnglishSpeakingHousehold_SpanishSpokenAtHome,"Count of Household: Limited English Speaking Household, Spanish",Spanish Household Limited English Speakers,, -Count_Household_MarriedCoupleFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Married Couple Family Household, Mobile Homes And All Other Types of Units",Married Couple Family Households With Mobile Homes And All Other Types Of Units,, -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied,"Count of Household: Married Couple Family Household, Owner Occupied",Occupied Married Couple Family Households,, -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months",Owner Occupied Married Couple Family Households Below Poverty Level in The Past 12 Months;Married Couple Family Household Owner Occupied Below Poverty Level in The Past 12 Months,, -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied,"Count of Household: Married Couple Family Household, Renter Occupied",Married Couple Family Households Occupied Renter,, -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months",Married Couple Family Households Occupied Renter Living Below Poverty Level in The Past 12 Months,, -Count_Household_MarriedCoupleFamilyHousehold_SingleUnit,"Count of Household: Married Couple Family Household, Single Unit",Married Couple Family Households in Single Unit,, -Count_Household_MarriedCoupleFamilyHousehold_TwoOrMoreUnits,"Count of Household: Married Couple Family Household, Two or More Units",Married Couple Family Households in Two Or More Units,, -Count_Household_MarriedCoupleFamilyHousehold_With0Worker,"Count of Household: Married Couple Family Household, Worker 0",Married Couple Family Household 0 Workers,, -Count_Household_MarriedCoupleFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 0, Below Poverty Level in The Past 12 Months",Married Couple Family Households with 0 Workers Below Poverty Level in The Past 12 Months,, -Count_Household_MarriedCoupleFamilyHousehold_With1Worker,"Count of Household: Married Couple Family Household, Worker 1",Married Couple Family Households With 1 Worker,, -Count_Household_MarriedCoupleFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 1, Below Poverty Level in The Past 12 Months",Married Couple Family Households With One Worker Below Poverty Level in The Past 12 Months,, -Count_Household_MarriedCoupleFamilyHousehold_With2Worker,"Count of Household: Married Couple Family Household, Worker 2",Married Couple Family Households with 2 Workers,, -Count_Household_MarriedCoupleFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 2, Below Poverty Level in The Past 12 Months",Married Couple Family Households with 2 Workers Below Poverty Level in The Past 12 Months,, -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker,"Count of Household: Married Couple Family Household, 3 Worker or More",Married Couple Family Households With 3 Workers or More,, -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months",Married Couple Family Household With 3 Workers or More Below Poverty Level in The Past 12 Months,, -Count_Household_NoComputer,Count of Household: Has Computer is False,Households With Computer False,, -Count_Household_NoInternetAccess,Count of Household: No Internet Access,Households With No Internet Access,, -Count_Household_NonfamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Nonfamily Household, Mobile Homes And All Other Types of Units",Nonfamily Households With Mobile Homes And All Other Types Of Units,, -Count_Household_NonfamilyHousehold_SingleUnit,"Count of Household: Nonfamily Household, Single Unit",Nonfamily Households in Single Unit,, -Count_Household_NonfamilyHousehold_TwoOrMoreUnits,"Count of Household: Nonfamily Household, Two or More Units",Non family Households Two Or More Units,, -Count_Household_OtherFamilyHousehold,Count of Household: Other Family Household,Other Family Households,, -Count_Household_OtherIndoEuropeanLanguagesSpokenAtHome,Count of Household: Other Indo European Languages,Other Indo European Languages Spoken At Home,, -Count_Household_OtherLanguagesSpokenAtHome,Count of Household: Other Languages,Other Languages Speaking Households,, -Count_Household_Rural,Count of Household: Rural,Rural Households,, -Count_Household_ScheduledCaste,Count of Household: Scheduled Caste,Scheduled Caste Households,, -Count_Household_ScheduledCaste_Rural,"Count of Household: Rural, Scheduled Caste",Scheduled Caste Population in Rural,, -Count_Household_ScheduledCaste_Urban,"Count of Household: Urban, Scheduled Caste",Urban Scheduled Castes,, -Count_Household_ScheduledTribe,Count of Household: Scheduled Tribe,Scheduled Tribe Households,, -Count_Household_ScheduledTribe_Rural,"Count of Household: Rural, Scheduled Tribe",Household With Scheduled Tribe In Rural,, -Count_Household_ScheduledTribe_Urban,"Count of Household: Urban, Scheduled Tribe",Scheduled Tribe Households in Urban Areas,, -Count_Household_SingleFatherFamilyHousehold,Count of Household: Single Father Family Household,Single Father Family Households,, -Count_Household_SingleFatherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Single Father Family Household, Mobile Homes And All Other Types of Units",Single Father Family Households With Mobile Homes And All Other Types Of Units,, -Count_Household_SingleFatherFamilyHousehold_SingleUnit,"Count of Household: Single Father Family Household, Single Unit",Single Father Family Households in Single Unit,, -Count_Household_SingleFatherFamilyHousehold_TwoOrMoreUnits,"Count of Household: Single Father Family Household, Two or More Units",Single Father Family Households in Two Or More Units,, -Count_Household_SingleMotherFamilyHousehold,Count of Household: Single Mother Family Household,Single Mother Family Households,, -Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Single Mother Family Household, Mobile Homes And All Other Types of Units",Single Mother Family Households With Mobile Homes And All Other Types Of Units,, -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied,"Count of Household: Single Mother Family Household, Owner Occupied",Single Mother Family Household With Owner Occupied,, -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months",Single Mother Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_SingleMotherFamilyHousehold_RenterOccupied,"Count of Household: Single Mother Family Household, Renter Occupied",Single Mother Family Occupied Households,, -Count_Household_SingleMotherFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months",Single Mother Family Households with Renter Occupied Below Poverty Level in The Past 12 Months,, -Count_Household_SingleMotherFamilyHousehold_SingleUnit,"Count of Household: Single Mother Family Household, Single Unit",Single Mother Family Households With Mobile Homes And All Other Types Of Units,, -Count_Household_SingleMotherFamilyHousehold_TwoOrMoreUnits,"Count of Household: Single Mother Family Household, Two or More Units",Single Mother Family Households in Two Or More Units,, -Count_Household_SingleMotherFamilyHousehold_With0Worker,"Count of Household: Single Mother Family Household, Worker 0",Single Mother Family Household With 0 Workers,, -Count_Household_SingleMotherFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 0, Below Poverty Level in The Past 12 Months",Single Mother Family Households With 0 Workers Below Poverty Level In The Past 12 Months,, -Count_Household_SingleMotherFamilyHousehold_With1Worker,"Count of Household: Single Mother Family Household, Worker 1",Single Mother Family Households With One Worker,, -Count_Household_SingleMotherFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 1, Below Poverty Level in The Past 12 Months",Single Mother Family Households Below Poverty Level in The Past 12 Months,, -Count_Household_SingleMotherFamilyHousehold_With2Worker,"Count of Household: Single Mother Family Household, Worker 2",Single Mother Family Households with 2 Workers,, -Count_Household_SingleMotherFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 2, Below Poverty Level in The Past 12 Months",Single Mother Family Households With 2 Workers Below Poverty Level in The Past 12 Months,, -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker,"Count of Household: Single Mother Family Household, 3 Worker or More",Single Mother Family Households with 3 Workers or More,, -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months","Single Mother Family Households with 3 Worker or More, Below Poverty Level in The Past 12 Months",, -Count_Household_SpanishSpokenAtHome,Count of Household: Spanish,Spanish Speaking Households,, -Count_Household_Urban,Count of Household: Urban,Urban Households,, -Count_Household_With0AvailableVehicles,Count of Household: 0 Available Vehicles,Households With 0 Available Vehicles,, -Count_Household_With1AvailableVehicles,Count of Household: 1 Available Vehicles,Households With 1 Available Vehicles,, -Count_Household_With2AvailableVehicles,Count of Household: 2 Available Vehicles,Households With 2 Available Vehicles,, -Count_Household_With3AvailableVehicles,Count of Household: 3 Available Vehicles,Households With 3 Available Vehicles,, -Count_Household_With4OrMoreAvailableVehicles,Count of Household: 4 Available Vehicles or More,Households With 4 Or More Available Vehicles,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Africa",Foreign Born Households in Africa With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Asia",Foreign Born Households in Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Caribbean",Foreign Born Households in Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Central America Except Mexico",Foreign Born Households in Central America Except Mexico With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Eastern Asia",Foreign Born Households in Eastern Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Europe",Foreign Born Households in Europe With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Latin America",Foreign Born Households in America With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Country/MEX",Foreign Born Households in Mexico With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Northamerica",Foreign Born Households With Cash Assistance In The Past 12 Months _PlaceOfBirthNorthamerica,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Northern Western Europe",Foreign Born Households in Northern Western Europe With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Oceania",Foreign Born Households in Oceania With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Southamerica",Foreign Born Households in South America With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, South Central Asia",Foreign Born Households in South Central Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, South Eastern Asia",Foreign Born Households in South Eastern Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Southern Eastern Europe",Foreign Born Households in Southern Eastern Europe With Cash Assistance In The Past 12 Months,, -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Western Asia",Foreign Born Households in Western Asia With Cash Assistance In The Past 12 Months,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Earnings, Foreign Born, Africa",Foreign Born Households in Africa With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Earnings, Foreign Born, Asia",Foreign Born Households in Asia With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Earnings, Foreign Born, Caribbean",Foreign Born Households in Caribbean With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Earnings, Foreign Born, Central America Except Mexico",Foreign Born Households in Central America Except Mexico With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Earnings, Foreign Born, Eastern Asia",Foreign Born Households in Eastern Asia With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Earnings, Foreign Born, Europe",Foreign Born Households in Europe With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Earnings, Foreign Born, Latin America",Foreign Born Households in Latin America With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Earnings, Foreign Born, Country/MEX",Foreign Born Households in Mexico With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Earnings, Foreign Born, Northamerica",Foreign Born Households in North america With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Earnings, Foreign Born, Northern Western Europe",Foreign Born Households in Northern Western Europe With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Earnings, Foreign Born, Oceania",Foreign Born Households in Oceania With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Earnings, Foreign Born, Southamerica",Foreign Born Households in South America With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Earnings, Foreign Born, South Central Asia",Foreign Born Households in South Central Asia With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Earnings, Foreign Born, South Eastern Asia",Foreign Born Households in South Eastern Asia With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Earnings, Foreign Born, Southern Eastern Europe",Foreign Born Households in Southern Eastern Europe With Earnings,, -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Earnings, Foreign Born, Western Asia",Foreign Born Households in Western Asia With Earnings,, -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, No Workers in The Past 12 Months",Households With Food Stamps And Without Workers In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, One Worker in The Past 12 Months",Family Households With Food Stamps And One Worker In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, Two or More Workers in The Past 12 Months",Family Households With Food Stamps And Two Or More Workers In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Africa",Foreign Born Households in Africa With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Asia",Foreign Born Households in Asia With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Caribbean",Foreign Born Households in Caribbean With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Central America Except Mexico",Foreign Born Households in Central America Except Mexico With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Eastern Asia",Foreign Born Households in Eastern Asia With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Europe",Foreign Born Households in Europe With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Latin America",Foreign Born Households in Latin America With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Country/MEX",Foreign Born Households in Mexico With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Northamerica",Foreign Born Households in North America With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Northern Western Europe",Foreign Born Households in Northern Western Europe With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Oceania",Foreign Born Households in Oceania With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Southamerica",Foreign Born Households in South America With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, South Central Asia",Foreign Born Households in South Central Asia With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, South Eastern Asia",Foreign Born Households in South Eastern Asia With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Southern Eastern Europe",Foreign Born Households in Southern Eastern Europe With Food Stamps In The Past 12 Months,, -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Western Asia",Foreign Born Households in Western Asia With Food Stamps In The Past 12 Months,, -Count_Household_WithInternetSubscription,Count of Household: With Internet Subscription,Households With Internet Subscriptions,, -Count_Household_WithInternetSubscription_BroadbandInternetOfAnyType,Count of Household: Broadband Internet of Any Type,Households with Broadband Internet of Any Type,, -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,Count of Household: Broadband Internet Such as Cable Fiber Optic or Dsl,Households With Broadband Internet Such as Cable Fiber Optic or Dsl,, -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDslOnly,Count of Household: Broadband Internet Such as Cable Fiber Optic or Dsl Only,Households with Broadband Internet Such as Cable Fiber Optic or Dsl Only,, -Count_Household_WithInternetSubscription_CellularData,Count of Household: Cellular Data,Households With Cellular Data,, -Count_Household_WithInternetSubscription_CellularDataOnly,Count of Household: Cellular Data Only,Households With Cellular Data Only,, -Count_Household_WithInternetSubscription_DialUpInternetOnly,Count of Household: Dial Up Internet Only,Households With Dial Up Internet Only,, -Count_Household_WithInternetSubscription_OtherInternetServiceOnly,Count of Household: Other Internet Service Only,Households With Other Internet Services,, -Count_Household_WithInternetSubscription_SatelliteInternetService,Count of Household: Satellite Internet Service,Satellite Internet Service Households,, -Count_Household_WithInternetSubscription_SatelliteInternetServiceWithNoOtherTypeOfInternetSubscription,Count of Household: Satellite Internet Service With No Other Type of Internet Subscription,Satellite Internet Service With No Other Type of Internet Subscription Households,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Africa",Foreign Born Households in Africa With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Asia",Foreign Born Households in Asia With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Caribbean",Foreign Born Households in Caribbean With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Central America Except Mexico",Foreign Born Households in Central America Except Mexico With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Eastern Asia",Foreign Born Households in Eastern Asia With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Europe",Foreign Born Households in Europe With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Latin America",Foreign Born Households in Latin America With Retirement Income In ThePast12Months__PlaceOfBirth,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Country/MEX",Foreign Born Households in Mexico With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Northamerica",Foreign Born Households in North America With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Northern Western Europe",Foreign Born Households in Northern Western Europe With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Oceania",Foreign Born Households in Oceania With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Southamerica",Foreign Born Households in South America With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, South Central Asia",Foreign Born Households in South Central Asia With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, South Eastern Asia",Foreign Born Households in South Eastern Asia With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Southern Eastern Europe",Foreign Born Households in Southern Eastern Europe With Retirement Income In The Past 12 Months,, -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Western Asia",Foreign Born Households in Western Asia With Retirement Income In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Africa",Foreign Born Households in Africa With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Asia",Foreign Born Households in Asia With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Caribbean",Foreign Born Households in Caribbean With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Central America Except Mexico",Foreign Born Households in With SSI In Central America Except Mexico The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Eastern Asia",Foreign Born Households in Eastern Asia With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Europe",Foreign Born Households in Europe With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Latin America",Foreign Born Households in Latin America With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Country/MEX",Foreign Born Households in Mexico With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Northamerica",Foreign Born Households in North America With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Northern Western Europe",Foreign Born Households in Northern Western Europe With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Oceania",Foreign Born Households in Oceania With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Southamerica",Foreign Born Households in South America With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, South Central Asia",Foreign Born Households in South Central Asia With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, South Eastern Asia",Foreign Born Households in South Eastern Asia With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Southern Eastern Europe",Foreign Born Households in Southern Eastern Europe With SSI In The Past 12 Months,, -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Western Asia",Foreign Born Households in Western Asia With SSI In The Past 12 Months,, -Count_HousingUnit_1940To1949DateBuilt,Housing Units Built Between 1940 and 1949,Housing Units Built Between 1940 to 1949,, -Count_HousingUnit_1950To1959DateBuilt,Housing Units Built Between 1950 and 1959,Housing Units Built Between 1950 to 1959,, -Count_HousingUnit_1960To1969DateBuilt,Housing Units Built Between 1960 and 1969,Housing Units Built Between 1960 to 1969,, -Count_HousingUnit_1970To1979DateBuilt,Housing Units Built Between 1970 and 1979,Housing Units Built Between 1970 to 1979,, -Count_HousingUnit_1980To1989DateBuilt,Housing Units Built Between 1980 and 1989,Housing Units Built Between 1980 to 1989,, -Count_HousingUnit_1990To1999DateBuilt,Housing Units Built Between 1990 and 1999,Housing Units Built Between 1990 to 1999,, -Count_HousingUnit_2000To2004DateBuilt,Count of Housing Unit: Built Between 2000 And 2004,Housing Units Built Between 2000 and 2004,, -Count_HousingUnit_2000To2009DateBuilt,Housing Units Built Between 2000 and 2009,Housing Units Built Between 2000 to 2009,, -Count_HousingUnit_2005OrLaterDateBuilt,Count of Housing Unit: Built After 2005,Housing Units Built After 2005,, -Count_HousingUnit_2010OrLaterDateBuilt,Housing Units Built in 2010 or Later,Housing Units Built in 2010 or Later,, -Count_HousingUnit_2010To2013DateBuilt,Count of Housing Unit: Built Between 2010 And 2013,Count of Housing Unit Built Between 2010 And 2013,, -Count_HousingUnit_2014OrLaterDateBuilt,Count of Housing Unit: Built After 2014,Housing Units Built After 2014,, -Count_HousingUnit_Before1939DateBuilt,Housing Units Built Before 1939,Housing Units Built Before 1939,, -Count_HousingUnit_CompleteKitchenFacilities_OccupiedHousingUnit,Count of Housing Unit: Complete Kitchen Facilities,Housing Units With Complete Kitchen Facilities,, -Count_HousingUnit_CompletePlumbingFacilities_OccupiedHousingUnit,Count of Housing Unit: Complete Plumbing Facilities,Complete Plumbing Facilities,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Asia",Housing Units Occupied By Population Foreign Born In Asia,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Caribbean",Housing Units Occupied by Foreign-Born Population In The Caribbean,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Central America Except Mexico","Housing Units Occupied By Population Foreign Born in Central America, Except Mexico",, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCountry/MEX,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Country/MEX",Housing Units Occupied by Foreign-Born Population in Mexico,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Eastern Asia",Housing Units Occupied By Population Foreign-Born In Eastern Asia,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Europe",Foreign-Born Population in Europe Occupying Housing Units,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Latin America",Housing Units Occupied By People Foreign Born In Latin America,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Northern Western Europe",Foreign-Born Population in Northern Western Europe Occupying Housing Units,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Southamerica",Occupied Housing Units of Foreign-Born Population in South America,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, South Central Asia",Foreign-Born Population in South Central Asia Occupied Housing Unit,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, South Eastern Asia",Occupied Housing Unit By Foreign-Born Population In South-Eastern Asia,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Southern Eastern Europe",Foreign-Born in Southern Eastern Europe With Occupied Housing Unit,, -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Western Asia",Housing Units Occupied By Tenants Foreign Born In Western Asia,, -Count_HousingUnit_HomeValue1000000OrMoreUSDollar,"Housing Units Valued at $1,000,000 or More","Housing Units Value with 1,000,000 UDS or More",, -Count_HousingUnit_HomeValue1000000To1499999USDollar,"Homes Valued Between $1,000,000 and $1,499,999","Homes Valued Between $1,000,000 And $1,499,999",, -Count_HousingUnit_HomeValue100000To124999USDollar,"Homes Valued Between $100,000 and $124,999","Homes Valued Between $100,000 And $124,999",, -Count_HousingUnit_HomeValue100000To199999USDollar,"Count of Housing Unit: 100,000 - 199,999 USD",,, -Count_HousingUnit_HomeValue10000To14999USDollar,"Homes Valued Between $10,000 and $14,999","Homes Valued Between $10,000 And $14,999",, -Count_HousingUnit_HomeValue125000To149999USDollar,"Homes Valued Between $125,000 and $149,999","Homes Valued Between $125,000 And $149,999",, -Count_HousingUnit_HomeValue1500000To1999999USDollar,"Homes Valued Between $1,500,000 and $1,999,999","Homes Valued Between $1,500,000 And $1,999,999",, -Count_HousingUnit_HomeValue150000To174999USDollar,"Homes Valued Between $150,000 and $174,999","Homes Valued Between $150,000 And $174,999",, -Count_HousingUnit_HomeValue15000To19999USDollar,"Homes Valued Between $15,000 to $19,999","Homes Valued Between $15,000 to $19,999",, -Count_HousingUnit_HomeValue175000To199999USDollar,"Homes Valued Between $175,000 to $199,999","Homes Valued Between $175,000 to $199,999",, -Count_HousingUnit_HomeValue2000000OrMoreUSDollar,"Homes Valued at $2,000,000 or More","Homes Valued at $2,000,000 or More",, -Count_HousingUnit_HomeValue200000To249999USDollar,"Homes Valued Between $200,000 to $249,999","Homes Valued Between $200,000 to $249,999",, -Count_HousingUnit_HomeValue200000To299999USDollar,"Count of Housing Unit: 200,000 - 299,999 USD",,, -Count_HousingUnit_HomeValue20000To24999USDollar,"Homes Valued Between $20,000 to $24,999","Homes Valued Between $20,000 to $24,999",, -Count_HousingUnit_HomeValue250000To299999USDollar,"Homes Valued Between $250,000 to $299,999","Homes Valued Between $250,000 to $299,999",, -Count_HousingUnit_HomeValue25000To29999USDollar,"Homes Valued Between $25,000 to $29,999","Homes Valued Between $25,000 to $29,999",, -Count_HousingUnit_HomeValue300000To399999USDollar,"Housing Units Valued at $300,000-$399,999","Housing Units Value with 300,000 to 399,999 USD",, -Count_HousingUnit_HomeValue300000To499999USDollar,"Count of Housing Unit: 300,000 - 499,999 USD",,, -Count_HousingUnit_HomeValue30000To34999USDollar,"Homes Valued Between $30,000 to $34,999","Homes Valued Between $30,000 to $34,999",, -Count_HousingUnit_HomeValue35000To39999USDollar,"Homes Valued Between $35,000 to $39,999","Homes Valued Between $35,000 to $39,999",, -Count_HousingUnit_HomeValue400000To499999USDollar,"Housing Units Valued at $400,000-$499,999","Housing Units Value with 400,000 to 499,999 USD",, -Count_HousingUnit_HomeValue40000To49999USDollar,"Homes Valued Between $40,000 to $49,999","Homes Valued Between $40,000 to $49,999",, -Count_HousingUnit_HomeValue500000To749999USDollar,"Housing Units Valued at $500,000-$749,999","Housing Units Value with 500,000 to 749,999 USD",, -Count_HousingUnit_HomeValue500000To999999USDollar,"Count of Housing Unit: 500,000 - 999,999 USD",,, -Count_HousingUnit_HomeValue50000To59999USDollar,"Homes Valued Between $50,000 to $59,999","Homes Valued Between $50,000 to $59,999",, -Count_HousingUnit_HomeValue50000To99999USDollar,"Count of Housing Unit: 50,000 - 99,999 USD",,, -Count_HousingUnit_HomeValue60000To69999USDollar,"Homes Valued Between $60,000 to $69,999","Homes Valued Between $60,000 to $69,999",, -Count_HousingUnit_HomeValue70000To79999USDollar,"Homes Valued Between $70,000 to $79,999","Homes Valued Between $70,000 to $79,999",, -Count_HousingUnit_HomeValue750000To999999USDollar,"Housing Units Valued at $750,000-$999,999","Housing Units Value with 750,000 to 999,999 USD",, -Count_HousingUnit_HomeValue80000To89999USDollar,"Homes Valued Between $80,000 to $89,999","Homes Valued Between $80,000 to $89,999",, -Count_HousingUnit_HomeValue90000To99999USDollar,"Homes Valued Between $90,000 to $99,999","Homes Valued Between $90,000 to $99,999",, -Count_HousingUnit_HomeValueUpto10000USDollar,"Homes Valued at $10,000 or Less","Homes Valued at $10,000 or Less",, -Count_HousingUnit_HomeValueUpto49999USDollar,"Count of Housing Unit: 49,999 USD or Less",,, -Count_HousingUnit_HouseholderAge35OrLessYears_OccupiedHousingUnit,"Count of Housing Unit: 35 Years or Less, Occupied Housing Unit",Housing Units with Household Age 35 Years or Less,, -Count_HousingUnit_HouseholderAge35To44Years_OccupiedHousingUnit,"Count of Housing Unit: 35 - 44 Years, Occupied Housing Unit",Occupied Housing Units Aged 35 to 44 Years,, -Count_HousingUnit_HouseholderAge45To54Years_OccupiedHousingUnit,"Count of Housing Unit: 45 - 54 Years, Occupied Housing Unit",Population Age 45 to 54 Years With Occupied Housing Units,, -Count_HousingUnit_HouseholderAge55To64Years_OccupiedHousingUnit,"Count of Housing Unit: 55 - 64 Years, Occupied Housing Unit",Population Aged 55 to 64 Years Occupying Housing Units,, -Count_HousingUnit_HouseholderAge65To74Years_OccupiedHousingUnit,"Count of Housing Unit: 65 - 74 Years, Occupied Housing Unit",Occupied Housing Units by Population Aged 65 to 74 Years,, -Count_HousingUnit_HouseholderAge75To84Years_OccupiedHousingUnit,"Count of Housing Unit: 75 - 84 Years, Occupied Housing Unit",Occupied Housing Unit With Householders Aged 75 to 84 Years,, -Count_HousingUnit_HouseholderAge85OrMoreYears_OccupiedHousingUnit,"Count of Housing Unit: 85 Years or More, Occupied Housing Unit",Population Aged 85 Years or More With Occupied Housing Unit,, -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit",Population With Bachelor's Degree or Higher Occupying Housing Units,, -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OwnerOccupied,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit, Owner Occupied",Owner Occupied Housing Units With Bachelor's Degrees Or Higher,, -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit, Renter Occupied",Population With Bachelor's Degree or Higher Occupying Housing Units,, -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OccupiedHousingUnit,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit",High School Graduates Includes Equivalency Occupied Housing Unit,, -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OwnerOccupied,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit, Owner Occupied",Housing Units Occupied by High School Graduates Includes Equivalency,, -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_RenterOccupied,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit, Renter Occupied",Housing Units Occupied By Tenants Who Are Highschool Graduates or Equivalent,, -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OccupiedHousingUnit,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit",Housing Units Occupied By Less Than High School Graduates,, -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OwnerOccupied,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit, Owner Occupied",Less Than High School Graduates Owning Housing Units,, -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_RenterOccupied,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit, Renter Occupied",Houses Of Less Than High School Graduate Tenants,, -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OccupiedHousingUnit,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit",Occupied Housing Units With Some College or Associate's Degrees,, -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OwnerOccupied,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit, Owner Occupied",Owners of Housing Units With Some College or Associate's Degrees,, -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_RenterOccupied,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit, Renter Occupied",Housing Units Occupied by Renters With Some College or Associate's Degree,, -Count_HousingUnit_HouseholderRaceAmericanIndianAndAlaskaNativeAlone,Count of Housing Unit: American Indian or Alaska Native Alone,American Indian or Alaska Native Housing Units,, -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_OwnerOccupied,"Count of Housing Unit: American Indian or Alaska Native Alone, Owner Occupied",Housing Units Occupied by American Indian Or Alaska Native Population,, -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_RenterOccupied,"Count of Housing Unit: American Indian or Alaska Native Alone, Renter Occupied",American Indian or Alaska Native Population Occupying Housing Units,, -Count_HousingUnit_HouseholderRaceAsianAlone_OwnerOccupied,"Count of Housing Unit: Asian Alone, Owner Occupied",Housing Units Occupied by Asian Population,, -Count_HousingUnit_HouseholderRaceAsianAlone_RenterOccupied,"Count of Housing Unit: Asian Alone, Renter Occupied",Asian Housing Units Occupied,, -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_OwnerOccupied,"Count of Housing Unit: Black or African American Alone, Owner Occupied",Housing Units Occupied By African Americans,, -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_RenterOccupied,"Count of Housing Unit: Black or African American Alone, Renter Occupied",African American Population With Rented Occupied Housing Units,, -Count_HousingUnit_HouseholderRaceHispanicOrLatino_OwnerOccupied,"Count of Housing Unit: Hispanic or Latino, Owner Occupied",Hispanic Owner Occupants,, -Count_HousingUnit_HouseholderRaceHispanicOrLatino_RenterOccupied,"Count of Housing Unit: Hispanic or Latino, Renter Occupied",Hispanic Renter Occupied Housing Units,, -Count_HousingUnit_HouseholderRaceNativeHawaiianAndOtherPacificIslanderAlone,Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone,Native Hawaiians or Other Pacific Islanders With Housing Units,, -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_OwnerOccupied,"Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone, Owner Occupied",Housing Units Occupied by Native Hawaiian Or Other Pacific Islander Population,, -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_RenterOccupied,"Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone, Renter Occupied",Native Hawaiian Or Other Pacific Islander Population Rented Housing Units,, -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_OwnerOccupied,"Count of Housing Unit: Some Other Race Alone, Owner Occupied",Housing Unit of Some Other Race Owner Occupied,, -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_RenterOccupied,"Count of Housing Unit: Some Other Race Alone, Renter Occupied",Other Race Occupying Housing Units,, -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied,"Count of Housing Unit: Two or More Races, Owner Occupied",Housing Units Occupied by Multiracial Population,, -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied,"Count of Housing Unit: Two or More Races, Renter Occupied",Housing Units Occupied by Multiracial Population,, -Count_HousingUnit_HouseholderRaceWhiteAlone_OwnerOccupied,"Count of Housing Unit: White Alone, Owner Occupied",Housing Units With White Population,, -Count_HousingUnit_HouseholderRaceWhiteAlone_RenterOccupied,"Count of Housing Unit: White Alone, Renter Occupied",Rental Housing Units Occupied by White Population,, -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino,Count of Housing Unit: White Alone Not Hispanic or Latino,White Non-Hispanic with Housing Units,, -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_OwnerOccupied,"Count of Housing Unit: White Alone Not Hispanic or Latino, Owner Occupied",Housing Units Occupied By Non-Hispanic And White Population,, -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_RenterOccupied,"Count of Housing Unit: White Alone Not Hispanic or Latino, Renter Occupied",Housing Units Occupied by White Non-Hispanic Population,, -Count_HousingUnit_IncompleteKitchenFacilities_OccupiedHousingUnit,Count of Housing Unit: Incomplete Kitchen Facilities,Housing Units With Incomplete Kitchen Facilities,, -Count_HousingUnit_IncompletePlumbingFacilities_OccupiedHousingUnit,Count of Housing Unit: Incomplete Plumbing Facilities,Housing Units with Incomplete Plumbing,, -Count_HousingUnit_NoCashRent,Count of Housing Unit: No Cash Rent,Housing Unit No Cash Rent,, -Count_HousingUnit_OccupiedHousingUnit,Count of Housing Unit: Occupied Housing Unit,Occupied Housing Units,, -Count_HousingUnit_WithCashRent,Count of Housing Unit: With Cash Rent,Housing Unit With Cash Rent,, -Count_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied,Count of Housing Unit: With Mortgage,Housing Units With Mortgage,, -Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,Count of Housing Unit: Without Mortgage,Housing Units Without Mortgage,, -Count_HousingUnit_WithRent_1000To1249USDollar,"Count of Housing Unit: 1,000 - 1,249 USD","1,000 to 1,249 USD Rental Housing Units",, -Count_HousingUnit_WithRent_100To149USDollar,Count of Housing Unit: 100 - 149 USD,Housing Units of 100 to 149 USD,, -Count_HousingUnit_WithRent_1250To1499USDollar,"Count of Housing Unit: 1,250 - 1,499 USD","Housing Units with 1,250 to 1,499 USD",, -Count_HousingUnit_WithRent_1500To1999USDollar,"Count of Housing Unit: 1,500 - 1,999 USD","Rental Housing Units Costing 1,500 to 1,999 USD",, -Count_HousingUnit_WithRent_150To199USDollar,Count of Housing Unit: 150 - 199 USD,Housing Units With An Income of 150 to 199 USD,, -Count_HousingUnit_WithRent_2000OrMoreUSDollar,"Housing Units Valued at $2,000 or More","Housing Units Value with 2,000 USD or More",, -Count_HousingUnit_WithRent_2000To2499USDollar,"Count of Housing Unit: 2,000 - 2,499 USD",Housing Unit Of 200 To 2499 USD,, -Count_HousingUnit_WithRent_200To249USDollar,Count of Housing Unit: 200 - 249 USD,Housing Units Costing 200 to 249 USD,, -Count_HousingUnit_WithRent_2500To2999USDollar,"Count of Housing Unit: 2,500 - 2,999 USD","2500 to 2999 USD Rental Housing Units;Rental Housing Units Costing 2,500 to 2,999 USD",, -Count_HousingUnit_WithRent_250To299USDollar,Count of Housing Unit: 250 - 299 USD,Housing Units Earning 250 to 299 USD,, -Count_HousingUnit_WithRent_3000To3499USDollar,"Count of Housing Unit: 3,000 - 3,499 USD","Housing Unit Earning 3,000 to 3,499 USD",, -Count_HousingUnit_WithRent_300To349USDollar,Count of Housing Unit: 300 - 349 USD,Housing Units Costing 300 to 349 USD,, -Count_HousingUnit_WithRent_3500OrMoreUSDollar,"Count of Housing Unit: 3,500 USD or More","Housing Units Earning 3,500 USD or More",, -Count_HousingUnit_WithRent_350To399USDollar,Count of Housing Unit: 350 - 399 USD,Housing Units with 350 to 399 USD,, -Count_HousingUnit_WithRent_400To449USDollar,Count of Housing Unit: 400 - 449 USD,Housing Units Earning 400 to 449 USD,, -Count_HousingUnit_WithRent_450To499USDollar,Count of Housing Unit: 450 - 499 USD,Rental Housing Units Costing 450 To 499 USD,, -Count_HousingUnit_WithRent_500To549USDollar,Count of Housing Unit: 500 - 549 USD,Housing Units Earning 500 to 549 USD,, -Count_HousingUnit_WithRent_550To599USDollar,Count of Housing Unit: 550 - 599 USD,Housing Units Earning 550 to 599 USD,, -Count_HousingUnit_WithRent_600To649USDollar,Count of Housing Unit: 600 - 649 USD,Housing Units Earning 600 to 649 USD,, -Count_HousingUnit_WithRent_650To699USDollar,Count of Housing Unit: 650 - 699 USD,,, -Count_HousingUnit_WithRent_700To749USDollar,Count of Housing Unit: 700 - 749 USD,Housing Units Earning 700 to 749 USD,, -Count_HousingUnit_WithRent_750To799USDollar,Count of Housing Unit: 750 - 799 USD,750 to 799 USD Renal Housing Units,, -Count_HousingUnit_WithRent_800To899USDollar,Count of Housing Unit: 800 - 899 USD,Housing Units of 800 to 899 USD,, -Count_HousingUnit_WithRent_900To999USDollar,Count of Housing Unit: 900 - 999 USD,,, -Count_HousingUnit_WithRent_Upto100USDollar,Count of Housing Unit: 100 USD or Less,,, -Count_HousingUnit_WithTotal1Rooms,Count of Housing Unit: Rooms 1,,, -Count_HousingUnit_WithTotal2Rooms,Count of Housing Unit: Rooms 2,Room 2 Housing Units,, -Count_HousingUnit_WithTotal3Rooms,Count of Housing Unit: Rooms 3,,, -Count_HousingUnit_WithTotal4Rooms,Count of Housing Unit: Rooms 4,Housing Units With 4 Rooms,, -Count_HousingUnit_WithTotal5Rooms,Count of Housing Unit: Rooms 5,Housing Units With 5 Rooms,, -Count_HousingUnit_WithTotal6Rooms,Count of Housing Unit: Rooms 6,Housing Units With 6 Rooms,, -Count_HousingUnit_WithTotal7Rooms,Count of Housing Unit: Rooms 7,Housing Units With Rooms 7,, -Count_HousingUnit_WithTotal8Rooms,Count of Housing Unit: Rooms 8,Housing Units With 8 Rooms,, -Count_HousingUnit_WithTotal9OrMoreRooms,Count of Housing Unit: 9 Rooms or More,9 Rooms or More Housing Units,, -Count_IceStormEvent,Count of Ice Storm Event,Ice Storm Events,, -Count_LightningEvent,Count of Lightning Event,Lightning Events,, -Count_MarineHailEvent,Count of Marine Hail Event,Marine Hail Events,, -Count_MarineHighWindEvent,Count of Marine High Wind Event,Marine High Wind Events,, -Count_MarineStrongWindEvent,Count of Marine Strong Wind Event,Marine Strong Wind Events,, -Count_MarineThunderstormWindEvent,Count of Marine Thunderstorm Wind Event,Marine Thunderstorm Wind Events,, -Count_MarineTropicalStormEvent,Count of Marine Tropical Storm Event,,, -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_NonSerotypeB,"Count of Haemophilus influenzae, invasive, Non-B Serotype incidents, age 5 or less years",Invasive Non-Serotype B Haemophilus Influenzae Incidents in Population Aged 5 Years or Less,, -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_UnknownSerotype,"Count of Haemophilus influenzae, invasive, Unknown Serotype incidents, age 5 or less years",Haemophilus Influenzae Invasive Unknown Serotype Incidents Age 5 or Less Years,, -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_ConfirmedCase,"Count of Invasive pneumococcal, Confirmed incidents, age 5 or less years",Confirmed Pneumococcal Incidents of Population Aged 5 or Less Years,, -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease,"Count of Invasive pneumococcal disease incidents, age 5 or less years",Invasive Pneumococcal Disease Incidents In People Aged 5 Years Or Less,, -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,"Count of Invasive, Confirmed pneumococcal disease incidents, age 5 or less years",Confirmed Pneumococcal Disease Incidents for People Below 5 Years,, -Count_MedicalConditionIncident_ConditionAIDS,Count of Acquired Immune Deficiency Syndrome incidents,AIDS Medical Incidents,, -Count_MedicalConditionIncident_ConditionBotulism,Count of Botulism incidents,Botulism Incidents,, -Count_MedicalConditionIncident_ConditionBrucellosis,Count of Brucellosis incidents,Brucellosis Incidents,, -Count_MedicalConditionIncident_ConditionCampylobacteriosis,Count of Campylobacteriosis incidents,Campylobacteriosis Incidents,, -Count_MedicalConditionIncident_ConditionChickenpox,Count of Chickenpox incidents,Chickenpox Incidents,, -Count_MedicalConditionIncident_ConditionChikungunya,Count of Chikungunya virus disease incidents,Chikungunya Incidents,, -Count_MedicalConditionIncident_ConditionChlamydia,Count of Chlamydia trachomatis infection incidents,Chlamydia Incidents,, -Count_MedicalConditionIncident_ConditionCongenitalSyphilis,Count of Congenital Syphilis incidents,Congenital Syphilis Incidents,, -Count_MedicalConditionIncident_ConditionCryptosporidiosis,Count of Cryptosporidiosis incidents,Cryptosporidiosis Incidents,, -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ConfirmedCase,"Count of Cryptosporidiosis, Confirmed incidents",Confirmed cases of Cryptosporidiosis Incidents,, -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ProbableCase,"Count of Cryptosporidiosis, Probable incidents",Probable Cryptosporidiosis Incidents,, -Count_MedicalConditionIncident_ConditionCyclosporiasis,Count of Cyclosporiasis incidents,Cyclosporiasis Incidents,, -Count_MedicalConditionIncident_ConditionDengueDisease,Count of Dengue incidents,Dengue Disease Incidents,, -Count_MedicalConditionIncident_ConditionGiardiasis,Count of Giardiasis incidents,Giardiasis Incidents,, -Count_MedicalConditionIncident_ConditionGonorrhea,Count of Gonorrhea incidents,Gonorrhea Incidents,, -Count_MedicalConditionIncident_ConditionHaemophilusInfluenzae_InvasiveDisease,"Count of Haemophilus influenzae, invasive, All ages, all Serotypes incidents",Haemophilus Influenzae Invasive Disease Incidents,, -Count_MedicalConditionIncident_ConditionHemolyticUremicSyndrome_PostDiarrheal,"Count of Hemolytic uremic syndrome, post-diarrheal incidents",Hemolytic Uremic Syndrome Post Diarrheal Incidents,, -Count_MedicalConditionIncident_ConditionHepatitisA_AcuteCondition,Count of Acute Hepatitis A incidents,Hepatitis A Acute Incidents,, -Count_MedicalConditionIncident_ConditionHepatitisB_AcuteCondition,Count of Acute Hepatitis B incidents,Hepatitis B Acute Condition Incidents,, -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ConfirmedCase,"Count of Acute, Confirmed Hepatitis C incidents",Acute Hepatitis C incidents,, -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ProbableCase,"Count of Acute, Probable Hepatitis C incidents",Probable Cases Of Acute Hepatitis C Incidents,, -Count_MedicalConditionIncident_ConditionHIVAIDS,Count of HIV/Acquired Immune Deficiency Syndrome incidents,HIV AIDS Incidents,, -Count_MedicalConditionIncident_ConditionHumanGranulocyticAnaplasmosis,Count of Anaplasma phagocytophilum infection incidents,Human Granulocytic Anaplasmosis Incidents,, -Count_MedicalConditionIncident_ConditionHumanMonocyticEhrlichiosis,Count of Ehrlichia chaffeensis incidents,Human Monocytic Ehrlichiosis Medical Incidents,, -Count_MedicalConditionIncident_ConditionInfantBotulism,Count of Infant Botulism incidents,Infant Botulism Incidents,, -Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,"Count of Influenza, pediatric mortality incidents",Pediatric Mortality Incidents,, -Count_MedicalConditionIncident_ConditionLegionnairesDisease,Count of Legionellosis incidents,Legionnaires Disease Incidents,, -Count_MedicalConditionIncident_ConditionListeriosis,Count of Listeriosis incidents,Listeriosis Incidents,, -Count_MedicalConditionIncident_ConditionListeriosis_ConfirmedCase,Count of Confirmed Listeriosis incidents,Confirmed Listeriosis incidents,, -Count_MedicalConditionIncident_ConditionLymeDisease,Count of Lyme disease incidents,Lyme Disease Incidents,, -Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,"Count of Lyme, Confirmed incidents",Confirmed Incidents of Lyme Disease,, -Count_MedicalConditionIncident_ConditionLymeDisease_ProbableCase,"Count of Lyme, Probable incidents",Probable Lyme Incidents,, -Count_MedicalConditionIncident_ConditionMalaria,Count of Malaria incidents,Malaria Incidents,, -Count_MedicalConditionIncident_ConditionMeasles,Count of Measles incidents,Measles Incidents,, -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis,"Count of Meningococcal, All serogroups incidents",Meningococcal Meningitis Incidents,, -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease,"Count of invasive, all groups Meningococcal disease incidents",Meningococcal Meningitis Invasive Disease Incidents,, -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease_UnknownSerogroups,"Count of invasive, Unknown serogroup Meningococcal disease incidents",Unknown Serogroup Invasive Meningococcal Disease Incidents,, -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_UnknownSerogroups,"Count of Meningococcal, Unknown serogroup incidents",Unknown Meningococcal Serogroup Incidents,, -Count_MedicalConditionIncident_ConditionMumps,Count of Mumps incidents,Mumps Incidents,, -Count_MedicalConditionIncident_ConditionPertussis,Count of Pertussis incidents,Pertussis Incidents,, -Count_MedicalConditionIncident_ConditionQFever,Count of Q fever incidents,Q fever Incidents,, -Count_MedicalConditionIncident_ConditionQFever_AcuteCondition,"Count of Q fever, Acute incidents",Q fever Acute Incidents,, -Count_MedicalConditionIncident_ConditionRabiesinhuman,Count of Rabies incidents,Rabies Incidents,, -Count_MedicalConditionIncident_ConditionSalmonellosisExceptTyphiAndParatyphi,Count of Salmonellosis incidents,Salmonellosis Incidents,, -Count_MedicalConditionIncident_ConditionShigaToxinEColi,Count of Shiga toxin-producing Escherichia Coli incidents,Shiga Toxin-producing Escherichia Coli Incidents,, -Count_MedicalConditionIncident_ConditionShigellosis,Count of Shigellosis incidents,Shigellosis Incidents,, -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis,Count of Spotted fever rickettsiosis incidents,Spotted Fever Rickettsiosis Incidents,, -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis_ProbableCase,Count of Probable Spotted fever rickettsiosis incidents,Probable Spotted Fever Rickettsiosis Incidents,, -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosisIncludingRockyMountainSpottedFever,Count of Pobable spotted fever rickettsiosis including RMSF incidents,Probable Spotted Fever Rickettsiosis Including RMSF Incidents,, -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_ConfirmedCase,"Count of Invasive pneumococcal, All ages, Confirmed incidents",Pneumococcal All Ages Confirmed Incidents,, -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease,Count of Invasive pneumococcal disease incidents,Invasive Pneumococcal Disease Incidents,, -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,"Count of Invasive, Confirmed pneumococcal disease incidents",Invasive Pneumococcal Diseases,, -Count_MedicalConditionIncident_ConditionSyphilis,Count of Syphilis incidents,Syphilis Incidents,, -Count_MedicalConditionIncident_ConditionSyphilisPrimaryAndSecondary,Count of Syphilis primary and secondary incidents,Syphilis Primary and Secondary Incidents,, -Count_MedicalConditionIncident_ConditionTetanus,Count of Tetanus incidents,Tetanus Incidents,, -Count_MedicalConditionIncident_ConditionTuberculosis,Count of Tuberculosis incidents,Tuberculosis Incidents,, -Count_MedicalConditionIncident_ConditionTularemia,Count of Tularemia incidents,Tularemia Incidents,, -Count_MedicalConditionIncident_ConditionTyphoidFever,Count of Typhoid fever incidents,Typhoid Fever Incidents,, -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera,Count of Vibriosis incidents,Vibriosis Incidents,, -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ConfirmedCase,Count of Confirmed Vibriosis except cholera incidents,"Confirmed Vibriosis, Except Cholera Incidents",, -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ProbableCase,Count of Probable Vibriosis except cholera incidents,"Probable Vibriosis, Except Cholera Incidents",, -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NeuroinvasiveDisease,Count of Neuroinvasive West Nile virus disease incidents,Neuroinvasive West Nile Virus Disease Incidents,, -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NonNeuroinvasiveDisease,"Count of West Nile virus, Non-neuroinvasive incidents",West Nile Virus Non-neuroinvasive Incidents,, -Count_MedicalConditionIncident_ConditionZikaVirusDisease_NonCongenitalDisease,"Count of Zika fever, non-congenital incidents",Zika Fever Non-congenital Incidents,, -Count_MedicalConditionIncident_ConditionZikaVirusInfection_NonCongenitalDisease,"Count of Zika virus infection, non-congenital incidents",Zika Virus Infection Non-congenital Incidents,, -Count_MedicalConditionIncident_PatientDeceased_AnimalContactTransmission,"Count of Medical Condition Incident: Patient Deceased, Animal Contact Transmission",Medical Incidents With Animal Contact Transmission in Deceased Patients,, -Count_MedicalConditionIncident_PatientDeceased_FoodborneTransmission,"Count of Medical Condition Incident: Patient Deceased, Foodborne Transmission",Medical Incidents with Foodborne Transmission in Deceased Patients,, -Count_MedicalConditionIncident_PatientDeceased_Indeterminate_Other_UnknownTramissionMode,"Count of Medical Condition Incident: Patient Deceased, Indeterminate or Other or Unknown Tramission Mode",Medical Condition Incidents with Unknown Transmission Mode in Deceased Patients,, -Count_MedicalConditionIncident_PatientDeceased_PersonToPersonTransmission,"Count of Medical Condition Incident: Patient Deceased, Person To Person Transmission",Medical Conditions Incidents With Inter-Person Transmission in Deceased Patients,, -Count_MedicalConditionIncident_PatientDeceased_WaterborneTransmission,"Count of Medical Condition Incident: Patient Deceased, Waterborne Transmission",Medical Condition Incidents With Waterborne Transmission in Deceased Patients,, -Count_MortalityEvent_Assault(Homicide),Count of Mortality Event: Assault(Homicide),,, -Count_MortalityEvent_Assault(Homicide)_Female,"Count of Mortality Event: Assault(Homicide), Female",,, -Count_MortalityEvent_Diabetes,Count of Mortality Event: Diabetes,,, -Count_MortalityEvent_Diabetes_Female,"Count of Mortality Event: Diabetes, Female",,, -Count_MortalityEvent_HeartDiseaseExcludingHypertension,Count of Mortality Event: Heart Disease Excluding Hypertension,,, -Count_MortalityEvent_IntentionalSelf-Harm(Suicide),Count of Mortality Event: Intentional Self-Harm(Suicide),,, -Count_MortalityEvent_IntentionalSelf-Harm(Suicide)_Female,"Count of Mortality Event: Intentional Self-Harm(Suicide), Female",,, -Count_MortalityEvent_Suicide,Count of Mortality Event: Suicide,,, -Count_Person_0To4Years_Female,"Population: 0 - 4 Years, Female",,, -Count_Person_0To4Years_Male,"Population: 0 - 4 Years, Male",Males Aged 0 to 4 Years,, -Count_Person_10OrMoreYears_Literate_AsAFractionOf_Count_Person_10OrMoreYears,"Population: 10 Years or More, Literate (As Fraction of Count Person 10 or More Years)",,, -Count_Person_10To14Years_Literate_AsAFractionOf_Count_Person_10To14Years,"Population: 10 - 14 Years, Literate (As Fraction of Count Person 10 To 14 Years)",,, -Count_Person_15OrMoreYears_Divorced_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Divorced, American Indian or Alaska Native Alone",Divorced American Indian or Alaska Native Population Aged 15 Years Or More,, -Count_Person_15OrMoreYears_Divorced_AsianAlone,"Population: 15 Years or More, Divorced, Asian Alone",Asians Divorced For 15 Years Or More,, -Count_Person_15OrMoreYears_Divorced_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Divorced, Black or African American Alone",Divorced African American Population Aged 15 Years Or More,, -Count_Person_15OrMoreYears_Divorced_ForeignBorn,"Population: 15 Years or More, Divorced, Foreign Born",Foreign Born Divorced Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_HispanicOrLatino,"Population: 15 Years or More, Divorced, Hispanic or Latino",Divorced Hispanic Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_Native,"Population: 15 Years or More, Divorced, Native",Divorced Native Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_NativeHawaiianAndOtherPacificIslanderAlone,"Population: 15 Years or More, Divorced, Native Hawaiian or Other Pacific Islander Alone",Divorced Native Hawaiian or Other Pacific Islander Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_OneRace,"Population: 15 Years or More, Divorced, One Race",Divorced One Race Population Aged 15 Years Or More,, -Count_Person_15OrMoreYears_Divorced_SomeOtherRaceAlone,"Population: 15 Years or More, Divorced, Some Other Race Alone",Divorced Other Race Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_TwoOrMoreRaces,"Population: 15 Years or More, Divorced, Two or More Races",Divorced Multiracial Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Divorced_WhiteAlone,"Population: 15 Years or More, Divorced, White Alone",White Population Above 15 Years Old Is Divorced,, -Count_Person_15OrMoreYears_Divorced_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Divorced, White Alone Not Hispanic or Latino",Divorced White And Non-Hispanic Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Female_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Female,"Population: 15 Years or More, Female, Smoking (As Fraction of Count Person 15 or More Years Female)",Female Population Aged 15 Years or More Smoking,, -Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,"Population: 15 Years or More, in Labor Force, Female (As Fraction of Count Person in Labor Force)",Female Population Aged 15 Years or More in Labor Force,, -Count_Person_15OrMoreYears_Male_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Male,"Smoking prevalence, males (% of adults)",Percentage of Male Population Smoking,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Married And Not Separated, American Indian or Alaska Native Alone",American Indians or Alaska Natives Aged 15 Years And Above are Married,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AsianAlone,"Population: 15 Years or More, Married And Not Separated, Asian Alone",Married And Un-Separated Asian Population Aged 15 Years Or More,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Married And Not Separated, Black or African American Alone",African Americans Above 15 Years Old Married and Not Separated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_ForeignBorn,"Population: 15 Years or More, Married And Not Separated, Foreign Born",Foreign Born Population Aged 15 Years or More Married And Not Separated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_HispanicOrLatino,"Population: 15 Years or More, Married And Not Separated, Hispanic or Latino",Hispanic Population Aged 15 Years or More Who are Married,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_Native,"Population: 15 Years or More, Married And Not Separated, Native",Married Native Population Above 15 Years Old,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_NativeHawaiianAndOtherPacificIslanderAlone,"Population: 15 Years or More, Married And Not Separated, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Above 15 Years Married And Unseparated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_OneRace,"Population: 15 Years or More, Married And Not Separated, One Race",One Race Population Aged 15 Years Or More Married And Not Separated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_SomeOtherRaceAlone,"Population: 15 Years or More, Married And Not Separated, Some Other Race Alone",Some Other Race Population Aged 15 Years or More Married And Not Separated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_TwoOrMoreRaces,"Population: 15 Years or More, Married And Not Separated, Two or More Races",Multiracial Population Aged 15 Years or More Married And Not Separated,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAlone,"Population: 15 Years or More, Married And Not Separated, White Alone",Married and Not Separated White People Aged 15 Years Old and Above,, -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Married And Not Separated, White Alone Not Hispanic or Latino",Married and Not Separated White and Non-Hispanics Aged 15 Years Old and Above,, -Count_Person_15OrMoreYears_NeverMarried_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Never Married, American Indian or Alaska Native Alone",Unmarried American Indian or Alaska Native Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_AsianAlone,"Population: 15 Years or More, Never Married, Asian Alone",Never Married Asian Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Never Married, Black or African American Alone",African Americans Aged 15 Years And Above Who Have Never Been Married,, -Count_Person_15OrMoreYears_NeverMarried_ForeignBorn,"Population: 15 Years or More, Never Married, Foreign Born",Unmarried Foreign-Born Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_HispanicOrLatino,"Population: 15 Years or More, Never Married, Hispanic or Latino",Hispanic Population Aged 15 Years or More Never Married,, -Count_Person_15OrMoreYears_NeverMarried_Native,"Population: 15 Years or More, Never Married, Native",Native Population Aged 15 Years or More Who Are Never Married,, -Count_Person_15OrMoreYears_NeverMarried_NativeHawaiianAndOtherPacificIslanderAlone,"Population: 15 Years or More, Never Married, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islanders Unmarried Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_OneRace,"Population: 15 Years or More, Never Married, One Race",Unmarried Monoracial Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_SomeOtherRaceAlone,"Population: 15 Years or More, Never Married, Some Other Race Alone",Some Other Race Unmarried Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_TwoOrMoreRaces,"Population: 15 Years or More, Never Married, Two or More Races",Multiracial Population Above 15 Year Who are Unmarried,, -Count_Person_15OrMoreYears_NeverMarried_WhiteAlone,"Population: 15 Years or More, Never Married, White Alone",Never Married White Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_NeverMarried_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Never Married, White Alone Not Hispanic or Latino",Unmarried White Non-Hispanic Population Aged 15 Years or More;Non Married White Hispanic Population Aged 15 Years Or More,, -Count_Person_15OrMoreYears_Separated_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Separated, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Aged 15 Years or More Who are Separated,, -Count_Person_15OrMoreYears_Separated_AsianAlone,"Population: 15 Years or More, Separated, Asian Alone",Asians Divorced For 15 Years Or More,, -Count_Person_15OrMoreYears_Separated_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Separated, Black or African American Alone",African American Population Aged 15 Years or More Separated,, -Count_Person_15OrMoreYears_Separated_ForeignBorn,"Population: 15 Years or More, Separated, Foreign Born",Separated Foreign-Born Population For 15 Years or More,, -Count_Person_15OrMoreYears_Separated_HispanicOrLatino,"Population: 15 Years or More, Separated, Hispanic or Latino",Hispanic Separated Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Separated_Native,"Population: 15 Years or More, Separated, Native",Native Population Aged 15 Years or More Separated,, -Count_Person_15OrMoreYears_Separated_NativeHawaiianAndOtherPacificIslanderAlone,"Population: 15 Years or More, Separated, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Aged 15 Years or More Separated,, -Count_Person_15OrMoreYears_Separated_OneRace,"Population: 15 Years or More, Separated, One Race",Single Race Separated Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Separated_SomeOtherRaceAlone,"Population: 15 Years or More, Separated, Some Other Race Alone",Some Other Race Population Aged 15 Years or More Separated,, -Count_Person_15OrMoreYears_Separated_TwoOrMoreRaces,"Population: 15 Years or More, Separated, Two or More Races",Separated Multiracial Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Separated_WhiteAlone,"Population: 15 Years or More, Separated, White Alone",Separated White Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Separated_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Separated, White Alone Not Hispanic or Latino",Separated White People and Non-Hispanics Aged 15 Years Old and Above,, -Count_Person_15OrMoreYears_Smoking_AsFractionOf_Count_Person_15OrMoreYears,"Population: 15 Years or More, Smoking (As Fraction of Count Person 15 or More Years)",Population Aged 15 Years or More Smoking,, -Count_Person_15OrMoreYears_Widowed_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Widowed, American Indian or Alaska Native Alone",American Indian or Alaska Native Widows Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_AsianAlone,"Population: 15 Years or More, Widowed, Asian Alone",Asian Population Aged 15 Years or More Who are Widowed,, -Count_Person_15OrMoreYears_Widowed_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Widowed, Black or African American Alone",Widowed African American Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_ForeignBorn,"Population: 15 Years or More, Widowed, Foreign Born",Foreign-Born Population Aged 15 Years or More Who are Widowed,, -Count_Person_15OrMoreYears_Widowed_HispanicOrLatino,"Population: 15 Years or More, Widowed, Hispanic or Latino",Widowed Hispanics Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_Native,"Population: 15 Years or More, Widowed, Native",Native Population Aged 15 Years or More Widowed,, -Count_Person_15OrMoreYears_Widowed_NativeHawaiianAndOtherPacificIslanderAlone,"Population: 15 Years or More, Widowed, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Widowed Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_OneRace,"Population: 15 Years or More, Widowed, One Race",Widowed Monracial Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_SomeOtherRaceAlone,"Population: 15 Years or More, Widowed, Some Other Race Alone",Widowed Population of Some Other Race Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_TwoOrMoreRaces,"Population: 15 Years or More, Widowed, Two or More Races",Multiracial Widowed Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_Widowed_WhiteAlone,"Population: 15 Years or More, Widowed, White Alone",Widowed Whites Above 15 Years,, -Count_Person_15OrMoreYears_Widowed_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Widowed, White Alone Not Hispanic or Latino",Widowed White Non-Hispanic Population Aged 15 Years or More,, -Count_Person_15OrMoreYears_WithIncome,"Population: 15 Years or More, With Income",Population Above 15 Years Old with an Income,, -Count_Person_15To19Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To19Years_Female,"Population: 15 - 19 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 15 To 19 Years Female)",Female Population Aged 15 to 19 Years Who Gave Birth in The Past 12 Months,, -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPrivateSchool,"Population: 15 - 19 Years, Black or African American Alone, Private School",African American Population Aged 15 to 19 Years in Private Schools,, -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPublicSchool,"Population: 15 - 19 Years, Black or African American Alone, Public School",African American Population Aged 15 to 19 Years In Public Schools,, -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_ResidesInHousehold,"Population: 15 - 19 Years, Black or African American Alone, Household",African American Household Population Aged 15 to 19 Years,, -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPrivateSchool,"Population: 15 - 19 Years, Hispanic or Latino, Private School",Hispanic Population Aged 15 to 19 Years in Private Schools,, -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPublicSchool,"Population: 15 - 19 Years, Hispanic or Latino, Public School",Hispanic Population Aged 15 to 19 Years in Public School,, -Count_Person_15To19Years_HispanicOrLatino_ResidesInHousehold,"Population: 15 - 19 Years, Hispanic or Latino, Household",Hispanic Households Aged 15 to 19 Years,, -Count_Person_15To19Years_Literate_AsAFractionOf_Count_Person_15To19Years,"Population: 15 - 19 Years, Literate (As Fraction of Count Person 15 To 19 Years)",,, -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPrivateSchool,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Private School",White Non-Hispanic Population Aged 15 to 19 Years Enrolled in Private Schools,, -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPublicSchool,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Public School",White and Non-Hispanic Population Aged 15 to 19 Years in Public Schools,, -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Household",White Non Hispanic Population Household Aged 15 to 19 Years,, -Count_Person_15To24Years_Illiterate_AsAFractionOf_Count_Person_15To24Years,"Population: 15 - 24 Years, Illiterate (As Fraction of Count Person 15 To 24 Years)",,, -Count_Person_15To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To50Years_Female,"Population: 15 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 15 To 50 Years Female)",Female Population Aged 15 to 50 Years Who Birthed in The Past 12 Months,, -Count_Person_15To50Years_EducationalAttainmentLessThanHighSchoolGraduate_Female,"Population: 15 - 50 Years, Less Than High School Graduate, Female",Female Population Aged 15 to 50 Years Who Are Less Than High School Graduates,, -Count_Person_15To50Years_Female_1.0OrLessRatioToPovertyLine,"Population: 15 - 50 Years, Female, 1 Ratio To Poverty Line or Less",Female Population Aged 15 to 50 Years With a 1 Ratio to Poverty Line or Less,, -Count_Person_15To50Years_Female_1To1.99RatioToPovertyLine,"Population: 15 - 50 Years, Female, 1 - 2.0 Ratio To Poverty Line",Female Population Aged 15 to 50 Years With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_15To50Years_Female_2OrMoreRatioToPovertyLine,"Population: 15 - 50 Years, Female, 2 Ratio To Poverty Line or More",Female Population Aged 15 to 50 Years with a 2 Ratio to Poverty Line or More,, -Count_Person_15To50Years_Female_ForeignBorn,"Population: 15 - 50 Years, Female, Foreign Born",Foreign Born Female Population Aged 15 to 50 Years,, -Count_Person_15To50Years_Female_Native,"Population: 15 - 50 Years, Female, Native",Native Female Population Aged 15 to 50 Years,, -Count_Person_15To50Years_Female_OneRace,"Population: 15 - 50 Years, Female, One Race",Monoracial Female Population Aged 15 to 50 Years,, -Count_Person_15To50Years_Female_PovertyStatusDetermined,"Population: 15 - 50 Years, Female, Poverty Status Determined",Female Population Aged 15 to 50 Years With Poverty Status Determined,, -Count_Person_15To64Years_Female_InLaborForce_AsFractionOf_Count_Person_15To64Years_Female,"Population: 15 - 64 Years, in Labor Force, Female (As Fraction of Count Person 15 To 64 Years Female)",Female Population Aged 15 to 64 Years in Labor Force,, -Count_Person_15To64Years_Male_InLaborForce_AsFractionOf_Count_Person_15To64Years_Male,"Population: 15 - 64 Years, in Labor Force, Male (As Fraction of Count Person 15 To 64 Years Male)",Males Aged 15 to 64 Years in The Labor Force,, -Count_Person_16OrMoreYears_EmployedAndWorking_InLaborForce,"Population: 16 Years or More, Employed And Working, in Labor Force",Population Aged 16 Years or More Employed And Working in Labor Force,, -Count_Person_16OrMoreYears_Female_WithEarnings,"Population: 16 Years or More, Female, With Earnings",Female Population Aged 16 Years Old or More With Earnings,, -Count_Person_16OrMoreYears_Male_WithEarnings,"Population: 16 Years or More, Male, With Earnings",Male Population Aged 16 Years or More With Earnings,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf15000To24999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 15,000 - 24,999 USD, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf25000To34999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 25,000 - 34,999 USD, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf35000To49999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 35,000 - 49,999 USD, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf4999OrLessUSDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 4,999 USD or Less, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf50000To74999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 50,000 - 74,999 USD, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf5000To14999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 5,000 - 14,999 USD, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf75000OrMoreUSDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 75,000 USD or More, With Earnings, Non Institutionalized",,, -Count_Person_16OrMoreYears_WithEarnings,"Population: 16 Years or More, With Earnings",Population Aged 16 Years or More With Earnings,, -Count_Person_16To19Years_InLaborForce_BlackOrAfricanAmericanAlone,"Population: 16 - 19 Years, in Labor Force, Black or African American Alone",African American Population Aged 16 to 19 Years in Labor Force,, -Count_Person_16To19Years_InLaborForce_HispanicOrLatino,"Population: 16 - 19 Years, in Labor Force, Hispanic or Latino",Hispanic Population Aged 16 to 19 Years In Labor Force,, -Count_Person_16To19Years_InLaborForce_WhiteAloneNotHispanicOrLatino,"Population: 16 - 19 Years, in Labor Force, White Alone Not Hispanic or Latino",White Non Hispanic Population Aged 16 to 19 Years in Labor Force,, -Count_Person_16To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_16To50Years_Female,"Population: 16 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 16 To 50 Years Female)",Births in The Past 12 Months of Females Aged 16 to 50 Years,, -Count_Person_18OrLessYears_Female_ResidesInCollegeOrUniversityStudentHousing,"Population: 18 Years or Less, Female, College or University Student Housing",Female College or University Student Housing Ages 18 Years or Less,, -Count_Person_18OrLessYears_Male_ResidesInCollegeOrUniversityStudentHousing,"Population: 18 Years or Less, Male, College or University Student Housing",Male Population Aged 18 Years or Less Residing In University Student Housing,, -Count_Person_18OrMoreYears_Civilian,"Population: 18 Years or More, Civilian",Civilians Aged 18 Years or More,, -Count_Person_18OrMoreYears_Civilian_ResidesInAdultCorrectionalFacilities,"Population: 18 Years or More, Civilian, Adult Correctional Facilities",Population of Civilian Aged 18 Years or More in Adult Correctional Facilities,, -Count_Person_18OrMoreYears_Civilian_ResidesInCollegeOrUniversityStudentHousing,"Population: 18 Years or More, Civilian, College or University Student Housing",Civilians Aged 18 Years or More Who are in College or University Student Housing,, -Count_Person_18OrMoreYears_Civilian_ResidesInGroupQuarters,"Population: 18 Years or More, Civilian, Group Quarters",Civilians Aged 18 Years or More Group Quarters,, -Count_Person_18OrMoreYears_Civilian_ResidesInInstitutionalizedGroupQuarters,"Population: 18 Years or More, Civilian, Institutionalized Group Quarters",Civilian Population Aged 18 Years or More in Institutionalized Group Quarters,, -Count_Person_18OrMoreYears_Civilian_ResidesInNoninstitutionalizedGroupQuarters,"Population: 18 Years or More, Civilian, Noninstitutionalized Group Quarters",Civilians Aged 18 Years and Above Residing in Non-Institutionalized Group Quarters,, -Count_Person_18OrMoreYears_Civilian_ResidesInNursingFacilities,"Population: 18 Years or More, Civilian, Nursing Facilities",Civilian Population Aged 18 Years or More in Nursing Facilities,, -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine,"Population: 1 Years or More, 1.5 Ratio To Poverty Line or More",Population Aged 1 Year or More With a 1.5 Ratio To Poverty Line or More,, -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseAbroad,"Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House Abroad",Population Aged 1 Year or More with a 1.5 Ratio To the Poverty Line or More in Different Houses Abroad,, -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Different County Different State",Population Aged 1 Year or More Living in Different Houses in Different Counties in Different States With A 1.5 Ratio To Poverty Line or More,, -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Different County Same State",Population Aged 1 Year or More Above To Poverty Line or More in a Different House in Different County and Different State,, -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInSameCounty,"Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Same County",Population Aged 1 Year or More With a 1.5 Ratio To Poverty Line or More in Different Houses in The Same County,, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine,"Population: 1 Years or More, 1 Ratio To Poverty Line or Less",Population Above 1 Year with a 1 Ratio to Poverty Line or Less,, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseAbroad,"Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House Abroad",Population Aged 1 Year or More with a 1 Ratio to Poverty Line or Less in Different Houses Abroad,, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Different County Different State",Population Aged 1 Year or More With a 1 Ratio To Poverty Line or Less in Different Houses in Different County Different State,, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Different County Same State",Population Aged 1 Year or More With 1 Ratio To Poverty Line or Less in Different Houses in Different County Same State,, -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInSameCounty,"Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Same County",Population With 1 Ratio To Poverty Line or Less With Different Houses in The Same County For 1 Year or More,, -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine,"Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line",Population Above 1 Year Old With a 1 to 1.5 Ratio to Poverty Line,, -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseAbroad,"Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House Abroad","Population Aged 1 Years or More With a 1 to 1.5 Ratio To Poverty Line, Different House Abroad",, -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Different County Different State",Population Aged 1 Year or More With a 1 to 1.5 Ratio To Poverty Line in Different Houses in Different County And State,, -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Different County Same State",Population Aged 1 Years or More With a 1 to 1.5 Ratio To Poverty Line in Different House in Different County Same State,, -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInSameCounty,"Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Same County",Population Aged 1 Year or More with a 1 to 1.5 Ratio to Poverty Line in Different Houses and The Same County,, -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseAbroad,"Population: 1 Years or More, American Indian or Alaska Native Alone, Different House Abroad",American Indians Or Alaska Natives In Different Houses Abroad Aged 1 Year And Above,, -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Different County Different State",American Indian Or Alaska Native In Different Houses Counties And States,, -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Different County Same State",American Indian or Alaska Native Population Aged 1 Year Old or More in Different Houses in Different Counties in the Same States,, -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Same County",American Indian or Alaska Native Aged 1 Year or More in Different House in Same County,, -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseAbroad,"Population: 1 Years or More, Asian Alone, Different House Abroad",Asian Population Aged 1 Year or More Living in Different Houses Abroad,, -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Asian Alone, Different House in Different County Different State","Asian Population Aged 1 Year or More Living in Different Houses, Counties and States",, -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Asian Alone, Different House in Different County Same State",Asian Population Aged 1 Years or More in Different House in Different County Same State,, -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, Asian Alone, Different House in Same County",Asians in Different Houses in The Same County Aged I Years And Above,, -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseAbroad,"Population: 1 Years or More, Black or African American Alone, Different House Abroad",African American Population Aged 1 Year or More Living in Different Houses Abroad,, -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Black or African American Alone, Different House in Different County Different State","African American Population Aged 1 Year or More Living in Different Houses, Different Counties and Different States",, -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Black or African American Alone, Different House in Different County Same State","African Americans Above 1 Year Old in Different Houses, County but Same State",, -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, Black or African American Alone, Different House in Same County",African American Population Aged 1 Year or More in Different Houses and Same County,, -Count_Person_1OrMoreYears_DifferentHouse1YearAgo,"Population: 1 Years or More, Different House 1 Year Ago",Population Aged 1 Years or More in Different House 1 Year Ago,, -Count_Person_1OrMoreYears_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Different House in Different County",Population Aged 1 Year or More in Different Houses in Different County,, -Count_Person_1OrMoreYears_DifferentHouseInTheUS,"Population: 1 Years or More, Different House in The US",Population Aged 1 Years or More Different House in The US,, -Count_Person_1OrMoreYears_Female_DifferentHouseAbroad,"Population: 1 Years or More, Female, Different House Abroad",Female Population Aged 1 Year Or More With Different House Abroad,, -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Female, Different House in Different County Different State",Female Population Aged 1 Year or More Living in Different Houses in Different County Different State,, -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Female, Different House in Different County Same State",Female Population Aged 1 Year or More Residing in A Different House in a Different County in the Same State,, -Count_Person_1OrMoreYears_Female_DifferentHouseInSameCounty,"Population: 1 Years or More, Female, Different House in Same County",Female Population Aged 1 Year or More in Different Houses in The Same County,, -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseAbroad,"Population: 1 Years or More, Foreign Born, Different House Abroad",Foreign-Born Population Aged 1 Year or More in Different Houses Abroad,, -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Foreign Born, Different House in Different County Different State",Foreign-Born Population Age 1 Year or More Residing in a Different House in Different County and Different State,, -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Foreign Born, Different House in Different County Same State",Foreign-Born Population Aged 1 Year or More Residing in a Different House in Different County and Same State,, -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInSameCounty,"Population: 1 Years or More, Foreign Born, Different House in Same County",Foreign-Born Population Above 1 Year in Different Houses in Same County,, -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseAbroad,"Population: 1 Years or More, Hispanic or Latino, Different House Abroad",Hispanic Population Aged 1 Year or More in Different Houses Abroad,, -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Hispanic or Latino, Different House in Different County Different State",Hispanic Population Aged 1 Year Or More In Different Houses in the Same County State,, -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Hispanic or Latino, Different House in Different County Same State",Hispanic Population Aged 1 Year or More in Different Houses in Different County Same State,, -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInSameCounty,"Population: 1 Years or More, Hispanic or Latino, Different House in Same County",Hispanics In Different Houses In the Same County Aged 1 Year Or More,, -Count_Person_1OrMoreYears_Male_DifferentHouseAbroad,"Population: 1 Years or More, Male, Different House Abroad",Male Population Aged 1 Year or More in Different Houses Abroad,, -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Male, Different House in Different County Different State","Male Population Above 1 Year Old in Different House, County and State",, -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Male, Different House in Different County Same State",Male Population Aged 1 Year or More Living in Different Houses in Different County Same State,, -Count_Person_1OrMoreYears_Male_DifferentHouseInSameCounty,"Population: 1 Years or More, Male, Different House in Same County",Male Population Above 1 Year In Different House But Same County,, -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseAbroad,"Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House Abroad",Native Hawaiian Or Other Pacific Islanders Population Aged 1 Year Or More In Different Houses Abroad,, -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Different County Different State",Natives Hawaiians or Other Pacific Islanders Above 1 Year Old Living In House In Different County or State,, -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Different County Same State","Native Hawaiian or Other Pacific Islander Population Aged 1 Year Old or More in Different Houses in Different Counties, Same State",, -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Same County",Native Hawaiians or Other Pacific Islanders Aged 1 Years Or More Residing in Different Houses in Same County,, -Count_Person_1OrMoreYears_OneRace_DifferentHouseAbroad,"Population: 1 Years or More, One Race, Different House Abroad",One Race Population Aged 1 Year Old or More Residing in a Different House Abroad,, -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, One Race, Different House in Different County Different State",One Race Population Aged 1 Year Old or More in Different Houses in Different County and Different State,, -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, One Race, Different House in Different County Same State","Population Aged 1 Year or More with One Race in Different House, Different County and Same State",, -Count_Person_1OrMoreYears_OneRace_DifferentHouseInSameCounty,"Population: 1 Years or More, One Race, Different House in Same County",Uniracial Above 1 Year Old With Another House In Same County,, -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit,"Population: 1 Years or More, Owner Occupied, Housing Unit",Population Occupying Housing Units For 1 Year or More,, -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseAbroad,"Population: 1 Years or More, Poverty Status Determined, Different House Abroad",Population Aged 1 Year or More with Determined Poverty Status in Different Houses Abroad,, -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Poverty Status Determined, Different House in Different County Different State",Population Aged 1 Year or More in Different Houses in Different County Different State With Determined Poverty Status,, -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Poverty Status Determined, Different House in Different County Same State",Population Aged 1 Year or More in Different Houses in Different County Same State and Determined Poverty Status,, -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInSameCounty,"Population: 1 Years or More, Poverty Status Determined, Different House in Same County",Population Aged 1 Year or More Residing in Different Houses in the Same County with Determined Poverty Status,, -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit,"Population: 1 Years or More, Renter Occupied, Housing Unit",Population Aged 1 Year or More With Rented Occupied Housing Units,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseAbroad,"Population: 1 Years or More, Adult Correctional Facilities, Different House Abroad",Population Aged 1 Year or More With Different House Abroad in Adult Correctional Facilities,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County",Population Aged 1 Year or More Residing in Adult Correctional Facilities in a Different House in Different County,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County Different State","Population Aged 1 Year or More in Adult Correctional Facilities in Different House, Different County and Different State",, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County Same State",Population Living in Different Houses in Different Counties in Different States in Adult Correctional Facilities For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInSameCounty,"Population: 1 Years or More, Adult Correctional Facilities, Different House in Same County",Population Aged 1 Year or More in Adult Correctional Facilities in Different Houses in The Same Country,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInTheUS,"Population: 1 Years or More, Adult Correctional Facilities, Different House in The US",Population Aged 1 Year or More Living in Adult Correctional Facilities From Different Houses in The United States,, -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_SameHouse1YearAgo,"Population: 1 Years or More, Adult Correctional Facilities, Same House 1 Year Ago",Population Aged 1 Year or More in Adults Correctional Facilities,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseAbroad,"Population: 1 Years or More, College or University Student Housing, Different House Abroad",Population Aged 1 Year or More Residing in Different House Abroad in College or University Student Housing,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCounty,"Population: 1 Years or More, College or University Student Housing, Different House in Different County",Population Living in College or University Student Housing in Different Houses in Different Counties For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, College or University Student Housing, Different House in Different County Different State",Population Aged 1 Year or More In University Student Housing In Different Houses in Different Counties And States,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, College or University Student Housing, Different House in Different County Same State",College or University Student Housing in Different Houses in Different Counties in The Same State for 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInSameCounty,"Population: 1 Years or More, College or University Student Housing, Different House in Same County",University Students With Different Houses in The Same County For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInTheUS,"Population: 1 Years or More, College or University Student Housing, Different House in The US",Population Living in Different Houses in The US in College or University Student Housing For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_SameHouse1YearAgo,"Population: 1 Years or More, College or University Student Housing, Same House 1 Year Ago",Population Aged 1 Years or More in College or University Student Housing Same House 1 Year Ago,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseAbroad,"Population: 1 Years or More, Group Quarters, Different House Abroad",Population Aged 1 Year or More in Group Quarters in Different Houses Abroad,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Group Quarters, Different House in Different County",Population Aged 1 Year or More In Group Quarters in Different Houses in Different County,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Group Quarters, Different House in Different County Different State",Population Aged 1 Year Or More In Group Quarters With A Different House in A Different County And State,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Group Quarters, Different House in Different County Same State",Population Aged 1 Year or More With Different Houses in Different County Same State In Group Quarters,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInSameCounty,"Population: 1 Years or More, Group Quarters, Different House in Same County",Population Aged More Than 1 Year Living In Different Houses in The Same County,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInTheUS,"Population: 1 Years or More, Group Quarters, Different House in The US",Population Aged 1 Years or More Group Quarters in Different House in The US,, -Count_Person_1OrMoreYears_ResidesInGroupQuarters_SameHouse1YearAgo,"Population: 1 Years or More, Group Quarters, Same House 1 Year Ago",Population Aged 1 Year or More in Group Quarters and Same Houses 1 Year Ago,, -Count_Person_1OrMoreYears_ResidesInHousingUnit,"Population: 1 Years or More, Housing Unit",Population Aged 1 Year or More in Housing Unit,, -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseAbroad,"Population: 1 Years or More, Housing Unit, Different House Abroad",Housing Units of Population Aged 1 Year or More in Different Houses Abroad,, -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Housing Unit, Different House in Different County Different State",Population Aged 1 Year or More Residing in Different Houses in Different County Different States,, -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Housing Unit, Different House in Different County Same State",Population Aged 1 Year or More in Housing Units of Different House in Different County Same State,, -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInSameCounty,"Population: 1 Years or More, Housing Unit, Different House in Same County",Population Aged 1 Year or More Living in Different Houses in The Same County,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseAbroad,"Population: 1 Years or More, Institutionalized Group Quarters, Different House Abroad",Population Living in Different Houses Abroad in Institutionalized Group Quarters For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County",Population Aged 1 Year or More Residing in Different Houses in Different County in Institutionalized Group Quarters,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County Different State",Population Aged 1 Year or More in Institutionalized Group Quarters of Different Houses in Different County Different State,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County Same State",Population Living in Different Houses in Different Counties in Different States in Institutionalized Group Quarters For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInSameCounty,"Population: 1 Years or More, Institutionalized Group Quarters, Different House in Same County",Population Aged 1 Years or More Institutionalized Group Quarters in Different House in Same County,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInTheUS,"Population: 1 Years or More, Institutionalized Group Quarters, Different House in The US",Population Living in Different Houses in The US in Institutionalized Group Quarters For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_SameHouse1YearAgo,"Population: 1 Years or More, Institutionalized Group Quarters, Same House 1 Year Ago",Population Aged 1 Year or More in Institutionalized Group Quarters and Same House 1 Year Ago,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseAbroad,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House Abroad",Population Living in Different Houses Abroad in Non-Institutionalized Group Quarters For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County",Population With Different Houses in The Same County in Non-institutionalized Group Quarters For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County Different State","Population Aged 1 Year or More Living in Different Houses, Counties and States in Non-Institutionalized Group Quarters",, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County Same State",Population Aged 1 Year or More In Non-Institutionalized Group Quarters With A Different House In a Different County In The Same State,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInSameCounty,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Same County",Population Aged 1 Year or More in Non-Institutionalized Group Quarters and Different Houses in the Same County,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInTheUS,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in The US",Population Aged 1 year Or More Residing In Us Non-Institutionalized Group Quarters,, -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_SameHouse1YearAgo,"Population: 1 Years or More, Noninstitutionalized Group Quarters, Same House 1 Year Ago",Population Aged 1 Year or More in Non-Institutionalized Group Quarters,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseAbroad,"Population: 1 Years or More, Nursing Facilities, Different House Abroad",Different Household Aged 18 Years or Less Abroad With Nursing Facilities,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCounty,"Population: 1 Years or More, Nursing Facilities, Different House in Different County",Population Aged 1 Year or More in Nursing Facilities and Different Houses in Different County,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Nursing Facilities, Different House in Different County Different State",Population Living in Living in Different Houses in Different Counties in Different States in Nursing Facilities For 1 Year or More,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Nursing Facilities, Different House in Different County Same State",Population Aged 1 Year or More Residing in Nursing Facilities From Different Houses in Different County Same State,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInSameCounty,"Population: 1 Years or More, Nursing Facilities, Different House in Same County",Population Aged 1 Year or More in Nursing Facilities and Different Houses in Same County,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInTheUS,"Population: 1 Years or More, Nursing Facilities, Different House in The US",Population Above 1 Year Old Living in Nursing Facilities with Different Houses in the US,, -Count_Person_1OrMoreYears_ResidesInNursingFacilities_SameHouse1YearAgo,"Population: 1 Years or More, Nursing Facilities, Same House 1 Year Ago",Population Aged 1 Year or More in Nursing Facilities in the Same House 1 Year Ago,, -Count_Person_1OrMoreYears_SameHouse1YearAgo,"Population: 1 Years or More, Same House 1 Year Ago",Population Living in The Same House 1 Year Ago For I Year or More,, -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseAbroad,"Population: 1 Years or More, Some Other Race Alone, Different House Abroad",Population Aged 1 Year or More of Some Other Race in Different House Abroad,, -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Some Other Race Alone, Different House in Different County Different State","Some Other Races Above 1 Year Old with Different House, Counties and States",, -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Some Other Race Alone, Different House in Different County Same State",Population In Different House In Different County But Same State Aged 1 Year or More,, -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, Some Other Race Alone, Different House in Same County",Some Other Race Population Aged 1 Years or More in Different House in Same County,, -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseAbroad,"Population: 1 Years or More, Two or More Races, Different House Abroad",Multiracial Population Aged 1 Year and Above Living in Different Houses Abroad,, -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Two or More Races, Different House in Different County Different State",Multiracial Population Living in Different Houses in Different Counties in Different States for 1 Year or More,, -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, Two or More Races, Different House in Different County Same State",Multiracial Population Above 1 Year Old with Different House in Different County Same State,, -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInSameCounty,"Population: 1 Years or More, Two or More Races, Different House in Same County",Multiracial in Different Houses in The Same County Aged 1 Year or More,, -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseAbroad,"Population: 1 Years or More, White Alone, Different House Abroad",White Population Aged 1 Year or More With Different Houses Abroad,, -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, White Alone, Different House in Different County Different State","White People Above 1 Year Old in Different Houses, Counties and States",, -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, White Alone, Different House in Different County Same State",White Population Aged 1 Year or More in Different Houses In The Same State,, -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, White Alone, Different House in Same County",White Population Aged 1 Year Or More In Different Houses In the Same County,, -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseAbroad,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House Abroad",Non-Hispanic and White Population Aged 1 Year and Above Living in Different Houses Abroad,, -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Different County Different State",White Non-Hispanic Population Above 1 Year Old in Different Houses in Different Counties and States,, -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Different County Same State",White Non-Hispanics Aged 1 Year or More in Different Houses in Different County Same State,, -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInSameCounty,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Same County",White Non Hispanic Population Aged 1 Years or More in Different House in Same County,, -Count_Person_20OrMoreYears_Literate_AsAFractionOf_Count_Person_20OrMoreYears,"Population: 20 Years or More, Literate (As Fraction of Count Person 20 or More Years)",,, -Count_Person_20To34Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_20To34Years_Female,"Population: 20 - 34 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 20 To 34 Years Female)",Population of Females Aged 20 to 34 Years Who Gave Birth In The Past 12 Months,, -Count_Person_20To79Years_Diabetes_AsFractionOf_Count_Person_20To79Years,"Population: 20 - 79 Years, Diabetes (As Fraction of Count Person 20 To 79 Years)",Population Aged 20 to 79 Years With Diabetes,, -Count_Person_25OrMoreYears_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Population: Bachelors Degree or Higher (As Fraction of Count Person 25 or More Years),Population Aged 25 Years or More With Bachelor's Degree Or Higher,, -Count_Person_25OrMoreYears_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears,Population: Doctorate Degree (As Fraction of Count Person 25 or More Years),Population Aged Above 25 Years With Doctorate Degree,, -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Female,"Population: 10th Grade, Female",Female Population in 10th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Male,"Population: 10th Grade, Male",Population of Male 10th Graders,, -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Female,"Population: 11th Grade, Female",Female Population in 11th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Male,"Population: 11th Grade, Male",Male Population in 11th Grades,, -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Female,"Population: 12th Grade No Diploma, Female",12th Grade Female Population Without Diplomas,, -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Male,"Population: 12th Grade No Diploma, Male",Male Population in 12th Grade With No Diplomas,, -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Female,"Population: 5th And 6th Grade, Female",Female Population In 5th And 6th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Male,"Population: 5th And 6th Grade, Male",Male Population in 5th And 6th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Female,"Population: 7th And 8th Grade, Female",Female Population in 7th And 8th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Male,"Population: 7th And 8th Grade, Male",Male Population in 7th And 8th Grades,, -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Female,"Population: 9th Grade, Female",Female Population in 9th Grade,, -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Male,"Population: 9th Grade, Male",Male Population in 9th Grade,, -Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Female,"Population: Associates Degree, Female",Female Population with Associate's Degree,, -Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Male,"Population: Associates Degree, Male",Male Population With Associate's Degrees,, -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Female,"Population: Masters Degree, Female",Female Population With Master's Degree,, -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Male,"Population: Masters Degree, Male",Male Population With Master's Degree,, -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Female,"Population: No Schooling Completed, Female",Female Population With Uncompleted Schooling,, -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Male,"Population: No Schooling Completed, Male",Male Population Who Did Not Complete Schooling,, -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Female,"Population: Nursery To 4th Grade, Female",Female Population in Nursery To 4th Grade,, -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Male,"Population: Nursery To 4th Grade, Male",Male Population in Nursery to 4th Grades,, -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Female,"Population: Professional School Degree, Female",Female Population With Professional School Degrees Education,, -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Male,"Population: Professional School Degree, Male",Male Population With Professional School Degrees,, -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Female,"Population: Some College 1 or More Years No Degree, Female",Female Population In College for 1 or More Years Without Degrees,, -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Male,"Population: Some College 1 or More Years No Degree, Male",Male Population with Some College Education For 1 Or More Years Without a Degree,, -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Female,"Population: Some College Less Than 1 Year, Female",Female Population With Less Than 1 Year Of College Education,, -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Male,"Population: Some College Less Than 1 Year, Male",Male Population With Less Than 1 Year of College,, -Count_Person_25OrMoreYears_Female_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,"Population: Bachelors Degree or Higher, Female (As Fraction of Count Person 25 or More Years Female)",Female Population Aged 25 Years or More With Bachelor's Degree or Higher,, -Count_Person_25OrMoreYears_Female_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Female,"Population: Doctorate Degree, Female (As Fraction of Count Person 25 or More Years Female)",Female Population Aged 25 or More With a Doctorate Degree,, -Count_Person_25OrMoreYears_Female_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,"Population: Masters Degree or Higher, Female (As Fraction of Count Person 25 or More Years Female)",Female Population With Master's Degree or Higher,, -Count_Person_25OrMoreYears_Female_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Female,"Population: Tertiary Education, Female (As Fraction of Count Person 25 or More Years Female)",Female Population Aged 25 or More Years with Tertiary Education,, -Count_Person_25OrMoreYears_Male_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,"Population: Bachelors Degree or Higher, Male (As Fraction of Count Person 25 or More Years Male)",Male Population Aged 25 or More With Bachelor's Degrees or Higher,, -Count_Person_25OrMoreYears_Male_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Male,"Population: Doctorate Degree, Male (As Fraction of Count Person 25 or More Years Male)",Fraction of Male Population Aged 25 Years Or More With Doctorate Degree,, -Count_Person_25OrMoreYears_Male_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,"Population: Masters Degree or Higher, Male (As Fraction of Count Person 25 or More Years Male)",Males Aged 25 or More Year With Masters Degree or Higher,, -Count_Person_25OrMoreYears_Male_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Male,"Population: Tertiary Education, Male (As Fraction of Count Person 25 or More Years Male)",Male Population Aged 25 Years or More in Tertiary Education,, -Count_Person_25OrMoreYears_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Population: Masters Degree or Higher (As Fraction of Count Person 25 or More Years),Population Aged 25 Years or More With Masters Degree or Higher,, -Count_Person_25OrMoreYears_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears,Population: Tertiary Education (As Fraction of Count Person 25 or More Years),Population Aged 25 Years or More in Tertiary Education,, -Count_Person_25To59Years_Illiterate_AsAFractionOf_Count_Person_25To59Years,"Population: 25 - 59 Years, Illiterate (As Fraction of Count Person 25 To 59 Years)",,, -Count_Person_25To64Years_EnrolledInEducationOrTraining_AsAFractionOfCount_Person_25To64Years,"Population: 25 - 64 Years, Enrolled in Education or Training (As Fraction of Count Person 25 To 64 Years)",Population Aged 25 to 64 Years Enrolled in Education or Training,, -Count_Person_25To64Years_EnrolledInEducationOrTraining_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Enrolled in Education or Training, Female (As Fraction of Count Person 25 To 64 Years Female)",Female Population Aged 25 to 64 Years Enrolled in Education or Training,, -Count_Person_25To64Years_EnrolledInEducationOrTraining_Male_AsAFractionOfCount_Person_25To64Years_Male,"Population: 25 - 64 Years, Enrolled in Education or Training, Male (As Fraction of Count Person 25 To 64 Years Male)",Male Population Aged 25 to 64 Years Enrolled in Education or Training,, -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_AsAFractionOfCount_Person_25To64Years,"Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education (As Fraction of Count Person 25 To 64 Years)",Population Aged 25 to 64 Years With Less Than Primary Education,, -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education, Female (As Fraction of Count Person 25 To 64 Years Female)",Population Aged 25 to 64 Years With Less Than Primary Education,, -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education, Male (As Fraction of Count Person 25 To 64 Years Male)",Male Population Aged 25 to 64 Years With Primary Education,, -Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years,"Population: 25 - 64 Years, Tertiary Education (As Fraction of Count Person 25 To 64 Years)",Population Aged 25 to 64 Years Old With Tertiary Education,, -Count_Person_25To64Years_TertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Tertiary Education, Female (As Fraction of Count Person 25 To 64 Years Female)",Female Population Aged 25 to 64 Years With Tertiary Education,, -Count_Person_25To64Years_TertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Population: 25 - 64 Years, Tertiary Education, Male (As Fraction of Count Person 25 To 64 Years Male)",Fraction of Male Population Aged 25 to 64 Years Pursuing Tertiary Education,, -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_AsAFractionOfCount_Person_25To64Years,"Population: 25 - 64 Years, Upper Secondary Education or Higher (As Fraction of Count Person 25 To 64 Years)",Population Aged 25 to 64 Years With Upper Secondary Education or Higher,, -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Upper Secondary Education or Higher, Female (As Fraction of Count Person 25 To 64 Years Female)",Female Population Aged 25 to 64 Years With Upper Secondary Education or Higher,, -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Male_AsAFractionOfCount_Person_25To64Years_Male,"Population: 25 - 64 Years, Upper Secondary Education or Higher, Male (As Fraction of Count Person 25 To 64 Years Male)",Male Population Aged 25 to 64 Years in Upper Secondary Education or Higher,, -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years,"Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 To 64 Years)",Population Aged 25 to 64 Years With Upper Secondary Education and Post Secondary Non-Tertiary Education,, -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education, Female (As Fraction of Count Person 25 To 64 Years Female)",Female Population Aged 25 to 64 Years in Upper Secondary Education and Post Secondary Non-Tertiary Education,, -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education, Male (As Fraction of Count Person 25 To 64 Years Male)",Male Population Aged 25 to 64 Years in Upper Secondary Education And Post Secondary Non-Tertiary Education,, -Count_Person_35To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_35To50Years_Female,"Population: 35 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 35 To 50 Years Female)",Female Population Aged 35 to 50 Years Births in The Past 12 Months,, -Count_Person_3OrMoreYears_Female_EnrolledInSchool,"Population: Female, Enrolled in School",Female Population Enrolled in School,, -Count_Person_3OrMoreYears_Male_EnrolledInSchool,"Population: Male, Enrolled in School",Males Enrolled in School,, -Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,Population: African Languages,Population Age 5 or More Speaking African Languages At Home,, -Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,Population: Amharic Somali or Other Afro Asiatic Languages,Population Age 5 or More Speaking Amharic Somali or Other Afro-Asiatic Languages At Home,, -Count_Person_5OrMoreYears_ArabicSpokenAtHome,Population: Arabic,Population Age 5 or More Speaking Arabic At Home,, -Count_Person_5OrMoreYears_ArmenianSpokenAtHome,Population: Armenian,Population Age 5 or More Speaking Armenian At Home,, -Count_Person_5OrMoreYears_BengaliSpokenAtHome,Population: Bengali,Population Age 5 or More Speaking Bengali At Home,, -Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,Population: Chinese Incl Mandarin Cantonese,Population Age 5 or More Speaking Chinese Including Mandarin Cantonese At Home,, -Count_Person_5OrMoreYears_ChineseSpokenAtHome,Population: Chinese,Population Age 5 or More Speaking Chinese At Home,, -Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,Population: French Creole,Population Age 5 or More Speaking French Creole At Home,, -Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome,Population: French Incl Cajun,French Incl Cajuns,, -Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,Population: French Incl Patois Cajun,Population Age 5 or More Speaking French Including Patois Cajun At Home,, -Count_Person_5OrMoreYears_GermanSpokenAtHome,Population: German,Population Age 5 or More Speaking German At Home,, -Count_Person_5OrMoreYears_GreekSpokenAtHome,Population: Greek,Greek Population,, -Count_Person_5OrMoreYears_GujaratiSpokenAtHome,Population: Gujarati,Population Age 5 or More Speaking Gujarati At Home,, -Count_Person_5OrMoreYears_HaitianSpokenAtHome,Population: Haitian,Population Age 5 or More Speaking Haitian At Home,, -Count_Person_5OrMoreYears_HebrewSpokenAtHome,Population: Hebrew,Population Age 5 or More Speaking Hebrew At Home,, -Count_Person_5OrMoreYears_HindiSpokenAtHome,Population: Hindi,Population Age 5 or More Speaking Hindu At Home,, -Count_Person_5OrMoreYears_HmongSpokenAtHome,Population: Hmong,Population Age 5 or More Speaking Hmong At Home,, -Count_Person_5OrMoreYears_HungarianSpokenAtHome,Population: Hungarian,Population Age 5 or More Speaking Hungarian At Home,, -Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,Population: Ilocano Samoan Hawaiian or Other Austronesian Languages,Population Age 5 or More Speaking Ilocano Samoan Hawaiian or Other Austronesian Languages At Home,, -Count_Person_5OrMoreYears_ItalianSpokenAtHome,Population: Italian,Population Age 5 or More Speaking Italian At Home,, -Count_Person_5OrMoreYears_JapaneseSpokenAtHome,Population: Japanese,Japanese Population,, -Count_Person_5OrMoreYears_KhmerSpokenAtHome,Population: Khmer,Population Age 5 or More Speaking Khmer At Home,, -Count_Person_5OrMoreYears_KoreanSpokenAtHome,Population: Korean,Population Age 5 or More Speaking Korean At Home,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Population: Language Other Than English,Population Speaking Language Other Than English,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Language Other Than English, Above Poverty Level in The Past 12 Months",Population Aged 5 Years Or More Above the Poverty Level In The Past 12 Months Who Speak Other Languages,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Language Other Than English, Below Poverty Level in The Past 12 Months",English Population Aged 5 Years Or More Below Poverty Level In The Past 12 Months,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn,"Population: Language Other Than English, Foreign Born",Foreign-Born Population Fluent in Other Languages Other Than English,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_Native,"Population: Language Other Than English, Native",Natives Who Speak Other Languages Other Than English,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_PovertyStatusDetermined,"Population: 5 Years or More, Language Other Than English, Poverty Status Determined",English Speaking Multilingual Households Aged 5 Years Or More With Determined Poverty Status,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,"Population: Language Other Than English, Adult Correctional Facilities",Population Fluent in Other Languages Other Than English in Adult Correctional Facilities,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,"Population: Language Other Than English, College or University Student Housing",College or University Students Speaking Languages Other Than English,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInGroupQuarters,"Population: Language Other Than English, Group Quarters",Natives Who Speak Other Language Other Than English in Group Quarters,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,"Population: Language Other Than English, Institutionalized Group Quarters",Population Speaking Languages Other Than English in Institutionalized Group Quarters,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,"Population: Language Other Than English, Noninstitutionalized Group Quarters",Population Speaking Other languages Other Than English In Non-Institutionalized Group Quarters,, -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNursingFacilities,"Population: Language Other Than English, Nursing Facilities",Population In Nursing Facilities Fluent in Other Languages Other Than English,, -Count_Person_5OrMoreYears_LaotianSpokenAtHome,Population: Laotian,Population Age 5 or More Speaking Laotian At Home,, -Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,Population: Malayalam Kannada or Other Dravidian Languages,Population Age 5 or More Speaking Malayalam Kannada or Other Dravidian Languages At Home,, -Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,Population: Mon Khmer Cambodian,Population Age 5 or More Speaking Mon Khmer Cambodian At Home,, -Count_Person_5OrMoreYears_NavajoSpokenAtHome,Population: Navajo,Population Age 5 or More Speaking Navajo At Home,, -Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,Population: Nepali Marathi or Other Indic Languages,Population Age 5 or More Speaking Nepali Marathi or Other Indic Languages At Home,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome,Population: Only English,English Population,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Only English, Above Poverty Level in The Past 12 Months",Population Aged 5 Years or More Speaking English Only Above Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Only English, Below Poverty Level in The Past 12 Months",Population Aged 5 Years or More Speaking Only English and Living Below Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ForeignBorn,"Population: Only English, Foreign Born",Foreign-Born Population Fluent in English,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_Native,"Population: Only English, Native",Native Population That Speaks Only English,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_PovertyStatusDetermined,"Population: 5 Years or More, Only English, Poverty Status Determined",Population Aged 5 Years or More Speaking Only English With Poverty Status Determined,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,"Population: Only English, Adult Correctional Facilities",Population Speaking English in Adult Correctional Facilities,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,"Population: Only English, College or University Student Housing",Only English Speaking Population In University Student Housing,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInGroupQuarters,"Population: Only English, Group Quarters",Population That Speaks Only English in Group Quarters,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,"Population: Only English, Institutionalized Group Quarters",Institutionalized Group Quarters Speaking Only English,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,"Population: Only English, Noninstitutionalized Group Quarters",Monolingual English Speaking People Aged 5 Or More Living In Non-institutionalized Group Quarters,, -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNursingFacilities,"Population: Only English, Nursing Facilities",Workers in Nursing Facilities Who Only Speak English,, -Count_Person_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,Population: Other And Unspecified Languages,Other And Unspecified Languages Population,, -Count_Person_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,Population: Other Asian Languages,Population Age 5 or More Speaking Other Asian Languages At Home,, -Count_Person_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,Population: Other Indic Languages,Population Age 5 or More Speaking Other Indic Language At Home,, -Count_Person_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,Population: Other Languages of Asia,Population Age 5 or More Speaking Other Languages of Asia At Home,, -Count_Person_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,Population: Other Native Languages of North America,Population Age 5 or More Speaking Other Native Languages of North America At Home,, -Count_Person_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,Population: Other Native North American Languages,Population Age 5 or More Speaking Other Native North American Languages At Home,, -Count_Person_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,Population: Other Pacific Island Languages,Population Age 5 or More Speaking Other Pacific Island Languages At Home,, -Count_Person_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,Population: Other Slavic Languages,Other Slavic Language Speakers Aged 50 Years Or More,, -Count_Person_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,Population: Other West Germanic Languages,Number Of People Speaking Other West Germanic Languages,, -Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,Population: Persian Incl Farsi Dari,Population Age 5 or More Speaking Persian Including Farsi Dari At Home,, -Count_Person_5OrMoreYears_PersianSpokenAtHome,Population: Persian,Population Age 5 or More Speaking Persian At Home,, -Count_Person_5OrMoreYears_PolishSpokenAtHome,Population: Polish,Population Age 5 or More Speaking Polish At Home,, -Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,Population: Portuguese or Portuguese Creole,Population Age 5 or More Speaking Portuguese or Portuguese Creole At Home,, -Count_Person_5OrMoreYears_PortugueseSpokenAtHome,Population: Portuguese,Population Age 5 or More Speaking Portuguese At Home,, -Count_Person_5OrMoreYears_PunjabiSpokenAtHome,Population: Punjabi,Population Age 5 or More Speaking Punjabi At Home,, -Count_Person_5OrMoreYears_ResidesInHousehold,"Population: 5 Years or More, Household",Population Aged 5 Years or More Households,, -Count_Person_5OrMoreYears_RussianSpokenAtHome,Population: Russian,Population Age 5 or More Speaking Russian At Home,, -Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,Population: Scandinavian Languages,Population Age 5 or More Speaking Scandinavian Languages At Home,, -Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,Population: Serbo Croatian,Population Age 5 or More Speaking Serbo Croatian At Home,, -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish or Spanish Creole, Above Poverty Level in The Past 12 Months",Spanish Creole Speakers Aged 5 Years Or more Above Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish or Spanish Creole, Below Poverty Level in The Past 12 Months",Spanish or Spanish Creole Speaking Population Aged 5 Years or More Below Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,"Population: Spanish or Spanish Creole, Foreign Born",Foreign Born Population Age 5 or More Speaking Spanish or Spanish Creole At Home,, -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_Native,"Population: Spanish or Spanish Creole, Native",Native Population Age 5 or More Speaking Spanish or Spanish Creole At Home,, -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_PovertyStatusDetermined,"Population: 5 Years or More, Spanish or Spanish Creole, Poverty Status Determined",Population Age 5 Years Or More With Determined Poverty Status Speaking Spanish At Home,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome,Population: Spanish,Spanish Population,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish, Above Poverty Level in The Past 12 Months",Spanish Speaking Population Aged 5 Years And Above Living Above Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish, Below Poverty Level in The Past 12 Months",Spanish Speaking Population Aged 5 Years or More Below Poverty Level in The Past 12 Months,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome_ForeignBorn,"Population: Spanish, Foreign Born",Foreign Born Population Age 5 or More Speaking Spanish At Home,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome_Native,"Population: Spanish, Native",Native Spanish Speakers,, -Count_Person_5OrMoreYears_SpanishSpokenAtHome_PovertyStatusDetermined,"Population: 5 Years or More, Spanish, Poverty Status Determined",Spanish Speaking Population Aged 5 Years And Above with Determined Poverty Status,, -Count_Person_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,Population: Swahili or Other Languages of Central Eastern And Southern Africa,Population Age 5 or More Speaking Swahili or Other Languages of Central Eastern And Southern Africa At Home,, -Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,Population: Tagalog Incl Filipino,Population Age 5 or More Speaking Tagalog And Filipino At Home,, -Count_Person_5OrMoreYears_TagalogSpokenAtHome,Population: Tagalog,Population Age 5 or More Speaking Tagalog Speaking At Home,, -Count_Person_5OrMoreYears_TamilSpokenAtHome,Population: Tamil,Population Age 5 or More Speaking Tamil At Home,, -Count_Person_5OrMoreYears_TeluguSpokenAtHome,Population: Telugu,Population Age 5 or More Speaking Telugu At Home,, -Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,Population: Thai Lao or Other Tai Kadai Languages,Population Age 5 or More Speaking Other Tai Kadai Languages At Home,, -Count_Person_5OrMoreYears_ThaiSpokenAtHome,Population: Thai,Population Age 5 or More Speaking Thai At Home,, -Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,Population: Ukrainian or Other Slavic Languages,Population Age 5 or More Speaking Ukrainian or Other Slavic Languages At Home,, -Count_Person_5OrMoreYears_UrduSpokenAtHome,Population: Urdu,Population Age 5 or More Speaking Urdu At Home,, -Count_Person_5OrMoreYears_VietnameseSpokenAtHome,Population: Vietnamese,Population Age 5 or More Speaking Vietnamese At Home,, -Count_Person_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,Population: Yiddish Pennsylvania Dutch or Other West Germanic Languages,Population Age 5 or More Speaking ther West Germanic Languages At Home,, -Count_Person_5OrMoreYears_YiddishSpokenAtHome,Population: Yiddish,Population Age 5 or More Speaking Yiddish At Home,, -Count_Person_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,Population: Yoruba Twi Igbo or Other Languages of Western Africa,Yoruba Twi Igbo or Other Languages of Western Africa At Home,, -Count_Person_60OrMoreYears_Illiterate_AsAFractionOf_Count_Person_60OrMoreYears,"Population: 60 Years or More, Illiterate (As Fraction of Count Person 60 or More Years)",,, -Count_Person_65OrMoreYears_Female_ResidesInNursingFacilities,"Population: 65 Years or More, Female, Nursing Facilities",Female Population Aged 65 Years Or More In Nursing Facilities,, -Count_Person_65OrMoreYears_Male_ResidesInNursingFacilities,"Population: 65 Years or More, Male, Nursing Facilities",Males Aged 65 Years or More in Nursing Facilities,, -Count_Person_7To14Years_Employed_AsFractionOf_Count_Person_7To14Years,"Population: 7 - 14 Years, Employed (As Fraction of Count Person 7 To 14 Years)",Employed Population Aged 7 to 14 Years,, -Count_Person_7To14Years_Female_Employed_AsFractionOf_Count_Person_7To14Years_Female,"Population: 7 - 14 Years, Employed, Female (As Fraction of Count Person 7 To 14 Years Female)",Employed Female Population Aged 7 to 14 Years,, -Count_Person_7To14Years_Male_Employed_AsFractionOf_Count_Person_7To14Years_Male,"Population: 7 - 14 Years, Employed, Male (As Fraction of Count Person 7 To 14 Years Male)",Male Population Aged 7 to 14 Years Who are Employed,, -Count_Person_85OrMoreYears_Female,"Population: 85 Years or More, Female",Female Population Above 85 Years,, -Count_Person_85OrMoreYears_Male,"Population: 85 Years or More, Male",Males Aged 85 Years Or More,, -Count_Person_BachelorOfArtsHumanitiesAndOtherMajor,Population: Arts Humanities And Other Major,Population in Arts Humanities And Other Major,, -Count_Person_BachelorOfBusinessMajor,Population: Business Major,Population With a Bachelor's Degree in Business Major,, -Count_Person_BachelorOfEducationMajor,Population: Education Major,Population With Education Majors,, -Count_Person_BachelorOfScienceAndEngineeringMajor,Population: Science And Engineering Major,Population in Science And Engineering Major,, -Count_Person_BachelorOfScienceAndEngineeringRelatedMajor,Population: Science And Engineering Related Major,Population With Bachelor Degrees In Science And Engineering Related,, -Count_Person_BornInOtherStateInTheUnitedStates,Population: Born in Other State in The United States,Population That is Born in Other States in The United States,, -Count_Person_BornInStateOfResidence,Population: Born in State of Residence,Population Born in State Residence,, -Count_Person_Civilian_Employed,"Population: 16 Years or More, Civilian, Employed",Civilians Aged 16 Years or More Employed,, -Count_Person_Civilian_FamilyHousehold_NonInstitutionalized,"Population: Civilian, Family Household, Non Institutionalized",Non-Institutionalized Civilian Family Households,, -Count_Person_Civilian_InLaborForce,"Population: 16 Years or More, Civilian, in Labor Force",Civilians Aged 16 Years or More in The Labor Force,, -Count_Person_Civilian_MarriedCoupleFamilyHousehold_NonInstitutionalized,"Population: Civilian, Married Couple Family Household, Non Institutionalized",Civilian Married Couple Family Households Non-Institutionalized,, -Count_Person_Civilian_NonfamilyHouseholdAndOtherLivingArrangements_NonInstitutionalized,"Population: Civilian, Nonfamily Household And Other Living Arrangements, Non Institutionalized",Non-Institutionalized Nonfamily Civilian Households and Other Arrangements,, -Count_Person_Civilian_NonInstitutionalized,"Population: Civilian, Non Institutionalized",Non-Institutionalized Civilians,, -Count_Person_Civilian_NonInstitutionalized_1.00OrLessRatioToPovertyLine,"Population: Civilian, Non Institutionalized, 1 Ratio To Poverty Line or Less",Non-Institutionalized Civilians With a 1 or Less Ratio To Poverty Line,, -Count_Person_Civilian_NonInstitutionalized_1.38OrLessRatioToPovertyLine,"Population: Civilian, Non Institutionalized, 1.4 Ratio To Poverty Line or Less",Non Institutionalized Civilians With A 1.4 Ratio To The Poverty Line or Less,, -Count_Person_Civilian_NonInstitutionalized_1.38OrMoreRatioToPovertyLine,"Population: Civilian, Non Institutionalized, 1.4 Ratio To Poverty Line or More",Non-Institutionalized Civilian Population With a 1.4 Ratio To Poverty Line or More,, -Count_Person_Civilian_NonInstitutionalized_1.38To1.99RatioToPovertyLine,"Population: Civilian, Non Institutionalized, 1.4 - 2.0 Ratio To Poverty Line",Non-Institutionalized Civilian Population With A 1.4 to 2.0 Ratio To Poverty Line,, -Count_Person_Civilian_NonInstitutionalized_1.38To3.99RatioToPovertyLine,"Population: Civilian, Non Institutionalized, 1.4 - 4.0 Ratio To Poverty Line",Civilian Population in Non Institutionalized With a 1.4 to 4.0 Ratio To Poverty Line,, -Count_Person_Civilian_NonInstitutionalized_2.00OrMoreRatioToPovertyLine,"Population: Civilian, Non Institutionalized, 2 Ratio To Poverty Line or More",Non-Institutionalized Civilians With 2 Ratio To Poverty Line,, -Count_Person_Civilian_NonInstitutionalized_2.00To3.99RatioToPovertyLine,"Population: Civilian, Non Institutionalized, 2 - 4.0 Ratio To Poverty Line",Non-Institutionalized Civilians With A Ratio 2 to 4.0 To Poverty Line,, -Count_Person_Civilian_NonInstitutionalized_4.00OrMoreRatioToPovertyLine,"Population: Civilian, Non Institutionalized, 4 Ratio To Poverty Line or More",Non-Institutionalized Civilians with a 4 Ratio to Poverty Line or More,, -Count_Person_Civilian_NonInstitutionalized_AmericanIndianOrAlaskaNativeAlone,"Population: Civilian, Non Institutionalized, American Indian or Alaska Native Alone",Non-Institutionalized American Indian or Alaska Native Civilian Population,, -Count_Person_Civilian_NonInstitutionalized_AsianAlone,"Population: Civilian, Non Institutionalized, Asian Alone",Asian Non Institutionalized Civilians,, -Count_Person_Civilian_NonInstitutionalized_BlackOrAfricanAmericanAlone,"Population: Civilian, Non Institutionalized, Black or African American Alone",Non Institutionalized African American Civilians,, -Count_Person_Civilian_NonInstitutionalized_ForeignBorn,"Population: Civilian, Non Institutionalized, Foreign Born",Non Institutionalized Foreign Born Civilians,, -Count_Person_Civilian_NonInstitutionalized_HispanicOrLatino,"Population: Civilian, Non Institutionalized, Hispanic or Latino",Hispanic Civilians Non-Institutionalized,, -Count_Person_Civilian_NonInstitutionalized_Native,"Population: Civilian, Non Institutionalized, Native",Non-Institutionalized Native Civilians,, -Count_Person_Civilian_NonInstitutionalized_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Civilian, Non Institutionalized, Native Hawaiian or Other Pacific Islander Alone",Non-Institutionalized Native Hawaiian or Other Pacific Islander Population,, -Count_Person_Civilian_NonInstitutionalized_OneRace,"Population: Civilian, Non Institutionalized, One Race",Non-Institutionalized Uniracial Civilians,, -Count_Person_Civilian_NonInstitutionalized_PovertyStatusDetermined,"Population: Civilian, Non Institutionalized, Poverty Status Determined",Civilians in Non-Institutionalized with Poverty Status Determined,, -Count_Person_Civilian_NonInstitutionalized_ResidesInHousehold,"Population: Civilian, Non Institutionalized, Household",Households of Non-Institutionalized Civilians,, -Count_Person_Civilian_NonInstitutionalized_SomeOtherRaceAlone,"Population: Civilian, Non Institutionalized, Some Other Race Alone",Non-Institutionalized Other Race Population,, -Count_Person_Civilian_NonInstitutionalized_TwoOrMoreRaces,"Population: Civilian, Non Institutionalized, Two or More Races",Non-Institutionalized Civilian Multiracial Population,, -Count_Person_Civilian_NonInstitutionalized_WhiteAlone,"Population: Civilian, Non Institutionalized, White Alone",Whites Non Institutionalized Civilians,, -Count_Person_Civilian_NonInstitutionalized_WhiteAloneNotHispanicOrLatino,"Population: Civilian, Non Institutionalized, White Alone Not Hispanic or Latino",Non-Institutionalized White And Non-Hispanic Civilians,, -Count_Person_Civilian_OtherFamilyHousehold_NonInstitutionalized,"Population: Civilian, Other Family Household, Non Institutionalized",Non-Institutionalized Civilians In Other Family Households,, -Count_Person_Civilian_ResidesInHousehold,"Population: Civilian, Household",Household Civilians,, -Count_Person_Civilian_SingleFatherFamilyHousehold_NonInstitutionalized,"Population: Civilian, Single Father Family Household, Non Institutionalized",Non Institutionalized Civilian Single Father Family Households,, -Count_Person_Civilian_SingleMotherFamilyHousehold_NonInstitutionalized,"Population: Civilian, Single Mother Family Household, Non Institutionalized",Non-Institutionalized Civilian Single Mother Family Household,, -Count_Person_CorrectionalFacilityLocation_OutOfState,"Population (Measured Based on Jurisdiction): Out-of-State, Incarcerated",Out-of-State Incarcerated Population,, -Count_Person_DateOfEntry1990OrEarlier,"Population: Before 1990, Foreign Born",Foreign-Born Population Who Immigrated Before 1990,, -Count_Person_DateOfEntry1990To1999,"Population: Between 1990 And 1999, Foreign Born",Foreign-Born Population Immigration Between 1990 And 1999,, -Count_Person_DateOfEntry2000To2009,"Population: Between 2000 And 2009, Foreign Born",Foreign-Born Population Between 2000 and 2009,, -Count_Person_DateOfEntry2010OrLater,"Population: After 2010, Foreign Born",Population Foreign Born After 2010,, -Count_Person_DetailedEnrolledInCollegeUndergraduateYears,Population: Enrolled in College Undergraduate Years,Population Enrolled in College Undergraduate Years,, -Count_Person_DetailedEnrolledInGrade1,Population: Enrolled in Grade 1,Enrolled First Graders,, -Count_Person_DetailedEnrolledInGrade10,Population: Enrolled in Grade 10,Population Enrolled in Grade 10,, -Count_Person_DetailedEnrolledInGrade11,Population: Enrolled in Grade 11,Population Enrolled in Grade 11,, -Count_Person_DetailedEnrolledInGrade12,Population: Enrolled in Grade 12,Population Enrolled in Grade 12,, -Count_Person_DetailedEnrolledInGrade2,Population: Enrolled in Grade 2,2nd Graders,, -Count_Person_DetailedEnrolledInGrade3,Population: Enrolled in Grade 3,Population Enrolled in Grade 3,, -Count_Person_DetailedEnrolledInGrade4,Population: Enrolled in Grade 4,Population Enrolled in Grade 4,, -Count_Person_DetailedEnrolledInGrade5,Population: Enrolled in Grade 5,Population Enrolled in Grade 5,, -Count_Person_DetailedEnrolledInGrade6,Population: Enrolled in Grade 6,Population Enrolled in Grade 6,, -Count_Person_DetailedEnrolledInGrade7,Population: Enrolled in Grade 7,Population Enrolled in Grade 7,, -Count_Person_DetailedEnrolledInGrade8,Population: Enrolled in Grade 8,8th Graders,, -Count_Person_DetailedEnrolledInGrade9,Population: Enrolled in Grade 9,Population Enrolled In Grade 9,, -Count_Person_DetailedEnrolledInKindergarten,Population: Enrolled in Kindergarten,Population Enrolled in Kindergarten,, -Count_Person_DetailedEnrolledInNurserySchoolPreschool,Population: Enrolled in Nursery School Preschool,Population Enrolled in Nursery School,, -Count_Person_DetailedGraduateOrProfessionalSchool,Population: Graduate or Professional School,Population in Graduate or Professional Schools,, -Count_Person_DidNotWork,"Population: 16 - 64 Years, Did Not Work",Population Aged 16 to 64 Years Who Did Not Work,, -Count_Person_Divorced_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Divorced, Adult Correctional Facilities",Divorced Population Aged 15 Years or More in Adult Correctional Facilities,, -Count_Person_Divorced_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Divorced, College or University Student Housing",Divorced Population Aged 15 Years or More in College or University Student Housing,, -Count_Person_Divorced_ResidesInGroupQuarters,"Population: 15 Years or More, Divorced, Group Quarters",Divorced Population Aged 15 Years or More in Group Quarters,, -Count_Person_Divorced_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Divorced, Institutionalized Group Quarters",Divorced Population Aged 15 Years or More in Institutionalized Group Quarters,, -Count_Person_Divorced_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Divorced, Noninstitutionalized Group Quarters",Divorced Population Aged 15 Years Or More In Non-Institutionalized Group Quarters,, -Count_Person_Divorced_ResidesInNursingFacilities,"Population: 15 Years or More, Divorced, Nursing Facilities",Divorced Population Aged 15 Years or More in Nursing Facilities,, -Count_Person_DivorcedOrSeparated,Population: Divorced or Separated,Divorced Or Separated Population,, -Count_Person_DivorcedOrSeparated_DifferentHouseAbroad,"Population: 15 Years or More, Divorced or Separated, Different House Abroad",Population Aged 15 Years or More Who Were Separated in Different Houses Abroad,, -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountyDifferentState,"Population: 15 Years or More, Divorced or Separated, Different House in Different County Different State",Divorced Or Separated Population Aged 15 Years Or More Living In Different Houses In Different States And Counties,, -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountySameState,"Population: 15 Years or More, Divorced or Separated, Different House in Different County Same State",Divorced Population Aged 15 Years or More Living in a Different House in a Different County and Same State,, -Count_Person_DivorcedOrSeparated_DifferentHouseInSameCounty,"Population: 15 Years or More, Divorced or Separated, Different House in Same County",Population Aged 15 Years or More Divorced or Separated in Different Houses in the Same County,, -Count_Person_EducationalAttainment10ThGrade,Population: 10th Grade,Population With 10th Grade Education,, -Count_Person_EducationalAttainment11ThGrade,Population: 11th Grade,11th Graders,, -Count_Person_EducationalAttainment12ThGradeNoDiploma,Population: 12th Grade No Diploma,12th Graders Without Diploma,, -Count_Person_EducationalAttainment1StGrade,Population: 1st Grade,Population in Grade 1,, -Count_Person_EducationalAttainment2NdGrade,Population: 2nd Grade,2nd Grade Population,, -Count_Person_EducationalAttainment3RdGrade,Population: 3rd Grade,Population of 3rd Graders,, -Count_Person_EducationalAttainment4ThGrade,Population: 4th Grade,Fourth Graders,, -Count_Person_EducationalAttainment5ThGrade,Population: 5th Grade,Student Population In 5th Grade,, -Count_Person_EducationalAttainment6ThGrade,Population: 6th Grade,Population in 6th Grade,, -Count_Person_EducationalAttainment7ThGrade,Population: 7th Grade,Population of 7th Graders,, -Count_Person_EducationalAttainment8ThGrade,Population: 8th Grade,Population in 8th Grade,, -Count_Person_EducationalAttainment9ThGrade,Population: 9th Grade,Population of 9th Graders,, -Count_Person_EducationalAttainmentAssociatesDegree,Population: Associates Degree,Population With Associate's Degree Education,, -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseAbroad,"Population: 25 Years or More, Bachelors Degree, Different House Abroad",Population Aged 25 Years or More in Different House Abroad With Bachelor's Degree,, -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountyDifferentState,"Population: 25 Years or More, Bachelors Degree, Different House in Different County Different State","Population Aged 25 Years Or More In Different Houses, in Different Counties, and in Different States With Bachelor Degree",, -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountySameState,"Population: 25 Years or More, Bachelors Degree, Different House in Different County Same State",Population Aged 25 Years or More With Bachelor's Degree Living in Different Houses In Different Counties in The Same State,, -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInSameCounty,"Population: 25 Years or More, Bachelors Degree, Different House in Same County",Population Aged 25 Years or More With Bachelor's Degree In Different House in Same County,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_LanguageOtherThanEnglishSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Language Other Than English",Population Aged 25 Years or More with Bachelor's Degree or Higher Language Other Than English,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_OnlyEnglishSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Only English",Pure English Speakers Aged 25 Years Or More With Bachelor Degree Or Higher,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInAdultCorrectionalFacilities,"Population: 25 Years or More, Bachelors Degree or Higher, Adult Correctional Facilities",Population Aged 25 Years or More with a Bachelor's Degree or Higher in Adult Correctional Facilities,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInCollegeOrUniversityStudentHousing,"Population: 25 Years or More, Bachelors Degree or Higher, College or University Student Housing",Population Aged 25 Years or More with Bachelor's Degree or Higher and College or University Student Housing,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInGroupQuarters,"Population: 25 Years or More, Bachelors Degree or Higher, Group Quarters",Population With Bachelor's Degree or Higher Aged 25 Years or More In Group Quarters,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInInstitutionalizedGroupQuarters,"Population: 25 Years or More, Bachelors Degree or Higher, Institutionalized Group Quarters",Population Aged 25 Years or More With Bachelor's Degree or Higher in Institutionalized Group Quarters,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNoninstitutionalizedGroupQuarters,"Population: 25 Years or More, Bachelors Degree or Higher, Noninstitutionalized Group Quarters",Population Aged 25 Years or More with a Bachelor's Degree or Higher in Non-Institutionalized Group Quarters,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNursingFacilities,"Population: 25 Years or More, Bachelors Degree or Higher, Nursing Facilities",Nursing Facilities Residents Aged 25 Years or More With Bachelor's Degree or Higher,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Spanish or Spanish Creole",Population Aged 25 Years or More With Bachelor' Degrees or Higher In Spanish Creole,, -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Spanish",Spanish Speaking Population Aged 25 Years or More With Bachelor's Degrees or Higher,, -Count_Person_EducationalAttainmentGedOrAlternativeCredential,Population: Ged or Alternative Credential,Alternative Credential Population,, -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree,Population: Graduate or Professional Degree,Population With Graduate or Professional Degrees,, -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseAbroad,"Population: 25 Years or More, Graduate or Professional Degree, Different House Abroad",Population Aged 25 Years or More With a Graduate Degree Residing in Different Houses Abroad,, -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountyDifferentState,"Population: 25 Years or More, Graduate or Professional Degree, Different House in Different County Different State",Population Aged 25 Years or More With Graduate or Professional Degrees in Different Houses in Different Counties and Different States,, -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountySameState,"Population: 25 Years or More, Graduate or Professional Degree, Different House in Different County Same State",Population Aged 25 Years or More In Different House And Different States With Graduate Or Professional Degrees,, -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInSameCounty,"Population: 25 Years or More, Graduate or Professional Degree, Different House in Same County",Population Aged 25 Years or More With Graduate or Professional Degree in Different House in Same County,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency,Population: High School Graduate Includes Equivalency,High School Graduates Including Equivalency,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseAbroad,"Population: 25 Years or More, High School Graduate Includes Equivalency, Different House Abroad",Foreign-Born Population Aged 25 Years or More With High School Graduates Including Equivalency in Different Houses Abroad,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountyDifferentState,"Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Different County Different State",High School Graduates Aged 25 Years Or More In Differents Houses And Counties,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountySameState,"Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Different County Same State",Population of High School Graduates Aged 25 Years and Above In Different Houses and County In the Same States,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInSameCounty,"Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Same County",Population Aged 25 Years or More High School Graduates Including Equivalency Different House in Same County,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_LanguageOtherThanEnglishSpokenAtHome,"Population: 25 Years or More, High School Graduate Includes Equivalency, Language Other Than English",Population Aged 25 Years or More High School Graduates Including Equivalency in English Language,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_OnlyEnglishSpokenAtHome,"Population: 25 Years or More, High School Graduate Includes Equivalency, Only English",Population Aged 25 Years or More with High School Graduates Includes Equivalency Fluent Only English,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, High School Graduate Includes Equivalency, Spanish or Spanish Creole",Spanish Creole Speaking High School Graduates Or Equivalent Aged 25 Years or More,, -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishSpokenAtHome,"Population: 25 Years or More, High School Graduate Includes Equivalency, Spanish",Population Aged 25 Years or More High School Graduates Including Equivalency in Spanish,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher,Population: High School Graduate or Higher,Population of High School Graduates or Higher,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInAdultCorrectionalFacilities,"Population: 25 Years or More, High School Graduate or Higher, Adult Correctional Facilities",High School Graduates Aged 25 Years Or More In Adult Correctional Facilities,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInCollegeOrUniversityStudentHousing,"Population: 25 Years or More, High School Graduate or Higher, College or University Student Housing",Population Aged 25 Years or More with High School Graduates or Higher in College or University Student Housing,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInGroupQuarters,"Population: 25 Years or More, High School Graduate or Higher, Group Quarters",High School Graduates Population Above 25 Years Old in Group Quarters,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInInstitutionalizedGroupQuarters,"Population: 25 Years or More, High School Graduate or Higher, Institutionalized Group Quarters",High School Graduates Aged 25 Years or More in Institutionalized Group Quarters,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNoninstitutionalizedGroupQuarters,"Population: 25 Years or More, High School Graduate or Higher, Noninstitutionalized Group Quarters",Population Aged 25 Years or More High School Graduates or Higher in Non-institutionalized Group Quarters,, -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNursingFacilities,"Population: 25 Years or More, High School Graduate or Higher, Nursing Facilities",Population Aged 25 Years And Above In Nursing Facilities With High School Graduate,, -Count_Person_EducationalAttainmentKindergarten,Population: Kindergarten,Population in Kindergarten,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseAbroad,"Population: 25 Years or More, Less Than High School Graduate, Different House Abroad",Population Aged 25 Years or More with Less Than High School Graduates in Different Houses Abroad,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState,"Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State","Population Aged 25 Years or More with Less Than High School Graduates in Different Houses, County, and State",, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountySameState,"Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Same State","Population Above 25 Years Old Less Than High School Graduates in Different House, Counties and Same State",, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInSameCounty,"Population: 25 Years or More, Less Than High School Graduate, Different House in Same County",Population Aged 25 Years or More Less Than High School Graduates in Different House in Same County,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_LanguageOtherThanEnglishSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Language Other Than English",Non-English Speaking Population Aged 25 Years or More Who are Less Than High School Graduates,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_OnlyEnglishSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Only English",Population Aged 25 Years Or More Who Are Less Than High School Graduates And Only Speak English,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Spanish or Spanish Creole",Spanish or Spanish Creole High School Graduates Aged 25 Years or More,, -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Spanish",Spanish Population Aged 25 Years or More with Less Than High School Graduates,, -Count_Person_EducationalAttainmentNurserySchool,Population: Nursery School,Population in Nursery Schools,, -Count_Person_EducationalAttainmentPrimarySchool,Population: Primary School,Primary School Population,, -Count_Person_EducationalAttainmentProfessionalSchoolDegree,Population: Professional School Degree,Population With Professional School Degrees,, -Count_Person_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree,Population: Some College 1 or More Years No Degree,Population Aged 1 or More Years From Some Colleges With No Degrees,, -Count_Person_EducationalAttainmentSomeCollegeLessThan1Year,Population: Some College Less Than 1 Year,Population Who Attended Some College For Less Than 1 Year,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseAbroad,"Population: 25 Years or More, Some College or Associates Degree, Different House Abroad",Population Aged 25 Years or More With Some College or Associate's Degree in Different House Abroad,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountyDifferentState,"Population: 25 Years or More, Some College or Associates Degree, Different House in Different County Different State",Population Aged 25 Years or More With Some College or Associate's Degree Living in Different Houses in Different Counties And Different States,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountySameState,"Population: 25 Years or More, Some College or Associates Degree, Different House in Different County Same State",Population Aged 25 Years or More With Some College or Associate's Degree Different House in Different County Same State,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInSameCounty,"Population: 25 Years or More, Some College or Associates Degree, Different House in Same County",Population Aged 25 Years or More With Some College or Associate's Degrees in Different Houses in The Same County,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_LanguageOtherThanEnglishSpokenAtHome,"Population: 25 Years or More, Some College or Associates Degree, Language Other Than English",Population Aged 25 Years or More Speaking Languages Other Than English,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_OnlyEnglishSpokenAtHome,"Population: 25 Years or More, Some College or Associates Degree, Only English",Population Aged 25 Years or More Who Speaks Only English with Some College or Associate's Degrees,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, Some College or Associates Degree, Spanish or Spanish Creole",Spanish or Spanish Creole Population Aged 25 Years or More Some College or Associate's Degree,, -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishSpokenAtHome,"Population: 25 Years or More, Some College or Associates Degree, Spanish",Spanish Population Aged 25 Years or More With Some College or Associate's Degrees,, -Count_Person_Employed_NACE/A,"Population: Agriculture, Forestry And Fishing",Population Employed in Agriculture Forestry And Fishing,, -Count_Person_Employed_NACE/B-E,Population: Industry (except Construction),Population Employed in Industry Except Construction,, -Count_Person_Employed_NACE/C,Population: Manufacturing,Population Employed in Manufacturing,, -Count_Person_Employed_NACE/F,Population: Construction,Population Employed in Construction,, -Count_Person_Employed_NACE/G-I,"Population: Wholesale And Retail Trade, Transport, Accommodation And Food Service",Population Employed in Wholesale And Retail Trade Transport Accommodation And Food Service,, -Count_Person_Employed_NACE/G-J,"Population: Wholesale And Retail Trade, Transport, Accommodation And Food Service Activities, Information And Communication",Population Employed in Wholesale And Retail Trade Transport Accommodation And Food Service Activities Information And Communication,, -Count_Person_Employed_NACE/J,Population: Information And Communication,Population Employed in Information And Communication,, -Count_Person_Employed_NACE/K,Population: Financial And Insurance Activities,Population Employed in Financial And Insurance Activities,, -Count_Person_Employed_NACE/K-N,"Population: Financial, Real Estate, Professional, Scientific, Technical, Administrative, And Support Activities",Population Employed in Financial Real Estate Professional Scientific Technical Administrative And Support Activities,, -Count_Person_Employed_NACE/L,Population: Real Estate Activities,Population Employed in Real Estate Activities,, -Count_Person_Employed_NACE/M-N,"Population: Professional, Scientific And Technical Activities, Administrative And Support Service Activities",Population Employed in Professional Scientific And Technical Activities Administrative And Support Service Activities,, -Count_Person_Employed_NACE/O-Q,"Population: Public Administration, Defence, Education, Human Health And Social Work Activities",Population Employed in Public Administration Defence Education Human Health And Social Work Activities,, -Count_Person_Employed_NACE/O-U,"Population: Public Administration And Defence, Compulsory Social Security, Education, Human Health And Social Work Activities, Arts, Entertainment And Recreation",Population Employed in Public Administration And Defence Compulsory Social Security Education Human Health And Social Work Activities Arts Entertainment And Recreation,, -Count_Person_Employed_NACE/R-U,"Population: Arts, Entertainment, Recreation, Other Service, Household, And Extra-territorial Organizations And Bodies Activities",Population Employed in Arts Entertainment Recreation Other Service Household And Extra-territorial Organizations And Bodies Activities,, -Count_Person_EnrolledInCollegeOrGraduateSchool,"Population: 3 Years or More, Enrolled in College or Graduate School",Population Aged 3 Years or More Enrolled in Colleges,, -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInAdultCorrectionalFacilities,"Population: 3 Years or More, Enrolled in College or Graduate School, Adult Correctional Facilities",Males In Adult Correctional Facilities For 3 Years Or More Enrolled In College Or Graduate School,, -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInCollegeOrUniversityStudentHousing,"Population: 3 Years or More, Enrolled in College or Graduate School, College or University Student Housing",Population Aged 3 Years or More Enrolled in College or Graduate School With College or University Student Housing,, -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInGroupQuarters,"Population: 3 Years or More, Enrolled in College or Graduate School, Group Quarters",Population Aged 3 Years or More Enrolled in College or Graduate School in Group Quarters,, -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNursingFacilities,"Population: 3 Years or More, Enrolled in College or Graduate School, Nursing Facilities",Population Aged 3 Years or More Enrolled in Public College or Graduate School in Nursing Facilities,, -Count_Person_EnrolledInCollegeUndergraduateYears,Population: Enrolled in College Undergraduate Years,Population Enrolled in College Undergraduate Years,, -Count_Person_EnrolledInKindergarten,Population: Enrolled in Kindergarten,Population Enrolled in Kindergarten,, -Count_Person_Female_ConditionArthritis,"Population: Female, Arthritis",,, -Count_Person_Female_ConditionDiseasesOfHeart,"Population: Female, Diseases of Heart",,, -Count_Person_Female_DidNotWork,"Population: 16 - 64 Years, Female, Did Not Work",Non-Working Female Population Aged 16 to 64 Years,, -Count_Person_Female_Divorced,"Population: Female, Divorced",Divorced Female Population,, -Count_Person_Female_FullTimeYearRoundWorker,"Population: 16 - 64 Years, Female, Full Time Year Round Worker",Female Population Aged 16 to 64 Years Who Worked Full Time Year Round,, -Count_Person_Female_MarriedAndNotSeparated,"Population: Female, Married And Not Separated",Married And Not Separated Female Population,, -Count_Person_Female_NeverMarried,"Population: Female, Never Married",Unmarried Female Population,, -Count_Person_Female_NoHealthInsurance,"Population: Female, No Health Insurance",Female Population Without Health Insurance,, -Count_Person_Female_Widowed,"Population: Female, Widowed",Widowed Female Population,, -Count_Person_Female_WithHealthInsurance,"Population: Female, With Health Insurance",Female Population With Health Insurance,, -Count_Person_5OrMoreYears_ForeignBorn,Population: Foreign Born,Foreign Borns,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica,"Population: Foreign Born, Africa",Foreign-Born Population In Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1OrLessRatioToPovertyLine,"Population: Foreign Born, Africa, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Africa With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1To1.99RatioToPovertyLine,"Population: Foreign Born, Africa, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population In Africa With A1 to 2.0 Ration To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Africa, 2 Ratio To Poverty Line or More",Foreign Borns In Africa With A 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Africa, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign-Born Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AsianAlone,"Population: Foreign Born, Africa, Asian Alone",Foreign-Born Asian Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Africa, Black or African American Alone",African American Foreign-Born Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_HispanicOrLatino,"Population: Foreign Born, Africa, Hispanic or Latino",Hispanic Foreign-Born Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Africa, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiians or Other Pacific Islanders Foreign Born in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_OneRace,"Population: Foreign Born, Africa, One Race",Uniracial Foreign Born in Africa Population,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,"Population: Foreign Born, Africa, Poverty Status Determined",Population Foreign Born In Africa With Determined Poverty Status;Poverty Status Determined Of Foreign Born Population In Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_SomeOtherRaceAlone,"Population: Foreign Born, Africa, Some Other Race Alone",Some Other Race Foreign-Born Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_TwoOrMoreRaces,"Population: Foreign Born, Africa, Two or More Races",Multiracial Foreign-Born Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAlone,"Population: Foreign Born, Africa, White Alone",Population of White Foreign Borns in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Africa, White Alone Not Hispanic or Latino",Foreign-Born White Non-Hispanic Population in Africa,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_1OrLessRatioToPovertyLine,"Population: Foreign Born, Asia, 1 Ratio To Poverty Line or Less",Foreign Born Population in Asia With a 1 Ratio To Poverty Line or Less;Foreign-Born Population in Asia With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, Asia, 1 - 2.0 Ratio To Poverty Line",Asia Foreign Borns With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Asia, 2 Ratio To Poverty Line or More",Foreign Born Population in Asia With a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Asia, American Indian or Alaska Native Alone",American Indian or Alaska Native Asian Foreign-Born Population,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_AsianAlone,"Population: Foreign Born, Asia, Asian Alone",Asian Foreign-Born Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Asia, Black or African American Alone",African American Foreign-Born Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_HispanicOrLatino,"Population: Foreign Born, Asia, Hispanic or Latino",Hispanic Foreign-Born Population In Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Asia, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Foreign-Born Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_OneRace,"Population: Foreign Born, Asia, One Race",One Race Foreign-Born Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,"Population: Foreign Born, Asia, Poverty Status Determined",Population Foreign Born In Asia With a Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_SomeOtherRaceAlone,"Population: Foreign Born, Asia, Some Other Race Alone",Some Other Foreign Born Race Asian Population,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_TwoOrMoreRaces,"Population: Foreign Born, Asia, Two or More Races",Foreign Born Multiracial Asians,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAlone,"Population: Foreign Born, Asia, White Alone",White Foreign-Born Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Asia, White Alone Not Hispanic or Latino",Foreign-Born Non-Hispanic White Population in Asia,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean,"Population: Foreign Born, Caribbean",Foreign-Born Population In the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1OrLessRatioToPovertyLine,"Population: Foreign Born, Caribbean, 1 Ratio To Poverty Line or Less",Foreign Borns in The Caribbean With A1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1To1.99RatioToPovertyLine,"Population: Foreign Born, Caribbean, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in the Caribbean with a 1 To 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Caribbean, 2 Ratio To Poverty Line or More",Foreign Born Population in Caribbean With a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Caribbean, American Indian or Alaska Native Alone",Foreign-Born American Indian or Alaska Native Population In The Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AsianAlone,"Population: Foreign Born, Caribbean, Asian Alone",Asian Foreign-Born Population in the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Caribbean, Black or African American Alone",African Americans Foreign Born in The Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_HispanicOrLatino,"Population: Foreign Born, Caribbean, Hispanic or Latino",Hispanic Caribbean Foreign Born Population,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Caribbean, Native Hawaiian or Other Pacific Islander Alone",Hawaiian Or Other Pacific Islander Foreign-Born Population In the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_OneRace,"Population: Foreign Born, Caribbean, One Race",Uniracial Population Foreign Born in The Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,"Population: Foreign Born, Caribbean, Poverty Status Determined",Foreign Born in Caribbean Population With Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_SomeOtherRaceAlone,"Population: Foreign Born, Caribbean, Some Other Race Alone",Some Other Race Foreign-Born Population in the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_TwoOrMoreRaces,"Population: Foreign Born, Caribbean, Two or More Races",Multiracial Foreign-Born Population In the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAlone,"Population: Foreign Born, Caribbean, White Alone",White Foreign-Born Population in the Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Caribbean, White Alone Not Hispanic or Latino",White Non Hispanic Foreign Born Population in Caribbean,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Foreign Born, Central America Except Mexico","Foreign-Born Population in Central America, Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1OrLessRatioToPovertyLine,"Population: Foreign Born, Central America Except Mexico, 1 Ratio To Poverty Line or Less",Population Foreign Born In Central America Except Mexico With A 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1To1.99RatioToPovertyLine,"Population: Foreign Born, Central America Except Mexico, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in Central America Except Mexico With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Central America Except Mexico, 2 Ratio To Poverty Line or More","Foreign-Born Population in Central America Except, Mexico With 2 Ratio to Poverty Line or More",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Central America Except Mexico, American Indian or Alaska Native Alone","American Indian or Alaska Native Foreign-Born Population in Central America, Except Mexico;American Indian or Alaska Native Foreign Born Population in Central America Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AsianAlone,"Population: Foreign Born, Central America Except Mexico, Asian Alone","Foreign Born In Central America Except Mexico, Asian",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Central America Except Mexico, Black or African American Alone","African American Foreign-Born Population in Central America, Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_HispanicOrLatino,"Population: Foreign Born, Central America Except Mexico, Hispanic or Latino","Hispanic Foreign Borns In Central America, Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Central America Except Mexico, Native Hawaiian or Other Pacific Islander Alone",Foreign-Born Population In Central America Native Hawaiian Or Other Pacific Islanders,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_OneRace,"Population: Foreign Born, Central America Except Mexico, One Race","Uniracial Central America, Except Mexico Foreign-Born Population",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,"Population: Foreign Born, Central America Except Mexico, Poverty Status Determined","Foreign-Born Population With Poverty Status Determined in Central America, Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_SomeOtherRaceAlone,"Population: Foreign Born, Central America Except Mexico, Some Other Race Alone","Foreign-Born Population of Some Other Race in Central America, Except Mexico",, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_TwoOrMoreRaces,"Population: Foreign Born, Central America Except Mexico, Two or More Races",Multiracial Foreign Born Population in Central America Except Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAlone,"Population: Foreign Born, Central America Except Mexico, White Alone",Foreign Born In Central America Except For Mexico White Population,, -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Central America Except Mexico, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population in Central America Except Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Foreign Born, Eastern Asia",Eastern Asia Foreign Borns,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1OrLessRatioToPovertyLine,"Population: Foreign Born, Eastern Asia, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Eastern Asia With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, Eastern Asia, 1 - 2.0 Ratio To Poverty Line",Foreign Born Population in Eastern Asia With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Eastern Asia, 2 Ratio To Poverty Line or More",Foreign-Born Population In Eastern Asia With A 2 Or More Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Eastern Asia, American Indian or Alaska Native Alone",Foreign Born In Eastern Asia American Indian or Alaska Native Population,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AsianAlone,"Population: Foreign Born, Eastern Asia, Asian Alone",Asian Population Foreign Born In Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Eastern Asia, Black or African American Alone",Foreign-Born African American Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_HispanicOrLatino,"Population: Foreign Born, Eastern Asia, Hispanic or Latino",Hispanics Foreign Borns In Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Eastern Asia, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiians or Other Pacific Islanders Foreign-Born Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_OneRace,"Population: Foreign Born, Eastern Asia, One Race",One Race Foreign-Born Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,"Population: Foreign Born, Eastern Asia, Poverty Status Determined",Population Foreign-Born In Eastern Asia With Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_SomeOtherRaceAlone,"Population: Foreign Born, Eastern Asia, Some Other Race Alone",Population Of Foreign Borns In Eastern Asia And Some Other Race,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_TwoOrMoreRaces,"Population: Foreign Born, Eastern Asia, Two or More Races",Multiracial Foreign-Born Population In Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAlone,"Population: Foreign Born, Eastern Asia, White Alone",White Foreign-Born Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Eastern Asia, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_1OrLessRatioToPovertyLine,"Population: Foreign Born, Europe, 1 Ratio To Poverty Line or Less",Foreign Born in Europe Population With a 1 or Less Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_1To1.99RatioToPovertyLine,"Population: Foreign Born, Europe, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in Europe with a 1 to 2 Ratio to Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Europe, 2 Ratio To Poverty Line or More",Foreign-Born Population in Europe With 2 or More Ratio To Poverty Line ,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Europe, American Indian or Alaska Native Alone",Foreign-Born American Indian or Alaska Native Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_AsianAlone,"Population: Foreign Born, Europe, Asian Alone",Asian Foreign-Born Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Europe, Black or African American Alone",Europe Foreign-Born in African American Population,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_HispanicOrLatino,"Population: Foreign Born, Europe, Hispanic or Latino",Hispanic Foreign-Born Population In Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Europe, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Foreign Born in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_OneRace,"Population: Foreign Born, Europe, One Race",One Race Foreign-Born Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,"Population: Foreign Born, Europe, Poverty Status Determined",Foreign-Born Population in Europe With Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_SomeOtherRaceAlone,"Population: Foreign Born, Europe, Some Other Race Alone",Other Race Foreign-Born Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_TwoOrMoreRaces,"Population: Foreign Born, Europe, Two or More Races",Multiracial Foreign Borns In Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAlone,"Population: Foreign Born, Europe, White Alone",White Foreign-Born Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Europe, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population in Europe,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1OrLessRatioToPovertyLine,"Population: Foreign Born, Latin America, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Latin America With A 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1To1.99RatioToPovertyLine,"Population: Foreign Born, Latin America, 1 - 2.0 Ratio To Poverty Line",Foreign Born in Latin America Population With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Latin America, 2 Ratio To Poverty Line or More",Foreign-Born Population in Latin America With a1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Latin America, American Indian or Alaska Native Alone",American Indians or Alaska Natives Foreign Borns in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AsianAlone,"Population: Foreign Born, Latin America, Asian Alone",Asian Foreign-Born Population in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Latin America, Black or African American Alone",Foreign-Born Population in Latin America African American,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_HispanicOrLatino,"Population: Foreign Born, Latin America, Hispanic or Latino",Hispanic Population Foreign-Born in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Latin America, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiians or Other Pacific Islander Foreign-Born Population in Latin American,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_OneRace,"Population: Foreign Born, Latin America, One Race",Monoracials Foreign Born In Latin American,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,"Population: Foreign Born, Latin America, Poverty Status Determined",Foreign-Born Population With Poverty Status Determined in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_SomeOtherRaceAlone,"Population: Foreign Born, Latin America, Some Other Race Alone",Other Race Foreign-Born Population In Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_TwoOrMoreRaces,"Population: Foreign Born, Latin America, Two or More Races",Multiracial Population Foreign-Born in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAlone,"Population: Foreign Born, Latin America, White Alone",Foreign Born In Latin America White Population,, -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Latin America, White Alone Not Hispanic or Latino",Foreign-Born White Non-Hispanic Population in Latin America,, -Count_Person_ForeignBorn_PlaceOfBirthMexico,"Population: Foreign Born, Country/MEX",Foreign-Born Population in Mexican,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_1OrLessRatioToPovertyLine,"Population: Foreign Born, Country/MEX, 1 Ratio To Poverty Line or Less",Foreign-Born Population In Eastern Asia With A 2 Or More Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_1To1.99RatioToPovertyLine,"Population: Foreign Born, Country/MEX, 1 - 2.0 Ratio To Poverty Line",Foreign Born Population in Mexico With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Country/MEX, 2 Ratio To Poverty Line or More",Foreign-Born Population in Mexico with a 2 or More Ratio to Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Country/MEX, American Indian or Alaska Native Alone",Foreign-Born Mexican and American Indian or Alaska Native Population,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_AsianAlone,"Population: Foreign Born, Country/MEX, Asian Alone",Asian Population Foreign Born in Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Country/MEX, Black or African American Alone",African American Population Foreign Born in Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_HispanicOrLatino,"Population: Foreign Born, Country/MEX, Hispanic or Latino",Foreign-Born Population in Mexican Hispanic,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Country/MEX, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Foreign-Born Population in Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_OneRace,"Population: Foreign Born, Country/MEX, One Race",Uniracial Mexico Foreign Borns,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,"Population: Foreign Born, Country/MEX, Poverty Status Determined",Foreign Borns Population in Mexico With Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_SomeOtherRaceAlone,"Population: Foreign Born, Country/MEX, Some Other Race Alone",Foreign-Born Some Other Race Population in Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_TwoOrMoreRaces,"Population: Foreign Born, Country/MEX, Two or More Races",Foreign-Born Multiracial Population in Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAlone,"Population: Foreign Born, Country/MEX, White Alone",White Population Foreign Born In Mexico,, -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Country/MEX, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Foreign Born, Northamerica",Population Foreign-Born In North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1OrLessRatioToPovertyLine,"Population: Foreign Born, Northamerica, 1 Ratio To Poverty Line or Less",North America Foreign-Born Population With a 1 Ratio Below the Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1To1.99RatioToPovertyLine,"Population: Foreign Born, Northamerica, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in North America With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Northamerica, 2 Ratio To Poverty Line or More",Foreign-Born Population in North America With a 2 Ratio To Poverty Line or Less;Foreign Born Population in North America With a 2 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Northamerica, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign-Born Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AsianAlone,"Population: Foreign Born, Northamerica, Asian Alone",Asian Population Foreign Born In North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Northamerica, Black or African American Alone",African American Foreign-Born Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_HispanicOrLatino,"Population: Foreign Born, Northamerica, Hispanic or Latino",Hispanic Foreign Born in North America Population,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Northamerica, Native Hawaiian or Other Pacific Islander Alone",Foreign Born Native Hawaiian or Other Pacific Islander Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_OneRace,"Population: Foreign Born, Northamerica, One Race",Monoethnic Foreign-Born Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,"Population: Foreign Born, Northamerica, Poverty Status Determined",Foreign-Born Population in North America With Determined by Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_SomeOtherRaceAlone,"Population: Foreign Born, Northamerica, Some Other Race Alone",Some Other Race Foreign-Born Population In North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_TwoOrMoreRaces,"Population: Foreign Born, Northamerica, Two or More Races",Multiracial Population Foreign Born in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAlone,"Population: Foreign Born, Northamerica, White Alone",White Foreign-Born Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Northamerica, White Alone Not Hispanic or Latino",Foreign-Born White Non-Hispanic Population in North America,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Foreign Born, Northern Western Europe",Foreign Born Population in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1OrLessRatioToPovertyLine,"Population: Foreign Born, Northern Western Europe, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Northern Western Europe with a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1To1.99RatioToPovertyLine,"Population: Foreign Born, Northern Western Europe, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in Northern Western Europe 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Northern Western Europe, 2 Ratio To Poverty Line or More",Population Foreign Born in Northern Western Europe With a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Northern Western Europe, American Indian or Alaska Native Alone",American Indian Or Alaska Native And Foreign Born Population In Northern Western Europe;American Indian or Alaska Native Population Foreign Born In Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AsianAlone,"Population: Foreign Born, Northern Western Europe, Asian Alone",Asian Population Foreign-Born in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Northern Western Europe, Black or African American Alone",African American Foreign Borns In North Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_HispanicOrLatino,"Population: Foreign Born, Northern Western Europe, Hispanic or Latino",Hispanic Foreign-Born Population In Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Northern Western Europe, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian Or Other Pacific Islander Foreign-Born Population In North Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_OneRace,"Population: Foreign Born, Northern Western Europe, One Race",Monoracial Population Foreign-Born in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,"Population: Foreign Born, Northern Western Europe, Poverty Status Determined",Foreign-Born Population in Northern Western Europe with Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_SomeOtherRaceAlone,"Population: Foreign Born, Northern Western Europe, Some Other Race Alone",Some Other Race Foreign-Born Population in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_TwoOrMoreRaces,"Population: Foreign Born, Northern Western Europe, Two or More Races",Foreign-Born Multiracial Population In Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAlone,"Population: Foreign Born, Northern Western Europe, White Alone",Foreign-Born White Population in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Northern Western Europe, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population in Northern Western Europe,, -Count_Person_ForeignBorn_PlaceOfBirthOceania,"Population: Foreign Born, Oceania",Oceania Foreign-Born Population,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_1OrLessRatioToPovertyLine,"Population: Foreign Born, Oceania, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Oceania With a1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_1To1.99RatioToPovertyLine,"Population: Foreign Born, Oceania, 1 - 2.0 Ratio To Poverty Line",Foreign-Born In Oceania Population With A 1 to 2 .0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Oceania, 2 Ratio To Poverty Line or More",Foreign-Born Population In Oceania With A 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Oceania, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign Born Population in Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_AsianAlone,"Population: Foreign Born, Oceania, Asian Alone",Asian Foreign-Born Population In Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Oceania, Black or African American Alone",African American Foreign Borns In Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_HispanicOrLatino,"Population: Foreign Born, Oceania, Hispanic or Latino",Oceania Hispanic Foreign Borns,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Oceania, Native Hawaiian or Other Pacific Islander Alone",Foreign-Born In Oceania Native Hawaiian or Other Pacific Islander Population,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_OneRace,"Population: Foreign Born, Oceania, One Race",Foreign-Born Population in Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,"Population: Foreign Born, Oceania, Poverty Status Determined",Oceania Foreign-Born Population With Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_SomeOtherRaceAlone,"Population: Foreign Born, Oceania, Some Other Race Alone",Foreign-Born Population in Oceania of Some Other Race,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_TwoOrMoreRaces,"Population: Foreign Born, Oceania, Two or More Races",Multiracials Foreign-Born In Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAlone,"Population: Foreign Born, Oceania, White Alone",White Foreign-Born Population in Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Oceania, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population In Oceania,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Foreign Born, Southamerica",Foreign-Born Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1OrLessRatioToPovertyLine,"Population: Foreign Born, Southamerica, 1 Ratio To Poverty Line or Less",Population Foreign -Born In South America With a 1 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1To1.99RatioToPovertyLine,"Population: Foreign Born, Southamerica, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in South America with a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Southamerica, 2 Ratio To Poverty Line or More",South America Foreign Borns with a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Southamerica, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign-Born Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AsianAlone,"Population: Foreign Born, Southamerica, Asian Alone",Asian Foreign-Born in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Southamerica, Black or African American Alone",African American Foreign-Born Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_HispanicOrLatino,"Population: Foreign Born, Southamerica, Hispanic or Latino",Hispanic Foreign-Born Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Southamerica, Native Hawaiian or Other Pacific Islander Alone",Foreign Born Native Hawaiian or Other Pacific Islander Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_OneRace,"Population: Foreign Born, Southamerica, One Race",Monoracial Population Foreign Born In South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,"Population: Foreign Born, Southamerica, Poverty Status Determined",South American Foreign Born Population Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_SomeOtherRaceAlone,"Population: Foreign Born, Southamerica, Some Other Race Alone",Other Race Population Foreign-Born In South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_TwoOrMoreRaces,"Population: Foreign Born, Southamerica, Two or More Races",Multiracial Foreign-Born Population in South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAlone,"Population: Foreign Born, Southamerica, White Alone",White Population Foreign Born In South America,, -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Southamerica, White Alone Not Hispanic or Latino",South American White Non Hispanic Foreign Born Population,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Foreign Born, South Central Asia",Foreign-Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1OrLessRatioToPovertyLine,"Population: Foreign Born, South Central Asia, 1 Ratio To Poverty Line or Less",Foreign-Born Population in South Central Asia With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, South Central Asia, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in South Central Asia With a 1 to 2.0 Ratio to Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, South Central Asia, 2 Ratio To Poverty Line or More",Foreign-Born Population In South Central Asia With A 2 Ration To Poverty Line Or More,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, South Central Asia, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign-Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AsianAlone,"Population: Foreign Born, South Central Asia, Asian Alone",Asian Foreign-Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_BlackOrAfricanAmericanAlone,"Population: Foreign Born, South Central Asia, Black or African American Alone",African American Foreign Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_HispanicOrLatino,"Population: Foreign Born, South Central Asia, Hispanic or Latino",Hispanic Foreign-Born Population in Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, South Central Asia, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian Or Other Pacific Islander Foreign-Born Population In South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_OneRace,"Population: Foreign Born, South Central Asia, One Race",Single Race Foreign-Born Population In South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,"Population: Foreign Born, South Central Asia, Poverty Status Determined",Foreign-Born Population In South Central Asia With Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_SomeOtherRaceAlone,"Population: Foreign Born, South Central Asia, Some Other Race Alone",People Of Some Other Race Foreign Born In South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_TwoOrMoreRaces,"Population: Foreign Born, South Central Asia, Two or More Races",Multiracial Foreign-Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAlone,"Population: Foreign Born, South Central Asia, White Alone",White Population Foreign Born in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, South Central Asia, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population in South Central Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Foreign Born, South Eastern Asia",Foreign-Born Population In South-Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1OrLessRatioToPovertyLine,"Population: Foreign Born, South Eastern Asia, 1 Ratio To Poverty Line or Less",Foreign-Born Population in South Eastern Asia With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, South Eastern Asia, 1 - 2.0 Ratio To Poverty Line",Population Foreign Born in South Eastern Asia with a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, South Eastern Asia, 2 Ratio To Poverty Line or More",Foreign-Born Population in South Eastern Asia with a 2 Ratio to Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, South Eastern Asia, American Indian or Alaska Native Alone",American Indian or Alaska Native Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AsianAlone,"Population: Foreign Born, South Eastern Asia, Asian Alone",Population Foreign Born In South-Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_BlackOrAfricanAmericanAlone,"Population: Foreign Born, South Eastern Asia, Black or African American Alone",African American Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_HispanicOrLatino,"Population: Foreign Born, South Eastern Asia, Hispanic or Latino",Hispanic Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, South Eastern Asia, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_OneRace,"Population: Foreign Born, South Eastern Asia, One Race",Uniracial South Eastern Asia Foreign Borns,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"Population: Foreign Born, South Eastern Asia, Poverty Status Determined",Foreign-Born Population in South Eastern Asia with Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_SomeOtherRaceAlone,"Population: Foreign Born, South Eastern Asia, Some Other Race Alone",Other Race Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_TwoOrMoreRaces,"Population: Foreign Born, South Eastern Asia, Two or More Races",Multiracial Foreign Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAlone,"Population: Foreign Born, South Eastern Asia, White Alone",White Foreign-Born Population in South Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, South Eastern Asia, White Alone Not Hispanic or Latino",White Non-Hispanic Foreign-Born Population In South-Eastern Asia,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Foreign Born, Southern Eastern Europe",Foreign-Born Population in South Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1OrLessRatioToPovertyLine,"Population: Foreign Born, Southern Eastern Europe, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Southern Eastern Europe With a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1To1.99RatioToPovertyLine,"Population: Foreign Born, Southern Eastern Europe, 1 - 2.0 Ratio To Poverty Line",Foreign-Born Population in Southern Eastern Europe With a 1 to 2.0 Ratio To Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Southern Eastern Europe, 2 Ratio To Poverty Line or More",Foreign Born in Southern Eastern Europe With a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Southern Eastern Europe, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Foreign Born In Southern Eastern Europe;Foreign Born In Southern Eastern Europe American Indian Or Alaska Native Population,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AsianAlone,"Population: Foreign Born, Southern Eastern Europe, Asian Alone",Foreign Born in South Eastern Europe Asians,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Southern Eastern Europe, Black or African American Alone",African-American Foreign-Born Population In Southern Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_HispanicOrLatino,"Population: Foreign Born, Southern Eastern Europe, Hispanic or Latino",Foreign-Born in South Eastern Europe Hispanics,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Southern Eastern Europe, Native Hawaiian or Other Pacific Islander Alone",Foreign-Born Native Hawaiian or Other Pacific Islander Population in Southern Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_OneRace,"Population: Foreign Born, Southern Eastern Europe, One Race",Monoracial Population Foreign Born In Southern Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,"Population: Foreign Born, Southern Eastern Europe, Poverty Status Determined",Foreign Born in Southern Eastern Europe With Poverty Status Determined,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_SomeOtherRaceAlone,"Population: Foreign Born, Southern Eastern Europe, Some Other Race Alone",Some Other Race Foreign-Born Population in Southern Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_TwoOrMoreRaces,"Population: Foreign Born, Southern Eastern Europe, Two or More Races",Population Foreign Born In Southern Eastern Europe Multiracial,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAlone,"Population: Foreign Born, Southern Eastern Europe, White Alone",White Population Foreign-Born in Southern Eastern Europe,, -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Southern Eastern Europe, White Alone Not Hispanic or Latino",Foreign-Born In Southern Eastern European White Non-Hispanic Population,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Foreign Born, Western Asia",Population Foreign Born in Western Asian,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1OrLessRatioToPovertyLine,"Population: Foreign Born, Western Asia, 1 Ratio To Poverty Line or Less",Foreign-Born Population in Western Asia with a 1 Ratio To Poverty Line or Less,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, Western Asia, 1 - 2.0 Ratio To Poverty Line",Western Asia Foreign Borns With a 1 to 2.0 Ratio to Poverty Line,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Western Asia, 2 Ratio To Poverty Line or More",Foreign-Born Population in Western Asia with a 2 Ratio To Poverty Line or More,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AmericanIndianOrAlaskaNativeAlone,"Population: Foreign Born, Western Asia, American Indian or Alaska Native Alone",American Indians or Alaska Natives Foreign Born in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AsianAlone,"Population: Foreign Born, Western Asia, Asian Alone",Foreign-Born Asian Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_BlackOrAfricanAmericanAlone,"Population: Foreign Born, Western Asia, Black or African American Alone",African American Foreign-Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_HispanicOrLatino,"Population: Foreign Born, Western Asia, Hispanic or Latino",Hispanic Foreign-Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Foreign Born, Western Asia, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Foreign Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_OneRace,"Population: Foreign Born, Western Asia, One Race",One Race Foreign-Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,"Population: Foreign Born, Western Asia, Poverty Status Determined",Foreign-Born Population Western Asia with Determined Poverty Status,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_SomeOtherRaceAlone,"Population: Foreign Born, Western Asia, Some Other Race Alone",Other Race Foreign-Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_TwoOrMoreRaces,"Population: Foreign Born, Western Asia, Two or More Races",Multiracial Foreign Born Population in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAlone,"Population: Foreign Born, Western Asia, White Alone",White Population Foreign Born in Western Asia,, -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Western Asia, White Alone Not Hispanic or Latino",Foreign-Born in Western Asia White And Non-Hispanic Population,, -Count_Person_ForeignBorn_ResidesInAdultCorrectionalFacilities,"Population: Foreign Born, Adult Correctional Facilities",Foreign Born Adults in Correctional Facilities,, -Count_Person_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"Population: Foreign Born, College or University Student Housing",Foreign-Born Population In College Or University Student Housing,, -Count_Person_ForeignBorn_ResidesInGroupQuarters,"Population: Foreign Born, Group Quarters",Foreign-Born Population Living in Group Quarters,, -Count_Person_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Population: Foreign Born, Institutionalized Group Quarters",Foreign-Born Population in Institutionalized Group Quarters,, -Count_Person_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Population: Foreign Born, Noninstitutionalized Group Quarters",Foreign-Born Population in Non-Institutionalized Group Quarters,, -Count_Person_ForeignBorn_ResidesInNursingFacilities,"Population: Foreign Born, Nursing Facilities",Foreign-Born Population in Nursing Facilities,, -Count_Person_FullTimeYearRoundWorker,"Population: 16 - 64 Years, Full Time Year Round Worker",Population Aged 16 to 64 Years Who Are Full Time Year Round Workers,, -Count_Person_Houseless,Population: Houseless,Houseless Population,, -Count_Person_Houseless_Female,"Population: Female, Houseless",Houseless Female Population,, -Count_Person_Houseless_Illiterate,"Population: Houseless, Illiterate",Population of Houseless Illiterates,, -Count_Person_Houseless_Illiterate_Female,"Population: Female, Houseless, Illiterate",Houseless Illiterate Female Population,, -Count_Person_Houseless_Illiterate_Male,"Population: Male, Houseless, Illiterate",Houseless Illiterate Male Population,, -Count_Person_Houseless_Illiterate_Rural,"Population: Houseless, Illiterate, Rural",Illiterate Houseless People in Rural Areas,, -Count_Person_Houseless_Illiterate_Urban,"Population: Houseless, Illiterate, Urban",Illiterate Houseless People in Urban Areas,, -Count_Person_Houseless_Literate,"Population: Houseless, Literate",Houseless Literate Population,, -Count_Person_Houseless_Literate_Female,"Population: Female, Houseless, Literate",Houseless Literate Female Population,, -Count_Person_Houseless_Literate_Male,"Population: Male, Houseless, Literate",Houseless Literate Male Population,, -Count_Person_Houseless_Literate_Rural,"Population: Houseless, Literate, Rural",Literate Houseless Population in Rural Areas,, -Count_Person_Houseless_Literate_Urban,"Population: Houseless, Literate, Urban",Urban Houseless Literate Population,, -Count_Person_Houseless_MainWorker,"Population: Houseless, Main Worker, Worker",Main Workers,, -Count_Person_Houseless_Male,"Population: Male, Houseless",Houseless Male Population,, -Count_Person_Houseless_MarginalWorker,"Population: Houseless, Marginal Worker, Worker",Houseless Marginal Workers,, -Count_Person_Houseless_NonWorker,"Population: Houseless, Non Worker",Houseless Non-Workers,, -Count_Person_Houseless_NonWorker_Female,"Population: Female, Houseless, Non Worker",Houseless Female Non Worker Population,, -Count_Person_Houseless_NonWorker_Male,"Population: Male, Houseless, Non Worker",Houseless Male Non Worker Population,, -Count_Person_Houseless_NonWorker_Rural,"Population: Houseless, Rural, Non Worker",Houseless Non-Workers in Rural Areas,, -Count_Person_Houseless_NonWorker_Urban,"Population: Houseless, Urban, Non Worker",Houseless Non-Working Population in Urban Areas,, -Count_Person_Houseless_Rural,"Population: Houseless, Rural",Houseless Population in Rural Areas,, -Count_Person_Houseless_Rural_Female,"Population: Female, Houseless, Rural",Rural Houseless Female Population,, -Count_Person_Houseless_Rural_Male,"Population: Male, Houseless, Rural",Rural Houseless Male Population,, -Count_Person_Houseless_ScheduledCaste,"Population: Houseless, Scheduled Caste",Houseless Population In Scheduled Castes,, -Count_Person_Houseless_ScheduledCaste_Female,"Population: Female, Houseless, Scheduled Caste",Houseless Scheduled Caste Female Population,, -Count_Person_Houseless_ScheduledCaste_Male,"Population: Male, Houseless, Scheduled Caste",Houseless Scheduled Caste Male Population,, -Count_Person_Houseless_ScheduledCaste_Rural,"Population: Houseless, Rural, Scheduled Caste",Houseless People Residing In Rural Areas,, -Count_Person_Houseless_ScheduledCaste_Urban,"Population: Houseless, Urban, Scheduled Caste",Homeless Scheduled Caste Population in Urban Areas,, -Count_Person_Houseless_ScheduledTribe,"Population: Houseless, Scheduled Tribe",Houseless Scheduled Tribe Population,, -Count_Person_Houseless_ScheduledTribe_Female,"Population: Female, Houseless, Scheduled Tribe",Houseless Scheduled Tribe Female Population,, -Count_Person_Houseless_ScheduledTribe_Male,"Population: Male, Houseless, Scheduled Tribe",Houseless Scheduled Tribe Male Population,, -Count_Person_Houseless_ScheduledTribe_Rural,"Population: Houseless, Rural, Scheduled Tribe",Scheduled Tribe Population in Rural Areas,, -Count_Person_Houseless_ScheduledTribe_Urban,"Population: Houseless, Urban, Scheduled Tribe",Population of Houseless Urban Scheduled Tribes,, -Count_Person_Houseless_Urban,"Population: Houseless, Urban",Total Houseless Population in Urban Areas,, -Count_Person_Houseless_Urban_Female,"Population: Female, Houseless, Urban",Urban Houseless Female Population,, -Count_Person_Houseless_Urban_Male,"Population: Male, Houseless, Urban",Urban Houseless Male Population,, -Count_Person_Houseless_Workers,"Population: Houseless, Worker",Homeless Workers,, -Count_Person_Houseless_Workers_Female,"Population: Female, Houseless, Worker",Houseless Female Worker Population,, -Count_Person_Houseless_Workers_Male,"Population: Male, Houseless, Worker",Houseless Male Worker Population,, -Count_Person_Houseless_Workers_Rural,"Population: Houseless, Rural, Worker",Houseless Rural Workers,, -Count_Person_Houseless_Workers_Urban,"Population: Houseless, Urban, Worker",Number of Houseless Urban Workers,, -Count_Person_Houseless_YearsUpto6,"Population: 6 Years or Less, Houseless",Number Of Houseless People Aged 6 Years Or Less,, -Count_Person_Houseless_YearsUpto6_Female,"Population: 6 Years or Less, Female, Houseless",Houseless Female Population Aged 6 Years or Less,, -Count_Person_Houseless_YearsUpto6_Male,"Population: 6 Years or Less, Male, Houseless",Houseless Male Population Aged 6 Years or Less,, -Count_Person_Houseless_YearsUpto6_Rural,"Population: 6 Years or Less, Houseless, Rural",Houseless Population Aged 6 Years or Less in Rural Areas,, -Count_Person_Houseless_YearsUpto6_Urban,"Population: 6 Years or Less, Houseless, Urban",Homeless Urban Residents Aged 6 Years Or Less,, -Count_Person_Illiterate,Population: Illiterate,Illiterate People,, -Count_Person_Illiterate_AsAFractionOf_Count_Person,Population: Illiterate (Per Capita),,, -Count_Person_Illiterate_Female,"Population: Female, Illiterate",Illiterate Female Population,, -Count_Person_Illiterate_Male,"Population: Male, Illiterate",Illiterate Male Population,, -Count_Person_Illiterate_Rural,"Population: Illiterate, Rural",Illiterate Population in Rural Areas,, -Count_Person_Illiterate_Urban,"Population: Illiterate, Urban",Illiterate Population in Urban Areas,, -Count_Person_InArmedForces,"Population: 16 Years or More, in Armed Forces, in Labor Force",Population Aged 16 Years Or More In Armed Forces In Labor Force,, -Count_Person_IncomeOf10000To14999USDollar,"Population With an Income Between $10,000 and $14,999","Population With An Income Between $10,000 And $14,999",, -Count_Person_IncomeOf25000To34999USDollar,"Population With an Income Between $25,000 and $34,999","Population With an Income Between $25,000 And $34,999",, -Count_Person_IncomeOf35000To49999USDollar,"Population With an Income Between $35,000 and $49,999","Population With With an Income Between $35,000 And $49,999",, -Count_Person_IncomeOf50000To64999USDollar,"Population With an Income Between $50,000 and $64,999","Population With an Income Between $50,000 And $64,999",, -Count_Person_IncomeOf65000To74999USDollar,"Population With an Income Between $65,000 and $74,999","Population With an Income Between $65,000 And $74,999",, -Count_Person_IncomeOf75000OrMoreUSDollar,"Population With an Income of $75,000 or More","Population With An Income of $75,000 or More",, -Count_Person_IncomeOfUpto9999USDollar,"Population With an Income of Up to $9,999","Population With An Income of Up to $9,999",, -Count_Person_InLaborForce_ResidesInCollegeOrUniversityStudentHousing,"Population: 16 Years or More, in Labor Force, College or University Student Housing",College or University Student Housing Population in Labor Force Aged 16 Years or More,, -Count_Person_InLaborForce_ResidesInGroupQuarters,"Population: 16 Years or More, in Labor Force, Group Quarters",Population Aged 16 Years or More in Labor Force in Group Quarters,, -Count_Person_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,"Population: 16 Years or More, in Labor Force, Noninstitutionalized Group Quarters",Population Aged 16 Years or More in Labor Force and Non-Institutionalized Group Quarters,, -Count_Person_IsInternetUser_PerCapita,Percent of Internet Users,Percentage of Internet Users,, -Count_Person_Literate,Population: Literate,Literate People,, -Count_Person_Literate_Female,"Population: Female, Literate",Literate Female Population,, -Count_Person_Literate_Male,"Population: Male, Literate",Literate Male Population,, -Count_Person_Literate_Rural,"Population: Literate, Rural",Literate Population In Rural Areas,, -Count_Person_Literate_Urban,"Population: Literate, Urban",Literate Population in Urban Areas,, -Count_Person_MainWorker,Population: Main Worker,Main Workers Population,, -Count_Person_MainWorker_AgriculturalLabourers,"Population: Agricultural Labourers, Main Worker",Main Agricultural Labourers,, -Count_Person_MainWorker_Cultivators,"Population: Cultivators, Main Worker",Main Cultivators,, -Count_Person_MainWorker_Female,"Population: Female, Main Worker",Female Main Worker Population,, -Count_Person_MainWorker_HouseholdIndustries,"Population: Household Industries, Main Worker",Main Workers in Household Industries,, -Count_Person_MainWorker_Male,"Population: Male, Main Worker",Male Main Worker Population,, -Count_Person_MainWorker_OtherWorkers,"Population: Other Workers, Main Worker",Main Worker Population,, -Count_Person_MainWorker_Rural,"Population: Rural, Main Worker",Main Workers in Rural Areas,, -Count_Person_MainWorker_Urban,"Population: Urban, Main Worker",Main Population Of Workers in Urban Areas,, -Count_Person_Male_ConditionArthritis,"Population: Male, Arthritis",,, -Count_Person_Male_ConditionDiseasesOfHeart,"Population: Male, Diseases of Heart",,, -Count_Person_Male_DidNotWork,"Population: 16 - 64 Years, Male, Did Not Work",Male Population Aged 16 to 64 Years Old who Didn't Work,, -Count_Person_Male_Divorced,"Population: Male, Divorced",Divorced Male Population,, -Count_Person_Male_FullTimeYearRoundWorker,"Population: 16 - 64 Years, Male, Full Time Year Round Worker",Males Aged 16 To 64 Years Who Are Full Time Year Round Workers,, -Count_Person_Male_MarriedAndNotSeparated,"Population: Male, Married And Not Separated",Male Population Married And Not Separated,, -Count_Person_Male_NeverMarried,"Population: Male, Never Married",Male Population Who Never Married,, -Count_Person_Male_NoHealthInsurance,"Population: Male, No Health Insurance",Male Population Without Health Insurance,, -Count_Person_Male_Widowed,"Population: Male, Widowed",Males Population Who Are Widowed,, -Count_Person_Male_WithHealthInsurance,"Population: Male, With Health Insurance",Male Population With Health Insurance,, -Count_Person_MarginalWorker,Population: Marginal Worker,Marginal Worker Population,, -Count_Person_MarginalWorker_AgriculturalLabourers,"Population: Agricultural Labourers, Marginal Worker",Marginal Agricultural Labourers Workers,, -Count_Person_MarginalWorker_Cultivators,"Population: Cultivators, Marginal Worker",Marginal Cultivators,, -Count_Person_MarginalWorker_Female,"Population: Female, Marginal Worker",Female Marginal Worker Population,, -Count_Person_MarginalWorker_HouseholdIndustries,"Population: Household Industries, Marginal Worker",Marginal Workers in Household Industries,, -Count_Person_MarginalWorker_Male,"Population: Male, Marginal Worker",Male Marginal Worker Population,, -Count_Person_MarginalWorker_OtherWorkers,"Population: Other Workers, Marginal Worker",Marginal Other Workers,, -Count_Person_MarginalWorker_Rural,"Population: Rural, Marginal Worker",Rural Marginal Worker Population,, -Count_Person_MarginalWorker_Urban,"Population: Urban, Marginal Worker",Marginal Workers in Urban Areas,, -Count_Person_MarriedAndNotSeparated_DifferentHouseAbroad,"Population: 15 Years or More, Married And Not Separated, Different House Abroad",Population Aged 15 Years or More Married And Not Separated In Different House Abroad,, -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountyDifferentState,"Population: 15 Years or More, Married And Not Separated, Different House in Different County Different State","Population Aged 15 Years or More Who are Married in Different Houses, County and State",, -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountySameState,"Population: 15 Years or More, Married And Not Separated, Different House in Different County Same State",Married And Not Separated Population Aged 15 Years Or More In Different Counties But The Same State,, -Count_Person_MarriedAndNotSeparated_DifferentHouseInSameCounty,"Population: 15 Years or More, Married And Not Separated, Different House in Same County",Population Aged 15 Years or More Married And Not Separated in Different Houses in Same County,, -Count_Person_MarriedAndNotSeparated_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Married And Not Separated, Adult Correctional Facilities",Unseparated Married Population Aged 15 Years Or More In Adult Correctional Facilities,, -Count_Person_MarriedAndNotSeparated_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Married And Not Separated, College or University Student Housing",Married And Not Separated Population Aged 15 Years In University Housing,, -Count_Person_MarriedAndNotSeparated_ResidesInGroupQuarters,"Population: 15 Years or More, Married And Not Separated, Group Quarters",Population Aged 15 Years or More Married And Not Separated In Group Quarters,, -Count_Person_MarriedAndNotSeparated_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Married And Not Separated, Institutionalized Group Quarters",Population Aged 15 Years or More Who are Married in Institutionalized Group Quarters,, -Count_Person_MarriedAndNotSeparated_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Married And Not Separated, Noninstitutionalized Group Quarters",Married and Not Separated Population Aged 15 Years Old and Above Residing In Non-Institutionalized Group Quarters,, -Count_Person_MarriedAndNotSeparated_ResidesInNursingFacilities,"Population: 15 Years or More, Married And Not Separated, Nursing Facilities",Married Population Aged 15 Years or More in Nursing Facilities,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Population: Married Couple Family Household, Foreign Born, Africa",Married Couple Family Households of Foreign-Born Population in Africa,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Population: Married Couple Family Household, Foreign Born, Asia",Married Couple Family Households of Foreign-Born Population in Asia,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Population: Married Couple Family Household, Foreign Born, Caribbean",Foreign-Born Caribbean Married Couple Family Households,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Married Couple Family Household, Foreign Born, Central America Except Mexico","Foreign-Born Married Couple Family Households in Central America, Except Mexico",, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Married Couple Family Household, Foreign Born, Eastern Asia",Foreign-Born Married Couple Family Households in Eastern Asia,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Population: Married Couple Family Household, Foreign Born, Europe",Foreign Born in Europe Married Couple Family Household,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: Married Couple Family Household, Foreign Born, Latin America",Married Couple Family Households Foreign Born In Latin America,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Population: Married Couple Family Household, Foreign Born, Country/MEX",Married Couple Family Household Foreign Born in Mexico,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Married Couple Family Household, Foreign Born, Northamerica",Foreign-Born Population in North America with Married Couple Family Households,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Married Couple Family Household, Foreign Born, Northern Western Europe",Married Couple Family Households Foreign Born in Northern Western Europe,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Population: Married Couple Family Household, Foreign Born, Oceania",Oceania Foreign-Born Married Couple Family Households,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Married Couple Family Household, Foreign Born, Southamerica",South America Foreign Born Married Couple Family Households,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Married Couple Family Household, Foreign Born, South Central Asia",Married Couple Family Households of Foreign-Born Population in South Central Asia,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Married Couple Family Household, Foreign Born, South Eastern Asia",Foreign Born in South Eastern Asia Married Couple Family Household,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Married Couple Family Household, Foreign Born, Southern Eastern Europe",Married Foreign-Born Population In South Eastern Europe,, -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Married Couple Family Household, Foreign Born, Western Asia",Married Couple Family Households of Foreign-Born Population in Western Asian,, -Count_Person_Native,Population: Native,Native born,, -Count_Person_NeverMarried_DifferentHouseAbroad,"Population: 15 Years or More, Never Married, Different House Abroad",Population Aged 15 Years or More Never Married in Different House Abroad,, -Count_Person_NeverMarried_DifferentHouseInDifferentCountyDifferentState,"Population: 15 Years or More, Never Married, Different House in Different County Different State",Population Aged 15 Years or More Never Married in Different House in Different County and Different State,, -Count_Person_NeverMarried_DifferentHouseInDifferentCountySameState,"Population: 15 Years or More, Never Married, Different House in Different County Same State",Population Aged 15 Years or More Living in Different Houses in Different Counties But in The Same State,, -Count_Person_NeverMarried_DifferentHouseInSameCounty,"Population: 15 Years or More, Never Married, Different House in Same County",Population Aged 15 Years or More Who Were Never Married And Live in Different Houses in The Same County,, -Count_Person_NeverMarried_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Never Married, Adult Correctional Facilities",Population Aged 15 Years or More Never Married in Adult Correctional Facilities,, -Count_Person_NeverMarried_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Never Married, College or University Student Housing",Unmarried Population Aged 15 Years Or More In College or University Student Housing,, -Count_Person_NeverMarried_ResidesInGroupQuarters,"Population: 15 Years or More, Never Married, Group Quarters",Population Aged 15 Years or More Who Never Married in Group Quarters,, -Count_Person_NeverMarried_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Never Married, Institutionalized Group Quarters",Unmarried Population Aged 15 Years or More in Institutionalized Group Quarters,, -Count_Person_NeverMarried_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Never Married, Noninstitutionalized Group Quarters",Population Aged 15 Years or More Who Were Never Married in Non-Institutionalized Group Quarters,, -Count_Person_NeverMarried_ResidesInNursingFacilities,"Population: 15 Years or More, Never Married, Nursing Facilities",Unmarried Population Aged 15 Years Or More In Nursing Facilities,, -Count_Person_NoHealthInsurance_AmericanIndianOrAlaskaNativeAlone,"Population: No Health Insurance, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Without Health Insurance,, -Count_Person_NoHealthInsurance_AsianAlone,"Population: No Health Insurance, Asian Alone",Asian Population Without Health Insurance,, -Count_Person_NoHealthInsurance_BlackOrAfricanAmericanAlone,"Population: No Health Insurance, Black or African American Alone",African American Population Without Health Insurance,, -Count_Person_NoHealthInsurance_HispanicOrLatino,"Population: No Health Insurance, Hispanic or Latino",Hispanic Population Without Health Insurance,, -Count_Person_NoHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"Population: No Health Insurance, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Without Health Insurance,, -Count_Person_NoHealthInsurance_WhiteAlone,"Population: No Health Insurance, White Alone",White Population Without Health Insurance,, -Count_Person_Nonveteran,"Population: Civilian, Non Veteran",Non-Veteran Civilians,, -Count_Person_NonWorker,Population: Non Worker,Non-Workers,, -Count_Person_NonWorker_Female,"Population: Female, Non Worker",Female Non-Workers,, -Count_Person_NonWorker_Male,"Population: Male, Non Worker",Male Non-Workers,, -Count_Person_NonWorker_Rural,"Population: Rural, Non Worker",Non-Workers in Rural Areas,, -Count_Person_NonWorker_Urban,"Population: Urban, Non Worker",Urban Areas Non-Workers,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAfrica,"Population: Not A US Citizen, Foreign Born, Africa",Non-US Citizens Foreign Born In Africa,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAsia,"Population: Not A US Citizen, Foreign Born, Asia",Non-US Citizens Foreign-Born In Asia,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCaribbean,"Population: Not A US Citizen, Foreign Born, Caribbean",Foreign-Born Non-US Citizens in the Caribbean,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Not A US Citizen, Foreign Born, Central America Except Mexico","Foreign-Born Population In Central America, Except for Mexico Non-US Citizens",, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Not A US Citizen, Foreign Born, Eastern Asia",Non-US Citizens Foreign-Born In Eastern Asia,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEurope,"Population: Not A US Citizen, Foreign Born, Europe",Foreign-Born Non-US Citizens In Europe,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: Not A US Citizen, Foreign Born, Latin America",Non-US Citizens Foreign-Born In Latin America,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthMexico,"Population: Not A US Citizen, Foreign Born, Country/MEX",Foreign-Born Population In Mexico Non-Us Citizens,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Not A US Citizen, Foreign Born, Northamerica",Foreign-Born Population in North America Who are Non-US Citizens,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Not A US Citizen, Foreign Born, Northern Western Europe",Foreign-Born Population in Northern Western Europe Who are Non-US Citizens,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthOceania,"Population: Not A US Citizen, Foreign Born, Oceania",Foreign-Born Non-US Citizen in Oceania;Foreign Born Non-US Citizen in Oceania,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Not A US Citizen, Foreign Born, Southamerica",Foreign Born in South America Population,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Not A US Citizen, Foreign Born, South Central Asia",Foreign-Born Population in South Central Asia Who are Non-US Citizens,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Not A US Citizen, Foreign Born, South Eastern Asia",Foreign-Born Non-US Citizens in South Eastern Asia,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Not A US Citizen, Foreign Born, Southern Eastern Europe",Foreign-Born Non-US Citizens in Southern Eastern Europe,, -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Not A US Citizen, Foreign Born, Western Asia",Foreign-Born Population in Western Asia Who Are Non-US Citizens,, -Count_Person_NotInLaborForce,"Population: 16 Years or More, Not in Labor Force",Population Aged 16 Years Or More Not In Labor Force,, -Count_Person_NotInLaborForce_ResidesInAdultCorrectionalFacilities,"Population: 16 Years or More, Not in Labor Force, Adult Correctional Facilities",Population Aged 16 Years or More Not in The Labor Force Residing in Adult Correctional Facilities,, -Count_Person_NotInLaborForce_ResidesInCollegeOrUniversityStudentHousing,"Population: 16 Years or More, Not in Labor Force, College or University Student Housing",Population Aged 16 Years or More in College or University Student Housing Not in Labor Force,, -Count_Person_NotInLaborForce_ResidesInGroupQuarters,"Population: 16 Years or More, Not in Labor Force, Group Quarters",Population Aged 16 Years or More Not in Labor Force in Group Quarters,, -Count_Person_NotInLaborForce_ResidesInNoninstitutionalizedGroupQuarters,"Population: 16 Years or More, Not in Labor Force, Noninstitutionalized Group Quarters",Population Aged 16 Years or More Not in The Labor Force Residing in Non-institutionalized Group Quarters,, -Count_Person_NotInLaborForce_ResidesInNursingFacilities,"Population: 16 Years or More, Not in Labor Force, Nursing Facilities",Population Aged 16 Years or More who Aren't in Labor Force in Nursing Facilities,, -Count_Person_NotWorkedFullTime,"Population: Female, Not Worked Full Time",Female Part Time Workers,, -Count_Person_NowMarried,"Population: Female, Now Married",Married Female Population,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Population: Other Family Household, Foreign Born, Africa",Other Family Households of Foreign-Born Population In Africa,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Population: Other Family Household, Foreign Born, Asia",Foreign-Born Other Family Households in Asia,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Population: Other Family Household, Foreign Born, Caribbean",Foreign-Born Population of Other Family Households in The Caribbean,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Other Family Household, Foreign Born, Central America Except Mexico","Foreign Born Other Family Household in Central America, Except Mexico",, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Other Family Household, Foreign Born, Eastern Asia",Other Family Households With Foreign Born Population Born in Eastern Asia,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Population: Other Family Household, Foreign Born, Europe",Foreign-Born Population in Other Family Households in Europe,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: Other Family Household, Foreign Born, Latin America",Foreign Borns In Latin America With Other Family Household,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Population: Other Family Household, Foreign Born, Country/MEX",Population In Other Family Households Foreign Born In Mexico,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Other Family Household, Foreign Born, Northamerica",Foreign-Born Population in North America with Other Family Households,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Other Family Household, Foreign Born, Northern Western Europe",Foreign-Born Population in Northern Western Europe in Other Family Households,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Population: Other Family Household, Foreign Born, Oceania",Other Family Households With Foreign Born Population Born in Oceania,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Other Family Household, Foreign Born, Southamerica",Other Family Household Foreign Born In South America,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Other Family Household, Foreign Born, South Central Asia",Foreign-Born Population in South Central Asia with Other Family Households,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Other Family Household, Foreign Born, South Eastern Asia",Other Family Households of Foreign-Born Population in South Eastern Asia,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Other Family Household, Foreign Born, Southern Eastern Europe",Family Households of Foreign-Born Population in Southern Eastern Europe,, -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Other Family Household, Foreign Born, Western Asia",Western Asia Foreign Born Other Family Households,, -Count_Person_PlaceOfBirthAsia,"Population: Foreign Born, Asia",Foreign-Born Population in Asia,, -Count_Person_PlaceOfBirthEurope,"Population: Foreign Born, Europe",Foreign-Born Population in Europe,, -Count_Person_PlaceOfBirthLatinAmerica,"Population: Foreign Born, Latin America",Population Foreign Born in Latin America,, -Count_Person_PovertyStatusDetermined,Population With Poverty Status Determined,Population With Poverty Status Determined,, -Count_Person_Producer,Population: Producer,Producers,, -Count_Person_ResidesInAdultCorrectionalFacilities,Population: Adult Correctional Facilities,Population in Adult Correctional Facilities,, -Count_Person_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,"Population: 3 Years or More, Adult Correctional Facilities, Enrolled in School",Population Aged 3 Years or More in Adult Correctional Facilities Enrolled in Schools,, -Count_Person_ResidesInCollegeOrUniversityStudentHousing,Population: College or University Student Housing,Population In College or University Student Housing,, -Count_Person_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,"Population: 3 Years or More, College or University Student Housing, Enrolled in School",Population Aged 3 Years or More in Colleges or University Student Housing Enrolled in Schools,, -Count_Person_ResidesInGroupQuarters,Population: Group Quarters,Population in Group Quarters,, -Count_Person_ResidesInGroupQuarters_EnrolledInSchool,"Population: 3 Years or More, Group Quarters, Enrolled in School",Population Aged 3 Years or More In Group Quarters Enrolled in School,, -Count_Person_ResidesInHousehold,Population: Household,Households,, -Count_Person_ResidesInInstitutionalizedGroupQuarters,Population: Institutionalized Group Quarters,Population in Institutionalized Group Quarters,, -Count_Person_ResidesInInstitutionalizedGroupQuarters_EnrolledInSchool,"Population: 3 Years or More, Institutionalized Group Quarters, Enrolled in School",Population Above 3 Years Old In Institutionalized Group Quarters Enrolled In School,, -Count_Person_ResidesInNoninstitutionalizedGroupQuarters,Population: Noninstitutionalized Group Quarters,Population in Non-Institutionalized Group Quarters,, -Count_Person_ResidesInNoninstitutionalizedGroupQuarters_EnrolledInSchool,"Population: 3 Years or More, Noninstitutionalized Group Quarters, Enrolled in School",Population Above 3 Years Enrolled in Schools in Non-Institutionalized Group Quarters,, -Count_Person_ResidesInNursingFacilities,Population: Nursing Facilities,Nursing Facilities,, -Count_Person_ResidesInNursingFacilities_EnrolledInSchool,"Population: 3 Years or More, Nursing Facilities, Enrolled in School",Population Aged 3 Years or More Enrolled in Schools Residing in Nursing Facilities,, -Count_Person_ResidingLessThan5MetersAboveSeaLevel_AsFractionOf_Count_Person,Percent of Population Living in Areas Below 5 Meters Elevation,Percent of Population Living in Areas Below 5 Meters Elevation,, -Count_Person_Rural_BelowPovertyLevelInThePast12Months,"Population: Rural, Below Poverty Level in The Past 12 Months",,, -Count_Person_Rural_Female,"Population: Female, Rural",Female Population in Rural Areas,, -Count_Person_Rural_Male,"Population: Male, Rural",Male Population in Rural Areas,, -Count_Person_ScheduledCaste,Population: Scheduled Caste,Scheduled Caste Population,, -Count_Person_ScheduledCaste_Female,"Population: Female, Scheduled Caste",Scheduled Caste Female Population,, -Count_Person_ScheduledCaste_Illiterate,"Population: Illiterate, Scheduled Caste",Scheduled Caste Illiterates,, -Count_Person_ScheduledCaste_Literate,"Population: Literate, Scheduled Caste",Literate Population In Scheduled Castes,, -Count_Person_ScheduledCaste_MainWorker,"Population: Scheduled Caste, Main Worker",Main Worker,, -Count_Person_ScheduledCaste_Male,"Population: Male, Scheduled Caste",Scheduled Caste Male Population,, -Count_Person_ScheduledCaste_MarginalWorker,"Population: Scheduled Caste, Marginal Worker",Marginal Worker Population Who are Scheduled Caste,, -Count_Person_ScheduledCaste_NonWorker,"Population: Scheduled Caste, Non Worker",Non-Workers in Scheduled Castes,, -Count_Person_ScheduledCaste_Rural,"Population: Rural, Scheduled Caste",Scheduled Caste Population in Rural Areas,, -Count_Person_ScheduledCaste_Urban,"Population: Urban, Scheduled Caste",Scheduled Caste In Urban,, -Count_Person_ScheduledCaste_Workers,"Population: Scheduled Caste, Worker",Scheduled Caste Workers,, -Count_Person_ScheduledCaste_YearsUpto6,"Population: 6 Years or Less, Scheduled Caste",Population Aged 6 Years or Less Within Scheduled Castes,, -Count_Person_ScheduledCaste_YearsUpto6_Female,"Population: 6 Years or Less, Female, Scheduled Caste",Scheduled Caste Female Population Aged 6 Years or Less,, -Count_Person_ScheduledCaste_YearsUpto6_Male,"Population: 6 Years or Less, Male, Scheduled Caste",Scheduled Caste Male Population Aged 6 Years or Less,, -Count_Person_ScheduledCaste_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Scheduled Caste",Scheduled Caste For 6 Years or Less In Rural,, -Count_Person_ScheduledCaste_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Scheduled Caste",Scheduled Caste Population in Urban Areas For 6 Years,, -Count_Person_ScheduledTribe,Population: Scheduled Tribe,Scheduled Tribe Population,, -Count_Person_ScheduledTribe_Female,"Population: Female, Scheduled Tribe",Scheduled Tribe Female Population,, -Count_Person_ScheduledTribe_Illiterate,"Population: Illiterate, Scheduled Tribe",Illiterate Scheduled Tribe Population,, -Count_Person_ScheduledTribe_Literate,"Population: Literate, Scheduled Tribe",Literate Scheduled Tribe Population,, -Count_Person_ScheduledTribe_MainWorker,"Population: Scheduled Tribe, Main Worker",Scheduled Tribe Main Workers,, -Count_Person_ScheduledTribe_Male,"Population: Male, Scheduled Tribe",Scheduled Tribe Male Population,, -Count_Person_ScheduledTribe_MarginalWorker,"Population: Scheduled Tribe, Marginal Worker",Scheduled Tribe Marginal Workers,, -Count_Person_ScheduledTribe_NonWorker,"Population: Scheduled Tribe, Non Worker",Scheduled Tribe Non-Workers,, -Count_Person_ScheduledTribe_Rural,"Population: Rural, Scheduled Tribe",Population In Scheduled Tribes Residing In Rural Areas,, -Count_Person_ScheduledTribe_Urban,"Population: Urban, Scheduled Tribe",Urban Population In Scheduled Tribes,, -Count_Person_ScheduledTribe_Workers,"Population: Scheduled Tribe, Worker",Scheduled Tribe Workers,, -Count_Person_ScheduledTribe_YearsUpto6,"Population: 6 Years or Less, Scheduled Tribe",Scheduled Tribe Population Aged 6 Years Or Less,, -Count_Person_ScheduledTribe_YearsUpto6_Female,"Population: 6 Years or Less, Female, Scheduled Tribe",Female Population Aged 6 Years Or Less In Scheduled Tribes,, -Count_Person_ScheduledTribe_YearsUpto6_Male,"Population: 6 Years or Less, Male, Scheduled Tribe",Scheduled Tribe Male Population Aged Up to 6 Years,, -Count_Person_ScheduledTribe_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Scheduled Tribe",Scheduled Tribe Population in Rural Areas Up to 6 Years,, -Count_Person_ScheduledTribe_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Scheduled Tribe",Scheduled Population Aged 6 Years Or Less In Urban Areas,, -Count_Person_Separated_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Separated, Adult Correctional Facilities",Separated Population Residing in Adult Correctional Facilities,, -Count_Person_Separated_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Separated, College or University Student Housing",Separated Population Aged 15 Years Old and Above Residing In College or University Student Housing,, -Count_Person_Separated_ResidesInGroupQuarters,"Population: 15 Years or More, Separated, Group Quarters",Separated Population Residing in Group Quarters,, -Count_Person_Separated_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Separated, Institutionalized Group Quarters",Separated Population Aged 15 Years or More in Institutionalized Group Quarters,, -Count_Person_Separated_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Separated, Noninstitutionalized Group Quarters",Separated Population Aged Above 15 Years Old in Non-Institutionalized Group Quarters,, -Count_Person_Separated_ResidesInNursingFacilities,"Population: 15 Years or More, Separated, Nursing Facilities",Separated Workers In Nursing Facilities,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, African Languages",African Languages Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Amharic Somali or Other Afro Asiatic Languages",Amharic Somali Population Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArabicSpokenAtHome,"Population: Speak English Less Than Very Well, Arabic",Arabic Population Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArmenianSpokenAtHome,"Population: Speak English Less Than Very Well, Armenian",Armenian Population Who Speaks English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_BengaliSpokenAtHome,"Population: Speak English Less Than Very Well, Bengali",Bengali Population Speaking English Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"Population: Speak English Less Than Very Well, Chinese Incl Mandarin Cantonese",Chinese Incl Mandarin Cantonese,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseSpokenAtHome,"Population: Speak English Less Than Very Well, Chinese",Chinese Population Speaking Slight English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,"Population: Speak English Less Than Very Well, French Creole",Population Aged 5 Years or More Speaking French Creole At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome,"Population: Speak English Less Than Very Well, French Incl Cajun",French Incl Cajun Speakers Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"Population: Speak English Less Than Very Well, French Incl Patois Cajun",Moderate English Speaking French And Patois Cajun Speaking Population,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GermanSpokenAtHome,"Population: Speak English Less Than Very Well, German",German Population Aged 50 Years or More Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GreekSpokenAtHome,"Population: Speak English Less Than Very Well, Greek",Greek Population Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GujaratiSpokenAtHome,"Population: Speak English Less Than Very Well, Gujarati",Gujarati Population Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HaitianSpokenAtHome,"Population: Speak English Less Than Very Well, Haitian",Haitian Population Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HebrewSpokenAtHome,"Population: Speak English Less Than Very Well, Hebrew",Hebrew Population That Speaks Fluent English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HindiSpokenAtHome,"Population: Speak English Less Than Very Well, Hindi",Hindus Below 5 Years Old Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HmongSpokenAtHome,"Population: Speak English Less Than Very Well, Hmong",Population Aged 5 Years or More Speaking Hmong At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HungarianSpokenAtHome,"Population: Speak English Less Than Very Well, Hungarian",Hungarian Population Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Ilocano Samoan Hawaiian or Other Austronesian Languages",Population Speaking Ilocano Samoan Hawaiian or Other Austronesian Languages Who Speak Fluent English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ItalianSpokenAtHome,"Population: Speak English Less Than Very Well, Italian",Italians Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_JapaneseSpokenAtHome,"Population: Speak English Less Than Very Well, Japanese",Japanese Who Speak Fluent English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KhmerSpokenAtHome,"Population: Speak English Less Than Very Well, Khmer",Khmer Population of Moderate English Speakers,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KoreanSpokenAtHome,"Population: Speak English Less Than Very Well, Korean",Korean Population Moderate English Speakers,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Population: Speak English Less Than Very Well,Population Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LaotianSpokenAtHome,"Population: Speak English Less Than Very Well, Laotian",Population in Laotian That Speaks Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Malayalam Kannada or Other Dravidian Languages",Malayalam Kannada and Other Dravidian Languages Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,"Population: Speak English Less Than Very Well, Mon Khmer Cambodian",Moderate English Speaking Mon Khmer Cambodian Language Speaking Population,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NavajoSpokenAtHome,"Population: Speak English Less Than Very Well, Navajo",Population of Navajo Fluent in English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Nepali Marathi or Other Indic Languages",Nepali Marathi Population Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other And Unspecified Languages",Population Speaking English And Unspecified Languages,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Asian Languages",Other Asian Languages Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Indic Languages",Population Aged 5 Years or More Speaking Other Indic Languages At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndoEuropeanLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Indo European Languages",Population Speaking Other Indo-European Languages And English Unwell,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,"Population: Speak English Less Than Very Well, Other Languages of Asia",Other Languages of Asia Population Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,"Population: Speak English Less Than Very Well, Other Native Languages of North America",Other Native Languages of North America that Speaks Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Native North American Languages",Other Native North American Languages That Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Pacific Island Languages",Other Pacific Island Languages Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other Slavic Languages",Population Speaking Fluent English And Other Slavic Languages,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Other West Germanic Languages",Population Speaking Other West Germanic Languages And Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,"Population: Speak English Less Than Very Well, Persian Incl Farsi Dari",Persian Incl Farsi Dari Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianSpokenAtHome,"Population: Speak English Less Than Very Well, Persian",Persians Who Speak English Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PolishSpokenAtHome,"Population: Speak English Less Than Very Well, Polish",Population Aged 5 Years or More Speaking Polish Languages At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,"Population: Speak English Less Than Very Well, Portuguese or Portuguese Creole",Portuguese Creole Population Moderate English Speakers,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseSpokenAtHome,"Population: Speak English Less Than Very Well, Portuguese",Portuguese Population Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PunjabiSpokenAtHome,"Population: Speak English Less Than Very Well, Punjabi",Punjabi Population Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_RussianSpokenAtHome,"Population: Speak English Less Than Very Well, Russian",Russian Population Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Scandinavian Languages",Scandinavian Languages Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,"Population: Speak English Less Than Very Well, Serbo Croatian",Serbo Croatian Population Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,"Population: Speak English Less Than Very Well, Spanish or Spanish Creole",Spanish Creole Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishSpokenAtHome,"Population: Speak English Less Than Very Well, Spanish",Spanish Population of Moderate English Speakers,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,"Population: Speak English Less Than Very Well, Swahili or Other Languages of Central Eastern And Southern Africa",Swahili or Other Languages of Central Eastern And Southern Africa Speakers Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,"Population: Speak English Less Than Very Well, Tagalog Incl Filipino",Population Aged 5 Years or More Speaking Filipino Languages At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogSpokenAtHome,"Population: Speak English Less Than Very Well, Tagalog",Tagalog Population Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TamilSpokenAtHome,"Population: Speak English Less Than Very Well, Tamil",Tamil Population Speaking Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TeluguSpokenAtHome,"Population: Speak English Less Than Very Well, Telugu",Telugu Population Who Speak Moderate English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Thai Lao or Other Tai Kadai Languages",Thai Lao or Other Tai Kadai Language Speakers Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiSpokenAtHome,"Population: Speak English Less Than Very Well, Thai",Thai Population Moderately Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Ukrainian or Other Slavic Languages",Population Speaking Ukrainian or Other Slavic Languages And English Unwell,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UrduSpokenAtHome,"Population: Speak English Less Than Very Well, Urdu",Population Aged 5 Years or More Speaking Urdu Languages At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_VietnameseSpokenAtHome,"Population: Speak English Less Than Very Well, Vietnamese",Vietnamese population Fluent in English,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Yiddish Pennsylvania Dutch or Other West Germanic Languages",Yiddish Pennsylvania Dutch or Other West Germanic Languages Does Not Speak English Very Well,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishSpokenAtHome,"Population: Speak English Less Than Very Well, Yiddish",Population Speaking English And Yiddish,, -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"Population: Speak English Less Than Very Well, Yoruba Twi Igbo or Other Languages of Western Africa",Yoruba Twi Igbo or Other Languages of Western Africa Who Speak English Less Than Very Well,, -Count_Person_SpeakEnglishNotAtAll,Population: Speak English Not At All,Non-English Speaking Population,, -Count_Person_SpeakEnglishNotWell,Population: Speak English Not Well,Population Not Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,"Population: Speak English Very Well, African Languages",African Languages Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"Population: Speak English Very Well, Amharic Somali or Other Afro Asiatic Languages",Amharic Somali or Other Afro Asiatic Languages Who Speaks English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArabicSpokenAtHome,"Population: Speak English Very Well, Arabic",Arabic Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArmenianSpokenAtHome,"Population: Speak English Very Well, Armenian",Armenian Population Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_BengaliSpokenAtHome,"Population: Speak English Very Well, Bengali",Population Speaking Bengali And English Fluently,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"Population: Speak English Very Well, Chinese Incl Mandarin Cantonese",Chinese Incl Mandarin Cantonese Population Who Speaks English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseSpokenAtHome,"Population: Speak English Very Well, Chinese",Chinese People Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,"Population: Speak English Very Well, French Creole",French Creole Who are Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome,"Population: Speak English Very Well, French Incl Cajun",French Incl Cajun Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"Population: Speak English Very Well, French Incl Patois Cajun",French Population Who Speak English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GermanSpokenAtHome,"Population: Speak English Very Well, German",German Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GreekSpokenAtHome,"Population: Speak English Very Well, Greek",Greek Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GujaratiSpokenAtHome,"Population: Speak English Very Well, Gujarati",Gujarati Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HaitianSpokenAtHome,"Population: Speak English Very Well, Haitian",Population Aged 5 Years or More Speaking Haitian At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HebrewSpokenAtHome,"Population: Speak English Very Well, Hebrew",Population Speaking Hebrew And English Fluently,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HindiSpokenAtHome,"Population: Speak English Very Well, Hindi",Hindus Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HmongSpokenAtHome,"Population: Speak English Very Well, Hmong",Hmong Population Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HungarianSpokenAtHome,"Population: Speak English Very Well, Hungarian",Hungarian Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"Population: Speak English Very Well, Ilocano Samoan Hawaiian or Other Austronesian Languages",Ilocano Samoan Hawaiian or Other Austronesian Languages Who Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ItalianSpokenAtHome,"Population: Speak English Very Well, Italian",Italians Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_JapaneseSpokenAtHome,"Population: Speak English Very Well, Japanese",Japanese Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KhmerSpokenAtHome,"Population: Speak English Very Well, Khmer",Khmer Population Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KoreanSpokenAtHome,"Population: Speak English Very Well, Korean",Koreans Who Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Population: Speak English Very Well,Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LaotianSpokenAtHome,"Population: Speak English Very Well, Laotian",Laotian Population Who speak English well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"Population: Speak English Very Well, Malayalam Kannada or Other Dravidian Languages",Other Dravidian Languages Speakers Fluent In English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,"Population: Speak English Very Well, Mon Khmer Cambodian",Moderate English Speaking Mon Khmer Cambodian Speakers,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NavajoSpokenAtHome,"Population: Speak English Very Well, Navajo",Navajo Population Who Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"Population: Speak English Very Well, Nepali Marathi or Other Indic Languages",Nepali Marathi or Other Indic Languages Population Speak Moderate English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,"Population: Speak English Very Well, Other And Unspecified Languages",Population Speaking Other And Unspecified Languages And English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,"Population: Speak English Very Well, Other Asian Languages",Asian Population Who Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,"Population: Speak English Very Well, Other Indic Languages",Other Indic Language Speakers Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,"Population: Speak English Very Well, Other Languages of Asia",Other Languages of Asia Population Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,"Population: Speak English Very Well, Other Native Languages of North America",Population Aged 5 Years or More Speaking Other Native Languages Of North America At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,"Population: Speak English Very Well, Other Native North American Languages",Other Native North American Languages Who Speaks English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,"Population: Speak English Very Well, Other Pacific Island Languages",Population Speaking Other Pacific Island Languages And English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,"Population: Speak English Very Well, Other Slavic Languages",Population Speaking Other Slavic Languages And English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,"Population: Speak English Very Well, Other West Germanic Languages",Other West Germanic Language Speakers Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,"Population: Speak English Very Well, Persian Incl Farsi Dari",Persian Population Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianSpokenAtHome,"Population: Speak English Very Well, Persian",Persian Population Who are Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PolishSpokenAtHome,"Population: Speak English Very Well, Polish",Polish Population Fluent In English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,"Population: Speak English Very Well, Portuguese or Portuguese Creole",Population Aged 5 Years or More Speaking Portuguese Or Portuguese Creole At Home And English Less Than Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseSpokenAtHome,"Population: Speak English Very Well, Portuguese",Portuguese Population Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PunjabiSpokenAtHome,"Population: Speak English Very Well, Punjabi",Punjabis Speaking Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_RussianSpokenAtHome,"Population: Speak English Very Well, Russian",Russian Population Fluent In English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,"Population: Speak English Very Well, Scandinavian Languages",Scandinavian Who Speak English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,"Population: Speak English Very Well, Serbo Croatian",Serbo Croatians Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,"Population: Speak English Very Well, Spanish or Spanish Creole",Spanish Population Fluent in English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,"Population: Speak English Very Well, Swahili or Other Languages of Central Eastern And Southern Africa",Swahili Population that Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,"Population: Speak English Very Well, Tagalog Incl Filipino",Fluent English Speaking Tagalog Speakers,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogSpokenAtHome,"Population: Speak English Very Well, Tagalog",Tagalog Population Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TamilSpokenAtHome,"Population: Speak English Very Well, Tamil",Tamils Who Speak English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TeluguSpokenAtHome,"Population: Speak English Very Well, Telugu",Telugu Population Who Speak Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"Population: Speak English Very Well, Thai Lao or Other Tai Kadai Languages",Thai Lao Who Speak English Very Well or Other Tai Kadai Languages Speak English Very Well Thai Lao or Other Tai Kadai Languages,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiSpokenAtHome,"Population: Speak English Very Well, Thai",Thai Population Speaking English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,"Population: Speak English Very Well, Ukrainian or Other Slavic Languages",Ukrainian or Other Slavic Population Speaking English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UrduSpokenAtHome,"Population: Speak English Very Well, Urdu",Urdu Population Who Speak English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_VietnameseSpokenAtHome,"Population: Speak English Very Well, Vietnamese",Population in Vietnamese That Speaks Fluent English,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"Population: Speak English Very Well, Yiddish Pennsylvania Dutch or Other West Germanic Languages",Fluent English Speakers of Yiddish Pennsylvania Dutch or Other West Germanic Languages Population,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishSpokenAtHome,"Population: Speak English Very Well, Yiddish",Population Who Speak Yiddish And English Very Well,, -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"Population: Speak English Very Well, Yoruba Twi Igbo or Other Languages of Western Africa",Twi Igbo or Other Languages of Western Africa Population Fluent in English,, -Count_Person_SpeakEnglishWell,Population: Speak English Well,Population Fluent English,, -Count_Person_Unemployed,Population: Unemployed,Unemployed Population,, -Count_Person_Upto4Years_Female_Overweight_AsFractionOf_Count_Person_Upto4Years_Female,"Population: 4 Years or Less, Female, Overweight (As Fraction of Count Person Upto 4 Years Female)",Fraction of Overweight Female Population With Up to 4 Years,, -Count_Person_Upto4Years_Female_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Female,"Population: 4 Years or Less, Female, Severe Wasting (As Fraction of Count Person Upto 4 Years Female)",Fraction of Female Population With Severe Wasting With Up to 4 Years,, -Count_Person_Upto4Years_Female_Wasting_AsFractionOf_Count_Person_Upto4Years_Female,"Population: 4 Years or Less, Female, Wasting (As Fraction of Count Person Upto 4 Years Female)",Fraction of Female Population Wasting With Up to 4 Years,, -Count_Person_Upto4Years_Male_Overweight_AsFractionOf_Count_Person_Upto4Years_Male,"Population: 4 Years or Less, Male, Overweight (As Fraction of Count Person Upto 4 Years Male)",Fraction of Overweight Male Population With Severe Wasting With Up to 4 Years,, -Count_Person_Upto4Years_Male_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Male,"Population: 4 Years or Less, Male, Severe Wasting (As Fraction of Count Person Upto 4 Years Male)",Fraction of Male Population With Severe Wasting With Up to 4 Years,, -Count_Person_Upto4Years_Male_Wasting_AsFractionOf_Count_Person_Upto4Years_Male,"Population: 4 Years or Less, Male, Wasting (As Fraction of Count Person Upto 4 Years Male)",Fraction of Male Population Wasting With Up to 4 Years,, -Count_Person_Upto4Years_Overweight_AsFractionOf_Count_Person_Upto4Years,"Population: 4 Years or Less, Overweight (As Fraction of Count Person Upto 4 Years)",Fraction of Overweight Population With Up to 4 Years,, -Count_Person_Urban_BelowPovertyLevelInThePast12Months,"Population: Urban, Below Poverty Level in The Past 12 Months",,, -Count_Person_Urban_Female,"Population: Female, Urban",Female Population in Urban Areas,, -Count_Person_Urban_Male,"Population: Male, Urban",Male Population in Urban Areas,, -Count_Person_USCitizenBornInPuertoRicoOrUSIslandAreas,Population: US Citizen Born in Puerto Rico or USIsland Areas,US Citizens Born Population in Puerto Rico,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAfrica,"Population: US Citizen by Naturalization, Foreign Born, Africa",US Citizens By Naturalization Foreign Born In Africa,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAsia,"Population: US Citizen by Naturalization, Foreign Born, Asia",Foreign-Born Population in Asia Who Are US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCaribbean,"Population: US Citizen by Naturalization, Foreign Born, Caribbean",Foreign-Born Population in the Caribbean US Citizen by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: US Citizen by Naturalization, Foreign Born, Central America Except Mexico","Foreign-Born Population Who Are US Citizens by Naturalization in Central America, Except Mexico",, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEasternAsia,"Population: US Citizen by Naturalization, Foreign Born, Eastern Asia",Foreign-Born Population Who Are US Citizens by Naturalization in Eastern Asia,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEurope,"Population: US Citizen by Naturalization, Foreign Born, Europe",Foreign-Born US Citizens by Naturalization in Europe,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: US Citizen by Naturalization, Foreign Born, Latin America",Foreign Born US Citizen by Naturalization in Latin America;Foreign-Born US Citizen by Naturalization in Latin America,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthMexico,"Population: US Citizen by Naturalization, Foreign Born, Country/MEX",US Citizens By Naturalization Foreign-Born In Mexico,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthamerica,"Population: US Citizen by Naturalization, Foreign Born, Northamerica",Foreign-Born Population in North America Who are US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: US Citizen by Naturalization, Foreign Born, Northern Western Europe",Foreign Borns in Northern Western European Who are US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthOceania,"Population: US Citizen by Naturalization, Foreign Born, Oceania",Foreign-Born Population in Oceania US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthamerica,"Population: US Citizen by Naturalization, Foreign Born, Southamerica",Foreign Born US Citizens By Naturalization Born in South America,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: US Citizen by Naturalization, Foreign Born, South Central Asia",Foreign-Born Population in South Central Asia Who are US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: US Citizen by Naturalization, Foreign Born, South Eastern Asia",Foreign Borns in South Eastern Asia US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: US Citizen by Naturalization, Foreign Born, Southern Eastern Europe",Southern Eastern Europe Foreign-Born US Citizens by Naturalization,, -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthWesternAsia,"Population: US Citizen by Naturalization, Foreign Born, Western Asia",Western Asia Foreign-Born US Citizens by Naturalization,, -Count_Person_Veteran,"Population: Civilian, Veteran",Civilian Veterans,, -Count_Person_Widowed_DifferentHouseAbroad,"Population: 15 Years or More, Widowed, Different House Abroad",Population Aged 15 Years or More Widows in a Different House Abroad,, -Count_Person_Widowed_DifferentHouseInDifferentCountyDifferentState,"Population: 15 Years or More, Widowed, Different House in Different County Different State",Widow Population Aged 15 Years or More Residing in Different Houses in Different County Different State,, -Count_Person_Widowed_DifferentHouseInDifferentCountySameState,"Population: 15 Years or More, Widowed, Different House in Different County Same State",Widowed Population Aged 15 Years or More In Different Houses in Different County Same State,, -Count_Person_Widowed_DifferentHouseInSameCounty,"Population: 15 Years or More, Widowed, Different House in Same County",Population Above 15 Years Old Who are Widowed in Different Houses in the Same County,, -Count_Person_Widowed_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Widowed, Adult Correctional Facilities",Widowed Population Aged 15 Years or More In Adult Correctional Facilities,, -Count_Person_Widowed_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Widowed, College or University Student Housing",Widowed Population Aged 15 Years or More In College or University Student Housing,, -Count_Person_Widowed_ResidesInGroupQuarters,"Population: 15 Years or More, Widowed, Group Quarters",Widows Aged 15 Years or More in Group Quarters,, -Count_Person_Widowed_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Widowed, Institutionalized Group Quarters",Widowed Population Aged 15 Years or More Residing in Institutionalized Group Quarters,, -Count_Person_Widowed_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Widowed, Noninstitutionalized Group Quarters",Widowed Population Aged 15 Years or More in Non-Institutionalized Group Quarters,, -Count_Person_Widowed_ResidesInNursingFacilities,"Population: 15 Years or More, Widowed, Nursing Facilities",Population Aged 15 Years or More Widowed in Nursing Facilities,, -Count_Person_WithEarnings_FullTimeYearRoundWorker,"Population: 16 Years or More, With Earnings, Full Time Year Round Worker",Full Time Year Round Worker Population Aged 16 Years or More With Earnings,, -Count_Person_WithHealthInsurance_AmericanIndianOrAlaskaNativeAlone,"Population: With Health Insurance, American Indian or Alaska Native Alone",American Indian or Alaska Native Population With Health Insurance,, -Count_Person_WithHealthInsurance_AsianAlone,"Population: With Health Insurance, Asian Alone",Asian Population With Health Insurance,, -Count_Person_WithHealthInsurance_BlackOrAfricanAmericanAlone,"Population: With Health Insurance, Black or African American Alone",African American Population With Health Insurance,, -Count_Person_WithHealthInsurance_HispanicOrLatino,"Population: With Health Insurance, Hispanic or Latino",Hispanic Population With Health Insurance,, -Count_Person_WithHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"Population: With Health Insurance, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian Or Other Pacific Islander Population With Health Insurance,, -Count_Person_WithHealthInsurance_WhiteAlone,"Population: With Health Insurance, White Alone",White Population With Health Insurance,, -Count_Person_WithOwnChildrenUnder18,Population: With Own Children Under 18,Population With Own Children Aged 18 Years Or Less,, -Count_Person_WithOwnChildrenUnder18_Female,"Population: With Own Children Under 18, Female",Female Population With Own Children Aged 18 Years Or Less,, -Count_Person_WithOwnChildrenUnder18_Male,"Population: With Own Children Under 18, Male",Male Population With Own Children Aged 18 Years Or Less,, -Count_Person_WorkedFullTime,"Population: Male, Worked Full Time",Male Population That Worked Full Time,, -Count_Person_Workers,Population: Worker,Workers,, -Count_Person_Workers_Female,"Population: Female, Worker",Female Workers,, -Count_Person_Workers_Male,"Population: Male, Worker",Male Workers,, -Count_Person_Workers_Rural,"Population: Rural, Worker",Workers In Rural Areas,, -Count_Person_Workers_Urban,"Population: Urban, Worker",Workers in Urban Areas,, -Count_Person_Years25Onwards_EducationalAttainment_5ThAnd6ThGrade,Population: 5th And 6th Grade,Population With 5th And 6th Grade Educational Attainment Aged 25 Years,, -Count_Person_Years25Onwards_EducationalAttainment_7ThAnd8ThGrade,Population: 7th And 8th Grade,7th And 8th Graders,, -Count_Person_Years25Onwards_EducationalAttainment_NurseryTo4ThGrade,Population: Nursery To 4th Grade,Population in Nursery To 4th Grade,, -Count_Person_YearsUpto6_Rural,"Population: 6 Years or Less, Rural",Population Aged 6 Years or Less In Rural Areas,, -Count_Person_YearsUpto6_Rural_Female,"Population: 6 Years or Less, Female, Rural",Female Population Aged 6 Years or Less in Rural,, -Count_Person_YearsUpto6_Rural_Male,"Population: 6 Years or Less, Male, Rural",Male Population Aged 6 Years or Less in Rural Areas,, -Count_Person_YearsUpto6_Urban,"Population: 6 Years or Less, Urban",Population Aged 6 Years or Less in Urban Areas,, -Count_Person_YearsUpto6_Urban_Female,"Population: 6 Years or Less, Female, Urban",Urban Female Population Aged Below 6 Years Old,, -Count_Person_YearsUpto6_Urban_Male,"Population: 6 Years or Less, Male, Urban",Males Aged 6 Years Old In Urban Areas,, -Count_PrescribedFireEvent,Count of Prescribed Fire Event,Population With Prescribed Fire Events,, -Count_RipCurrentEvent,Count of Rip Current Event,Rip Current Events,, -Count_SolarInstallation_Commercial,Count of Solar Installation: Commercial,Commercial Solar Installation,, -Count_SolarInstallation_Residential,Count of Solar Installation: Residential,Residential Solar Installations,, -Count_SolarInstallation_UtilityScale,Count of Solar Installation: Utility Scale,Utility Scale Solar Installations,, -Count_SolarThermalInstallation_NonUtility,Count of Solar Thermal Installation: Non Utility,Non-Utility Solar Thermal Installations,, -Count_StormSurgeTideEvent,Count of Storm Surge Tide Event,Storm Surge Tide Events,, -Count_StrongWindEvent,Count of Strong Wind Event,Strong Wind Events,, -Count_Student,Count of Student,Student Population,, -Count_Student_AdultEducation,Count of Student: Adult Education,Students Receiving Adult Education,, -Count_Student_AdultEducation_PrivateSchool,"Count of Student: Adult Education, Private School",,, -Count_Student_AdultEducation_PublicSchool,"Count of Student: Adult Education, Public School",,, -Count_Student_Asian,Count of Student: Asian,Asian Students,, -Count_Student_BachelorsDegree,Count of Student: Bachelors Degree,,, -Count_Student_BachelorsDegree_PrivateSchool,"Count of Student: Bachelors Degree, Private School",,, -Count_Student_BachelorsDegree_PublicSchool,"Count of Student: Bachelors Degree, Public School",,, -Count_Student_Black,Count of Student: Black,Black Students,, -Count_Student_BRAHighSchool,Count of Student: BRA_High School,,, -Count_Student_BRAHighSchool_PrivateSchool,"Count of Student: BRA_High School, Private School",,, -Count_Student_BRAHighSchool_PublicSchool,"Count of Student: BRA_High School, Public School",,, -Count_Student_BrazilPreVestibular,Count of Student: Brazil_Pre Vestibular,,, -Count_Student_Female,Count of Student: Female,Population of Female Students,, -Count_Student_HawaiianNativeOrPacificIslander,Count of Student: Hawaiian Native or Pacific Islander,Hawaiian Native or Pacific Islander Students,, -Count_Student_HispanicOrLatino,Count of Student: Hispanic or Latino,Hispanic Students,, -Count_Student_LiteracyCourse_PrivateSchool,"Count of Student: Literacy Course, Private School",,, -Count_Student_LiteracyCourse_PublicSchool,"Count of Student: Literacy Course, Public School",,, -Count_Student_Male,Count of Student: Male,Male Students,, -Count_Student_MastersDegreeOrHigher,Count of Student: Masters Degree or Higher,,, -Count_Student_MastersDegreeOrHigher_PrivateSchool,"Count of Student: Masters Degree or Higher, Private School",,, -Count_Student_MastersDegreeOrHigher_PublicSchool,"Count of Student: Masters Degree or Higher, Public School",,, -Count_Student_Nursery,Count of Student: Nursery,,, -Count_Student_Nursery_PrivateSchool,"Count of Student: Nursery, Private School",,, -Count_Student_Nursery_PublicSchool,"Count of Student: Nursery, Public School",,, -Count_Student_PreKindergarten,"Count of Student: Pre Kindergarten, Pre Kindergarten","Students, Pre Kindergarten",, -Count_Student_PreKindergarten_PrivateSchool,"Count of Student: Pre Kindergarten, Private School",,, -Count_Student_PreKindergarten_PublicSchool,"Count of Student: Pre Kindergarten, Public School",,, -Count_Student_PrimaryEducation,Count of Student: Primary Education,,, -Count_Student_PrimaryEducation_PrivateSchool,"Count of Student: Primary Education, Private School",,, -Count_Student_PrimaryEducation_PublicSchool,"Count of Student: Primary Education, Public School",,, -Count_Student_PrivateSchool,Count of Student: Private School,,, -Count_Student_PublicSchool,Count of Student: Public School,,, -Count_Student_TwoOrMoreRaces,Count of Student: Two or More Races,Total of Multiracial Students,, -Count_Student_White,Count of Student: White,Number of White Students,, -Count_Teacher_ElementaryTeacher,Count of Teacher: Elementary Teacher,Elementary Teachers,, -Count_Teacher_SecondaryTeacher,Count of Teacher: Secondary Teacher,Number of Secondary Teachers,, -Count_Teacher_UngradedTeacher,Count of Teacher: Ungraded Teacher,Ungraded Teachers,, -Count_Teacher_UniversityAndCollegeTeacher,Count of Teacher: University And College Teacher,,, -Count_ThunderstormWindEvent,Count of Thunderstorm Wind Event,Thunderstorm Wind Events,, -Count_TornadoEvent,Count of Tornado Event,Tornado Events,, -Count_TropicalStormEvent,Count of Tropical Storm Event,,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation,Count of Unemployment Insurance Claim: Short Time Compensation,Unemployment Insurance Claim Short Time Compensation,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim,"Count of Unemployment Insurance Claim: Short Time Compensation, Continued Claim",Short Time Compensation of Continued Unemployment Insurance Claims,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim_ScaledForPartTimeUnemploymentBenefits,"Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation, Continued Claim",Count of Unemployment Insurance Claim,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim,"Count of Unemployment Insurance Claim: Short Time Compensation, Initial Claim",Unemployment Insurance Claims,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim_ScaledForPartTimeUnemploymentBenefits,"Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation, Initial Claim",Short-Time Compensation Initial Unemployment Insurance Claims,, -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ScaledForPartTimeUnemploymentBenefits,Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation,Count of Unemployment Insurance Claim,, -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_ContinuedClaim,"Count of Unemployment Insurance Claim: State Unemployment Insurance, Continued Claim",State Unemployment Insurance,, -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_InitialClaimExcludingIntrastateTransitional,"Count of Unemployment Insurance Claim: State Unemployment Insurance, Initial Claim Excluding Intrastate Transitional",State Unemployment Insurance Initial Claim Excluding Intrastate Transitional,, -Count_UnemploymentInsuranceClaim_StateUnemploymentInsuranceOrShortTimeCompensation_ContinuedClaim_MovingAverage1WeekWindow,"Count of Unemployment Insurance Claim (Moving Average 1 Week Window): State Unemployment Insurance or Short Time Compensation, Continued Claim",State Unemployment Insurance Or Short Time Compensation Moving Average 1 Week Window,, -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance,Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees,Unemployment Compensation for Federal Employees,, -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_ContinuedClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees, Continued Claim",Continued Claims of Unemployment Compensation for Federal Employees,, -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_InitialClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees, Initial Claim",Unemployment Compensation for Federal Employees Claims,, -Count_UnemploymentInsuranceClaim_UCXOnly,Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers,Unemployment Insurance Claims UCX Only,, -Count_UnemploymentInsuranceClaim_UCXOnly_ContinuedClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers, Continued Claim",Unemployment Insurance Claims for Ex-Service Members,, -Count_UnemploymentInsuranceClaim_UCXOnly_InitialClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers, Initial Claim",Unemployment Compensation for Ex-servicemembers With Initial Claims,, -Count_WaterspoutEvent,Count of Waterspout Event,Water Spout Events,, -Count_WetBulbTemperatureEvent,Count of Wet Bulb Temperature Event,Wet Bulb Temperature Events,, -Count_WildlandFireEvent,Count of Wildland Fire Event,Wildland Fire Events,, -Count_WinterStormEvent,Count of Winter Storm Event,Wind Storm Events,, -Count_WinterWeatherEvent,Count of Winter Weather Event,Winter Weather Events,, -Count_Worker_NAICSGoodsProducing,Population of Person: Goods-producing (NAICS/101),People in Goods-producing Industries,, -Count_Worker_NAICSServiceProviding,Population of Person: Service-providing (NAICS/102),Workers in Service-Providing Industries,, -CountOfClaims_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,"Count of Claims of Natural Hazard Insurance: Building Structure And Contents, Flood Event",Flood Event Insurance,, -Covid19MobilityTrend_GroceryStoreAndPharmacy,Covid 19 Mobility Trend of Mobility Trend: Grocery Store & Pharmacy,Covid 19 Mobility Trend in Grocery Store And Pharmacy,, -Covid19MobilityTrend_LocalBusiness,Covid 19 Mobility Trend of Mobility Trend: Local Business,Covid 19 Mobility Trend in Local Business,, -Covid19MobilityTrend_Park,Covid 19 Mobility Trend of Mobility Trend: Park,Covid 19 Mobility Trend Park,, -Covid19MobilityTrend_Residence,Covid 19 Mobility Trend of Mobility Trend: Residence,Covid19 Mobility Trend Residence,, -Covid19MobilityTrend_TransportHub,Covid 19 Mobility Trend of Mobility Trend: Transport Hub,Covid 19 Mobility Trend Transport Hub,, -Covid19MobilityTrend_Workplace,Covid 19 Mobility Trend of Mobility Trend: Workplace,Covid 19 Mobility Trend Workplace,, -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedCase,"Cumulative Count of Medical Condition Incident: COVID-19, Confirmed Case",Confirmed Cases of Covid 19 Incidents,, -CumulativeCount_MedicalTest_ConditionCOVID_19,Cumulative Count of Medical Test: COVID-19,Cumulative Covid 19 Medical Test,, -dc/00dyzp11kk35g,Count of Establishment: Geothermal Electric Power Generation (NAICS/221116),Geothermal Electric Power Generation,, -dc/03ewbkyh6zey2,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Native Hawaiian or Other Pacific Islander Alone",Incarcerated Native Hawaiian or Other Pacific Islander Male Population,, -dc/03l0q0wyqrk39,"Population (Measured Based on Jurisdiction): Male, Incarcerated",Incarcerated Male Population Measured Based on Jurisdiction,, -dc/065dmg2ls1heb,"Count of Housing Unit: With Mortgage, 1,500 - 1,999 USD",,, -dc/06f0jf8xvzw4f,"Population: Bachelors Degree or Higher, Female, Hispanic or Latino",Hispanic Female Population With Bachelor's Degrees,, -dc/06m8j6xz3h0wf,"Population: Taxicab Motorcycle Bicycle or Other Means, Natural Resources, Construction, And Maintenance Occupations","Population Working In Construction, And Maintenance Occupations Who Use Motorcycle Bicycles",, -dc/079ewbkwfmswg,"Population: Widowed, Native Born Outside The United States",Native Born Outside The United States Widowed,, -dc/0gettc3bc60cb,Population: Car Truck or Van Drove Alone,Population Driving Car Truck or Van,, -dc/0jtctjm33mgh1,"Population: Enrolled in College Undergraduate Years, Hispanic or Latino",Hispanic Population Enrolled in College Undergraduate,, -dc/0mz1rg7mm3y66,"Population (Measured Based on Jurisdiction): Federally Operated, Incarcerated",Federally Operated And Incarcerated Population,, -dc/0tn58fc77r0z6,"Population (Measured Based on Jurisdiction): Incarcerated, Black or African American Alone",Incarcerated African Americans,, -dc/0yv0ry7tjmwzc,"Population: Female, Enrolled in College Undergraduate Years","Female Population Enrolled in College, Undergraduate Years",, -dc/10d542rs75l3g,"Population (Measured Based on Jurisdiction): Federally Operated, Female, Incarcerated",Incarcerated Female Population in Federally Operated,, -dc/15lrzqkb6n0y7,Population of Person: Crop Production (NAICS/111),Workers In Crop Production,, -dc/1c4zcyw02n71g,"Population: Enrolled in Kindergarten, Asian Alone",Asians Population Enrolled in Kindergarten,, -dc/1fw0t5m6459gb,Population: 10 - 14 Minute,Population With Commute Time of 10 to 14 Minutes,, -dc/1j7jmy39fwhw5,"Count of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Agriculture, Forestry, Fishing, And Hunting Establishments",, -dc/1kt512ynvpmc2,"Population: High School, Asian Alone",Asian Population Enrolled In High School,, -dc/1lm9k2vdxj4c6,"Population: Asian And Pacific Island Languages, Foreign Born",Foreign Born in Asian And Pacific Island Languages,, -dc/1t989xd1tn701,"Population: Enrolled in College Undergraduate Years, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Enrolled in College Undergraduate Years,, -dc/1wf1h5esex2d,Count of Establishment: Manufacturing (NAICS/31-33),Establishments in The Manufacturing Industries,, -dc/1y59h5d6qjq91,"Population: With Income, Native Born Outside The United States",Native Population Born Outside The United States With Income,, -dc/2487zfwx2423d,"Population (Measured Based on Jurisdiction): Female, Incarcerated, American Indian or Alaska Native Alone",Incarcerated American Indian or Alaska Native Female Population,, -dc/273kn2nmgl4rf,"Population: No Income, Born in Other State in The United States",Population Born in Other State in The United States Without Income,, -dc/28nfbs113meqb,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Male, Incarcerated",Incarcerated Male Population in Judicial Execution,, -dc/29vy1f58gdm0g,"Population: Foreign Born, Two or More Races",Foreign Born Multiracial Population,, -dc/2c2e9bn8p7xz6,Count of Establishment: Retail Trade (NAICS/44-45),Retail Trade,, -dc/2hhr4qp4b4r0b,"Population: Public Transportation Excluding Taxicab, Natural Resources, Construction, And Maintenance Occupations","Public Transportation Excluding Taxicab, Natural Resources, Construction And Maintenance Occupations Population",, -dc/2qgvm8lch89n5,Count of Establishment: Wholesale Trade (NAICS/42),Wholesale Trade,, -dc/2r1c78wzvbq58,"Population: Walked, Military Specific Occupations",Population Who Walked in Military Specific Occupations,, -dc/2r21y7g5j2fl2,"Population: Widowed, Born in Other State in The United States",Widowed Population Born in Other State in The United States,, -dc/2s9jqlpe84dk,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Asian Alone",Incarcerated Asian Male Population,, -dc/2xd2ktjs23hk3,"Population: Native, Two or More Races",Multiracial Native Population,, -dc/3bg4r46ly61q9,"Population: High School, Black or African American Alone",African Americans In High School,, -dc/3kk4xws30zxlb,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Incarcerated",Incarcerated Population Death Incidents from Other Cause of Death,, -dc/3n8g9we5yv7th,"Population: Enrolled in Kindergarten, Two or More Races",Multiracials Enrolled in Kindergartens,, -dc/3s7lndm5j3wp4,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Incarcerated",Incarcerated Population Deaths From Illness or Natural Cause,, -dc/3w039ndqy7qv1,"Population: Some College or Associates Degree, Female, Hispanic or Latino",Hispanic Female Population With Some College or Associate's Degrees,, -dc/3z6z9w930dl7b,"Population: Graduate or Professional School, Black or African American Alone",African American Population In Graduate School,, -dc/3zy5zptr0tsmg,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Male, Incarcerated",Deaths of Incercarated Male Population Due to Another Person,, -dc/40724bjd19ej7,"Population: Foreign Born, Native Hawaiian or Other Pacific Islander Alone",Foreign-Born Native Hawaiian or Other Pacific Islander Population,, -dc/4hzyqndyzntm,"Population: High School, White Alone",White Population In High School,, -dc/4j5t00e5s5el3,Population: Pre Kindergarten And Kindergarten,Pre Kindergarten And Kindergarten Population,, -dc/4jqzmk4jtzwnb,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Hispanic or Latino",Incarcerated Hispanic Female Population,, -dc/4kbb1mt42l0gf,"Population: Other Indo European Languages, Native",Native Population With Other European Indo Languages,, -dc/4lvmzr1h1ylk1,"Prevalence: Female, Obesity",Obesity Prevalence in Female Population,, -dc/4qtse8536dg63,"Population: Bachelors Degree or Higher, Female, American Indian or Alaska Native Alone",American Indian or Alaska Native Female Population with a Bachelor's Degree or Higher,, -dc/4wdtyd2bbf9m9,"Population: Two or More Races, Enrolled in School",Multiracial Population Enrolled in School,, -dc/4wkzsq23w6reb,"Population: Enrolled in College Undergraduate Years, White Alone Not Hispanic or Latino",White Non-Hispanic Population Enrolled in College Undergraduate Years,, -dc/4x1jbp34f4085,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Two or More Races",Population of Incarcerated Multiracial Female Population,, -dc/4xklqxfc27w1f,"Population: Public Transportation Excluding Taxicab, Management, Business, Science, And Arts Occupations","Population working In Management, Business, Science and Arts Occupations Who Use Public Transportation Excluding Taxicab",, -dc/50yq5l3ek70t7,"Population: Enrolled in College Undergraduate Years, Some Other Race Alone",Other Race Population Enrolled In College Undergraduate Years,, -dc/510pv6eq2vtw7,"Population (Measured Based on Jurisdiction): Incarcerated, Native Hawaiian or Other Pacific Islander Alone",Incarcerated Native Hawaiian Or Other Pacific Islander Population,, -dc/51h3g4mcgj3w4,Count of Establishment: Construction of Buildings (NAICS/236),Construction of Buildings Establishments,, -dc/556pqlh586bmc,"Population: Enrolled in Kindergarten, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Enrolled in Kindergarten,, -dc/55d9n710f1l43,"Population: Enrolled in College Undergraduate Years, White Alone",White Population Enrolled in College Undergraduate Years,, -dc/56md3ndhrmvm7,"Population: Some College or Associates Degree, Female, Black or African American Alone",African American Female Population With Some College or Associate's Degrees,, -dc/59k03h1hvxp89,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Female, Incarcerated",Female Incarcerated Death Events Death Due To Another Person,, -dc/5blsqw3w9jmnc,"Population: Two or More Races, Not Enrolled in School",Multiracial Population Not Enrolled In School,, -dc/5g7vkrkzfre5g,"Population: Married And Not Separated, Foreign Born",Married And Unseparated Foreign-Born Population,, -dc/5gtp8jjdzczh8,"Population: No Income, Born in State of Residence",Population Born in State of Residence Without Income,, -dc/5hc4etrfyj9qg,"Population: Bachelors Degree or Higher, Female, White Alone",White Female Population With Bachelor's Degrees or Higher,, -dc/5jy4dp16mtssg,"Count of Housing Unit: Without Mortgage, 0 USD",Housing Units Without Mortgage,, -dc/5pcx89t7j9bq,"Population: Married And Not Separated, Born in State of Residence",Population Born in the State of Residence and Married and Not Separated,, -dc/5qnjtqc0w783b,"Population: American Indian or Alaska Native Alone, Enrolled in School",American Indian or Alaska Native Population Enrolled in School,, -dc/61t0et409x8ch,"Count of Establishment: Research And Development in The Physical, Engineering, And Life Sciences (NAICS/54171)",Research And Development in The Physical Engineering And Life Sciences Establishments,, -dc/62gn48xpbqew9,Population: 30 - 34 Minute,Population with Commute Time of 30 to 34 Minutes,, -dc/62n3z7mvfpjx1,"Amount of Economic Activity (Real Value): Gross Domestic Production, Manufacturing (NAICS/31-33)",Gross Domestic Production in Manufacturing,, -dc/66sy80vs0b8q7,"Population: Divorced, Born in Other State in The United States",Divorced Population Born in Other States in The United States,, -dc/67ttwfn9dswch,Count of Mortality Event (Measured Based on Jurisdiction): Incarcerated,Deaths Among Incarcerated Population,, -dc/68cg2z97cpl7d,"Population: Primary School, Hispanic or Latino",Hispanic Population In Primary Schools,, -dc/6bkn9vt30f5c1,"Population: Foreign Born, American Indian or Alaska Native Alone",Foreign Born American Indian or Alaska Native Population,, -dc/6dqm6n76jg2gc,"Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Female, Incarcerated",Accidental Deaths of Incarcerated Female Population,, -dc/6rltk4kf75612,Population: Worked At Home,Population Worked At Home,, -dc/6xg0t3qjdtqn5,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Native Hawaiian or Other Pacific Islander Alone",Incarcerated Native Hawaiian or Other Pacific Islander Female Population,, -dc/6xlk95n27cn23,"Count of Mortality Event (Measured Based on Jurisdiction): Male, Incarcerated",Deaths Among Incarcerated Male Population,, -dc/6zbb7s5nx6rxb,"Population: Middle School, Some Other Race Alone",Other Race Middle School Population,, -dc/6zrlr86zt61yg,"Population: Taxicab Motorcycle Bicycle or Other Means, Service Occupations",Population Use Taxicab Motorcycle Bicycle,, -dc/70zj83ev915f8,"Population: Male, Now Married",Currently Married Male Population,, -dc/7fdfhnnjr5sh8,"Population: Graduate or Professional School, American Indian or Alaska Native Alone",American Indian or Alaska Native Population with Graduate or Professional Schools,, -dc/7g77dy8hfb1rg,"Population: Enrolled in Kindergarten, Hispanic or Latino",Hispanic Population Enrolled in Kindergarten,, -dc/7g8v95ycwgwgg,"Population (Measured Based on Jurisdiction): Female, Incarcerated, White Alone",Incarcerated White Female Population,, -dc/7nqp2vc6y6fef,"Population: Native Hawaiian or Other Pacific Islander Alone, Not Enrolled in School",Native Hawaiian Population not Enrolled In School,, -dc/7wt44yv38rew,"Population: Worked At Home, Sales And Office Occupations",Population Working At Home As Sales And Office Occupations,, -dc/7ykp70f9rtck9,Population: 20 - 24 Minute,,, -dc/80q8jrnkvwtt3,"Population: Car Truck or Van Carpooled, Management, Business, Science, And Arts Occupations","Population of Car Truck or Van Carpooled, Management, Business, Science in Arts Occupations",, -dc/80wsxnfj3secc,"Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Incarcerated",Deaths Of Incarcerated Population Caused by Unintentional Injuries,, -dc/88znpts47dszb,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Male, Incarcerated",Deaths of Incarcerated Male Population Caused by Illness,, -dc/8cnhmxe67qddf,"Population: Native Hawaiian or Other Pacific Islander Alone, Enrolled in School",Native Hawaiian or Other Pacific Islander Population Enrolled in School,, -dc/91vy0sf20wlg9,"Population (Measured Based on Jurisdiction): Out-of-State, State Operated, Incarcerated","Out of State, State Operated Incarcerated Population",, -dc/92sfrvdv82jh9,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Male, Incarcerated",Deaths of Incarcerated Male Population Caused By Other NPS,, -dc/96b2ddmlpvq7f,"Revenue of Establishment: Geothermal Electric Power Generation (NAICS/221116), With Payroll",Geothermal Electric Power Generation Establishments With Payrolls,, -dc/99t3dyzp34tg2,"Population: Foreign Born, Some Other Race Alone",Other Race Foreign-Born Population,, -dc/9b9gqxj27fqwc,"Count of Housing Unit: With Mortgage, 3,000 USD or More","Housing Units With 3,000 USD or More Mortgage",, -dc/9cqv67nn7pn1b,"Population: Graduate or Professional School, Hispanic or Latino",Hispanic Population with Graduates or Professional Schools,, -dc/9cztw75rt7qp7,"Population: Married And Not Separated, Born in Other State in The United States",Married And Not Separated Population Born in Other States in The United States,, -dc/9pz1cse6yndtg,Count of Establishment: Management of Companies And Enterprises (NAICS/55),Management of Companies And Enterprise Industries,, -dc/9q73ecfhmd0y9,"Population: High School, Some Other Race Alone",Other Race High School Students,, -dc/9sneyc8lpk8dc,"Population: Some College or Associates Degree, Female, White Alone",White Female Population with Some College or Associate's Degrees,, -dc/9vlv8l9dbgsk7,"Population: Public Transportation Excluding Taxicab, Military Specific Occupations","Workers in Public Transportation Excluding Taxicab, Military Specific Occupations",, -dc/b0npgpvp37mvf,"Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Male, Incarcerated",Accidental Deaths Among Incarcerated Male Population,, -dc/b18vkxwgc8xbd,"Population: Native, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population Who are Natives,, -dc/b3jgznxenlrm2,"Population (Measured Based on Custody): Not A US Citizen, State Operated & Federally Operated & Privately Operated, Incarcerated","Non-US Citizens Incarcerated in State Operated, Federally Operated and Privately Operated",, -dc/b3nmcj3w1lhed,"Population: Middle School, Two or More Races",Multiracial Population In Middle Schools,, -dc/b6h698m2vmdcc,"Population: Primary School, White Alone Not Hispanic or Latino",White And Non-Hispanic Population In Primary School,, -dc/b6z2v4t8cvcd5,"Revenue of Establishment: Wind Electric Power Generation (NAICS/221115), With Payroll",Revenue of Wind Electric Power Generation Industries With Payroll,, -dc/b9plt3q5k6gyb,"Population: Car Truck or Van Drove Alone, Natural Resources, Construction, And Maintenance Occupations","Population Of Car Truck or Van Drove In Natural Resources, Construction And Maintenance Occupations",, -dc/bb2jpneq7n71f,"Population: Other Languages, Foreign Born",Foreign-Born Population With Other Languages,, -dc/bf85zc6wypd2h,"Population: Primary School, White Alone",White Population in Primary School,, -dc/bhc16vntggjyd,"Population: Taxicab Motorcycle Bicycle or Other Means, Military Specific Occupations",Population Using Taxicab Motorcycle Bicycles in Military-Specific Occupations,, -dc/br6elkd593zs1,"Count of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Mining, Quarrying, And Oil And Gas Extraction Industries",, -dc/bre4whrdn7pt7,"Population: Walked, Service Occupations",Population Working in Service Occupations,, -dc/c17kzp0zrfkq9,"Population (Measured Based on Custody): 0 - 17 Years, Female, Incarcerated",Incarcerated Female Population Aged 0 to 17 Years,, -dc/c57vzg7l74577,"Population: Middle School, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population in Middle School,, -dc/c684e489pk3t7,Annual Receipt of Coal: Electric Power,Annual Receipt of Coal in Electric Power,, -dc/c6n2z7vh9sy31,"Population: Enrolled in Kindergarten, Some Other Race Alone",Other Race Population Enrolled in Kindergarten,, -dc/c70q24p6xgk33,"Population: Separated, Born in State of Residence",Separated Population Born in the State of Residence,, -dc/c75qlm98pmcb2,"Population: Middle School, White Alone Not Hispanic or Latino",White and Non-Hispanic Population in Middle School,, -dc/c9cl49nnrv5x4,"Count of Housing Unit: Without Mortgage, 1,500 - 1,999 USD","Housing Units Without Mortgage with a 1,500 to 1,999 USD",, -dc/cb1jtf8j55xx9,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Unsentenced",Unsentenced Incarcerated Male Population,, -dc/cc8wk2n0ywd9,"Population: High School, Hispanic or Latino",Hispanics Enrolled in High School,, -dc/ck1emtds61j27,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Hispanic or Latino",Incarcerated Hispanic Male Population,, -dc/ck1ksqd8rgps6,Wages Annual of Establishment: Heavy And Civil Engineering Construction (NAICS/237),Annual Wages Of Heavy and Civil Engineering Construction Establishments,, -dc/cs8fvwkmpmlpg,"Population: Worked At Home, Production, Transportation, And Material Moving Occupations","Population Worked At Home in Production, Transportation, And Material Moving Occupations",, -dc/dbe0drezxrpv6,Population: 5 - 9 Minute,,, -dc/dc5hbzngddq37,"Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71)",,, -dc/dj7cvhr91sff5,"Population: Divorced, Native Born Outside The United States",Divorced Population of Natives Born Outside The United States,, -dc/dj7khl7q78412,"Population: Car Truck or Van Carpooled, Production, Transportation, And Material Moving Occupations","Population Worked in Car Truck, Production, Transportation, And Material Moving Occupations",, -dc/dn2h9yfcgbkg2,"Population: Worked At Home, Service Occupations",Population in Service Occupations Who Worked At Home,, -dc/drvcnjld04b06,"Population: Divorced, Born in State of Residence",Divorced Population Born in The State of Residence,, -dc/dxq7vxxwvp7pg,"Population (Measured Based on Jurisdiction): Male, Incarcerated, American Indian or Alaska Native Alone",Incarcerated American Indian or Alaska Native Male Population,, -dc/dxsxcw009pdm4,"Population: High School, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Population in HighSchool,, -dc/dyhxtqe2pxhl5,"Population: No Income, Foreign Born",Foreign Born Population Without Income,, -dc/dzfdgrtcv5h7,"Population: High School, White Alone Not Hispanic or Latino",White Non-Hispanic Population in High School,, -dc/e27c5t4tbplg,"Population: Taxicab Motorcycle Bicycle or Other Means, Production, Transportation, And Material Moving Occupations",Population Production Taxicab Motorcycle Bicycle or Other Means of Transportation,, -dc/e2szvml8jkld8,"Population: Middle School, Black or African American Alone",African American Population in Middle School,, -dc/e3jblh1b616b5,"Population (Measured Based on Jurisdiction): Incarcerated, Unsentenced",Unsentenced and Incarcerated People,, -dc/e4y4hqq6mjfsh,"Population: Primary School, Black or African American Alone",African American Population in Primary Schools,, -dc/e718gzyclkcq8,"Population (Measured Based on Jurisdiction): Federally Operated, Male, Incarcerated",Incarcerated Male Population Employed in Federally Operated,, -dc/eg6rrdr1tkf76,"Population: Bachelors Degree or Higher, Female, Asian Alone",Asian Female Population With Bachelor's Degree or Higher,, -dc/ejpm616jd1pq1,"Count of Housing Unit: With Mortgage, 2,000 - 2,999 USD",,, -dc/ekyc06n24txh2,"Population: Native, White Alone Not Hispanic or Latino",White Native Non Hispanic Population,, -dc/env3140jqssg8,"Population: Primary School, Some Other Race Alone",Some Other Race Population in Primary School,, -dc/ep052e5d1p2t4,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Male, Incarcerated",Deaths of Incarcerated Male Population Caused by Intentional Self-Harm,, -dc/eptfljlz7bgbg,Count of Establishment: Nuclear Electric Power Generation (NAICS/221113),Nuclear Electric Power Generation Industries,, -dc/epw58ne8mytn5,"Population: Some College or Associates Degree, Female, Some Other Race Alone",Female Population Of Some Other Race With College Degrees,, -dc/evcytmdmc9xgd,"Count of Establishment: Privately Owned, Wind Electric Power Generation (NAICS/221115)",Privately Owned Wind Electric Power Generation,, -dc/exr9t81en1h34,Population: 25 - 29 Minute,Population in 25 - 29 Minute,, -dc/fgt7thnws9vx9,"Population: Walked, Production, Transportation, And Material Moving Occupations","Population Walking to Production, Transportation, And Material Moving Occupations",, -dc/fh4td3znm3l4g,"Population: High School, American Indian or Alaska Native Alone",American Indian or Alaska Native Population in HighSchool,, -dc/fmx7fkrpd3jl2,"Population: Graduate or Professional School, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Graduates,, -dc/fs27m9j4vpvc7,"Population (Measured Based on Jurisdiction): Incarcerated, American Indian or Alaska Native Alone",Incarcerated American Indian or Alaska Native Population,, -dc/fyc3yvjy0xw6g,Population: 5 Minute or Less,,, -dc/g0yn22m8r3639,"Count of Housing Unit: With Mortgage, 800 USD or Less",800 USD or Less Housing Units With Mortgage,, -dc/g4fthg3t3y5td,"Population: Middle School, Asian Alone",Asian Population In Middle School,, -dc/g8537zqf45wl3,"Population: High School, Two or More Races",Multiracial Population Enrolled In High School,, -dc/g8kg52zcxzw9f,"Population: Female, Enrolled in Kindergarten",Female Population Enrolled in Kindergarten,, -dc/gb0b3cwxyfsh9,"Count of Mortality Event (Measured Based on Jurisdiction): Female, Incarcerated",Deaths of Incarcerated Female Population,, -dc/gr3zem8shyhbf,"Population: Enrolled in Kindergarten, White Alone",Whites Enrolled in Kindergarten,, -dc/gvnh5cpl9h1rf,"Population: With Income, Foreign Born",Foreign Born Population with Income,, -dc/h34ge8t21h9m1,"Count of Housing Unit: With Mortgage, 800 - 1,499 USD","Housing Units With 3,000 USD or More Mortgage",, -dc/h7ft916g93ys2,Population: 90 Minute or More,,, -dc/h8p2m5rx43j3b,"Population: Graduate or Professional School, White Alone",White Population in Graduate or Professional Schools,, -dc/hbkh95kc7pkb6,Population: Public Transportation Excluding Taxicab,Population Worked in Public Transportation Excluding Taxicab,, -dc/hg63vjs5wes3b,"Population: Other Languages, Native",Native Population Speaking Other Languages,, -dc/hxsdmw575en24,Population (Measured Based on Jurisdiction): Incarcerated,Incarcerated Population,, -dc/hyfn2tlyz48lb,"Population: Bachelors Degree or Higher, Female, Two or More Races",Multiracial Population With Bachelor's Degrees or Higher,, -dc/j5fv028n7nhe4,Wages Annual of Establishment: Residential Building Construction (NAICS/2361),Wages of People in Residential Building Construction Industries,, -dc/j7lkt2ww5qsn5,"Population: Public Transportation Excluding Taxicab, Production, Transportation, And Material Moving Occupations","Population in Public Transportation Excluding Taxicab, Production And Material Moving Occupations",, -dc/j7pej9wer7lkd,"Population: Car Truck or Van Carpooled, Natural Resources, Construction, And Maintenance Occupations","Workers in Car Trucks or Van Carpooled With Natural Resources, Construction, And Maintenance Occupations",, -dc/jbv3zc0ezvcyc,"Population: Some Other Race Alone, Enrolled in School",Other Race Population Enrolled in School,, -dc/jceld0k7ysbw3,"Population: Separated, Foreign Born",Foreign-Born Separated Population,, -dc/jh0nks36n1jc1,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Female, Incarcerated",Deaths of Incarcerated Female Population Due to Judicial Execution,, -dc/jhjdplbeg26k1,"Population: Primary School, Two or More Races",Multiracial Population In Primary Schools,, -dc/jszfr5wd4f7pb,"Population: Car Truck or Van Drove Alone, Management, Business, Science, And Arts Occupations",Population Using Car Truck or Van Driving in Management Business Science And Arts Occupations,, -dc/jte92xq8qsgtd,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Incarcerated",Deaths of Incarcerated Population Caused by Intentional Self-Harm,, -dc/jtf63bh66k41g,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Incarcerated",Deaths of Incarcerated Population Caused by Assault,, -dc/jxd329x7k27fb,"Population: Native, White Alone",Native White Population,, -dc/jxsx1rb4xg84f,"Population: Car Truck or Van Carpooled, Sales And Office Occupations",Population in Sales and Office Occupations who Use Car Trucks,, -dc/k33ngtzpqxql6,"Population: Car Truck or Van Drove Alone, Service Occupations",Population With Car Truck or Van Drove Service Occupations,, -dc/kcns4cvt14zx2,Count of Establishment: Educational Services (NAICS/61),Educational Services Establishments,, -dc/kfr6chpkw90e3,Population: 60 - 89 Minute,,, -dc/km8en9ep7bwh6,"Population: Asian Alone, Enrolled in School",Asians Enrolled in School,, -dc/kpcfmb6lp3zpd,"Population: Some College or Associates Degree, Female, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Female Population with Some Colleges or Associate's Degrees,, -dc/kt900ezddrf79,"Population: Car Truck or Van Drove Alone, Sales And Office Occupations",Population Commuting by Car Truck or Van in Sales And Office Occupations,, -dc/ktf5098lxb8sc,"Population: Native, Black or African American Alone",Native And African American Population,, -dc/ktmr6ngnsqxmf,"Revenue of Establishment: Nuclear Electric Power Generation (NAICS/221113), With Payroll",Revenue of Nuclear Electric Power Generation Establishments with Payroll,, -dc/kz9r60zp6s32b,"Population: Graduate or Professional School, Two or More Races",Multiracial Graduates,, -dc/l2pbn6flhhmq,"Population: Separated, Native Born Outside The United States",Separated Native Population Born Outside The US,, -dc/lk9fd4v63ke94,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Two or More Races",Incarcerated Multiracial Male Population,, -dc/lnp5g90fwpct8,"Population (Measured Based on Jurisdiction): Female, Incarcerated",Female Population Incarcerated,, -dc/lsf00jqxjp9r8,Count of Establishment: Biomass Electric Power Generation (NAICS/221117),Biomass Electric Power Generation Establishments,, -dc/ltwqwtxcq9l23,Count of Establishment: Heavy And Civil Engineering Construction (NAICS/237),Heavy And Civil Engineering Construction Establishments,, -dc/m54m06x6r5xm9,"Population: Car Truck or Van Carpooled, Military Specific Occupations",Population with Car Truck or Van Carpooled in Military Specific Occupation Industries,, -dc/m5ltqeg1src,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Unsentenced",Female Population Who are Incarcerated and Unsentenced,, -dc/m60n94sqql2d3,"Count of Housing Unit: Without Mortgage, 3,000 USD or More","Housing Units Without a Mortgage of 3,000 USD or More",, -dc/m615rq99fwf2c,"Population: Car Truck or Van Carpooled, Service Occupations",Service Occupation Workers Who Carpool,, -dc/mbn7jcx896cd8,Count of Establishment: Hydroelectric Power Generation (NAICS/221111),Hydroelectric Power Generation,, -dc/mjqlm4q2efmvh,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Female, Incarcerated",Deaths of Incarcerated Female Population Due to Illness or Natural Cause,, -dc/mlf5e4m68h2k7,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54)","Professional, Scientific and Technical Services",, -dc/mqxdr821c7kw3,"Population: Some College or Associates Degree, Female, American Indian or Alaska Native Alone",Female American Indian or Alaska Native Population With Some College or Associate's Degree,, -dc/mr1f76pb6yq98,"Population: White Alone, Not Enrolled in School",White Population Who Have Not Enrolled in School,, -dc/msz3yy4p50yyf,"Wages Annual of Establishment: Research And Development in The Physical, Engineering, And Life Sciences (NAICS/54171)",Annual Wages of Workers in Research And Development in The Physical Engineering And Life Sciences,, -dc/mwbmxs2q9zcgd,"Population: Enrolled in College Undergraduate Years, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Enrolled in College Undergraduate Years,, -dc/mwcnlh5bmdk63,Count of Establishment: Electric Power Transmission And Distribution (NAICS/22112),Electric Power Transmission And Distribution Establishments,, -dc/n11nnhnf54h78,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Black or African American Alone",African American Female Population Who are Incarcerated,, -dc/n18hgz310vw83,"Revenue of Establishment: Hydroelectric Power Generation (NAICS/221111), With Payroll",Revenue of Hydroelectric Power Generation Establishments With Payroll,, -dc/n2vhkpw0slkv5,"Population: Public Transportation Excluding Taxicab, Service Occupations",Population in Public Transportation Excluding Taxicab Service Occupations,, -dc/n5fmmhn8w641g,"Population: Separated, Born in Other State in The United States",Separated Population Born in Other States in The United States,, -dc/n92hgh8ned7k5,"Population (Measured Based on Jurisdiction): In-State, Privately Operated, Incarcerated",Population Incarcerated in In-State and Privately Operated Correctional Facilities,, -dc/n99t0lnl3fch6,"Population: Walked, Natural Resources, Construction, And Maintenance Occupations","Population Worked in Natural Resources, Construction, And Maintenance Occupations",, -dc/nfdf9rt7kbggb,"Population: Worked At Home, Management, Business, Science, And Arts Occupations","Workers in Home For Management, Business, Science, And Arts Occupations",, -dc/nhecfv83n1nt9,"Population: Native, American Indian or Alaska Native Alone",American Indian or Alaska Native Population,, -dc/nhmjhp72kjr48,"Population: Enrolled in College Undergraduate Years, Asian Alone",Asian Population Enrolled in College Undergraduate Years,, -dc/njgzb8knf11n8,"Population: Middle School, American Indian or Alaska Native Alone",American Indian or Alaska Native Population Enrolled in Middle School,, -dc/nm9hcklgg5zb3,Population: Employed,Population Who are Employed,, -dc/nrh9sl7zy12bf,"Count of Housing Unit: Without Mortgage, 800 - 1,499 USD","800 to 1,499 USD Housing Units Without Mortgage",, -dc/ns1rqx6wy9909,"Population: Enrolled in Kindergarten, Black or African American Alone",African American Population Enrolled in Kindergarten,, -dc/nt9cq96phw6nf,"Population: Enrolled in Kindergarten, White Alone Not Hispanic or Latino",White Non-Hispanic Population Enrolled in Kindergarten,, -dc/nvfkved5p7pv1,"Population: Asian Alone, Not Enrolled in School",Asian Population Not Enrolled in School,, -dc/nvrxn11yxlen2,"Population: Public Transportation Excluding Taxicab, Sales And Office Occupations",Population Using Public Transportation,, -dc/nz8kmke5yqvn,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Incarcerated",Deaths Among Incarcerated Population Caused by Another Person,, -dc/p34mhcpgtth76,"Population: Male, Enrolled in Kindergarten",Male Population Enrolled In Kindergarten,, -dc/p3vqwthpjtdw,"Population: Graduate or Professional School, Some Other Race Alone",Some Other Race Population in Graduate or Professional Schools,, -dc/p4jzvj8q1lnmd,"Population: Primary School, American Indian or Alaska Native Alone",American Indians Enrolled in Primary Schools,, -dc/pltrqb2ng8dp8,"Population: Male, Enrolled in College Undergraduate Years",,, -dc/ppe3pntdhnb4d,"Population: With Income, Born in Other State in The United States",Population Born in Other State in The United States with Income,, -dc/pplpj0y0mzd3g,Population: 40 - 44 Minute,,, -dc/ptp31y11913b6,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Black or African American Alone",African American Male Population Incarcerated,, -dc/pwpgqvlz3zxtc,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Female, Incarcerated",Incarcerated Female Deaths Caused by NPS Other,, -dc/q0p7fcll1lv8c,"Count of Housing Unit: Without Mortgage, 800 USD or Less",800 USD or Less Housing Units Without Mortgage,, -dc/q2pgyz35p79l4,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Female, Incarcerated",Deaths of Incarcerated Female Population Due to Assaults,, -dc/q779fwy6k8skd,"Population: Female, Worked Full Time",Female Population Worked Full Time,, -dc/q98jxycvs422f,"Population: Some College or Associates Degree, Female, Two or More Races",Multiracial Female Population With Some College or Associate's Degree,, -dc/qcj421m935ppd,Annual Receipt of Coal: Other Industrial,Annual Receipt of Coal by Other Industrial,, -dc/qgv9d3frn35qc,"Population (Measured Based on Jurisdiction): Out-of-State, Privately Operated, Incarcerated",Incarcerated Population Of Privately Operated Out Of State Correctional Facilities,, -dc/qj9v0vqzp9vlg,"Population: Widowed, Foreign Born",Widowed Foreign-Born Population,, -dc/qnnbzwrjn50jh,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Female, Incarcerated",Incarcerated Female Deaths Caused by AIDS,, -dc/qnphlls92tvs9,"Population: Enrolled in Kindergarten, American Indian or Alaska Native Alone",American Indians Enrolled In Kindergarten,, -dc/qt7ewllmt3826,"Amount of Economic Activity (Real Value): Gross Domestic Production, Retail Trade (NAICS/44-45)",Amount of Economic Activity in Gross Domestic Production And Retail Trade Industries,, -dc/qvf1yrhwzp8rd,"Population: Middle School, White Alone",White Middle Schoolers,, -dc/qzjpw3tj2wxw7,"Population: Foreign Born, White Alone Not Hispanic or Latino",Foreign-Born White Non-Hispanic Population,, -dc/r0delcsw86kc6,"Population: Car Truck or Van Drove Alone, Production, Transportation, And Material Moving Occupations","Workers Employed by Car Truck or Van Drove, Production, Transportation And Material Moving Occupations",, -dc/r5ebll5x2zxfg,"Population (Measured Based on Jurisdiction): Local, Locally Operated, Incarcerated","Local, Locally Operated Incarcerated Population",, -dc/rkq1jgk08zfs7,"Count of Housing Unit: With Mortgage, 0 USD",Housing Units Without Mortgage,, -dc/rkxgse26ln224,"Population: Never Married, Native Born Outside The United States",Never Married Natives Foreign-Born Outside The US,, -dc/rmwl11tzy7vkh,"Population (Measured Based on Jurisdiction): Incarcerated, Two or More Races",Incarcerated Multiracial Population,, -dc/rn90czcrqcv06,Mean Price of Medicare Enrollee,Mean Price of Medicare Enrollee,, -dc/rppnrs4s3lhn9,"Population: Never Married, Born in State of Residence",Unmarried Population Based in the State of Residence,, -dc/ry2tnmstly7wd,"Population: No Income, Native Born Outside The United States",Native Population Born Outside The United States Without Income,, -dc/s0kcbjef3zxrc,"Population: Never Married, Born in Other State in The United States",Foreign Born in United States Population Who are Never Married,, -dc/s9cn1zj5fv5cc,"Revenue of Establishment: Electric Power Distribution (NAICS/221122), With Payroll",Revenue of Electric Power Distribution Establishments With Payroll,, -dc/scnp6d6sv1jqd,"Population: Native, Hispanic or Latino",Native Hispanic Population,, -dc/shgj6xwg96pp3,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Female, Incarcerated",Deaths of Female Population Who are Incarcerated Caused by Intentional Self-Harm,, -dc/skv4cd74gsnpf,"Population: Bachelors Degree or Higher, Female, Some Other Race Alone",Some Other Race Female Population with Bachelor's Degree or Higher,, -dc/slp5hywj7b9c1,"Population: Taxicab Motorcycle Bicycle or Other Means, Sales And Office Occupations",Population Employed by Taxicab Motorcycle Bicycle or Other Means Sales And Office Occupations,, -dc/stp8qcer02x07,"Population: Married And Not Separated, Native Born Outside The United States",Native Born Outside The United States Population Married And Not Separated,, -dc/sxlzxvkfby3yh,Annual Stock of Coal: Electric Power,Annual Stock of Coal for Electric Power,, -dc/t0hh9jhx104k7,Population: 45 - 59 Minute,Population From 45 to 59 Minutes,, -dc/t14epl3f66wn,"Population (Measured Based on Custody): 0 - 17 Years, Male, Incarcerated",Incarcerated Male Population Aged 0 to 17 Years,, -dc/t7403chwvspm,"Population: Bachelors Degree or Higher, Female, Black or African American Alone",African American Female Population With Bachelor's Degrees Or Higher,, -dc/tcqb49dvg7k53,"Prevalence: Female, Physical Inactivity",Prevalence of Female Population Who are Physical Inactivity,, -dc/te4lvw7tlnfv9,"Revenue of Establishment: Solar Electric Power Generation (NAICS/221114), With Payroll",Revenue of Solar Electric Power Generation Industries With Payroll,, -dc/tm2h6clmndl3b,"Population: Never Married, Foreign Born",Foreign-Born Population Who Were Never Married,, -dc/tn5kxlgy0shl4,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Incarcerated",Deaths of Incarcerated Population Caused by AIDS,, -dc/twlffl9b5vgn3,"Population: Divorced, Foreign Born",Foreign Born Divorced People,, -dc/ty7pq88d26963,"Prevalence: Male, Physical Inactivity",Prevalence of Male Who are Physical Inactivity,, -dc/tz59wt1hkl4y,Count of Establishment: Health Care And Social Assistance (NAICS/62),Health Care And Social Assistance Establishments,, -dc/v33p7mwnpe9vb,"Population: Walked, Management, Business, Science, And Arts Occupations","Walked, Management, Business, Science And Arts Occupations Population",, -dc/v78t45118s0bb,"Population: With Income, Born in State of Residence",Population Born in State of Residence with Income,, -dc/v7bhlqc1lfxlg,"Population: Foreign Born, Black or African American Alone",African American Foreign-Born Population,, -dc/v7yl3k9w3h7e8,"Population: Bachelors Degree or Higher, Female, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiian or Other Pacific Islander Female Population With Bachelor's Degree or Higher,, -dc/vfs5dgtzhp4j4,Population: 35 - 39 Minute,,, -dc/vgwx3kjjzz8wf,Population: 15 - 19 Minute,People Commuting in 15 to 19 Minutes,, -dc/vh36nvvkwxz5g,"Population: Worked At Home, Natural Resources, Construction, And Maintenance Occupations","Population That Worked at Home in Natural Resources, Construction and Maintenance Occupation",, -dc/vp8cbt6k79t94,Population: Walked,Population That Walked,, -dc/vqmpm1kxknhlg,"Population: Some Other Race Alone, Not Enrolled in School",Some Other Race Population Not Enrolled in School,, -dc/vt2q292eme79f,Population: Taxicab Motorcycle Bicycle or Other Means,"Population That Uses Taxicab, Motorcycle, Bicycle or Other Means",, -dc/vxhvgzjhwwmj6,"Population: Native, Asian Alone",Asian Native Population,, -dc/w8gp902jnk426,Count of Establishment: Accommodation And Food Services (NAICS/72),Accommodation and Food Services Establishments,, -dc/wbjmvkyqf6dm3,"Population: Asian And Pacific Island Languages, Native",Native Population That Speaks Asian and Pacific Island Languages,, -dc/wc8q05drd74bd,Population: Car Truck or Van Carpooled,Population with Car Truck or Van Carpooled,, -dc/wd5g31pcj0zr3,"Population: Bachelors Degree or Higher, Female, White Alone Not Hispanic or Latino",White Non Hispanic Female Population with Bachelor's Degrees or Higher,, -dc/wfktw3b5c50h1,"Count of Establishment: Privately Owned, Solar Electric Power Generation (NAICS/221114)",Privately Owned Solar Electric Power Generation Establishments,, -dc/whn99h1l0xgth,"Population: Some College or Associates Degree, Female, Asian Alone",Asian Female Population with Some College or Associate's Degrees,, -dc/wj5l0n6wkep45,"Population: Other Indo European Languages, Foreign Born",Foreign-Born Population Speaking Other Indo-European Languages,, -dc/wjtdrd9wq4m2g,"Population: Enrolled in College Undergraduate Years, Black or African American Alone",African American Population Enrolled in College Undergraduate Years,, -dc/wk2vjrzfgyq5d,"Population: Primary School, Native Hawaiian or Other Pacific Islander Alone",Native Hawaiians or Other Pacific Islanders in Primary Schools,, -dc/wp843855b1r4c,"Population (Measured Based on Jurisdiction): Incarcerated, White Alone",Incarcerated White Population,, -dc/wpkpr906ft37g,"Population: Foreign Born, Hispanic or Latino",Hispanic Foreign Borns,, -dc/wqbf0ppbmly7,"Population: Car Truck or Van Drove Alone, Military Specific Occupations",Population with Car Truck or Van Drove Residing in Military Specific Occupations,, -dc/wyxmw2dy6t2xh,"Population: Graduate or Professional School, White Alone Not Hispanic or Latino",White Non-Hispanic Population Who are Graduates or in Profession School,, -dc/x13tvt8jsgrm4,"Prevalence: Male, Obesity",Prevalence of Male Population with Obesity,, -dc/x4jl7c411edy9,"Population: American Indian or Alaska Native Alone, Not Enrolled in School",American Indian or Alaska Native Population Not Enrolled in School,, -dc/x52jxxbwspczh,Count of Establishment: Transportation And Warehousing (NAICS/48-49),Transportation and Warehousing,, -dc/x9e7150515yt7,"Population: Primary School, Asian Alone",Asian Population In Primary School,, -dc/xdfcsgf05b4mc,"Population: Foreign Born, Asian Alone",Asian Foreign-Born Population,, -dc/xefh58ckxwk7b,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Asian Alone",Incarcerated Asian Female Population,, -dc/xewq6n5r3nzch,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Incarcerated",Incarcerated Population Deaths From Judicial Execution,, -dc/xx3v7dmqp95h3,"Revenue of Establishment: Biomass Electric Power Generation (NAICS/221117), With Payroll",Revenue Of Biomass Electric Power Generation Industries With Payroll,, -dc/y9yb58snpfzw5,"Population: Taxicab Motorcycle Bicycle or Other Means, Management, Business, Science, And Arts Occupations","Taxicab Motorcycle Bicycle or Other Means, Management, Business, Science And Arts Occupations Population",, -dc/ye0f3ej72hhj7,"Count of Housing Unit: Without Mortgage, 2,000 - 2,999 USD","Housing Units Without Mortgage Earning 2,000 to 2,999 USD",, -dc/yf4jd2tbl49cc,"Population: Male, Not Worked Full Time",Male Population Who Did Not Work Full Time,, -dc/yfk47wfg2dqh7,Annual Stock of Coal: Other Industrial,Annual Stock of Coal For Other Industrial Use,, -dc/yksgwhwsbtv9c,"Population (Measured Based on Jurisdiction): Incarcerated, Asian Alone",Incarcerated Asians,, -dc/ym3bfmz5e91gg,"Population: Foreign Born, White Alone",Foreign Born White Population,, -dc/yneg81m4e49z6,"Population (Measured Based on Jurisdiction): Male, Incarcerated, White Alone",Incarcerated White Male Population,, -dc/z29z7w7ldnwl4,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Male, Incarcerated",Death of Incarcerated Male Population Caused By Assault,, -dc/z6w4rxbxb4eg8,"Population (Measured Based on Custody): 0 - 17 Years, Incarcerated",Population Aged 0 to 17 Years Who are Incarcerated,, -dc/zcth2y8fqte1f,"Population: Walked, Sales And Office Occupations",Population Walking in Sales And Office Occupations,, -dc/zdb0f7sj2419d,"Population (Measured Based on Jurisdiction): Incarcerated, Hispanic or Latino",Incarcerated Hispanic Population,, -dc/zf0wjwwyddbj4,"Population: Worked At Home, Military Specific Occupations",Number of Military-Specific Occupations Worked at Home,, -dc/zgct0hgv0l8zf,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Male, Incarcerated",Deaths of Incarcerated Male Population Caused by AIDS,, -dc/zkwm5fc58dy17,"Population: Widowed, Born in State of Residence",Widowed Population Born in the State of Residence,, -dc/zmp6qzgzp7ly2,"Population: Graduate or Professional School, Asian Alone",Asian Graduates In Professional Schools,, -dc/zq864lhfql079,"Population: White Alone, Enrolled in School",White Population Enrolled in School,, -dc/ztt7qcdctxdv6,"Population: Native, Some Other Race Alone",Population of Other Native Races,, -dc/zv5g19y8dl9r1,"Population: Enrolled in College Undergraduate Years, Two or More Races",Multiracial Population Enrolled in College Undergraduate Years,, -dc/zvr6djt1p9gj3,"Population: Middle School, Hispanic or Latino",Hispanic Population in Middle School,, -dc/zz6gwv838v9w,"Amount of Economic Activity (Real Value): Gross Domestic Production, Transportation And Warehousing (NAICS/48-49)",Gross Domestic Production Transportation And Warehousing,, -DewPointTemperature_SurfaceLevel,Dew Point Temperature: Surface Level,Dew Point Temperature Surface Level,, -ExchangeRate_Currency_Standardized,"Exchange Rate, Standardized",Standardized Exchange Rates,, -FemaCommunityResilience_NaturalHazardImpact,FEMA Community Resilience to Natural Hazard Impact,Fema Community Resilience on Natural Hazard Impact,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact,FEMA National Risk Index for Natural Hazard Impact,Fema Natural Hazard Risk Index on Natural Hazard Impact,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_AvalancheEvent,FEMA National Risk Index for Natural Hazard Impact: Avalanche,Fema Natural Hazard Risk Index on Natural Hazard Impact With Avalanche Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_CoastalFloodEvent,FEMA National Risk Index for Natural Hazard Impact: Coastal Flood,Fema Natural Hazard Risk Index on Natural Hazard Impact With Coastal Flood Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_ColdWaveEvent,FEMA National Risk Index for Natural Hazard Impact: Cold Wave,Fema Natural Hazard Risk Index on Natural Hazard Impact With Cold Wave Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_DroughtEvent,FEMA National Risk Index for Natural Hazard Impact: Drought,Fema Natural Hazard Risk Index on Natural Hazard Impact With Drought Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_EarthquakeEvent,FEMA National Risk Index for Natural Hazard Impact: Earthquake,Fema Natural Hazard Risk Index on Natural Hazard Impact With Earthquake Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HailEvent,FEMA National Risk Index for Natural Hazard Impact: Hail,Fema Natural Hazard Risk Index on Natural Hazard Impact With Hali Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HeatWaveEvent,FEMA National Risk Index for Natural Hazard Impact: Heat Wave,Fema Natural Hazard Risk Index on Natural Hazard Impact With Heat Wave Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HurricaneEvent,FEMA National Risk Index for Natural Hazard Impact: Hurricane,Fema Natural Hazard Risk Index on Natural Hazard Impact With Hurricane Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_IceStormEvent,FEMA National Risk Index for Natural Hazard Impact: Ice Storm,Fema Natural Hazard Risk Index on Natural Hazard Impact With Ice Storm Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LandslideEvent,FEMA National Risk Index for Natural Hazard Impact: Landslide,Fema Natural Hazard Risk Index on Natural Hazard Impact With Landslide Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LightningEvent,FEMA National Risk Index for Natural Hazard Impact: Lightning,Fema Natural Hazard Risk Index on Natural Hazard Impact With Lighting Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_RiverineFloodingEvent,FEMA National Risk Index for Natural Hazard Impact: Riverine Flooding,Fema Natural Hazard Risk Index on Natural Hazard Impact With Riverine Flooding Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_StrongWindEvent,FEMA National Risk Index for Natural Hazard Impact: Strong Wind,Fema Natural Hazard Risk Index on Natural Hazard Impact With Strong Wind Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TornadoEvent,FEMA National Risk Index for Natural Hazard Impact: Tornado,Fema Natural Hazard Risk Index on Natural Hazard Impact With Tornado Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TsunamiEvent,FEMA National Risk Index for Natural Hazard Impact: Tsunami,Fema Natural Hazard Risk Index on Natural Hazard Impact With Tsunami Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_VolcanicActivityEvent,FEMA National Risk Index for Natural Hazard Impact: Volcanic Activity,Fema Natural Hazard Risk Index on Natural Hazard Impact With Volcanic Activity Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WildfireEvent,FEMA National Risk Index for Natural Hazard Impact: Wildfire,Fema Natural Hazard Risk Index on Natural Hazard Impact With Wildfire Events,, -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WinterWeatherEvent,FEMA National Risk Index for Natural Hazard Impact: Winter Weather,Fema Natural Hazard Risk Index on Natural Hazard Impact With Winter Weather Events,, -FemaSocialVulnerability_NaturalHazardImpact,FEMA Social Vulnerability to Natural Hazard Impact,Fema Social Vulnerability on Natural Hazard Impact,, -HeavyPrecipitationIndex,Heavy Precipitation Index,Heavy Precipitation Index,, -Humidity_RelativeHumidity,Humidity: Relative Humidity,Relative Humidity,, -Humidity_SpecificHumidity,Humidity: Specific Humidity,Specific Humidity,, -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedCase,"Incremental Count of Medical Condition Incident: COVID-19, Confirmed Case",Confirmed Increment in Covid 19 Cases,, -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,"Incremental Count of Medical Condition Incident: COVID-19, Confirmed or Probable Case",Confirmed or Probable Increment in Covid 19 Cases,, -IncrementalCount_MedicalConditionIncident_COVID_19_PatientDeceased,"Incremental Count of Medical Condition Incident: COVID-19, Patient Deceased",Increment in Deceased Patients From Covid 19 Cases,, -IncrementalCount_MedicalTest_ConditionCOVID_19,Incremental Count of Medical Test: COVID-19,Increment in Covid 19 Cases,, -IncrementalCount_Person,Population Change,Population Increment,, -indianCensus/Count_Person_Religion_Buddhist,Population: Buddhism,Buddhist Population,, -indianCensus/Count_Person_Religion_Buddhist_Female,"Population: Female, Buddhism",Buddhist Female Population,, -indianCensus/Count_Person_Religion_Buddhist_Illiterate,"Population: Illiterate, Buddhism",Illiterates Buddhists,, -indianCensus/Count_Person_Religion_Buddhist_Literate,"Population: Literate, Buddhism",Literate Buddhist Population,, -indianCensus/Count_Person_Religion_Buddhist_MainWorker,"Population: Buddhism, Main Worker",Main Worker Buddhists;Buddhist Main Workers,, -indianCensus/Count_Person_Religion_Buddhist_Male,"Population: Male, Buddhism",Male Buddhists,, -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker,"Population: Buddhism, Marginal Worker",Buddhism Marginal Workers,, -indianCensus/Count_Person_Religion_Buddhist_NonWorker,"Population: Buddhism, Non Worker",Buddhist Non-Workers,, -indianCensus/Count_Person_Religion_Buddhist_Rural,"Population: Rural, Buddhism",Population Buddhist In Rural Areas,, -indianCensus/Count_Person_Religion_Buddhist_Urban,"Population: Urban, Buddhism",Urban Buddhists,, -indianCensus/Count_Person_Religion_Buddhist_Workers,"Population: Buddhism, Worker",Buddhist Total Workers,, -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6,"Population: 6 Years or Less, Buddhism",Buddhist Population Below 6 Years Old,, -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Female,"Population: 6 Years or Less, Female, Buddhism",Buddhist Female Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Male,"Population: 6 Years or Less, Male, Buddhism",Buddhist Male Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Buddhism",Buddhist Population Aged 6 Years or Less in Rural Areas,, -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Buddhism",Buddhists Aged 6 Years or Less In Urban Areas,, -indianCensus/Count_Person_Religion_Christian,Population: Christianity,Christian Population,, -indianCensus/Count_Person_Religion_Christian_Female,"Population: Female, Christianity",Christian Female Population,, -indianCensus/Count_Person_Religion_Christian_Illiterate,"Population: Illiterate, Christianity",Illiterate Christian Population,, -indianCensus/Count_Person_Religion_Christian_Literate,"Population: Literate, Christianity",Literate Christians,, -indianCensus/Count_Person_Religion_Christian_MainWorker,"Population: Christianity, Main Worker","Population: Christianity, Main Worker",, -indianCensus/Count_Person_Religion_Christian_Male,"Population: Male, Christianity",Christian Male Population,, -indianCensus/Count_Person_Religion_Christian_MarginalWorker,"Population: Christianity, Marginal Worker",Christian Marginal Workers Population,, -indianCensus/Count_Person_Religion_Christian_NonWorker,"Population: Christianity, Non Worker",Christian Non-Workers,, -indianCensus/Count_Person_Religion_Christian_Rural,"Population: Rural, Christianity",Christians in Rural Areas,, -indianCensus/Count_Person_Religion_Christian_Urban,"Population: Urban, Christianity",Christian Population in Urban Areas,, -indianCensus/Count_Person_Religion_Christian_Workers,"Population: Christianity, Worker",Christian Workers,, -indianCensus/Count_Person_Religion_Christian_YearsUpto6,"Population: 6 Years or Less, Christianity",Christian Population Below 6 Years Old,, -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Female,"Population: 6 Years or Less, Female, Christianity",Christian Female Population Aged Below 6 Years;Christian Female Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Male,"Population: 6 Years or Less, Male, Christianity",Christian Male Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Christianity","Population: 6 Years or Less, Rural, Christianity",, -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Christianity",Urban Christians Aged 6 Years Or Less,, -indianCensus/Count_Person_Religion_Hindu,Population: Hinduism,Hinduism Population,, -indianCensus/Count_Person_Religion_Hindu_Female,"Population: Female, Hinduism",Population of Female Hindus,, -indianCensus/Count_Person_Religion_Hindu_Illiterate,"Population: Illiterate, Hinduism",Population of Illiterate Hinduism,, -indianCensus/Count_Person_Religion_Hindu_Literate,"Population: Literate, Hinduism",Literate Hindus,, -indianCensus/Count_Person_Religion_Hindu_MainWorker,"Population: Hinduism, Main Worker",Hindu Main Workers,, -indianCensus/Count_Person_Religion_Hindu_Male,"Population: Male, Hinduism",Hinduism Male Population,, -indianCensus/Count_Person_Religion_Hindu_MarginalWorker,"Population: Hinduism, Marginal Worker",Hindu Marginal Workers,, -indianCensus/Count_Person_Religion_Hindu_NonWorker,"Population: Hinduism, Non Worker",Non-Working Hindus,, -indianCensus/Count_Person_Religion_Hindu_Rural,"Population: Rural, Hinduism",Hindu Population In Rural Areas,, -indianCensus/Count_Person_Religion_Hindu_Urban,"Population: Urban, Hinduism",Total Hindu Population in Urban Areas,, -indianCensus/Count_Person_Religion_Hindu_Workers,"Population: Hinduism, Worker",Population of Hindu Workers,, -indianCensus/Count_Person_Religion_Hindu_YearsUpto6,"Population: 6 Years or Less, Hinduism",Hindu Population Below 6 Years Old,, -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Female,"Population: 6 Years or Less, Female, Hinduism",Hindu Female Population Aged 6 Years Less,, -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Male,"Population: 6 Years or Less, Male, Hinduism",Hindu Male Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Hinduism",Rural Hindus Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Hinduism",Hindus Aged 6 Years or More in Urban Areas,, -indianCensus/Count_Person_Religion_Jain,Population: Jainism,Jainism Population,, -indianCensus/Count_Person_Religion_Jain_Female,"Population: Female, Jainism",Female Jainists,, -indianCensus/Count_Person_Religion_Jain_Illiterate,"Population: Illiterate, Jainism",Illiterate Jain Population,, -indianCensus/Count_Person_Religion_Jain_Literate,"Population: Literate, Jainism","Population: Literate, Jainism",, -indianCensus/Count_Person_Religion_Jain_MainWorker,"Population: Jainism, Main Worker",Jain Main Workers Population,, -indianCensus/Count_Person_Religion_Jain_Male,"Population: Male, Jainism",Population of Male Jains,, -indianCensus/Count_Person_Religion_Jain_MarginalWorker,"Population: Jainism, Marginal Worker",Marginal Jain Workers,, -indianCensus/Count_Person_Religion_Jain_NonWorker,"Population: Jainism, Non Worker",Jainist Non-Workers,, -indianCensus/Count_Person_Religion_Jain_Rural,"Population: Rural, Jainism",Jain Population in Rural Areas,, -indianCensus/Count_Person_Religion_Jain_Urban,"Population: Urban, Jainism",Total Jain Population in Urban,, -indianCensus/Count_Person_Religion_Jain_Workers,"Population: Jainism, Worker",Jain Workers,, -indianCensus/Count_Person_Religion_Jain_YearsUpto6,"Population: 6 Years or Less, Jainism",Jainist Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Female,"Population: 6 Years or Less, Female, Jainism",Jain Female Population Aged Below 6 Years,, -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Male,"Population: 6 Years or Less, Male, Jainism",Male Jainists Aged Upto 6 Years In Urban Areas,, -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Jainism",Jainists Aged 6 Years or Less In Rural Areas,, -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Jainism",Jainist Population Aged 6 Years or Less In Urban Areas,, -indianCensus/Count_Person_Religion_Muslim,Population: Islam,Islam Population,, -indianCensus/Count_Person_Religion_Muslim_Female,"Population: Female, Islam",Muslim Female Population,, -indianCensus/Count_Person_Religion_Muslim_Illiterate,"Population: Illiterate, Islam",Illiterate Muslim Population,, -indianCensus/Count_Person_Religion_Muslim_Literate,"Population: Literate, Islam",Literate Muslims,, -indianCensus/Count_Person_Religion_Muslim_MainWorker,"Population: Islam, Main Worker",Muslim Main Workers,, -indianCensus/Count_Person_Religion_Muslim_Male,"Population: Male, Islam",Islamic Male Population,, -indianCensus/Count_Person_Religion_Muslim_MarginalWorker,"Population: Islam, Marginal Worker",Marginal Islamic Workers,, -indianCensus/Count_Person_Religion_Muslim_NonWorker,"Population: Islam, Non Worker",Muslim Non-Worker Population,, -indianCensus/Count_Person_Religion_Muslim_Rural,"Population: Rural, Islam",Muslim Population in Rural Areas,, -indianCensus/Count_Person_Religion_Muslim_Urban,"Population: Urban, Islam",Urban Islamic Population,, -indianCensus/Count_Person_Religion_Muslim_Workers,"Population: Islam, Worker",Muslim Workers,, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6,"Population: 6 Years or Less, Islam",Islam Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Female,"Population: 6 Years or Less, Female, Islam",Islam Female Population Below 6 Years,, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Male,"Population: 6 Years or Less, Male, Islam",Muslim Male Population Below 6 Years Old in Urban Areas,, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Islam",Islamic Population Aged Less Than 6 Years in Rural Areas,, -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Islam",Muslim Population Aged 6 Years or Less in Urban Areas,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions,Population: India Census_Other Religion And Persuasions,Other Religion and Persuasions Population,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Female,"Population: Female, India Census_Other Religion And Persuasions",Total Female Population of Other Religions and Persuasions,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate,"Population: Illiterate, India Census_Other Religion And Persuasions",Other Religion and Persuasions Illiterate Population,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate,"Population: Literate, India Census_Other Religion And Persuasions",Other Religion and Persuasions Literate Population,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker,"Population: India Census_Other Religion And Persuasions, Main Worker",Main Workers of Other Religions And Persuasions,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Male,"Population: Male, India Census_Other Religion And Persuasions",Male Population of Other Religion And Persuasions,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker,"Population: India Census_Other Religion And Persuasions, Marginal Worker",Marginal Workers of Other Religions And Persuasions,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker,"Population: India Census_Other Religion And Persuasions, Non Worker",Other Religion and Persuasions Non-Workers,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Rural,"Population: Rural, India Census_Other Religion And Persuasions",Total Population of Other Religions And Persuasions in Rural Areas,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Urban,"Population: Urban, India Census_Other Religion And Persuasions",People Of Other Religion And Persuasions in Urban Areas,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers,"Population: India Census_Other Religion And Persuasions, Worker","Population: India Census_Other Religion And Persuasions, Worker",, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6,"Population: 6 Years or Less, India Census_Other Religion And Persuasions",Persuaded Indians To Other Religions Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Female,"Population: 6 Years or Less, Female, India Census_Other Religion And Persuasions",Other Religion Female Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Male,"Population: 6 Years or Less, Male, India Census_Other Religion And Persuasions",Male Population of Other Religion And Persuasions Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, India Census_Other Religion And Persuasions",Population Aged 6 Years Or Less of Other Religions and Persuasions in Rural Areas,, -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, India Census_Other Religion And Persuasions",Other Religions And Persuasions Population Aged 6 Years or Less in Urban Areas,, -indianCensus/Count_Person_Religion_ReligionNotStated,Population: Religion Not Stated,Population with Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_Female,"Population: Female, Religion Not Stated",Female Population of Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate,"Population: Illiterate, Religion Not Stated",Illiterates Of Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_Literate,"Population: Literate, Religion Not Stated",Literate Population Of Unstated Religion;Literate Religion Not Stated Population,, -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker,"Population: Religion Not Stated, Main Worker",Main Workers of Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_Male,"Population: Male, Religion Not Stated",Male Population of Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker,"Population: Religion Not Stated, Marginal Worker",Marginal Workers of Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker,"Population: Religion Not Stated, Non Worker",Population of Non-Workers With Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_Rural,"Population: Rural, Religion Not Stated",Total Population in unstated Religion in Rural,, -indianCensus/Count_Person_Religion_ReligionNotStated_Urban,"Population: Urban, Religion Not Stated",Population Of Unstated Religion In Urban Areas,, -indianCensus/Count_Person_Religion_ReligionNotStated_Workers,"Population: Religion Not Stated, Worker",Workers With Unstated Religion,, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6,"Population: 6 Years or Less, Religion Not Stated",People Of Unstated Religion Below 6 Years,, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Female,"Population: 6 Years or Less, Female, Religion Not Stated",Non-Religious Female Population Below 6 Years,, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Male,"Population: 6 Years or Less, Male, Religion Not Stated",Unstated Religious Males Below 6 Years Old,, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Religion Not Stated",Unstated Religion with Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Religion Not Stated",Population Aged 0 to 6 Years of Unstated Religion in Urban Areas,, -indianCensus/Count_Person_Religion_Sikh,Population: Sikhism,Population of Sikhs,, -indianCensus/Count_Person_Religion_Sikh_Female,"Population: Female, Sikhism",Population of Female Sikhs,, -indianCensus/Count_Person_Religion_Sikh_Illiterate,"Population: Illiterate, Sikhism",Sikh Illiterates,, -indianCensus/Count_Person_Religion_Sikh_Literate,"Population: Literate, Sikhism",Literate Sikhism Population,, -indianCensus/Count_Person_Religion_Sikh_MainWorker,"Population: Sikhism, Main Worker",Main Workers Sikh Population,, -indianCensus/Count_Person_Religion_Sikh_Male,"Population: Male, Sikhism",Sikh Males,, -indianCensus/Count_Person_Religion_Sikh_MarginalWorker,"Population: Sikhism, Marginal Worker",Sikh Marginal Workers,, -indianCensus/Count_Person_Religion_Sikh_NonWorker,"Population: Sikhism, Non Worker",Sikh Non-Workers,, -indianCensus/Count_Person_Religion_Sikh_Rural,"Population: Rural, Sikhism",Sikhism Population in Rural Areas,, -indianCensus/Count_Person_Religion_Sikh_Urban,"Population: Urban, Sikhism",Sikh Population Urban Areas,, -indianCensus/Count_Person_Religion_Sikh_Workers,"Population: Sikhism, Worker",Total Sikh Workers,, -indianCensus/Count_Person_Religion_Sikh_YearsUpto6,"Population: 6 Years or Less, Sikhism",Sikhs Aged Below 6 Years Old,, -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Female,"Population: 6 Years or Less, Female, Sikhism",Female Sikhs Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Male,"Population: 6 Years or Less, Male, Sikhism",Male Sikhs Aged 6 Years Old or Less,, -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Sikhism",Sikh Population Aged 6 Years or Less,, -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Sikhism",Sikh Population Aged 6 Years or Less in Urban Areas,, -InflationAdjustedGDP,Amount of Economic Activity (Inflation Adjusted): Gross Domestic Production,Inflation Adjusted in Gross Domestic Production,, -InsuredUnemploymentRate_Person_WithCoveredEmployment_MovingAverage1WeekWindow,Insured Unemployment Rate,Insured Unemployment Rate Moving Average 1 Week Window,, -Intensity_HeatWaveEvent,Heat Wave Intensity of Heat Wave Event,Intensity Heat Wave Events,, -InterannualRange_Monthly_MaxTemperature,Max Temperature (Interannual Range of Monthly Aggregate),Monthly Maximum Temperature With Inter-Annual Range,, -InterannualRange_Monthly_MinTemperature,Min Temperature (Interannual Range of Monthly Aggregate),Monthly Minimum Temperature With Inter-Annual Range,, -InterannualRange_Monthly_Precipitation,Precipitation (Interannual Range of Monthly Aggregate),Monthly Precipitation With Inter-Annual Range,, -LandCoverFraction_BareSparseVegetation,Percent of Bare Sparse Vegetation Covered Area,Land Cover Fraction of Bare Sparse Vegetation,, -LandCoverFraction_BuiltUp,Percent of Built-up Area,Land Cover Fraction of Built Up,, -LandCoverFraction_Cropland,Percent of Crop Covered Area,Land Cover Fraction of Crop Land,, -LandCoverFraction_Forest,Percent of Forest Covered Area,Land Cover Fraction of Forest,, -LandCoverFraction_HerbaceousVegetation,Percent of Grass Covered Area,Land Cover Fraction of Herbaceous Vegetation,, -LandCoverFraction_MossAndLichen,Percent of Moss and Lichen Covered Area,,, -LandCoverFraction_PermanentWater,Percent of Permanent Water Covered Area,Land Cover Fraction of Permanent Water,, -LandCoverFraction_SeasonalWater,Percent of Seasonal Water Covered Area,Land Cover Fraction of Seasonal Water,, -LandCoverFraction_Shrubland,Percent of Shrub Covered Area,Land Cover Fraction of Shrubland,, -LandCoverFraction_SnowIce,Percent of Snow Covered Area,Land Cover Fraction of Snow Ice,, -Max_BarometricPressure,Max Barometric Pressure,Maximum Barometric Pressure,, -Max_Concentration_AirPollutant_CO,Max Concentration: Carbon Monoxide,,, -Max_Concentration_AirPollutant_NO2,Max Concentration: Nitrogen Dioxide,,, -Max_Concentration_AirPollutant_Ozone,Max Ozone Concentration,Maximum Concentration Air Pollutant Ozone,, -Max_Concentration_AirPollutant_PM10,Max Concentration: PM 10,,, -Max_Concentration_AirPollutant_PM2.5,Max PM2.5 Concentration,Maximum Concentration Air Pollutant PM 2.5,, -Max_Concentration_AirPollutant_SmokePM25,Max Concentration of Smoke PM2.5,Maximum Concentration Air Pollutant PM 2.5,, -Max_Concentration_AirPollutant_SO2,Max Concentration: Sulfur Dioxide,,, -Max_Humidity_RelativeHumidity,Max Humidity: Relative Humidity,Maximum Relative Humidity,, -Max_PopulationWeighted_Concentration_AirPollutant_SmokePM25,Population-weighted Max Concentration of Smoke PM2.5,Maximum Population Weighted Concentration Air Pollutant Smoke PM 2.5,, -Max_PrecipitableWater_Atmosphere,Max Precipitable Water,Maximum Precipitable Water in The Atmosphere,, -Max_Radiation_Downwelling_ShortwaveRadiation,"Max Radiation: Downwelling, Shortwave Radiation",Maximum Downwelling Shortwave Radiation,, -Max_Rainfall,Max Rainfall,Maximum Rainfall,, -Max_Snowfall,Max Snowfall,Maximum Snowfall,, -Max_Temperature,Maximum Temperature,Maximum Temperature,, -Max_WindSpeed_UComponent_Height10Meters,"Max Wind Speed: Meter 10, UComponent",10 Meters UComponent Max Wind Speed,, -Max_WindSpeed_VComponent_Height10Meters,"Max Wind Speed: Meter 10, VComponent",Maximum Wind Speed of Wind Component For 10 Meters High,, -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayADecade CMIP6 SSP245,,, -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayADecade CMIP6 SSP585,,, -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayAYear CMIP6 SSP245,,, -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayAYear CMIP6 SSP585,,, -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayADecade CMIP6 SSP245,,, -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayADecade CMIP6 SSP585,,, -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayAYear CMIP6 SSP245,,, -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayAYear CMIP6 SSP585,,, -Mean_BarometricPressure,Mean Barometric Pressure,Mean Barometric Pressure,, -Mean_BirthWeight_BirthEvent_LiveBirth,Average live birth weight in grams,Mean Birth Weight in Birth Events For Live Births,, -Mean_BirthWeight_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average live birth weight in grams where mothers Education is 9 Th To12 Th Grade No Diploma,Average Live Birth Weight in Grams of Mother in Grades 9th to 12th Without Diploma,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average live birth weight in grams where mothers Race is American Indian Or Alaska Native Alone,Average Live Birth Weight in Grams by American Indian Or Alaska Native Mothers;American Indian Of Alaska Native Mothers Population Of Live Birth Height,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianIndian,Average live birth weight in grams where mothers Race is Asian Indian,Average Live Birth Weight in Grams For Asian Indian Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average live birth weight in grams where mothers Race is Asian Or Pacific Islander,Average Live Birth Weight in Grams For Asian Or Pacific Islander Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAssociatesDegree,Average live birth weight in grams where mothers Education is Associates Degree,Average Live Birth Weight in Grams Among Mothers With Associates Degrees,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBachelorsDegree,Average live birth weight in grams where mothers Education is Bachelors Degree,Average Live Birth Weight Among Mothers with a Bachelor's Degree,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average live birth weight in grams where mothers Race is Black Or African American Alone,Average Live Birth Weight in Grams of African American Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherChinese,Average live birth weight in grams where mothers Race is Chinese,Average Live Birth Weight In Grams Among Chinese Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average live birth weight in grams where mothers Education is Doctorate Degree& Professional School Degree,Average live Birth Weight in Grams For Mothers With Doctorate Degrees And Professional School Degrees,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average live birth weight in grams where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average Live Birth Weight In Grams Among Mothers Whose Education is CDC,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average live birth weight in grams where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average Live Birth Weight In Grams Where Mothers Ethnicity Is CDC,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherFilipino,Average live birth weight in grams where mothers Race is Filipino,Average Live Birth Weight in Grams For Filipino Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherForeignBorn,Average live birth weight in grams where mothers Nativity is USC_ Foreign Born,Average Live Birth Weight in Grams of USC Foreign-Born Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average live birth weight in grams where mothers Race is Guamanian Or Chamorro,Average Live Birth Weight Among Guamanian Or Chamorro Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average live birth weight in grams where mothers Education is High School Graduate Ged Or Alternative,Average Live Birth Weight In Grams By Mothers With HighSchool Graduates Ged or Alternative,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average live birth weight in grams where mothers Ethnicity is Hispanic Or Latino,Average Live Birth Weight in Grams of Hispanic Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherJapanese,Average live birth weight in grams where mothers Race is Japanese,Average Live Birth Weight in Grams For Japanese Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherKorean,Average live birth weight in grams where mothers Race is Korean,Average Live Birth Weight in Grams of Korean Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average live birth weight in grams where mothers Education is Less Than9 Th Grade,Average Live Birth Weight in Grams Where Mother's Education is Less Than 9th Grade,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherMastersDegree,Average live birth weight in grams where mothers Education is Masters Degree,Live Birth Weight in Grams of Mothers with a Masters Degree,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNative,Average live birth weight in grams where mothers Nativity is USC_ Native,Average Live Birth Weight in Grams For USC Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativeHawaiian,Average live birth weight in grams where mothers Race is Native Hawaiian,Average Live Birth Weight in Grams By Native Hawaiian Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average live birth weight in grams where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average Live Birth Weight in Grams For USC Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average live birth weight in grams where mothers Ethnicity is Not Hispanic Or Latino,Average Live Birth Weight in Grams of Non-Hispanic Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNowMarried,Average live birth weight in grams where mothers Marital Status is Now Married,Live Birth Weight in Grams For Married Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherAsian,Average live birth weight in grams where mothers Race is Other Asian,Average Live Birth Weight in Grams For Asian Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average live birth weight in grams where mothers Race is Other Pacific Islander,Average Live Birth Weight in Grams Among Pacific Islander Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSamoan,Average live birth weight in grams where mothers Race is Samoan,Average Live Birth Weights By Samoan Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average live birth weight in grams where mothers Education is Some College No Degree,Mean Birth Weight in Birth Events For Live Births For Mothers With College,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average live birth weight in grams where mothers Race is Two Or More Races,Average Live Births of Multiracial Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherUnmarried,Average live birth weight in grams where mothers Marital Status is Unmarried,Average live Birth Weight in Grams For Unmarried Mothers,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherVietnamese,Average live birth weight in grams where mothers Race is Vietnamese,Vietnamese Racial Average Live Birth Which Is Grams,, -Mean_BirthWeight_BirthEvent_LiveBirth_MotherWhiteAlone,Average live birth weight in grams where mothers Race is White Alone,Average Live Birth Weight in Grams for White Mothers,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Cash Assistance of Household: Foreign Born, Africa",Mean Cash Assistance of Households of Foreign Born Population in Africa,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Cash Assistance of Household: Foreign Born, Asia",Mean Cash Assistance of Foreign-Born Households in Asia,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Cash Assistance of Household: Foreign Born, Caribbean",Mean Cash Assistance of Foreign-Born Householders in the Caribbean,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Cash Assistance of Household: Foreign Born, Central America Except Mexico","Mean Cash Assistance of Households Owned By Foreign-Born Population in Central America, Except Mexico",, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Cash Assistance of Household: Foreign Born, Eastern Asia",Mean Cash Assistance Household Of Foreign Born Population In East Africa;Mean Cash Assistance of Householders Foreign Born In Eastern Asia,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Cash Assistance of Household: Foreign Born, Europe",Average Cash Assistance of Householders Foreign Born In Europe,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Cash Assistance of Household: Foreign Born, Latin America",Mean Cash Assistance of Foreign-Born Population in Latin America,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Cash Assistance of Household: Foreign Born, Country/MEX",Mean Cash Assistance of Foreign-Born Households in Mexico,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Cash Assistance of Household: Foreign Born, Northamerica",Foreign-Born Mean Cash Assistance of Households in North America,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Cash Assistance of Household: Foreign Born, Northern Western Europe",Mean Cash Assistance of Householders Foreign Born In Northern-Western Europe,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Cash Assistance of Household: Foreign Born, Southamerica",Mean Cash Assistance For Foreign-Born Owned Households in South America,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Cash Assistance of Household: Foreign Born, South Central Asia",Mean Cash Assistance of Foreign-Born Households in South Central Asia,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Cash Assistance of Household: Foreign Born, South Eastern Asia",Mean Cash Assistance For Foreign Born Households Born in South Eastern Asia,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Cash Assistance of Household: Foreign Born, Southern Eastern Europe",Foreign-Born in Southern Eastern Europe Mean Cash Assistance,, -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Cash Assistance of Household: Foreign Born, Western Asia",Households of Foreign Born Population in Western Asia With Mean Cash Assistance,, -Mean_Concentration_AirPollutant_CO,Mean Concentration: Carbon Monoxide,,, -Mean_Concentration_AirPollutant_NO2,Mean Concentration: Nitrogen Dioxide,,, -Mean_Concentration_AirPollutant_PM10,Mean Concentration: PM 10,,, -Mean_Concentration_AirPollutant_SmokePM25,Mean Concentration of Smoke PM2.5,Mean Concentration Air Pollutant Smoke PM 2.5,, -Mean_Concentration_AirPollutant_SO2,Mean Concentration: Sulfur Dioxide,,, -Mean_CoverageArea_SolarInstallation_Commercial,Coverage Area of Solar Installation: Commercial,Coverage Area of Solar Installation,, -Mean_CoverageArea_SolarInstallation_Residential,Coverage Area of Solar Installation: Residential,Coverage Area of Solar Installation Residential,, -Mean_CoverageArea_SolarInstallation_UtilityScale,Coverage Area of Solar Installation: Utility Scale,Utility Scale Area of Solar Installation,, -Mean_CoverageArea_SolarThermalInstallation_NonUtility,Coverage Area of Solar Thermal Installation: Non Utility,Coverage Area of Solar Thermal Installation by Non-Utility,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Earnings of Household: Foreign Born, Africa",Mean Earnings For Household of Foreign Born Population Born in Africa,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Earnings of Household: Foreign Born, Asia",Mean Earnings of Households of Foreign-Born Population in Asia,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Earnings of Household: Foreign Born, Caribbean",Foreign-Born Population in The Caribbean With Mean Earnings of Households,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Earnings of Household: Foreign Born, Central America Except Mexico","Mean Earnings of Foreign-Born Households in Central America, Except Mexico",, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Earnings of Household: Foreign Born, Eastern Asia",Mean Earnings of Foreign-Born Households in Eastern Asia,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Earnings of Household: Foreign Born, Europe",Mean Earnings of Households Of People Foreign Born In Europe,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Earnings of Household: Foreign Born, Latin America",Mean Earnings of Population Foreign Born In Latin America,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Earnings of Household: Foreign Born, Country/MEX",Mean Earnings of Foreign-Born Households,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Earnings of Household: Foreign Born, Northamerica",Mean Earnings of Foreign-Born in North America Households,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Earnings of Household: Foreign Born, Northern Western Europe",Mean Earnings of Households of Foreign-Born Population in Northern Western Europe,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Earnings of Household: Foreign Born, Oceania",Average Earnings Of Households Foreign-Born In Oceania,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Earnings of Household: Foreign Born, Southamerica",Mean Earnings of Foreign-Born Population in South America,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Earnings of Household: Foreign Born, South Central Asia",Mean Earnings of Households Of People Foreign Born In South-Central Asia,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Earnings of Household: Foreign Born, South Eastern Asia",Mean Earnings of Households Of People Foreign Born In South-Eastern Asia,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Earnings of Household: Foreign Born, Southern Eastern Europe",Mean Earnings of Foreign-Born Households in Southern Eastern Europe,, -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Earnings of Household: Foreign Born, Western Asia",Mean Earnings of Foreign-Born Population in Western Asia,, -Mean_Earnings_Person_WithEarnings_FullTimeYearRoundWorker,"Mean Earnings: 16 Years or More, With Earnings, Full Time Year Round Worker",Mean Earnings of Full Time Year Round Workers Aged 16 Years or More,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Mean Family Size of Household: Family Household, Foreign Born, Africa",Mean Family Size For Foreign Born Family Households Born in Africa,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Mean Family Size of Household: Family Household, Foreign Born, Asia",Mean Family Size For Foreign Born Family Households Born in Asia,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Mean Family Size of Household: Family Household, Foreign Born, Caribbean",Mean Family Size For Foreign Born Family Households Born in Caribbean,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Family Size of Household: Family Household, Foreign Born, Central America Except Mexico",Mean Family Size For Foreign Born Family Households Born in Central America Except Mexico,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Family Size of Household: Family Household, Foreign Born, Eastern Asia",Mean Family Size For Foreign Born Family Households Born in Eastern Asia,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Mean Family Size of Household: Family Household, Foreign Born, Europe",Mean Family Size For Foreign Born Family Households Born in Europe,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Family Size of Household: Family Household, Foreign Born, Latin America",Mean Family Size For Foreign Born Family Households Born in Latin America,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Mean Family Size of Household: Family Household, Foreign Born, Country/MEX",Mean Family Size For Foreign Born Family Households Born in Mexico,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Family Size of Household: Family Household, Foreign Born, Northamerica",Mean Family Size For Foreign Born Family Households Born in North America,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Family Size of Household: Family Household, Foreign Born, Northern Western Europe",Mean Family Size For Foreign Born Family Households Born in North Western Europe,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Mean Family Size of Household: Family Household, Foreign Born, Oceania",Mean Family Size For Foreign Born Family Households Born in Europe,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Family Size of Household: Family Household, Foreign Born, Southamerica",Mean Family Size For Foreign Born Family Households Born in South America,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Family Size of Household: Family Household, Foreign Born, South Central Asia",Mean Family Size For Foreign Born Family Households Born in South Central Asia,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Family Size of Household: Family Household, Foreign Born, South Eastern Asia",Mean Family Size For Foreign Born Family Households Born in South Eastern Asia,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Family Size of Household: Family Household, Foreign Born, Southern Eastern Europe",Mean Family Size For Foreign Born Family Households Born in Southern Eastern Europe,, -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Family Size of Household: Family Household, Foreign Born, Western Asia",Mean Family Size For Foreign Born Family Households Born in Western Asia,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Household Size of Household: Foreign Born, Africa",Mean Household Size of Households Owned By Foreign-Born Population in Africa,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Household Size of Household: Foreign Born, Asia",Mean Household Size of Households of Foreign-Born Population in Asia,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Household Size of Household: Foreign Born, Caribbean",Caribbean Foreign Born Population Mean Household Size,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Household Size of Household: Foreign Born, Central America Except Mexico",Mean Household Size Of Foreign Born Population In Central America,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Household Size of Household: Foreign Born, Eastern Asia",Households of Foreign-Born Population in Eastern Asia,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Household Size of Household: Foreign Born, Europe",Mean Households of Foreign-Born Population in Europe,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Household Size of Household: Foreign Born, Latin America",Mean Household Size Of Householders Foreign Born In Latin America,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Household Size of Household: Foreign Born, Country/MEX",Mean Household Size of Households Owned By Foreign-Born Population in Mexico,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Household Size of Household: Foreign Born, Northamerica",Mean Household Size For Foreign Born Population Born in North America,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Household Size of Household: Foreign Born, Northern Western Europe",Mean Size of Households Foreign-Born in Northern Western Europe,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Household Size of Household: Foreign Born, Oceania",Mean Household Size of Foreign-Born Households in Oceania,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Household Size of Household: Foreign Born, Southamerica",Mean Household Size For Foreign Born Population Born in South America,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Household Size of Household: Foreign Born, South Central Asia",Mean Household Size of Foreign-Born Population In South Central Asia,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Household Size of Household: Foreign Born, South Eastern Asia",Mean Household Size of Foreign-Born Households In South-Eastern Asia,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Household Size of Household: Foreign Born, Southern Eastern Europe",Foreign-Born Population in Southern Eastern Europe,, -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Household Size of Household: Foreign Born, Western Asia",Mean Household Size of Foreign Born Population in Western Asia,, -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit,Mean Household Size of Housing Unit: Occupied Housing Unit,Average Of Occupied Housing Units,, -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Mean Household Size of Housing Unit: Owner Occupied,Mean Household Size of Owner-Occupied Housing Units,, -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_RenterOccupied,Mean Household Size of Housing Unit: Renter Occupied,Mean Household Size of Tenant-Occupied Housing Units,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Household Worker Size of Household: Foreign Born, Africa",Mean Household Size For Housing Units of Foreign Born Population Born in Mexico,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Household Worker Size of Household: Foreign Born, Asia",Mean Household Size For Housing Units of Foreign Born Population Born in Asia,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Household Worker Size of Household: Foreign Born, Caribbean",Mean Household Size For Housing Units of Foreign Born Population Born in Caribbean,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Household Worker Size of Household: Foreign Born, Central America Except Mexico","Mean Household Worker Size of Foreign-Born Population in Central America, Except Mexico",, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Household Worker Size of Household: Foreign Born, Eastern Asia",Mean of Households of Foreign-Born Workers in Eastern Asia,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Household Worker Size of Household: Foreign Born, Europe",Foreign-Born Population in Europe With Mean Household Worker Size,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Household Worker Size of Household: Foreign Born, Latin America",Average Household Size Of People Foreign-Born In Latin America,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Household Worker Size of Household: Foreign Born, Country/MEX",Mean Household Worker Size of Household For Foreign-Born Population In Mexico,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Household Worker Size of Household: Foreign Born, Northamerica",Foreign-Born in North America Mean Household Worker Size,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Household Worker Size of Household: Foreign Born, Northern Western Europe",Mean Household Worker Size for Foreign Born Households in Northern Western Europe,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Household Worker Size of Household: Foreign Born, Oceania",Mean Household Worker Size of Foreign Born Population in Oceania,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Household Worker Size of Household: Foreign Born, Southamerica",Mean Household Worker Size Of Foreign Born Population In South America,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Household Worker Size of Household: Foreign Born, South Central Asia",Mean Household Worker Size of Foreign-Born Households in South Central Asia,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Household Worker Size of Household: Foreign Born, South Eastern Asia",Mean Household Worker Size of Population Foreign-Born In South-Eastern Asia,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Household Worker Size of Household: Foreign Born, Southern Eastern Europe",Foreign-Born in Southern Eastern Europe Mean Household Worker Size of Household,, -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Household Worker Size of Household: Foreign Born, Western Asia",Mean Household Worker Size Of Household With Foreign Born Population In Western Asia,, -Mean_Humidity_RelativeHumidity,Mean Humidity: Relative Humidity,Mean Relative Humidity,, -Mean_IncomeDeficit_Household_FamilyHousehold,Mean Income Deficit of Household: Family Household,Mean Income Deficit For Family Households,, -Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold,Mean Income Deficit of Household: Married Couple Family Household,Mean Income Deficit For Married Couple Family Households,, -Mean_IncomeDeficit_Household_SingleMotherFamilyHousehold,Mean Income Deficit of Household: Single Mother Family Household,Mean Income Deficit For Single Mother Family Households,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth,Average interval in months since last live birth,Mean Interval Since Last Birth Events,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average interval in months since last live birth where mothers Education is 9 Th To12 Th Grade No Diploma,Monthly Average Interval Since Last Live Birth Among Mothers Without Diplomas,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average interval in months since last live birth where mothers Race is American Indian Or Alaska Native Alone,Mean Interval Since Last Live Birth Events For American Indian or Alaska Native Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAsianIndian,Average interval in months since last live birth where mothers Race is Asian Indian,Mean Interval Since Last Live Birth Events For Asian Indian Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAssociatesDegree,Average interval in months since last live birth where mothers Education is Associates Degree,Average Interval In Months Since Last Live Birth For Mothers With Associates Degree,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBachelorsDegree,Average interval in months since last live birth where mothers Education is Bachelors Degree,Average Interval in Months Since Last Live Births of Mothers with Bachelor's Degree,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average interval in months since last live birth where mothers Race is Black Or African American Alone,Average Interval in Months Since Last Live Birth of African American Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherChinese,Average interval in months since last live birth where mothers Race is Chinese,Average Interval in Months Since Last Live Birth For Chinese Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average interval in months since last live birth where mothers Education is Doctorate Degree& Professional School Degree,Average Interval in Months Since Last Live Birth For Mothers Whose Education is Doctorate Degree And Professional School Degrees,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average interval in months since last live birth where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average interval in Months Since Last Live Births For Mothers With CDC,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average interval in months since last live birth where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average Interval in Months Since Last Live Birth of Mothers with Unknown Ethnicity,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherFilipino,Average interval in months since last live birth where mothers Race is Filipino,Average Interval in Months Since Last Live Birth of Filipino Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherForeignBorn,Average interval in months since last live birth where mothers Nativity is USC_ Foreign Born,Average Interval in Months Since Last Live Birth By Foreign-Born Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average interval in months since last live birth where mothers Race is Guamanian Or Chamorro,Average Interval in Months Since Last Live Birth Among Guamanian Or Chamorro Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average interval in months since last live birth where mothers Education is High School Graduate Ged Or Alternative,Average Interval in Months Since Last Live Birth of Mothers with High School Graduates Ged or Alternative,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average interval in months since last live birth where mothers Ethnicity is Hispanic Or Latino,Average Interval in Months Since Last Live Birth For Hispanic Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherJapanese,Average interval in months since last live birth where mothers Race is Japanese,Average Interval in Months Since Last Pregnancies outcome Not Live Birth For Japanese Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherKorean,Average interval in months since last live birth where mothers Race is Korean,Monthly Average Intervals of Live Births Among Korean Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average interval in months since last live birth where mothers Education is Less Than9 Th Grade,Average Interval in Months Since Last Live Birth For Mothers whose Education is Less Than 9Th Grade,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherMastersDegree,Average interval in months since last live birth where mothers Education is Masters Degree,Monthly Average Interval Since Last Live Birth Among Mothers with a Masters Degree,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNative,Average interval in months since last live birth where mothers Nativity is USC_ Native,Average Interval in Months Since Last Live Birth Where Mothers Nativity is USC,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativeHawaiian,Average interval in months since last live birth where mothers Race is Native Hawaiian,Average Interval in Months Since Last Live Birth For Native Hawaiian Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average interval in months since last live birth where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average Interval in Months Since Last Live Birth Among Mothers With Unstated Nativity,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average interval in months since last live birth where mothers Ethnicity is Not Hispanic Or Latino,Average Interval in Months Since Last Live Birth Among Non-Hispanic Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNowMarried,Average interval in months since last live birth where mothers Marital Status is Now Married,Average Interval in Months Since Last Live Birth of Married Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherAsian,Average interval in months since last live birth where mothers Race is Other Asian,Average Interval in Months Since Last Live Birth Among Asian Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average interval in months since last live birth where mothers Race is Other Pacific Islander,Average Interval in Months Since Last Live Birth Among Other Pacific Islander Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSamoan,Average interval in months since last live birth where mothers Race is Samoan,Average Interval in Months Since Last Live Birth For Samoan Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average interval in months since last live birth where mothers Education is Some College No Degree,Average Interval in Months Since Last Live Birth of Mothers with Some College Education or Without Degrees,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average interval in months since last live birth where mothers Race is Two Or More Races,Monthly Average Intervals of Live Births For Multiracial Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherUnmarried,Average interval in months since last live birth where mothers Marital Status is Unmarried,Average Interval in Months Since Last Live Birth For Unmarried Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherVietnamese,Average interval in months since last live birth where mothers Race is Vietnamese,Average Interval in Months Since Last Live Births For Vietnamese Mothers,, -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherWhiteAlone,Average interval in months since last live birth where mothers Race is White Alone,Average Interval in Months Since Last Live Birth of White Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth,Average LMP Gestational Age in weeks,LMP Gestation Live Birth Events,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average LMP Gestational Age in weeks where mothers Education is 9 Th To12 Th Grade No Diploma,Average LMP Gestational Age in Weeks of Mothers Without Diplomas,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average LMP Gestational Age in weeks where mothers Race is American Indian Or Alaska Native Alone,Average LMP Gestational Age in Weeks For American Indian Or Alaska Native Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,Average LMP Gestational Age in weeks where mothers Race is Asian Indian,Average Last Month Of Period Gestational Age in weeks of Asian Indian Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average LMP Gestational Age in weeks where mothers Race is Asian Or Pacific Islander,Average LMP Gestational Age in Weeks of Asian Or Pacific Islander Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average LMP Gestational Age in weeks where mothers Education is Associates Degree,LMP Gestation Live Birth Events For Mothers With Associate Degree,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average LMP Gestational Age in weeks where mothers Education is Bachelors Degree,Average LMP Gestational Age in Weeks Where Mothers Education is Bachelors Degree,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average LMP Gestational Age in weeks where mothers Race is Black Or African American Alone,Average LMP Gestational Age in Weeks For African American Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherChinese,Average LMP Gestational Age in weeks where mothers Race is Chinese,Average LMP Gestational Age in Weeks By Chinese Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average LMP Gestational Age in weeks where mothers Education is Doctorate Degree& Professional School Degree,Average LMP Gestational Age in Weeks in Doctorate And Professional School Degree Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average LMP Gestational Age in weeks where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average LMP Gestational Age in Weeks Among Mothers With CDC Education,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average LMP Gestational Age in weeks where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average LMP Gestational Age in Weeks Where Mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherFilipino,Average LMP Gestational Age in weeks where mothers Race is Filipino,Average LMP Gestational Age in Weeks of Filipino Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,Average LMP Gestational Age in weeks where mothers Nativity is USC_ Foreign Born,LMP Gestation Live Birth Events For Foreign Born Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average LMP Gestational Age in weeks where mothers Race is Guamanian Or Chamorro,LMP Gestation Live Birth Events For Guamanian Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average LMP Gestational Age in weeks where mothers Education is High School Graduate Ged Or Alternative,Average LMP Gestational Age in Weeks Where Mothers Education is High School Graduate Ged Or Alternative,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average LMP Gestational Age in weeks where mothers Ethnicity is Hispanic Or Latino,Average LMP Gestational Age in Weeks For Hispanic Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherJapanese,Average LMP Gestational Age in weeks where mothers Race is Japanese,Average LMP Gestational Age in Weeks of Japanese Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherKorean,Average LMP Gestational Age in weeks where mothers Race is Korean,Average LMP Gestational Age in Weeks For Korean Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average LMP Gestational Age in weeks where mothers Education is Less Than9 Th Grade,Average LMP Gestational Age in Weeks Where Mothers' Education is Less Than 9th Grade,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,Average LMP Gestational Age in weeks where mothers Education is Masters Degree,Average LMP Gestational Age in Weeks For Mothers With Masters Degree,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNative,Average LMP Gestational Age in weeks where mothers Nativity is USC_ Native,Average LMP Gestational Age In Weeks For Mothers Nativity,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average LMP Gestational Age in weeks where mothers Race is Native Hawaiian,Average LMP Gestational Age in Weeks For Native Hawaiian Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average LMP Gestational Age in weeks where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average LMP Gestational Age in Weeks For Mothers Of Unstated Nativity,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average LMP Gestational Age in weeks where mothers Ethnicity is Not Hispanic Or Latino,Average LMP Gestational Age in Weeks of Non-Hispanic Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,Average LMP Gestational Age in weeks where mothers Marital Status is Now Married,Average LMP Gestational Age in weeks For Married Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,Average LMP Gestational Age in weeks where mothers Race is Other Asian,Average LMP Gestational Age In Weeks By Asian Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average LMP Gestational Age in weeks where mothers Race is Other Pacific Islander,Average LMP Gestational Age in Weeks Where Mothers Race is Other Pacific Islander,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSamoan,Average LMP Gestational Age in weeks where mothers Race is Samoan,Samoan Mothers Average LMP Gestational Age in weeks,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average LMP Gestational Age in weeks where mothers Education is Some College No Degree,Average LMP Gestational Age in Weeks of Mothers With Some College Education Without a Degree,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average LMP Gestational Age in weeks where mothers Race is Two Or More Races,Average Last Month Of Period Gestational Age in weeks of Multiracial Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,Average LMP Gestational Age in weeks where mothers Marital Status is Unmarried,Average LMP Gestational Age in Weeks For Unmarried Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,Average LMP Gestational Age in weeks where mothers Race is Vietnamese,Average LMP Gestational Age in Weeks For Vietnamese Mothers,, -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average LMP Gestational Age in weeks where mothers Race is White Alone,Average LMP Gestational Age in Weeks Of White Mothers,, -Mean_MaxTemperature,Mean maximum temperature,Mean Maximum Temperature,, -Mean_MaxTemperature_Forest,Mean maximum temperature in forested areas,Mean Maximum Temperature in Forest,, -Mean_MothersAge_BirthEvent_LiveBirth,Average mother's age in years,Mean Mothers Age For Live Birth,, -Mean_MothersAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average mother's age in years where mothers Education is 9 Th To12 Th Grade No Diploma,Average Mother's Age in Years where Mothers Education is 9th To12th Grade No Diploma,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average mother's age in years where mothers Race is American Indian Or Alaska Native Alone,Average Age in Years of American Indian or Alaska Native Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianIndian,Average mother's age in years where mothers Race is Asian Indian,Average Mother's Age in Years Where Mothers Race is Asian Indian,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average mother's age in years where mothers Race is Asian Or Pacific Islander,Average Age in Years of Asian Or Pacific Islander Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average mother's age in years where mothers Education is Associates Degree,Average Age of Mothers With Associates Degrees,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average mother's age in years where mothers Education is Bachelors Degree,Average Age Of Mothers With Bachelor's Degrees,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average mother's age in years where mothers Race is Black Or African American Alone,Average Age Of African American Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherChinese,Average mother's age in years where mothers Race is Chinese,Average Mother's Age In Years For Chinese Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average mother's age in years where mothers Education is Doctorate Degree& Professional School Degree,Average Age in Years of Mothers With Doctorate Degree And Professional Degrees,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average mother's age in years where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average Mother's Age in Years For Mothers Whose Education Attainment is Unstated,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average mother's age in years where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average Mother's Age in Years Where Mothers Ethnicity is CDC Ethnicity Unknown,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherFilipino,Average mother's age in years where mothers Race is Filipino,Average Age of Filipino Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherForeignBorn,Average mother's age in years where mothers Nativity is USC_ Foreign Born,Average Mother's Age in Years of Foreign-Born Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average mother's age in years where mothers Race is Guamanian Or Chamorro,Average Age of Guamanian Mothers in Years,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average mother's age in years where mothers Education is High School Graduate Ged Or Alternative,Average Mother's Age in Years where Mothers Education is High School Graduate,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average mother's age in years where mothers Ethnicity is Hispanic Or Latino,Hispanic Mothers with Average Age in Years,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherJapanese,Average mother's age in years where mothers Race is Japanese,Average Mother's Age in Years Where Mothers Race is Japanese,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherKorean,Average mother's age in years where mothers Race is Korean,Average Mother's Age in Years For Korean Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average mother's age in years where mothers Education is Less Than9 Th Grade,Average Age in Years of Mothers with Education Level Less Than 9th Grade;Average Age in Years of Mothers with Education Level Less Than 9th Grades,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherMastersDegree,Average mother's age in years where mothers Education is Masters Degree,Mothers with Masters Degree Average Ages in Years,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherNative,Average mother's age in years where mothers Nativity is USC_ Native,Average Age in Years of USC Native Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average mother's age in years where mothers Race is Native Hawaiian,Average Age in Years of Native Hawaiian Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average mother's age in years where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average Mother's Age in Years of Nativity Unknown Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average mother's age in years where mothers Ethnicity is Not Hispanic Or Latino,Average Age in Years of Hispanic Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherNowMarried,Average mother's age in years where mothers Marital Status is Now Married,Average Mother's Age in Years For Mothers Marital Status is Now Married,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherAsian,Average mother's age in years where mothers Race is Other Asian,Average Asian Mother's Age In Years For Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average mother's age in years where mothers Race is Other Pacific Islander,Average Age in Years of Other Pacific Islander Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherSamoan,Average mother's age in years where mothers Race is Samoan,Average Age in years of Samoan Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average mother's age in years where mothers Education is Some College No Degree,Average Ages of College-Educated Mothers Without Degrees,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average mother's age in years where mothers Race is Two Or More Races,Mean Live Births For Multiracial Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherUnmarried,Average mother's age in years where mothers Marital Status is Unmarried,Average Mother's Age in Years For Unmarried Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherVietnamese,Average mother's age in years where mothers Race is Vietnamese,Average Age Of Vietnamese Mothers,, -Mean_MothersAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average mother's age in years where mothers Race is White Alone,Average Mother's Age in Years Where Mothers Race is White,, -Mean_OeGestationalAge_BirthEvent_LiveBirth,Average OE Gestational Age in weeks,Mean Gestational Age For Live Births,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average OE Gestational Age in weeks where mothers Education is 9 Th To12 Th Grade No Diploma,Average OE Gestational Age in Weeks of Mothers Without Diplomas,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average OE Gestational Age in weeks where mothers Race is American Indian Or Alaska Native Alone,Average OE Gestational Age in weeks of American Indian or Alaska Native Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,Average OE Gestational Age in weeks where mothers Race is Asian Indian,Mean Gestational Age For Live Births For Asian Indian Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average OE Gestational Age in weeks where mothers Race is Asian Or Pacific Islander,Average OE Gestational Age in Weeks Among Asian Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average OE Gestational Age in weeks where mothers Education is Associates Degree,Average OE Gestational Age in Weeks of Mothers With Associates Degree,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average OE Gestational Age in weeks where mothers Education is Bachelors Degree,Average OE Gestational Age In Weeks Among Mothers with Bachelor's Degree,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average OE Gestational Age in weeks where mothers Race is Black Or African American Alone,Average OE Gestational Age In Weeks Among African American Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherChinese,Average OE Gestational Age in weeks where mothers Race is Chinese,Average OE Gestational Age in Weeks By Chinese Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average OE Gestational Age in weeks where mothers Education is Doctorate Degree& Professional School Degree,Average OE Gestational Age in Weeks of Mothers with Doctorate Degrees and Professional School Degrees,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average OE Gestational Age in weeks where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average OE Gestational Age in Weeks For Mothers Educational Attainment is Unstated,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average OE Gestational Age in weeks where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Gestational Age in Weeks Among Mothers Of Unstated Ethnicity,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherFilipino,Average OE Gestational Age in weeks where mothers Race is Filipino,Mean Gestational Age For Filipino Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,Average OE Gestational Age in weeks where mothers Nativity is USC_ Foreign Born,Foreign-Born Mothers with Average OE Gestational Age in Weeks,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average OE Gestational Age in weeks where mothers Race is Guamanian Or Chamorro,Average Of Gestational Age In Weeks for Guamanian Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average OE Gestational Age in weeks where mothers Education is High School Graduate Ged Or Alternative,Average OE Gestational Age in Weeks For Mothers Who Are High School Graduates,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average OE Gestational Age in weeks where mothers Ethnicity is Hispanic Or Latino,Average OE Gestational Age In Weeks Of Hispanic Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherJapanese,Average OE Gestational Age in weeks where mothers Race is Japanese,Average OE Gestational Age in Weeks Where Mothers Race is Japanese,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherKorean,Average OE Gestational Age in weeks where mothers Race is Korean,Average OE Gestational Age in weeks For Korean Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average OE Gestational Age in weeks where mothers Education is Less Than9 Th Grade,Average OE Gestational Age in Weeks of Mothers in 9th Grades,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,Average OE Gestational Age in weeks where mothers Education is Masters Degree,Average OE Gestational Age in Weeks For Mothers With Masters Degree,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNative,Average OE Gestational Age in weeks where mothers Nativity is USC_ Native,Average OE Gestational Age in Weeks of USC Native Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average OE Gestational Age in weeks where mothers Race is Native Hawaiian,Average OE Gestational Age in weeks Among Native Hawaiian Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average OE Gestational Age in weeks where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average OE Gestational Age in Weeks Among Mothers with Unknown CDC Nativity,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average OE Gestational Age in weeks where mothers Ethnicity is Not Hispanic Or Latino,Average OE Gestational Age In Weeks Of Non-Hispanic Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,Average OE Gestational Age in weeks where mothers Marital Status is Now Married,Mean Gestational Age For Filipino Married Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,Average OE Gestational Age in weeks where mothers Race is Other Asian,Average OE Gestational Ages in Weeks of Asian Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average OE Gestational Age in weeks where mothers Race is Other Pacific Islander,Average OE Gestational Age in Weeks Among Other Pacific Islander Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSamoan,Average OE Gestational Age in weeks where mothers Race is Samoan,Samoan Mothers Population Of Average Of Gestational;Average OE Gestational Age in Weeks by Samoan Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average OE Gestational Age in weeks where mothers Education is Some College No Degree,Average OE Gestational Age in Weeks For Mothers Whose Education is Some College Without Degree,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average OE Gestational Age in weeks where mothers Race is Two Or More Races,Average OE Gestational Age in Weeks For Multiracial Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,Average OE Gestational Age in weeks where mothers Marital Status is Unmarried,Average OE Gestational Age in weeks For Unmarried Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,Average OE Gestational Age in weeks where mothers Race is Vietnamese,Mean Gestational Age For Vietnamese Mothers,, -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average OE Gestational Age in weeks where mothers Race is White Alone,Mean Gestational Age For White Mothers,, -Mean_PalmerDroughtSeverityIndex,Mean Palmer Drought Severity Index (PDSI),Mean Palmer Drought Severity Index,, -Mean_PalmerDroughtSeverityIndex_Forest,Mean Palmer Drought Severity Index (PDSI) in forested areas,Mean Palmer Drought Severity Index For Forest,, -Mean_PopulationWeighted_Concentration_AirPollutant_SmokePM25,Population-weighted Mean Concentration of Smoke PM2.5,Mean Population Weighted Concentration Air Pollutant Smoke PM 25,, -Mean_PrecipitableWater_Atmosphere,Mean Precipitable Water,Mean Precipitable Water in The Atmosphere,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth,Average prenatal vists,Mean Parental Visit Birth Events,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average prenatal vists where mothers Education is 9 Th To12 Th Grade No Diploma,Mean Parental Visit Birth Events For Mothers from 9th to 12th Grade,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average prenatal vists where mothers Race is American Indian Or Alaska Native Alone,Average Prenatal Visits For American Indians Or Alaska Native Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAsianIndian,Average prenatal vists where mothers Race is Asian Indian,Average Prenatal Visits For Asian And Indian Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAssociatesDegree,Average prenatal vists where mothers Education is Associates Degree,Average Prenatal Visits For Mothers With Associates Degree,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBachelorsDegree,Average prenatal vists where mothers Education is Bachelors Degree,Average Prenatal Visits Where Mothers Education is Bachelors Degree,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average prenatal vists where mothers Race is Black Or African American Alone,Average Prenatal Visits of African American Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherChinese,Average prenatal vists where mothers Race is Chinese,Average Prenatal Visits of Chinese Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average prenatal vists where mothers Education is Doctorate Degree& Professional School Degree,Average Prenatal Visits Where Mothers Education is Doctorate Degree and Professional School Degree,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average prenatal vists where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average Prenatal Visits of Mothers with Unknown Educational Attainment,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average prenatal vists where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average Prenatal Visits For Mothers In CDC,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherFilipino,Average prenatal vists where mothers Race is Filipino,Average Prenatal Visits of Filipino Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherForeignBorn,Average prenatal vists where mothers Nativity is USC_ Foreign Born,Average Prenatal Visits Where Mothers Nativity is USC Foreign-Born,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average prenatal vists where mothers Race is Guamanian Or Chamorro,Average Prenatal Visits Among Guamanian or Chamorro Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average prenatal vists where mothers Education is High School Graduate Ged Or Alternative,Average Prenatal Visits Where Mothers Education Is High School Graduate,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average prenatal vists where mothers Ethnicity is Hispanic Or Latino,Average Prenatal Visits of Hispanic Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherJapanese,Average prenatal vists where mothers Race is Japanese,Average Prenatal Visits Among Japanese Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherKorean,Average prenatal vists where mothers Race is Korean,Average Prenatal Visits of Korean Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average prenatal vists where mothers Education is Less Than9 Th Grade,Average Prenatal Visits Among Mothers Whose Education is Less Than 9Th Grade,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherMastersDegree,Average prenatal vists where mothers Education is Masters Degree,Average Prenatal Visits By Mothers With Masters Degrees,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNative,Average prenatal vists where mothers Nativity is USC_ Native,Average Prenatal Visits Where Mothers Nativity is USC Native,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativeHawaiian,Average prenatal vists where mothers Race is Native Hawaiian,Average Prenatal Visits Among Native Hawaiian Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average prenatal vists where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Average Prenatal Visits For Mothers Nativity is CDC,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average prenatal vists where mothers Ethnicity is Not Hispanic Or Latino,Mean Parental Visit Birth Events For Latino Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNowMarried,Average prenatal vists where mothers Marital Status is Now Married,Average Prenatal Visits of Married Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherAsian,Average prenatal vists where mothers Race is Other Asian,Average Prenatal Visits For Asian Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average prenatal vists where mothers Race is Other Pacific Islander,Average Prenatal Visits Among Pacific Islander Mothers er,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSamoan,Average prenatal vists where mothers Race is Samoan,Average Prenatal Visits For Samoan Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average prenatal vists where mothers Education is Some College No Degree,Prenatal Visits By Mothers With Some College Education But No Degree,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average prenatal vists where mothers Race is Two Or More Races,Average Prenatal Visits For Multiracial Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherUnmarried,Average prenatal vists where mothers Marital Status is Unmarried,Average Prenatal Visits of Unmarried Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherVietnamese,Average prenatal vists where mothers Race is Vietnamese,Average Prenatal Visits Among Vietnamese Mothers,, -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherWhiteAlone,Average prenatal vists where mothers Race is White Alone,Whites Average Prenatal Visits Among White Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth,Average Pre pregnancy BMI,Mean Pre-Pregnancy Body Mass Index Live Births,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average Pre pregnancy BMI where mothers Education is 9 Th To12 Th Grade No Diploma,Average Pre-Pregnancy BMI For Mothers With Education is 9Th To12th Grade Without Diploma,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average Pre pregnancy BMI where mothers Race is American Indian Or Alaska Native Alone,Average Pre pregnancy BMI where mothers Race is American Indian Or Alaska Native Alone,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAsianIndian,Average Pre pregnancy BMI where mothers Race is Asian Indian,Average Pre-Pregnancy BMI Among Asian Indian Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAssociatesDegree,Average Pre pregnancy BMI where mothers Education is Associates Degree,Average Pre Pregnancy BMI of Mothers with Associates Degrees,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Pre pregnancy BMI where mothers Education is Bachelors Degree,Pre-Pregnancy BMI Of Mothers With Bachelor's Degree,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average Pre pregnancy BMI where mothers Race is Black Or African American Alone,Mean Pre-Pregnancy Body Mass Index Live Births For African American Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherChinese,Average Pre pregnancy BMI where mothers Race is Chinese,Average Pre-Pregnancy BMI of Chinese Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average Pre pregnancy BMI where mothers Education is Doctorate Degree& Professional School Degree,Average Pre Pregnancy BMI Among Mothers With Doctorate Degree And Professional School Degree,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average Pre pregnancy BMI where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated,Average Pre Pregnancy BMI For Mothers Education is CDC,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average Pre pregnancy BMI where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated,Average Pre-pregnancy BMI of CDC Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherFilipino,Average Pre pregnancy BMI where mothers Race is Filipino,Average Pre Pregnancy BMI For Filipino Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherForeignBorn,Average Pre pregnancy BMI where mothers Nativity is USC_ Foreign Born,Mean of Foreign-Born Mothers' Pre-Pregnancy BMI,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Pre pregnancy BMI where mothers Race is Guamanian Or Chamorro,Average Pre-pregnancy Body Mass Index For Guamanian Or Chamorro Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average Pre pregnancy BMI where mothers Education is High School Graduate Ged Or Alternative,Average Pre-Pregnancy BMI For Mothers With High School Graduate Ged Or Alternative,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average Pre pregnancy BMI where mothers Ethnicity is Hispanic Or Latino,Average Pre Pregnancy BMI Where FOr Hispanic Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherJapanese,Average Pre pregnancy BMI where mothers Race is Japanese,Average Pre-pregnancy BMI For Japanese Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherKorean,Average Pre pregnancy BMI where mothers Race is Korean,Average Pre-Pregnancy BMI For Korea Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average Pre pregnancy BMI where mothers Education is Less Than9 Th Grade,Average Pre-Pregnancy BMI For Mothers With Less Than 9th Grade,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherMastersDegree,Average Pre pregnancy BMI where mothers Education is Masters Degree,Average Pre-Pregnancy BMI Among Mothers With Master' Degrees,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNative,Average Pre pregnancy BMI where mothers Nativity is USC_ Native,Average Pre-Pregnancy BMI For USC Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativeHawaiian,Average Pre pregnancy BMI where mothers Race is Native Hawaiian,Average Pre-pregnancy BMI of Native Hawaiian Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average Pre pregnancy BMI where mothers Nativity is CDC_ Nativity Unknown Or Not Stated,Mean Pre-Pregnancy Body Mass Index Live Births For Mothers on Unknown Nativity,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average Pre pregnancy BMI where mothers Ethnicity is Not Hispanic Or Latino,Average Pre-Pregnancy BMI of Non-Hispanic Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNowMarried,Average Pre pregnancy BMI where mothers Marital Status is Now Married,Average Pre-Pregnancy BMI For Married Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherAsian,Average Pre pregnancy BMI where mothers Race is Other Asian,Mean Pre-Pregnancy Body Mass Index Live Births For Asian Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average Pre pregnancy BMI where mothers Race is Other Pacific Islander,Average Pre-Pregnancy BMI of Other Pacific Islander Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSamoan,Average Pre pregnancy BMI where mothers Race is Samoan,Mean Pre-Pregnancy Body Mass Index Live Births For Samoan Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average Pre pregnancy BMI where mothers Education is Some College No Degree,Average Pre-pregnancy BMI Among Mothers With Some College Education,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average Pre pregnancy BMI where mothers Race is Two Or More Races,Average Pre-Pregnancy BMI of Multiracial Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherUnmarried,Average Pre pregnancy BMI where mothers Marital Status is Unmarried,Average Pre-Pregnancy BMI Among Unmarried Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherVietnamese,Average Pre pregnancy BMI where mothers Race is Vietnamese,Average Pre-Pregnancy BMI For Vietnamese Mothers,, -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherWhiteAlone,Average Pre pregnancy BMI where mothers Race is White Alone,Average Pre-Pregnancy BMI For White Population Mothers,, -Mean_Radiation_Downwelling_ShortwaveRadiation,"Mean Radiation: Downwelling, Shortwave Radiation",Downwelling Shortwave Radiation,, -Mean_Rainfall,Mean Rainfall,Mean Rainfall,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Retirement Income of Household: Foreign Born, Africa",Mean Retirement Income Of Householders Foreign Born In Africa,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Retirement Income of Household: Foreign Born, Asia",Foreign Borns In Asia Mean Retirement Income Of Household,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Retirement Income of Household: Foreign Born, Caribbean",Mean Retirement Income of Foreign-Born Households in the Caribbean,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Retirement Income of Household: Foreign Born, Central America Except Mexico",Mean Retirement Income of Foreign-Born Households in Central America Except Mexico,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Retirement Income of Household: Foreign Born, Eastern Asia",Mean Retirement Income of Households Of Population Foreign Born in Eastern Asia,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Retirement Income of Household: Foreign Born, Europe",Mean Retirement Income Of Householders Foreign Born In Europe,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Retirement Income of Household: Foreign Born, Latin America",Mean Retirement Income For Household of Foreign Born Population in Latin America,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Retirement Income of Household: Foreign Born, Country/MEX",Foreign-Born Population Mean Retirement Income of Households in Mexico,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Retirement Income of Household: Foreign Born, Northamerica",Mean Retirement Income of Foreign Borns in North America Households,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Retirement Income of Household: Foreign Born, Northern Western Europe",Mean Retirement Income of Households Of Population Foreign Born In Northern Western Europe,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Retirement Income of Household: Foreign Born, Oceania",Mean Retirement Income Of Foreign Born in Oceania Households,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Retirement Income of Household: Foreign Born, Southamerica",Foreign-Born Households in South America with Mean Retirement Income,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Retirement Income of Household: Foreign Born, South Central Asia",Average Retirement Income Of Householders Foreign Born In South Central Asia,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Retirement Income of Household: Foreign Born, South Eastern Asia",Mean Retirement Income Of Foreign Born In South-Eastern Asia Households,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Retirement Income of Household: Foreign Born, Southern Eastern Europe",Mean Retirement Income of Foreign-Born Households in Southern Eastern Europe,, -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Retirement Income of Household: Foreign Born, Western Asia",Foreign-Born Households in Western Asia with Mean Retirement Income,, -Mean_Snowfall,Mean Snowfall,Mean Snowfall,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Social Security Income of Household: Foreign Born, Africa",Mean Social Security Income of Households Owned by Foreign-Born Population,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Social Security Income of Household: Foreign Born, Asia",Mean Social Security Income of Household of Population Foreign-Born In Asian,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Social Security Income of Household: Foreign Born, Caribbean",Mean Household Income of The Caribbean Foreign-Born Population,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Social Security Income of Household: Foreign Born, Central America Except Mexico",Mean Social Security Income of Foreign-Born Households in Central America Except Mexico,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Social Security Income of Household: Foreign Born, Eastern Asia",Eastern Asia Foreign Borns Mean Social Security Household Income,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Social Security Income of Household: Foreign Born, Europe",Mean Social Security Income of Householders Foreign Born in Europe,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Social Security Income of Household: Foreign Born, Latin America",Mean Social Security Income of Foreign Born In Latin America Households,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Social Security Income of Household: Foreign Born, Country/MEX",Mean Social Security Income of Foreign-Born Population Households,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Social Security Income of Household: Foreign Born, Northamerica",Mean Social Security Income of Households of Foreign-Born Population in North America,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Social Security Income of Household: Foreign Born, Northern Western Europe",Foreign-Born Population Mean Social Security Income of Households in North Western Europe,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Social Security Income of Household: Foreign Born, Oceania",Mean Social Security Income Of Householders Foreign Born In Oceania,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Social Security Income of Household: Foreign Born, Southamerica",Mean Social Security Income of Households Foreign-Born in South America,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Social Security Income of Household: Foreign Born, South Central Asia",Mean Social Security Income of Households of Foreign Borns in South Central Asia,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Social Security Income of Household: Foreign Born, South Eastern Asia",Mean Social Security Income of Households Owned by Foreign-Born Population In South-Eastern Asia,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Social Security Income of Household: Foreign Born, Southern Eastern Europe",Social Security Income of Foreign-Born Population in Southern Eastern Europe,, -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Social Security Income of Household: Foreign Born, Western Asia",Mean Social Security Income of Households of Foreign-Born Population in Western Asia,, -Mean_SolarInsolation,Mean Solar Insolation,Mean Solar Insolation,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Supplemental Security Income of Household: Foreign Born, Africa",Mean Supplemental Security Income of Foreign-Born Households in Africa,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Supplemental Security Income of Household: Foreign Born, Asia",Mean Supplemental Security Income of Households of Foreign Born Population in Asia,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Supplemental Security Income of Household: Foreign Born, Caribbean",Mean Supplementary Income For Households of Foreign Born Born in Caribbean,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Supplemental Security Income of Household: Foreign Born, Central America Except Mexico",Mean Supplemental Security Income Of Foreign Born Population In Central America Except Mexico,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Supplemental Security Income of Household: Foreign Born, Eastern Asia",Mean Supplemental Security Income Of Foreign Born in Eastern Asia Households,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Supplemental Security Income of Household: Foreign Born, Europe",Foreign-Born in Europe Mean Supplemental Security Income of Households,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Supplemental Security Income of Household: Foreign Born, Latin America",Mean Household Supplemental Security Income of Population Foreign Born in Latin America,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Supplemental Security Income of Household: Foreign Born, Country/MEX",Mean Supplemental Security Income of Foreign-Born in Mexico Households,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Supplemental Security Income of Household: Foreign Born, Northamerica",Mean Supplemental Security Income of Foreign-Born Households in North America,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Supplemental Security Income of Household: Foreign Born, Northern Western Europe",Foreign Born In Northern Western Europe With Mean Supplemental Security Income of Household,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Supplemental Security Income of Household: Foreign Born, Southamerica",South American Foreign-Born Population With Mean Supplemental Security Income,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Supplemental Security Income of Household: Foreign Born, South Central Asia",Mean Supplemental Security Income Of Householders Foreign Born In South Central Asia,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Supplemental Security Income of Household: Foreign Born, South Eastern Asia",Mean Supplemental Security Income of Foreign-Born Households South-Eastern Asia,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Supplemental Security Income of Household: Foreign Born, Southern Eastern Europe",Foreign-Born Population Mean Supplemental Security Income of Households in South Eastern Europe,, -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Supplemental Security Income of Household: Foreign Born, Western Asia",Mean Supplemental Security Income of Households of Foreign-Born Population in Western Asia,, -Mean_Temperature,Mean Temperature,Mean Temperature,, -Mean_UsualHoursWorked_Person_Female_WorkedInThePast12Months,"Mean Usual Hours Worked: 16 - 64 Years, Female, Worked in The Past 12 Months",Mean Hours Worked by Female Population Aged 16 to 64 Years Who Worked in The Past 12 Months,, -Mean_UsualHoursWorked_Person_Male_WorkedInThePast12Months,"Mean Usual Hours Worked: 16 - 64 Years, Male, Worked in The Past 12 Months",Mean Usual Hours Worked by Male Population Aged 16 to 64 Years in The Past 12 Months,, -Mean_UsualHoursWorked_Person_WorkedInThePast12Months,"Mean Usual Hours Worked: 16 - 64 Years, Worked in The Past 12 Months",Mean Usual Hours Worked in The Past 12 Months By People Aged 16 to 64 Years,, -Mean_VaporPressureDeficit,Mean Vapor Pressure Deficit (VPD),Mean Vapor Pressure Deficit,, -Mean_VaporPressureDeficit_Forest,Mean Vapor Pressure Deficit (VPD) for forested areas,Mean Vapor Pressure Deficit For Forest,, -Mean_Visibility,Mean Visibility,Mean Visibility,, -Mean_WindSpeed,Mean Wind Speed,Mean Wind Speed,, -Mean_WindSpeed_UComponent_Height10Meters,"Mean Wind Speed: Meter 10, UComponent",Mean 10 Meter UComponent Wind Speed,, -Mean_WindSpeed_VComponent_Height10Meters,"Mean Wind Speed: Meter 10, VComponent",Mean Wind Speed Component,, -MeanMothersAge_BirthEvent,Mean Mother's Age at Birth,Mean Mothers Age,, -Median_Age_Person_1OrMoreYears,Median Age: 1 Years or More,Mean Age of Population Aged 10 Years or More,, -Median_Age_Person_1OrMoreYears_DifferentHouseAbroad,"Median Age: 1 Years or More, Different House Abroad",Population Aged 1 Year or More With Different House Abroad,, -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountyDifferentState,"Median Age: 1 Years or More, Different House in Different County Different State",Median Age of Population Aged 1 Year or More in Different Houses in Different County Different State,, -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountySameState,"Median Age: 1 Years or More, Different House in Different County Same State",Median Age 1 Year Or More Of Population With Different House In Different County Same State,, -Median_Age_Person_1OrMoreYears_DifferentHouseInSameCounty,"Median Age: 1 Years or More, Different House in Same County",Median Age of Population Aged 1 Year or More in Different Houses in The Same County,, -Median_Age_Person_Female_WorkedInThePast12Months,"Median Age: 16 - 64 Years, Female, Worked in The Past 12 Months",Median Of Female Workers in The Past 12 Months Aged 16 to 64 Years,, -Median_Age_Person_ForeignBorn,Median Age: Foreign Born,Median Age of Foreign-Born Population,, -Median_Age_Person_ForeignBorn_PlaceOfBirthAfrica,"Median Age: Foreign Born, Africa",Median Age African Foreign Born Population,, -Median_Age_Person_ForeignBorn_PlaceOfBirthAsia,"Median Age: Foreign Born, Asia",Median Age of Asia Foreign-Born Population,, -Median_Age_Person_ForeignBorn_PlaceOfBirthCaribbean,"Median Age: Foreign Born, Caribbean",Median Age of Population Foreign Born In The Caribbean,, -Median_Age_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Median Age: Foreign Born, Central America Except Mexico",Median Age of Foreign-Born Population in Central America Except Mexico,, -Median_Age_Person_ForeignBorn_PlaceOfBirthEasternAsia,"Median Age: Foreign Born, Eastern Asia",Median Age Of Foreign Borns In Eastern Asia,, -Median_Age_Person_ForeignBorn_PlaceOfBirthEurope,"Median Age: Foreign Born, Europe",Median Ages of Foreign-Born Population in Europe,, -Median_Age_Person_ForeignBorn_PlaceOfBirthLatinAmerica,"Median Age: Foreign Born, Latin America",Median Age Of Foreign Born Population In Latin America,, -Median_Age_Person_ForeignBorn_PlaceOfBirthMexico,"Median Age: Foreign Born, Country/MEX",Median Age Of People Foreign Born In Mexico,, -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthamerica,"Median Age: Foreign Born, Northamerica",Median Age of Foreign-Born Population in North America,, -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Median Age: Foreign Born, Northern Western Europe",Foreign-Born Population in Northern Western Europe,, -Median_Age_Person_ForeignBorn_PlaceOfBirthOceania,"Median Age: Foreign Born, Oceania",Median Age of Foreign-Born Oceanians,, -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthamerica,"Median Age: Foreign Born, Southamerica",Median Age Of Foreign Borns In South America,, -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Median Age: Foreign Born, South Central Asia",Median Age of Foreign-Born Population in South Central Asia,, -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Median Age: Foreign Born, South Eastern Asia",Median Age For Foreign-Born Population in South Eastern Asia,, -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Median Age: Foreign Born, Southern Eastern Europe",Foreign-Born Southern Eastern Europe Population with Median Age,, -Median_Age_Person_ForeignBorn_PlaceOfBirthWesternAsia,"Median Age: Foreign Born, Western Asia",Median Age Of Foreign Born Population in Western Asia,, -Median_Age_Person_Male_WorkedInThePast12Months,"Median Age: 16 - 64 Years, Male, Worked in The Past 12 Months",Male Population Aged 16 to 64 Years Who Worked in The Past 12 Months,, -Median_Age_Person_Native,Median Age: Native,Native Median Age,, -Median_Age_Person_NotAUSCitizen_ForeignBorn,"Median Age: Not A US Citizen, Foreign Born",Median Age Of Foreign Born Non-US Citizens,, -Median_Age_Person_ResidesInAdultCorrectionalFacilities,Median Age: Adult Correctional Facilities,Median Age in Adult Correctional Facilities,, -Median_Age_Person_ResidesInCollegeOrUniversityStudentHousing,Median Age: College or University Student Housing,Median Age of Population In College or University Student Housing,, -Median_Age_Person_ResidesInGroupQuarters,Median Age: Group Quarters,Median Age Of Population In Group Quarters,, -Median_Age_Person_ResidesInInstitutionalizedGroupQuarters,Median Age: Institutionalized Group Quarters,Median Age Population in Institutionalized Group Quarters,, -Median_Age_Person_ResidesInNoninstitutionalizedGroupQuarters,Median Age: Noninstitutionalized Group Quarters,Median Aged People Residing in Non-Institutionalized Group Quarters,, -Median_Age_Person_ResidesInNursingFacilities,Median Age: Nursing Facilities,Median Age of Population Residing in Nursing Facilities,, -Median_Age_Person_USCitizenByNaturalization_ForeignBorn,"Median Age: US Citizen by Naturalization, Foreign Born",Median Age of Foreign-Born US Citizen By Naturalization,, -Median_Age_Person_WorkedInThePast12Months,"Median Age: 16 - 64 Years, Worked in The Past 12 Months",Median Age Of Workers Aged 16 to 64 Years Who Worked In The Past 12 Months,, -Median_Concentration_AirPollutant_CO,Median Concentration: Carbon Monoxide,,, -Median_Concentration_AirPollutant_NO2,Median Concentration: Nitrogen Dioxide,,, -Median_Concentration_AirPollutant_Ozone,Median Ozone Concentration,Median Concentration of Air Pollutant in The Ozone,, -Median_Concentration_AirPollutant_PM2.5,Median PM2.5 Concentration,Median Concentration of Air Pollutant in PM 2.5,, -Median_Concentration_AirPollutant_SO2,Median Concentration: Sulfur Dioxide,,, -Median_Cost_HousingUnit_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,"Median Cost of Housing Unit (Selected Monthly Owner Costs): Occupied Housing Unit, Owner Occupied",Median Cost of Housing Unit Occupied By Owners,, -Median_Cost_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,Median Cost of Housing Unit (Selected Monthly Owner Costs): With Mortgage,Median Cost of Housing Units with Mortgage,, -Median_Cost_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,Median Cost of Housing Unit (Selected Monthly Owner Costs): Without Mortgage,Median Cost of Housing Units Without Mortgage,, -Median_Earnings_Person_25OrMoreYears,"Median Earnings: 25 Years or More, With Earnings",Median Earnings Of Population Aged 25 or More Years,, -Median_Earnings_Person_25OrMoreYears_Female,"Median Earnings: 25 Years or More, Female, With Earnings",Median Earnings of Female Population Aged 25 Years or More,, -Median_Earnings_Person_25OrMoreYears_Male,"Median Earnings: 25 Years or More, Male, With Earnings",MedIan Earnings Of Male Population Aged 25 Years,, -Median_GrossRent_HousingUnit_WithCashRent_OccupiedHousingUnit_RenterOccupied,Median Gross Rent of Housing Unit: With Cash Rent,Median Gross Rent of Housing Units With Cash Rent,, -Median_HomeValue_HousingUnit_OccupiedHousingUnit_OwnerOccupied,"Median Home Value of Housing Unit: Occupied Housing Unit, Owner Occupied",Median Home Value of Occupied Housing Units,, -Median_Income_Household_ForeignBorn_PlaceOfBirthAfrica,"Median Income of Household: Foreign Born, Africa",Households of Foreign-Born Population in Africa,, -Median_Income_Household_ForeignBorn_PlaceOfBirthAsia,"Median Income of Household: Foreign Born, Asia",Median Income of Households of Foreign-Born Population in Asia,, -Median_Income_Household_ForeignBorn_PlaceOfBirthCaribbean,"Median Income of Household: Foreign Born, Caribbean",Foreign-Born in the Caribbean Households,, -Median_Income_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Median Income of Household: Foreign Born, Central America Except Mexico","Median Income For Foreign-Born Population in Central America, Except Mexico Households",, -Median_Income_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Median Income of Household: Foreign Born, Eastern Asia",Foreign-Born Population Median Income of Households in Eastern Asia,, -Median_Income_Household_ForeignBorn_PlaceOfBirthEurope,"Median Income of Household: Foreign Born, Europe",Median Income of Households of Foreign-Born Population in Europe,, -Median_Income_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Median Income of Household: Foreign Born, Latin America",Median Income of Households of Foreign-Born Population in Latin America,, -Median_Income_Household_ForeignBorn_PlaceOfBirthMexico,"Median Income of Household: Foreign Born, Country/MEX",Median Income of Households of Foreign-Born Population in Mexico,, -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Median Income of Household: Foreign Born, Northamerica",Median Income of Foreign-Born Households in North America,, -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Median Income of Household: Foreign Born, Northern Western Europe",Population Foreign-Born in Northern Western Europe with Two Parents,, -Median_Income_Household_ForeignBorn_PlaceOfBirthOceania,"Median Income of Household: Foreign Born, Oceania",Median Income of Households Foreign-Born in Oceania,, -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Median Income of Household: Foreign Born, Southamerica",South America Foreign Borns Median Household Income,, -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Median Income of Household: Foreign Born, South Central Asia",Foreign Borns In South Central Asia Median Income Household,, -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Median Income of Household: Foreign Born, South Eastern Asia",Median Income of Foreign-Born Households in South Eastern Asia,, -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Median Income of Household: Foreign Born, Southern Eastern Europe",Median Income Of Foreign Born in Southern Eastern Europe Households,, -Median_Income_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Median Income of Household: Foreign Born, Western Asia",Median Income of Households of Foreign-Born Population in Western Asia,, -Median_Income_Household_HouseholderRaceSomeOtherRaceAlone,Median Income of Household: Some Other Race Alone,Median Income of Some Other Races Households,, -Median_Income_Household_HouseholderRaceTwoOrMoreRaces,Median Income of Household: Two or More Races,Multiracial Median Household Income,, -Median_Income_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,Median Income of Household: White Alone Not Hispanic or Latino,Median Income of White And Non-Hispanic Households,, -Median_Income_Person_15OrMoreYears_WithIncome_BornInOtherStateInTheUnitedStates,Median Income: Born in Other State in The United States,Median Income For Population Born in Other States in The United States,, -Median_Income_Person_15OrMoreYears_WithIncome_BornInStateOfResidence,Median Income: Born in State of Residence,Median Income Of Population Born in State Of Residence,, -Median_Income_Person_15OrMoreYears_WithIncome_ForeignBorn,Median Income: Foreign Born,Median Income of Foreign-Born Population,, -Median_Income_Person_15OrMoreYears_WithIncome_NativeBornOutsideTheUnitedStates,Median Income: Native Born Outside The United States,Median Income of Native-Born Population Outside The United States,, -Median_Income_Person_18OrMoreYears_Civilian_WithIncome,Median Income: Civilian,Civilians With Median Incomes,, -Median_Income_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_WithIncome,Median Income: Bachelors Degree,Median Income of Population With Bachelor's Degrees,, -Median_Income_Person_25OrMoreYears_EducationalAttainmentGraduateOrProfessionalDegree_WithIncome,Median Income: Graduate or Professional Degree,Median Income of Population With Professional Degrees,, -Median_Income_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_WithIncome,Median Income: High School Graduate Includes Equivalency,Median Income of High School Graduate Includes Equivalency,, -Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome,Median Income: Less Than High School Graduate,Median Income of Population Less High School Graduates,, -Median_Income_Person_25OrMoreYears_EducationalAttainmentSomeCollegeOrAssociatesDegree_WithIncome,Median Income: Some College or Associates Degree,Median Income of Population With Some College or Associate's Degree,, -Median_Income_Person_DifferentHouseAbroad,"Median Income: 15 Years or More, With Income, Different House Abroad",Medium Income for Population Aged 15 Years or More With Income Living in Different Houses Abroad,, -Median_Income_Person_DifferentHouseInDifferentCountyDifferentState,"Median Income: 15 Years or More, With Income, Different House in Different County Different State",Median Income For Population Aged 15 Years or More Living in Different Houses in Different Counties in Different States With Income,, -Median_Income_Person_DifferentHouseInDifferentCountySameState,"Median Income: 15 Years or More, With Income, Different House in Different County Same State",Median Income of Population Aged 15 Years or More From Different Houses in Different County Same State,, -Median_Income_Person_DifferentHouseInSameCounty,"Median Income: 15 Years or More, With Income, Different House in Same County",Median Income of Population Aged 15 Years or More With Income in Different Houses in Same County,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAfrica,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Africa",Median Number of Rooms of Housing Units of Foreign-Born Population Occupied Housing Unit In Africa,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Asia",Number Of Rooms In Housing Units Occupied By Population Foreign-Born In Asia,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Caribbean",Median Number of Rooms of Housing Units Occupied by Foreign-Born Population in the Caribbean,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Central America Except Mexico","Median Number of Rooms For Foreign-Born Population Occupying Housing Units in Central America, Except Mexico",, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Eastern Asia",Median Number of Rooms of Foreign-Born in Eastern Asia Housing Unit With Occupied Housing Unit,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Europe",Median Rooms Of Households Occupied By Foreign Born Population Born in Europe,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Latin America",Median Rooms Of Households Occupied By Foreign Born Population Born in Latin America,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthMexico,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Country/MEX",Median Number of Rooms For Housing Units Occupied By Foreign-Born Population,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthamerica,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Northamerica",Median Number Of Rooms With Foreign Born Population In North America Occupied,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Northern Western Europe",Housing Units with Median Number of Rooms Occupied by Foreign-Born Population in Northern Western Europe,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthOceania,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Oceania",Number of Rooms of Housing Units Occupied by Foreign-Born Population in Oceania,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Southamerica",Median Number of Rooms of Housing Unit Occupied by Foreign Born Population in South America,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, South Central Asia",Median Number of Rooms Occupied By Foreign-Born Population in South Central Asia,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, South Eastern Asia",Median Number of Occupied Rooms for Foreign-Born Population in South Eastern Asia,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Southern Eastern Europe",Foreign-Born in Southern Eastern Europe Occupied Housing Units,, -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Western Asia",Median of Housing Units Occupied by Foreign Borns in Western Asia,, -MedianMothersAge_BirthEvent,Median Mother's Age at Birth,Median Mother's Age at Birth,, -Min_Concentration_AirPollutant_CO,Min Concentration: Carbon Monoxide,,, -Min_Concentration_AirPollutant_NO2,Min Concentration: Nitrogen Dioxide,,, -Min_Concentration_AirPollutant_SO2,Min Concentration: Sulfur Dioxide,,, -Min_Humidity_RelativeHumidity,Min Humidity: Relative Humidity,Minimum Relative Humidity,, -Min_PrecipitableWater_Atmosphere,Min Precipitable Water,Minimum Water Precipitable in The Atmosphere,, -Min_Radiation_Downwelling_ShortwaveRadiation,"Min Radiation: Downwelling, Shortwave Radiation",Minimum Surface Downwelling Shortwave Radiation,, -Min_Rainfall,Min Rainfall,Minimum Rainfall,, -Min_Snowfall,Min Snowfall,Minimum Snowfall,, -Min_Temperature,Min Temperature,Minimum Temperature,, -Min_WindSpeed_UComponent_Height10Meters,"Min Wind Speed: Meter 10, UComponent",Minimum Wind Speed,, -Min_WindSpeed_VComponent_Height10Meters,"Min Wind Speed: Meter 10, VComponent",Component 10 Meters Min Wind Speed,, -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayADecade CMIP6 SSP245,,, -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayADecade CMIP6 SSP585,,, -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayAYear CMIP6 SSP245,,, -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayAYear CMIP6 SSP585,,, -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayADecade CMIP6 SSP245,,, -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayADecade CMIP6 SSP585,,, -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayAYear CMIP6 SSP245,,, -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayAYear CMIP6 SSP585,,, -MortalityRate_Person_Upto4Years_AsFractionOf_Count_BirthEvent_LiveBirth,Mortality Rate: 4 Years or Less (As Fraction of Count Birth Event Live Birth),Death Rate of Population Aged 4 Years or Less,, -NumberOfDays_Concentration_SmokePM25_Above12PPM,Number of days where the Smoke PM2.5 concentration exceeded 12 ppm,,, -NumberOfDays_Concentration_SmokePM25_Above150PPM,Number of days where the Smoke PM2.5 concentration exceeded 150 ppm,,, -NumberOfDays_Concentration_SmokePM25_Above250PPM,Number of days where the Smoke PM2.5 concentration exceeded 250 ppm,,, -NumberOfDays_Concentration_SmokePM25_Above35PPM,Number of days where the Smoke PM2.5 concentration exceeded 35 ppm,,, -NumberOfDays_Concentration_SmokePM25_Above55PPM,Number of days where the Smoke PM2.5 concentration exceeded 55 ppm,,, -NumberOfDays_HeatWaveEvent,Number of Days of Heat Wave Event,Heat Wave Events,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MaxRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Max Relative Humidity,Maximum Relative Humidity 35 Celsius or More Based on RCP 4.5,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MeanRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Mean Relative Humidity,Months with Mean Relative Humidity Based on RCP 4.5 35 Celsius or More,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MinRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Min Relative Humidity,"Months Based on RCP 4.5 Min Relative Humidity, 35 Celsius or More",, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MaxRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Max Relative Humidity,Maximum Relative Humidity 35 Celsius Or More Based on RCP 6.0,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MeanRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Mean Relative Humidity,Number of Months Based on RCP 6.0 Mean Relative Humidity 35 Celsius or More,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MinRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Min Relative Humidity,Number of Months Based on RCP 6.0 Min Relative Humidity 35 Celsius or More,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MaxRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Max Relative Humidity,Number of Months Based on RCP 8.5,, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MeanRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Mean Relative Humidity,"Months Based on RCP 8.5, Mean Relative Humidity, 35 Celsius or More",, -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MinRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Min Relative Humidity,Number of Months Based on RCP 8.5,, -Percent_BurnedArea_FireEvent,Percent of area that burned,Percentage of Area Burned By Fire Event,, -Percent_BurnedArea_FireEvent_Forest,Percent of forest area that burned,Percentage of Forest Area Burned By Fire Event,, -Percent_BurnedArea_FireEvent_Forest_HighSeverity,Percent of forest area that experienced high-severity fire,Percentage of Forest Area That Experienced High-Severity Fire,, -Percent_Daily_TobaccoSmoking_Cigarettes_In_Count_Person,"Percentage Daily, Tobacco Smoking, Cigarettes Among Population",Percentage of Population Smoking Cigarettes Daily,, -Percent_Daily_TobaccoUsing_In_Count_Person,Prevalence of Daily Tobacco Use,Percentage of Population Smoking Daily,, -Percent_Daily_TobaccoUsing_In_Count_Person_Female,Prevalence of Daily Tobacco Use Among Females,Percentage of Female Population Smoking Tobacco Daily,, -Percent_Daily_TobaccoUsing_In_Count_Person_Male,Prevalence of Daily Tobacco Use Among Males,Percentage of Male Population Smoking Tobacco Daily,, -Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening,"Prevalence of 21 - 65 Years, Female, Received Cervical Cancer Screening",Female Population Aged 21 to 65 Years Received Cervical Cancer Screening,, -Percent_Person_50To74Years_Female_ReceivedMammography,"Prevalence: 50 - 74 Years, Female, Mammography",Prevalence of Female Population Aged 50 to 74 Years who Received Mammography,, -Percent_Person_50To75Years_ReceivedColorectalCancerScreening,"Prevalence: 50 - 75 Years, Colorectal Cancer Screening",Colorectal Cancer Screening Prevalence for Population Aged 50 to 75 Years,, -Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices,"Prevalence: 65 Years or More, Female, Core Preventive Services",Prevalence of Females Aged 65 Years or More Received Core Preventive Services,, -Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,"Prevalence: 65 Years or More, Male, Core Preventive Services",Prevalence Preventive Services for Males Above 65 Years Old,, -Percent_Person_ReceivedCholesterolScreening,Prevalence: Cholesterol Screening,Prevalence of Persons who Received Cholesterol Screening,, -Percent_Person_ReceivedDentalVisit,Prevalence: Dental Visit,Prevalence of Persons who Received Dental Visits,, -Percent_TobaccoSmoking_Cigarettes_In_Count_Person,Prevalence of Current Cigarette Smoking,Prevalence of Tobacco Smoking Population,, -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Female,Prevalence of Current Cigarette Smoking Among Females,Prevalence of Tobacco Smoking Female Population,, -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Male,Prevalence of Current Cigarette Smoking Among Males,Prevalence of Tobacco Smoking Male Population,, -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person,Percentage Tobacco Smoking Among Population,Prevalence of Tobacco Smoking Tobacco Population,, -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Female,Percentage Tobacco Smoking Among Female Population,Prevalence of Tobacco Smoking Female Population,, -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Male,Percentage Tobacco Smoking Among Male Population,Prevalence of Tobacco Smoking Male Population,, -Percent_TobaccoUsing_In_Count_Person,Prevalence of Current Tobacco Use,Prevalence of Tobacco Using Population,, -Percent_TobaccoUsing_In_Count_Person_Female,Prevalence of Current Tobacco Use Among Females,Prevalence of Tobacco Using Female Population,, -Percent_TobaccoUsing_In_Count_Person_Male,Prevalence of Current Tobacco Use Among Males,Prevalence of Tobacco Using Male Population,, -PopulationWeighted_Concentration_AirPollutant_Ozone,Population-weighted Ozone Concentration,Concentration of Ozone Pollutants Weighted by Population,, -PopulationWeighted_Concentration_AirPollutant_PM2.5,Population-weighted PM2.5 Concentration,Concentration of PM2.5 Pollutants Weighted by Population,, -PopulationWeighted_Count_HeatWaveEvent,Population-weighted Number of Heat Waves,Heat Waves Weighted by Population,, -PopulationWeighted_Intensity_HeatWaveEvent,Population-weighted Intensity of Heat Waves,Intensity of Heat Waves Weighted by Population,, -PopulationWeighted_NumerOfDays_HeatWaveEvent,Population-weighted Length of Heat Waves,Length of Heat Waves Weighted by Population,, -PrecipitationRate,Precipitation Rate,Precipitation Rate,, -Radiation_Downwelling_LongwaveRadiation,"Radiation: Downwelling, Longwave Radiation",Downwelling And Longwave Radiation,, -Radiation_Downwelling_ShortwaveRadiation,"Radiation: Downwelling, Shortwave Radiation",Downwelling Shortwave Radiation,, -Receipts_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,"Receipts of Establishment: Administrative And Support And Waste Management Services (NAICS/56), With Payroll",Receipts of Administrative and Support and Waste Management Services Establishments,, -ReceiptsBillingsOrSales_Establishment_NAICSConstruction_WithPayroll,"Receipts Billings or Sales of Establishment: Construction (NAICS/23), With Payroll",Receipts of Construction Industries With Payroll,, -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), With Payroll","Revenue of Arts, Entertainment, and Recreation Establishments With Payroll",, -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Exempt From Federal Income Tax","Revenue of Arts, Entertainment, And Recreation, Exempt From Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Subject To Federal Income Tax","Revenue of Arts Entertainment And Recreation Establishments, Subject To Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), With Payroll",Revenue of Educational Services WIth Payroll,, -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), Exempt From Federal Income Tax",Revenue of Educational Services exempt from federal income tax,, -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), Subject To Federal Income Tax","Revenue of Educational Services, Subject to Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), With Payroll",Revenue of Health Care and Social Assistance Establishments With Payroll,, -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), Exempt From Federal Income Tax",Revenue of Health Care And Social Assistance To Exempt From Federal Income Tax,, -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), Subject To Federal Income Tax","Revenue from Health Care And Social Assistance, Subject To Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSInformation_WithPayroll,"Receipts or Revenue of Establishment: Information (NAICS/51), With Payroll",Receipts of Information Industries With Payroll,, -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll,"Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), With Payroll","Receipt Of Other Services, Except Public Administration With Payrolls",, -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), Exempt From Federal Income Tax","Revenue From Other Services, Except Public Administration, Exempted From Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), Subject To Federal Income Tax","Revenue of Other Services, Except Public Administration, Subjected To Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,"Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), With Payroll",Receipts of Professional Scientific And Technical Services With Payroll,, -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Exempt From Federal Income Tax","Receipts of Professional, Scientific, And Technical Services Exempt From Federal Income Tax",, -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Subject To Federal Income Tax","Receipts of Professional, Scientific, and Technical Services Establishments Subject to Federal Income Tax",, -RetailDrugDistribution_DrugDistribution_Alfentanil,Retail Drug Distribution of Drug Distribution: Drug/dea/9737,Retail Drug Distribution of Alfentanil,, -RetailDrugDistribution_DrugDistribution_Amobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2125,Retail Drug Distribution of Amobarbital,, -RetailDrugDistribution_DrugDistribution_AnabolicSteroids,Retail Drug Distribution of Drug Distribution: Drug/dea/4000,Retail Drug Distribution of Anabolic Steroids,, -RetailDrugDistribution_DrugDistribution_BarbituricAcidDerivativeOrSalt,Retail Drug Distribution of Drug Distribution: Drug/dea/2100,Retail Drug Distribution of Barbituric Acid Derivative Or Salt,, -RetailDrugDistribution_DrugDistribution_Buprenorphine,Retail Drug Distribution of Drug Distribution: Drug/dea/9064,Retail Drug Distribution of Buprenorphine,, -RetailDrugDistribution_DrugDistribution_Butalbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2165,Retail Drug Distribution of Butalbital,, -RetailDrugDistribution_DrugDistribution_Cocaine,Retail Drug Distribution of Drug Distribution: Drug/dea/9041 L,Retail Drug Distribution of Cocaine,, -RetailDrugDistribution_DrugDistribution_dea/9809,Retail Drug Distribution of Drug Distribution: Drug/dea/9809,Retail Drug Distribution of Opium combination product 25 mg/du,, -RetailDrugDistribution_DrugDistribution_Dihydrocodeine,Retail Drug Distribution of Drug Distribution: Drug/dea/9120,Retail Drug Distribution of Dihydrocodeine,, -RetailDrugDistribution_DrugDistribution_DlMethamphetamine,Retail Drug Distribution of Drug Distribution: Drug/dea/1105 B,Retail Drug Distribution of DlMethamphetamine,, -RetailDrugDistribution_DrugDistribution_DMethamphetamine,Retail Drug Distribution of Drug Distribution: Drug/dea/1105 D,Retail Drug Distribution of Methamphetamine,, -RetailDrugDistribution_DrugDistribution_Ecgonine,Retail Drug Distribution of Drug Distribution: Drug/dea/9180 L,Retail Drug Distribution of Ecgonine,, -RetailDrugDistribution_DrugDistribution_FDAApprovedGammaHydroxybutyricAcidPreparations,Retail Drug Distribution of Drug Distribution: Drug/dea/2012,Retail Drug Distribution of FDA Approved Gamma Hydroxybutyric Acid Preparations,, -RetailDrugDistribution_DrugDistribution_Fentanyl,Retail Drug Distribution of Drug Distribution: Drug/dea/9801,Retail Drug Distribution of Fentanyl,, -RetailDrugDistribution_DrugDistribution_GammaHydroxybutyricAcid,Retail Drug Distribution of Drug Distribution: Drug/dea/2010,Retail Drug Distribution of Gamma Hydroxybutyric Acid,, -RetailDrugDistribution_DrugDistribution_Hydromorphone,Retail Drug Distribution of Drug Distribution: Drug/dea/9150,Retail Drug Distribution of Hydromorphone,, -RetailDrugDistribution_DrugDistribution_Levorphanol,Retail Drug Distribution of Drug Distribution: Drug/dea/9220 L,Retail Drug Distribution of Levorphanol,, -RetailDrugDistribution_DrugDistribution_Lisdexamfetamine,Retail Drug Distribution of Drug Distribution: Drug/dea/1205,Retail Drug Distribution of Lisdexamfetamine,, -RetailDrugDistribution_DrugDistribution_Lorazepam,Retail Drug Distribution of Drug Distribution: Drug/dea/2885,Retail Drug Distribution of Lorazepam,, -RetailDrugDistribution_DrugDistribution_MarketableOralDronabinol,Retail Drug Distribution of Drug Distribution: Drug/dea/7365,Retail Drug Distribution of Marketable Oral Dronabinol,, -RetailDrugDistribution_DrugDistribution_Methadone,Retail Drug Distribution of Drug Distribution: Drug/dea/9250 B,Retail Drug Distribution of Methadone,, -RetailDrugDistribution_DrugDistribution_Methylphenidate,Retail Drug Distribution of Drug Distribution: Drug/dea/1724,Retail Drug Distribution of Methylphenidate,, -RetailDrugDistribution_DrugDistribution_Nabilone,Retail Drug Distribution of Drug Distribution: Drug/dea/7379,Retail Drug Distribution of Nabilone,, -RetailDrugDistribution_DrugDistribution_Naloxone,Retail Drug Distribution of Drug Distribution: Drug/dea/9411,Retail Drug Distribution of Naloxone,, -RetailDrugDistribution_DrugDistribution_Noroxymorphone,Retail Drug Distribution of Drug Distribution: Drug/dea/9668,Retail Drug Distribution of Noroxymorphone,, -RetailDrugDistribution_DrugDistribution_Oxymorphone,Retail Drug Distribution of Drug Distribution: Drug/dea/9652,Retail Drug Distribution of Oxymorphone,, -RetailDrugDistribution_DrugDistribution_Paregoric,Retail Drug Distribution of Drug Distribution: Drug/dea/9655,Retail Drug Distribution of Paregoric,, -RetailDrugDistribution_DrugDistribution_Pentobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2270,Retail Drug Distribution of Pentobarbital,, -RetailDrugDistribution_DrugDistribution_Pethidine,Retail Drug Distribution of Drug Distribution: Drug/dea/9230,Retail Drug Distribution of Pethidine,, -RetailDrugDistribution_DrugDistribution_Phencyclidine,Retail Drug Distribution of Drug Distribution: Drug/dea/7471,Retail Drug Distribution of Phencyclidine,, -RetailDrugDistribution_DrugDistribution_Phendimetrazine,Retail Drug Distribution of Drug Distribution: Drug/dea/1615,Retail Drug Distribution of Phendimetrazine,, -RetailDrugDistribution_DrugDistribution_Phenobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2285,Retail Drug Distribution of Phenobarbital,, -RetailDrugDistribution_DrugDistribution_PoppyStrawConcentrate,Retail Drug Distribution of Drug Distribution: Drug/dea/9670,Retail Drug Distribution of Poppy Straw Concentrate,, -RetailDrugDistribution_DrugDistribution_PowderedOpium,Retail Drug Distribution of Drug Distribution: Drug/dea/9639,Retail Drug Distribution of Powdered Opium,, -RetailDrugDistribution_DrugDistribution_Remifentanil,Retail Drug Distribution of Drug Distribution: Drug/dea/9739,Retail Drug Distribution of Remifentanil,, -RetailDrugDistribution_DrugDistribution_Secobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2315,Retail Drug Distribution of Secobarbital,, -RetailDrugDistribution_DrugDistribution_Sufentanil,Retail Drug Distribution of Drug Distribution: Drug/dea/9740,Retail Drug Distribution of Sufentanil,, -RetailDrugDistribution_DrugDistribution_Tapentadol,Retail Drug Distribution of Drug Distribution: Drug/dea/9780,Retail Drug Distribution of Tapentadol,, -RetailDrugDistribution_DrugDistribution_Testosterone,Retail Drug Distribution of Drug Distribution: Drug/dea/4187,Retail Drug Distribution of Testosterone,, -RetailDrugDistribution_DrugDistribution_TincuredOpium,Retail Drug Distribution of Drug Distribution: Drug/dea/9630,Retail Drug Distribution of Tincture Opium,, -RetailDrugDistribution_DrugDistribution_Zolpidem,Retail Drug Distribution of Drug Distribution: Drug/dea/2783,Retail Drug Distribution of Zolpidem,, -Revenue_Establishment_NAICSFinanceInsurance_WithPayroll,"Revenue of Establishment: Finance And Insurance (NAICS/52), With Payroll",Revenue of Finance And Insurance With Payroll,, -Revenue_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,"Revenue of Establishment: Management of Companies And Enterprises (NAICS/55), With Payroll",Revenue in Management of Companies And Enterprises With Payroll,, -Revenue_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,"Revenue of Establishment: Real Estate And Rental And Leasing (NAICS/53), With Payroll",Revenue of Real Estate And Rental And Leasing Industries With Payroll,, -Sales_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll,"Sales of Establishment: Manufacturer Sales Branches And Offices, Wholesale Trade (NAICS/42)",Sales Of Wholesale Trade Establishments,, -Sales_Establishment_NAICSAccommodationFoodServices_WithPayroll,"Sales of Establishment: Accommodation And Food Services (NAICS/72), With Payroll",Sales of Accommodation and Food Services Establishments With Payroll,, -Sales_Establishment_NAICSWholesaleTrade_WithPayroll,"Sales of Establishment: Wholesale Trade (NAICS/42), With Payroll",Wholesale Trade Establishments With Payrolls,, -Sales_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Sales of Establishment: Merchant Wholesalers, Wholesale Trade (NAICS/42)",Wholesale Trade Merchant Wholesalers,, -sdg/AG_FOOD_WST,Food waste,,, -sdg/AG_FOOD_WST_PC,Food waste per capita,,, -sdg/AG_LND_FRST,Forest area as a proportion of total land area,,, -sdg/AG_LND_FRSTBIOPHA,Above-ground biomass in forest,,, -sdg/AG_LND_FRSTCERT,Forest area under an independently verified forest management certification scheme,,, -sdg/AG_LND_FRSTCHG,Annual forest area change rate,,, -sdg/AG_LND_FRSTN,Forest area,,, -sdg/AG_LND_FRSTPRCT,Proportion of forest area within legally established protected areas,,, -sdg/DC_ODA_BDVDL,Total official development assistance for biodiversity,,, -sdg/EG_FEC_RNEW,Renewable energy share in the total final energy consumption,,, -sdg/EN_EWT_GENPCAP,"Electronic waste generated, per capita",,, -sdg/EN_EWT_GENV,Electronic waste generated,,, -sdg/EN_MAR_BEALIT_BP,Beach litter originating from national land-based sources that ends in the beach,,, -sdg/EN_MAR_BEALIT_OP,Beach litter originating from national land-based sources that ends in the ocean,,, -sdg/EN_MAR_BEALITSQ,Beach litter per square kilometer,,, -sdg/EN_MAR_PLASDD,Floating plastic debris density,,, -sdg/EN_MAT_DOMCMPG,Domestic material consumption per unit of GDP,,, -sdg/EN_MAT_DOMCMPT,Domestic material consumption,,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF1,Domestic material consumption [Type of product = Biomass],,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF11,Domestic material consumption [Type of product = Crops],,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF13,Domestic material consumption [Type of product = Wood],,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF14,Domestic material consumption [Type of product = Wild catch and harvest],,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF2,Domestic material consumption [Type of product = Metal ores],,, -sdg/EN_MAT_DOMCMPT.PRODUCT--MF3,Domestic material consumption [Type of product = Non-metallic minerals],,, -sdg/EN_SCP_FRMN,Number of companies publishing sustainability reports with disclosure by dimension,,, -sdg/EN_SCP_FSHGDP,Sustainable fisheries as a proportion of GDP,,, -sdg/ER_FFS_CMPT_GDP,Fossil-fuel subsidies as a proportion of total GDP,,, -sdg/ER_FFS_CMPT_PC_CD,Fossil-fuel subsidies per capita,,, -sdg/ER_H2O_FWTL,Proportion of fish stocks within biologically sustainable levels,,, -sdg/ER_MRN_MPA,Average proportion of Marine Key Biodiversity Areas covered by protected areas,,, -sdg/ER_PTD_FRHWTR,Average proportion of Freshwater Key Biodiversity Areas covered by protected areas,,, -sdg/ER_PTD_MTN,Average proportion of Mountain Key Biodiversity Areas covered by protected areas,,, -sdg/ER_PTD_TERR,Average proportion of Terrestrial Key Biodiversity Areas covered by protected areas,,, -sdg/ER_RSK_LST,Red List Index,,, -sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F,Proportion of women of reproductive age who have their need for family planning satisfied with modern methods [Age = 15 to 49 years old | Sex = Female],,, -sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F,Proportion of women aged 15-49 years with anaemia [Age = 15 to 49 years old | Sex = Female],,, -sdg/SH_STA_MORT.SEX--F,Maternal mortality ratio [Sex = Female],,, -sdg/SH_STA_STNT.AGE--Y0T4,Proportion of children moderately or severely stunted [Age = under 5 years old],,, -sdg/SH_STA_WAST.AGE--Y0T4,Proportion of children moderately or severely wasted [Age = under 5 years old],,, -sdg/SI_POV_DAY1,Proportion of population below international poverty line,,, -sdg/SI_POV_EMP1.AGE--Y_GE15,Employed population below international poverty line [Age = 15 years old and over],,, -sdg/SN_ITK_DEFC,Prevalence of undernourishment,,, -sdg/SP_ACS_BSRVH2O,Proportion of population using basic drinking water services,,, -sdg/SP_ACS_BSRVSAN,Proportion of population using basic sanitation services,,, -sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F,Adolescent birth rate [Age = 15 to 19 years old | Sex = Female],,, -SettlementAmount_NaturalHazardInsurance_BuildingContents_FloodEvent,"Settlement Amount of Natural Hazard Insurance: Building Contents, Flood Event",Settlement Amount of Flood Insurance for Building Contents in Floods Zone,, -SettlementAmount_NaturalHazardInsurance_BuildingStructure_FloodEvent,"Settlement Amount of Natural Hazard Insurance: Building Structure, Flood Event",Settlement Amount Of Flood Insurance in Building Structures,, -SettlementAmount_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,"Settlement Amount of Natural Hazard Insurance: Building Structure And Contents, Flood Event",Settlement Amount of Natural Hazard Insurance in Building Structure and Contents,, -ShipmentsOrReceipts_Establishment_NAICSMiningQuarryingOilGasExtraction_WithPayroll,"Shipments or Receipts of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21), With Payroll","Shipments of Mining, Quarrying, Oil and Gas Extraction With Payroll",, -StandardizedPrecipitationEvapotranspirationIndex_Atmosphere,Standardized Precipitation Evapotranspiration Index,Atmospheric Standardized Precipitation Evapotranspiration Index,, -StandardizedPrecipitationIndex_Atmosphere,Standardized Precipitation Index,Atmospheric Standardized Precipitation Index,, -StandardizedPrecipitationIndex_Atmosphere_1MonthPeriod,Standardized Precipitation Index: Month 1,Standardized Precipitation Index Measured Over the Previous Month,, -StandardizedPrecipitationIndex_Atmosphere_36MonthPeriod,Standardized Precipitation Index: Month 36,Standardized Precipitation Index Measured Over the Previous 36 months,, -StandardizedPrecipitationIndex_Atmosphere_3MonthPeriod,Standardized Precipitation Index: Month 3,Standardized Precipitation Index Measured Over the Previous 3 Months,, -StandardizedPrecipitationIndex_Atmosphere_6MonthPeriod,Standardized Precipitation Index: Month 6,Standardized Precipitation Index Measured Over the Previous 6 Months,, -StandardizedPrecipitationIndex_Atmosphere_72MonthPeriod,Standardized Precipitation Index: Month 72,Standardized Precipitation Index Measured Over the Previous 72 Months,, -StandardizedPrecipitationIndex_Atmosphere_9MonthPeriod,Standardized Precipitation Index: Month 9,Standardized Precipitation Index Measured Over the Previous 9 Months,, -Temperature,Temperature in a Location,Temperature,, -USStateQuarterlyIndustryGDP_NAICS_11,"Amount of Economic Activity (Nominal): Gross Domestic Production, Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Nominal Gross Domestic Production in Agriculture, Forestry, Fishing, And Hunting Industries",, -USStateQuarterlyIndustryGDP_NAICS_21,"Amount of Economic Activity (Nominal): Gross Domestic Production, Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)",Gross Domestic Production of Mining Quarrying And Oil And Gas Extraction,, -USStateQuarterlyIndustryGDP_NAICS_22,"Amount of Economic Activity (Nominal): Gross Domestic Production, Utilities (NAICS/22)",Amount of Economic Activity in Utilities,, -USStateQuarterlyIndustryGDP_NAICS_23,"Amount of Economic Activity (Nominal): Gross Domestic Production, Construction (NAICS/23)",Amount of Economic Activity in Construction,, -USStateQuarterlyIndustryGDP_NAICS_31_33,"Amount of Economic Activity (Nominal): Gross Domestic Production, Manufacturing (NAICS/31-33)",Amount of Gross Domestic Production Chemical Mechanical or Physical Transformation of Materials Manufacturing,, -USStateQuarterlyIndustryGDP_NAICS_311_316&322_326,"Amount of Economic Activity (Nominal): Gross Domestic Production, NAICS/311-316 & NAICS/322-326",Quarterly Gross Domestic Production of Nondurable Goods Manufacturing Industries,, -USStateQuarterlyIndustryGDP_NAICS_321&327_339,"Amount of Economic Activity (Nominal): Gross Domestic Production, Wood Product Manufacturing (NAICS/321) & NAICS/327-339",Quarterly Gross Domestic Production of Durable Goods Manufacturing Industries,, -USStateQuarterlyIndustryGDP_NAICS_42,"Amount of Economic Activity (Nominal): Gross Domestic Production, Wholesale Trade (NAICS/42)",Amount of Economic Activity For Gross Domestic Production And Wholesale Trade,, -USStateQuarterlyIndustryGDP_NAICS_44_45,"Amount of Economic Activity (Nominal): Gross Domestic Production, Retail Trade (NAICS/44-45)",Gross Domestic Production in Retail Trade,, -USStateQuarterlyIndustryGDP_NAICS_48_49,"Amount of Economic Activity (Nominal): Gross Domestic Production, Transportation And Warehousing (NAICS/48-49)",Amount of Economic Activity Of Gross Domestic Production And Transportation And Warehousing,, -USStateQuarterlyIndustryGDP_NAICS_51,"Amount of Economic Activity (Nominal): Gross Domestic Production, Information (NAICS/51)",Nominal Gross Domestic Production in Information Establishments,, -USStateQuarterlyIndustryGDP_NAICS_52,"Amount of Economic Activity (Nominal): Gross Domestic Production, Finance And Insurance (NAICS/52)","Nominal Amount of Economic Activity in Gross Domestic Production, Finance And Insurance Industries",, -USStateQuarterlyIndustryGDP_NAICS_53,"Amount of Economic Activity (Nominal): Gross Domestic Production, Real Estate And Rental And Leasing (NAICS/53)",Quarterly Gross Domestic Production of Real Estate And Rental And Leasing,, -USStateQuarterlyIndustryGDP_NAICS_54,"Amount of Economic Activity (Nominal): Gross Domestic Production, Professional, Scientific, And Technical Services (NAICS/54)","Amount of Economic Activity of Gross Domestic Production Professional, Scientific, And Technical Services Industries",, -USStateQuarterlyIndustryGDP_NAICS_55,"Amount of Economic Activity (Nominal): Gross Domestic Production, Management of Companies And Enterprises (NAICS/55)",Gross Domestic Production in Management of Companies And Enterprises,, -USStateQuarterlyIndustryGDP_NAICS_56,"Amount of Economic Activity (Nominal): Gross Domestic Production, Administrative And Support And Waste Management Services (NAICS/56)","Nominal Amount of Economic Activity in Gross Domestic Production, Administrative, Support and Waste Management Service Industries",, -USStateQuarterlyIndustryGDP_NAICS_61,"Amount of Economic Activity (Nominal): Gross Domestic Production, Educational Services (NAICS/61)",Gross Domestic Production Educational Services,, -USStateQuarterlyIndustryGDP_NAICS_62,"Amount of Economic Activity (Nominal): Gross Domestic Production, Health Care And Social Assistance (NAICS/62)",Amount of Economic Activity Gross Domestic Production Health Care And Social Assistance,, -USStateQuarterlyIndustryGDP_NAICS_71,"Amount of Economic Activity (Nominal): Gross Domestic Production, Arts, Entertainment, And Recreation (NAICS/71)","Gross Domestic Production in Arts, Entertainment and Recreation Establishments",, -USStateQuarterlyIndustryGDP_NAICS_72,"Amount of Economic Activity (Nominal): Gross Domestic Production, Accommodation And Food Services (NAICS/72)",Accommodation and Food Services,, -USStateQuarterlyIndustryGDP_NAICS_81,"Amount of Economic Activity (Nominal): Gross Domestic Production, Other Services, Except Public Administration (NAICS/81)",Gross Domestic Production And Other Services Except Public Administration,, -WagesAnnual_Establishment,Wages Annual of Establishment,Annual Wages of Establishments,, -WagesAnnual_Establishment_NAICSAccommodationFoodServices,Wages Annual of Establishment: Accommodation And Food Services (NAICS/72),Annual Wages In Accommodation And Food Services,, -WagesAnnual_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,Wages Annual of Establishment: Administrative And Support And Waste Management Services (NAICS/56),Annual Wages of Workers in Geographic Area Statistics,, -WagesAnnual_Establishment_NAICSAgricultureForestryFishingHunting,"Wages Annual of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Wages Of Agriculture, Forestry, Fishing And, Hunting Establishments",, -WagesAnnual_Establishment_NAICSArtsEntertainmentRecreation,"Wages Annual of Establishment: Arts, Entertainment, And Recreation (NAICS/71)","Annual Wages of Arts, Entertainment, and Recreation Industries",, -WagesAnnual_Establishment_NAICSConstruction,Wages Annual of Establishment: Construction (NAICS/23),Annual Wages in Construction Industries,, -WagesAnnual_Establishment_NAICSEducationalServices,Wages Annual of Establishment: Educational Services (NAICS/61),Annual Wages of Educational Services Establishments,, -WagesAnnual_Establishment_NAICSFinanceInsurance,Wages Annual of Establishment: Finance And Insurance (NAICS/52),Annual Wages of Finance and Insurance Establishments,, -WagesAnnual_Establishment_NAICSHealthCareSocialAssistance,Wages Annual of Establishment: Health Care And Social Assistance (NAICS/62),Annual Wages of Health Care and Social Assistance Industries,, -WagesAnnual_Establishment_NAICSInformation,Wages Annual of Establishment: Information (NAICS/51),Annual Wages of Information Establishments,, -WagesAnnual_Establishment_NAICSManagementOfCompaniesEnterprises,Wages Annual of Establishment: Management of Companies And Enterprises (NAICS/55),Annual Wages of Management of Companies And Enterprises,, -WagesAnnual_Establishment_NAICSManufacturing,Wages Annual of Establishment: Manufacturing (NAICS/31),Annual Establishment of Manufacturing Industries,, -WagesAnnual_Establishment_NAICSMiningQuarryingOilGasExtraction,"Wages Annual of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Annual Wages of Mining, Quarrying, And Oil And Gas Extraction Establishments",, -WagesAnnual_Establishment_NAICSNonclassifiable,Wages Annual of Establishment: Unclassified (NAICS/99),Annual Wages of Unclassified Establishments,, -WagesAnnual_Establishment_NAICSOtherServices,"Wages Annual of Establishment: Other Services, Except Public Administration (NAICS/81)",Annual Wages of Workers in Other Services Except Public Administration,, -WagesAnnual_Establishment_NAICSProfessionalScientificTechnicalServices,"Wages Annual of Establishment: Professional, Scientific, And Technical Services (NAICS/54)","Annual Wages of Workers in Professional, Scientific and Technical Service Industries",, -WagesAnnual_Establishment_NAICSRealEstateRentalLeasing,Wages Annual of Establishment: Real Estate And Rental And Leasing (NAICS/53),Annual Wages of Real Estate And Rental And Leasing Establishments,, -WagesAnnual_Establishment_NAICSRetailTrade,Wages Annual of Establishment: Retail Trade (NAICS/44),Annual Establishment Wages in Retail Trade Sector,, -WagesAnnual_Establishment_NAICSTransportationWarehousing,Wages Annual of Establishment: Transportation And Warehousing (NAICS/48),Annual Wages of Transportation And Warehousing Establishments,, -WagesAnnual_Establishment_NAICSUtilities,Wages Annual of Establishment: Utilities (NAICS/22),Annual Wages Of Utility Industries,, -WagesAnnual_Establishment_NAICSWholesaleTrade,Wages Annual of Establishment: Wholesale Trade (NAICS/42),Annual Establishment Wages in Wholesale Trade Sector,, -WagesTotal_Worker_NAICSGoodsProducing,Wages Total of Person: Goods-producing (NAICS/101),Total Wages of Workers in Goods-Producing Industries,, -WagesTotal_Worker_NAICSServiceProviding,Wages Total of Person: Service-providing (NAICS/102),Total Wages of People in Service-Providing Industries,, -WHO/Adult_daily_tob_use,Prevalence Of Daily Tobacco Use Among Adults (%),Percentage of Prevalence Of Daily Tobacco Use Among Adults,, -WHO/bcgv_Female,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Female",Percentage of Bcg Immunization Coverage Among Female One-Year-Olds,, -WHO/bcgv_Male,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Male",Bcg Immunization Coverage Among One-Year-Old Male Population,, -WHO/bcgv_Rural,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Rural",Percentage Bcg Immunization Coverage Among One-Year-Olds in Rural Areas,, -WHO/bcgv_Urban,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Urban",Percentage of Urban Bcg Immunization Coverage Among One-Year-Olds,, -WHO/CM_01,Number Of Under-Five Deaths,Deaths of Population Under-Five Years,, -WHO/CM_02,Number Of Infant Deaths,Infant Deaths,, -WHO/CM_03,Number Of Neonatal Deaths,Number of Neonatal Deaths,, -WHO/dptv_Female,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Female",Percentage Dtp3 Immunization Coverage Among Female One-Year-Olds,, -WHO/dptv_Male,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Male",Percentage of Male Population With Dtp3 Immunization Coverage Among One-Year-Olds,, -WHO/dptv_Rural,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Rural",Percentage Dtp3 Immunization Coverage Among One-Year-Olds in Rural Areas,, -WHO/dptv_Urban,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Urban",Percentage of Dtp3 Immunization Coverage Among One-Year-Olds in Urban,, -WHO/fullv_Female,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Female",Percentage Of Full Immunization Coverage Among Female One-Year-Olds,, -WHO/fullv_Male,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Male",Percentage of Full Immunization Coverage Among Male Population Aged One-Year-Old,, -WHO/fullv_Rural,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Rural",Percentage of Full Immunization Coverage Among One-Year-Olds in Rural Areas,, -WHO/fullv_Urban,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Urban",Percentage Of Full Immunization Coverage Among One-Year-Old In Urban Areas,, -WHO/GDO_q35,Estimated Population-Based Prevalence Of Depression,,, -WHO/LBW_PREVALENCE,"Low Birth Weight, Prevalence (%)",Low Birth Weight Prevalence,, -WHO/M_Est_smk_daily,Estimate Of Daily Tobacco Smoking Prevalence (%),Percentage Estimate Of Daily Tobacco Smoking Prevalences,, -WHO/mslv_Female,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Female",Percentage of Measles Immunization Coverage Among Female 1 Year Olds,, -WHO/mslv_Male,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Male",Percentage of Measles Immunization Coverage Among Male Population Aged One-Year-Old,, -WHO/mslv_Rural,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Rural",Percentage of Measles Immunization Coverage Among 1 Year Old,, -WHO/mslv_Urban,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Urban",Percentage of Measles Immunization Coverage Among One-Year-Olds in Urban,, -WHO/NCD_BMI_18A,"Prevalence Of Underweight Among Adults, Bmi < 18 (Age-Standardized Estimate) (%)",,, -WHO/NCD_BMI_30A,"Prevalence Of Obesity Among Adults, Bmi &Greaterequal; 30 (Age-Standardized Estimate) (%)",,, -WHO/NCD_PAC,Prevalence Of Insufficient Physical Activity Among Adults Aged 18+ Years (Crude Estimate) (%),Percentage Prevalence Of Insufficient Physical Activity Among Adults Aged 18+ Years,, -WHO/NTD_1,Number Of New Reported Cases Of Buruli Ulcer,Number of New Reported Cases of Buruli Ulcer,, -WHO/NTD_4,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Gambiense),Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Gambiense),, -WHO/NTD_5,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Rhodesiense),New Reported Cases Of Human African Trypanosomiasis,, -WHO/NTD_LEISHCNUM,Number Of Cases Of Cutaneous Leishmaniasis Reported,Reported Cases Of Cutaneous Leishmaniasis,, -WHO/NTD_LEISHVNUM,Number Of Cases Of Visceral Leishmaniasis Reported,Reported Cases of Visceral Leishmaniasis,, -WHO/NTD_LEPR5,Leprosy - Number Of New G2D Cases,,, -WHO/NTD_YAWSNUM,Number Of Cases Of Yaws Reported,Number Of Cases Of Yaws Reported,, -WHO/NUTOVERWEIGHTPREV,Overweight Prevalence Among Children Under 5 Years Of Age (%),Percentage Of Overweight Prevalence Among Children Under 5 Years Old,, -WHO/NUTRITION_ANAEMIA_CHILDREN_PREV,Prevalence Of Anaemia In Children Aged 6-59 Months (%),,, -WHO/NUTRITION_WA_2,Prevalence Of Underweight Children Under 5 Years Of Age (% Weight-For-Age <-2 Sd) (%),Prevalence Of Underweight Children Under 5 Years Of Age,, -WHO/NUTRITION_WH_2,Prevalence Of Wasted Children Under 5 Years Of Age (% Weight-For-Height <-2 Sd),Prevalence of Wasted Children Under 5 Years Old,, -WHO/NUTRITION_WH_3,Prevalence Of Severely Wasted Children Under 5 Years Of Age (% Weight-For-Height <-3 Sd),Percentage Prevalence Of Severely Wasted Children Under 5 Years Of Age,, -WHO/NUTSTUNTINGPREV,Stunting Prevalence Among Children Under 5 Years Of Age (%),Percentage of Stunting Prevalence Among Children Under 5 Years Of Age,, -WHO/poliov_Female,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Female",Polio Immunization Coverage Among One-Year-Olds Female Population,, -WHO/poliov_Male,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Male",,, -WHO/poliov_Rural,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Rural",Percentage of Polio Immunization Coverage Among 1-Year-olds in Rural Areas,, -WHO/poliov_Urban,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Urban",Percentage of Polio Immunization Coverage Among One-Year-Old in Urban Areas,, -WHO/SA_0000001418,"Age-Standardized DALYs, Alcohol Use Disorders, Per 100,000",Age-Standardized DALYs in Alcohol Use Disorders,, -WHO/SA_0000001419,"Age-Standardized DALYs, Breast Cancer, Per 100,000",Age-Standardized Daily With Breast Cancer,, -WHO/SA_0000001420,"Age-Standardized DALYs, Colon And Rectum Cancers, Per 100,000",Standardized Age Dalys for Colon And Rectum Cancer,, -WHO/SA_0000001421,"Age-Standardized DALYs, Diabetes Mellitus, Per 100,000",,, -WHO/SA_0000001422,"Age-Standardized DALYs, Drownings, Per 100,000",Age-Standardized DALYs of Drownings,, -WHO/SA_0000001423,"Age-Standardized DALYs, Falls, Per 100,000",,, -WHO/SA_0000001424,"Age-Standardized DALYs, Fires, Per 100,000",Age-Standardized DALYs of Fires,, -WHO/SA_0000001425,"Age-Standardized DALYs, Ischaemic Heart Disease, Per 100,000",Age-Standardized DALYs for Heart Diseases,, -WHO/SA_0000001426,"Age-Standardized DALYs, Liver Cancer, Per 100,000",,, -WHO/SA_0000001427,"Age-Standardized DALYs, Liver Cirrhosis, Per 100,000",Age-Standardized DALYs Caused By Liver Cirrhosis,, -WHO/SA_0000001429,"Age-Standardized DALYs, Mouth And Oropharynx Cancer, Per 100,000",Age-Standardized DALYs Due To Mouth And Oropharynx Cancer,, -WHO/SA_0000001430,"Age-Standardized DALYs, Oesophagus Cancer, Per 100,000",,, -WHO/SA_0000001431,"Age-Standardized DALYs, Poisoning, Per 100,000",Age-Standardized DALYs Caused By Poisoning,, -WHO/SA_0000001432,"Age-Standardized DALYs, Prematurity And Low Birth Rate, Per 100,000",Prematurity And Low Birth Rate Due to Age-Standardized DALYs,, -WHO/SA_0000001433,"Age-Standardized DALYs, Road Traffic Accidents, Per 100,000",,, -WHO/SA_0000001434,"Age-Standardized DALYs, Self-Inflicted Injury, Per 100,000",Age-Standardized DALYs Caused by Self-Inflicted Injuries,, -WHO/SA_0000001435,"Age-Standardized DALYs, Other Unintentional Injuries, Per 100,000",Age-Standardized DALYs of Other Unintentional Injuries,, -WHO/SA_0000001436,"Age-Standardized DALYs, Violence, Per 100,000",,, -WHO/SA_0000001437,"Age-Standardized Death Rates, Alcohol Use Disorders, Per 100,000",Age-Standardized Death Rates Of Alcohol Use Disorders,, -WHO/SA_0000001438,"Age-Standardized Death Rates, Breast Cancer, Per 100,000","Age-Standardized Death Rates Caused By Breast Cancer Per 100,000",, -WHO/SA_0000001439,"Age-Standardized Death Rates, Colon And Rectum Cancers, Per 100,000",Age-Standardized Death Rates of Colon and Rectum Cancers,, -WHO/SA_0000001440,"Age-Standardized Death Rates, Diabetes Mellitus, Per 100,000",Age-Standardized Death Rates Diabetes Mellitus,, -WHO/SA_0000001441,"Age-Standardized Death Rates, Drownings, Per 100,000",Age-Standardized Death Rates Of Drownings,, -WHO/SA_0000001442,"Age-Standardized Death Rates, Falls, Per 100,000",Age-Standardized Death Rates Due to Falls,, -WHO/SA_0000001443,"Age-Standardized Death Rates, Fires, Per 100,000",Age-Standardized Death Rates Caused By Fires,, -WHO/SA_0000001444,"Age-Standardized Death Rates, Ischaemic Heart Disease, Per 100,000",Age-Standardized Death Rates of Population with Ischaemic Heart Disease,, -WHO/SA_0000001445,"Age-Standardized Death Rates, Liver Cancer, Per 100,000",,, -WHO/SA_0000001446,"Age-Standardized Death Rates, Liver Cirrhosis, Per 100,000",Age-Standardized Death Rates Due to Liver Cirrhosis,, -WHO/SA_0000001448,"Age-Standardized Death Rates, Mouth And Oropharynx Cancer, Per 100,000",Age-Standardized Death Rates Caused by Mouth and Oropharynx Cancer,, -WHO/SA_0000001449,"Age-Standardized Death Rates, Oesophagus Cancer, Per 100,000",Deaths Caused by Oesophagus Cancer,, -WHO/SA_0000001450,"Age-Standardized Death Rates, Poisoning, Per 100,000",,, -WHO/SA_0000001451,"Age-Standardized Death Rates, Prematurity And Low Birth Rate, Per 100,000",Age-Standardized Death Rates Due to Prematurity And Low Birth Rate,, -WHO/SA_0000001452,"Age-Standardized Death Rates, Road Traffic Accidents, Per 100,000",,, -WHO/SA_0000001453,"Age-Standardized Death Rates, Self-Inflicted Injury, Per 100,000",Age-Standardized Death Rates By Self-Inflicted Injury,, -WHO/SA_0000001454,"Age-Standardized Death Rates, Other Unintentional Injuries, Per 100,000",Age-Standardized Death Rates Caused By Unintentional Injuries,, -WHO/SA_0000001455,"Age-Standardized Death Rates, Violence, Per 100,000",Age-Standardized Death Rates Caused by Violence,, -WHO/SA_0000001456,"Age-Standardized Death Rates (15+ Years), Alcoholic Liver Disease, Per 100,000",Age-Standardized Death Of Alcoholic Liver Disease,, -WHO/SA_0000001458,"Age-Standardized Death Rates (15+ Years), Poisoning, Per 100,000",Age-Standardized Deaths by Poisoning,, -WHO/SA_0000001460,"Age-Standardized Death Rates (15+ Years), Violence, Per 100,000",Age-Standardized Death Rates Aged 15+ Years Violence Rate,, -WHO/SA_0000001689,"Age-Standardized DALYs, Cerebrovascular Disease, Per 100,000",,, -WHO/SA_0000001690,"Age-Standardized Death Rates, Cerebrovascular Disease, Per 100,000",Age-Standardized Death Rates Due to Cerebrovascular Diseases,, -WHO/SDG_SH_DTH_RNCOM_ChronicRespiratoryDiseases,"Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Chronic Respiratory Diseases",Deaths Attributed To Non-Communicable Diseases,, -WHO/SDG_SH_DTH_RNCOM_DiabetesMellitus,"Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Diabetes Mellitus",Deaths Attributed To Diabetes Mellitus,, -WHO/SDG_SH_DTH_RNCOM_MajorCardiovascularDiseases,"Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Major Cardiovascular Diseases",Deaths Attributed To Non-Communicable Diseases By Type Of Disease And Sex in Major Cardiovascular Diseases,, -WHO/SDG_SH_DTH_RNCOM_MalignantNeoplasms,"Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Malignant Neoplasms",Number Of Deaths Attributed To Malignant Neoplasms By Type Of Disease And Sex,, -WindSpeed_UComponent_Height10Meters,"Wind Speed: Meter 10, UComponent",Wind Speed in Meters,, -WindSpeed_VComponent_Height10Meters,"Wind Speed: Meter 10, VComponent",Component Wind Speed With 10 Meters,, -WithdrawalRate_Water_Aquaculture,Withdrawal Rate of Water: Aquaculture,Withdrawal Rate of Water For Aquaculture,, -WithdrawalRate_Water_Aquaculture_FreshWater,"Withdrawal Rate of Water: Aquaculture, Fresh Water",Withdrawal Rate of Fresh Water for Aquaculture,, -WithdrawalRate_Water_Aquaculture_GroundWater,"Withdrawal Rate of Water: Aquaculture, Ground Water",Withdrawal Rate of Ground Water for Aquaculture,, -WithdrawalRate_Water_Aquaculture_SalineWater,"Withdrawal Rate of Water: Aquaculture, Saline Water",Withdrawal Rate of Saline Water in Aquaculture,, -WithdrawalRate_Water_Aquaculture_SurfaceWater,"Withdrawal Rate of Water: Aquaculture, Surface Water",Withdrawal Rate of Surface Water For Aquaculture,, -WithdrawalRate_Water_Domestic,Withdrawal Rate of Water: Domestic,Withdrawal Rate of Water For Domestic Use,, -WithdrawalRate_Water_Domestic_FreshWater,"Withdrawal Rate of Water: Domestic, Fresh Water",Withdrawal Rate of Fresh Water Domestic,, -WithdrawalRate_Water_Domestic_GroundWater,"Withdrawal Rate of Water: Domestic, Ground Water",Withdrawal of Domestic Water From The Ground,, -WithdrawalRate_Water_Domestic_SalineWater,"Withdrawal Rate of Water: Domestic, Saline Water",Withdrawal Rate of Saline Water for Domestic Use,, -WithdrawalRate_Water_Domestic_SurfaceWater,"Withdrawal Rate of Water: Domestic, Surface Water",Withdrawal Rate of Domestic Surface Water,, -WithdrawalRate_Water_Industrial,Withdrawal Rate of Water: Industrial,Withdrawal Rate of Water For Industrial Use,, -WithdrawalRate_Water_Industrial_FreshWater,"Withdrawal Rate of Water: Industrial, Fresh Water",Withdrawal Rate Of Fresh Water For Industrial Use,, -WithdrawalRate_Water_Industrial_GroundWater,"Withdrawal Rate of Water: Industrial, Ground Water",Withdrawal Rate of Groundwater For Industrial Use,, -WithdrawalRate_Water_Industrial_SalineWater,"Withdrawal Rate of Water: Industrial, Saline Water",Withdrawal Rate Of Saline Water,, -WithdrawalRate_Water_Industrial_SurfaceWater,"Withdrawal Rate of Water: Industrial, Surface Water",Withdrawal Rate of Surface Water in Industrial,, -WithdrawalRate_Water_Irrigation,Withdrawal Rate of Water: Irrigation,Withdrawal Rate of Water For Irrigation,, -WithdrawalRate_Water_Irrigation_FreshWater,"Withdrawal Rate of Water: Irrigation, Fresh Water",Withdrawal Rate of Irrigation Water,, -WithdrawalRate_Water_Irrigation_GroundWater,"Withdrawal Rate of Water: Irrigation, Ground Water",Withdrawal Rate of Groundwater For Irrigation,, -WithdrawalRate_Water_Irrigation_SalineWater,"Withdrawal Rate of Water: Irrigation, Saline Water",Withdrawal Rate of Water For Irrigation Saline Water,, -WithdrawalRate_Water_Irrigation_SurfaceWater,"Withdrawal Rate of Water: Irrigation, Surface Water",Withdrawal Rate of Surface Water for Irrigation,, -WithdrawalRate_Water_Livestock,Withdrawal Rate of Water: Livestock,Withdrawal Rate of Water For Livestock,, -WithdrawalRate_Water_Livestock_FreshWater,"Withdrawal Rate of Water: Livestock, Fresh Water",Withdrawal Rate Of Livestock FreshWater,, -WithdrawalRate_Water_Livestock_GroundWater,"Withdrawal Rate of Water: Livestock, Ground Water",Withdrawal Rate of Groundwater For Livestock,, -WithdrawalRate_Water_Livestock_SalineWater,"Withdrawal Rate of Water: Livestock, Saline Water",Withdrawal Rate of Saline Water in Livestock,, -WithdrawalRate_Water_Livestock_SurfaceWater,"Withdrawal Rate of Water: Livestock, Surface Water",Withdrawal Rate of Surface Water For Livestock,, -WithdrawalRate_Water_Mining,Withdrawal Rate of Water: Mining,Withdrawal Rate of Water For Mining,, -WithdrawalRate_Water_Mining_FreshWater,"Withdrawal Rate of Water: Mining, Fresh Water",Withdrawal Rate of Fresh Water For Mining,, -WithdrawalRate_Water_Mining_GroundWater,"Withdrawal Rate of Water: Mining, Ground Water",Withdrawal Rate of Groundwater in Mining,, -WithdrawalRate_Water_Mining_SalineWater,"Withdrawal Rate of Water: Mining, Saline Water",Withdrawal Rate of Saline Water in Mining,, -WithdrawalRate_Water_Mining_SurfaceWater,"Withdrawal Rate of Water: Mining, Surface Water",Withdrawal Rate of Surface Water in Mining,, -WithdrawalRate_Water_PublicSupply,Withdrawal Rate of Water: Public Supply,Withdrawal Rate of Water For Public Supply,, -WithdrawalRate_Water_PublicSupply_FreshWater,"Withdrawal Rate of Water: Public Supply, Fresh Water",Withdrawal Rate Of Public Supply Fresh Water,, -WithdrawalRate_Water_PublicSupply_GroundWater,"Withdrawal Rate of Water: Public Supply, Ground Water",Water Withdrawal Rate,, -WithdrawalRate_Water_PublicSupply_SalineWater,"Withdrawal Rate of Water: Public Supply, Saline Water",Withdrawal Rate of Public Supply And Saline Water,, -WithdrawalRate_Water_PublicSupply_SurfaceWater,"Withdrawal Rate of Water: Public Supply, Surface Water",Rate of Surface Water in Public Supply,, -WithdrawalRate_Water_Thermoelectric,Withdrawal Rate of Water: Thermoelectric,Withdrawal Rate of Water For Thermoelectric,, -WithdrawalRate_Water_Thermoelectric_FreshWater,"Withdrawal Rate of Water: Thermoelectric, Fresh Water",Withdrawal Rate of Fresh Water For Thermoelectric,, -WithdrawalRate_Water_Thermoelectric_GroundWater,"Withdrawal Rate of Water: Thermoelectric, Ground Water",Withdrawal Rate of Thermoelectric and Ground Water,, -WithdrawalRate_Water_Thermoelectric_SalineWater,"Withdrawal Rate of Water: Thermoelectric, Saline Water",Withdrawal Rate Of Saline Water For Thermoelectric Use,, -WithdrawalRate_Water_Thermoelectric_SurfaceWater,"Withdrawal Rate of Water: Thermoelectric, Surface Water",Withdrawal Rate of Thermoelectric Surface Water,, diff --git a/tools/nl/embeddings/data/curated_input/main/main_topics.csv b/tools/nl/embeddings/data/curated_input/main/main_topics.csv index 684bb08710..ac4a55f836 100644 --- a/tools/nl/embeddings/data/curated_input/main/main_topics.csv +++ b/tools/nl/embeddings/data/curated_input/main/main_topics.csv @@ -2,7 +2,7 @@ dcid,Name,Description,Override_Alternatives,Curated_Alternatives dc/topic/AdolescentBirthRate,Adolescent Birth Rate,Adolescent Birth Rate,, dc/topic/AdultCorrectionalFacilitiesResidents,Adult Correctional Facilities Residents,Adult Correctional Facilities Residents,, dc/topic/Age,Age,Age,, -dc/topic/AgeDistribution,Age Distribution,Age Distribution,,population by age; +dc/topic/AgeDistribution,,,,Age based demographic breakdown; dc/topic/AgeMedians,Age Medians,Age Medians,, dc/topic/AgriculturalProduction,,Agricultural Output,,Agricultural Production; Agricultural Output; Output from agricultural activities;Total agricultural output dc/topic/Agriculture,,Agriculture,,Agriculture; Farming;Farming information; Agriculture data; Agriculture statistics; Data related to agriculture; Information on farming; @@ -47,6 +47,7 @@ dc/topic/ClimateChange,Impact of Climate Change,Climate Change impact,,Climate C dc/topic/CoastalFlood,Coastal Flood,Coastal Flood,, dc/topic/ColdEvent,Cold Event,Cold Event,,excessive cold; very cold; freezing; dc/topic/CollegeOrUniversityStudentHousingResidents,College Or University Student Housing Residents,College Or University Student Housing Residents,, +dc/topic/CollegeEducationAttainment,College Education Attainment,,, dc/topic/CommuteMode,Commute Modes,Commute Modes,,modes of commute; dc/topic/CommuteModeByOccupation,Commute Mode By Occupation,Commute Mode By Occupation,,commute options by occupation; dc/topic/CommuteTime,Commute Time,Commute Time,,time spend during commute; time spent traveling to work; time spent travelling from work; @@ -126,8 +127,8 @@ dc/topic/HealthBehavior,Health behaviors,Health behavior,,Healthy behaviors; Unh dc/topic/HealthConditions,Health conditions,Health conditions,, dc/topic/HealthEquity,Health equity,Health equity,,fairness in health; fairness of health conditions; dc/topic/HealthInsurance,Health Insurance,Health Insurance,, -dc/topic/HealthInsuranceByGender,Health Insurance by gender,Health Insurance split by gender,,health insurance distribution by gender; health insurance breakdown by gender; -dc/topic/HealthInsuranceByRace,Health Insurance by race,Health insurance split by race,,health insurance distribution by race; health insurance breakdown by race; +dc/topic/HealthInsuranceByGender,,,,Breakdown of health insurance coverage by gender; +dc/topic/HealthInsuranceByRace,,,,Breakdown of health insurance coverage by race; dc/topic/HealthInsuranceType,Health Insurance types,Health insurance by types,,types of health insurance; dc/topic/HealthWorkerDensity,Health Worker Density,Health Worker Density,, dc/topic/HealthcareExpenditure,Healthcare Expenditure,Healthcare Expenditure,,amount spent on health; health expenses; @@ -142,11 +143,11 @@ dc/topic/HispanicOrLatinoPopulationByAge,Hispanic Or Latino Population By Age,Hi dc/topic/HomeOwnership,Home Ownership,Home Ownership,,owners of houses; housing owners; house ownership; dc/topic/HouseFeatures,House Features,House Features,,features of a house; features in a home; dc/topic/HouseOccupants,House Occupants,House Occupants,,people living in the house; home occupants; -dc/topic/HouseholdIncomeDistribution,Household Income Distribution,Household Income Distribution,,income distribution for households; +dc/topic/HouseholdIncomeDistribution,,,,Breakdown of Household Income by household types; dc/topic/HousesByDateofBuild,Houses by Date Built,Houses by Date Built,,date built of houses; houses by date build; build date of houses; dc/topic/HousesByFacilities,Houses by Facilities,Houses by Facilities,,facilities in houses; dc/topic/HousesByHomeValue,Houses by Home Value,Houses by Home Value,,home value of houses; -dc/topic/HousesByHouseholderAge,Houses by Age of Residents,Houses by Age of Residents,,age distribution of house residents; home residents age distribution; +dc/topic/HousesByHouseholderAge,,,,breakdown of houses by the householder age; dc/topic/HousesByHouseholderEducationalAttainment,Houses by Educational Attainment of Owner,Houses by Educational Attainment of Owner,,education level of home owner; home owner's education; education attainment of home owners; houses by home owner's education level; dc/topic/HousesByHouseholderRace,Houses by Race of Occupants,Houses by Race of Occupants,,home residents race; houses by resident race; racial breakdown of house residents; dc/topic/HousesByOwnershipCost,Houses by Ownership Cost,Houses by Ownership Cost,,cost of home ownership; housing cost; cost of owning a home; cost of owning a house; @@ -159,16 +160,15 @@ dc/topic/Incarceration,Incarceration,Incarceration,, dc/topic/Income,Income,Income from Earnings,,Earnings; Salary; pay; compensation dc/topic/IncomeEquity,Income Equity,Income Equity,,fariness in income; fairness of income distribution; equity of income distribution; dc/topic/IndividualIncomeByIndustry,Individual Income By Industry,Individual Income By Industry,,individual income across industries; -dc/topic/IndividualIncomeDistribution,Individual Income Distribution,Individual Income Distribution,, +dc/topic/IndividualIncomeDistribution,,,,Population breakdown by income level; dc/topic/IndustriesByGDP,Industries By GDP Contribution,Industries By GDP Contribution,,contribution to the GDP by industries; GDP contribution by industries; dc/topic/IndustriesByRevenue,Industries By Revenue,Industries By Revenue,,revenue across industries; revenue breakdown by industries; dc/topic/InfantMortality,Infant Mortality,Infant Mortality,,mortality among infants; death among infants; infant deaths; -dc/topic/InflationAdjustedGDP,Inflation Adjusted GDP,Inflation Adjusted GDP,,inflation adjusted gross domestic production; dc/topic/InstitutionalizedGroupQuartersResidents,Institutionalized Group Quarters Residents,Institutionalized Group Quarters Residents,, dc/topic/Internet,Internet,Internet,, dc/topic/InternetAccess,Internet Access,Internet Access,,internet penetration; digital access; digital equity; digital penetration; dc/topic/InternetPublishingAndBroadcastingIndustry,Internet Publishing And Broadcasting Industry,Internet Publishing And Broadcasting Industry,, -dc/topic/Jobs,Jobs,Jobs,, Careers; Professions; Work Occupations; Employment Positions; Job Roles; Occupational professions; distribution of jobs; distribution of workers; +dc/topic/Jobs,Jobs,Jobs,, Careers; Professions; Work Occupations; Employment Positions; Job Roles; Occupational professions; breakdown of workers by jobs; dc/topic/JusticeSystemEquity,Justice System Equity,Justice System Equity,,Equity of the justice system; equity in the justice system; fariness in the justice system; dc/topic/JuvenileFacilitiesResidents,Juvenile Facilities Residents,Juvenile Facilities Residents,, dc/topic/KidneyDisease,Kidney Disease,Kidney Disease,, @@ -178,7 +178,7 @@ dc/topic/LandCover,Land Cover,Land Cover,, dc/topic/LandUseAndCoverage,Land Use And Coverage,Land Use And Coverage,,land use; dc/topic/Landslide,Landslide,Landslide,, dc/topic/Language,Language,Language,, -dc/topic/LanguageSpokenAtHome_ForeignBorn,Language Spoken At Home By Immigrants,Language Spoken At Home By Immigrants,,immigrants language at home; language at home for foreign born; +dc/topic/LanguageSpokenAtHome_ForeignBorn,,,,breakdown of foreign born people by language at home; dc/topic/LevelOfEducationalAttainment,Level Of Educational Attainment,Level Of Educational Attainment,,education attainment level; level of qualification; dc/topic/LifeExpectancy,Life Expectancy,Life Expectancy,, dc/topic/Literacy,,Literacy,, @@ -211,7 +211,7 @@ dc/topic/MobilePhoneOwnership,Mobile Phone Ownership,Mobile Phone Ownership,, dc/topic/MobilePhoneUsage,Mobile Phone Usage,Mobile Phone Usage,, dc/topic/Mortality,Mortality,Mortality,,Death; Issues relating to death; dc/topic/MortalityAmongIncarcerated,Mortality among incarcerated,Mortality among those in jail,,deaths among those in jail; deaths of incarcerated; incarcerated deaths; -dc/topic/MortalityByGender,Mortality by gender,Mortality by gender,,Mortality split by gender; mortality distribution by gender; mortality breakdown by gender; +dc/topic/MortalityByGender,Mortality by gender,Mortality by gender,,Mortality split by gender; mortality breakdown by gender; dc/topic/MortalityByRace,Mortality by race,Mortality by race,,racial breakdown of mortality; deaths by race; mortality breakdown by race; dc/topic/Nationality,Nationality,Nationality,, dc/topic/NativeHawaiianAndOtherPacificIslanderAloneFemalePopulationByAge,Native Hawaiian And Other Pacific Islander Female Population By Age,Native Hawaiian And Other Pacific Islander Female Population By Age,, @@ -225,7 +225,7 @@ dc/topic/NeverMarriedPopulationByAge,Never Married Population By Age,Never Marri dc/topic/NeverMarriedPopulationByDemographic,Never Married Population by Demographic,Never Married Population by Demographic,,demographics of the never married population; demographics of people who never married; dc/topic/NitrogenDioxide,Nitrogen Dioxide,Nitrogen Dioxide,,NO2; NO2 pollutant; dc/topic/NoHealthInsurance,No Health Insurance,No Health Insurance,,people with no health insurance; people without access to health insurance; without health insurance; -dc/topic/NoHealthInsuranceByGender,No Health Insurance by gender,No Health Insurance by gender,,distribution of no health insurance by gender; without health insurnace for gender; +dc/topic/NoHealthInsuranceByGender,No Health Insurance by gender,No Health Insurance by gender,,breakdown of population without health insurance by gender; dc/topic/NoHealthInsuranceByIncome,No Health Insurance by income,No Health Insurance by income,,no health insurance split by income; no health insurance across income levels; dc/topic/NoHealthInsuranceByRace,No Health Insurance by race,No Health Insurance by race,,racial breakdown of those without health insurance; no health insurance across race; no health insurance by race; dc/topic/NonEnglishLanguageAtHome,Non-English Languages Spoken At Home,Non-English Languages Spoken At Home,,non-english at home; non-english language at home; spoken language at home is not English; other languages spoken at home; @@ -249,7 +249,6 @@ dc/topic/PhysicalActivity,Physical Activity,Physical Activity,, dc/topic/Physicians,Physicians,Physicians,, dc/topic/PlaceOfBirth,Place of Birth,Place of Birth,, dc/topic/Pollutants,Pollutants,Pollutants,, -dc/topic/PopulationByAgeDistribution,Population By Age Distribution,Population By Age Distribution,,population distribution by age; dc/topic/PopulationEnrolledInSchoolTypeByRace,Population Enrolled In School Type By Race,Population Enrolled In School Type By Race,,students enrolled in school type by race; dc/topic/PopulationFormerSmoker,Population Former Smoker,Population Former Smoker,, dc/topic/PopulationFormerSmoker,Population Former Smoker,Population Former Smoker,, @@ -258,7 +257,6 @@ dc/topic/PopulationNonsmokingTobaccoUser,Population Nonsmoking Tobacco User,Popu dc/topic/PopulationNormalWeight,Population Normal Weight,Population Normal Weight,, dc/topic/PopulationNormalWeight,Population Normal Weight,Population Normal Weight,, dc/topic/PopulationWithArthritisByAge,Population With Arthritis By Age,Population With Arthritis By Age,, -dc/topic/PopulationWithAsthmaByAge,Population With Asthma By Age,Population With Asthma By Age,, dc/topic/PopulationWithCancerByAge,Population With Cancer By Age,Population With Cancer By Age,, dc/topic/PopulationWithDementiaByAge,Population With Dementia By Age,Population With Dementia By Age,, dc/topic/PopulationWithDiabetesByAge,Population With Diabetes By Age,Population With Diabetes By Age,, @@ -281,7 +279,7 @@ dc/topic/PrivateHealthInsuranceType,Private health insurance,Private health insu dc/topic/ProductionConsumptionandWaste,Production and Consumption Waste,Production and Consumption Waste,,Waste due to production and consumption; dc/topic/ProjectedClimateExtremes,Projected Climate Extremes,Projected Climate Extremes,,Climate Extremes; dc/topic/PublicHealthInsuranceType,Public health insurance,Public health insurance,,people with public health insurance; health insurance public type; -dc/topic/Race,Race,Race,,racial breakdown; +dc/topic/Race,Race,Race,,population by race; dc/topic/Rainfall,Rainfall,Rainfall,,rain; dc/topic/Religion,Religion,Religion,, dc/topic/Remittance,Remittance,Remittance,,remittances; @@ -315,7 +313,7 @@ dc/topic/StudentPopulation,Student Population,Student Population,,Students dc/topic/StudentPopulationDemographics,Student Population Demographics,Student Population Demographics,,Student demographics; dc/topic/StudentTeacherRatio,Student Teacher Ratio,Student Teacher Ratio,,ratio of students to teachers; dc/topic/StudentsInCollege,Students in College,Students in College,,undergraduate students; undergrad students; undergrads; college students; -dc/topic/StudentsInGraduateOrProfessionalSchool,Students in Graduate or Professional School,Students in Graduate or Professional School,,students in graduate school; students in professional school; students enrolled in grad school; PE students; grad students; +dc/topic/StudentsInGraduateOrProfessionalSchool,,,,race breakdown of students in Graduate or Professional School; dc/topic/StudentsInHighSchool,Student in High School,Student in High School,,students enrolled in high schools; high school students; dc/topic/StudentsInKindergarten,Students in Kindergarten,Students in Kindergarten,,students in KG; KG students; kindergarten students; dc/topic/StudentsInMiddleSchool,Students in Middle School,Students in Middle School,,middle school students; diff --git a/tools/nl/embeddings/data/curated_input/main/sheets_svs.csv b/tools/nl/embeddings/data/curated_input/main/sheets_svs.csv index 83164bd6b4..c43caf501c 100644 --- a/tools/nl/embeddings/data/curated_input/main/sheets_svs.csv +++ b/tools/nl/embeddings/data/curated_input/main/sheets_svs.csv @@ -1,1160 +1,3656 @@ dcid,Name,Description,Override_Alternatives,Curated_Alternatives -AirPollutant_Cancer_Risk,,Cancer Risk From Air Pollutants,, -AirQualityIndex_AirPollutant,Air Quality Index Pollutant,Air Quality Index Pollutant,,Air quality index pollutant;Air quality index pollutant; AQI pollutant; Air pollution level; Air pollution measure; Air quality measurement; -AmountFarmInventory_WinterWheatForGrain,Amount of Farm Inventory: Winter Wheat for Grain,Amount of Winter Wheat for Grain Grown,,Total Farm Inventory of Winter Wheat for Grain;Total inventory of winter wheat for grain on farms; Total winter wheat grain held by farms; Quantity of winter wheat grain in farm inventory; Amount of winter wheat for grain in farm inventory; Farm inventory of winter wheat for grain; -Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,,Percentage of People Aged 15 Years or More Who Consume Alcohol,, -Amount_Consumption_Electricity_PerCapita,,Electricity Used Per Capita,, -Amount_Consumption_Energy_PerCapita,,Energy Used Per Capita,, -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,,Percent of Total Government Expenditure Spent on Education,, -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal Percent of Nominal Gross Domestic Production (GDP) Spent on Education,,Population Working in Legal Services,,number of law industry workers; people working in law; how many legal service workers are there; population working in legal services; population of legal service workers; -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,,Percent of Nominal Gross Domestic Production (GDP) Spent on Education,, -Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,"Amount of Economic Activity: Expenditure Activity, Healthcare Expenditure (Per Capita)",Healthcare Expenditure Per Person,,Expense spent on healthcare per individual; Healthcare cost per person; Average healthcare expenditure; Total healthcare cost; Per capita healthcare spending; -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,,Government Expenditure on Military Activities,, -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,,Percent of Total Government Expenditure Spent on Military Activities,, -Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Accommodation And Food Services (NAICS/72)",Gross Domestic Product (GDP) of the Accommodation and Food Services Industry,,Gross Domestic Product (GDP) of the accommodation and food services industry;Economic output of the accommodation and food services sector;Value generated by the accommodation and food services industry;The GDP contribution of the accommodation and food services field;How much the accommodation and food services sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Administrative And Support And Waste Management Services (NAICS/56)",Gross Domestic Product (GDP) of the Administrative and Support and Waste Management Services Industry,,Gross Domestic Product (GDP) of the administrative and support and waste management services industry;Economic output of the administrative and support services sector;Value generated by the administrative and waste management services industry;The GDP contribution of the administrative and support and waste management field;How much the administrative and support and waste management sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Gross Domestic Product (GDP) of the Agriculture, Forestry, Fishing and Hunting Industry",,"Gross Domestic Product (GDP) of the agriculture, forestry, fishing, and hunting industry;Economic output of the agriculture, forestry, fishing, and hunting sector;Value generated by the agriculture, forestry, fishing, and hunting industry;The GDP contribution of the agriculture, forestry, fishing, and hunting field;How much the agriculture, forestry, fishing, and hunting sector contributes to the GDP.;" -Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Arts, Entertainment, And Recreation (NAICS/71)","Gross Domestic Product (GDP) of the Arts, Entertainment, and Recreation Industry",,"Gross Domestic Product (GDP) of the arts, entertainment, and recreation industry;Economic output of the arts, entertainment, and recreation sector;Value generated by the arts, entertainment, and recreation industry;The GDP contribution of the arts, entertainment, and recreation field;How much the arts, entertainment, and recreation sector contributes to the GDP.;" -Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Construction (NAICS/23)",Gross Domestic Product (GDP) of the Construction Industry,,Gross Domestic Product (GDP) of the construction industry;Economic output of the construction sector;Value generated by the construction industry;The GDP contribution of the construction field;How much the construction sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Educational Services (NAICS/61)",Gross Domestic Product (GDP) of the Educational Services Industry,,Gross Domestic Product (GDP) of the educational services industry;Economic output of the educational services sector;Value generated by the educational services industry;The GDP contribution of the educational services field;How much the educational services sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Finance And Insurance (NAICS/52)",Gross Domestic Product (GDP) of the Finance and Insurance Industry,,Gross Domestic Product (GDP) of the finance and insurance industry;Economic output of the finance and insurance sector;Value generated by the finance and insurance industry;The GDP contribution of the finance and insurance field;How much the finance and insurance sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Health Care And Social Assistance (NAICS/62)",Gross Domestic Product (GDP) of the Health Care and Social Assistance Industry,,Gross Domestic Product (GDP) of the health care and social assistance industry;Economic output of the health care and social assistance sector;Value generated by the health care and social assistance industry;The GDP contribution of the health care and social assistance field;How much the health care and social assistance sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Information (NAICS/51)",Gross Domestic Product (GDP) of the Information Industry,,Gross Domestic Product (GDP) of the information industry;Economic output of the information sector;Value generated by the information industry;The GDP contribution of the information field;How much the information sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Management of Companies And Enterprises (NAICS/55)",Gross Domestic Product (GDP) of the Management of Companies and Enterprises Industry,,Gross Domestic Product (GDP) of the management of companies and enterprises industry;Economic output of the management of companies and enterprises sector;Value generated by the management of companies and enterprises industry;The GDP contribution of the management of companies and enterprises field;How much the management of companies and enterprises sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Gross Domestic Product (GDP) of the Mining, Quarrying, and Oil and Gas Extraction Industry",,"Gross Domestic Product (GDP) of the mining, quarrying, and oil and gas extraction industry;Economic output of the mining, quarrying, and oil and gas extraction sector;Value generated by the mining, quarrying, and oil and gas extraction industry;The GDP contribution of the mining, quarrying, and oil and gas extraction field;How much the mining, quarrying, and oil and gas extraction sector contributes to the GDP.;" -Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Other Services, Except Public Administration (NAICS/81)","Gross Domestic Product (GDP) of Other Services, Except Public Administration Industry",,"Gross Domestic Product (GDP) of other services, except public administration industry;Economic output of the other services sector;Value generated by the other services industry;The GDP contribution of the other services field;How much the other services sector except public administration contributes to the GDP.;" -Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Professional, Scientific, And Technical Services (NAICS/54)","Gross Domestic Product (GDP) of the Professional, Scientific, and Technical Services Industry",,"Gross Domestic Product (GDP) of the professional, scientific, and technical services industry;Economic output of the professional, scientific, and technical services sector;Value generated by the professional, scientific, and technical services industry;The GDP contribution of the professional, scientific, and technical services field;How much the professional, scientific, and technical services sector contributes to the GDP.;" -Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Real Estate And Rental And Leasing (NAICS/53)",Gross Domestic Product (GDP) of the Real Estate and Rental and Leasing Industry,,Gross Domestic Product (GDP) of the real estate and rental and leasing industry;Economic output of the real estate and rental and leasing sector;Value generated by the real estate and rental and leasing industry;The GDP contribution of the real estate and rental and leasing field;How much the real estate and rental and leasing sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Utilities (NAICS/22)",Gross Domestic Product (GDP) of the Utilities Industry,,Gross Domestic Product (GDP) of the utilities industry;Economic output of the utilities sector;Value generated by the utilities industry;The GDP contribution of the utilities field;How much the utilities sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Wholesale Trade (NAICS/42)",Gross Domestic Product (GDP) of the Wholesale Trade Industry,,Gross Domestic Product (GDP) of the wholesale trade industry;Economic output of the wholesale trade sector;Value generated by the wholesale trade industry;The GDP contribution of the wholesale trade field;How much the wholesale trade sector contributes to the GDP.; -Amount_EconomicActivity_GrossDomesticProduction_Nominal,,Nominal Gross Domestic Production (GDP); GDP,,Nominal GDP; Total nominal domestic production; Nominal value of all domestic output; Nominal size of domestic production; Total nominal output; Nominal value of domestic goods and services; Total nominal domestic economic output; Nominal measure of domestic production; -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,,GDP per capita,,Nominal Gross Domestic Production (GDP) Per Capita; GDP per capita; -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,,Gross National Income Based on Purchasing Power Parity,, -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,,Gross National Income Based on Purchasing Power Parity Per Capita,, -Amount_FarmInventory_BarleyForGrain,Amount of Farm Inventory: Barley for Grain,Amount of Barley for Grain Grown,,Amount of Barley Grown;Amount of barley cultivated; Total barley grown; Quantity of barley produced; Amount of barley harvested; Total barley output; -Amount_FarmInventory_CornForSilageOrGreenchop,Amount of Farm Inventory: Corn for Silage or Greenchop,Amount of Corn for Silage or Greenchop Grown,,Amount of Silage produced;Total silage production; Amount of silage made; Quantity of silage produced; Total silage output; Farm silage production; -Amount_FarmInventory_Cotton,Amount of Farm Inventory: Cotton,Amount of Cotton Grown,,Amount of Cotton Grown;Total cotton grown; Amount of cotton harvested; Quantity of cotton grown; Total cotton output; Cotton production; -Amount_FarmInventory_DryEdibleBeans,Amount of Farm Inventory: Dry Edible Beans,Amount of Beans Grown,,Amount of Beans Grown;Total bean production; Quantity of beans grown; Amount of beans harvested; Total beans grown; Bean output; -Amount_FarmInventory_DurumWheatForGrain,Amount of Farm Inventory: Durum Wheat for Grain,Amount of Durum Wheat for Grain Grown,,Amount of Durum Wheat Grown;Total durum wheat production; Quantity of durum wheat grown; Amount of durum wheat harvested; Total durum wheat grown; Durum wheat output; -Amount_FarmInventory_FoodGrain,Produciton of food grains,,, -Amount_FarmInventory_Forage,Amount of Farm Inventory: Forage,Amount of Forage Produced,,Amount of Forage produced;Total forage production; Amount of forage made; Quantity of forage produced; Total forage output; Farm forage production; -Amount_FarmInventory_JuteOrMesta,Production of jute and mesta,,, -Amount_FarmInventory_OatsForGrain,Amount of Farm Inventory: Oats for Grain,Amount of Oats Grown,,Amount of Oats Grown;Total oat production; Quantity of oats grown; Amount of oats harvested; Total oats grown; Oat output; -Amount_FarmInventory_OtherSpringWheatForGrain,Amount of Farm Inventory: Other Spring Wheat for Grain,Amount of Other Spring Wheat for Grain Grown,,Amount of Spring Wheat Grown;Total spring wheat production; Quantity of spring wheat grown; Amount of spring wheat harvested; Total spring wheat grown; Spring wheat output; -Amount_FarmInventory_PeanutsForNuts,Amount of Farm Inventory: Peanuts for Nuts,Amount of Peanuts for Nuts Grown,,Amount of Peanuts Grown;Total peanut production; Quantity of peanuts grown; Amount of peanuts harvested; Total peanuts grown; Peanut output; -Amount_FarmInventory_PimaCotton,Amount of Farm Inventory: Pima Cotton,Amount of Pima Cotton Grown,,Amount of Pima Cotton Grown;Total Pima cotton production; Quantity of Pima cotton grown; Amount of Pima cotton harvested; Total Pima cotton grown; Pima cotton output; -Amount_FarmInventory_Pulses,Production of pulses,,, -Amount_FarmInventory_Rice,Total rice production; Quantity of rice grown;,Amount of Rice Grown,,Amount of Rice Grown;Total rice production; Quantity of rice grown; Amount of rice harvested; Total rice grown; Rice output; -Amount_FarmInventory_SorghumForGrain,Amount of Farm Inventory: Sorghum for Grain,Amount of Sorghum Grown,,Amount of Sorghum Grown;Total sorghum production; Quantity of sorghum grown; Amount of sorghum harvested; Total sorghum grown; Sorghum output; -Amount_FarmInventory_SorghumForSilageOrGreenchop,Amount of Farm Inventory: Sorghum for Silage or Greenchop,Amount of Sorghum for Silage or Greenchop Grown,,Total Farm Inventory of Sorghum for Silage or Greenchop;Total inventory of sorghum for silage or greenchop on farms; Total sorghum for silage or greenchop held by farms; Quantity of sorghum for silage or greenchop in farm inventory; Amount of sorghum for silage or greenchop in farm inventory; Farm inventory of sorghum for silage or greenchop; -Amount_FarmInventory_SugarbeetsForSugar,Amount of Farm Inventory: Sugarbeets for Sugar,Amount of Sugarbeets Grown,,Amount of Sugarbeets grown;Amount of sugarbeets grown on farms; Total sugarbeet production; Total amount of sugarbeets grown; Quantity of sugarbeets grown; Amount of sugarbeets harvested; -Amount_FarmInventory_Sugarcane,Production of sugarcane,,, -Amount_FarmInventory_SunflowerSeed,Amount of Farm Inventory: Sunflower Seed,Amount of Sunflower Seed Grown,,Amount of Sunflowerseed grown;Amount of sunflowerseed grown on farms; Total sunflowerseed production; Total amount of sunflowerseed grown; Quantity of sunflowerseed grown; Amount of sunflowerseed harvested; -Amount_FarmInventory_UplandCotton,Amount of Farm Inventory: Upland Cotton,Amount of Upland Cotton Grown,,Total Farm Inventory of Upland Cotton;Total inventory of upland cotton on farms; Total upland cotton held by farms; Quantity of upland cotton in farm inventory; Amount of upland cotton in farm inventory; Farm inventory of upland cotton; -Amount_FarmInventory_Wheat,Production of Wheat,,, -Amount_FarmInventory_WheatForGrain,Amount of Farm Inventory: Wheat for Grain,Amount of Wheat for Grain Grown,,Amount of Wheat Grown;Total wheat grown; Amount of wheat harvested; Quantity of wheat grown; Total wheat production; Wheat output; -Amount_Remittance_InwardRemittance,,Total Amount of Inward Remittances,, -Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,,Inward Remittances as a Percentage of Nominal Gross Domestic Production,, -Amount_Remittance_OutwardRemittance,,Total Amount of Outward Remittances,, -Amount_Stock,,Total Stock Value,, -Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,,Stock Value as a Percentage of Nominal Gross Domestic Production (GDP),, -Amout_FarmInventory_CornForGrain,Amount of Farm Inventory: Corn for Grain,Amount of Corn for Grain Grown,,Amount of Corn Grown;Total corn grown; Amount of corn harvested; Quantity of corn grown; Total corn production; Corn output; -Annual_Average_RetailPrice_Electricity,,Annual Average Retail Price of Electricity,, -Annual_Consumption_Electricity,Annual Consumption of Electricity,Annual Electricity Consumption,,amount of electricity consumed in a year;Amount of electricity consumed in a year; The amount of electricity used each year; The annual electricity consumption; The yearly energy usage; The total amount of electricity used in a year; -Annual_Count_ElectricityConsumer,"Number of customer accounts, all sectors, annual",Total Electricity Consumers in a Year,,Total electricity consumers in a year;Total electricity consumers in a year; The number of people using electricity annually; The amount of electricity used in a year; The yearly total of electricity consumption; The annual electricity demand; -Annual_Emissions_CarbonDioxide_NonBiogenic,,Annual Emissions of Non-Biogenic Carbon Dioxide,, -Annual_Emissions_GreenhouseGas,Greenhouse Gas Emissions,emissions from greenhouse gases; ghg emissions,,Greenhouse Gas Emissions; -Annual_Emissions_GreenhouseGas_NonBiogenic,,Annual Emissions of Non-Biogenic Greenhouse Gases,, -Annual_Emissions_Methane_NonBiogenic,,Annual Emissions of Non-Biogenic Methane,, -Annual_Emissions_NitrousOxide_NonBiogenic,,Annual Emissions of Non-Biogenic Nitrous Oxide,, -Annual_ExpectedLoss_NaturalHazardImpact,Annual Expected Loss from Natural Hazard Impact,Estimated Annual Cost From Natural Disaster Impacts,,Cost of natural disasters;Estimated annual cost from natural disaster impacts; How much it costs each year due to natural disasters; The yearly financial impact of natural disasters; The estimated cost of natural disasters on an annual basis; The annual price tag of natural disasters; -Annual_Generation_Electricity,"Net generation, all fuels, all sectors, annual","Energy Generation (All Fuels, All Sectors)",,Amount of electricity generated in a year; The total amount of electricity produced each year; The electricity production; The yearly energy output; The amount of power generated annually -Annual_Generation_Energy_Coal,Annual Generation of Energy: Coal,Annual Energy Generation From Coal,,Total energy generated from coal in a year;Total energy generated from coal in a year; The total amount of coal-generated power in a year; The annual output of coal-generated electricity; The yearly coal power production; The amount of electricity produced from coal in a year; -Annual_Generation_Fuel_CrudeOil,Annual Generation of Fuel: Crude Oil,Annual Energy Generation From Crude Oil,,Amount of crude oil generated in a year;Amount of crude oil generated in a year; The annual output of crude oil; The amount of crude oil produced each year; The yearly total of crude oil production; The annual crude oil supply; -Annual_Generation_Fuel_DieselOil,Annual Generation of Fuel: Diesel Oil,Annual Energy Generation From Diesel Oil,,amount of diesel oil generated in a year;Amount of diesel oil generated in a year; The annual output of diesel oil; The amount of diesel oil produced each year; The yearly total of diesel oil production; The annual diesel fuel supply; -Annual_Generation_Fuel_Nuclear,Annual Generation of Fuel: Nuclear,Annual Energy Generation From Nuclear Fuel,,amount of nuclear fuel generated in a year;Amount of nuclear fuel generated in a year; The annual output of nuclear fuel; The amount of nuclear fuel produced each year; The yearly total of nuclear fuel generation; The annual production of nuclear fuel; -Annual_WithdrawalRate_Water_AsAFractionOf_Annual_Reserve_Water,Annual ground water withdrawal against net annual availability (%),,,water withdrawal percentage -Area_Farm,Area of Farm,Total Farm Area,,total Farm Area; -Area_Farm_BarleyForGrain,Area of Farm: Barley for Grain,Total Area of Barley Farms,,total area of barley farms; -Area_Farm_CornForGrain,Area of Farm: Corn for Grain,Total Area of Farms Growing Corn,,total area of farms growing corn; -Area_Farm_CornForSilageOrGreenchop,Area of Farm: Corn for Silage or Greenchop,Total Area of Farms for Silage,,total area of farms for silage; -Area_Farm_Cotton,Area of Farm: Cotton,Area of Farms Growing Cotton,,area of farms growing cotton; -Area_Farm_Cropland,Area of Farm: Cropland,Area of Farms Used for Crop Cultivation,,area of farms used for crop cultivation; -Area_Farm_DryEdibleBeans,Area of Farm: Dry Edible Beans,Area of Farms Growing Beans,,area of farms growing beans; -Area_Farm_DurumWheatForGrain,Area of Farm: Durum Wheat for Grain,Area of Farms Growing Durum Wheat,,area of farms growing durum wheat; -Area_Farm_HarvestedCropland,Area of Farm: Harvested Cropland,Area of Farms With Harvested Cropland,,area of farms with harvested cropland; -Area_Farm_IrrigatedLand,Area of Farm: Irrigated Land,Area of Irrigated Lands on Farms,,area of irrigated lands on farms; -Area_Farm_OatsForGrain,Area of Farm: Oats for Grain,Area of Farms Growing Oats,,Area of farms growing oats; -Area_Farm_Orchards,Area of Farm: Orchards,Total Area of Farms With Orchards,,total area of farms with orchards; -Area_Farm_PeanutsForNuts,Area of Farm: Peanuts for Nuts,Area of Farms Growing Peanuts,,area of farms growing peanuts; -Area_Farm_PimaCotton,Area of Farm: Pima Cotton,Area of Farms Growing Pima Cotton,,area of farms growing pima cotton; -Area_Farm_Potatoes,Area of Farm: Potatoes,Area of Farms Growing Potatoes,,area of farms growing potatoes; -Area_Farm_Rice,Area of Farm: Rice,Area of Farms Growing Rice,,area of farms growing rice; -Area_Farm_SorghumForGrain,Area of Farm: Sorghum for Grain,Area of Farms Growing Sorghum,,area of farms growing sorghum; -Area_Farm_SugarbeetsForSugar,Area of Farm: Sugarbeets for Sugar,Area of Farms Growing Sugarbeets for Sugar Production,,area of farms growing sugarbeets for sugar production; -Area_Farm_SunflowerSeed,Area of Farm: Sunflower Seed,Area of Farms Growing Sunflower Seeds,,area of farms growing sunflower seeds; -Area_Farm_SweetPotatoes,Area of Farm: Sweet Potatoes,Area of Farms Growing Sweet Potatoes,,area of farms growing sweet potatoes; -Area_Farm_UplandCotton,Area of Farm: Upland Cotton,Area of Farms Growing Upland Cotton,,area of farms growing upland cotton; -Area_Farm_VegetablesHarvestedForSale,Area of Farm: Vegetables Harvested for Sale,Area of Farms Growing Vegetables for Sale,,area of farms growing vegetables for sale; -Area_Farm_WheatForGrain,Area of Farm: Wheat for Grain,Area of Farms Growing Wheat,,area of farms growing wheat; -Area_Farm_WinterWheatForGrain,Area of Farm: Winter Wheat for Grain,Area of Farms Growing Winter Wheat,,area of farms growing winter wheat; -Area_LandCover_Forest,Area of Land Cover: Forest,,,land covered by forest -Area_LandCover_Tree,Area of Land Cover: Tree,,,land covered by trees -Capacity_Electricity_Renewables_AsAFractionOf_Capacity_Electricity,Renewable share of installed generating capacity (%),,,electricity from renewable energy -ConsecutiveDryDays,Consecutive Dry Days,Number of Consecutive Dry Days,,Number of consecutive dry days;Number of consecutive dry days; How many days in a row without rain; The number of dry days in a row; The length of a dry spell; How many days in succession without precipitation; -Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,,Birth rate,,Birth rate; rate at which children are born; -Count_CivicStructure_AgriculturalFacility,Count of Civic Structure: Agricultural Facility,,,number of agricultural facilities -Count_CivicStructure_EducationFacility,Count of Civic Structure: Education Facility,,,number of educational facilities -Count_CivicStructure_MedicalFacility,Count of Civic Structure: Medical Facility,,,number of medical facilities -Count_CivicStructure_TransportOrAdminFacility,Count of Civic Structure: Transport or Admin Facility,,,number of transport or admin facilities -Count_CoastalFloodEvent,Count of Coastal Flood Event,Number of Costal Floods,,Number of costal floods;Number of coastal flooding incidents; Number of coastal inundations; Number of tidal surges; Number of sea level rise events; Number of coastal floodings; -Count_CriminalActivities_AggravatedAssault,Count of Criminal Activities: Aggravated Assault,Number of Aggravated Assault Cases,,Number of crimes counted as Aggravated Assault;Number of aggravated assault crimes; Total number of aggravated assault cases; Number of aggravated assault incidents; Total number of aggravated assault offenses; Number of aggravated assault charges; -Count_CriminalActivities_Arson,Count of Criminal Activities: Arson,Number of Arson Cases,,Number of crimes counted as Arson;Number of arson crimes; Total number of arson cases; Number of arson incidents; Total number of arson offenses; Number of arson charges; -Count_CriminalActivities_Burglary,Count of Criminal Activities: Burglary,Number of Burglaries,,Number of crimes counted as Burglary;Number of burglary crimes; Total number of burglary cases; Number of burglary incidents; Total number of burglary offenses; Number of burglary charges; -Count_CriminalActivities_CombinedCrime,Count of Criminal Activities,Number of Criminal Activities,,Number of crime cases;Crime statistics; Number of criminal incidents; Rate of crime; Crime rate; Incident rate; -Count_CriminalActivities_ForcibleRape,Count of Criminal Activities: Forcible Rape,Number of Forcible Rapes,,Number of crimes counted as Forcible Rape;Number of forcible rape crimes; Total number of forcible rape cases; Number of forcible rape incidents; Total number of forcible rape offenses; Number of forcible rape charges; -Count_CriminalActivities_LarcenyTheft,Count of Criminal Activities: Larceny Theft,Number of Larceny Theft Cases,,Number of crimes counted as Larceny Theft;Number of larceny theft crimes; Total number of larceny theft cases; Number of larceny theft incidents; Total number of larceny theft offenses; Number of larceny theft charges; -Count_CriminalActivities_MotorVehicleTheft,Count of Criminal Activities: Motor Vehicle Theft,Number of Motor Vehicle Thefts,,Number of crimes counted as Motor Vehicle Theft; Number of car thefts; Number of thefts of motor vehicles; Total number of motor vehicle thefts; Total number of car thefts; Number of vehicles stolen;Number of car thefts; Number of motor vehicle heists; Total number of vehicles stolen; Number of automobiles stolen; Total number of car thefts; Number of cars taken; Total number of auto thefts; Number of motor vehicles taken;Number of motor vehicle theft crimes; Total number of motor vehicle theft cases; Number of motor vehicle theft incidents; Total number of motor vehicle theft offenses; Number of motor vehicle theft charges; -Count_CriminalActivities_MurderAndNonNegligentManslaughter,Count of Criminal Activities: Murder And Non Negligent Manslaughter,Number of Murder and Non Negligent Manslaughter Cases,,Number of crimes counted as Murder And Non Negligent Manslaughter;Number of murder and non-negligent manslaughter crimes; Total number of murder and non-negligent manslaughter cases; Number of murder and non-negligent manslaughter incidents; Total number of murder and non-negligent manslaughter offenses; Number of murder and non-negligent manslaughter charges; -Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,Count of Criminal Activities: Murder And Non Negligent Manslaughter (Per Capita),Number of Murder and Non Negligent Manslaughter Cases Per Capita,,Number of crimes counted as Murder And Non Negligent Manslaughter per capita;Number of murders and non-negligent manslaughters per capita; Number of murders and non-negligent manslaughters per person; Number of murders and non-negligent manslaughters per head of population; Number of murders and non-negligent manslaughters per member of population; Number of murders and non-negligent manslaughters per individual; -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,"Count of Criminal Activities: Murder And Non Negligent Manslaughter, Female (As Fraction of Count Person Female)",Number of Murder and Non-Negligent Manslaughter Crimes Committed Per Capita for the Female Population,,Number of crimes counted as Murder And Non Negligent Manslaughter for the population identifying as Female per capita;Number of murders and non-negligent manslaughters per capita for females; Number of murders and non-negligent manslaughters per woman; Number of murders and non-negligent manslaughters per female; Number of murders and non-negligent manslaughters per lady; Number of murders and non-negligent manslaughters per girl; -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,"Count of Criminal Activities: Murder And Non Negligent Manslaughter, Male (As Fraction of Count Person Male)",Number of Murder and Non-Negligent Manslaughter Crimes Committed Per Capita for the Male Population,,Number of crimes counted as Murder And Non Negligent Manslaughter for the population identifying as Male per capita;Number of murders and non-negligent manslaughters per capita for males; Number of murders and non-negligent manslaughters per man; Number of murders and non-negligent manslaughters per male; Number of murders and non-negligent manslaughters per guy; Number of murders and non-negligent manslaughters per boy; -Count_CriminalActivities_PropertyCrime,Count of Criminal Activities: Property,Number of Property Related Crimes,,Number of crimes counted as Property;Number of property crimes; Total number of property offenses; Number of property offenses; Total number of property incidents; Number of property cases; -Count_CriminalActivities_Robbery,Count of Criminal Activities: Robbery,Number of Robberies,,Number of crimes counted as Robbery; Number of robberies; Total number of robberies; Number of heists; Number of holdups; Number of stickups;Number of robberies; Number of heists; Number of stickups; Number of holdups; Number of raids; Number of muggings; Number of thefts;Number of robberies; Total number of robbery offenses; Number of robbery incidents; Total number of robbery cases; Number of robbery charges; -Count_CriminalActivities_ViolentCrime,Count of Criminal Activities: Violent,Number of Violent Crimes,,Number of crimes counted as Violent;Number of violent crimes; Total number of violent offenses; Number of violent incidents; Total number of violent cases; Number of violent charges; -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,,Number of Hate Crimes Motivated by Disability Status,, -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,,Number of Hate Crimes Motivated by Ethnicity,, -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,,Number of Hate Crimes Motivated by Gender,, -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,,Number of Hate Crimes Motivated by Race,, -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,,Number of Hate Crimes Motivated by Religion,, -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,,Number of Hate Crimes Motivated by Sexual Orientation,, -Count_CriminalIncidents_IsHateCrime,Count of Hate Crime Incidents,Number of Hate Crime Incidents,,Number of hate crimes;Number of hate crimes reported; Hate crime incidents; Number of bias motivated incidents; Number of discriminatory crimes; Number of prejudice motivated incidents; -Count_CycloneEvent,,Number of Cyclones,, -Count_Death,Count of Mortality Event,Number of Deaths,,Number of people dead; Number of deaths;Number of deaths in the population; Number of fatalities in the population; Number of people who have died; Number of mortalities in the population; Number of deceases; -Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,,Infant Mortality Rate,, -Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,,Female Infant Mortality Rate,, -Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,,Male Infant Mortality Rate,, -Count_Death_AsAFractionOfCount_Person,Count of Mortality Event (Per Capita),Number of Deaths Per Capita,,"Death rate; Mortality rate;Number of deaths per person in the population; Mortality rate; Death rate; Number of fatalities per capita; Number of deaths per 100,000 people;" -Count_Death_DiseasesOfTheCirculatorySystem,,Number of Deaths Due to Diseases of the Circulatory System,, -Count_Death_DiseasesOfTheNervousSystem,,Number of Deaths Due to Diseases of the Nervous System,, -Count_Death_DiseasesOfTheRespiratorySystem,,Number of Deaths Due to Diseases of the Respiratory System,, -Count_Death_ExternalCauses,,Number of Deaths Due to External Causes,, -Count_Death_Infant,Number of infant deaths,Total number of infant deaths,,deaths of infants; infant death count; -Count_Death_Neoplasms,,Number of Deaths Due to Neoplasms (Tumors or Abnormal Growths),, -Count_DeliveryEvent_Safe_AsFractionOf_Count_DeliveryEvent,Percentage of safe deliveries to total reported deliveries,,,percentage of safe child deliveries -Count_DroughtEvent,Count of Drought Event,Number of Droughts,,Number of droughts;Number of drought incidents; Number of water shortages; Number of dry spells; Number of water crises; Number of water deficiencies; -Count_EarthquakeEvent,Count of Earthquake Event,Number of Earthquakes,,Number of earthquakes;Number of earthquakes; Number of seismic events; Number of tremors; Number of quakes; Number of temblors; -Count_Farm,Count of Farm,Number of Farms,,total number of farms; Total number of farms; Number of agricultural properties; Number of farming operations; Number of farms in the region; Total number of agricultural businesses;Number of farms; Total number of agricultural properties; Number of agricultural businesses; Number of farming operations; Total number of farms in the region; Total number of agricultural properties in the area; Number of farm properties; Number of agricultural lands;Total number of farms; Number of agricultural properties; Number of farming operations; Number of farms in the region; Total number of agricultural businesses;Number of farms; Total number of agricultural properties; Number of agricultural businesses; Number of farming operations; Total number of farms in the region; Total number of agricultural properties in the area; Number of farm properties; Number of agricultural lands; -Count_FarmInventory_BeefCows,Count of Farm Inventory: Beef Cows,Number of Beef Cows on a Farm,,Number of Beef Cows in farm inventory;Number of beef cows on a farm; Number of cows raised for beef on a farm; Number of cows used for beef production on a farm; Number of cows for beef on a farm; Number of cows reared for beef on a farm; -Count_FarmInventory_Broilers,Count of Farm Inventory: Broilers,Number of Broiler Chickens on a Farm,,Number of Broilers in farm inventory;Number of broiler chickens on a farm; Number of chickens raised for meat on a farm; Number of chickens used for meat production on a farm; Number of chickens for meat on a farm; Number of chickens reared for meat on a farm; -Count_FarmInventory_CattleAndCalves,Count of Farm Inventory: Cattle And Calves,Number of Cattle and Calves on a Farm,,Number of Cattle And Calves in farm inventory;Number of cattle and calves on a farm; Number of cows and calves on a farm; Number of cows and young on a farm; Number of cows and heifers on a farm; Number of cattle and young on a farm; -Count_FarmInventory_HogsAndPigs,Count of Farm Inventory: Hogs And Pigs,Number of Hogs and Pigs on a Farm,,Number of Hogs And Pigs in farm inventory;Number of hogs and pigs on a farm; Number of pigs and hogs on a farm; Number of pigs and young on a farm; Number of hogs and young on a farm; Number of pigs and piglets on a farm; -Count_FarmInventory_Layers,Count of Farm Inventory: Layers,Number of Laying Hens on a Farm,,Number of Layers in farm inventory;Number of hens for egg production on a farm; Number of hens used for laying eggs on a farm; Number of hens raised for eggs on a farm; Number of hens reared for egg production on a farm; Number of egg-laying hens on a farm; -Count_FarmInventory_MilkCows,Count of Farm Inventory: Milk Cows,Number of Milk Cows on a Farm,,Number of Milk Cows in farm inventory;Number of cows used for milk production on a farm; Number of cows raised for milk on a farm; Number of cows reared for milk production on a farm; Number of cows for milk on a farm; Number of milk cows on a farm; -Count_FarmInventory_SheepAndLambs,Count of Farm Inventory: Sheep And Lambs,Number of Sheep and Lambs on a Farm,,Number of Sheep And Lambs in farm inventory;Number of sheep and lambs on a farm; Number of sheep and young on a farm; Number of sheep and ewes on a farm; Number of sheep and rams on a farm; Number of lambs and sheep on a farm; -Count_Farm_BarleyForGrain,Count of Farm: Barley for Grain,Number of Barley Farms,,number of barley farms; -Count_Farm_BeefCows,Count of Farm: Beef Cows,Number of Farms With Beef Cows,,number of farms with beef cows; -Count_Farm_Broilers,Count of Farm: Broilers,Number of Farms With Broilers (Young Chickens),,number of farms growing broilers; -Count_Farm_CattleAndCalves,Count of Farm: Cattle And Calves,Number of Cattle Farms,,number of cattle farms; -Count_Farm_CornForGrain,Count of Farm: Corn for Grain,Number of Farms Growing Corn,,number of farms growing corn; -Count_Farm_CornForSilageOrGreenchop,Count of Farm: Corn for Silage or Greenchop,Number of Farms for Silage,,number of farms for silage; -Count_Farm_Cotton,Count of Farm: Cotton,Number of Farms Growing Cotton,,number of farms growing cotton; -Count_Farm_Cropland,Count of Farm: Cropland,Number of Farms With Crop Cultivation,,number of farms with crop cultivation; -Count_Farm_DryEdibleBeans,Count of Farm: Dry Edible Beans,Number of Farms Growing Beans,,number of farms growing beans; -Count_Farm_DurumWheatForGrain,Count of Farm: Durum Wheat for Grain,Number of Farms Growing Durum Wheat,,number of farms growing durum wheat; -Count_Farm_HarvestedCropland,Count of Farm: Harvested Cropland,Number of Farms With Harvested Cropland,,number of farms with harvested cropland; -Count_Farm_HogsAndPigs,Count of Farm: Hogs And Pigs,Number of Farms With Hogs and Pigs,,number of farms with hogs and pigs; -Count_Farm_InventorySold_CattleAndCalves,"Count of Farm: Inventory Sold, Cattle And Calves",Number of Farms That Sell Cattle and Calves,, -Count_Farm_InventorySold_HogsAndPigs,"Count of Farm: Inventory Sold, Hogs And Pigs",Number of Farms That Sold Hogs and Pigs,,number of farms that sold hogs and pigs; -Count_Farm_IrrigatedLand,Count of Farm: Irrigated Land,Number of Farms With Irrigated Lands,,number of farms with irrigated lands; -Count_Farm_Layers,Count of Farm: Layers,Number of Farms With Layers (Chickens Used for Egg Production),,number of farms growing layers; -Count_Farm_MilkCows,Count of Farm: Milk Cows,Number of Farms With Milk Cows,,number of farms with milk cows; -Count_Farm_OatsForGrain,Count of Farm: Oats for Grain,Number of Farms Grawing Oats,,Number of farms grawing oats; -Count_Farm_Orchards,Count of Farm: Orchards,Number of Farms With Orchards,,number of farms with orchards; -Count_Farm_PeanutsForNuts,Count of Farm: Peanuts for Nuts,Number of Farms Growing Peantuts,,number of farms growing peantuts; -Count_Farm_PimaCotton,Count of Farm: Pima Cotton,Number of Farms Growing Pima Cotton,,number of farms growing pima cotton; -Count_Farm_Potatoes,Count of Farm: Potatoes,Number of Farms Growing Potatoes,,number of farms growing potatoes; -Count_Farm_ReceivedGovernmentPayment,Count of Farm: Government Payment,Number of Farms Receiving Government Payments,,number of farms receiving government payments; -Count_Farm_Rice,Count of Farm: Rice,Number of Farms Growing Rice,,number of farms growing rice; -Count_Farm_SheepAndLambs,Count of Farm: Sheep And Lambs,Number of Farms With Sheep and Lambs,,number of farms with sheep and lambs; -Count_Farm_SorghumForGrain,Count of Farm: Sorghum for Grain,Number of Farms Growing Sorghum,,number of farms growing sorghum; -Count_Farm_SugarbeetsForSugar,Count of Farm: Sugarbeets for Sugar,Number of Farms Growing Sugarbeets for Sugar Production,,number of farms growing sugarbeets for sugar production; -Count_Farm_SunflowerSeed,Count of Farm: Sunflower Seed,Number of Farms Growing Sunflower Seeds,,number of farms growing sunflower seeds; -Count_Farm_SweetPotatoes,Count of Farm: Sweet Potatoes,Number of Farms Growing Sweet Potatoes,,number of farms growing sweet potatoes; -Count_Farm_UplandCotton,Count of Farm: Upland Cotton,Number of Farms Growing Upland Cotton,,number of farms growing upland cotton; -Count_Farm_VegetablesHarvestedForSale,Count of Farm: Vegetables Harvested for Sale,Number of Farms Growing Vegetables for Sale,,number of farms growing vegetables for sale; -Count_Farm_WheatForGrain,Count of Farm: Wheat for Grain,Number of Farms Growing Wheat,,number of farms growing wheat; -Count_Farm_WinterWheatForGrain,Count of Farm: Winter Wheat for Grain,Number of Farms Growing Winter Wheat,,number of farms growing winter wheat; -Count_FloodEvent,Count of Flood Event,Number of Floods,,Number of floods;Number of flooding incidents; Number of flood events; Number of water inundations; Number of flash floods; Number of inundations; -Count_HeatEvent,Count of Heat Event,Number of Heat Waves,,Number of heat waves;Number of heat waves experienced; Number of extreme heat events; Number of heat surges; Number of heat crises; Number of heat emergencies; -Count_HeavyRainEvent,Count of Heavy Rain Event,Number of Heavy Rains,,Number of heavy rains;Number of heavy rain incidents; Number of heavy precipitation events; Number of extreme rainfall events; Number of torrential rain events; Number of deluges; -Count_HeavySnowEvent,Count of Heavy Snow Event,Number of Heavy Snows,,Number of heavy snows;Number of heavy snow incidents; Number of heavy snowfall events; Number of extreme snow events; Number of blizzards; Number of snowstorms; -Count_Household,Count of Household,Number of Households,,Number of households;Number of households; Total number of homes; Total number of families; Number of family units; Number of residential units; -Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Below Poverty Level in The Past 12 Months",Number of Family Households Below the Poverty Level in the Past 12 Months,,Number of Family Households who were Below Poverty Level over the last year;Number of family households below poverty level in the past year; Number of families in poverty in the past year; Number of households below poverty line in the past year; Number of families with low income in the past year; Number of households with low income in the past year; -Count_Household_InternetWithoutSubscription,Count of Household: Internet Without Subscription,Number of Households Without Internet,,Number of households without internet;Number of households without internet; The number of homes without internet access; How many households don't have internet; The percentage of homes without internet; The number of families without internet service; -Count_Household_MarriedCoupleFamilyHousehold,Count of Household: Married Couple Family Household,Number of Households Containing a Married Couple,,Number of households that are married;Number of married couples households; Number of households with married couples; Number of homes with married couples; Number of families with married couples; Number of households with two partners; -Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Below Poverty Level in The Past 12 Months",Number of Married Couple Family Households Below Poverty Level in the Past 12 Months,,Number of Married Couple Family Households who were Below Poverty Level over the last year; -Count_Household_NoHealthInsurance,Count of Household: No Health Insurance,Number of Households Without Health Insurance,,Number of households without health insurance;Number of households with no health insurance; Number of homes without coverage; Number of families with no insurance; Number of households without coverage; Number of families without insurance; -Count_Household_NonfamilyHousehold,Count_Household_NonfamilyHousehold,Number of Households Where a Person Lives Alone or Where the Householder Shares the Home Exclusively With People to Whom They Are Not Related,,Number of households where a person lives alone or where the householder shares the home exclusively with people to whom they are not related;Number of homes with only one person living; Number of households with one person; Number of homes where the person lives alone; Number of households where the person shares the home only with non-relatives; Number of one-person households; -Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Below Poverty Level in The Past 12 Months",Number of Single Mother Family Households Below Poverty Level in the Past 12 Months,,Count of Household: Single Mother Family Household with an income of Below Poverty Level in The Past 12 Months; -Count_Household_WithFoodStampsInThePast12Months,Count of Household: With Food Stamps in The Past 12 Months,Number of Households Receiving Food Stamps in the Past 12 Months,,Number of households receiving Food Stamps in The Past 12 Months;households on food stamps; households receiving food stamps; families receiving food stamps;Number of households receiving SNAP benefits in The Past 12 Months;households on SNAP benefits; households receiving SNAP benefits; families receiving SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Above Poverty Level in The Past 12 Months",Number of Households With Food Stamps in the Past 12 Months and Above Poverty Level in the Past 12 Months,,Number of households receiving Food Stamps over the last year who are Above Poverty Level in The Past 12 Months;Number of households receiving SNAP benefits over the last year who are Above Poverty Level in The Past 12 Months; -Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Count of Household: With Food Stamps in The Past 12 Months, American Indian or Alaska Native Alone",Number of Households With Food Stamps in the Past 12 Months and American Indian or Alaska Native Alone as the Race of the Household Members,,Number of households receiving Food Stamps over the last year who are American Indian or Alaska Native Alone;american indian or alaska households on food stamps;Number of households receiving SNAP benefits over the last year who are American Indian or Alaska Native Alone;american indian or alaska households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_AsianAlone,"Count of Household: With Food Stamps in The Past 12 Months, Asian Alone",Number of Households With Food Stamps in the Past 12 Months and Asian Alone as the Race of the Household Members,,Number of households receiving Food Stamps over the last year who are Asian Alone;asian households on food stamps;Number of households receiving SNAP benefits over the last year who are Asian Alone;asian households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Households With Food Stamps in the Past 12 Months and Below Poverty Level in the Past 12 Months,,Number of households receiving Food Stamps over the last year who are Below Poverty Level in The Past 12 Months;poor households on food stamps;households in poverty receiving food stamps; families below poverty line receiving food stamps;Number of households receiving SNAP benefits over the last year who are Below Poverty Level in The Past 12 Months;poor households on SNAP benefits;households in poverty receiving SNAP benefits; families below poverty line receiving SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,"Count of Household: With Food Stamps in The Past 12 Months, Black or African American Alone",Number of Households With Food Stamps in the Past 12 Months and Black or African American Alone as the Race of the Household Members,,Number of households receiving Food Stamps over the last year who are Black or African American Alone;black households on food stamps; african american households on food stamps;Number of households receiving SNAP benefits over the last year who are Black or African American Alone;black households on SNAP benefits; african american households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Family Household",Number of Family Households With Food Stamps in the Past 12 Months,,Number of households receiving Food Stamps over the last year who are in a family household;Number of households receiving SNAP benefits over the last year who are in a family household; -Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,"Count of Household: With Food Stamps in The Past 12 Months, Hispanic or Latino",Number of Hispanic or Latino Households Receiving Food Stamps in the Past 12 Months,,Number of households receiving Food Stamps over the last year who are Hispanic or Latino;hispanic latino households on food stamps;Number of households receiving SNAP benefits over the last year who are Hispanic or Latino;hispanic latino households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household",Number of Married Family Households Receiving Food Stamps in the Past 12 Months,,Number of households receiving Food Stamps over the last year who are a Married Couple in a family household;married couple households on food stamps;Number of households receiving SNAP benefits over the last year who are a Married Couple in a family household;married couple households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Household: With Food Stamps in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as Native Hawaiian or Other Pacific Islander Alone,,Number of households receiving Food Stamps over the last year who are Native Hawaiian or Other Pacific Islander Alone;hawaiian pacific islander households on food stamps;Number of households receiving SNAP benefits over the last year who are Native Hawaiian or Other Pacific Islander Alone;hawaiian pacific islander households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_NoDisability,"Count of Household: With Food Stamps in The Past 12 Months, No Disability",Number of Non-Disabled Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who have no disabilities;households with people who have no disabilities on food stamps;Number of households receiving SNAP benefits over the last year who have no disabilities;households with people who have no disabilities on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household",Number of Nonfamily Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are a Nonfamily Household;nonfamily households on food stamps;Number of households receiving SNAP benefits over the last year who are a Nonfamily Household;nonfamily households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household",Number of Other Family Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are a Other Family Household;one familyhouseholds on food stamps;Number of households receiving SNAP benefits over the last year who are a Other Family Household;one familyhouseholds on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household",Number of Single Father Family Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are a Single Father Family Household;single father households on food stamps;Number of households receiving SNAP benefits over the last year who are a Single Father Family Household;single father households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household",Number of Single Mother Family Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are a Single Mother Family Household;single mother households on food stamps;Number of households receiving SNAP benefits over the last year who are a Single Mother Family Household;single mother households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_SomeOtherRaceAlone,"Count of Household: With Food Stamps in The Past 12 Months, Some Other Race Alone",Number of Households Receiving Food Stamps Over the Last Year Who Identify as Some Other Race Alone,,Number of households receiving Food Stamps over the last year who identify as Some Other Race Alone;other race households on food stamps;Number of households receiving SNAP benefits over the last year who identify as Some Other Race Alone;other race households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,"Count of Household: With Food Stamps in The Past 12 Months, Two or More Races",Number of Households Receiving Food Stamps Over the Last Year Who Identify as Two or More Races,,Number of households receiving Food Stamps over the last year who identify as Two or More Races;two ore more race households on food stamps;Number of households receiving SNAP benefits over the last year who identify as Two or More Races;two ore more race households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,"Count of Household: With Food Stamps in The Past 12 Months, White Alone",Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as White Alone,,Number of households receiving Food Stamps over the last year who identify as White Alone;white households on food stamps;Number of households receiving SNAP benefits over the last year who identify as White Alone;white households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"Count of Household: With Food Stamps in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as White Alone Not Hispanic or Latino,,Number of households receiving Food Stamps over the last year who identify as White Alone Not Hispanic or Latino;white but not hispanic households on food stamps;Number of households receiving SNAP benefits over the last year who identify as White Alone Not Hispanic or Latino;white but not hispanic households on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,"Count of Household: With Food Stamps in The Past 12 Months, With Children Under 18",Number of Households With Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who identify as With Children Under 18;households with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as With Children Under 18;households with children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household, With Children Under 18",Number of Married Family Households With Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who identify as a married couple in a family household with Children Under 18;married couple households with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as a married couple in a family household with Children Under 18;married couple households with children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household, With Children Under 18",Number of Nonfamily Households With Children Which Received Food Stamps Over the Last Year,,"Number of households receiving Food Stamps over the last year who identify as Nonfamily Household, With Children Under 18;nonfamily households with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as Nonfamily Household, With Children Under 18;nonfamily households with children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household, With Children Under 18",Number of Other Family Households With Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who identify as Other in a family household with Children Under 18;households of type other with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as Other in a family household with Children Under 18;households of type other with children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household, With Children Under 18",Number of Single Father Family Households With Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who identify as Single Father in a family household with Children Under 18;single father households with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as Single Father in a family household with Children Under 18;single father households with children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household, With Children Under 18",Number of Single Mother Family Households With Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who identify as Single Mother in a family household with Children Under 18;single mother households with children on food stamps;Number of households receiving SNAP benefits over the last year who identify as Single Mother in a family household with Children Under 18;single mother households with children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithDisability,"Count of Household: With Food Stamps in The Past 12 Months, With Disability",Number of Disabled Households Receiving Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are With Disability;households with disabilities on food stamps;households with disabled people on food stamps;Number of households receiving SNAP benefits over the last year who are With Disability;households with disabilities on SNAP benefits;households with disabled people on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,"Count of Household: With Food Stamps in The Past 12 Months, With People Over 60",Number of Households With People Over 60 Who Recieved Food Stamps Over the Last Year.,,Number of households receiving Food Stamps over the last year who are With People Over 60;households with people above 60 on food stamps;Number of households receiving SNAP benefits over the last year who are With People Over 60;households with people above 60 on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,"Count of Household: With Food Stamps in The Past 12 Months, Without Children Under 18",Number of Households Without Children Which Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are Without Children;households without children on food stamps;Number of households receiving SNAP benefits over the last year who are Without Children;households without children on SNAP benefits; -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household, Without Children Under 18",Number of Married Couple Households Without Children Which Received Food Stamps Over the Last Year,,"Number of households receiving Food Stamps over the last year who are a Married Couple Family Household, Without Children Under 18;married couple households without children on food stamps;Number of households receiving SNAP benefits over the last year who are a Married Couple Family Household, Without Children Under 18;married couple households without children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household, Without Children Under 18",Number of Nonfamily Households Without Children Which Received Food Stamps Over the Last Year,,"Number of households receiving Food Stamps over the last year who are a Nonfamily Household, Without Children Under 18;nonfamily households without children on food stamps;Number of households receiving SNAP benefits over the last year who are a Nonfamily Household, Without Children Under 18;nonfamily households without children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household, Without Children Under 18",Number of Other Family Households Without Children Which Received Food Stamps Over the Last Year,,"Number of households receiving Food Stamps over the last year who are a Other Family Household, Without Children Under 18;households of type other without children on food stamps;Number of households receiving SNAP benefits over the last year who are a Other Family Household, Without Children Under 18;households of type other without children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household, Without Children Under 18",Number of Single Father Family Households Without Children Which Received Over the Last Year,,"Number of households receiving Food Stamps over the last year who are a Single Father Family Household, Without Children Under 18;single father households without children on food stamps;Number of households receiving SNAP benefits over the last year who are a Single Father Family Household, Without Children Under 18;single father households without children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household, Without Children Under 18",Number of Single Mother Family Households Without Children Which Received Over the Last Year,,"Number of households receiving Food Stamps over the last year who are a Single Mother Family Household, Without Children Under 18;single mother households without children on food stamps;Number of households receiving SNAP benefits over the last year who are a Single Mother Family Household, Without Children Under 18;single mother households without children on SNAP benefits;" -Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,"Count of Household: With Food Stamps in The Past 12 Months, Without People Over 60",Number of Households Without People Over 60 Who Received Food Stamps Over the Last Year,,Number of households receiving Food Stamps over the last year who are Without People Over 60;households without people over 60 on food stamps;Number of households receiving SNAP benefits over the last year who are Without People Over 60;households without people over 60 on SNAP benefits; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Family Household",Number of Family Households Who Received Supplemental Security Income or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are in a family household; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Family Household, Below Poverty Level in The Past 12 Months",Number of Family Households Which Are Below Poverty Line and Received Supplemental Security Income or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Married Couple Family Household",Number of Married Family Households Who Received Supplemental Security Income or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are a Married Couple in a family household; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Married Couple Family Household, Below Poverty Level in The Past 12 Months",Number of Married Family Households Below the Poverty Line Which Received Supplemental Security Income or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are a Married Couple in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Single Mother Family Household",Number of Single Mother Family Households Receiving SSI and or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are a Single Mother in a family household; -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Single Mother Family Household, Below Poverty Level in The Past 12 Months",Number of Single Mother Family Households Which Are Below the Poverty Line and Receiving SSI and or Cash Assistance Over the Last Year,,Number of households receiving SSI and or Cash Assistance over the last year who are a Single Mother in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Family Household",Number of Family Households Which Received Social Security Income in the Last Year,,Number of households receiving Social Security Income over the last year who are in a family household; -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Family Household, Below Poverty Level in The Past 12 Months",Number of Family Households Whose Income Is Below the Poverty Line and Which Received Social Security Income Over the Last Year,,Number of households receiving Social Security Income over the last year who are in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Africa",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Africa,,Number of households receiving Social Security Income over the last year who are born in Africa; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Asia",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Asia,,Number of households receiving Social Security Income over the last year who are born in Asia; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Caribbean",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in a Caribbean Country,,Number of households receiving Social Security Income over the last year who are born in Caribbean; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Central America Except Mexico",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Central American Country Other Than Mexico,,Number of households receiving Social Security Income over the last year who are born in Central America Except Mexico; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Eastern Asia",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Eastern Asia,,Number of households receiving Social Security Income over the last year who are born in Eastern Asia; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Europe",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Europe,,Number of households receiving Social Security Income over the last year who are born in Europe; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Latin America",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Latin America,,Number of households receiving Social Security Income over the last year who are born in Latin America; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Country/MEX",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Mexico,,Number of households receiving Social Security Income over the last year who are born in Country/ MEX; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Northamerica",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in North America,,Number of households receiving Social Security Income over the last year who are born in Northamerica; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Northern Western Europe",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Northern Western Europe,,Number of households receiving Social Security Income over the last year who are born in Northern Western Europe; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Oceania",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Oceania,,Number of households receiving Social Security Income over the last year who are born in Oceania; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, South Central Asia",Number of Households Receiving Social Security Income Over the Last Year Who Are Born in a South Central Asian Country,,Number of households receiving Social Security Income over the last year who are born in South Central Asia; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, South Eastern Asia",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a South Eastern Asian Country,,Number of households receiving Social Security Income over the last year who are born in South Eastern Asia; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Southamerica",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in South America,,Number of households receiving Social Security Income over the last year who are born in Southamerica; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Southern Eastern Europe",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Southern Eastern European Country,,Number of households receiving Social Security Income over the last year who are born in Southern Eastern Europe; -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Western Asia",Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Western Asian Country,,Number of households receiving Social Security Income over the last year who are born in Western Asia; -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Married Couple Family Household",Number of Family Households Receiving Social Security Income Which Have a Married Couple,,Number of households receiving Social Security Income over the last year who are a Married Couple in a family household; -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Married Couple Family Household, Below Poverty Level in The Past 12 Months",Number of Family Households Receiving Social Security Income Over the Last Year Who Are a Married Couple and Are Below the Poverty Status for the Last Year,,Number of households receiving Social Security Income over the last year who are a Married Couple in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Single Mother Family Household",Number of Single Mother Family Households Receiving Social Security Income Over the Last Year,,Number of households receiving Social Security Income over the last year who are a Single Mother in a family household; -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Single Mother Family Household, Below Poverty Level in The Past 12 Months",Number of Single Mother Family Households Which Are Below the Poverty Line and Receiving Social Security Income Over the Last Year,,Number of households receiving Social Security Income over the last year who are a Single Mother in a family household with Below Poverty Level Status in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months,Count of Household: Without Food Stamps in The Past 12 Months,Number of Households Which Have Not Received Food Stamps in the Last Year,,Number of households not receiving Food Stamps in The Past 12 Months;Number of households not receiving SNAP benefits in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Above Poverty Level in The Past 12 Months",Number of Households Above Poverty Level and Have Not Received Food Stamps in the Last Year,,Number of households not receiving Food Stamps over the last year who are Above Poverty Level Status in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are Above Poverty Level Status in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Count of Household: Without Food Stamps in The Past 12 Months, American Indian or Alaska Native Alone",Number of Households Not Receiving Food Stamps Over the Last Year Who Are American Indian or Alaska Native,,Number of households not receiving Food Stamps over the last year who are American Indian or Alaska Native Alone;Number of households not receiving SNAP benefits over the last year who are American Indian or Alaska Native Alone; -Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Asian Alone",Number of Households Not Receiving Food Stamps Over the Last Year Who Are Asian Alone,,Number of households not receiving Food Stamps over the last year who are Asian Alone;Number of households not receiving SNAP benefits over the last year who are Asian Alone; -Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Households Not Receiving Food Stamps Whose Income Is Below Poverty Level Status in the Last Year,,Number of households not receiving Food Stamps over the last year who are Below Poverty Level Status in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are Below Poverty Level Status in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Black or African American Alone",Number of African American Households Which Haven't Received Food Stamps in the Last Year,,Number of households not receiving Food Stamps over the last year who are Black or African American Alone;Number of households not receiving SNAP benefits over the last year who are Black or African American Alone; -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household",Number of Family Households Which Haven't Received Food Stamps in the Last Year,,Number of households not receiving Food Stamps over the last year who are in a family household;Number of households not receiving SNAP benefits over the last year who are in a family household; -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, No Workers in The Past 12 Months",Number of Family Households Who Had No Workers and Which Haven't Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are in a family household with No Workers in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with No Workers in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, One Worker in The Past 12 Months",Number of Family Households Who Had One Workers and Which Haven't Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are in a family household with One Worker in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with One Worker in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, Two or More Workers in The Past 12 Months",Number of Family Households Who Had Two or More Workers and Which Haven't Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are in a family household with Two or More Workers in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with Two or More Workers in The Past 12 Months; -Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,"Count of Household: Without Food Stamps in The Past 12 Months, Hispanic or Latino",Number of Hispanic Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Hispanic or Latino;Number of households not receiving SNAP benefits over the last year who are Hispanic or Latino; -Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household",Number of Households Not Receiving Food Stamps Over the Last Year Who Are a Married Couple in a Family Household,,Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household; -Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Households Not Receiving Food Stamps Over the Last Year Who Are Native Hawaiian or Other Pacific Islander Alone,,Number of households not receiving Food Stamps over the last year who are Native Hawaiian or Other Pacific Islander Alone;Number of households not receiving SNAP benefits over the last year who are Native Hawaiian or Other Pacific Islander Alone; -Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,"Count of Household: Without Food Stamps in The Past 12 Months, No Disability",Number of Households Not Receiving Food Stamps Over the Last Year Where No Member Has a Disability,,Number of households not receiving Food Stamps over the last year who are No Disability;Number of households not receiving SNAP benefits over the last year who are No Disability; -Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household",Number of Nonfamily Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Nonfamily Household;Number of households not receiving SNAP benefits over the last year who are Nonfamily Household; -Count_Household_WithoutFoodStampsInThePast12Months_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household",Number of Other Family Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Other in a family household;Number of households not receiving SNAP benefits over the last year who are Other in a family household; -Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household",Number of Single Father Family Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Father in a family household;Number of households not receiving SNAP benefits over the last year who are a Single Father in a family household; -Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household",Number of Single Mother Family Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Mother in a family household;Number of households not receiving SNAP benefits over the last year who are a Single Mother in a family household; -Count_Household_WithoutFoodStampsInThePast12Months_SomeOtherRaceAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Some Other Race Alone",Number of Solely Other Race Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Some Other Race Alone;Number of households not receiving SNAP benefits over the last year who are Some Other Race Alone; -Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces,"Count of Household: Without Food Stamps in The Past 12 Months, Two or More Races",Number of Multi Racial Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Two or More Races;Number of households not receiving SNAP benefits over the last year who are Two or More Races; -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,"Count of Household: Without Food Stamps in The Past 12 Months, White Alone",Number of White Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are White Alone;Number of households not receiving SNAP benefits over the last year who are White Alone; -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"Count of Household: Without Food Stamps in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Non Hispanic White Households Not Receiving Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are White Alone Not Hispanic or Latino;Number of households not receiving SNAP benefits over the last year who are White Alone Not Hispanic or Latino; -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,"Count of Household: Without Food Stamps in The Past 12 Months, With Children Under 18",Number of Households With Children Who Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are With Children;Number of households not receiving SNAP benefits over the last year who are With Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household, With Children Under 18",Number of Married Households With Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household with Children;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household with Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household, With Children Under 18",Number of Nonfamily Households With Children Which Have Not Received Food Stamps Over the Last Year,,"Number of households not receiving Food Stamps over the last year who are Nonfamily Household, With Children;Number of households not receiving SNAP benefits over the last year who are Nonfamily Household, With Children;" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household, With Children Under 18",Number of Other Family Households With Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Other in a family household with Children;Number of households not receiving SNAP benefits over the last year who are Other in a family household with Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household, With Children Under 18",Number of Single Father Households With Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Father family household with Children;Number of households not receiving SNAP benefits over the last year who are a Single Father family household with Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household, With Children Under 18",Number of Single Mother Households With Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Mother family household with Children;Number of households not receiving SNAP benefits over the last year who are a Single Mother family household with Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithDisability,"Count of Household: Without Food Stamps in The Past 12 Months, With Disability",Number of Disabled Households With Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are With Disability;Number of households not receiving SNAP benefits over the last year who are With Disability; -Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60,"Count of Household: Without Food Stamps in The Past 12 Months, With People Over 60",Number of Households With People Over 60 Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are With People Over 60;Number of households not receiving SNAP benefits over the last year who are With People Over 60; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,"Count of Household: Without Food Stamps in The Past 12 Months, Without Children Under 18",Number of Households Without Children Who Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Without Children;Number of households not receiving SNAP benefits over the last year who are Without Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household, Without Children Under 18",Number of Married Households Without Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household without Children;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household without Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household, Without Children Under 18",Number of Nonfamily Households Without Children Which Have Not Received Food Stamps Over the Last Year,,"Number of households not receiving Food Stamps over the last year who are a Nonfamily Household, Without Children;Number of households not receiving SNAP benefits over the last year who are a Nonfamily Household, Without Children;" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household, Without Children Under 18",Number of Other Family Households Without Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are in an Other family household without Children;Number of households not receiving SNAP benefits over the last year who are in an Other family household without Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household, Without Children Under 18",Number of Single Father Households Without Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Father family household without Children;Number of households not receiving SNAP benefits over the last year who are a Single Father family household without Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household, Without Children Under 18",Number of Single Mother Households Without Children Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are a Single Mother family household without Children;Number of households not receiving SNAP benefits over the last year who are a Single Mother family household without Children; -Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,"Count of Household: Without Food Stamps in The Past 12 Months, Without People Over 60",Number of Households Without People Over 60 Which Have Not Received Food Stamps Over the Last Year,,Number of households not receiving Food Stamps over the last year who are Without People Over 60;Number of households not receiving SNAP benefits over the last year who are Without People Over 60; -Count_HousingUnit,Count of Housing Unit,Number of Housing Units,,Count of Housing Unit;Total number of housing units in the area; Total number of homes in the area; Total number of houses in the area; Total number of properties in the area; Total number of living spaces in the area; -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,,Number of Homes Where the Householder Identifies as American Indian or Alaska Native Alone,, -Count_HousingUnit_HouseholderRaceAsianAlone,,Number of Homes Where the Householder Identifies as Asian Alone,, -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,,Number of Homes Where the Householder Identifies as Black or African American Alone,, -Count_HousingUnit_HouseholderRaceHispanicOrLatino,,Number of Homes Where the Householder Identifies as Hispanic or Latino,, -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,,Number of Homes Where the Householder Identifies as Native Hawaiian or Other Pacific Islander Alone,, -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone,,Number of Homes Where the Householder Identifies as Some Other Race Alone,, -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,,Number of Homes Where the Householder Identifies as Two or More Races,, -Count_HousingUnit_HouseholderRaceWhiteAlone,,Number of Homes Where the Householder Identifies as White Alone,, -Count_HousingUnit_OwnerOccupied,,Number of Owner-Occupied Homes,, -Count_HousingUnit_RenterOccupied,,Number of Renter-Occupied Homes,, -Count_HousingUnit_VacantHousingUnit,Count of Housing Unit: Vacant Housing Unit,Number of Vacant Housing Units,,Number of empty houses;Number of empty houses; Number of vacant homes; Number of unoccupied housing units; Number of empty properties; Number of unused living spaces; -Count_MedicalConditionIncident_COVID_19_PatientInICU,"Count of Medical Condition Incident: COVID-19, Patient in ICU",Number of COVID-19 Patients in the Intensive Care Unit,,Number of covid patients in ICU;Number of COVID-19 patients in the intensive care unit; Number of severe COVID-19 cases; Number of critically ill COVID-19 patients; Number of COVID-19 patients on ventilators; Number of COVID-19 patients in critical condition; -Count_Person,Number of People in a Population,Total Number of People in a Population,,Number of People in a Population;Total number of people in the population; Size of the population; Population count; Number of residents; Number of inhabitants; -Count_Person_15OrMoreYears_NoIncome,"Population: 15 Years or More, No Income",Number of People of Working Age With No Income,,Number of people without income;Number of people with no income during working years; Number of unemployed individuals; Percentage of unemployed population; Number of people without a job; Number of individuals without income; -Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,"Population: 15 - 50 Years, Some College or Associates Degree, Female",Number of Females Age 15-50 With a College Degree or Associates Degree,,Number of Females With a College Degree or Associates Degree;population of women with college degrees; female population with college or associates degree; number of women with college degrees; number of females with associated degrees; females who have college degrees; -Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,,Percent of Working Age People in the Labor Force,, -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,"Population: Bachelors Degree or Higher, Female",Number of Females With a Bachelors Degree or Higher,,Number of Females With a Bachelors Degree or Higher;population of women with bachelors degrees or more; female population with at least bachelors degrees; number of females with bachelors degrees or higher; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,"Population: Bachelors Degree or Higher, Male",Number of Males With a Bachelors Degree or Higher,,Number of Males With a Bachelors Degree or Higher;population of men with bachelors degrees or more; male population with at least bachelors degrees; number of males with bachelors degrees or higher; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,"Population: Bachelors Degree, Female",Number of Females With a Bachelors Degree,,Number of Females With a Bachelors Degree;population of women with bachelors degrees; number of females with bachelors degrees; girls with bachelors degrees; -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,"Population: Bachelors Degree, Male",Number of Males With a Bachelors Degree,,Number of Males With a Bachelors Degree;population of men with bachelors degrees; number of males with bachelors degrees; boys with bachelors degrees; -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,"Population: Doctorate Degree, Female",Number of Females With a PhD,,Number of Females With a PhD;female population with PhD; population female with phd; number of women with doctorates; number of females with doctoral degrees; people women are PhDs; women who are doctors of philosophy; girls with PhDs; -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,"Population: Doctorate Degree, Male",Number of Males With a PhD,,Number of Males With a PhD;male population with PhD; population male with phd; number of men with doctorates; number of males with doctoral degrees; people men are PhDs; men who are doctors of philosophy; boys with PhDs; -Count_Person_Aadhaar_Enrolled,Total population enrolled for Aadhaar,,,aadhaar enrollment -Count_Person_AbovePovertyLevelInThePast12Months,Population: Above Poverty Level in The Past 12 Months,Number of People Who Are Above Poverty Level Status in the Past 12 Months,,Number of people who are Above Poverty Level Status in The Past 12 Months;Number of people who haven't been living in poverty in the past year; How many residents were above the poverty line in the last 12 months; People who have been financially stable in the past year; Quantity of individuals who were not living in poverty; The number of people who have been able to meet their basic needs in the past year; -Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of Native American People Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are American Indian or Alaska Native Alone;Amount of American Indian or Alaska Native individuals who were not living in poverty in the past year; Number of individuals who were above poverty line in last 12 months and are American Indian or Alaska Native; People who were financially stable and are American Indian or Alaska Native in the past year; The number of American Indian or Alaska Native individuals who have been able to meet their basic needs in the past year; How many American Indian or Alaska Native individuals were not living in poverty in the past year; -Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,"Population: Above Poverty Level in The Past 12 Months, Asian Alone",Number of Asians Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Asian Alone;Number of Asian individuals who were not living in poverty in the past year; People who were financially stable and are Asian in the past year; The number of Asian individuals who have been able to meet their basic needs in the past year; Amount of Asian individuals who were above poverty line in last 12 months; How many Asian individuals were not living in poverty in the past year; -Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Above Poverty Level in The Past 12 Months, Black or African American Alone",Number of African Americans Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Black or African American Alone;Number of Black or African American individuals who were not living in poverty in the past year; People who were financially stable and are Black or African American in the past year; The number of Black or African American individuals who have been able to meet their basic needs in the past year; Amount of Black or African American individuals who were above poverty line in last 12 months; How many Black or African American individuals were not living in poverty in the past year; -Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"Population: Above Poverty Level in The Past 12 Months, Hispanic or Latino",Number of Hispanics Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Hispanic or Latino;Number of Hispanic or Latino individuals who were not living in poverty in the past year; People who were financially stable and are Hispanic or Latino in the past year; The number of Hispanic or Latino individuals who have been able to meet their basic needs in the past year; Amount of Hispanic or Latino individuals who were above poverty line in last 12 months; How many Hispanic or Latino individuals were not living in poverty in the past year.; -Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of People Who Are Above Poverty Level Status in the Last Year Who Are Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone;Number of Native Hawaiian or Other Pacific Islander individuals who were not living in poverty in the past year; People who were financially stable and are Native Hawaiian or Other Pacific Islander in the past year; The number of Native Hawaiian or Other Pacific Islander individuals who have been able to meet their basic needs in the past year; Amount of Native Hawaiian or Other Pacific Islander individuals who were above poverty line in last 12 months; How many Native Hawaiian or Other Pacific Islander individuals were not living in poverty in the past year.; -Count_Person_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Above Poverty Level in The Past 12 Months, Some Other Race Alone",Number of People Who Are Some Other Race Alone and Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Some Other Race Alone; -Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Above Poverty Level in The Past 12 Months, Two or More Races",Number of Multi Racial People Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are Two or More Races; -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,"Population: Above Poverty Level in The Past 12 Months, White Alone",Number of White People Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are White Alone; -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Non Hispanic White People Who Are Above Poverty Level Status in the Past Year,,Number of people who are Above Poverty Level Status in The Past 12 Months and who are White Alone Not Hispanic or Latino; -Count_Person_AmbulatoryDifficulty,Population: Ambulatory Difficulty,Number of People Who Have Ambulatory Difficulty,,Number of people who have Ambulatory Difficulty; -Count_Person_AmericanIndianAndAlaskaNativeAlone,Population: American Indian and Alaska Native Alone,Number of People Who Are American Indian and Alaska Native Alone,,Number of people who are American Indian and Alaska Native Alone; -Count_Person_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,Population: American Indian And Alaska Native Alone or In Combination With One or More Other Races,Number of People Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races,,Number of people who are American Indian And Alaska Native Alone or In Combination With One or More Other Races; -Count_Person_AmericanIndianOrAlaskaNativeAlone,Population: American Indian or Alaska Native Alone,Number of People Who Are American Indian or Alaska Native Alone,,Number of people who are American Indian or Alaska Native Alone; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,"Population: American Indian or Alaska Native Alone, Adult Correctional Facilities",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Adult Correctional Facilities,,Number of people who are American Indian or Alaska Native Alone and who are in Adult Correctional Facilities; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: American Indian or Alaska Native Alone, College or University Student Housing",Number of People Who Are American Indian or Alaska Native Alone and Who Live in College or University Student Housing,,Number of people who are American Indian or Alaska Native Alone and who are in College or University Student Housing; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,"Population: American Indian or Alaska Native Alone, Group Quarters",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Group Quarters,,Number of people who are American Indian or Alaska Native Alone and who are in Group Quarters; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,"Population: American Indian or Alaska Native Alone, Institutionalized Group Quarters",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Institutionalized in Group Quarters,,Number of people who are American Indian or Alaska Native Alone and who are in Institutionalized in Group Quarters; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,"Population: American Indian or Alaska Native Alone, Juvenile Facilities",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Juvenile Facilities,,Number of people who are American Indian or Alaska Native Alone and who are Juvenile Facilities; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: American Indian or Alaska Native Alone, Military Quarters or Military Ships",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Military Quarters or Military Ships,,Number of people who are American Indian or Alaska Native Alone and who are in Military Quarters or Military Ships; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: American Indian or Alaska Native Alone, Noninstitutionalized Group Quarters",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Noninstitutionalized Group Quarters,,Number of people who are American Indian or Alaska Native Alone and who are in Noninstitutionalized in Group Quarters; -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,"Population: American Indian or Alaska Native Alone, Nursing Facilities",Number of People Who Are American Indian or Alaska Native Alone and Who Live in Nursing Facilities,,Number of people who are American Indian or Alaska Native Alone and who are in Nursing Facilities; -Count_Person_AsianAlone,Population: Asian Alone,Number of People Who Are Asian Alone,,Number of people who are Asian Alone; -Count_Person_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Asian Alone or In Combination With One or More Other Races,Number of People Who Are Asian Alone or in Combination With One or More Other Races,,Number of people who are Asian Alone or In Combination With One or More Other Races; -Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,"Population: Asian Alone, Adult Correctional Facilities",Number of People Who Are Asian Alone and Who Live in Adult Correctional Facilities,,Number of people who are Asian Alone and who are in Adult Correctional Facilities; -Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: Asian Alone, College or University Student Housing",Number of People Who Are Asian Alone and Who Live in College or University Student Housing,,Number of people who are Asian Alone and who are in College or University Student Housing; -Count_Person_AsianAlone_ResidesInGroupQuarters,"Population: Asian Alone, Group Quarters",Number of People Who Are Asian Alone and Who Live in Group Quarters,,Number of people who are Asian Alone and who are in Group Quarters; -Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,"Population: Asian Alone, Institutionalized Group Quarters",Number of People Who Are Asian Alone and Who Live in Institutionalized in Group Quarters,,Number of people who are Asian Alone and who are in Institutionalized in Group Quarters; -Count_Person_AsianAlone_ResidesInJuvenileFacilities,"Population: Asian Alone, Juvenile Facilities",Number of People Who Are Asian Alone and Who Live in Juvenile Facilities,,Number of people who are Asian Alone and who are Juvenile Facilities; -Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Asian Alone, Military Quarters or Military Ships",Number of People Who Are Asian Alone and Who Live in Military Quarters or on Military Ships,,Number of people who are Asian Alone and who are in Military Quarters or Military Ships; -Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: Asian Alone, Noninstitutionalized Group Quarters",Number of People Who Are Asian Alone and Who Live in Noninstitutionalized Group Quarters,,Number of people who are Asian Alone and who are in Noninstitutionalized in Group Quarters; -Count_Person_AsianAlone_ResidesInNursingFacilities,"Population: Asian Alone, Nursing Facilities",Number of People Who Are Asian Alone and Who Live in Nursing Facilities,,Number of people who are Asian Alone and who are in Nursing Facilities; -Count_Person_AsianOrPacificIslander,Population: Asian or Pacific Islander,Number of People Who Are Asian or Pacific Islander,,Number of people who are Asian or Pacific Islander; -Count_Person_BelowPovertyLevelInThePast12Months,Population: Below Poverty Level in The Past 12 Months,Number of People Who Are Below Poverty Level Status in the Past 12 Months,,Number of people who are Below Poverty Level Status in The Past 12 Months; Population who are in poverty; how many people are determined to be living in poverty; Population confirmed to be Living in Poverty in the past year\; -Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are American Indian or Alaska Native Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are American Indian or Alaska Native Alone; -Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person,Population: Below Poverty Level in The Past 12 Months Per Capita,People Per Capita Who Are Below Poverty Level Status in the Past 12 Months,,Per Capita People who are Below Poverty Level in The Past 12 Months; Per Capita Population who are in poverty; how many people are determined to be living in poverty per capita; poverty per capita; poverty level per capita; -Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone,"Population: Below Poverty Level in The Past 12 Months, Asian Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Asian Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Asian Alone; -Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Below Poverty Level in The Past 12 Months, Black or African American Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Black or African American Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Black or African American Alone; -Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Population: Below Poverty Level in The Past 12 Months, Hispanic or Latino",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Hispanic or Latino,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Hispanic or Latino; -Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone; -Count_Person_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Below Poverty Level in The Past 12 Months, Some Other Race Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Some Other Race Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Some Other Race Alone; -Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Below Poverty Level in The Past 12 Months, Two or More Races",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Two or More Races,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are Two or More Races; -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,"Population: Below Poverty Level in The Past 12 Months, White Alone",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are White Alone,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are White Alone; -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are White Alone Not Hispanic or Latino,,Number of people who are Below Poverty Level Status in The Past 12 Months and who are White Alone Not Hispanic or Latino; -Count_Person_BlackOrAfricanAmericanAlone,Population: Black or African American Alone,Number of People Who Are Black or African American Alone,,Number of people who are Black or African American Alone; -Count_Person_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Black or African American Alone or In Combination With One or More Other Races,Number of People Who Are Black or African American Alone or in Combination With One or More Other Races,,Number of people who are Black or African American Alone or In Combination With One or More Other Races; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,"Population: Black or African American Alone, Adult Correctional Facilities",Number of People Who Are Black or African American Alone and Who Are in Adult Correctional Facilities,,Number of people who are Black or African American Alone and who are in Adult Correctional Facilities; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: Black or African American Alone, College or University Student Housing",Number of People Who Are Black or African American Alone and Who Are in College or University Student Housing,,Number of people who are Black or African American Alone and who are in College or University Student Housing; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,"Population: Black or African American Alone, Group Quarters",Number of People Who Are Black or African American Alone and Who Are in Group Quarters,,Number of people who are Black or African American Alone and who are in Group Quarters; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,"Population: Black or African American Alone, Institutionalized Group Quarters",Number of People Who Are Black or African American Alone and Who Are Institutionalized in Group Quarters,,Number of people who are Black or African American Alone and who are in Institutionalized in Group Quarters; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,"Population: Black or African American Alone, Juvenile Facilities",Number of People Who Are Black or African American Alone and Who Live in Juvenile Facilities,,Number of people who are Black or African American Alone and who are Juvenile Facilities; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Black or African American Alone, Military Quarters or Military Ships",Number of People Who Are Black or African American Alone and Who Live in Military Quarters or on Military Ships,,Number of people who are Black or African American Alone and who are in Military Quarters or Military Ships; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: Black or African American Alone, Noninstitutionalized Group Quarters",Number of People Who Are Black or African American Alone and Who Live in Non-Institutionalized Group Quarters,,Number of people who are Black or African American Alone and who are in Noninstitutionalized in Group Quarters; -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,"Population: Black or African American Alone, Nursing Facilities",Number of People Who Are Black or African American Alone and Who Live in Nursing Facilities,,Number of people who are Black or African American Alone and who are in Nursing Facilities; -Count_Person_Civilian_Female_NonInstitutionalized,"Population: Civilian, Female, Non Institutionalized",Number of Female Civilians Who Are Non Institutionalized,,Number of people who are Civilian and who are Female and who are Non Institutionalized; -Count_Person_Civilian_Male_NonInstitutionalized,"Population: Civilian, Male, Non Institutionalized",Number of Male Civilians Who Are Not Institutionalized,,Number of people who are Civilian and who are Male and who are Non Institutionalized; -Count_Person_Civilian_NoDisability_NonInstitutionalized,"Population: Civilian, No Disability, Non Institutionalized",Number of Civilians With No Disabilities Who Are Non Institutionalized,,Number of people who are Civilian and who are No Disability and who are Non Institutionalized; -Count_Person_Civilian_WithDisability_NonInstitutionalized,"Population: Civilian, With Disability, Non Institutionalized",Number of Civilians With Disabilities Who Are Non Institutionalized,,Number of people who are Civilian and who are With Disability and who are Non Institutionalized; -Count_Person_CognitiveDifficulty,Population: Cognitive Difficulty,Number of People Who Have Cognitive Difficulty,,Number of people who have Cognitive Difficulty; -Count_Person_DetailedHighSchool,,High School Students,, -Count_Person_DetailedMiddleSchool,,Middle School Students,, -Count_Person_DetailedPrimarySchool,,Elementary School Students,, -Count_Person_Divorced,Population: Divorced,Number of Divorced People in a Population,,Number of divorced people;Number of divorced people in the population; Divorced population count; Number of divorced individuals in the population; Divorce rate; Percentage of divorced people in the population; -Count_Person_EducationalAttainmentBachelorsDegree,Population: Bachelors Degree,Number of People With a Bachelors Degree,,Number of People With a Bachelors Degree;population with bachelors degrees; number of people with bachelors degrees; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,Population: Bachelors Degree or Higher,Number of People With a Bachelors Degree or Higher,,Number of People With a Bachelors Degree or Higher;population with bachelors degrees or more; population with at least bachelors degrees; number of people with bachelors degrees or higher; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,"Population: Bachelors Degree or Higher, Female, Divorced in The Past 12 Months",Number of Females With a Bachelors Degree or Higher Who Divorced in the Past Year,,Number of people who are Bachelors Degree or Higher and who are Female and who are Divorced in The Past 12 Months; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,"Population: Bachelors Degree or Higher, Female, Married in The Past 12 Months",Number of Females With a Bachelors Degree or Higher Who Married in the Past Year,,Number of people who are Bachelors Degree or Higher and who are Female and who are Married in The Past 12 Months; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,"Population: Bachelors Degree or Higher, Male, Divorced in The Past 12 Months",Number of Males With a Bachelors Degree or Higher Who Divorced in the Past Year,,Number of people who are Bachelors Degree or Higher and who are Male and who are Divorced in The Past 12 Months; -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,"Population: Bachelors Degree or Higher, Male, Married in The Past 12 Months",Number of Males With Bachelors Degree or Higher Who Married in the Past 12 Months,,Number of people who are Bachelors Degree or Higher and who are Male and who are Married in The Past 12 Months; -Count_Person_EducationalAttainmentDoctorateDegree,Population: Doctorate Degree,Number of People With a PhD,,Number of People With a PhD;population with PhD; population with phd; number of people with doctorates; number of people with doctoral degrees; people who are PhDs; people who are doctors of philosophy ; -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,Population: Less Than High School Graduate,Number of People Without a High School Degree,,Number of People Without a High School Degree;population with less than high school graduation; population with education level less than high school; number of people with lower than high school graduation; -Count_Person_EducationalAttainmentMastersDegree,,Number of People With a Master's Degree,,Population with a master's degree; -Count_Person_EducationalAttainmentNoSchoolingCompleted,,Number of People Who Completed No Schooling,,Population with no completed schooling; -Count_Person_EducationalAttainmentRegularHighSchoolDiploma,,Number of People With a Regular High School Diploma,,Population with a high school diploma; -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,Population: Some College or Associates Degree,Number of People With a College Degree or Associates Degree,,Number of People With a College Degree or Associates Degree;population with college degrees; population with college or associates degree; number of people with college degrees; number of people with associated degrees; people who have college degrees; -Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma,Population: 9th To 12th Grade No Diploma,Number of People Who Completed Between 9th to 12th Grade With No Diploma,,Number of people who are 9th To 12th Grade No Diploma; -Count_Person_EducationalAttainment_LessThan9ThGrade,Population: Less Than 9th Grade,Number of People Who Completed Less Than 9th Grade,,Number of people who are Less Than 9th Grade; -Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,Population: Less Than High School Diploma,Number of People Who Did Not Receive a High School Diploma,,Number of people who are Less Than High School Diploma; -Count_Person_EducationalAttainment_SomeCollegeNoDegree,Population: Some College No Degree,Number of People Who Went to College but Did Not Receive a Degree,,Number of people who are Some College No Degree; -Count_Person_Employed,,Population With Current Employment,,Population with current employment; -Count_Person_EnrolledInSchool,Population: Enrolled in School,Number of People Currently Enrolled in School,,Number of people in school;Number of people currently enrolled in school; Number of students in school; Number of people in education; Number of children in school; Number of people in higher education; -Count_Person_Female,Population: Female,Number of Females,,Number of people who are Female; -Count_Person_Female_AbovePovertyLevelInThePast12Months,"Population: Female, Above Poverty Level in The Past 12 Months",Number of Females Who Are Above Poverty Level in the Past Year,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months; -Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Female, Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are American Indian or Alaska Native Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are American Indian or Alaska Native Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,"Population: Female, Above Poverty Level in The Past 12 Months, Asian Alone",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Asian Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Asian Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Female, Above Poverty Level in The Past 12 Months, Black or African American Alone",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are African American Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Black or African American Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"Population: Female, Above Poverty Level in The Past 12 Months, Hispanic or Latino",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Hispanic Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Hispanic or Latino; -Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Female, Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Native Hawaiian or Other Pacific Islanders Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Female, Above Poverty Level in The Past 12 Months, Some Other Race Alone",Number of People Who Are Female and Who Are Above Poverty Level in the Past 12 Months and Who Are From an Unclassified Race Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Some Other Race Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Female, Above Poverty Level in The Past 12 Months, Two or More Races",Number of People Females Who Are Above Poverty Level in the Past 12 Months and Who Are Multi Racial,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Two or More Races; -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,"Population: Female, Above Poverty Level in The Past 12 Months, White Alone",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are White Alone,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are White Alone; -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Female, Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are White Alone Not Hispanic or Latino,,Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are White Alone Not Hispanic or Latino; -Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Females Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races,,Number of people who are Female and who are American Indian And Alaska Native Alone or In Combination With One or More Other Races; -Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,"Population: Female, American Indian or Alaska Native Alone",Number of Females Who Are American Indian or Alaska Native Alone,,Number of people who are Female and who are American Indian or Alaska Native Alone; -Count_Person_Female_AsianAlone,"Population: Female, Asian Alone",Number of Females Who Are Asian Alone,,Number of people who are Female and who are Asian Alone; -Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Asian Alone or In Combination With One or More Other Races",Number of Females Who Are Asian Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Asian Alone or In Combination With One or More Other Races; -Count_Person_Female_AsianOrPacificIslander,"Population: Female, Asian or Pacific Islander",Number of Females Who Are Asian or Pacific Islander,,Number of people who are Female and who are Asian or Pacific Islander; -Count_Person_Female_BelowPovertyLevelInThePast12Months,"Population: Female, Below Poverty Level in The Past 12 Months",Number of Females Who Are Below Poverty Level in the Last Year,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months; -Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Female, Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are American Indian or Alaska Native Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are American Indian or Alaska Native Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,"Population: Female, Below Poverty Level in The Past 12 Months, Asian Alone",Number of Females Who Are Below Poverty Level in the Past Year and Who Are Asian Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Asian Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Female, Below Poverty Level in The Past 12 Months, Black or African American Alone",Number of Females Who Are Below Poverty Level in the Last Year and Who Are African American Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Black or African American Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Population: Female, Below Poverty Level in The Past 12 Months, Hispanic or Latino",Number of Females Who Are Below Poverty Level in the Last Year and Who Are Hispanic,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Hispanic or Latino; -Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Female, Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Females Who Are Below Poverty Level in the Last Year and Who Are Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Female, Below Poverty Level in The Past 12 Months, Some Other Race Alone",Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are Some Other Race Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Some Other Race Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Female, Below Poverty Level in The Past 12 Months, Two or More Races",Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are Two or More Races,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Two or More Races; -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,"Population: Female, Below Poverty Level in The Past 12 Months, White Alone",Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are White Alone,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are White Alone; -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Female, Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are White Alone Not Hispanic or Latino,,Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are White Alone Not Hispanic or Latino; -Count_Person_Female_BlackOrAfricanAmericanAlone,"Population: Female, Black or African American Alone",Number of Females Who Are Black or African American Alone,,Number of people who are Female and who are Black or African American Alone; -Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Black or African American Alone or In Combination With One or More Other Races",Number of Females Who Are Black or African American Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Black or African American Alone or In Combination With One or More Other Races; -Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,"Population: Female, Divorced in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Females Who Are Divorced in the Past 12 Months and Who Are Below Poverty Level in the Past 12 Months,,Number of people who are Female and who are Divorced in The Past 12 Months and who are Below Poverty Level in The Past 12 Months; -Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,"Population: Female, Divorced in The Past 12 Months, Poverty Status Determined",Number of Females Who Are Divorced in the Past 12 Months and Who Are Poverty Status Determined,,Number of people who are Female and who are Divorced in The Past 12 Months and who are Poverty Status Determined; -Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,"Population: Female, Divorced in The Past 12 Months, Household",Number of Females Who Are Divorced in the Past 12 Months and Who Are Household,,Number of people who are Female and who are Divorced in The Past 12 Months and who are Household; -Count_Person_Female_ForeignBorn,"Population: Female, Foreign Born",Number of Foreign Born Females,,Number of people who are Female and who are Foreign Born; -Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,"Population: Female, Foreign Born, Africa",Number of Females Born in Africa,,Number of people who are Female and who are Foreign Born and who are Africa; -Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,"Population: Female, Foreign Born, Asia",Number of Females Born in Asia,,Number of people who are Female and who are Foreign Born and who are Asia; -Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean,"Population: Female, Foreign Born, Caribbean",Number of Females Born in the Carribean,,Number of people who are Female and who are Foreign Born and who are Caribbean; -Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Female, Foreign Born, Central America Except Mexico",Number of Females Born in Central American Countries Other Than Mexico,,Number of people who are Female and who are Foreign Born and who are Central America Except Mexico; -Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Female, Foreign Born, Eastern Asia",Number of Females Born in Eastern Asia,,Number of people who are Female and who are Foreign Born and who are Eastern Asia; -Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,"Population: Female, Foreign Born, Europe",Number of Females Born in Europe,,Number of people who are Female and who are Foreign Born and who are Europe; -Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: Female, Foreign Born, Latin America",Number of Females Born in Latin America,,Number of people who are Female and who are Foreign Born and who are Latin America; -Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,"Population: Female, Foreign Born, Country/MEX",Number of Females Born in Mexico,,Number of people who are Female and who are Foreign Born and who are Country/ MEX; -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Female, Foreign Born, Northamerica",Number of Females Born in North America,,Number of people who are Female and who are Foreign Born and who are Northamerica; -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Female, Foreign Born, Northern Western Europe",Number of Females Born in North Western Europe,,Number of people who are Female and who are Foreign Born and who are Northern Western Europe; -Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,"Population: Female, Foreign Born, Oceania",Number of Females Born in Oceania,,Number of people who are Female and who are Foreign Born and who are Oceania; -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Female, Foreign Born, South Central Asia",Number of Females Born in South Central Asia,,Number of people who are Female and who are Foreign Born and who are South Central Asia; -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Female, Foreign Born, South Eastern Asia",Number of Females Born in South Eastern Asia,,Number of people who are Female and who are Foreign Born and who are South Eastern Asia; -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Female, Foreign Born, Southamerica",Number of Females Born in South America,,Number of people who are Female and who are Foreign Born and who are Southamerica; -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Female, Foreign Born, Southern Eastern Europe",Number of Females Born in Southern Eastern Europe,,Number of people who are Female and who are Foreign Born and who are Southern Eastern Europe; -Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Female, Foreign Born, Western Asia",Number of Females Born in Western Asia,,Number of people who are Female and who are Foreign Born and who are Western Asia; -Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,"Population: Female, Foreign Born, Adult Correctional Facilities",Number of Foreign Born Females in Adult Correctional Facilities,,Number of people who are Female and who are Foreign Born and who are in Adult Correctional Facilities; -Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"Population: Female, Foreign Born, College or University Student Housing",Number of Foreign Born Females in College or University Student Housing,,Number of people who are Female and who are Foreign Born and who are in College or University Student Housing; -Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,"Population: Female, Foreign Born, Group Quarters",Number of Foreign Born Females Staying in Group Quarters,,Number of people who are Female and who are Foreign Born and who are in Group Quarters; -Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Population: Female, Foreign Born, Institutionalized Group Quarters",Number of Foreign Born Females Institutionalized in Group Quarters,,Number of people who are Female and who are Foreign Born and who are in Institutionalized in Group Quarters; -Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,"Population: Female, Foreign Born, Juvenile Facilities",Number of Foreign Born Females in Juvenile Facilities,,Number of people who are Female and who are Foreign Born and who are Juvenile Facilities; -Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Female, Foreign Born, Military Quarters or Military Ships",Number of Foreign Born Females Staying in Military Quarters or on Military Sheeps,,Number of people who are Female and who are Foreign Born and who are in Military Quarters or Military Ships; -Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Population: Female, Foreign Born, Noninstitutionalized Group Quarters",Number of Foreign Born Females in Non-Institutionalized Group Quarters,,Number of people who are Female and who are Foreign Born and who are in Noninstitutionalized in Group Quarters; -Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,"Population: Female, Foreign Born, Nursing Facilities",Number of Foreign Born Females in Nursing Facilities,,Number of people who are Female and who are Foreign Born and who are in Nursing Facilities; -Count_Person_Female_HispanicOrLatino,"Population: Female, Hispanic or Latino",Number of Hispanic Females,,Number of people who are Female and who are Hispanic or Latino; -Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Hispanic Females Who Identify as American Indian and Alaska Native Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races; -Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Population: Female, Hispanic or Latino & American Indian or Alaska Native Alone",Number of Hispanic Females Who Identify as American Indian or Alaska Native Alone,,Number of people who are Female and who are Hispanic or Latino & American Indian or Alaska Native Alone; -Count_Person_Female_HispanicOrLatino_AsianAlone,"Population: Female, Hispanic or Latino & Asian Alone",Number of Hispanic Females Who Identify as Asian Alone,,Number of people who are Female and who are Hispanic or Latino & Asian Alone; -Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races",Number of Hispanic Females Who Identify as Asian Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Hispanic or Latino & Asian Alone or In Combination With One or More Other Races; -Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,"Population: Female, Hispanic or Latino & Asian or Pacific Islander",Number of Hispanic Females Who Identify as Asian or Pacific Islander,,Number of people who are Female and who are Hispanic or Latino & Asian or Pacific Islander; -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,"Population: Female, Hispanic or Latino & Black or African American Alone",Number of Hispanic Females Who Identify as Black or African American Alone,,Number of people who are Female and who are Hispanic or Latino & Black or African American Alone; -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races",Number of Hispanic Females Who Identify as Black or African American Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races; -Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Hispanic Females Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races; -Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Female, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone",Number of Hispanic Females Who Identify as Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Female and who are Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone; -Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,"Population: Female, Hispanic or Latino & Two or More Races",Number of Hispanic Females Who Identify as Multiracial,,Number of people who are Female and who are Hispanic or Latino & Two or More Races; -Count_Person_Female_HispanicOrLatino_WhiteAlone,"Population: Female, Hispanic or Latino & White Alone",Number of Hispanic Females Who Identify as White Alone,,Number of people who are Female and who are Hispanic or Latino & White Alone; -Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Hispanic or Latino & White Alone or In Combination With One or More Other Races",Number of Hispanic Females Who Identify as White Alone or in Combination With One or More Other Races,,Number of people who are Female and who are Hispanic or Latino & White Alone or In Combination With One or More Other Races; -Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,"Population: Female, Married in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Females Married in the Past 12 Months and Who Are Below Poverty Level in the Past 12 Months,,Number of people who are Female and who are Married in The Past 12 Months and who are Below Poverty Level in The Past 12 Months; -Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,"Population: Female, Married in The Past 12 Months, Poverty Status Determined",Number of Females Married in the Past 12 Months and Who Are Poverty Status Determined,,Number of people who are Female and who are Married in The Past 12 Months and who are Poverty Status Determined; -Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,"Population: Female, Married in The Past 12 Months, Household",Number of Females Married in the Past 12 Months and Who Are Household,,Number of people who are Female and who are Married in The Past 12 Months and who are Household; -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone,"Population: Female, Native Hawaiian and Other Pacific Islander Alone",Number of Females Who Identify as Native Hawaiian and Other Pacific Islander Alone,,Number of people who are Female and who are Native Hawaiian and Other Pacific Islander Alone; -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Females Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races,,"Number of people who are Female, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;" -Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Female, Native Hawaiian or Other Pacific Islander Alone",Number of Females Who Identify as Native Hawaiian or Other Pacific Islander Alone,,"Number of people who are Female, Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Female_NonWhite,"Population: Female, Non White",Number of Non-White Females,,"Number of people who are Female, Non White;" -Count_Person_Female_NotHispanicOrLatino,"Population: Female, Not Hispanic or Latino",Number of Non Hispanic Females,,"Number of people who are Female, Not Hispanic or Latino;" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Non Hispanic Females Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races,,"Number of people who are Female, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Population: Female, Not Hispanic or Latino & American Indian or Alaska Native Alone",Number of Non Hispanic Females Who Are American Indian or Alaska Native Alone,,"Number of people who are Female, Not Hispanic or Latino & American Indian or Alaska Native Alone;" -Count_Person_Female_NotHispanicOrLatino_AsianAlone,"Population: Female, Not Hispanic or Latino & Asian Alone",Number of Non Hispanic Females Who Are Asian Alone,,"Number of people who are Female, Not Hispanic or Latino & Asian Alone;" -Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races",Number of Non Hispanic Females Who Are Asian Alone or in Combination With One or More Other Races,,"Number of people who are Female, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;" -Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,"Population: Female, Not Hispanic or Latino & Asian or Pacific Islander",Number of Non Hispanic Females Who Are Asian or Pacific Islander,,"Number of people who are Female, Not Hispanic or Latino & Asian or Pacific Islander;" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Population: Female, Not Hispanic or Latino & Black or African American Alone",Number of Non Hispanic Females Who Are Black or African American Alone,,"Number of people who are Female, Not Hispanic or Latino & Black or African American Alone;" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races",Number of Non Hispanic Females Who Are Black or African American Alone or in Combination With One or More Other Races,,"Number of people who are Female, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Non Hispanic Females Who Are Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races,,"Number of people who are Female, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone",Number of Non Hispanic Females Who Are Native Hawaiian or Other Pacific Islander Alone,,"Number of people who are Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,"Population: Female, Not Hispanic or Latino & Two or More Races",Number of Non Hispanic Females Who Are Multiracial,,"Number of people who are Female, Not Hispanic or Latino & Two or More Races;Number of non hispanic females who are multiracial;" -Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races",Number of Non Hispanic Females Who Are White Alone or in Combination With One or More Other Races,,"Number of people who are Female, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;" -Count_Person_Female_ResidesInAdultCorrectionalFacilities,"Population: Female, Adult Correctional Facilities",Number of Females in Adult Correctional Facilities,,"Number of people who are Female, in Adult Correctional Facilities;" -Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Population: Female, College or University Student Housing",Number of Females in College or University Student Housing,,"Number of people who are Female, in College or University Student Housing;" -Count_Person_Female_ResidesInGroupQuarters,"Population: Female, Group Quarters",Number of Females Staying in Group Quarters,,"Number of people who are Female, in Group Quarters;" -Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Population: Female, Institutionalized Group Quarters",Number of Females Who Are Institutionalized in Group Quarters,,"Number of people who are Female, in Institutionalized in Group Quarters;" -Count_Person_Female_ResidesInJuvenileFacilities,"Population: Female, Juvenile Facilities",Number of Females in Juvenile Facilities,,"Number of people who are Female, in Juvenile Facilities;" -Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Female, Military Quarters or Military Ships",Number of Females Staying in Military Quarters or on Military Ships,,"Number of people who are Female, in Military Quarters or Military Ships;" -Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Population: Female, Noninstitutionalized Group Quarters",Number of Females in Non-Institutionalized Group Quarters,,"Number of people who are Female, in Noninstitutionalized in Group Quarters;" -Count_Person_Female_ResidesInNursingFacilities,"Population: Female, Nursing Facilities",Number of Females in Nursing Facilities,,"Number of people who are Female, in Nursing Facilities;" -Count_Person_Female_SomeOtherRaceAlone,"Population: Female, Some Other Race Alone",Number of Females Who Are Some Other Race Alone,,"Number of people who are Female, Some Other Race Alone;" -Count_Person_Female_TwoOrMoreRaces,"Population: Female, Two or More Races",Number of Females Who Are Multiracial,,"Number of people who are Female, Two or More Races;" -Count_Person_Female_WhiteAlone,"Population: Female, White Alone",Number of Females Who Are White Alone,,"Number of people who are Female, White Alone;" -Count_Person_Female_WhiteAloneNotHispanicOrLatino,"Population: Female, White Alone Not Hispanic or Latino",Number of Females Who Are White Alone and Not Hispanic or Latino,,"Number of people who are Female, White Alone Not Hispanic or Latino;" -Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Female, White Alone or In Combination With One or More Other Races","Number of People Who Are Female, White Alone or in Combination With One or More Other Races",,"Number of people who are Female, White Alone or In Combination With One or More Other Races;" -Count_Person_Female_WithEarnings,"Population: Female, With Earnings",Number of Earning Females,,"Number of people who are Female, With Earnings;" -Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,"Population: Female, With Earnings, Adult Correctional Facilities",Number of Earning Females in Adult Correctional Facilities,,"Number of people who are Female, With Earnings, in Adult Correctional Facilities;" -Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,"Population: Female, With Earnings, College or University Student Housing",Number of Earning Females in College or University Student Housing,,"Number of people who are Female, With Earnings, in College or University Student Housing;" -Count_Person_Female_WithEarnings_ResidesInGroupQuarters,"Population: Female, With Earnings, Group Quarters",Number of Earning Females Staying in Group Quarters,,"Number of people who are Female, With Earnings, in Group Quarters;" -Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,"Population: Female, With Earnings, Institutionalized Group Quarters",Number of Earning Females Institutionalized in Group Quarters,,"Number of people who are Female, With Earnings, in Institutionalized in Group Quarters;" -Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,"Population: Female, With Earnings, Juvenile Facilities",Number of Earning Females in Juvenile Facilities,,"Number of people who are Female, With Earnings, in Juvenile Facilities;" -Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Female, With Earnings, Military Quarters or Military Ships",Number of Earning Females Staying in Military Quarters or on Military Ships,,"Number of people who are Female, With Earnings, in Military Quarters or Military Ships;" -Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,"Population: Female, With Earnings, Noninstitutionalized Group Quarters",Number of Earning Females Staying in Non-Institutionalized Group Quarters,,"Number of people who are Female, With Earnings, in Noninstitutionalized in Group Quarters;" -Count_Person_Female_WithEarnings_ResidesInNursingFacilities,"Population: Female, With Earnings, Nursing Facilities",Number of Earning Females in Nursing Facilities,,"Number of people who are Female, With Earnings, in Nursing Facilities;" -Count_Person_HearingDifficulty,Population: Hearing Difficulty,Number of Females With Hearing Difficulties,,Number of people who are with Hearing Difficulty; -Count_Person_HispanicOrLatino,Population: Hispanic or Latino,Number of Hispanic People,,Number of people who are Hispanic or Latino; -Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races,"Number of Hispanic People Who Identify as American Indian, Either Alone or in Combination With Other Races",,Number of people who are Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races; -Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,Population: Hispanic or Latino & American Indian or Alaska Native Alone,Number of Hispanic People Who Identify as American Indian,,Number of people who are Hispanic or Latino & American Indian or Alaska Native Alone; -Count_Person_HispanicOrLatino_AsianAlone,Population: Hispanic or Latino & Asian Alone,Number of Hispanic People Who Identify as Asian Alone,,Number of people who are Hispanic or Latino & Asian Alone; -Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Hispanic or Latino & Asian Alone or In Combination With One or More Other Races,Number of Hispanic People Who Identify as Asian Alone or in Combination With Other Races,,Number of people who are Hispanic or Latino & Asian Alone or In Combination With One or More Other Races; -Count_Person_HispanicOrLatino_AsianOrPacificIslander,Population: Hispanic or Latino & Asian or Pacific Islander,Number of Hispanic People Who Identify as Asian or Pacific Islander,,Number of people who are Hispanic or Latino & Asian or Pacific Islander; -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,Population: Hispanic or Latino & Black or African American Alone,Humber of People Who Identify as Hispanic or as African American,,Number of people who are Hispanic or Latino & Black or African American Alone; -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races,Number of Hispanic People Who Identify as Black or African American Alone or in Combination With One or More Other Races,,Number of people who are Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races; -Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races,Number of Hispanic People Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races,,Number of people who are Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races; -Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,Population: Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone,Number of Hispanic People Who Identify as Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone; -Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,"Population: Hispanic or Latino, Adult Correctional Facilities",Number of Hispanics in Adult Correctional Facilities,,"Number of people who are Hispanic or Latino, in Adult Correctional Facilities;" -Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,"Population: Hispanic or Latino, College or University Student Housing",Number of Hispanics Staying in College or University Student Housing,,"Number of people who are Hispanic or Latino, in College or University Student Housing;" -Count_Person_HispanicOrLatino_ResidesInGroupQuarters,"Population: Hispanic or Latino, Group Quarters",Number of Hispanics Staying in Group Quarters,,"Number of people who are Hispanic or Latino, in Group Quarters;" -Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Population: Hispanic or Latino, Institutionalized Group Quarters",Number of Hispanics Institutionalized in Group Quarters,,"Number of people who are Hispanic or Latino, in Institutionalized in Group Quarters;" -Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,"Population: Hispanic or Latino, Juvenile Facilities",Number of Hispanics in Juvenile Facilities,,"Number of people who are Hispanic or Latino, in Juvenile Facilities;" -Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Hispanic or Latino, Military Quarters or Military Ships",Number of Hispanics Staying in Military Quarters or on Military Ships,,"Number of people who are Hispanic or Latino, in Military Quarters or Military Ships;" -Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Population: Hispanic or Latino, Noninstitutionalized Group Quarters",Number of Hispanics in Non-Institutionalized Group Quarters,,"Number of people who are Hispanic or Latino, in Noninstitutionalized in Group Quarters;" -Count_Person_HispanicOrLatino_ResidesInNursingFacilities,"Population: Hispanic or Latino, Nursing Facilities",Number of Hispanics in Nursing Facilities,,"Number of people who are Hispanic or Latino, in Nursing Facilities;" -Count_Person_HispanicOrLatino_TwoOrMoreRaces,Population: Hispanic or Latino & Two or More Races,Number of Hispanics Who Are Multiracial,,Number of people who are Hispanic or Latino & Two or More Races; -Count_Person_HispanicOrLatino_WhiteAlone,Population: Hispanic or Latino & White Alone,Number of Hispanics Who Are White,,Number of people who are Hispanic or Latino & White Alone; -Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Hispanic or Latino & White Alone or In Combination With One or More Other Races,Number of People Who Are Hispanic or Latino & White Alone or in Combination With One or More Other Races,,Number of people who are Hispanic or Latino & White Alone or In Combination With One or More Other Races; -Count_Person_InLaborForce,,Number of People in the Labor Force,,Population in the labor force; -Count_Person_InLaborForce_Female_DivorcedInThePast12Months,"Population: in Labor Force, Female, Divorced in The Past 12 Months",Number of Females in the Labor Force Who Got Divorced in the Last Year,,"Number of people who are in Labor Force, Female, Divorced in The Past 12 Months;" -Count_Person_InLaborForce_Female_MarriedInThePast12Months,"Population: in Labor Force, Female, Married in The Past 12 Months",Number of Females in the Labor Force Who Got Married in the Last Year,,"Number of people who are in Labor Force, Female, a Married in The Past 12 Months;" -Count_Person_InLaborForce_Male_DivorcedInThePast12Months,"Population: in Labor Force, Male, Divorced in The Past 12 Months",Number of Males in the Labor Force Who Go Divorced Last Year,,"Number of people who are in Labor Force, Male, Divorced in The Past 12 Months;" -Count_Person_InLaborForce_Male_MarriedInThePast12Months,"Population: in Labor Force, Male, Married in The Past 12 Months",Number of Males in the Labor Force Who Got Married in the Last Year,,"Number of people who are in Labor Force, Male, a Married in The Past 12 Months;" -Count_Person_IndependentLivingDifficulty,Population: Independent Living Difficulty,Number of People With an Independent Living Difficulty,,"Number of people who are experiencing Independent Living Difficulty; number of people who, because of a physical, mental, or emotional problem, have difficulty doing errands alone such as visiting a doctor’s office or shopping;" -Count_Person_Male,Population: Male,Number of Males,,Number of people who are Male; -Count_Person_Male_AbovePovertyLevelInThePast12Months,"Population: Male, Above Poverty Level in The Past 12 Months",Number of Males Above Poverty Level Status in the Past Year,,"Number of people who are Male, Above Poverty Level Status in The Past 12 Months;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Male, Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are American Indian or Alaska Native Alone,,"Number of people who are Male, Above Poverty Level Status over the last year who are American Indian or Alaska Native Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,"Population: Male, Above Poverty Level in The Past 12 Months, Asian Alone",Number of Asian Males Who Are Above Poverty Level Status Over the Last Year,,"Number of people who are Male, Above Poverty Level Status over the last year who are Asian Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Male, Above Poverty Level in The Past 12 Months, Black or African American Alone",Number of African American Males Who Are Above Poverty Level Status Over the Last Year,,"Number of people who are Male, Above Poverty Level Status over the last year who are Black or African American Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"Population: Male, Above Poverty Level in The Past 12 Months, Hispanic or Latino",Number of Hispanic Males Who Are Above Poverty Level Status Over the Last Year,,"Number of people who are Male, Above Poverty Level Status over the last year who are Hispanic or Latino;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Male, Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Native Hawaiian or Other Pacific Islanders Alone,,"Number of people who are Male, Above Poverty Level Status over the last year who are Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Male, Above Poverty Level in The Past 12 Months, Some Other Race Alone",Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Some Other Race Alone,,"Number of people who are Male, Above Poverty Level Status over the last year who are Some Other Race Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Male, Above Poverty Level in The Past 12 Months, Two or More Races",Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Multiracial,,"Number of people who are Male, Above Poverty Level Status over the last year who are Two or More Races;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,"Population: Male, Above Poverty Level in The Past 12 Months, White Alone",Number of White Males Who Are Above Poverty Level Status Over the Last Year,,"Number of people who are Male, Above Poverty Level Status over the last year who are White Alone;" -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Male, Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Non Hispanic White Males Who Are Above Poverty Level Status Over the Last Year,,"Number of people who are Male, Above Poverty Level Status over the last year who are White Alone Not Hispanic or Latino;" -Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Males Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races,,"Number of people who are Male, American Indian And Alaska Native Alone or In Combination With One or More Other Races;" -Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,"Population: Male, American Indian or Alaska Native Alone",Number of Males Who Are American Indian or Alaska Native Alone,,"Number of people who are Male, American Indian or Alaska Native Alone;" -Count_Person_Male_AsianAlone,"Population: Male, Asian Alone",Number of Males Who Are Asian Alone,,"Number of people who are Male, Asian Alone;" -Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Asian Alone or In Combination With One or More Other Races",Number of Asian Males,,"Number of people who are Male, Asian Alone or In Combination With One or More Other Races;" -Count_Person_Male_AsianOrPacificIslander,"Population: Male, Asian or Pacific Islander",Number of Males Who Are Asian or Pacific Islander,,"Number of people who are Male, Asian or Pacific Islander;" -Count_Person_Male_BelowPovertyLevelInThePast12Months,"Population: Male, Below Poverty Level in The Past 12 Months",Number of Males Who Are Below Poverty Status in the Last Year,,"Number of people who are Male, Below Poverty Level Status in The Past 12 Months;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Population: Male, Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone",Number of Males Who Are Below Poverty Status for the Last Year and Are American Indian Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are American Indian or Alaska Native Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone,"Population: Male, Below Poverty Level in The Past 12 Months, Asian Alone",Number of Males Who Are Below Poverty Status for the Last Year and Are Asian Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are Asian Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Population: Male, Below Poverty Level in The Past 12 Months, Black or African American Alone",Number of Males Who Are Below Poverty Status for the Last Year and Are African American Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are Black or African American Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Population: Male, Below Poverty Level in The Past 12 Months, Hispanic or Latino",Number of Males Who Are Below Poverty Status for the Last Year and Are Hispanic Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are Hispanic or Latino;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Male, Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone",Number of Males Who Are Below Poverty Status for the Last Year and Are Native Hawaiianor Other Pacific Islander Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Population: Male, Below Poverty Level in The Past 12 Months, Some Other Race Alone",Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are Some Other Race Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are Some Other Race Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"Population: Male, Below Poverty Level in The Past 12 Months, Two or More Races",Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are Multiracial,,"Number of people who are Male, Below Poverty Level Status over the last year who are Two or More Races;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,"Population: Male, Below Poverty Level in The Past 12 Months, White Alone",Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are White Alone,,"Number of people who are Male, Below Poverty Level Status over the last year who are White Alone;" -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Population: Male, Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino",Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are White Alone and Not Hispanic,,"Number of people who are Male, Below Poverty Level Status over the last year who are White Alone Not Hispanic or Latino;" -Count_Person_Male_BlackOrAfricanAmericanAlone,"Population: Male, Black or African American Alone",Number of Males Who Are African American Alone,,"Number of people who are Male, Black or African American Alone;" -Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Black or African American Alone or In Combination With One or More Other Races",Number of African American Males,,"Number of people who are Male, Black or African American Alone or In Combination With One or More Other Races;" -Count_Person_Male_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,"Population: Male, Divorced in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Males Who Are Below Poverty Level Status and Got Divorced Over the Last Year,,"Number of people who are Male, Divorced over the last year who are Below Poverty Level Status in The Past 12 Months;" -Count_Person_Male_DivorcedInThePast12Months_PovertyStatusDetermined,"Population: Male, Divorced in The Past 12 Months, Poverty Status Determined",Number of Males Divorced Over the Last Year for Whom Poverty Status Can Be Determined,,"Number of people who are Male, Divorced over the last year who are Poverty Status Determined;" -Count_Person_Male_DivorcedInThePast12Months_ResidesInHousehold,"Population: Male, Divorced in The Past 12 Months, Household",Number of Males Living a Household and Divorced Over the Last Year,,"Number of people who are Male, Divorced over the last year who are Household;" -Count_Person_Male_ForeignBorn,"Population: Male, Foreign Born",Number of Foreign Born Males,,"Number of people who are Male, Foreign Born;" -Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,"Population: Male, Foreign Born, Africa",Number of Males Born in Africa,,"Number of people who are Male, born in Africa;" -Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,"Population: Male, Foreign Born, Asia",Number of Males Born in Asia,,"Number of people who are Male, born in Asia;" -Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,"Population: Male, Foreign Born, Caribbean",Number of Males Born in the Caribbean,,"Number of people who are Male, born in Caribbean;" -Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Population: Male, Foreign Born, Central America Except Mexico",Number of Males Born in a Central Americal Country Other Than Mexico,,"Number of people who are Male, born in Central America Except Mexico;" -Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,"Population: Male, Foreign Born, Eastern Asia",Number of Males Born in Eastern Asia,,"Number of people who are Male, born in Eastern Asia;" -Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,"Population: Male, Foreign Born, Europe",Number of Males Born in Europe,,"Number of people who are Male, born in Europe;" -Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,"Population: Male, Foreign Born, Latin America",Number of Males Born in Latin America,,"Number of people who are Male, born in Latin America;" -Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,"Population: Male, Foreign Born, Country/MEX",Number of Males Born in Mexico,,"Number of people who are Male, born in Country/ MEX;" -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,"Population: Male, Foreign Born, Northamerica",Number of Males Born in North America,,"Number of people who are Male, born in Northamerica;" -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Population: Male, Foreign Born, Northern Western Europe",Number of Males Born in North Western Europe,,"Number of people who are Male, born in Northern Western Europe;" -Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,"Population: Male, Foreign Born, Oceania",Number of Males Born in Oceania,,"Number of people who are Male, born in Oceania;" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Population: Male, Foreign Born, South Central Asia",Number of Males Born in South Central Asia,,"Number of people who are Male, born in South Central Asia;" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Population: Male, Foreign Born, South Eastern Asia",Number of Males Born in South Eastern Asia,,"Number of people who are Male, born in South Eastern Asia;" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Male, Foreign Born, Southamerica",Number of Males Born in South America,,"Number of people who are Male, born in Southamerica;" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: Male, Foreign Born, Southern Eastern Europe",Number of Males Born in South Eastern Europe,,"Number of people who are Male, born in Southern Eastern Europe;" -Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Male, Foreign Born, Western Asia",Number of Males Born in Western Asia,,"Number of people who are Male, born in Western Asia;" -Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,"Population: Male, Foreign Born, Adult Correctional Facilities",Number of Foreign Born Males Residing in Adult Correctional Facilities,,"Number of people who are Male, foreign born and residing in Adult Correctional Facilities;" -Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"Population: Male, Foreign Born, College or University Student Housing",Number of Foreign Born Males Residing in College or University Student Housing,,"Number of people who are Male, foreign born and residing in College or University Student Housing;" -Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,"Population: Male, Foreign Born, Group Quarters",Number of Foreign Born Males Residing in Group Quarters,,"Number of people who are Male, foreign born and residing in Group Quarters;" -Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Population: Male, Foreign Born, Institutionalized Group Quarters",Number of Foreign Born Males Who Are Institutionalized in Group Quarters,,"Number of people who are Male, foreign born and residing in Institutionalized in Group Quarters;" -Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,"Population: Male, Foreign Born, Juvenile Facilities",Number of Foreign Born Males Residing in Juvenile Facilities,,"Number of people who are Male, foreign born and residing in Juvenile Facilities;" -Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Male, Foreign Born, Military Quarters or Military Ships",Number of Foreign Born Males Residing in Military Quarters or on Military Ships,,"Number of people who are Male, foreign born and residing in Military Quarters or Military Ships;" -Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Population: Male, Foreign Born, Noninstitutionalized Group Quarters",Number of Foreign Born Males Residing in Non-Institutionalized Group Quarters,,"Number of people who are Male, foreign born and residing in Noninstitutionalized in Group Quarters;" -Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,"Population: Male, Foreign Born, Nursing Facilities",Number of Foreign Born Males Residing in Nursing Facilities,,"Number of people who are Male, foreign born and residing in Nursing Facilities;" -Count_Person_Male_HispanicOrLatino,"Population: Male, Hispanic or Latino",Number of Hispanic Males,,"Number of people who are Male, Hispanic or Latino;" -Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Males Who Are Hispanic and American Indian,,"Number of people who are Male, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;" -Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Population: Male, Hispanic or Latino & American Indian or Alaska Native Alone",Number of Males Who Are Hispanic and American Indian Alone,,"Number of people who are Male, Hispanic or Latino & American Indian or Alaska Native Alone;" -Count_Person_Male_HispanicOrLatino_AsianAlone,"Population: Male, Hispanic or Latino & Asian Alone",Number of Males Who Are Hispanic and Asian Alone,,"Number of people who are Male, Hispanic or Latino & Asian Alone;" -Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races",Number of Males Who Are Hispanic and Asian,,"Number of people who are Male, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;" -Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,"Population: Male, Hispanic or Latino & Asian or Pacific Islander",Number of Males Who Are Hispanic and Asian or Pacific Islander,,"Number of people who are Male, Hispanic or Latino & Asian or Pacific Islander;" -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,"Population: Male, Hispanic or Latino & Black or African American Alone",Number of Males Who Are Hispanic and African American Alone,,"Number of people who are Male, Hispanic or Latino & Black or African American Alone;" -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races",Number of Males Who Are Hispanic and African American,,"Number of people who are Male, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;" -Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Males Who Are Hispanic and Native Hawaiian or Other Pacific Islander,,"Number of people who are Male, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;" -Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Male, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone",Number of Males Who Are Hispanic and Native Hawaiian or Other Pacific Islander Alone,,"Number of people who are Male, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,"Population: Male, Hispanic or Latino & Two or More Races",Number of Mutiracial Hispanic Males,,"Number of people who are Male, Hispanic or Latino & Two or More Races;" -Count_Person_Male_HispanicOrLatino_WhiteAlone,"Population: Male, Hispanic or Latino & White Alone",Number of Males Who Are Hispanic and White Alone,,"Number of people who are Male, Hispanic or Latino & White Alone;" -Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Hispanic or Latino & White Alone or In Combination With One or More Other Races",Number of Males Who Are Hispanic and White,,"Number of people who are Male, Hispanic or Latino & White Alone or In Combination With One or More Other Races;" -Count_Person_Male_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,"Population: Male, Married in The Past 12 Months, Below Poverty Level in The Past 12 Months",Number of Males Who Are Below Poverty Status in the Last Year and Who Also Got Married in the Last Year,,"Number of people who are Male, a Married over the last year who are Below Poverty Level Status in The Past 12 Months;" -Count_Person_Male_MarriedInThePast12Months_PovertyStatusDetermined,"Population: Male, Married in The Past 12 Months, Poverty Status Determined",Number of Males Who Got Married Over the Last Year and Whose Poverty Status Was Also Determined in the Last Year,,"Number of people who are Male, a Married over the last year who are Poverty Status Determined;" -Count_Person_Male_MarriedInThePast12Months_ResidesInHousehold,"Population: Male, Married in The Past 12 Months, Household","Number of People Who Are Male, a Married Over the Last Year Who Are Residing in Households",,"Number of people who are Male, a Married over the last year who are Household;" -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,"Population: Male, Native Hawaiian and Other Pacific Islander Alone",Number of Males Who Are Native Hawaiian and Other Pacific Islander Alone,,"Number of people who are Male, Native Hawaiian And Other Pacific Islander Alone;" -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Males Who Are Native Hawaiian or Other Pacific Islander,,"Number of people who are Male, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;" -Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Male, Native Hawaiian or Other Pacific Islander Alone",Number of Males Who Are Native Hawaiian or Other Pacific Islander Alone,,"Number of people who are Male, Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Male_NonWhite,"Population: Male, Non White",Number of Non-White Males,,"Number of people who are Male, Non White;" -Count_Person_Male_NotHispanicOrLatino,"Population: Male, Not Hispanic or Latino",Number of Non Hispanic Males,,"Number of people who are Male, Not Hispanic or Latino;" -Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races",Number of Non Hispanic Males Who Identify as American Indian and Alaska Native Alone,,"Number of people who are Male, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;" -Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Population: Male, Not Hispanic or Latino & American Indian or Alaska Native Alone",Number of Non Hispanic Males Who Identify as American Indian or Alaska Native Alone,,"Number of people who are Male, Not Hispanic or Latino & American Indian or Alaska Native Alone;" -Count_Person_Male_NotHispanicOrLatino_AsianAlone,"Population: Male, Not Hispanic or Latino & Asian Alone",Number of Non Hispanic Males Who Identify as Asian Alone,,"Number of people who are Male, Not Hispanic or Latino & Asian Alone;" -Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races",Number of Non Hispanic Males Who Identify as Asian,,"Number of people who are Male, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;" -Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,"Population: Male, Not Hispanic or Latino & Asian or Pacific Islander",Number Ofnon Hispanic Males Who Identify as Asian or Pacific Islander,,"Number of people who are Male, Not Hispanic or Latino & Asian or Pacific Islander;" -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Population: Male, Not Hispanic or Latino & Black or African American Alone",Number of Non Hispanic Males Who Identify as African American Alone,,"Number of people who are Male, Not Hispanic or Latino & Black or African American Alone;" -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races",Number of Non Hispanic Males Who Identify as African American,,"Number of people who are Male, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;" -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races",Number of Non Hispanic Males Who Identify as Native Hawaiian and Other Pacific Islander,,"Number of people who are Male, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;" -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Male, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone",Number of Non Hispanic Males Who Identify as Native Hawaiian and Other Pacific Islander Alone,,"Number of people who are Male, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,"Population: Male, Not Hispanic or Latino & Two or More Races",Number of Non Hispanic Males Who Identify as Multi Racial,,"Number of people who are Male, Not Hispanic or Latino & Two or More Races;" -Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races",Number of Non Hispanic Males Who Identify as White,,"Number of people who are Male, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;" -Count_Person_Male_ResidesInAdultCorrectionalFacilities,"Population: Male, Adult Correctional Facilities",Number of Males Residing in Adult Correctional Facilities,,"Number of people who are Male, in Adult Correctional Facilities;" -Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Population: Male, College or University Student Housing",Number of Males Residing in College or University Studing Housing,,"Number of people who are Male, in College or University Student Housing;" -Count_Person_Male_ResidesInGroupQuarters,"Population: Male, Group Quarters",Number of Males Residing in Group Quarters,,"Number of people who are Male, in Group Quarters;" -Count_Person_Male_ResidesInInstitutionalizedGroupQuarters,"Population: Male, Institutionalized Group Quarters",Number of Males Institutionized in Group Quarters,,"Number of people who are Male, in Institutionalized in Group Quarters;" -Count_Person_Male_ResidesInJuvenileFacilities,"Population: Male, Juvenile Facilities",Number of Males in Juvenile Facilities,,"Number of people who are Male, in Juvenile Facilities;" -Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Male, Military Quarters or Military Ships",Number of Males Residing in Military Quarters or on Military Ships,,"Number of people who are Male, in Military Quarters or Military Ships;" -Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Population: Male, Noninstitutionalized Group Quarters",Number of Males Residing in Non-Institutionalized Group Quarters,,"Number of people who are Male, in Noninstitutionalized in Group Quarters;" -Count_Person_Male_ResidesInNursingFacilities,"Population: Male, Nursing Facilities",Number of Males Residing in Nursing Facilities,,"Number of people who are Male, in Nursing Facilities;" -Count_Person_Male_SomeOtherRaceAlone,"Population: Male, Some Other Race Alone",Number of Males Who Are From Some Other Race Alone,,"Number of people who are Male, Some Other Race Alone;" -Count_Person_Male_TwoOrMoreRaces,"Population: Male, Two or More Races",Number of Multiracial Males,,"Number of people who are Male, Two or More Races;" -Count_Person_Male_WhiteAlone,"Population: Male, White Alone",Number of Males Who Are White Alone,,"Number of people who are Male, White Alone;" -Count_Person_Male_WhiteAloneNotHispanicOrLatino,"Population: Male, White Alone Not Hispanic or Latino",Number of Males Who Are White Alone and Not Hispanic,,"Number of people who are Male, White Alone Not Hispanic or Latino;" -Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Population: Male, White Alone or In Combination With One or More Other Races",Number of Males Who Are White Alone or in Combination With One or More Other Races,,"Number of people who are Male, White Alone or In Combination With One or More Other Races;" -Count_Person_Male_WithEarnings,"Population: Male, With Earnings",Number of Earning Males,,"Number of people who are Male, With Earnings;" -Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,"Population: Male, With Earnings, Adult Correctional Facilities",Number of Earning Males Residing in Adult Correctional Facilities,,"Number of people who are Male, With Earnings, in Adult Correctional Facilities;" -Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,"Population: Male, With Earnings, College or University Student Housing",Number of Earning Males Residing in College or University Student Housing,,"Number of people who are Male, With Earnings, in College or University Student Housing;" -Count_Person_Male_WithEarnings_ResidesInGroupQuarters,"Population: Male, With Earnings, Group Quarters",Number of Earning Males Residing in Group Quarters,,"Number of people who are Male, With Earnings, in Group Quarters;" -Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,"Population: Male, With Earnings, Institutionalized Group Quarters",Number of Earning Males Who Have Been Institutionalized in Group Quarters,,"Number of people who are Male, With Earnings, in Institutionalized in Group Quarters;" -Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,"Population: Male, With Earnings, Juvenile Facilities",Number of Earning Males Residing in Juvenile Facilities,,"Number of people who are Male, With Earnings, in Juvenile Facilities;" -Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Male, With Earnings, Military Quarters or Military Ships",Number of Earning Males Residing in Military Quarters or on Military Ships,,"Number of people who are Male, With Earnings, in Military Quarters or Military Ships;" -Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,"Population: Male, With Earnings, Noninstitutionalized Group Quarters",Number of Earning Males Residing in Non-Institutionalized Group Quarters,,"Number of people who are Male, With Earnings, in Noninstitutionalized in Group Quarters;" -Count_Person_Male_WithEarnings_ResidesInNursingFacilities,"Population: Male, With Earnings, Nursing Facilities",Number of Earning Males Residing in Nursing Facilities,,"Number of people who are Male, With Earnings, in Nursing Facilities;" -Count_Person_MarriedAndNotSeparated,,Number of Married People Who Are Not Separated,, -Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,Population: Native Hawaiian And Other Pacific Islander Alone,Number of People Who Are Native Hawaiian and Other Pacific Islander Alone,,Number of people who are Native Hawaiian and Other Pacific Islander Alone; -Count_Person_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races,Number of People Who Are Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races,,Number of people who are Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races; -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Population: Native Hawaiian or Other Pacific Islander Alone,Number of People Who Are Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Native Hawaiian or Other Pacific Islander Alone; -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,"Population: Native Hawaiian or Other Pacific Islander Alone, Adult Correctional Facilities",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Adult Correctional Facilities,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Adult Correctional Facilities;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: Native Hawaiian or Other Pacific Islander Alone, College or University Student Housing",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in College or University Student Housing,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in College or University Student Housing;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,"Population: Native Hawaiian or Other Pacific Islander Alone, Group Quarters",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Group Quarters,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Group Quarters;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,"Population: Native Hawaiian or Other Pacific Islander Alone, Institutionalized Group Quarters",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Institutionalized in Group Quarters,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Institutionalized in Group Quarters;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,"Population: Native Hawaiian or Other Pacific Islander Alone, Juvenile Facilities",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Juvenile Facilities,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Juvenile Facilities;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Native Hawaiian or Other Pacific Islander Alone, Military Quarters or Military Ships",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Military Quarters or on Military Ships,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Military Quarters or Military Ships;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: Native Hawaiian or Other Pacific Islander Alone, Noninstitutionalized Group Quarters",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Non-Institutionalized Group Quarters,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Noninstitutionalized in Group Quarters;" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,"Population: Native Hawaiian or Other Pacific Islander Alone, Nursing Facilities",Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Nursing Facilities,,"Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Nursing Facilities;" -Count_Person_NeverMarried,,Number of People Who Have Never Been Married,, -Count_Person_NoDisability,Population: No Disability,Number of People Without Any Disability,,Number of people who are No Disability; -Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,"Population: No Disability, Adult Correctional Facilities",Number of People Without Any Disability in Adult Correctional Facilities,,"Number of people who are No Disability, in Adult Correctional Facilities;" -Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,"Population: No Disability, College or University Student Housing",Number of People Without Any Disability Residing in College or University Student Housing,,"Number of people who are No Disability, in College or University Student Housing;" -Count_Person_NoDisability_ResidesInGroupQuarters,"Population: No Disability, Group Quarters",Number of People Without Any Disability Residing in Group Quarters,,"Number of people who are No Disability, in Group Quarters;" -Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,"Population: No Disability, Institutionalized Group Quarters",Number of People Without Any Disability Institutionalized in Group Quarters,,"Number of people who are No Disability, in Institutionalized in Group Quarters;" -Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,"Population: No Disability, Noninstitutionalized Group Quarters",Number of People Without Any Disability Residing in Non-Institutionalized Group Quarters,,"Number of people who are No Disability, in Noninstitutionalized in Group Quarters;" -Count_Person_NoDisability_ResidesInNursingFacilities,"Population: No Disability, Nursing Facilities",Number of People Without Any Disability in Nursing Facilities,,"Number of people who are No Disability, in Nursing Facilities;" -Count_Person_NoHealthInsurance,Population: No Health Insurance,Number of People Without Health Insurance,,Number of people who are No Health Insurance; -Count_Person_NonWhite,Population: Non White,Number of Non White People,,Number of people who are Non White; -Count_Person_NotAUSCitizen,,Number of People Who Are Not US Citizens,, -Count_Person_NotEnrolledInSchool,Population: Not Enrolled in School,Number of People Not Currently Enrolled in School,,Number of people not in school;Number of people not currently enrolled in school; Number of individuals not in school; Number of people not in education; Number of non-students; Number of people not in higher education; -Count_Person_NotHispanicOrLatino,Population: Not Hispanic or Latino,Number of Non Hispanic People,,Number of people who are Not Hispanic or Latino; -Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races,Number of Non Hispanic People Who Identify as American Indian and Alaska Native Alone or in Combination With One or More Other Races,,Number of people who are Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races; -Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,Population: Not Hispanic or Latino & American Indian or Alaska Native Alone,Number of Non Hispanic People Who Identify as American Indian or Alaska Native Alone,,Number of people who are Not Hispanic or Latino & American Indian or Alaska Native Alone; -Count_Person_NotHispanicOrLatino_AsianAlone,Population: Not Hispanic or Latino & Asian Alone,Number of Non Hispanic People Who Identify as Asian Alone,,Number of people who are Not Hispanic or Latino & Asian Alone; -Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races,Number of Non Hispanic People Who Identify as Asian,,Number of people who are Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races; -Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,Population: Not Hispanic or Latino & Asian or Pacific Islander,Number of Non Hispanic People Who Identify as Asian or Pacific Islander,,Number of people who are Not Hispanic or Latino & Asian or Pacific Islander; -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,Population: Not Hispanic or Latino & Black or African American Alone,Number of Non Hispanic People Who Identify as Black or African American Alone,,Number of people who are Not Hispanic or Latino & Black or African American Alone; -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races,Number of Non Hispanic People Who Identify as Black or African American,,Number of people who are Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races; -Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races,Number of Non Hispanic People Who Identify as Native Hawaiian and Other Pacific Islander,,Number of people who are Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races; -Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,Population: Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone,Number of Non Hispanic People Who Identify as Native Hawaiian or Other Pacific Islander Alone,,Number of people who are Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone; -Count_Person_NotHispanicOrLatino_ResidesInGroupQuarters,"Population: Not Hispanic or Latino, Group Quarters",Number of Non Hispanics Residing in Group Quarters,,"Number of people who are Not Hispanic or Latino, in Group Quarters;" -Count_Person_NotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Population: Not Hispanic or Latino, Institutionalized Group Quarters",Number of Non Hispanics Residing in Institutionalized Group Quarters,,"Number of people who are Not Hispanic or Latino, in Institutionalized in Group Quarters;" -Count_Person_NotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Population: Not Hispanic or Latino, Noninstitutionalized Group Quarters",Number of Non Hispanics Residing in Non-Institutionalized Group Quarters,,"Number of people who are Not Hispanic or Latino, in Noninstitutionalized in Group Quarters;" -Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,Population: Not Hispanic or Latino & Two or More Races,Number of Non Hispanic People Identifying as Multiracial,,Number of people who are Not Hispanic or Latino & Two or More Races; -Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Population: Not Hispanic or Latino & White Alone or In Combination With One or More Other Races,Number of Non Hispanic People Identyfing as White Alone or in Combination With One or More Other Races,,Number of people who are Not Hispanic or Latino & White Alone or In Combination With One or More Other Races; -Count_Person_NotInLaborForce_Female_DivorcedInThePast12Months,"Population: Not in Labor Force, Female, Divorced in The Past 12 Months",Number of Females Who Are Not in the Labor Force and Got Divorced in the Last Year,,"Number of people who are Not in Labor Force, Female, Divorced in The Past 12 Months;" -Count_Person_NotInLaborForce_Female_MarriedInThePast12Months,"Population: Not in Labor Force, Female, Married in The Past 12 Months",Number of Females Who Are Not in the Labor Force and Got Married in the Last Year,,"Number of people who are Not in Labor Force, Female, a Married in The Past 12 Months;" -Count_Person_NotInLaborForce_Male_DivorcedInThePast12Months,"Population: Not in Labor Force, Male, Divorced in The Past 12 Months",Number of Males Who Are Not in the Labor Force and Got Divorced in the Last Year,,"Number of people who are Not in Labor Force, Male, Divorced in The Past 12 Months;" -Count_Person_NotInLaborForce_Male_MarriedInThePast12Months,"Population: Not in Labor Force, Male, Married in The Past 12 Months",Number of Males Who Are Not in the Labor Force and Got Married in the Last Year,,"Number of people who are Not in Labor Force, Male, a Married in The Past 12 Months;" -Count_Person_OneRace,Population: One Race,Number of People of a Single Race,,Number of people who are One Race; -Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,"Population: One Race, Adult Correctional Facilities",Number of People of a Single Race Residing in Adult Correctional Facilities,,"Number of people who are One Race, in Adult Correctional Facilities;" -Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,"Population: One Race, College or University Student Housing",Number of People of a Single Race Residing in College or University Student Housing,,"Number of people who are One Race, in College or University Student Housing;" -Count_Person_OneRace_ResidesInGroupQuarters,"Population: One Race, Group Quarters",Number of People of a Single Race Residing in Group Quarters,,"Number of people who are One Race, in Group Quarters;" -Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,"Population: One Race, Institutionalized Group Quarters",Number of People of a Single Race Who Are Institutionalized in Group Quarters,,"Number of people who are One Race, in Institutionalized in Group Quarters;" -Count_Person_OneRace_ResidesInJuvenileFacilities,"Population: One Race, Juvenile Facilities",Number of People of a Single Race Residing in Juvenile Facilities,,"Number of people who are One Race, in Juvenile Facilities;" -Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,"Population: One Race, Military Quarters or Military Ships",Number of People of a Single Race Residing in Military Quarters or on Military Ships,,"Number of people who are One Race, in Military Quarters or Military Ships;" -Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,"Population: One Race, Noninstitutionalized Group Quarters",Number of People of a Single Race Who Are Residing in Non-Institutionalized Group Quarters,,"Number of people who are One Race, in Noninstitutionalized in Group Quarters;" -Count_Person_OneRace_ResidesInNursingFacilities,"Population: One Race, Nursing Facilities",Number of People of a Single Race Residing in Nursing Facilities,,"Number of people who are One Race, in Nursing Facilities;" -Count_Person_PerArea,Population Density,Population Density,,Population Density; number of people per area; -Count_Person_PovertyStatusDetermined_ResidesInGroupQuarters,"Population: Poverty Status Determined, Group Quarters",Number of People Residing in Group Quarters Who Had Their Poverty Status Determined,,"Number of people who are Poverty Status Determined, in Group Quarters;" -Count_Person_PovertyStatusDetermined_ResidesInNoninstitutionalizedGroupQuarters,"Population: Poverty Status Determined, Noninstitutionalized Group Quarters",Number of People Residing in Non-Institutionalized Group Quarters Who Had Their Poverty Status Determined,,"Number of people who are Poverty Status Determined, in Noninstitutionalized in Group Quarters;" -Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,"Population: Producer, American Indian or Alaska Native Alone",Number of American Indian and Native American Farmers,,Number of American Indian and Native American farmers; -Count_Person_Producer_AsianAlone,"Population: Producer, Asian Alone",Number of Asian Farmers,,Number of Asian farmers; -Count_Person_Producer_BlackOrAfricanAmericanAlone,"Population: Producer, Black or African American Alone",Number of African American Farmers,,Number of African American farmers; -Count_Person_Producer_HispanicOrLatino,"Population: Producer, Hispanic or Latino",Number of Hispanic Farmers,,Number of hispanic farmers; -Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"Population: Producer, Native Hawaiian or Other Pacific Islander Alone",Number of Native Hawaiian Farmers,,Number of native hawaiian farmers; -Count_Person_Producer_TwoOrMoreRaces,"Population: Producer, Two or More Races",Number of Farmers of Mixed Race,,number of farmers of mixed race farmers; -Count_Person_Producer_WhiteAlone,"Population: Producer, White Alone",Number of White Farmers,,number of white farmers; -Count_Person_Rural,,Number of People Living in Rural Areas,, -Count_Person_SelfCareDifficulty,Population: Self Care Difficulty,Number of People With Self Care Difficulty,,Number of people who are with Self Care Difficulty; -Count_Person_Separated,,Number of People Who Are Married but Separated,, -Count_Person_SomeOtherRaceAlone,Population: Some Other Race Alone,Number of People Who Identify as Some Other Race Alone,,Number of people who are Some Other Race Alone; -Count_Person_SomeOtherRaceAlone_ResidesInAdultCorrectionalFacilities,"Population: Some Other Race Alone, Adult Correctional Facilities",Number of People Who Identify as Some Other Race Alone Residing in Adult Correctional Facilities,,"Number of people who are Some Other Race Alone, in Adult Correctional Facilities;" -Count_Person_SomeOtherRaceAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: Some Other Race Alone, College or University Student Housing",Number of People Who Identify as Some Other Race Alone Residing in College or University Student Housing,,"Number of people who are Some Other Race Alone, in College or University Student Housing;" -Count_Person_SomeOtherRaceAlone_ResidesInGroupQuarters,"Population: Some Other Race Alone, Group Quarters",Number of People Who Identify as Some Other Race Alone Residing in Group Quarters,,"Number of people who are Some Other Race Alone, in Group Quarters;" -Count_Person_SomeOtherRaceAlone_ResidesInInstitutionalizedGroupQuarters,"Population: Some Other Race Alone, Institutionalized Group Quarters",Number of People Who Identify as Some Other Race Alone Residing in Institutionalized Group Quarters,,"Number of people who are Some Other Race Alone, in Institutionalized Group Quarters;" -Count_Person_SomeOtherRaceAlone_ResidesInJuvenileFacilities,"Population: Some Other Race Alone, Juvenile Facilities",Number of People Who Identify as Some Other Race Alone Residing in Juvenile Facilities,,"Number of people who are Some Other Race Alone, in Juvenile Facilities;" -Count_Person_SomeOtherRaceAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Some Other Race Alone, Military Quarters or Military Ships",Number of People Who Identify as Some Other Race Alone Residing in Military Quarters or on Military Ships,,"Number of people who are Some Other Race Alone, in Military Quarters or Military Ships;" -Count_Person_SomeOtherRaceAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: Some Other Race Alone, Noninstitutionalized Group Quarters",Number of People Who Identify as Some Other Race Alone Residing in Non-Institutionalized Group Quarters,,"Number of people who are Some Other Race Alone, in Noninstitutionalized in Group Quarters;" -Count_Person_SomeOtherRaceAlone_ResidesInNursingFacilities,"Population: Some Other Race Alone, Nursing Facilities",Number of People Who Identify as Some Other Race Alone Residing in Nursing Facilities,,"Number of people who are Some Other Race Alone, in Nursing Facilities;" -Count_Person_TwoOrMoreRaces,Population: Two or More Races,Number of Multiracial People,,Number of people who are Two or More Races; -Count_Person_TwoOrMoreRaces_ResidesInAdultCorrectionalFacilities,"Population: Two or More Races, Adult Correctional Facilities",Number of Multiracial People Residing in Adult Correctional Facilities,,"Number of people who are Two or More Races, in Adult Correctional Facilities;" -Count_Person_TwoOrMoreRaces_ResidesInCollegeOrUniversityStudentHousing,"Population: Two or More Races, College or University Student Housing",Number of Multiracial People Residing in College or University Student Housing,,"Number of people who are Two or More Races, in College or University Student Housing;" -Count_Person_TwoOrMoreRaces_ResidesInGroupQuarters,"Population: Two or More Races, Group Quarters",Number of Multiracial People Residing in Group Quarters,,"Number of people who are Two or More Races, in Group Quarters;" -Count_Person_TwoOrMoreRaces_ResidesInInstitutionalizedGroupQuarters,"Population: Two or More Races, Institutionalized Group Quarters",Number of Multiracial People Residing in Institutionalized Group Quarters,,"Number of people who are Two or More Races, in Institutionalized Group Quarters;" -Count_Person_TwoOrMoreRaces_ResidesInJuvenileFacilities,"Population: Two or More Races, Juvenile Facilities",Number of Multiracial People Residing in Juvenile Facilities,,"Number of people who are Two or More Races, in Juvenile Facilities;" -Count_Person_TwoOrMoreRaces_ResidesInMilitaryQuartersOrMilitaryShips,"Population: Two or More Races, Military Quarters or Military Ships",Number of Multiracial People Residing in Military Quarters or on Military Ships,,"Number of people who are Two or More Races, in Military Quarters or Military Ships;" -Count_Person_TwoOrMoreRaces_ResidesInNoninstitutionalizedGroupQuarters,"Population: Two or More Races, Noninstitutionalized Group Quarters",Number of Multiracial People Residing in Non-Institutionalized Group Quarters,,"Number of people who are Two or More Races, in Noninstitutionalized Group Quarters;" -Count_Person_TwoOrMoreRaces_ResidesInNursingFacilities,"Population: Two or More Races, Nursing Facilities",Number of Multiracial People Residing in Nursing Facilities,,"Number of people who are Two or More Races, in Nursing Facilities;" -Count_Person_USCitizenBornAbroadOfAmericanParents,,Number of US Citizens Born Abroad to American Parents,, -Count_Person_USCitizenBornInTheUnitedStates,,Number of US Citizens Born in the United States,, -Count_Person_USCitizenByNaturalization,,Number of US Citizens by Naturalization,, -Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,,Percent of Children Younger Than 4 With Severe Cachexia (Wasting Syndrome),,Percent of children younger than 4 with severe Cachexia (wasting syndrome); -Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,,Percent of Children Younger Than 4 With Cachexia (Wasting Syndrome),,Percent of children younger than 4 with Cachexia (wasting syndrome); -Count_Person_Urban,,Population Living in Urban Areas,,Population living in urban areas; -Count_Person_VisionDifficulty,Population: Vision Difficulty,Number of People With Vision Difficulty,,Number of people who are with Vision Difficulty; -Count_Person_WhiteAlone,Population: White Alone,Number of People Who Identify as White Alone,,Number of people who are White Alone; -Count_Person_WhiteAloneNotHispanicOrLatino,Population: White Alone Not Hispanic or Latino,Number of Non Hispanic People Who Identify as White Alone,,Number of people who are White Alone Not Hispanic or Latino; -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInAdultCorrectionalFacilities,"Population: White Alone Not Hispanic or Latino, Adult Correctional Facilities",Number of Non Hispanic People Who Identify as White Alone Residing in Adult Correctional Facilities,,"Number of people who are White Alone Not Hispanic or Latino, in Adult Correctional Facilities;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,"Population: White Alone Not Hispanic or Latino, College or University Student Housing",Number of Non Hispanic People Who Identify as White Alone Residing in College or University Student Housing,,"Number of people who are White Alone Not Hispanic or Latino, in College or University Student Housing;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInGroupQuarters,"Population: White Alone Not Hispanic or Latino, Group Quarters",Number of Non Hispanic People Who Identify as White Alone Residing in Group Quarters,,"Number of people who are White Alone Not Hispanic or Latino, in Group Quarters;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Population: White Alone Not Hispanic or Latino, Institutionalized Group Quarters",Number of Non Hispanic People Who Identify as White Alone Residing in Insitutionalized Group Quarters,,"Number of people who are White Alone Not Hispanic or Latino, in Institutionalized Group Quarters;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInJuvenileFacilities,"Population: White Alone Not Hispanic or Latino, Juvenile Facilities",Number of Non Hispanic People Who Identify as White Alone Residing in Juvenile Facilities,,"Number of people who are White Alone Not Hispanic or Latino, in Juvenile Facilities;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,"Population: White Alone Not Hispanic or Latino, Military Quarters or Military Ships",Number of Non Hispanic People Who Identify as White Alone Residing in Military Quarters or on Military Ships,,"Number of people who are White Alone Not Hispanic or Latino, in Military Quarters or Military Ships;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Population: White Alone Not Hispanic or Latino, Noninstitutionalized Group Quarters",Number of Non Hispanic People Who Identify as White Alone Residing in Non-Insitutionalized Group Quarters,,"Number of people who are White Alone Not Hispanic or Latino, in Noninstitutionalized Group Quarters;" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNursingFacilities,"Population: White Alone Not Hispanic or Latino, Nursing Facilities",Number of Non Hispanic People Who Identify as White Alone Residing in Nursing Facilities,,"Number of people who are White Alone Not Hispanic or Latino, in Nursing Facilities;" -Count_Person_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Population: White Alone or In Combination With One or More Other Races,Number of People Who Identify as White Alone or in Combination With One or More Other Races,,Number of people who are White Alone or In Combination With One or More Other Races; -Count_Person_WhiteAlone_ResidesInAdultCorrectionalFacilities,"Population: White Alone, Adult Correctional Facilities",Number of People Who Identify as White Alone Residing in Adult Correctional Facilities,,"Number of people who are White Alone, in Adult Correctional Facilities;" -Count_Person_WhiteAlone_ResidesInCollegeOrUniversityStudentHousing,"Population: White Alone, College or University Student Housing",Number of People Who Identify as White Alone Residing in College or University Student Housing,,"Number of people who are White Alone, in College or University Student Housing;" -Count_Person_WhiteAlone_ResidesInGroupQuarters,"Population: White Alone, Group Quarters",Number of People Who Identify as White Alone Residing in Group Quarters,,"Number of people who are White Alone, in Group Quarters;" -Count_Person_WhiteAlone_ResidesInInstitutionalizedGroupQuarters,"Population: White Alone, Institutionalized Group Quarters",Number of People Who Identify as White Alone Residing in Institutionalized Group Quarters,,"Number of people who are White Alone, in Institutionalized in Group Quarters;" -Count_Person_WhiteAlone_ResidesInJuvenileFacilities,"Population: White Alone, Juvenile Facilities",Number of People Who Identify as White Alone Residing in Juvenile Facilities,,"Number of people who are White Alone, in Juvenile Facilities;" -Count_Person_WhiteAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Population: White Alone, Military Quarters or Military Ships",Number of People Who Identify as White Alone Residing in Military Quarters or on Military Ships,,"Number of people who are White Alone, in Military Quarters or Military Ships;" -Count_Person_WhiteAlone_ResidesInNoninstitutionalizedGroupQuarters,"Population: White Alone, Noninstitutionalized Group Quarters",Number of People Who Identify as White Alone Residing in Non-Institutionalized Group Quarters,,"Number of people who are White Alone, in Noninstitutionalized in Group Quarters;" -Count_Person_WhiteAlone_ResidesInNursingFacilities,"Population: White Alone, Nursing Facilities",Number of People Who Identify as White Alone Residing in Nursing Facilities,,"Number of people who are White Alone, in Nursing Facilities;" -Count_Person_Widowed,,Widowed Population,, -Count_Person_WithDirectPurchaseHealthInsurance,Population: With Direct Purchase Health Insurance,Number of People Who Directly Purchased Their Health Insurance,,Number of people who are With Direct Purchase Health Insurance; -Count_Person_WithDirectPurchaseHealthInsuranceOnly,Population: With Direct Purchase Health Insurance Only,Number of People Who Only Directly Purchased Their Health Insurance,,Number of people who are With Direct Purchase Health Insurance Only; -Count_Person_WithDisability,Population: With Disability,Number of People With Disabilities,,Number of people who are With Disability; -Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,"Population: With Disability, American Indian or Alaska Native Alone",Number of American Indian or Alaska Native People With Disabilities,,"Number of people who are With Disability, American Indian or Alaska Native Alone;" -Count_Person_WithDisability_AsianAlone,"Population: With Disability, Asian Alone",Number of Asian People With Disabilities,,"Number of people who are With Disability, Asian Alone;" -Count_Person_WithDisability_BlackOrAfricanAmericanAlone,"Population: With Disability, Black or African American Alone",Number of Black or African American People With Disabilities,,"Number of people who are With Disability, Black or African American Alone;" -Count_Person_WithDisability_Female,"Population: With Disability, Female",Number of Female People With Disabilities,,"Number of people who are With Disability, Female;" -Count_Person_WithDisability_HispanicOrLatino,"Population: With Disability, Hispanic or Latino",Number of Hispanic or Latino People With Disabilities,,"Number of people who are With Disability, Hispanic or Latino;" -Count_Person_WithDisability_Male,"Population: With Disability, Male",Number of Male People With Disabilities,,"Number of people who are With Disability, Male;" -Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,"Population: With Disability, Native Hawaiian or Other Pacific Islander Alone",Number of Native Hawaiian or Other Pacific Islander People With Disabilities,,"Number of people who are With Disability, Native Hawaiian or Other Pacific Islander Alone;" -Count_Person_WithDisability_OneRace,"Population: With Disability, One Race",Number of People With Disabilities of a Single Race,,"Number of people who are With Disability, One Race;" -Count_Person_WithDisability_ResidesInAdultCorrectionalFacilities,"Population: With Disability, Adult Correctional Facilities",Number of People With Disabilities Living in Adult Correctional Facilities,,"Number of people who are With Disability, in Adult Correctional Facilities;" -Count_Person_WithDisability_ResidesInCollegeOrUniversityStudentHousing,"Population: With Disability, College or University Student Housing",Number of People With Disabilities Living in College or University Student Housing,,"Number of people who are With Disability, in College or University Student Housing;" -Count_Person_WithDisability_ResidesInGroupQuarters,"Population: With Disability, Group Quarters",Number of People With Disabilities Living in Group Quarters,,"Number of people who are With Disability, in Group Quarters;" -Count_Person_WithDisability_ResidesInInstitutionalizedGroupQuarters,"Population: With Disability, Institutionalized Group Quarters",Number of People With Disabilities Living in Institutionalized Group Quarters,,"Number of people who are With Disability, in Institutionalized in Group Quarters;" -Count_Person_WithDisability_ResidesInJuvenileFacilities,"Population: With Disability, Juvenile Facilities",Number of People With Disabilities Living in Juvenile Facilities,,"Number of people who are With Disability, in Juvenile Facilities;" -Count_Person_WithDisability_ResidesInMilitaryQuartersOrMilitaryShips,"Population: With Disability, Military Quarters or Military Ships",Number of People With Disabilities Living in Military Quarters or Ships,,"Number of people who are With Disability, in Military Quarters or Military Ships;" -Count_Person_WithDisability_ResidesInNoninstitutionalizedGroupQuarters,"Population: With Disability, Noninstitutionalized Group Quarters",Number of People With Disabilities Living in Noninstitutionalized Group Quarters,,"Number of people who are With Disability, in Noninstitutionalized in Group Quarters;" -Count_Person_WithDisability_ResidesInNursingFacilities,"Population: With Disability, Nursing Facilities",Number of People With Disabilities Living in Nursing Facilities,,"Number of people who are With Disability, in Nursing Facilities;" -Count_Person_WithDisability_SomeOtherRaceAlone,"Population: With Disability, Some Other Race Alone",Number of People With Disabilities of Some Other Race,,"Number of people who are With Disability, Some Other Race Alone;" -Count_Person_WithDisability_TwoOrMoreRaces,"Population: With Disability, Two or More Races",Number of People With Disabilities of Two or More Races,,"Number of people who are With Disability, Two or More Races;" -Count_Person_WithDisability_WhiteAlone,"Population: With Disability, White Alone",Number of White People With Disabilities,,"Number of people who are With Disability, White Alone;" -Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,"Population: With Disability, White Alone Not Hispanic or Latino",Number of Non Hispanic or Latino White People With Disabilities,,"Number of people who are With Disability, White Alone Not Hispanic or Latino;" -Count_Person_WithEmployerBasedHealthInsurance,Population: With Employer Based Health Insurance,Number of People With Employer-Based Health Insurance,,Number of people who are With Employer Based Health Insurance; -Count_Person_WithEmployerBasedHealthInsuranceOnly,Population: With Employer Based Health Insurance Only,Number of People With Only Employer-Based Health Insurance,,Number of people who are With Employer Based Health Insurance Only; -Count_Person_WithFoodStampsInThePast12Months_ResidesInAdultCorrectionalFacilities,"Population: With Food Stamps in The Past 12 Months, Adult Correctional Facilities",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Adult Correctional Facilities,,Number of people who are With Food Stamps over the last year who are in Adult Correctional Facilities; -Count_Person_WithFoodStampsInThePast12Months_ResidesInCollegeOrUniversityStudentHousing,"Population: With Food Stamps in The Past 12 Months, College or University Student Housing",Number of People Who Received Food Stamps in the Past 12 Months and Lived in College or University Student Housing,,Number of people who are With Food Stamps over the last year who are in College or University Student Housing; -Count_Person_WithFoodStampsInThePast12Months_ResidesInGroupQuarters,"Population: With Food Stamps in The Past 12 Months, Group Quarters",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Group Quarters,,Number of people who are With Food Stamps over the last year who are in Group Quarters; -Count_Person_WithFoodStampsInThePast12Months_ResidesInInstitutionalizedGroupQuarters,"Population: With Food Stamps in The Past 12 Months, Institutionalized Group Quarters",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Institutionalized Group Quarters,,Number of people who are With Food Stamps over the last year who are in Institutionalized Group Quarters; -Count_Person_WithFoodStampsInThePast12Months_ResidesInJuvenileFacilities,"Population: With Food Stamps in The Past 12 Months, Juvenile Facilities",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Juvenile Facilities,,Number of people who are With Food Stamps over the last year who are in Juvenile Facilities; -Count_Person_WithFoodStampsInThePast12Months_ResidesInNoninstitutionalizedGroupQuarters,"Population: With Food Stamps in The Past 12 Months, Noninstitutionalized Group Quarters",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Noninstitutionalized Group Quarters,,Number of people who are With Food Stamps over the last year who are in Noninstitutionalized Group Quarters; -Count_Person_WithFoodStampsInThePast12Months_ResidesInNursingFacilities,"Population: With Food Stamps in The Past 12 Months, Nursing Facilities",Number of People Who Received Food Stamps in the Past 12 Months and Lived in Nursing Facilities,,Number of people who are With Food Stamps over the last year who are in Nursing Facilities; -Count_Person_WithHealthInsurance,Population: With Health Insurance,Number of People With Health Insurance,,Number of people who are With Health Insurance; -Count_Person_WithMedicaidOrMeansTestedPublicCoverage,Population: With Medicaid or Means Tested Public Coverage,Number of People With Medicaid or Means-Tested Public Coverage,,Number of people who are With Medicaid or Means Tested Public Coverage; -Count_Person_WithMedicaidOrMeansTestedPublicCoverageOnly,Population: With Medicaid or Means Tested Public Coverage Only,Number of People With Only Medicaid or Means-Tested Public Coverage,,Number of people who are With Medicaid or Means Tested Public Coverage Only; -Count_Person_WithMedicareCoverage,Population: With Medicare Coverage,Number of People With Medicare Coverage,,Number of people who are With Medicare Coverage; -Count_Person_WithMedicareCoverageOnly,Population: With Medicare Coverage Only,Number of People With Only Medicare Coverage,,Number of people who are With Medicare Coverage Only; -Count_Person_WithPrivateHealthInsurance,Population: With Private Health Insurance,Number of People With Private Health Insurance,,Number of people who are With Private Health Insurance; -Count_Person_WithPrivateHealthInsuranceOnly,Population: With Private Health Insurance Only,Number of People With Only Private Health Insurance,,Number of people who are With Private Health Insurance Only;Number of people with only private health insurance; Number of individuals with private coverage only; Number of people without public insurance; Number of people who rely on private plans; Number of people who don't have public health insurance; -Count_Person_WithPublicHealthInsurance,Population: With Public Health Insurance,Number of People With Public Health Insurance,,Number of people who are With Public Health Insurance; -Count_Person_WithPublicHealthInsuranceOnly,Population: With Public Health Insurance Only,Number of People With Only Public Health Insurance,,Number of people who are With Public Health Insurance Only; -Count_Person_WithTricareMilitaryHealthCoverage,Population: With Tricare Military Health Coverage,Number of People With TRICARE Military Health Coverage,,Number of people who are With Tricare Military Health Coverage; -Count_Person_WithTricareMilitaryHealthCoverageOnly,Population: With Tricare Military Health Coverage Only,Number of People With Only TRICARE Military Health Coverage,,Number of people who are With Tricare Military Health Coverage Only; -Count_Person_WithVAHealthCare,Population: With VAHealth Care,Number of People With VA Health Care,,Number of people who are With VAHealth Care; -Count_Person_WithVAHealthCareOnly,Population: With VAHealth Care Only,Number of People With Only VA Health Care,,Number of people who are With VAHealth Care Only; -Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Mobile Subscriptions Per Capita,Number of Mobile Phone Subscriptions Per Person in a Population,,Phones per capita; cellphone posession rate;Number of mobile phone subscriptions per person; Number of cell phone plans per person; Number of mobile phones per person; Number of people with cell phone service; Number of people with mobile phone coverage; -Count_School_SeniorSecondarySchool_Grade1To10,Numer of secondary schools,Numer of secondary schools,,number of senior secondary schools; senior secondary schools; secondary school count; -Count_SolarInstallation,Count of Solar Installation,Total Number of Solar Installations,,The total number of solar installations;Total number of solar installations; The total number of solar power systems; The number of solar arrays; The number of solar panels in use; The amount of solar energy systems; -Count_Teacher,,Teachers,, -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,,Number of State Unemployment Insurance Claims,, -Count_VolcanicAshEvent,,Volcano Events,, -Count_WasteGenerated_Processed_AsAFractionOf_Count_WasteGenerated,Waste processed (%),,,percentage of waste processed -Count_WildfireEvent,Count of Wildfire Event,Number of Wildfires,,Number of wildfires;Number of wild fires; Number of forest fires; Number of bush fires; Number of vegetation fires; Number of wildfires; -Count_Worker_NAICSAccommodationFoodServices,Population of Person: Accommodation And Food Services (NAICS/72),Population of People Working in the Accommodation and Food Services Industry,,number of accommodation and food services workers;Population of people working in the accommodation and food services industry; The number of people employed in the accommodation and food services sector; How many people work in the accommodation and food services industry; The size of the workforce in the accommodation and food services field; The population of the accommodation and food services labor force; -Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Population of Person: Administrative And Support And Waste Management Services (NAICS/56),Population of People Working in the Administrative and Support and Waste Management Services Industry,,number of administrative and support and waste management services workers;Population of people working in the administrative and support and waste; -Count_Worker_NAICSAgricultureForestryFishingHunting,"Population of Person: Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Population Working in the Agriculture, Forestry, Fishing, and Hunting Industry",,"number of agriculture, forestry, fishing and hunting workers; Number of people working in agriculture, forestry, fishing and hunting; Number of agricultural, forestry, fishing and hunting workers; Number of people employed in agriculture, forestry, fishing and hunting; Total number of agriculture, forestry, fishing and hunting employees; Number of people in agriculture, forestry, fishing and hunting jobs;Population working in agriculture, forestry, fishing, and hunting; Number of people employed in agriculture, forestry, fishing, and hunting; Number of people in agriculture, forestry, fishing, and hunting jobs; Number of workers in agriculture, forestry, fishing, and hunting; Number of people in the agriculture, forestry, fishing, and hunting industry; Number of people working in ag, forestry, fishing, and hunting; Number of people employed in ag, forestry, fishing, and hunting; Number of workers in ag, forestry, fishing, and hunting;Population working in agriculture, forestry, fishing, and hunting; Number of people employed in agriculture, forestry, fishing, and hunting; Number of people in agriculture, forestry, fishing, and hunting jobs; Number of workers in agriculture, forestry, fishing, and hunting; Number of people in the agriculture, forestry, fishing, and hunting industry; Number of people working in ag, forestry, fishing, and hunting; Number of people employed in ag, forestry, fishing, and hunting; Number of workers in ag, forestry, fishing, and hunting; Population of people working in the agriculture, forestry, fishing, and hunting industry;How many people work in agriculture; Employment numbers in forestry, fishing, and hunting; Workforce size for agriculture, forestry, fishing, and hunting; People working in agriculture, forestry, fishing, and hunting field.;" -Count_Worker_NAICSArtsEntertainmentRecreation,"Population of Person: Arts, Entertainment, And Recreation (NAICS/71)","Population of People Working in the Arts, Entertainment, and Recreation Industry",,"number of arts, entertainment, and recreation workers;Population of people working in the arts, entertainment, and recreation industry;How many people work in the arts;Employment numbers in entertainment and recreation;Workforce size for arts, entertainment, and recreation;People working in arts, entertainment, and recreation field.;" -Count_Worker_NAICSConstruction,Population of Person: Construction (NAICS/23),Population of People Working in the Construction Industry,,number of construction workers;Population of people working in the construction industry;How many people work in construction;Employment numbers in construction;Workforce size for construction;People working in construction field.; -Count_Worker_NAICSEducationalServices,Population of Person: Educational Services (NAICS/61),Population of People Working in the Educational Services Industry,,number of educational services workers;Population of people working in the educational services industry;How many people work in the education field;Employment numbers in educational services;Workforce size for educational services;People working in the education field.; -Count_Worker_NAICSFinanceInsurance,Population of Person: Finance And Insurance (NAICS/52),Population of People Working in the Finance and Insurance Industry,,number of finance and insurance workers;Population of people working in the finance and insurance industry;Number of individuals employed in the finance and insurance sector;Workforce size for the finance and insurance industry;People working in the finance and insurance field;Employment numbers in the finance and insurance industry; -Count_Worker_NAICSHealthCareSocialAssistance,Population of Person: Health Care And Social Assistance (NAICS/62),Population of People Working in the Health Care and Social Assistance Industry,,number of health care and social assistance workers;Population of people working in the health care and social assistance industry;Number of individuals employed in the health care and social assistance sector;Workforce size for the health care and social assistance industry;People working in the health care and social assistance field;Employment numbers in the health care and social assistance industry; -Count_Worker_NAICSInformation,Population of Person: Information (NAICS/51),Population of People Working in the Information Industry,,number of information workers;Population of people working in the information industry;Number of individuals employed in the information sector;Workforce size for the information industry;People working in the information field;Employment numbers in the information industry; -Count_Worker_NAICSManagementOfCompaniesEnterprises,Population of Person: Management of Companies And Enterprises (NAICS/55),Population of People Working in the Management of Companies and Enterprises Industry,,number of management of companies and enterprises workers;Population of people working in the management of companies and enterprises industry;Number of individuals employed in the management of companies and enterprises sector;Workforce size for the management of companies and enterprises industry;People working in the management of companies and enterprises field;Employment numbers in the management of companies and enterprises industry; -Count_Worker_NAICSMiningQuarryingOilGasExtraction,"Population of Person: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Population of People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry",,"number of mining, quarrying, and oil and gas extraction workers;Population of people working in the mining, quarrying, and oil and gas extraction industry;Number of individuals employed in the mining, quarrying, and oil and gas extraction sector;Workforce size for the mining, quarrying, and oil and gas extraction industry;People working in the mining, quarrying, and oil and gas extraction field;Employment numbers in the mining, quarrying, and oil and gas extraction industry;" -Count_Worker_NAICSNonclassifiable,Population of Person: Unclassified (NAICS/99),Number of Workers Whose Industry is Non-Classifiable,,number of unclassified workers;Number of unclassified workers; Individuals employed in unclassified sectors; Workforce size for unclassified industries; People working in unclassified fields; Employment numbers in unclassified industries; -Count_Worker_NAICSOtherServices,"Population of Person: Other Services, Except Public Administration (NAICS/81)","Population of People Working in Other Services, Except Public Administration",,"number of workers in other services except public administration ;Population of people working in other services, except public administration;Number of individuals employed in the other services sector;Workforce size for the other services industry;People working in the other services field;Employment numbers in the other services industry;" -Count_Worker_NAICSProfessionalScientificTechnicalServices,"Population of Person: Professional, Scientific, And Technical Services (NAICS/54)","Number of Professional, Scientific, and Technical Services Workers",,"number of professional, scientific, and technical services workers;Number of professional, scientific, and technical services workers;Individuals employed in the professional, scientific, and technical services sector;Workforce size for the professional, scientific, and technical services industry;People working in the professional, scientific, and technical services field;Employment numbers in the professional, scientific, and technical services industry;" -Count_Worker_NAICSPublicAdministration,Population of Person: Public Administration (NAICS/92),Number of Public Administration Workers,,number of public administration workers;Number of public administration workers;Individuals employed in the public administration sector;Workforce size for the public administration industry;People working in the public administration field;Employment numbers in the public administration industry; -Count_Worker_NAICSRealEstateRentalLeasing,Population of Person: Real Estate And Rental And Leasing (NAICS/53),Number of Real Estate and Rental and Leasing Workers,,number of real estate and rental and leasing workers;Number of real estate and rental and leasing workers; Individuals employed in the real estate and rental and leasing sector; Workforce size for the real estate and rental and leasing industry; People working in the real estate and rental and leasing field; Employment numbers in the real estate and rental and leasing industry; -Count_Worker_NAICSTotalAllIndustries,"Population of Person: Total, All Industries (NAICS/10)",Number of Workers in All Industries,,"number of total, all industries workers;Number of workers in all industries; Individuals employed in all sectors; Workforce size for all industries; People working in all fields; Employment numbers in all industries;" -Count_Worker_NAICSUtilities,Population of Person: Utilities (NAICS/22),Number of Utilities Workers,,number of utilities workers;Number of utilities workers; Individuals employed in the utilities sector; Workforce size for the utilities industry; People working in the utilities field; Employment numbers in the utilities industry; -Count_Worker_NAICSWholesaleTrade,Population of Person: Wholesale Trade (NAICS/42),Number of Wholesale Trade Workers,,number of wholesale trade workers;Number of wholesale trade workers; Individuals employed in the wholesale trade sector; Workforce size for the wholesale trade industry; People working in the wholesale trade field; Employment numbers in the wholesale trade industry; -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,,Cumulative Count of COVID-19 Cases,, -CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,,Cumulative Count of COVID-19 Deaths,, -CumulativeCount_Vaccine_COVID_19_Administered,"Cumulative Count of Vaccine: COVID-19, Vaccine Administered",Total Number of COVID-19 Vaccines Administered,,Total number of covid vaccines administered;Total number of COVID-19 vaccinations given out; Number of people vaccinated against COVID-19; Number of doses administered; Number of COVID-19 shots given; Number of people who have received the COVID-19 vaccine; -Expenses_Farm,Expenses of Farm,Total Farm Expenses,,total Farm expenses; -Exports_EconomicActivity_Cereals,Cereal Exports,,,export of cereals;cereal export; exports of cereals; -Exports_EconomicActivity_CrudeOils,Crude Oil Exports,,,export of crude oil;crude oil export; exports of oils;crude oil exports; -Exports_EconomicActivity_ElectronicComponents,Electronics Components Exports,,,export of electronics;electronic components export; exports of electronic components; -Exports_EconomicActivity_IronAndSteel,Iron and Steel Exports,,,export of iron and steel;iron and steel export; exports of iron and steel;iron steel export; -Exports_EconomicActivity_Pharmaceutical,Pharmaceutical Exports,,,export of pharmaceuicals;pharmaceutical export; exports of pharmaceuticals; -FertilityRate_Person_Female,Fertility Rate,Fertility Rate,,Fertility Rate;Birth rate of the population; Fertility of the population; Number of children born per woman; how often do women become mother; -GenderIncomeInequality_Person_15OrMoreYears_WithIncome,Gender Income Inequality,Income Inequality Between Men and Women of Working Age,,Pay gap between men and women; income disparity between men and women; gendler income gap; difference in pay for men vs women; correlation between gender and income pay;Inequality in income between men and women of working age; Disparity in earnings between men and women of working age; Difference in income between men and women of working age; Gap in pay between men and women of working age; Variance in income between men and women of working age; -GiniIndex_EconomicActivity,Gini Index of Economic Activity,Gini Index of Economic Activity of a Population,,Inequality; Gini index;Economic inequality measurement; Measure of the spread of economic activity; Indicator of economic fairness; Ratio of wealth distribution; Index of economic polarization; -GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,,Growth Rate of Gross Domestic Production (GDP),, -GrowthRate_Count_Person,Population Growth Rate,Rate of Population Growth,,Population Growth Rate;Rate of population growth; Population increase rate; Population growth rate; Increase in population; Rate of increase in population; -Imports_EconomicActivity_Cereals,Cereal Imports,,,import of cereals;cereal import; imports of cereals; -Imports_EconomicActivity_CrudeOils,Crude Oil Imports,,,import of crude oil;crude oil import; imports of oils;crude oils imports; -Imports_EconomicActivity_ElectronicComponents,Electronics Components Imports,,,import of electronics;electronic components import; imports of electronic components; -Imports_EconomicActivity_IronAndSteel,Iron and Steel Imports,,,import of iron and steel;iron and steel import; imports of iron and steel;iron steel import; -Imports_EconomicActivity_Pharmaceutical,Pharmaceutical Imports,,,import of pharmaceuicals;pharmaceutical import; imports of pharmaceuticals; -Income_Farm,Income of Farm,Total Farm Income,,total farm income; Total income from farming; Total farm profits; Total revenue from agriculture; Total earnings from farming; Total agricultural income;Total farm income; Total profits from farming; Total agricultural earnings; Total farm revenue; Total income from agriculture; Total earnings from agricultural operations; Total agricultural profits; Total income from farming operations; -IncrementalCount_Vaccine_COVID_19_Administered,"Incremental Count of Vaccine: COVID-19, Vaccine Administered",Number of COVID-19 Vaccines Administered Daily,,Daily number of covid vaccines administered;Number of COVID-19 vaccinations given out each day; Number of daily COVID-19 vaccinations; Number of doses administered daily; Number of COVID-19 shots given each day; Number of people vaccinated against COVID-19 daily; +AirPollutant_Cancer_Risk,Lifetime cancer risk from inhalation of air toxics,,, +AirQualityIndex_AirPollutant,Air quality index,,, +AirQualityIndex_AirPollutant_CO,Air Quality Index of Carbon Monoxide,,, +AirQualityIndex_AirPollutant_NO2,Air Quality Index of Nitrogen Dioxide,,, +AirQualityIndex_AirPollutant_Ozone,Air Quality Index of Ozone,,, +AirQualityIndex_AirPollutant_PM10,Air Quality Index of PM10,,, +AirQualityIndex_AirPollutant_PM2.5,Air Quality Index of PM2.5,,, +AirQualityIndex_AirPollutant_SO2,Air Quality Index of Sulfur Dioxide,,, +Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,Alcohol consumed per capita,,, +Amount_Consumption_Electricity_PerCapita,Electricity consumed per capita,,, +Amount_Consumption_Energy_PerCapita,Energy consumed per capita,,, +Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy,Proportion of Renewable Energy Consumption Relative to Total Energy Consumption,,, +Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,Percentage of Total Government Spending Allocated to Education,,, +Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Proportion of Education Spending Relative to Nominal GDP,,, +Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,Healthcare Expenditure per Capita,,, +Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,Government Military Expenditure,,, +Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Proportion of Military Spending Relative to Nominal Gross Domestic Product,,, +Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government,Government Tertiary Education Expenditure as Proportion of Government Education Expenditure,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,Gross Domestic Product (GDP) of the accommodation and food industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,"Gross Domestic Product (GDP) of the administrative support, waste management, and remediation services industry",,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"Gross Domestic Product (GDP) of the agriculture, forestry, fishing, and hunting industry",,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"Gross Domestic Product (GDP) of the arts, entertainment, and recreation industry",,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,Gross Domestic Product (GDP) of the construction industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,Gross Domestic Product (GDP) of the educational services industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,Gross Domestic Product (GDP) of the finance and insurance industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,Gross Domestic Product (GDP) of the health care and social assistance industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,Gross Domestic Product (GDP) of the information industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,Gross Domestic Product (GDP) of the management of companies and enterprises industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"Gross Domestic Product (GDP) of the mining, quarrying, and oil and gas extraction industry",,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"Gross Domestic Product (GDP) of the professional, scientific, and technical services industry",,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,Gross Domestic Product (GDP) of the real estate and rental and leasing industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,Gross Domestic Product (GDP) of the utilities industry,,, +Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,Gross Domestic Product (GDP) of the wholesale trade industry,,, +Amount_EconomicActivity_GrossDomesticProduction_Nominal,nominal Gross Domestic Product (GDP),,, +Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person,nominal Gross Domestic Product (GDP) per capita,,, +Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,nominal Gross Domestic Product (GDP) per capita,,, +Amount_EconomicActivity_GrossDomesticProduction_RealValue,real value of Gross Domestic Product (GDP),,, +Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,Gross National Income Based on Purchasing Power Parity,,, +Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,Gross National Income per capita Based on Purchasing Power Parity,,, +Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue,"Real Gross Value Added from Agriculture, Hunting, Forestry, and Fishing",,, +Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue,Real Gross Value Added from Construction,,, +Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue,Real Gross Value Added from Manufacturing,,, +Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue,"Real Gross Value Added from Mining, Manufacturing, and Utilities",,, +Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue,"Real Gross Value Added from Transport, Storage, and Communications",,, +Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue,"Real Gross Value Added from Wholesale, Retail Trade, Restaurants, and Hotels",,, +Amount_EconomicActivity_GrossValueAdded_RealValue,Real Gross Value Added,,, +Amount_Emissions_CarbonDioxide_PerCapita,Carbon Dioxide Emissions per Capita,,, +Amount_FarmInventory_BarleyForGrain,Amount of Barley grown for Grain production,,, +Amount_FarmInventory_CornForSilageOrGreenchop,Amount of Corn grown for Silage (green fodder) or Greenchop,,, +Amount_FarmInventory_Cotton,Amount of cotton grown,,, +Amount_FarmInventory_DryEdibleBeans,Amount of Dry Edible Bean grown,,, +Amount_FarmInventory_DurumWheatForGrain,Amount of Durum Wheat grown for grain production,,, +Amount_FarmInventory_Forage,Amount of Forage grown,,, +Amount_FarmInventory_JuteOrMesta,Amount of Jute or mesta grown,,, +Amount_FarmInventory_OatsForGrain,Amount of Oats grown for grain production,,, +Amount_FarmInventory_PeanutsForNuts,Amount of peanut grown,,, +Amount_FarmInventory_PimaCotton,Amount of pima cotton grown,,, +Amount_FarmInventory_Pulses,Amount of pulses grown,,, +Amount_FarmInventory_Rice,Amount of rice grown,,, +Amount_FarmInventory_SorghumForGrain,Amount of Sorghum grown for grain production,,, +Amount_FarmInventory_SorghumForSilageOrGreenchop,Amount of Sorghum grown for silage or greenchop,,, +Amount_FarmInventory_SugarbeetsForSugar,Amount of Sugarbeets grown for sugar production,,, +Amount_FarmInventory_SunflowerSeed,Amount of sunflower seed grown,,, +Amount_FarmInventory_UplandCotton,Amount of upland Cotton grown,,, +Amount_FarmInventory_Wheat,Amount of wheat grown,,, +Amount_FarmInventory_WheatForGrain,Amount of Wheat grown for grain production,,, +Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy,Proportion of Electricity Generated from Nuclear Sources,,, +Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy,"Proportion of Electricity Generated from Oil, Gas, or Coal Sources",,, +Amount_Remittance_InwardRemittance,Amount of Inward Remittance,,, +Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Inward Remittance as a Fraction of Nominal Gross Domestic Product,,, +Amount_Remittance_OutwardRemittance,Amount of Outward Remittance,,, +Amount_Stock,Stock market capitalization,,, +Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Stock market capitalization as a Proportion of Nominal GDP,,, +AmountFarmInventory_WinterWheatForGrain,Amount of Winter Wheat grown for Grain production,,, +Amout_FarmInventory_CornForGrain,Amount of Corn grown for grain production,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion,Annual amount of acetaldehyde emissions from External Combustion,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines,Annual amount of acetaldehyde emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion,Annual amount of acetaldehyde emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources,Annual amount of acetaldehyde emissions from Mobile Sources,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,Annual amount of acetaldehyde emissions from Industrial Processes,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization,Annual amount of acetaldehyde emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of acetaldehyde emissions from Waste Disposal, Treatment, and Recovery",,, +Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources,Annual amount of acetaldehyde emissions from Natural Sources,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources,Annual amount of acetaldehyde emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,Annual amount of acetaldehyde emissions from Industrial Processes,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation,Annual amount of acetaldehyde emissions from Petroleum and Solvent Evaporation,,, +Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal,Annual amount of acetaldehyde emissions from Waste Disposal,,, +Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion,Annual amount of ammonia emissions from External Combustion,,, +Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines,Annual amount of ammonia emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion,Annual amount of ammonia emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources,Annual amount of ammonia emissions from Mobile Sources,,, +Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,Annual amount of ammonia emissions from Industrial Processes,,, +Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization,Annual amount of ammonia emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport,Annual amount of ammonia emissions from Storage And Transport,,, +Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of ammonia emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources,Annual amount of ammonia emissions from Natural Sources,,, +Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources,Annual amount of ammonia emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,Annual amount of ammonia emissions from Industrial Processes,,, +Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation,Annual amount of ammonia emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal,Annual amount of ammonia emissions from Waste Disposal,,, +Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion,Annual amount of arsenic emissions from External Combustion,,, +Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines,Annual amount of arsenic emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion,Annual amount of arsenic emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources,Annual amount of arsenic emissions from Mobile Sources,,, +Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,Annual amount of arsenic emissions from Industrial Processes,,, +Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization,Annual amount of arsenic emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of arsenic emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources,Annual amount of arsenic emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,Annual amount of arsenic emissions from Industrial Processes,,, +Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation,Annual amount of arsenic emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal,Annual amount of arsenic emissions from Waste Disposal,,, +Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses,Annual amount of asbestos emissions from Industrial Processes,,, +Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion,Annual amount of benzene emissions from External Combustion,,, +Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines,Annual amount of benzene emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion,Annual amount of benzene emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Benzene_SCC_22_MobileSources,Annual amount of benzene emissions from Mobile Sources,,, +Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,Annual amount of benzene emissions from Industrial Processes,,, +Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization,Annual amount of benzene emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport,Annual amount of benzene emissions from Storage And Transport,,, +Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of benzene emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources,Annual amount of benzene emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,Annual amount of benzene emissions from Industrial Processes,,, +Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of benzene emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal,Annual amount of benzene emissions from Waste Disposal,,, +Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion,Annual amount of cadmium emissions from External Combustion,,, +Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines,Annual amount of cadmium emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion,Annual amount of cadmium emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources,Annual amount of cadmium emissions from Mobile Sources,,, +Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,Annual amount of cadmium emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization,Annual amount of cadmium emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of cadmium emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources,Annual amount of cadmium emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,Annual amount of cadmium emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of cadmium emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal,Annual amount of cadmium emissions from Waste Disposal,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion,Annual amount of carbon dioxide emissions from External Combustion,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines,Annual amount of carbon dioxide emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources,Annual amount of carbon dioxide emissions from Mobile Sources,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources,Annual amount of carbon dioxide emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses,Annual amount of carbon dioxide emissions from Industrial Processes,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of carbon dioxide emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal,Annual amount of carbon dioxide emissions from Waste Disposal,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion,Annual amount of carbon monoxide emissions from External Combustion,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines,Annual amount of carbon monoxide emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion,Annual amount of carbon monoxide emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources,Annual amount of carbon monoxide emissions from Mobile Sources,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,Annual amount of carbon monoxide emissions from Industrial Processes,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization,Annual amount of carbon monoxide emissions from Solvent Utilization,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport,Annual amount of carbon monoxide emissions from Storage And Transport,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of carbon monoxide emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources,Annual amount of carbon monoxide emissions from Natural Sources,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources,Annual amount of carbon monoxide emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,Annual amount of carbon monoxide emissions from Industrial Processes,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of carbon monoxide emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal,Annual amount of carbon monoxide emissions from Waste Disposal,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10,Annual amount of pm10 emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5,Annual amount of pm2.5 emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from Chemical And Allied Product Manufacturing,,, +Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,Annual amount of chlorane emissions from External Combustion,,, +Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,Annual amount of chlorane emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,Annual amount of chlorane emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,Annual amount of chlorane emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization,Annual amount of chlorane emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chlorane emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,Annual amount of chlorane emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual amount of chlorane emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chlorane emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal,Annual amount of chlorane emissions from Waste Disposal,,, +Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,Annual amount of chlorine emissions from External Combustion,,, +Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,Annual amount of chlorine emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,Annual amount of chlorine emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources,Annual amount of chlorine emissions from Mobile Sources,,, +Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,Annual amount of chlorine emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chlorine emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,Annual amount of chlorine emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,Annual amount of chlorine emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chlorine emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal,Annual amount of chlorine emissions from Waste Disposal,,, +Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion,Annual amount of chloroform emissions from External Combustion,,, +Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines,Annual amount of chloroform emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion,Annual amount of chloroform emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,Annual amount of chloroform emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization,Annual amount of chloroform emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chloroform emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources,Annual amount of chloroform emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,Annual amount of chloroform emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chloroform emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal,Annual amount of chloroform emissions from Waste Disposal,,, +Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion,Annual amount of Chromium_6 emissions from External Combustion,,, +Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines,Annual amount of Chromium_6 emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion,Annual amount of Chromium_6 emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources,Annual amount of Chromium_6 emissions from Mobile Sources,,, +Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,Annual amount of Chromium_6 emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization,Annual amount of Chromium_6 emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Chromium_6 emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources,Annual amount of Chromium_6 emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,Annual amount of Chromium_6 emissions from Industrial Processes,,, +Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Chromium_6 emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal,Annual amount of Chromium_6 emissions from Waste Disposal,,, +Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion,Annual amount of Cobalt emissions from External Combustion,,, +Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines,Annual amount of Cobalt emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion,Annual amount of Cobalt emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources,Annual amount of Cobalt emissions from Mobile Sources,,, +Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,Annual amount of Cobalt emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization,Annual amount of Cobalt emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Cobalt emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources,Annual amount of Cobalt emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,Annual amount of Cobalt emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Cobalt emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal,Annual amount of Cobalt emissions from Waste Disposal,,, +Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion,Annual amount of Cyanide emissions from External Combustion,,, +Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines,Annual amount of Cyanide emissions from Internal Combustion Engines,,, +Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion,Annual amount of Cyanide emissions from Stationary Source Fuel Combustion,,, +Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,Annual amount of Cyanide emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization,Annual amount of Cyanide emissions from Solvent Utilization,,, +Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Cyanide emissions from Waste Disposal Treatment And Recovery,,, +Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources,Annual amount of Cyanide emissions from Miscellaneous Area Sources,,, +Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,Annual amount of Cyanide emissions from Industrial Processes,,, +Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Cyanide emissions from Petroleum And Solvent Evaporation,,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia,"Annual amount of ammonia emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide,"Annual amount of carbon monoxide emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual amount of oxides of nitrogen emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10,"Annual amount of PM10 emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5,"Annual amount of PM2.5 emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide,"Annual amount of sulfur dioxide emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual amount of volatile organic compound emissions from non-biogenic, miscellaneous emission sources",,, +Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion,Annual amount of fluorane emissions from external combustion,,, +Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines,Annual amount of fluorane emissions from internal combustion engines,,, +Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion,Annual amount of fluorane emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,Annual amount of fluorane emissions from industrial processes,,, +Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization,Annual amount of fluorane emissions from solvent utilization,,, +Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources,Annual amount of fluorane emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,Annual amount of fluorane emissions from industrial processes,,, +Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of fluorane emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal,Annual amount of fluorane emissions from waste disposal,,, +Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion,Annual amount of formaldehyde emissions from external combustion,,, +Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines,Annual amount of formaldehyde emissions from internal combustion engines,,, +Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion,Annual amount of formaldehyde emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources,Annual amount of formaldehyde emissions from mobile sources,,, +Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,Annual amount of formaldehyde emissions from industrial processes,,, +Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization,Annual amount of formaldehyde emissions from solvent utilization,,, +Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of formaldehyde emissions from waste disposal treatment and recovery,,, +Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources,Annual amount of formaldehyde emissions from natural sources,,, +Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources,Annual amount of formaldehyde emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,Annual amount of formaldehyde emissions from industrial processes,,, +Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation,Annual amount of formaldehyde emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal,Annual amount of formaldehyde emissions from waste disposal,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from industrial fuel combustion,,, +Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion,Annual amount of hexane emissions from external combustion,,, +Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines,Annual amount of hexane emissions from internal combustion engines,,, +Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion,Annual amount of hexane emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Hexane_SCC_22_MobileSources,Annual amount of hexane emissions from mobile sources,,, +Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,Annual amount of hexane emissions from industrial processes,,, +Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization,Annual amount of hexane emissions from solvent utilization,,, +Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport,Annual amount of hexane emissions from storage and transport,,, +Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of hexane emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources,Annual amount of hexane emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,Annual amount of hexane emissions from industrial processes,,, +Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of hexane emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal,Annual amount of hexane emissions from waste disposal,,, +Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion,Annual amount of lead emissions from external combustion,,, +Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines,Annual amount of lead emissions from internal combustion engines,,, +Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion,Annual amount of lead emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Lead_SCC_22_MobileSources,Annual amount of lead emissions from mobile sources,,, +Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,Annual amount of lead emissions from industrial processes,,, +Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization,Annual amount of lead emissions from solvent utilization,,, +Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport,Annual amount of lead emissions from storage and transport,,, +Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of lead emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources,Annual amount of lead emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,Annual amount of lead emissions from industrial processes,,, +Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation,Annual amount of lead emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal,Annual amount of lead emissions from waste disposal,,, +Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion,Annual amount of manganese emissions from external combustion,,, +Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines,Annual amount of manganese emissions from internal combustion engines,,, +Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion,Annual amount of manganese emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Manganese_SCC_22_MobileSources,Annual amount of manganese emissions from mobile sources,,, +Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,Annual amount of manganese emissions from industrial processes,,, +Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization,Annual amount of manganese emissions from solvent utilization,,, +Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of manganese emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources,Annual amount of manganese emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,Annual amount of manganese emissions from industrial processes,,, +Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation,Annual amount of manganese emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal,Annual amount of manganese emissions from waste disposal,,, +Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion,Annual amount of mercury emissions from external combustion,,, +Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines,Annual amount of mercury emissions from internal combustion engines,,, +Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion,Annual amount of mercury emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Mercury_SCC_22_MobileSources,Annual amount of mercury emissions from mobile sources,,, +Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,Annual amount of mercury emissions from industrial processes,,, +Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization,Annual amount of mercury emissions from solvent utilization,,, +Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport,Annual amount of mercury emissions from storage and transport,,, +Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of mercury emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources,Annual amount of mercury emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,Annual amount of mercury emissions from industrial processes,,, +Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation,Annual amount of mercury emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal,Annual amount of mercury emissions from waste disposal,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from metals processing,,, +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from metals processing,,, +Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion,Annual amount of methane emissions from external combustion,,, +Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines,Annual amount of methane emissions from internal combustion engines,,, +Annual_Amount_Emissions_Methane_SCC_22_MobileSources,Annual amount of methane emissions from mobile sources,,, +Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources,Annual amount of methane emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses,Annual amount of methane emissions from industrial processes,,, +Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of methane emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal,Annual amount of methane emissions from waste disposal,,, +Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion,Annual amount of methanol emissions from external combustion,,, +Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines,Annual amount of methanol emissions from internal combustion engines,,, +Annual_Amount_Emissions_Methanol_SCC_22_MobileSources,Annual amount of methanol emissions from mobile sources,,, +Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,Annual amount of methanol emissions from industrial processes,,, +Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization,Annual amount of methanol emissions from solvent utilization,,, +Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of methanol emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources,Annual amount of methanol emissions from natural sources,,, +Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources,Annual amount of methanol emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,Annual amount of methanol emissions from industrial processes,,, +Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation,Annual amount of methanol emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal,Annual amount of methanol emissions from waste disposal,,, +Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion,Annual amount of naphthalene emissions from external combustion,,, +Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines,Annual amount of naphthalene emissions from internal combustion engines,,, +Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion,Annual amount of naphthalene emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources,Annual amount of naphthalene emissions from mobile sources,,, +Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,Annual amount of naphthalene emissions from industrial processes,,, +Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization,Annual amount of naphthalene emissions from solvent utilization,,, +Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport,Annual amount of naphthalene emissions from storage and transport,,, +Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of naphthalene emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources,Annual amount of naphthalene emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,Annual amount of naphthalene emissions from industrial processes,,, +Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of naphthalene emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal,Annual amount of naphthalene emissions from waste disposal,,, +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from NaturalResource with biogenic emissions,,, +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from NaturalResource with biogenic emissions,,, +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound,Annual amount of VolatileOrganicCompound emissions from NaturalResource with biogenic emissions,,, +Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion,Annual amount of Nickel emissions from external combustion,,, +Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines,Annual amount of Nickel emissions from internal combustion engines,,, +Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion,Annual amount of Nickel emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Nickel_SCC_22_MobileSources,Annual amount of Nickel emissions from mobile sources,,, +Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,Annual amount of Nickel emissions from industrial processes,,, +Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization,Annual amount of Nickel emissions from solvent utilization,,, +Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Nickel emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources,Annual amount of Nickel emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,Annual amount of Nickel emissions from industrial processes,,, +Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Nickel emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal,Annual amount of Nickel emissions from waste disposal,,, +Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion,Annual amount of NitrousOxide emissions from external combustion,,, +Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines,Annual amount of NitrousOxide emissions from internal combustion engines,,, +Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources,Annual amount of NitrousOxide emissions from mobile sources,,, +Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses,Annual amount of NitrousOxide emissions from industrial processes,,, +Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of NitrousOxide emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal,Annual amount of NitrousOxide emissions from waste disposal,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,Annual amount of Sulfur Dioxide emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from Non Road Engines And Vehicles,,, +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,Annual amount of Ammonia emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from On Road Vehicles,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion,Annual amount of Oxides Of Nitrogen emissions from external combustion,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines,Annual amount of Oxides Of Nitrogen emissions from internal combustion engines,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion,Annual amount of Oxides Of Nitrogen emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,Annual amount of Oxides Of Nitrogen emissions from mobile sources,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,Annual amount of Oxides Of Nitrogen emissions from industrial processes,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,Annual amount of Oxides Of Nitrogen emissions from solvent utilization,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,Annual amount of Oxides Of Nitrogen emissions from storage and transport,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Oxides Of Nitrogen emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources,Annual amount of Oxides Of Nitrogen emissions from natural sources,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources,Annual amount of Oxides Of Nitrogen emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,Annual amount of Oxides Of Nitrogen emissions from industrial processes,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Oxides Of Nitrogen emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal,Annual amount of Oxides Of Nitrogen emissions from waste disposal,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion,Annual amount of Oxochromiooxy Chromium emissions from external combustion,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines,Annual amount of Oxochromiooxy Chromium emissions from internal combustion engines,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion,Annual amount of Oxochromiooxy Chromium emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources,Annual amount of Oxochromiooxy Chromium emissions from mobile sources,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,Annual amount of Oxochromiooxy Chromium emissions from industrial processes,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization,Annual amount of Oxochromiooxy Chromium emissions from solvent utilization,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Oxochromiooxy Chromium emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources,Annual amount of Oxochromiooxy Chromium emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,Annual amount of Oxochromiooxy Chromium emissions from industrial processes,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Oxochromiooxy Chromium emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal,Annual amount of Oxochromiooxy Chromium emissions from waste disposal,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from Petroleum And Related Industries,,, +Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion,Annual amount of phenol emissions from external combustion,,, +Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines,Annual amount of phenol emissions from internal combustion engines,,, +Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion,Annual amount of phenol emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Phenol_SCC_22_MobileSources,Annual amount of phenol emissions from mobile sources,,, +Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,Annual amount of phenol emissions from industrial processes,,, +Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization,Annual amount of phenol emissions from solvent utilization,,, +Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of phenol emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources,Annual amount of phenol emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,Annual amount of phenol emissions from industrial processes,,, +Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation,Annual amount of phenol emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal,Annual amount of phenol emissions from waste disposal,,, +Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion,Annual amount of phosphorus emissions from external combustion,,, +Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines,Annual amount of phosphorus emissions from internal combustion engines,,, +Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion,Annual amount of phosphorus emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources,Annual amount of phosphorus emissions from mobile sources,,, +Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,Annual amount of phosphorus emissions from industrial processes,,, +Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization,Annual amount of phosphorus emissions from solvent utilization,,, +Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of phosphorus emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources,Annual amount of phosphorus emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,Annual amount of phosphorus emissions from industrial processes,,, +Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation,Annual amount of phosphorus emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal,Annual amount of phosphorus emissions from waste disposal,,, +Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion,Annual amount of PM10 emissions from external combustion,,, +Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines,Annual amount of PM10 emissions from internal combustion engines,,, +Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion,Annual amount of PM10 emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_PM10_SCC_22_MobileSources,Annual amount of PM10 emissions from mobile sources,,, +Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,Annual amount of PM10 emissions from industrial processes,,, +Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,Annual amount of PM10 emissions from solvent utilization,,, +Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,Annual amount of PM10 emissions from storage and transport,,, +Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of PM10 emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources,Annual amount of PM10 emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,Annual amount of PM10 emissions from industrial processes,,, +Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation,Annual amount of PM10 emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal,Annual amount of PM10 emissions from waste disposal,,, +Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories,Annual amount of PM10 emissions from MACT source categories,,, +Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion,Annual amount of PM2.5 emissions from external combustion,,, +Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines,Annual amount of PM2.5 emissions from internal combustion engines,,, +Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion,Annual amount of PM2.5 emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources,Annual amount of PM2.5 emissions from mobile sources,,, +Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,Annual amount of PM2.5 emissions from industrial processes,,, +Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,Annual amount of PM2.5 emissions from solvent utilization,,, +Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,Annual amount of PM2.5 emissions from storage and transport,,, +Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of PM2.5 emissions from waste disposal, treatment and recovery",,, +Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources,Annual amount of PM2.5 emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,Annual amount of PM2.5 emissions from industrial processes,,, +Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation,Annual amount of PM2.5 emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal,Annual amount of PM2.5 emissions from waste disposal,,, +Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories,Annual amount of PM2.5 emissions from MACT source categories,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from prescribed fire,,, +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from prescribed fire,,, +Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion,Annual amount of pyrene emissions from external combustion,,, +Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines,Annual amount of pyrene emissions from internal combustion engines,,, +Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion,Annual amount of pyrene emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources,Annual amount of pyrene emissions from mobile sources,,, +Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,Annual amount of pyrene emissions from industrial processes,,, +Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of pyrene emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources,Annual amount of pyrene emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,Annual amount of pyrene emissions from industrial processes,,, +Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of pyrene emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_SCC_1_ExternalCombustion,Annual amount of emissions from external combustion,,, +Annual_Amount_Emissions_SCC_2_InternalCombustionEngines,Annual amount of emissions from internal combustion engines,,, +Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion,Annual amount of emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_SCC_22_MobileSources,Annual amount of emissions from mobile sources,,, +Annual_Amount_Emissions_SCC_23_IndustrialProcesses,Annual amount of emissions from industrial processes,,, +Annual_Amount_Emissions_SCC_24_SolventUtilization,Annual amount of emissions from solvent utilization,,, +Annual_Amount_Emissions_SCC_25_StorageAndTransport,Annual amount of emissions from storage and transport,,, +Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_SCC_27_NaturalSources,Annual amount of emissions from natural sources,,, +Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources,Annual amount of emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual amount of emissions from industrial processes,,, +Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation,Annual amount of emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_SCC_5_WasteDisposal,Annual amount of emissions from waste disposal,,, +Annual_Amount_Emissions_SCC_6_MACTSourceCategories,Annual amount of emissions from MACT source categories,,, +Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion,Annual amount of selenium emissions from external combustion,,, +Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines,Annual amount of selenium emissions from internal combustion engines,,, +Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion,Annual amount of selenium emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Selenium_SCC_22_MobileSources,Annual amount of selenium emissions from mobile sources,,, +Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,Annual amount of selenium emissions from industrial processes,,, +Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization,Annual amount of selenium emissions from solvent utilization,,, +Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of selenium emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources,Annual amount of selenium emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,Annual amount of selenium emissions from industrial processes,,, +Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of selenium emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal,Annual amount of selenium emissions from waste disposal,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from solvent utilization,,, +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from solvent utilization,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from stationary fuel combustion,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from storage and transport,,, +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from storage and transport,,, +Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion,Annual amount of sulfane emissions from external combustion,,, +Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines,Annual amount of sulfane emissions from internal combustion engines,,, +Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses,Annual amount of sulfane emissions from industrial processes,,, +Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization,Annual amount of sulfane emissions from solvent utilization,,, +Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of sulfane emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources,Annual amount of sulfane emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,Annual amount of sulfane emissions from industrial processes,,, +Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of sulfane emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal,Annual amount of sulfane emissions from waste disposal,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion,Annual amount of sulfur dioxide emissions from external combustion,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines,Annual amount of sulfur dioxide emissions from internal combustion engines,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion,Annual amount of sulfur dioxide emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources,Annual amount of sulfur dioxide emissions from mobile sources,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,Annual amount of sulfur dioxide emissions from industrial processes,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization,Annual amount of sulfur dioxide emissions from solvent utilization,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport,Annual amount of sulfur dioxide emissions from storage and transport,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of sulfur dioxide emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources,Annual amount of sulfur dioxide emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,Annual amount of sulfur dioxide emissions from industrial processes,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of sulfur dioxide emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal,Annual amount of sulfur dioxide emissions from waste disposal,,, +Annual_Amount_Emissions_SulfurDioxide_SCC_6_MACTSourceCategories,Annual amount of sulfur dioxide emissions from MACT source categories,,, +Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion,Annual amount of toluene emissions from external combustion,,, +Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines,Annual amount of toluene emissions from internal combustion engines,,, +Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion,Annual amount of toluene emissions from stationary source fuel combustion,,, +Annual_Amount_Emissions_Toluene_SCC_22_MobileSources,Annual amount of toluene emissions from mobile sources,,, +Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,Annual amount of toluene emissions from industrial processes,,, +Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization,Annual amount of toluene emissions from solvent utilization,,, +Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport,Annual amount of toluene emissions from storage and transport,,, +Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of toluene emissions from waste disposal, treatment, and recovery",,, +Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources,Annual amount of toluene emissions from miscellaneous area sources,,, +Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,Annual amount of toluene emissions from industrial processes,,, +Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of toluene emissions from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal,Annual amount of toluene emissions from waste disposal,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from transportation,,, +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from transportation,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion,Annual amount of volatile organic compound from external combustion,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines,Annual amount of volatile organic compound from internal combustion engines,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion,Annual amount of volatile organic compound from stationary source fuel combustion,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources,Annual amount of volatile organic compound from mobile sources,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,Annual amount of volatile organic compound from industrial processes,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization,Annual amount of volatile organic compound from solvent utilization,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport,Annual amount of volatile organic compound from storage and transport,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of volatile organic compound from waste disposal treatment and recovery,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources,Annual amount of volatile organic compound from natural sources,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources,Annual amount of volatile organic compound from miscellaneous area sources,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,Annual amount of volatile organic compound from industrial processes,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation,Annual amount of volatile organic compound from petroleum and solvent evaporation,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal,Annual amount of volatile organic compound from waste disposal,,, +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories,Annual amount of volatile organic compound from MACT source categories,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from waste disposal and recycling,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from wildfire,,, +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from wildfire,,, +Annual_Average_RetailPrice_Electricity,Annual average retail price of electricity,,, +Annual_Average_RetailPrice_Electricity_Commercial,Annual average retail price of electricity for commercial sector,,, +Annual_Average_RetailPrice_Electricity_Industrial,Annual average retail price of electricity for industrial sector,,, +Annual_Average_RetailPrice_Electricity_Residential,Annual average retail price of electricity for residential sector,,, +Annual_Capacity_Fuel_CrudeOil_Refinery,Annual capacity of crude oil refinery,,, +Annual_Consumption_Electricity,Annual Electricity Consumption,,, +Annual_Consumption_Electricity_Agriculture,Annual Electricity Usage in Agriculture,,, +Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry,Annual Electricity Usage in Chemical Petrochemical Industry,,, +Annual_Consumption_Electricity_CommerceAndPublicServices,Annual Electricity Usage in Commerce and Public Services,,, +Annual_Consumption_Electricity_ConstructionIndustry,Annual Electricity Usage in Construction Industry,,, +Annual_Consumption_Electricity_FoodAndTobaccoIndustry,Annual Electricity Usage in Food and Tobacco Industry,,, +Annual_Consumption_Electricity_Households,Annual Electricity Usage in Households,,, +Annual_Consumption_Electricity_IronSteel,Annual Electricity Usage in Iron and Steel Industry,,, +Annual_Consumption_Electricity_MachineryIndustry,Annual Electricity Usage in Machinery Industry,,, +Annual_Consumption_Electricity_Manufacturing,Annual Electricity Usage in Manufacturing,,, +Annual_Consumption_Electricity_MiningAndQuarryingIndustry,Annual Electricity Usage in Mining and Quarrying Industry,,, +Annual_Consumption_Electricity_NonFerrousMetalsIndustry,Annual Electricity Usage in Non Ferrous Metals Industry,,, +Annual_Consumption_Electricity_NonMetallicMineralsIndustry,Annual Electricity Usage in Non Metallic Minerals Industry,,, +Annual_Consumption_Electricity_PaperPulpPrintIndustry,"Annual Electricity Usage in Paper, Pulp and Print Industry",,, +Annual_Consumption_Electricity_RailTransport,Annual Electricity Usage in Rail Transport,,, +Annual_Consumption_Electricity_TextileAndLeatherIndustry,Annual Electricity Usage in Textile and Leather Industry,,, +Annual_Consumption_Electricity_TransportEquipmentIndustry,Annual Electricity Usage in Transport Equipment Industry,,, +Annual_Consumption_Electricity_TransportIndustry,Annual Electricity Usage in Transport Industry,,, +Annual_Consumption_Electricity_WoodAndWoodProductsIndustry,Annual Electricity Usage in Wood and Wood Products Industry,,, +Annual_Consumption_Energy_Geothermal,Annual consumption of energy produced from geo thermal source,,, +Annual_Consumption_Energy_Heat,Annual consumption of energy produced from heat source,,, +Annual_Consumption_Energy_Households_Heat,Annual households heat consumption,,, +Annual_Consumption_Energy_Households_SolarThermal,Annual households Solar Thermal consumption,,, +Annual_Consumption_Energy_Manufacturing_Heat,Annual manufacturing heat consumption,,, +Annual_Consumption_Energy_SolarThermal,Annual consumption of energy produced from solar thermal,,, +Annual_Consumption_Fuel_Agriculture_DieselOil,Annual consumption of diesel oil by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_FuelOil,Annual consumption of fuel oil by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_Fuelwood,Annual consumption of fuel wood by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_Kerosene,Annual consumption of kerosene by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas,Annual consumption of liquefied petroleum gas by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_MotorGasoline,Annual consumption of motor gasoline by the agriculture sector,,, +Annual_Consumption_Fuel_Agriculture_NaturalGas,Annual consumption of natural gas by the agriculture sector,,, +Annual_Consumption_Fuel_AnthraciteCoal,Annual consumption of Anthracite Coal,,, +Annual_Consumption_Fuel_AviationGasoline,Annual Consumption of Aviation Gasoline,,, +Annual_Consumption_Fuel_Bagasse,Annual Consumption of Bagasse,,, +Annual_Consumption_Fuel_BioDiesel,Annual Consumption of Bio Diesel,,, +Annual_Consumption_Fuel_BioGas,Annual Consumption of Bio Gas,,, +Annual_Consumption_Fuel_BioGasoline,Annual Consumption of Bio Gasoline,,, +Annual_Consumption_Fuel_BituminousCoal,Annual Consumption of Bituminous Coal,,, +Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse,Annual Consumption of Bituminous Coal Used For Non Energy Use,,, +Annual_Consumption_Fuel_BlastFurnaceGas,Annual Consumption of Blast Furnace Gas,,, +Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation,Annual Consumption of Coke Oven Coke Used for Fuel Transformation by the Blast Furnaces Sector,,, +Annual_Consumption_Fuel_BrownCoal,Annual Consumption of Brown Coal,,, +Annual_Consumption_Fuel_Charcoal,Annual Consumption of Charcoal,,, +Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation,Annual Consumption of Fuel Wood used for Fuel Transformation by Charcoal Plants,,, +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil,Annual Consumption of Diesel Oil by the Petrochemical Industry,,, +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil,Annual Consumption of Fuel Oil by the Petrochemical Industry,,, +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal,Annual Consumption of Hard Coal by the Petrochemical Industry,,, +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Petrochemical Industry,,, +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas,Annual Consumption of Natural Gas by the Petrochemical Industry,,, +Annual_Consumption_Fuel_CokeOvenCoke,Annual Consumption of Coke Oven Coke,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal,Annual Consumption of Charcoal by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil,Annual Consumption of Diesel Oil by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil,Annual Consumption of Fuel Oil by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood,Annual Consumption of Fuelwood by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal,Annual Consumption of Hard Coal by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene,Annual Consumption of Kerosene by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline,Annual Consumption of Motor Gasoline by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas,Annual Consumption of Natural Gas by the Commerce and Public Services sector,,, +Annual_Consumption_Fuel_ConstructionIndustry_DieselOil,Annual Consumption of Diesel Oil by the Construction Industry,,, +Annual_Consumption_Fuel_ConstructionIndustry_FuelOil,Annual Consumption of Fuel Oil by the Construction Industry,,, +Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Construction Industry,,, +Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas,Annual Consumption of Natural Gas by the Construction Industry,,, +Annual_Consumption_Fuel_DieselOil,Annual Consumption of Diesel Oil,,, +Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline,Annual Consumption of Aviation Gasoline by the Domestic Aviation Transport Sector,,, +Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel by the Domestic Aviation Transport Sector,,, +Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil,Annual Consumption of Diesel Oil by the Domestic Navigation Transport Sector,,, +Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil,Annual Consumption of Fuel Oil by the Domestic Navigation Transport Sector,,, +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil,Annual Consumption of Diesel Oil by the Food and Tobacco Industry,,, +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil,Annual Consumption of Fuel Oil by the Food and Tobacco Industry,,, +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal,Annual Consumption of Hard Coal by the Food and Tobacco Industry,,, +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Food and Tobacco Industry,,, +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas,Annual Consumption of Natural Gas by the Food and Tobacco Industry,,, +Annual_Consumption_Fuel_ForElectricityGeneration_Coal,Annual consumption of coal used for electricity generation,,, +Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas,Annual consumption of Natural Gas used for Electricity Generation,,, +Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,Annual consumption of Petroleum Liquids used for Electricity Generation,,, +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal,Annual consumption of Coal used for Electricity Generation And Thermal Output,,, +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,Annual consumption of Natural Gas used for Electricity Generation And Thermal Output,,, +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,Annual consumption of Petroleum Liquids used for Electricity Generation And Thermal Output,,, +Annual_Consumption_Fuel_FuelOil,Annual consumption of Fuel Oil,,, +Annual_Consumption_Fuel_Fuelwood,Annual Fuelwood Consumption,,, +Annual_Consumption_Fuel_HardCoal,Annual Hard Coal Consumption,,, +Annual_Consumption_Fuel_Households_Charcoal,Annual Household Charcoal Consumption,,, +Annual_Consumption_Fuel_Households_DieselOil,Annual Household Diesel Oil Consumption,,, +Annual_Consumption_Fuel_Households_FuelOil,Annual Household Fuel Oil Consumption,,, +Annual_Consumption_Fuel_Households_Fuelwood,Annual Household Fuelwood Consumption,,, +Annual_Consumption_Fuel_Households_HardCoal,Annual Household Hard Coal Consumption,,, +Annual_Consumption_Fuel_Households_Kerosene,Annual Household Kerosene Consumption,,, +Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas,Annual Household Liquefied Petroleum Gas Consumption,,, +Annual_Consumption_Fuel_Households_NaturalGas,Annual Household Natural Gas Consumption,,, +Annual_Consumption_Fuel_Households_VegetalWaste,Annual Household Vegetal Waste Consumption,,, +Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse,Annual Consumption of Natural Gas by the Energy Industry,,, +Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline,Annual Consumption of Aviation Gasoline by International Aviation Bunkers,,, +Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel by International Aviation Bunkers,,, +Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil,Annual Consumption of Diesel Oil by International Marine Bunkers,,, +Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil,Annual Consumption of Fuel Oil by International Marine Bunkers,,, +Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas,Annual Consumption of Blast Furnase Gas for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_CokeOvenCoke,Annual Consumption of Coke Oven Coke for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_DieselOil,Annual Consumption of Diesel Oil for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_FuelOil,Annual Consumption of Fuel Oil for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_HardCoal,Annual Consumption of Hard Coal for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas for Iron Steel Production,,, +Annual_Consumption_Fuel_IronSteel_NaturalGas,Annual Consumption of Natural Gas for Iron Steel Production,,, +Annual_Consumption_Fuel_Kerosene,Annual Consumption of Kerosene,,, +Annual_Consumption_Fuel_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel,,, +Annual_Consumption_Fuel_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas,,, +Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse,Annual Consumption of Liquefied Petroleum Gas Used for Non Energy Purposes,,, +Annual_Consumption_Fuel_Lubricants,Annual Consumption of Lubricants,,, +Annual_Consumption_Fuel_Lubricants_NonEnergyUse,Annual Consumption of Lubricants for Non Energy Use,,, +Annual_Consumption_Fuel_MachineryIndustry_DieselOil,Annual Consumption of Diesel Oil by the Machinery Industry,,, +Annual_Consumption_Fuel_MachineryIndustry_FuelOil,Annual Consumption of Fuel Oil by the Machinery Industry,,, +Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Machinery Industry,,, +Annual_Consumption_Fuel_MachineryIndustry_NaturalGas,Annual Consumption of Natural Gas by the Machinery Industry,,, +Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal,Annual Consumption of Anthracite Coal by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_Bagasse,Annual Consumption of Bagasse by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas,Annual Consumption of Blast Furnace Gas by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_BrownCoal,Annual Consumption of Brown Coal by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke,Annual Consumption of Coke Oven Coke by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_DieselOil,Annual Consumption of Diesel Oil by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_FuelOil,Annual Consumption of Fuel Oil by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_Fuelwood,Annual Consumption of Fuelwood by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_HardCoal,Annual Consumption of Hard Coal by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_Kerosene,Annual Consumption of Kerosene by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_MotorGasoline,Annual Consumption of Motor Gasoline by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_NaturalGas,Annual Consumption of Natural Gas by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_PetroleumCoke,Annual Consumption of Petroleum Coke by the Manufacturing Industry,,, +Annual_Consumption_Fuel_Manufacturing_VegetalWaste,Annual Consumption of Vegetal Waste by the Manufacturing Industry,,, +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil,Annual Consumption of Diesel Oil by the Mining and Quarrying Industry,,, +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil,Annual Consumption of Fuel Oil by the Mining and Quarrying Industry,,, +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Mining and Quarrying Industry,,, +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas,Annual Consumption of Natural Gas by the Mining and Quarrying Industry,,, +Annual_Consumption_Fuel_MotorGasoline,Annual Consumption of Motor Gasoline,,, +Annual_Consumption_Fuel_Naphtha,Annual Consumption of Naphtha,,, +Annual_Consumption_Fuel_Naphtha_NonEnergyUse,Annual Consumption of Naphtha for Non Energy Use,,, +Annual_Consumption_Fuel_NaturalGas,Annual Consumption of Natural Gas,,, +Annual_Consumption_Fuel_NaturalGas_NonEnergyUse,Annual Consumption of Natural Gas for Non Energy Use,,, +Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil,Annual Consumption of Diesel Oil by the Non Ferrous Metals Industry,,, +Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas,Annual Consumption of Natural Gas by the Non Ferrous Metals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil,Annual Consumption of Diesel Oil by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil,Annual Consumption of Fuel Oil by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal,Annual Consumption of Hard Coal by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas,Annual Consumption of Natural Gas by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke,Annual Consumption of Petroleum Coke by the Non Metallic Minerals Industry,,, +Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil,Annual Diesel Oil consumption by Paper Pulp Print Industry,,, +Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil,Annual Fuel Oil consumption by Paper Pulp Print Industry,,, +Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Paper Pulp Print Industry,,, +Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas,Annual Natural Gas consumption by Paper Pulp Print Industry,,, +Annual_Consumption_Fuel_ParaffinWaxes,Annual Paraffin Waxes consumption by Fuel,,, +Annual_Consumption_Fuel_ParaffinWaxes_NonEnergyUse,Annual Paraffin Waxes consumption by Fuel for Non Energy Use,,, +Annual_Consumption_Fuel_PetroleumCoke,Annual Petroleum Coke consumption by Fuel,,, +Annual_Consumption_Fuel_PetroleumCoke_NonEnergyUse,Annual Petroleum Coke consumption by Fuel for Non Energy Use,,, +Annual_Consumption_Fuel_RailTransport_DieselOil,Annual Diesel Oil consumption by Rail Transport,,, +Annual_Consumption_Fuel_RoadTransport_BioDiesel,Annual Bio Diesel consumption by Road Transport,,, +Annual_Consumption_Fuel_RoadTransport_BioGasoline,Annual Bio Gasoline consumption by Road Transport,,, +Annual_Consumption_Fuel_RoadTransport_DieselOil,Annual Diesel Oil consumption by Road Transport,,, +Annual_Consumption_Fuel_RoadTransport_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Road Transport,,, +Annual_Consumption_Fuel_RoadTransport_MotorGasoline,Annual Motor Gasoline consumption by Road Transport,,, +Annual_Consumption_Fuel_RoadTransport_NaturalGas,Annual Natural Gas consumption by Road Transport,,, +Annual_Consumption_Fuel_TextileAndLeatherIndustry_DieselOil,Annual Diesel Oil consumption by Textile And Leather Industry,,, +Annual_Consumption_Fuel_TextileAndLeatherIndustry_FuelOil,Annual Fuel Oil consumption by Textile And Leather Industry,,, +Annual_Consumption_Fuel_TextileAndLeatherIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Textile And Leather Industry,,, +Annual_Consumption_Fuel_TextileAndLeatherIndustry_NaturalGas,Annual Natural Gas consumption by Textile And Leather Industry,,, +Annual_Consumption_Fuel_TransportEquipmentIndustry_NaturalGas,Annual Natural Gas consumption by Transport Equipment Industry,,, +Annual_Consumption_Fuel_TransportIndustry_AviationGasoline,Annual Aviation Gasoline consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_BioDiesel,Annual Bio Diesel consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_BioGasoline,Annual Bio Gasoline consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_DieselOil,Annual Diesel Oil consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_FuelOil,Annual Fuel Oil consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_KeroseneJetFuel,Annual Kerosene Jet Fuel consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_MotorGasoline,Annual Motor Gasoline consumption by Transport Industry,,, +Annual_Consumption_Fuel_TransportIndustry_NaturalGas,Annual Natural Gas consumption by Transport Industry,,, +Annual_Consumption_Fuel_VegetalWaste,Annual Vegetal Waste consumption by Fuel,,, +Annual_Consumption_Fuel_WhiteSpirit,Annual White Spirit consumption by Fuel,,, +Annual_Consumption_Fuel_WhiteSpirit_NonEnergyUse,Annual White Spirit consumption by Fuel for Non Energy Use,,, +Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_DieselOil,Annual Diesel Oil consumption by Wood And Wood Products Industry,,, +Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_NaturalGas,Annual Natural Gas consumption by Wood And Wood Products Industry,,, +Annual_Count_ElectricityConsumer,Annual number of electricity consumers,,, +Annual_Count_ElectricityConsumer_Commercial,Annual number of electricity consumers in the commercial sector,,, +Annual_Count_ElectricityConsumer_Industrial,Annual number of electricity consumers in the industrial sector,,, +Annual_Count_ElectricityConsumer_Residential,Annual number of electricity consumers in the residential sector,,, +Annual_Emissions_CarbonDioxide_AluminumProduction,Annual amount of carbon dioxide (CO2) emissions from aluminum production,,, +Annual_Emissions_CarbonDioxide_Biogenic,Annual amount of carbon dioxide (CO2) emissions from biogenic emission sources,,, +Annual_Emissions_CarbonDioxide_CementProduction,Annual amount of carbon dioxide (CO2) emissions from cement production,,, +Annual_Emissions_CarbonDioxide_ChemicalPetrochemicalIndustry,Annual amount of carbon dioxide (CO2) emissions from chemical and petrochemical industry,,, +Annual_Emissions_CarbonDioxide_CoalMining,Annual amount of carbon dioxide (CO2) emissions from coal mining,,, +Annual_Emissions_CarbonDioxide_CopperMining,Annual amount of carbon dioxide (CO2) emissions from copper mining,,, +Annual_Emissions_CarbonDioxide_CroplandFire,Annual amount of carbon dioxide (CO2) emissions from cropland fires,,, +Annual_Emissions_CarbonDioxide_ElectricityGeneration,Annual amount of carbon dioxide (CO2) emissions from electricity generation,,, +Annual_Emissions_CarbonDioxide_ForestryAndLandUse,Annual amount of carbon dioxide (CO2) emissions from forestry and land use,,, +Annual_Emissions_CarbonDioxide_FossilFuelOperations,Annual amount of carbon dioxide (CO2) emissions from fossil fuel operations,,, +Annual_Emissions_CarbonDioxide_FuelCombustionForDomesticAviation,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for domestic aviation,,, +Annual_Emissions_CarbonDioxide_FuelCombustionForInternationalAviation,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for international aviation,,, +Annual_Emissions_CarbonDioxide_FuelCombustionForRailways,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for railways,,, +Annual_Emissions_CarbonDioxide_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for residential and commercial onsite heating,,, +Annual_Emissions_CarbonDioxide_FuelCombustionForRoadVehicles,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for road vehicles,,, +Annual_Emissions_CarbonDioxide_FuelCombustionInBuildings,Annual amount of carbon dioxide (CO2) emissions from fuel combustion in buildings,,, +Annual_Emissions_CarbonDioxide_IronMining,Annual amount of carbon dioxide (CO2) emissions from iron mining,,, +Annual_Emissions_CarbonDioxide_Manufacturing,Annual amount of carbon dioxide (CO2) emissions from manufacturing,,, +Annual_Emissions_CarbonDioxide_MaritimeShipping,Annual amount of carbon dioxide (CO2) emissions from maritime shipping,,, +Annual_Emissions_CarbonDioxide_MineralExtraction,Annual amount of carbon dioxide (CO2) emissions from mineral extraction,,, +Annual_Emissions_CarbonDioxide_NetForestEmissions,Annual amount of carbon dioxide (CO2) emissions from net forest emissions,,, +Annual_Emissions_CarbonDioxide_NetGrasslandEmissions,Annual amount of carbon dioxide (CO2) emissions from net grassland emissions,,, +Annual_Emissions_CarbonDioxide_Agriculture,Annual amount of carbon dioxide (CO2) emissions from agriculture source,,, +Annual_Emissions_CarbonDioxide_NetWetlandEmissions,Annual Amount of Carbon Dioxide (CO2) Emissions from Net Wetlands,,, +Annual_Emissions_CarbonDioxide_OilAndGasProduction,Annual Amount of Carbon Dioxide (CO2) Emissions from Oil and Gas Production,,, +Annual_Emissions_CarbonDioxide_OilAndGasRefining,Annual Amount of Carbon Dioxide (CO2) Emissions from Oil and Gas Refining,,, +Annual_Emissions_CarbonDioxide_OpenBurningWaste,Annual Amount of Carbon Dioxide (CO2) Emissions from Open Burning of Waste,,, +Annual_Emissions_CarbonDioxide_PulpAndPaperManufacturing,Annual Amount of Carbon Dioxide (CO2) Emissions from Pulp and Paper Manufacturing,,, +Annual_Emissions_CarbonDioxide_RockQuarry,Annual Amount of Carbon Dioxide (CO2) Emissions from Rock Quarry,,, +Annual_Emissions_CarbonDioxide_SandQuarry,Annual Amount of Carbon Dioxide (CO2) Emissions from Sand Quarry,,, +Annual_Emissions_CarbonDioxide_SolidFuelTransformation,Annual Amount of Carbon Dioxide (CO2) Emissions from Solid Fuel Transformation,,, +Annual_Emissions_CarbonDioxide_SteelManufacturing,Annual Amount of Carbon Dioxide Emissions from Steel Manufacturing,,, +Annual_Emissions_CarbonDioxide_Transportation,Annual Amount of Carbon Dioxide Emissions from Transportation,,, +Annual_Emissions_CarbonDioxide_WasteManagement,Annual Amount of Carbon Dioxide Emissions from Waste Management,,, +Annual_Emissions_GreenhouseGas,Annual Amount of Greenhouse Gas Emissions,,, +Annual_Emissions_GreenhouseGas_Agriculture,Annual Amount of Greenhouse Gas Emissions from Agriculture,,, +Annual_Emissions_GreenhouseGas_AluminumProduction,Annual Amount of Greenhouse Gas Emissions from Aluminum Production,,, +Annual_Emissions_GreenhouseGas_AmmoniaManufacturing_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Ammonia Manufacturing,,, +Annual_Emissions_GreenhouseGas_BauxiteMining,Annual Amount of Greenhouse Gas Emissions from Bauxite Mining,,, +Annual_Emissions_GreenhouseGas_CementProduction,Annual Amount of Greenhouse Gas Emissions from Cement Production,,, +Annual_Emissions_GreenhouseGas_CementProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Cement Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_CopperMining,Annual Amount of Greenhouse Gas Emissions from Copper Mining,,, +Annual_Emissions_GreenhouseGas_CroplandFire,Annual Amount of Greenhouse Gas Emissions from Cropland Fire,,, +Annual_Emissions_GreenhouseGas_ElectricityGeneration,Annual Amount of Greenhouse Gas Emissions from Electricity Generation,,, +Annual_Emissions_GreenhouseGas_ElectricityGeneration_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Electricity Generation (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_ElectricityGenerationFromThermalPowerPlant,Annual Amount of Greenhouse Gas Emissions from Electricity Generation from Thermal Power Plant,,, +Annual_Emissions_GreenhouseGas_ElectronicsManufacture_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Electronics Manufacture (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_EntericFermentation,Annual Amount of Greenhouse Gas Emissions from Enteric Fermentation,,, +Annual_Emissions_GreenhouseGas_FluorinatedGHGProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Fluorinated GHG Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_ForestClearing,Annual Amount of Greenhouse Gas Emissions from Forest Clearing,,, +Annual_Emissions_GreenhouseGas_ForestFire,Annual Amount of Greenhouse Gas Emissions from Forest Fire,,, +Annual_Emissions_GreenhouseGas_ForestryAndLandUse,Annual Amount of Greenhouse Gas Emissions from Forestry and Land Use,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForAviation,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Aviation,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForCooking,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Cooking,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForRailways,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Railways,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForRefrigerationAirConditioning,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Refrigeration and Air Conditioning,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForResidentialCommercialOnsiteHeating,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Residential and Commercial Onsite Heating,,, +Annual_Emissions_GreenhouseGas_FuelCombustionForRoadVehicles,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Road Vehicles,,, +Annual_Emissions_GreenhouseGas_FuelCombustionInBuildings,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion in Buildings,,, +Annual_Emissions_GreenhouseGas_GlassProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Glass Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_HydrogenProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Hydrogen Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Industrial Waste Landfills (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Industrial Wastewater Treatment (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_IronAndSteelProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Iron and Steel Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_IronMining,Annual Amount of Greenhouse Gas Emissions from Iron Mining,,, +Annual_Emissions_GreenhouseGas_LimeProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Lime Production (Non-Biogenic),,, +Annual_Emissions_GreenhouseGas_ManagedSoils,Annual Amount of Greenhouse Gas Emissions from Managed Soils,,, +Annual_Emissions_GreenhouseGas_Manufacturing,Annual Amount of Greenhouse Gas Emissions from Manufacturing,,, +Annual_Emissions_GreenhouseGas_ManureManagement,Annual Amount of Greenhouse Gas Emissions from Manure Management,,, +Annual_Emissions_GreenhouseGas_MaritimeShipping,Annual Amount of Greenhouse Gas Emissions from Maritime Shipping,,, +Annual_Emissions_GreenhouseGas_MaritimeTransport,Annual Amount of Greenhouse Gas Emissions from Maritime Transport,,, +Annual_Emissions_GreenhouseGas_MineralExtraction,Annual Amount of Greenhouse Gas Emissions from Mineral Extraction,,, +Annual_Emissions_GreenhouseGas_MiscellaneousUseOfCarbonates_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Miscellaneous Use Of Carbonates (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_MunicipalLandfills_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Municipal Landfills (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_NitricAcidProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Nitric Acid Production (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_NonBiogenic,Annual Amount of Greenhouse Gas Emissions (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_OilAndGas,Annual Amount of Greenhouse Gas Emissions from Oil And Gas,,, +Annual_Emissions_GreenhouseGas_OilAndGasProduction,Annual Amount of Greenhouse Gas Emissions from Oil And Gas Production,,, +Annual_Emissions_GreenhouseGas_OpenBurningWaste,Annual Amount of Greenhouse Gas Emissions from Open Burning Waste,,, +Annual_Emissions_GreenhouseGas_PetrochemicalProduction,Annual Amount of Greenhouse Gas Emissions from Petrochemical Production,,, +Annual_Emissions_GreenhouseGas_PetrochemicalProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Petrochemical Production (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_PetroleumRefining,Annual Amount of Greenhouse Gas Emissions from Petroleum Refining,,, +Annual_Emissions_GreenhouseGas_PetroleumRefining_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Petroleum Refining (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing,Annual Amount of Greenhouse Gas Emissions from Pulp And Paper Manufacturing,,, +Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Pulp And Paper Manufacturing (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_RiceCultivation,Annual Amount of Greenhouse Gas Emissions from Rice Cultivation,,, +Annual_Emissions_GreenhouseGas_RockQuarry,Annual Amount of Greenhouse Gas Emissions from Rock Quarry,,, +Annual_Emissions_GreenhouseGas_SandQuarry,Annual Amount of Greenhouse Gas Emissions from Sand Quarry,,, +Annual_Emissions_GreenhouseGas_SavannaFire,Annual Amount of Greenhouse Gas Emissions from Savanna Fire,,, +Annual_Emissions_GreenhouseGas_ShrublandFire,Annual Amount of Greenhouse Gas Emissions from Shrubland Fire,,, +Annual_Emissions_GreenhouseGas_SolidFuelTransformation,Annual Amount of Greenhouse Gas Emissions from Solid Fuel Transformation,,, +Annual_Emissions_GreenhouseGas_SolidWasteDisposal,Annual Amount of Greenhouse Gas Emissions from Solid Waste Disposal,,, +Annual_Emissions_GreenhouseGas_StationaryCombustion_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Stationary Combustion (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_SteelManufacturing,Annual Amount of Greenhouse Gas Emissions from Steel Manufacturing,,, +Annual_Emissions_GreenhouseGas_Transportation,Annual Amount of Greenhouse Gas Emissions from Transportation,,, +Annual_Emissions_GreenhouseGas_UndergroundCoalMines_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Underground Coal Mines (Non Biogenic),,, +Annual_Emissions_GreenhouseGas_WasteManagement,Annual Amount of Greenhouse Gas Emissions from Waste Management,,, +Annual_Emissions_GreenhouseGas_WastewaterTreatmentAndDischarge,Annual Amount of Greenhouse Gas Emissions from Wastewater Treatment And Discharge,,, +Annual_Emissions_Hydrofluorocarbon_NonBiogenic,Annual Amount of Hydrofluorocarbon Emissions (Non Biogenic),,, +Annual_Emissions_Hydrofluoroether_NonBiogenic,Annual Amount of Hydrofluoroether Emissions (Non Biogenic),,, +Annual_Emissions_Methane_Agriculture,Annual Amount of Methane Emissions from Agriculture,,, +Annual_Emissions_Methane_BiologicalTreatmentOfSolidWasteAndBiogenic,Annual Amount of Methane Emissions from Biological Treatment Of Solid Waste And Biogenic,,, +Annual_Emissions_Methane_CoalMining,Annual Amount of Methane Emissions from Coal Mining,,, +Annual_Emissions_Methane_CroplandFire,Annual Amount of Methane Emissions from Cropland Fire,,, +Annual_Emissions_Methane_EntericFermentation,Annual Amount of Methane Emissions from Enteric Fermentation,,, +Annual_Emissions_Methane_FossilFuelOperations,Annual Amount of Methane Emissions from Fossil Fuel Operations,,, +Annual_Emissions_Methane_FuelCombustionForDomesticAviation,Annual Amount of Methane Emissions from Fuel Combustion For Domestic Aviation,,, +Annual_Emissions_Methane_FuelCombustionForInternationalAviation,Annual Amount of Methane Emissions from Fuel Combustion For International Aviation,,, +Annual_Emissions_Methane_FuelCombustionForRailways,Annual amount of emission of Methane from fuel combustion for railways,,, +Annual_Emissions_Methane_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of emission of Methane from fuel combustion for residential commercial onsite heating,,, +Annual_Emissions_Methane_FuelCombustionForRoadVehicles,Annual amount of emission of Methane from fuel combustion for road vehicles,,, +Annual_Emissions_Methane_FuelCombustionInBuildings,Annual amount of emission of Methane from fuel combustion in buildings,,, +Annual_Emissions_Methane_Manufacturing,Annual amount of emission of Methane from manufacturing,,, +Annual_Emissions_Methane_ManureManagement,Annual amount of emission of Methane from manure management,,, +Annual_Emissions_Methane_NonBiogenic,Annual amount of emission of Methane from non biogenic emission source,,, +Annual_Emissions_Methane_OilAndGasProduction,Annual amount of emission of Methane from oil and gas production,,, +Annual_Emissions_Methane_OilAndGasRefining,Annual amount of emission of Methane from oil and gas refining,,, +Annual_Emissions_Methane_OpenBurningWaste,Annual amount of emission of Methane from open burning waste,,, +Annual_Emissions_Methane_Power,Annual amount of emission of Methane from power,,, +Annual_Emissions_Methane_RiceCultivation,Annual amount of emission of Methane from rice cultivation,,, +Annual_Emissions_Methane_SolidFuelTransformation,Annual amount of emission of Methane from solid fuel transformation,,, +Annual_Emissions_Methane_SolidWasteDisposal,Annual amount of emission of Methane from solid waste disposal,,, +Annual_Emissions_Methane_Transportation,Annual amount of emission of Methane from transportation,,, +Annual_Emissions_Methane_WasteManagement,Annual amount of emission of Methane from waste management,,, +Annual_Emissions_Methane_WastewaterTreatmentAndDischarge,Annual amount of emission of Methane from wastewater treatment and discharge,,, +Annual_Emissions_NitrogenTrifluoride_NonBiogenic,Annual amount of emission of Nitrogen trifluoride from non biogenic emission source,,, +Annual_Emissions_NitrousOxide_Agriculture,Annual amount of emission of Nitrous oxide from agriculture,,, +Annual_Emissions_NitrousOxide_BiologicalTreatmentOfSolidWasteAndBiogenic,Annual amount of emission of Nitrous oxide from biological treatment of solid waste and biogenic,,, +Annual_Emissions_NitrousOxide_CroplandFire,Annual amount of emission of Nitrous oxide from cropland fire,,, +Annual_Emissions_NitrousOxide_FossilFuelOperations,Annual amount of emission of Nitrous oxide from fossil fuel operations,,, +Annual_Emissions_NitrousOxide_FuelCombustionForDomesticAviation,Annual amount of emission of Nitrous oxide from fuel combustion for domestic aviation,,, +Annual_Emissions_NitrousOxide_FuelCombustionForInternationalAviation,Annual amount of emission of Nitrous oxide from fuel combustion for international aviation,,, +Annual_Emissions_NitrousOxide_FuelCombustionForRailways,Annual amount of emission of Nitrous oxide from fuel combustion for railways,,, +Annual_Emissions_NitrousOxide_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of emission of Nitrous oxide from fuel combustion for residential commercial onsite heating,,, +Annual_Emissions_NitrousOxide_FuelCombustionForRoadVehicles,Annual amount of emission of Nitrous oxide from fuel combustion for road vehicles,,, +Annual_Emissions_NitrousOxide_FuelCombustionInBuildings,Annual amount of emission of Nitrous oxide from fuel combustion in buildings,,, +Annual_Emissions_NitrousOxide_Manufacturing,Annual amount of emission of Nitrous oxide from manufacturing,,, +Annual_Emissions_NitrousOxide_ManureManagement,Annual amount of emission of Nitrous oxide from manure management,,, +Annual_Emissions_NitrousOxide_NonBiogenic,Annual amount of emission of Nitrous oxide from non biogenic emission source,,, +Annual_Emissions_NitrousOxide_OilAndGasRefining,Annual amount of emission of Nitrous oxide from oil and gas refining,,, +Annual_Emissions_NitrousOxide_OpenBurningWaste,Annual amount of emission of Nitrous oxide from open burning waste,,, +Annual_Emissions_NitrousOxide_Power,Annual amount of emission of Nitrous oxide from power,,, +Annual_Emissions_NitrousOxide_SolidFuelTransformation,Annual amount of emission of Nitrous oxide from solid fuel transformation,,, +Annual_Emissions_NitrousOxide_SyntheticFertilizerApplication,Annual amount of emission of Nitrous oxide from synthetic fertilizer application,,, +Annual_Emissions_NitrousOxide_Transportation,Annual amount of emission of Nitrous oxide from transportation,,, +Annual_Emissions_NitrousOxide_WasteManagement,Annual amount of emission of Nitrous oxide from waste management,,, +Annual_Emissions_NitrousOxide_WastewaterTreatmentAndDischarge,Annual amount of emission of Nitrous oxide from wastewater treatment and discharge,,, +Annual_Emissions_Perfluorocarbon_NonBiogenic,Annual amount of emission of Perfluoro Carbon from non biogenic emission source,,, +Annual_Emissions_SulfurHexafluoride_NonBiogenic,Annual amount of emission of Sulfur hexafluoride from non biogenic emission source,,, +Annual_Emissions_VeryShortLivedCompounds_NonBiogenic,Annual amount of emission of very short lived compounds from non biogenic emission source,,, +Annual_ExpectedLoss_NaturalHazardImpact,Estimated annual loss from natural disasters,,, +Annual_ExpectedLoss_NaturalHazardImpact_AvalancheEvent,Estimated annual loss due to avalanche,,, +Annual_ExpectedLoss_NaturalHazardImpact_CoastalFloodEvent,Estimated annual loss due to coastal floods,,, +Annual_ExpectedLoss_NaturalHazardImpact_ColdWaveEvent,Estimated annual loss due to cold waves,,, +Annual_ExpectedLoss_NaturalHazardImpact_DroughtEvent,Estimated annual loss due to droughts,,, +Annual_ExpectedLoss_NaturalHazardImpact_EarthquakeEvent,Estimated annual loss due to earthquakes,,, +Annual_ExpectedLoss_NaturalHazardImpact_HailEvent,Estimated annual loss due to hails,,, +Annual_ExpectedLoss_NaturalHazardImpact_HeatWaveEvent,Estimated annual loss due to heat waves,,, +Annual_ExpectedLoss_NaturalHazardImpact_HurricaneEvent,Estimated annual loss due to hurricanes,,, +Annual_ExpectedLoss_NaturalHazardImpact_IceStormEvent,Estimated annual loss due to ice storms,,, +Annual_ExpectedLoss_NaturalHazardImpact_LandslideEvent,Estimated annual loss due to landslides,,, +Annual_ExpectedLoss_NaturalHazardImpact_LightningEvent,Estimated annual loss due to lightning events,,, +Annual_ExpectedLoss_NaturalHazardImpact_RiverineFloodingEvent,Estimated annual loss due to riverine floodings,,, +Annual_ExpectedLoss_NaturalHazardImpact_StrongWindEvent,Estimated annual loss due to strong winds,,, +Annual_ExpectedLoss_NaturalHazardImpact_TornadoEvent,Estimated annual loss due to tornados,,, +Annual_ExpectedLoss_NaturalHazardImpact_TsunamiEvent,Estimated annual loss due to tsunami,,, +Annual_ExpectedLoss_NaturalHazardImpact_VolcanicActivityEvent,Estimated annual loss due to volcanic activity,,, +Annual_ExpectedLoss_NaturalHazardImpact_WildfireEvent,Estimated annual loss due to wildfires,,, +Annual_ExpectedLoss_NaturalHazardImpact_WinterWeatherEvent,Estimated annual loss due to winter weather,,, +Annual_Exports_Electricity,Amount of electricity exported in a year,,, +Annual_Exports_Fuel_AviationGasoline,Annual Amount of exported aviation gasoline,,, +Annual_Exports_Fuel_BituminousCoal,Annual Amount of exported bituminous coal,,, +Annual_Exports_Fuel_BrownCoal,Annual Amount of exported brown coal,,, +Annual_Exports_Fuel_Charcoal,Annual Amount of exported charcoal,,, +Annual_Exports_Fuel_CokeOvenCoke,Annual Amount of exported coke oven coke,,, +Annual_Exports_Fuel_CrudeOil,Annual Amount of exported crude oil,,, +Annual_Exports_Fuel_DieselOil,Annual Amount of exported diesel oil,,, +Annual_Exports_Fuel_FuelOil,Annual Amount of exported fuel oil,,, +Annual_Exports_Fuel_Fuelwood,Annual Amount of exported fuelwood,,, +Annual_Exports_Fuel_HardCoal,Annual Amount of exported hard coal,,, +Annual_Exports_Fuel_Kerosene,Annual Amount of exported kerosene,,, +Annual_Exports_Fuel_KeroseneJetFuel,Annual Amount of exported kerosene jet fuel,,, +Annual_Exports_Fuel_LiquifiedPetroleumGas,Annual Amount of exported liquefied petroleum gas,,, +Annual_Exports_Fuel_Lubricants,Annual Amount of exported lubricants,,, +Annual_Exports_Fuel_MotorGasoline,Annual Amount of exported motor gasoline,,, +Annual_Exports_Fuel_Naphtha,Annual Amount of exported naphtha,,, +Annual_Exports_Fuel_NaturalGas,Annual Amount of exported natural gas,,, +Annual_Exports_Fuel_NaturalGasLiquids,Annual Amount of exported natural gas liquids,,, +Annual_Exports_Fuel_ParaffinWaxes,Annual Amount of exported paraffin waxes,,, +Annual_Exports_Fuel_PetroleumCoke,Annual Amount of exported petroleum coke,,, +Annual_Exports_Fuel_WhiteSpirit,Annual Amount of exported white spirit,,, +Annual_Generation_Electricity,Annual Amount of generated electricity,,, +Annual_Generation_Electricity_Coal,Annual amount of electricity generated from coal,,, +Annual_Generation_Electricity_Commercial,Amount of electricity generated by commercial power plants,,, +Annual_Generation_Electricity_Households,Annual electricity generated for residential use,,, +Annual_Generation_Electricity_Industrial,Annual electricity generated by industries,,, +Annual_Generation_Electricity_NaturalGas,Annual electricity generated from natural gas,,, +Annual_Generation_Electricity_PetroleumLiquids,Annual electricity generated from petroleum liquids,,, +Annual_Generation_Electricity_RenewableEnergy,Annual electricity generated from renewable sources,,, +Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic,Annual electricity generated from small scale solar PVs,,, +Annual_Generation_Electricity_Solar,Annual electricity generated from solar,,, +Annual_Generation_Electricity_Solar_Residential,Annual electricity generated from solar by the residential sector,,, +Annual_Generation_Electricity_UtilityScaleSolar,Annual electricity generated from utility scale solar power plants,,, +Annual_Generation_Electricity_Wind,Annual electricity generated from wind,,, +Annual_Generation_Energy_Coal,Annual energy generation from coal,,, +Annual_Generation_Energy_FuelOil,Annual energy generation from fuel oil,,, +Annual_Generation_Energy_Geothermal,Annual energy generation from geothermal,,, +Annual_Generation_Energy_NaturalGas,Annual energy generation from natural gas,,, +Annual_Generation_Energy_Solar,Annual energy generation from solar,,, +Annual_Generation_Energy_Water,Annual energy generation from water,,, +Annual_Generation_Fuel_AdditivesOxygenates,Annual production of additives and oxygenates added to oil products,,, +Annual_Generation_Fuel_AnthraciteCoal,Annual production of anthracite coal,,, +Annual_Generation_Fuel_AviationGasoline,Annual production of gasoline for aviation engines,,, +Annual_Generation_Fuel_Bagasse,Annual production of bagasse,,, +Annual_Generation_Fuel_BioDiesel,Annual production of biodiesel,,, +Annual_Generation_Fuel_BioGas,Annual production of biogas,,, +Annual_Generation_Fuel_BioGasoline,Annual production of biogasoline,,, +Annual_Generation_Fuel_BituminousCoal,Annual production of bituminous coal,,, +Annual_Generation_Fuel_BlastFurnaceGas,Annual production of blast furnace gas,,, +Annual_Generation_Fuel_BrownCoal,Annual production of brown coal,,, +Annual_Generation_Fuel_Charcoal,Annual production of charcoal,,, +Annual_Generation_Fuel_CokeOvenCoke,Annual production of coke oven coke,,, +Annual_Generation_Fuel_CokeOvenGas,Annual production of coke oven gas,,, +Annual_Generation_Fuel_CokingCoal,Annual production of coking coal,,, +Annual_Generation_Fuel_CrudeOil,Annual production of crude oil,,, +Annual_Generation_Fuel_DieselOil,Annual production of diesel oil,,, +Annual_Generation_Fuel_FuelOil,Annual production of fuel oil,,, +Annual_Generation_Fuel_Fuelwood,Annual production of fuelwood,,, +Annual_Generation_Fuel_HardCoal,Annual production of hard coal,,, +Annual_Generation_Fuel_Kerosene,Annual production of kerosene,,, +Annual_Generation_Fuel_KeroseneJetFuel,Annual production of kerosene-type jet fuel,,, +Annual_Generation_Fuel_LigniteCoal,Annual production of lignite coal,,, +Annual_Generation_Fuel_LiquifiedPetroleumGas,Annual production of liquefied petroleum gas,,, +Annual_Generation_Fuel_Lubricants,Annual production of lubricant oils,,, +Annual_Generation_Fuel_MotorGasoline,Annual production of motor gasoline,,, +Annual_Generation_Fuel_MunicipalWaste,Annual production of municipal waste,,, +Annual_Generation_Fuel_Naphtha,Annual production of naphtha,,, +Annual_Generation_Fuel_NaturalGas,Annual production of natural gas,,, +Annual_Generation_Fuel_NaturalGasLiquids,Annual production of natural gas liquids,,, +Annual_Generation_Fuel_Nuclear,Annual production of fuel from nuclear sources,,, +Annual_Generation_Fuel_ParaffinWaxes,Annual production of paraffin waxes,,, +Annual_Generation_Fuel_PetroleumCoke,Annual production of petroleum coke,,, +Annual_Generation_Fuel_RefineryFeedstocks,Annual production of refinery feedstocks,,, +Annual_Generation_Fuel_RefineryGas,Annual production of refinery gas,,, +Annual_Generation_Fuel_VegetalWaste,Annual production of vegetal waste,,, +Annual_Generation_Fuel_WhiteSpirit,Annual production of white spirit,,, +Annual_Imports_Electricity,Annual amount of imported electricity,,, +Annual_Imports_Fuel_AnthraciteCoal,Annual amount of anthracite coal imports,,, +Annual_Imports_Fuel_AviationGasoline,Annual amount of imported gasoline for aviation use,,, +Annual_Imports_Fuel_BituminousCoal,Annual amount of bituminous coal imports,,, +Annual_Imports_Fuel_BrownCoal,Annual amount of brown coal imports,,, +Annual_Imports_Fuel_Charcoal,Annual amount of charcoal imports,,, +Annual_Imports_Fuel_CokeOvenCoke,Annual amount of coke oven coke imports,,, +Annual_Imports_Fuel_CokingCoal,Annual amount of coking coal imports,,, +Annual_Imports_Fuel_CrudeOil,Annual amount of crude oil imports,,, +Annual_Imports_Fuel_DieselOil,Annual amount of diesel oil imports,,, +Annual_Imports_Fuel_FuelOil,Annual amount of fuel oil imports,,, +Annual_Imports_Fuel_Fuelwood,Annual amount of fuelwood imports,,, +Annual_Imports_Fuel_HardCoal,Annual amount of hard coal imports,,, +Annual_Imports_Fuel_Kerosene,Annual amount of kerosene imports,,, +Annual_Imports_Fuel_KeroseneJetFuel,Annual amount of kerosene-type jet fuel imports,,, +Annual_Imports_Fuel_LiquifiedPetroleumGas,Annual amount of liquified petroleum gas imports,,, +Annual_Imports_Fuel_Lubricants,Annual amount of lubricant oil imports,,, +Annual_Imports_Fuel_MotorGasoline,Annual amount of motor gasoline imports,,, +Annual_Imports_Fuel_Naphtha,Annual amount of naphtha imports,,, +Annual_Imports_Fuel_NaturalGas,Annual amount of natural gas imports,,, +Annual_Imports_Fuel_ParaffinWaxes,Annual amount of paraffin wax imports,,, +Annual_Imports_Fuel_PetroleumCoke,Annual amount of petroleum coke imports,,, +Annual_Imports_Fuel_WhiteSpirit,Annual amount of white spirit imports,,, +Annual_Loss_Electricity,Annual loss of electricity in transmission and distribution,,, +Annual_Loss_Energy_Heat,Annual loss of heat due to transmission and distribution,,, +Annual_Loss_Fuel_NaturalGas,Annual loss of natural gas during distribution and transportation,,, +Annual_Reserves_Fuel_BrownCoal,Annual brown coal reserve,,, +Annual_Reserves_Fuel_CrudeOil,Annual crude oil reserve,,, +Annual_Reserves_Fuel_HardCoal,Annual hard coal reserve,,, +Annual_Reserves_Fuel_NaturalGas,Annual natural gas reserve,,, +Annual_RetailSales_Electricity,annual retail sales of electricity,,, +Annual_RetailSales_Electricity_Commercial,annual retail sales of electricity consumed by commercial sector,,, +Annual_RetailSales_Electricity_Industrial,annual retail sales of electricity consumed by industrial sector,,, +Annual_RetailSales_Electricity_Residential,annual retail sales of electricity consumed by residential sector,,, +Annual_SalesRevenue_Electricity,annual sales revenue of electricity,,, +Annual_SalesRevenue_Electricity_Commercial,annual sales revenue of electricity from commercial sector,,, +Annual_SalesRevenue_Electricity_Industrial,annual sales revenue of electricity from industrial sector,,, +Annual_SalesRevenue_Electricity_Residential,annual sales revenue of electricity from residential sector,,, +Annual_WithdrawalRate_Water_AsAFractionOf_Annual_Reserve_Water,Proportion of annual ground water withdrawal against net annual availability,,, +Area_Farm,Area of farms,,, +Area_Farm_BarleyForGrain,Area of farms growing barley for grain production,,, +Area_Farm_CornForGrain,Area of Farms Growing Corn,,, +Area_Farm_CornForSilageOrGreenchop,Area of Farm Growing Corn for Silage Or Greenchop,,, +Area_Farm_Cotton,Area of Farm Growing Cotton,,, +Area_Farm_Cropland,Area of Farm with Cropland,,, +Area_Farm_DryEdibleBeans,Area of farms growing dry edible beans,,, +Area_Farm_DurumWheatForGrain,Area of farms growing durum wheat for grain production,,, +Area_Farm_Forage,Area of Farms growing Forage crop,,, +Area_Farm_HarvestedCropland,area of farms with harvested cropland,,, +Area_Farm_IrrigatedLand,Area of Farm Irrigated Land,,, +Area_Farm_OatsForGrain,Area of farms growing oats for grain production,,, +Area_Farm_Orchards,Area of farms growing orchards,,, +Area_Farm_PeanutsForNuts,Area of farms growing peanuts,,, +Area_Farm_PimaCotton,Area of farms growing pima cotton,,, +Area_Farm_Potatoes,Area of Farms Growing Potatoes,,, +Area_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,Area of farms with american indians or alaska natives farmers,,, +Area_Farm_Producer_AsianAlone,Area of farms with asians as farmers,,, +Area_Farm_Producer_BlackOrAfricanAmericanAlone,Area of farms with blacks or african americans farmers,,, +Area_Farm_Producer_HispanicOrLatino,Area of farms with hispanics or latinos farmers,,, +Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Area of farms with native hawaiians or other pacific islanders farmers,,, +Area_Farm_Producer_TwoOrMoreRaces,Area of farms with two or more races farmers,,, +Area_Farm_Producer_WhiteAlone,Area of farms with whites farmers,,, +Area_Farm_Rice,Area of farms growing rice,,, +Area_Farm_SorghumForGrain,Area of farms growing Sorghum For Grain,,, +Area_Farm_SorghumForSilageOrGreenchop,Area of farms growing Sorghum For Silage Or Greenchop,,, +Area_Farm_SugarbeetsForSugar,Area of farms growing Sugarbeets For Sugar,,, +Area_Farm_SunflowerSeed,Area of farms growing Sunflower Seed,,, +Area_Farm_SweetPotatoes,Area of farms growing Sweet Potatoes,,, +Area_Farm_UplandCotton,Area of farms growing Upland Cotton,,, +Area_Farm_VegetablesHarvestedForSale,Area of farms growing Vegetables Harvested For Sale,,, +Area_Farm_WheatForGrain,Area of farms growing Wheat For Grain,,, +Area_Farm_WinterWheatForGrain,Area of farms growing Winter Wheat For Grain,,, +Area_FloodEvent,Area of flood event,,, +Area_LandCover_Forest,Area of forest,,, +Area_LandCover_Tree,Area of tree covered land,,, +Area_WetBulbTemperatureEvent,Area of Wet Bulb Temperature Event,,, +Area_WildlandFireEvent,Area of Wildland Fires,,, +AtmosphericPressure_SurfaceLevel,Atmospheric pressure at Surface Level,,, +BurnedArea_FireEvent,Burned Area of Fire Event,,, +BurnedArea_FireEvent_Forest,Burned Area of Fire Event in Forest,,, +Capacity_Electricity_Renewables_AsAFractionOf_Capacity_Electricity,Percentage of renewable electricity capacity,,, +dc/c58mvty4nhxdb,Student test performance,,, +Concentration_AirPollutant_SmokePM25,Concentration of Smoke PM2.5,,, +ConsecutiveDryDays,Maximum number of consecutive dry days,,, +Count_BirthEvent,number of births,,, +Count_BirthEvent_AsAFractionOfCount_Person,birth rate,,, +Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,live birth rate,,, +Count_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Count of live births where mothers Education is high school without Diploma,,, +Count_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Count of live births where mothers Race is American Indian or Alaska Native,,, +Count_BirthEvent_LiveBirth_MotherAsianIndian,Count of live births where mothers Race is Asian Indian,,, +Count_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Count of live births where mothers Race is Asian or Pacific Islander,,, +Count_BirthEvent_LiveBirth_MotherAssociatesDegree,Count of live births where mothers Education is Associates Degree,,, +Count_BirthEvent_LiveBirth_MotherBachelorsDegree,Count of live births where mothers Education is Bachelors Degree,,, +Count_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Count of live births where mothers Race is Black or African American,,, +Count_BirthEvent_LiveBirth_MotherChinese,Count of live births where mothers Race is Chinese,,, +Count_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Count of live births where mothers have Doctorate Degree or Professional School Degree,,, +Count_BirthEvent_LiveBirth_MotherFilipino,Count of live births where mothers Race is Filipino,,, +Count_BirthEvent_LiveBirth_MotherForeignBorn,Count of live births where mothers Nativity is Foreign Born,,, +Count_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Count of live births where mothers Race is Guamanian or Chamorro,,, +Count_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Count of live births where mothers Education is High School,,, +Count_BirthEvent_LiveBirth_MotherHispanicOrLatino,Count of live births where mothers Ethnicity is Hispanic or Latino,,, +Count_BirthEvent_LiveBirth_MotherJapanese,Count of live births where mothers Race is Japanese,,, +Count_BirthEvent_LiveBirth_MotherKorean,Count of live births where mothers Race is Korean,,, +Count_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Count of live births where mothers Education is Less Than 9th Grade,,, +Count_BirthEvent_LiveBirth_MotherMastersDegree,Count of live births where mothers Education is Masters Degree,,, +Count_BirthEvent_LiveBirth_MotherNative,Count of live births where mothers Nativity is Native,,, +Count_BirthEvent_LiveBirth_MotherNativeHawaiian,Count of live births where mothers Race is Native Hawaiian,,, +Count_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Count of live births where mothers Ethnicity is Not Hispanic or Latino,,, +Count_BirthEvent_LiveBirth_MotherNowMarried,Count of live births of married mothers,,, +Count_BirthEvent_LiveBirth_MotherSamoan,Count of live births where mothers Race is Samoan,,, +Count_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Count of live births where mothers are multi-race,,, +Count_BirthEvent_LiveBirth_MotherUnmarried,Count of live births where mothers are Unmarried,,, +Count_BirthEvent_LiveBirth_MotherVietnamese,Count of live births where mothers Race is Vietnamese,,, +Count_BirthEvent_LiveBirth_MotherWhiteAlone,Count of live births where mothers are White,,, +Count_BlizzardEvent,Count of Blizzard Event,,, +Count_CivicStructure_AgriculturalFacility,Number of Agricultural Facility,,, +Count_CivicStructure_EducationFacility,Number of Education Facility,,, +Count_CivicStructure_MedicalFacility,Number of Medical Facility,,, +Count_CivicStructure_TransportOrAdminFacility,Number of Transport or Admin Facility,,, +Count_CoastalFloodEvent,Number of coastal floods,,, +Count_ColdTemperatureEvent,Count of Cold Temperature Event,,, +Count_ColdWindChillEvent,Count of Cold Wind Chill Event,,, +Count_CriminalActivities_AggravatedAssault,Number of Aggravated Assaults,,, +Count_CriminalActivities_Arson,Number of Arson crimes,,, +Count_CriminalActivities_Burglary,Number of burglaries,,, +Count_CriminalActivities_CombinedCrime,Number of crimes,,, +Count_CriminalActivities_ForcibleRape,Number of Rapes,,, +Count_CriminalActivities_LarcenyTheft,Count of criminal activities involving larceny theft,,, +Count_CriminalActivities_MotorVehicleTheft,Number of car thefts,,, +Count_CriminalActivities_MurderAndNonNegligentManslaughter,Number of murders and non-negligent manslaughters,,, +Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,Number of Murder and Non Negligent Manslaughter per capita,,, +Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,Percent of females commiting intentional homicide,,, +Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,Percent of males commiting intentional homicide,,, +Count_CriminalActivities_PropertyCrime,Number of property crime incidents,,, +Count_CriminalActivities_Robbery,Number of robberies,,, +Count_CriminalActivities_ViolentCrime,Count of criminal activities involving a violent crime,,, +Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,Number of Hate Crimes Motivated by Disability Status,,, +Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,Number of Hate Crimes Motivated by Ethnicity,,, +Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,Number of Hate Crimes Motivated by Gender,,, +Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,Number of Hate Crimes Motivated by Race,,, +Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,Number of Hate Crimes Motivated by Religion,,, +Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,Number of Hate Crimes Motivated by Sexual Orientation,,, +Count_CriminalIncidents_IsHateCrime,Number of hate crime incidents,,, +Count_CycloneEvent,Number of cyclones,,, +Count_CycloneEvent_ExtratropicalCyclone,Number of Extratropical Cyclone,,, +Count_CycloneEvent_SubtropicalStorm,Number of Subtropical Storm,,, +Count_CycloneEvent_TropicalDisturbance,Number of Tropical Disturbance,,, +Count_CycloneEvent_TropicalStorm,Number of Tropical Storm,,, +Count_Death,Number of deaths,,, +Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,mortality rate of infants,,, +Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,mortality rate of female infants,,, +Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,mortality rate of male infants,,, +Count_Death_AgeAdjusted_AsAFractionOf_Count_Person,Age adjusted death rate,,, +Count_Death_AmericanIndianAndAlaskaNativeAlone,Number of deaths Among American Indians and Alaska Natives,,, +Count_Death_AsAFractionOfCount_Person,Death rate,,, +Count_Death_AsianOrPacificIslander,Number of deaths Among Asian or Pacific Islanders,,, +Count_Death_BlackOrAfricanAmerican,Number of deaths Among Black or African Americans,,, +Count_Death_CertainConditionsOriginatingInThePerinatalPeriod,Number of Deaths Due to Certain Conditions Originating In The Perinatal Period,,, +Count_Death_CertainInfectiousParasiticDiseases,Number of Deaths Due to Certain Infectious and Parasitic Diseases,,, +Count_Death_CertainInfectiousParasiticDiseases_Female,Number of Deaths Among Females Due to Certain Infectious and Parasitic Diseases,,, +Count_Death_CertainInfectiousParasiticDiseases_Male,Number of Deaths Among Males Due to Certain Infectious and Parasitic Diseases,,, +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Number of Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities",,, +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Number of Deaths Among Females Due to Congenital Malformations, Deformations and Chromosomal Abnormalities",,, +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Number of Deaths Among Males Due to Congenital Malformations, Deformations and Chromosomal Abnormalities",,, +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders,Number of Deaths Due to Diseases of Blood and Blood Forming Organs and Immune Disorders,,, +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,Number of Deaths Among Females Due to Diseases of Blood and Blood-Forming Organs and Immune Disorders,,, +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male,Number of Deaths Among Males Due to Diseases of Blood and Blood-Forming Organs and Immune Disorders,,, +Count_Death_DiseasesOfTheCirculatorySystem,Number of Deaths Due to Diseases of the Circulatory System,,, +Count_Death_DiseasesOfTheCirculatorySystem_Female,Number of Deaths Among Females Due to Diseases of the Circulatory System,,, +Count_Death_DiseasesOfTheCirculatorySystem_Male,Number of Deaths Among Males Due to Diseases of the Circulatory System,,, +Count_Death_DiseasesOfTheDigestiveSystem,Number of Deaths Due to Diseases of the Digestive System,,, +Count_Death_DiseasesOfTheDigestiveSystem_Female,Number of Deaths Among Females Due to Diseases of the Digestive System,,, +Count_Death_DiseasesOfTheDigestiveSystem_Male,Number of Deaths Among Males Due to Diseases of the Digestive System,,, +Count_Death_DiseasesOfTheGenitourinarySystem,Number of Deaths Due to Diseases of the Genitourinary System,,, +Count_Death_DiseasesOfTheGenitourinarySystem_Female,Number of Deaths Among Females Due to Diseases of the Genitourinary System,,, +Count_Death_DiseasesOfTheGenitourinarySystem_Male,Number of Deaths Among Males Due to Diseases of the Genitourinary System,,, +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue,Number of Deaths Due to Diseases of the Musculoskeletal System and Connective Tissue,,, +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female,Number of Deaths Among Females Due to Diseases of the Musculoskeletal System and Connective Tissue,,, +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male,Number of Deaths Among Males Due to Diseases of the Musculoskeletal System and Connective Tissue,,, +Count_Death_DiseasesOfTheNervousSystem,Number of Deaths Due to Diseases of the Nervous System,,, +Count_Death_DiseasesOfTheNervousSystem_Female,Number of Deaths Among Females Due to Diseases of the Nervous System,,, +Count_Death_DiseasesOfTheNervousSystem_Male,Number of Deaths Among Males Due to Diseases of the Nervous System,,, +Count_Death_DiseasesOfTheRespiratorySystem,Number of Deaths Due to Diseases of the Respiratory System,,, +Count_Death_DiseasesOfTheRespiratorySystem_Female,Number of Deaths Among Females Due to Diseases of the Respiratory System,,, +Count_Death_DiseasesOfTheRespiratorySystem_Male,Number of Deaths Among Males Due to Diseases of the Respiratory System,,, +Count_Death_DiseasesOfTheSkinSubcutaneousTissue,Number of Deaths Due to Diseases of the Skin and Subcutaneous Tissue,,, +Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female,Number of Deaths Among Females Due to Diseases of the Skin and Subcutaneous Tissue,,, +Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Male,Number of Deaths Among Males Due to Diseases of the Skin and Subcutaneous Tissue,,, +Count_Death_EndocrineNutritionalMetabolicDiseases,"Number of Deaths Due to Endocrine, Nutritional and Metabolic Diseases",,, +Count_Death_EndocrineNutritionalMetabolicDiseases_Female,"Number of Deaths Among Females Due to Endocrine, Nutritional and Metabolic Diseases",,, +Count_Death_EndocrineNutritionalMetabolicDiseases_Male,"Number of Deaths Among Males Due to Endocrine, Nutritional and Metabolic Diseases",,, +Count_Death_ExternalCauses,Number of Deaths Due to External Causes,,, +Count_Death_ExternalCauses_Female,Number of Deaths Among Females Due to External Causes,,, +Count_Death_ExternalCauses_Male,Number of Deaths Among Males Due to External Causes,,, +Count_Death_Female,Number of Deaths Among Females,,, +Count_Death_Female_AgeAdjusted_AsAFractionOf_Count_Person_Female,Age adjusted female death rate,,, +Count_Death_Female_AmericanIndianAndAlaskaNativeAlone,Number of Deaths Among American Indian and Alaska Native Females,,, +Count_Death_Female_AsAFractionOf_Count_Person_Female,Female death rate,,, +Count_Death_Female_AsianOrPacificIslander,Number of Deaths Among Asian or Pacific Islander Females,,, +Count_Death_Female_BlackOrAfricanAmerican,Number of Deaths Among Black or African American Females,,, +Count_Death_Female_White,Number of Deaths Among White Females,,, +Count_Death_Infant,Number of Deaths Among Infants,,, +Count_Death_IntentionalSelfHarm_AsFractionOf_Count_Person,Rate of deaths due to Intentional Self Harm,,, +Count_Death_IntentionalSelfHarm_Female_AsFractionOf_Count_Person_Female,Rate of female deaths due to Intentional Self Harm,,, +Count_Death_IntentionalSelfHarm_Male_AsFractionOf_Count_Person_Male,Rate of male deaths due to Intentional Self Harm,,, +Count_Death_LessThan1Year_AsAFractionOf_Count_BirthEvent,Infant mortality rate,,, +Count_Death_LessThan1Year_Female_AsAFractionOf_Count_BirthEvent_Female,Infant mortality rate for females,,, +Count_Death_LessThan1Year_Male_AsAFractionOf_Count_BirthEvent_Male,Infant mortality rate for males,,, +Count_Death_Male,Number of deaths among males,,, +Count_Death_Male_AgeAdjusted_AsAFractionOf_Count_Person_Male,Age adjusted male death rate,,, +Count_Death_Male_AmericanIndianAndAlaskaNativeAlone,Number of deaths among American Indian and Alaska Native males,,, +Count_Death_Male_AsAFractionOf_Count_Person_Male,male death rate,,, +Count_Death_Male_AsianOrPacificIslander,Number of Deaths Among Asian or Pacific Islander Males,,, +Count_Death_Male_BlackOrAfricanAmerican,Number of Deaths Among Black or African American Males,,, +Count_Death_Male_White,Number of Deaths Among White Males,,, +Count_Death_MentalBehaviouralDisorders,Number of Deaths Due to Mental and Behavioral Disorders,,, +Count_Death_MentalBehaviouralDisorders_Female,Number of Deaths Among Females Due to Mental and Behavioral Disorders,,, +Count_Death_MentalBehaviouralDisorders_Male,Number of Deaths Among Males Due to Mental and Behavioral Disorders,,, +Count_Death_Neoplasms,Number of Deaths Due to Neoplasms,,, +Count_Death_Neoplasms_Female,Number of Deaths Among Females Due to Neoplasms,,, +Count_Death_Neoplasms_Male,Number of Deaths Among Males Due to Neoplasms,,, +Count_Death_PregnancyChildbirthThePuerperium,"Number of Deaths Due to Pregnancy, Childbirth, and the Puerperium",,, +Count_Death_PregnancyChildbirthThePuerperium_Female,"Number of Deaths Among Females Due to Pregnancy, Childbirth, and the Puerperium",,, +Count_Death_SpecialCases,Number of Deaths Due to Special Cases,,, +Count_Death_SpecialCases_Female,Number of Deaths Among Females Due to Special Cases,,, +Count_Death_Upto14Years_AsAFractionOf_Count_Person_Upto14Years,Child Mortality Rate for Ages Up to 14 Years,,, +Count_Death_Upto14Years_Female_AsAFractionOf_Count_Person_Upto14Years_Female,Female Child Mortality Rate for Ages Up to 14 Years,,, +Count_Death_Upto14Years_Male_AsAFractionOf_Count_Person_Upto14Years_Male,Male Child Mortality Rate for Ages Up to 14 Years,,, +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod,Number of infant deaths from certain conditions originating in the perinatal period,,, +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Female,Number of infant deaths among females due to certain conditions originating in the perinatal period,,, +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Male,Number of infant deaths among males due to certain conditions originating in the perinatal period,,, +Count_Death_Upto1Years_CertainInfectiousParasiticDiseases,Number of infant deaths from certain infectious and parasitic diseases,,, +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Number of infant deaths from congenital malformations, deformations and chromosomal abnormalities",,, +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Number of Female Infant Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities",,, +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Number of Male Infant Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities",,, +Count_Death_Upto1Years_DiseasesOfTheCirculatorySystem,Number of Infant Deaths Due to Diseases Of The Circulatory System,,, +Count_Death_Upto1Years_DiseasesOfTheDigestiveSystem,Number of Infant Deaths Due to Diseases Of The Digestive System,,, +Count_Death_Upto1Years_DiseasesOfTheGenitourinarySystem,Number of Infant Deaths Due to Diseases Of The Genitourinary System,,, +Count_Death_Upto1Years_DiseasesOfTheNervousSystem,Number of Infant Deaths Due to Diseases Of The Nervous System,,, +Count_Death_Upto1Years_DiseasesOfTheRespiratorySystem,Number of Infant Deaths Due to Diseases Of The Respiratory System,,, +Count_Death_Upto1Years_EndocrineNutritionalMetabolicDiseases,Number of Infant Deaths Due to Endocrine Nutritional Metabolic Diseases,,, +Count_Death_Upto1Years_ExternalCauses,Number of Infant Deaths Due to External Causes,,, +Count_Death_Upto1Years_Neoplasms,Number of Infant Deaths Due to Neoplasms,,, +Count_Death_White,Number of Deaths Among White Persons,,, +Count_DebrisFlowEvent,Number of landslides,,, +Count_DeliveryEvent_Safe_AsFractionOf_Count_DeliveryEvent,Percentage of Safe Child births,,, +Count_DenseFogEvent,Number of Dense Fogs,,, +Count_DroughtEvent,number of droughts,,, +Count_DustDevilEvent,number of dust devils,,, +Count_DustStormEvent,number of dust storms,,, +Count_EarthquakeEvent,Number of Earthquakes,,, +Count_EarthquakeEvent_M5To6,Count of Earthquake Event: 5 - 6 Magnitude,,, +Count_EarthquakeEvent_M6To7,Count of Earthquake Event: 6 - 7 Magnitude,,, +Count_EarthquakeEvent_M7To8,Count of Earthquake Event: 7 - 8 Magnitude,,, +Count_EarthquakeEvent_M8To9,Count of Earthquake Event: 8 - 9 Magnitude,,, +Count_EarthquakeEvent_M9Onwards,Count of Earthquake Event: 9 Magnitude or More,,, +Count_Establishment,Count of Establishment,,, +Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of Establishments Owned by the Federal Government,,, +Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of Establishments Owned by the local Government,,, +Count_Establishment_NAICSAccommodationFoodServices,Number of Accommodation And Food Services establishments,,, +dc/w8gp902jnk426,Number of Accommodation And Food Services establishments,,, +Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"Number of Administrative Support, Waste Management And Remediation Services establishments",,, +Count_Establishment_NAICSAgricultureForestryFishingHunting,"Number of Agriculture, Forestry, Fishing And Hunting establishments",,, +dc/1j7jmy39fwhw5,"Number of Agriculture, Forestry, Fishing And Hunting establishments",,, +Count_Establishment_NAICSArtsEntertainmentRecreation,"Number of Arts, Entertainment And Recreation establishments",,, +dc/lsf00jqxjp9r8,Number of Biomass Electric Power Generation Establishments,,, +Count_Establishment_NAICSConstruction,Number of Construction establishments,,, +dc/51h3g4mcgj3w4,Number of Construction of Buildings establishments,,, +Count_Establishment_NAICSEducationalServices,Number of Educational Services establishments,,, +dc/kcns4cvt14zx2,Number of Educational Services establishments,,, +dc/mwcnlh5bmdk63,Number of Electric Power Transmission And Distribution establishments,,, +Count_Establishment_NAICSFinanceInsurance,Number of Finance and Insurance establishments,,, +dc/3jr0p7yjw06z9,Number of gambling establishments in gambling industries,,, +dc/00dyzp11kk35g,Number of Establishments in Geothermal Electric Power Generation,,, +Count_Establishment_NAICSGoodsProducing,Number of Goods Producing establishments,,, +Count_Establishment_NAICSHealthCareSocialAssistance,Number of Health Care and Social Assistance establishments,,, +dc/tz59wt1hkl4y,Number of Health Care and Social Assistance establishments,,, +dc/ltwqwtxcq9l23,Number of Heavy Civil Engineering Construction establishments,,, +dc/mbn7jcx896cd8,Number of Hydroelectric Power Generation establishments,,, +Count_Establishment_NAICSInformation,Number of Information establishments,,, +Count_Establishment_NAICSManagementOfCompaniesEnterprises,Number of Management Of Companies and Enterprises establishments,,, +dc/9pz1cse6yndtg,Number of Management Of Companies and Enterprises establishments,,, +Count_Establishment_NAICSManufacturing,Number of Manufacturing establishments,,, +dc/1wf1h5esex2d,Number of Manufacturing establishments,,, +Count_Establishment_NAICSMiningQuarryingOilGasExtraction,"Number of Mining, Quarrying, And Oil And Gas Extraction establishments",,, +dc/br6elkd593zs1,"Number of Mining, Quarrying, And Oil And Gas Extraction establishments",,, +dc/eptfljlz7bgbg,Number of Nuclear Electric Power Generation establishments,,, +Count_Establishment_NAICSProfessionalScientificTechnicalServices,"Number of Professional, Scientific, And Technical Services establishments",,, +dc/mlf5e4m68h2k7,"Number of Professional, Scientific, And Technical Services establishments",,, +Count_Establishment_NAICSPublicAdministration,Number of Public Administration establishments,,, +Count_Establishment_NAICSRealEstateRentalLeasing,Number of Real Estate And Rental And Leasing establishments,,, +dc/61t0et409x8ch,Number of Research And Development In The Physical Engineering And Life Sciences establishments,,, +Count_Establishment_NAICSRetailTrade,Number of Retail Trade establishments,,, +dc/2c2e9bn8p7xz6,Number of Retail Trade establishments,,, +Count_Establishment_NAICSServiceProviding,Number of Service Providing establishments,,, +Count_Establishment_NAICSTotalAllIndustries,Number of establishments of all industries,,, +Count_Establishment_NAICSTransportationWarehousing,Number of Transportation And Warehousing establishments,,, +dc/x52jxxbwspczh,Number of Transportation And Warehousing establishments,,, +Count_Establishment_NAICSUtilities,Number of Utilities establishments,,, +Count_Establishment_NAICSWholesaleTrade,Number of Wholesale Trade establishments,,, +dc/wfktw3b5c50h1,Number of establishments owned by private entities in the Solar Electric Power Generation industry,,, +Count_Establishment_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,Number of establishments owned by private entities,,, +dc/evcytmdmc9xgd,Number of privately owned Wind Electric Power Generation establishments,,, +Count_Establishment_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of establishments owned by state governments,,, +Count_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,Number of Merchant Wholesalers establishments,,, +Count_ExcessiveHeatEvent,number of Excessive Heat Event,,, +Count_ExtremeColdWindChillEvent,number of Extreme Cold Wind Chill Event,,, +Count_Faculty_ElementarySchoolCounselor,number of Elementary School Counselors,,, +Count_Faculty_LEAAdministrativeSupportStaff,number of LEA Administrative Support Staff,,, +Count_Faculty_LEAAdministrator,number of LEA Administrators,,, +Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,"number of Para Professionals, Aides or Instructional Aides",,, +Count_Faculty_SchoolAdministrativeSupportStaff,number of School Administrative Support Staff,,, +Count_Faculty_SchoolAdministrator,number of School Administrators,,, +Count_Faculty_SchoolPsychologist,number of School Psychologists,,, +Count_Faculty_SecondarySchoolCounselor,number of Secondary School Counselors,,, +Count_Faculty_TotalGuidanceCounselor,number of Total Guidance Counselors,,, +Count_Farm,Number of farms,,, +Count_Farm_BarleyForGrain,number of farms that grow barley,,, +Count_Farm_BeefCows,number of farms that raise beef cattle,,, +Count_Farm_Broilers,number of farms that raise broiler chicken,,, +Count_Farm_CattleAndCalves,number of farms that raise cattle,,, +Count_Farm_CornForGrain,Number of farms that grow corn for grain production,,, +Count_Farm_CornForSilageOrGreenchop,Number of farms that grow corn for silage or greenchop,,, +Count_Farm_Cotton,Number of farms that grow cotton,,, +Count_Farm_Cropland,Number of Farms With Crop Cultivation,,, +Count_Farm_DryEdibleBeans,Number of farms that grow dry edible beans,,, +Count_Farm_DurumWheatForGrain,Number of farms that grow Durum Wheat for grain production,,, +Count_Farm_Forage,Number of farms that grow forage,,, +Count_Farm_HarvestedCropland,Number of Farms With Harvested Crop Cultivation,,, +Count_Farm_HogsAndPigs,Number of farms that raise hogs and pigs,,, +Count_Farm_InventorySold_CattleAndCalves,Number of farms that sell cattle and calves,,, +Count_Farm_InventorySold_HogsAndPigs,Number of farms that sell hogs and pigs,,, +Count_Farm_IrrigatedLand,Number of Farms With Irrigated Land,,, +Count_Farm_Layers,Number of farms that raise laying hens,,, +Count_Farm_MilkCows,number of farms that raise dairy cows,,, +Count_Farm_OatsForGrain,Number of farms that grow oats for grain production,,, +Count_Farm_Orchards,Number of farms that grow orchards,,, +Count_Farm_PeanutsForNuts,Number of farms that grow peanuts for nuts,,, +Count_Farm_PimaCotton,Number of farms that grow pima cotton,,, +Count_Farm_Potatoes,Number of farms that grow potatoes,,, +Count_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,Number of Farms Operated by American Indian or Alaska Native farmers,,, +Count_Farm_Producer_AsianAlone,Number of Farms Operated by Asian farmers,,, +Count_Farm_Producer_BlackOrAfricanAmericanAlone,Number of Farms Operated by Black or African American farmers,,, +Count_Farm_Producer_HispanicOrLatino,Number of Farms Operated by Hispanic or Latino farmers,,, +Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Number of Farms Operated by Native Hawaiian or Other Pacific Islander farmers,,, +Count_Farm_Producer_TwoOrMoreRaces,Number of Farms Operated by farmers of Two or More Races,,, +Count_Farm_Producer_WhiteAlone,Number of Farms Operated by White farmers,,, +Count_Farm_ReceivedGovernmentPayment,Number of Farms That Received Government Payments,,, +Count_Farm_ReportedIncome,Number of Farms That Reported Income,,, +Count_Farm_ReportedNetIncome,Number of Farms That Reported Net Income,,, +Count_Farm_Rice,Number of Farms that grow Rice,,, +Count_Farm_SheepAndLambs,number of farms that raise sheep and lambs,,, +Count_Farm_SorghumForGrain,Number of farms that grow sorghum for grain production,,, +Count_Farm_SorghumForSilageOrGreenchop,Number of farms that grow sorghum for silage or greenchop,,, +Count_Farm_SugarbeetsForSugar,Number of farms that grow sugar beets for sugar,,, +Count_Farm_SunflowerSeed,Number of farms that grow sunflower seeds,,, +Count_Farm_SweetPotatoes,Number of farms that grow sweet potatoes,,, +Count_Farm_UplandCotton,Number of farms that grow upland cotton,,, +Count_Farm_VegetablesHarvestedForSale,Number of farms that sell vegetables,,, +Count_Farm_WheatForGrain,Number of Farms Growing Wheat,,, +Count_Farm_WinterWheatForGrain,Number of Farms Growing Winter Wheat,,, +Count_FarmInventory_BeefCows,Number of Beef Cows in Farm Inventory,,, +Count_FarmInventory_Broilers,Number of Broiler chicken in Farm Inventory,,, +Count_FarmInventory_CattleAndCalves,Number of Cattle and Calves in Farm Inventory,,, +Count_FarmInventory_HogsAndPigs,Number of Hogs and Pigs in Farm Inventory,,, +Count_FarmInventory_Layers,Number of laying hens in Farm Inventory,,, +Count_FarmInventory_MilkCows,Number of Milk Cows in Farm Inventory,,, +Count_FarmInventory_SheepAndLambs,Number of Sheep and Lambs in Farm Inventory,,, +Count_FireEvent,Number of Fires,,, +Count_FireIncidentComplex,Number of Fire Incident Complexes,,, +Count_FlashFloodEvent,Number of Flash Floods,,, +Count_FloodEvent,Number of floods,,, +Count_FreezingFogEvent,Number of Freezing Fogs,,, +Count_FrostFreezeEvent,Number of Frost Freeze Events,,, +Count_FunnelCloudEvent,Number of Funnel Cloud Events,,, +Count_HailEvent,Number of Hails,,, +Count_HeatEvent,Number of Heat Waves,,, +Count_HeatTemperatureEvent,Number of Heat Temperature Events,,, +Count_HeatWaveEvent,Number of Heat Waves,,, +Count_HeavyRainEvent,Number of Heavy Rains,,, +Count_HeavySnowEvent,Number of Heavy Snows,,, +Count_HighWindEvent,Number of High Wind Events,,, +Count_Household,Count of households,,, +Count_Household_AsianAndPacificIslandLanguagesSpokenAtHome,Number of households that speak Asian and Pacific Island languages at home,,, +Count_Household_FamilyHousehold,Number of family households,,, +Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family housholds below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_OwnerOccupied,Number of owner occupied family households,,, +Count_Household_FamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,Number of family households that own their home and are below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_RenterOccupied,Number of renter occupied family households,,, +Count_Household_FamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,Number of renter occupied family households that are below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_With0Worker,Number of family households with no workers,,, +Count_Household_FamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,Number of family households with no workers and are below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_With1Worker,Number of family households with 1 worker,,, +Count_Household_FamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,Number of family households with 1 worker and are below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_With2Worker,Number of family households with 2 workers,,, +Count_Household_FamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,Number of family households with 2 workers and are below poverty in the past 12 months,,, +Count_Household_FamilyHousehold_With3OrMoreWorker,Number of family households with 3 or more workers,,, +Count_Household_FamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,Number of family households with 3 or more workers and are below poverty in the past 12 months,,, +Count_Household_ForeignBorn_PlaceOfBirthAfrica,Number of Households foreigh Born from Africa,,, +Count_Household_ForeignBorn_PlaceOfBirthAsia,Number of Households foreigh Born from Asia,,, +Count_Household_ForeignBorn_PlaceOfBirthCaribbean,Number of Households foreigh Born from Caribbean,,, +Count_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Households foreigh Born from Central America (Except Mexico),,, +Count_Household_ForeignBorn_PlaceOfBirthEasternAsia,Number of Households foreigh Born from Eastern Asia,,, +Count_Household_ForeignBorn_PlaceOfBirthEurope,Number of Households foreign Born from Europe,,, +Count_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Households foreign Born from Latin America,,, +Count_Household_ForeignBorn_PlaceOfBirthMexico,Number of Households foreign Born from Mexico,,, +Count_Household_ForeignBorn_PlaceOfBirthNorthamerica,Number of Households foreign Born from North America,,, +Count_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Households foreign Born from Northern Western Europe,,, +Count_Household_ForeignBorn_PlaceOfBirthOceania,Number of Households foreign Born from Oceania,,, +Count_Household_ForeignBorn_PlaceOfBirthSouthamerica,Number of Households foreign Born from South America,,, +Count_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Households foreign Born from South Central Asia,,, +Count_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Households foreign Born from South Eastern Asia,,, +Count_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Households foreign Born from Southern Eastern Europe,,, +Count_Household_ForeignBorn_PlaceOfBirthWesternAsia,Number of Households foreign Born from Western Asia,,, +Count_Household_FullTimeYearRoundWorker_FamilyHousehold,Number of Households with full time workers,,, +Count_Household_HasComputer,Number of households with a computer,,, +Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold,Number of family households with householder age 65 years or older,,, +Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family households with householder 65 years or older living in poverty over the year,,, +Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold,Number of married-couple family households with householder age 65 or more years,,, +Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold,Number of single mother family households with householder age 65 or more years,,, +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold,Number of Family Households Where the Householder Holds a Bachelor's Degree or Higher,,, +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Married-Couple Family Households with a Householder Holding a Bachelor’s Degree or Higher,,, +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households With a Householder Holding a Bachelor's Degree or Higher,,, +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder Holding a Bachelor's Degree or Higher,,, +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Single Mother Family Households with a Householder Holding a Bachelor's Degree or Higher,,, +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold,Number of Family Households with a Householder who is a High School Graduate or Equivalent,,, +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Married-Couple Family Households with a Householder who is a High School Graduate or Equivalent,,, +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold,Number of Single Mother Family Households with a Householder who is a High School Graduate or Equivalent,,, +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder holding High School Graduate or Equivalency Degree,,, +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold,Number of Families with a Householder without a High School Diploma,,, +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with a Householder without a High School Diploma,,, +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold,Number of single-mother families with a householder with less than a high school education,,, +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold,Number of family households with a householder with some college or an associate's degree,,, +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold,Number of married couple households with a householder with some college or an associate's degree,,, +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder Holding Some College or Associates Degree,,, +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of Households with American Indian or Alaska Native Householder,,, +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold,Number of Family Households with American Indian or Alaska Native Householder,,, +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with American Indian or Alaska Native Householder,,, +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with American Indian or Alaska Native Householder,,, +Count_Household_HouseholderRaceAsianAlone,Number of Households with asian Householder,,, +Count_Household_HouseholderRaceAsianAlone_FamilyHousehold,Number of Family Households with asian Householder,,, +Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with asian Householder,,, +Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with asian Householder,,, +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Number of Households with Black or African American Householder,,, +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,Number of Family Households with Black or African American Householder,,, +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold,Number of Family Households with Black or African American Householder,,, +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with Black or African American Householder,,, +Count_Household_HouseholderRaceHispanicOrLatino,Number of Households with Hispanic or Latino Householder,,, +Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold,Number of Family Households with Hispanic or Latino Householder,,, +Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with Hispanic or Latino Householder,,, +Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold,Number of Single Mother Family households with Hispanic or Latino Householder,,, +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of Households with Native Hawaiian or Other Pacific Islander Householder,,, +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold,Number of Family Households with Native Hawaiian or Other Pacific Islander Householder,,, +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with Native Hawaiian or Other Pacific Islander Householder,,, +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with Native Hawaiian or Other Pacific Islander Householder,,, +Count_Household_HouseholderRaceTwoOrMoreRaces,Number of Households with a muti-races Householder,,, +Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold,Number of Family Households with a muti-races Householder,,, +Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold,Number of Married-Couple Households with a muti-races Householder,,, +Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a muti-races Householder,,, +Count_Household_HouseholderRaceWhiteAlone,Number of Households with a white Householder,,, +Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold,Number of family households with a white Householder,,, +Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with a white Householder,,, +Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a white Householder,,, +Count_Household_Houseless,Number of houseless households,,, +Count_Household_Houseless_Rural,Number of houseless households in rural areas,,, +Count_Household_Houseless_Urban,Number of houseless households in urban areas,,, +Count_Household_InternetWithoutSubscription,Number of households without internet subscription,,, +Count_Household_LimitedEnglishSpeakingHousehold,Number of Households with Limited English Proficiency,,, +Count_Household_MarriedCoupleFamilyHousehold,Number of married couple Households,,, +Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of married-couple families living in poverty over the last year,,, +Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied,"Number of below poverty-level, owner-occupied, married-couple family households",,, +Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,Number of owner occupied married couple family households below poverty in the past 12 months,,, +Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied,Number of renter occupied married couple family households,,, +Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,Number of renter occupied married couple family households below poverty in the past 12 months,,, +Count_Household_MarriedCoupleFamilyHousehold_SingleUnit,Number of single unit married couple family households,,, +Count_Household_MarriedCoupleFamilyHousehold_TwoOrMoreUnits,Number of two or more units married couple family households,,, +Count_Household_MarriedCoupleFamilyHousehold_With0Worker,Number of married couple family households with no worker,,, +Count_Household_MarriedCoupleFamilyHousehold_With1Worker,Number of married couple family households with 1 worker,,, +Count_Household_MarriedCoupleFamilyHousehold_With2Worker,Number of married couple family households with 2 worker,,, +Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker,Number of Married Couple Family Households with Three Or More Workers,,, +Count_Household_NoComputer,Number of Households Without Computer,,, +Count_Household_NoHealthInsurance,Number of Households Without Health Insurance,,, +Count_Household_NoInternetAccess,Number of Households Without Internet Access,,, +Count_Household_NonfamilyHousehold,Number of non-family households,,, +Count_Household_NonfamilyHousehold_SingleUnit,Number of Non-Family Households living in Single Unit,,, +Count_Household_NonfamilyHousehold_TwoOrMoreUnits,Number of Non-Family Households living in Two Or More Units,,, +Count_Household_Rural,Number of Households in Rural Areas,,, +Count_Household_ScheduledCaste,Number of Households Belonging to Scheduled Caste,,, +Count_Household_ScheduledCaste_Rural,Number of Households Belonging to Scheduled Caste in Rural Areas,,, +Count_Household_ScheduledCaste_Urban,Number of Households Belonging to Scheduled Caste in Urban Areas,,, +Count_Household_ScheduledTribe,Number of Households Belonging to Scheduled Tribe,,, +Count_Household_ScheduledTribe_Rural,Number of Households Belonging to Scheduled Tribe in Rural Areas,,, +Count_Household_ScheduledTribe_Urban,Number of Households Belonging to Scheduled Tribe in Urban Areas,,, +Count_Household_SingleFatherFamilyHousehold,Number of Single Father Family Households,,, +Count_Household_SingleFatherFamilyHousehold_SingleUnit,Number of Single Father Family Households living in Single Unit,,, +Count_Household_SingleFatherFamilyHousehold_TwoOrMoreUnits,Number of Single Father Family Households living in Two Or More Units,,, +Count_Household_SingleMotherFamilyHousehold,Number of Single Mother Family Households,,, +Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Single Mother Family Households Below Poverty Level in the Past 12 Months,,, +Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,Number of Single Mother Family Households living in Mobile Homes And All Other Types Of Units,,, +Count_Household_SingleMotherFamilyHousehold_OwnerOccupied,Number of Single Mother Family Households that are Owner Occupied,,, +Count_Household_SingleMotherFamilyHousehold_RenterOccupied,Number of Single Mother Family Households that are Renter Occupied,,, +Count_Household_SingleMotherFamilyHousehold_SingleUnit,Number of Single Mother Family Households living in Single Unit,,, +Count_Household_SingleMotherFamilyHousehold_TwoOrMoreUnits,Number of Single Mother Family Households living in Two Or More Units,,, +Count_Household_SingleMotherFamilyHousehold_With0Worker,Number of Single Mother Family Households with no Worker,,, +Count_Household_SingleMotherFamilyHousehold_With1Worker,Number of Single Mother Family Households with 1 Worker,,, +Count_Household_SingleMotherFamilyHousehold_With2Worker,Number of Single Mother Family Households with 2 Worker,,, +Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker,Number of Single Mother Family Households with 3 Or More Worker,,, +Count_Household_SpanishSpokenAtHome,Number of Households that speak Spanish at Home,,, +Count_Household_Urban,Number of Households living in Urban area,,, +Count_Household_With0AvailableVehicles,Number of Households with 0 Available Vehicles,,, +Count_Household_With1AvailableVehicles,Number of Households with 1 Available Vehicles,,, +Count_Household_With2AvailableVehicles,Number of Households with 2 Available Vehicles,,, +Count_Household_With3AvailableVehicles,Number of Households with 3 Available Vehicles,,, +Count_Household_With4OrMoreAvailableVehicles,Number of Households with 4 Or More Available Vehicles,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign Born Households from Africa with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of Foreign Born Households from Asia with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign Born Households from Caribbean with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign Born Households from Central America Except Mexico with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign Born Households from Eastern Asia with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of Foreign Born Households from Europe with Cash Assistance In The Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign-Born Households from latin america with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of Foreign-Born Households from Mexico with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign-Born Households from North america with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign-Born Households from Northern Western Europe with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of Foreign-Born Households from Oceania with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign-Born Households from South america with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign-Born Households from South Central Asia with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign-Born Households from South Eastern Asia with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign-Born Households from Southern Eastern Europe with Cash Assistance in the Past 12 Months,,, +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign-Born Households from Western Asia with Cash Assistance in the Past 12 Months,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign-Born Households from Africa with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAsia,Number of Foreign-Born Households from Asia with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign-Born Households from Caribbean with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign-Born Households from Central America Except Mexico with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign-Born Households from Eastern Asia with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEurope,Number of Foreign-Born Households from Europe with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign-Born Households from Latin America with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthMexico,Number of Foreign-Born Households from Mexico with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign-Born Households from North America with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign-Born Households from Northern Western Europe with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthOceania,Number of Foreign-Born Households from Oceania with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign-Born Households from South America with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign-Born Households from South Central Asia with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign-Born Households from South Eastern Asia with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign-Born Households from Southern Eastern Europe with Earnings,,, +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign-Born Households from Western Asia with Earnings,,, +Count_Household_WithFoodStampsInThePast12Months,Number of households that have received food stamps (SNAP) in the last 12 months,,, +Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,Households that have received food stamps (SNAP) in the last year and live above poverty line,,, +Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of households receiving food stamps last year who identify as American Indian or Alaska native only,,, +Count_Household_WithFoodStampsInThePast12Months_AsianAlone,Number of households receiving food stamps last year who identify as Asian,,, +Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,Households with food stamps last year that are below poverty line,,, +Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of households receiving food stamps last year who identify as Black or African American,,, +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,Number of family households receiving food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,Number of family Households receiving food stamps last year and have no workers,,, +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,Number of family Households receiving food stamps last year and having one worker,,, +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,Number of family Households receiving food stamps last year and having 2 or more workers,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign Born Households from Africa with Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of Foreign Born Households from Asia with Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign Born Households from Caribbean with Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign Born Households from Central America except Mexico with Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign Born Household from Eastern Asia that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of Foreign Born Household from Europe that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign Born Household from Latin America that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of Foreign Born Household from Mexico that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign Born Household from North America that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign Born Household from Northern Western Europe that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of Foreign Born Household from Oceania that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign Born Household from South America that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign Born Household from South Central Asia that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign Born Household from South Eastern Asia that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign Born Household from Southern Eastern Europe that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign Born Household from Western Asia that received Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,Number of Hispanic Or Latino households having Food Stamps in the Past 12 Months,,, +Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couple family households that received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of households that have received food stamps (SNAP) in the last 12 months,,, +Count_Household_WithFoodStampsInThePast12Months_NoDisability,Number of households that are not disabled and received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,Number of nonfamily households that have received food stamps (SNAP) in the last 12 months,,, +Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,Number of single father family households that received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,Number of single mother family households that received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,Number of households that are two or more races and received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,Number of households that are white and received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,Number of households that have children under 18 and received food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_WithDisability,Number of households collecting Food Stamps (SNAP) with someone in the household having a disability in the past 12 months,,, +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households that don't have children and have received food stamps in the past 12 months,,, +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,Number of married couple family households Without Children Under 18 and receiving Food Stamps over the last year,,, +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,Number of nonfamily households Without Children Under 18 and receiving Food Stamps over the last year,,, +Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,Count of households without people over 60 receiving food stamps last year,,, +Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,Count of households with people over 60 receiving food stamps last year,,, +Count_Household_WithInternetSubscription,Number of households with an internet subscription,,, +Count_Household_WithoutFoodStampsInThePast12Months,Number of households that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,Number of Households Above Poverty Level and Have Not Received Food Stamps in the Last Year,,, +Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native households not receiving Food Stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,Number of Asian households that were not receiving Food Stamps over the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,Number of households that have been below the poverty line in the last year but have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of black or African American Households that don't Received Food Stamps in the Last Year,,, +Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,Number of family households that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,Number of Hispanic Households Not Receiving Food Stamps Over the Last Year,,, +Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married-couple households not receiving Food Stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander households not receiving Food Stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,Number of Households Not Receiving Food Stamps Over the Last Year Where No Member Has a Disability,,, +Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,Number of non family households that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,Number of single father family households that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,Number of single mother family households that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces,Number of households that are multi-race and received food stamps last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,Number of white households not receiving Food Stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,Number of households with children who did not receive Food Stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WithDisability,Number of households with householders with disability that have not received food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households without children that did not receive food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,Number of households without householders over 60 years old that did not receive food stamps in the last year,,, +Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60,Number of households with householders over 60 years old that did not receive food stamps in the last year,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of households that have received retirement income in the last year and that have householders born in Africa,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of households that have received retirement income in the last year and that have householders born in Asia,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of households that have received retirement income in the last year and that have householders born in the Caribbean,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of households that have received retirement income in the last year and that have householders born in Central America not including Mexico,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of households that have received retirement income in the last year and that have householders born in Eastern Asia,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of households that have received retirement income in the last year and that have householders born in Europe,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of households that have received retirement income in the last year and that have householders born in Latin America,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of households that have received retirement income in the last year and that have householders born in Mexico,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of households that have received retirement income in the last year and that have householders born in North America,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of households that have received retirement income in the last year and that have householders born in Northern Western Europe,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of households that have received retirement income in the last year and that have householders born in Oceania,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of households that have received retirement income in the last year and that have householders born in South America,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of households that have received retirement income in the last year and that have householders born in South Central Asia,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of households that have received retirement income in the last year and that have householders born in South Eastern Asia,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of households that have received retirement income in the last year and that have householders born in Southern Eastern Europe,,, +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of households that have received retirement income in the last year and that have householders born in Western Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,Number of family households that have received Social Security income in the last year,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family households that have received Social Security income in the last year and have been under the poverty level in the last year,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of households that have received Social Security income in the last year and that have householders born in Africa,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of households that have received Social Security income in the last year and that have householders born in Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of households that have received Social Security income in the last year and that have householders born in the Caribbean,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of households that have received Social Security income in the last year and that have householders born in Central America not including Mexico,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of households that have received Social Security income in the last year and that have householders born in Eastern Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of households that have received Social Security income in the last year and that have householders born in Europe,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of households that have received Social Security income in the last year and that have householders born in Latin America,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of households that have received Social Security income in the last year and that have householders born in Mexico,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of households that have received Social Security income in the last year and that have householders born in North America,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of households that have received Social Security income in the last year and that have householders born in Northern Western Europe,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of households that have received Social Security income in the last year and that have householders born in Oceania,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of households that have received Social Security income in the last year and that have householders born in South America,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of households that have received Social Security income in the last year and that have householders born in South Central Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of households that have received Social Security income in the last year and that have householders born in South Eastern Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of households that have received Social Security income in the last year and that have householders born in Southern Eastern Europe,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of households that have received Social Security income in the last year and that have householders born in Western Asia,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couple households that have received social security income in the last year,,, +Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,Number of single mother households that have received social security income in the last year,,, +Count_HousingUnit,Number of housing units,,, +Count_HousingUnit_1940To1949DateBuilt,Number of housing units built between 1940 and 1949,,, +Count_HousingUnit_1950To1959DateBuilt,Number of housing units built between 1950 and 1959,,, +Count_HousingUnit_1960To1969DateBuilt,Number of housing units built between 1960 and 1969,,, +Count_HousingUnit_1970To1979DateBuilt,Number of housing units built between 1970 and 1979,,, +Count_HousingUnit_1980To1989DateBuilt,Number of housing units built between 1980 and 1989,,, +Count_HousingUnit_1990To1999DateBuilt,Number of housing units built between 1990 and 1999,,, +Count_HousingUnit_2000To2004DateBuilt,Number of housing units built between 2000 and 2004,,, +Count_HousingUnit_2000To2009DateBuilt,Number of housing units built between 2000 and 2009,,, +Count_HousingUnit_2005OrLaterDateBuilt,Number of housing units built in 2005 or later,,, +Count_HousingUnit_2010OrLaterDateBuilt,Number of housing units built in 2010 or later,,, +Count_HousingUnit_2010To2013DateBuilt,Number of housing units built between 2010 and 2013,,, +Count_HousingUnit_2014OrLaterDateBuilt,Number of housing units built after 2014,,, +Count_HousingUnit_Before1939DateBuilt,Number of housing units built before 1939,,, +Count_HousingUnit_CompleteKitchenFacilities_OccupiedHousingUnit,Number of housing units with complete kitchen facilities,,, +Count_HousingUnit_CompletePlumbingFacilities_OccupiedHousingUnit,Number of housing units with complete plumbing facilities,,, +Count_HousingUnit_HomeValue1000000OrMoreUSDollar,"Number of houses valued at $1,000,000 or more",,, +Count_HousingUnit_HomeValue1000000To1499999USDollar,"Number of houses valued from $1,000,000 to $1,499,999",,, +Count_HousingUnit_HomeValue100000To124999USDollar,"Number of houses valued from $100,000 to $124,999",,, +Count_HousingUnit_HomeValue100000To199999USDollar,"Number of houses valued from $100,000 to $199,999",,, +Count_HousingUnit_HomeValue10000To14999USDollar,"Number of houses valued from $10,000 to $14,999",,, +Count_HousingUnit_HomeValue125000To149999USDollar,"Number of houses valued from $125,000 to $149,999",,, +Count_HousingUnit_HomeValue1500000To1999999USDollar,"Number of houses valued from $1,500,000 to $1,999,999",,, +Count_HousingUnit_HomeValue150000To174999USDollar,"Number of houses valued from $150,000 to $174,999",,, +Count_HousingUnit_HomeValue15000To19999USDollar,"Number of houses valued from $15,000 to $19,999",,, +Count_HousingUnit_HomeValue175000To199999USDollar,"Number of houses valued from $175,000 to $199,999",,, +Count_HousingUnit_HomeValue2000000OrMoreUSDollar,"Number of houses valued from $2,000,000 onwards",,, +Count_HousingUnit_HomeValue200000To249999USDollar,"Number of houses valued from $200,000 to $249,999",,, +Count_HousingUnit_HomeValue200000To299999USDollar,"Number of houses valued from $200,000 to $299,999",,, +Count_HousingUnit_HomeValue20000To24999USDollar,"Number of houses valued from $20,000 to $24,999",,, +Count_HousingUnit_HomeValue250000To299999USDollar,"Number of houses valued from $250,000 to $299,999",,, +Count_HousingUnit_HomeValue25000To29999USDollar,"Number of houses valued from $25,000 to $29,999",,, +Count_HousingUnit_HomeValue300000To399999USDollar,"Number of houses valued from $300,000 to $399,999",,, +Count_HousingUnit_HomeValue300000To499999USDollar,"Number of houses valued from $300,000 to $499,999",,, +Count_HousingUnit_HomeValue30000To34999USDollar,"Number of houses valued from $30,000 to $34,999",,, +Count_HousingUnit_HomeValue35000To39999USDollar,"Number of houses valued from $35,000 to $39,999",,, +Count_HousingUnit_HomeValue400000To499999USDollar,"Number of houses valued from $400,000 to $499,999",,, +Count_HousingUnit_HomeValue40000To49999USDollar,"Number of houses valued from $40,000 to $49,999",,, +Count_HousingUnit_HomeValue500000To749999USDollar,"Number of houses valued from $500,000 to $749,999",,, +Count_HousingUnit_HomeValue500000To999999USDollar,"Number of houses valued from $500,000 to $999,999",,, +Count_HousingUnit_HomeValue50000To59999USDollar,"Number of houses valued from $50,000 to $59,999",,, +Count_HousingUnit_HomeValue50000To99999USDollar,"Number of houses valued from $50,000 to $99,999",,, +Count_HousingUnit_HomeValue60000To69999USDollar,"Number of houses valued from $60,000 to $69,999",,, +Count_HousingUnit_HomeValue70000To79999USDollar,"Number of houses valued from $70,000 to $79,999",,, +Count_HousingUnit_HomeValue750000To999999USDollar,"Number of houses valued from $750,000 to $999,999",,, +Count_HousingUnit_HomeValue80000To89999USDollar,"Number of houses valued from $80,000 to $89,999",,, +Count_HousingUnit_HomeValue90000To99999USDollar,"Number of houses valued from $90,000 to $99,999",,, +Count_HousingUnit_HomeValueUpto10000USDollar,"Number of houses valued at $1,000,000 or less",,, +Count_HousingUnit_HomeValueUpto49999USDollar,"Number of houses valued at $499,999 or less",,, +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,Number of Occupied Housing Units with Householders with Bachelors Degree Or Higher,,, +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OwnerOccupied,Number of Owner Occupied Housing Units with Householders with Bachelors Degree Or Higher,,, +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied,Number of Renter Occupied Housing Units with Householders with Bachelors Degree Or Higher,,, +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OccupiedHousingUnit,Number of Occupied Housing Units with Householders with High School or equivalent degree,,, +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OwnerOccupied,Number of Owner Occupied Housing Units with Householders with High School or equivalent degree,,, +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding a High School Diploma or Equivalent,,, +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OccupiedHousingUnit,Number of Occupied Housing Units with Householders Holding Less Than a High School Diploma,,, +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Holding Less Than a High School Diploma,,, +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding Less Than a High School Diploma,,, +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OccupiedHousingUnit,Number of Occupied Housing Units with Householders Holding Some College or an Associates Degree,,, +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Holding Some College or an Associates Degree,,, +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding Some College or an Associates Degree,,, +Count_HousingUnit_HouseholderRaceAmericanIndianAndAlaskaNativeAlone,Number of Occupied Housing Units with Householders Identifying as American Indian and Alaska Native,,, +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of Occupied Housing Units with Householders Identifying as American Indian or Alaska Native,,, +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as American Indian or Alaska Native,,, +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as American Indian or Alaska Native,,, +Count_HousingUnit_HouseholderRaceAsianAlone,Number of Occupied Housing Units with Householders Identifying as asian,,, +Count_HousingUnit_HouseholderRaceAsianAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as asian,,, +Count_HousingUnit_HouseholderRaceAsianAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as asian,,, +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,Number of Occupied Housing Units with Householders Identifying as Black or African American,,, +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Black or African American,,, +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Black or African American,,, +Count_HousingUnit_HouseholderRaceHispanicOrLatino,Number of Occupied Housing Units with Householders Identifying as Hispanic or Latino,,, +Count_HousingUnit_HouseholderRaceHispanicOrLatino_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Hispanic or Latino,,, +Count_HousingUnit_HouseholderRaceHispanicOrLatino_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Hispanic or Latino,,, +Count_HousingUnit_HouseholderRaceNativeHawaiianAndOtherPacificIslanderAlone,Number of Occupied Housing Units with Householders Identifying as Native Hawaiian and Other Pacific Islander,,, +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander,,, +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander,,, +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander,,, +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,Number of Occupied Housing Units with Householders Identifying as multi Races,,, +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as multi Races,,, +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as multi Races,,, +Count_HousingUnit_HouseholderRaceWhiteAlone,Number of Occupied Housing Units with Householders Identifying as white,,, +Count_HousingUnit_HouseholderRaceWhiteAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Who Are white,,, +Count_HousingUnit_HouseholderRaceWhiteAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Who Are white,,, +Count_HousingUnit_IncompleteKitchenFacilities_OccupiedHousingUnit,Number of Occupied Housing Units with Incomplete Kitchen Facilities,,, +Count_HousingUnit_IncompletePlumbingFacilities_OccupiedHousingUnit,Number of Occupied Housing Units with Incomplete Plumbing Facilities,,, +Count_HousingUnit_NoCashRent,Number of Renter-Occupied Housing Units with No Cash Rent,,, +Count_HousingUnit_OccupiedHousingUnit,Number of Occupied Housing Units,,, +Count_HousingUnit_OwnerOccupied,Number of Owner-Occupied Housing Units,,, +Count_HousingUnit_RenterOccupied,Number of Renter-Occupied Housing Units,,, +Count_HousingUnit_VacantHousingUnit,Number of Vacant Housing Units,,, +Count_HousingUnit_WithCashRent,Number of rental Housing Units with Cash Rent,,, +Count_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied,Number of Owner-Occupied Housing Units with a Mortgage,,, +Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,Number of Owner Occupied Housing Units Without a Mortgage,,, +Count_HousingUnit_WithTotal1Rooms,Number of housing units with 1 room,,, +Count_HousingUnit_WithTotal2Rooms,Number of housing units with 2 rooms,,, +Count_HousingUnit_WithTotal3Rooms,Number of housing units with 3 rooms,,, +Count_HousingUnit_WithTotal4Rooms,Number of housing units with 4 rooms,,, +Count_HousingUnit_WithTotal5Rooms,Number of housing units with 5 rooms,,, +Count_HousingUnit_WithTotal6Rooms,Number of housing units with 6 rooms,,, +Count_HousingUnit_WithTotal7Rooms,Number of housing units with 7 rooms,,, +Count_HousingUnit_WithTotal8Rooms,Number of housing units with 8 rooms,,, +Count_HousingUnit_WithTotal9OrMoreRooms,Number of housing units with 9 or more rooms,,, +Count_IceStormEvent,Number of Ice Storms,,, +Count_LightningEvent,Number of Lightning Events,,, +Count_MarineHailEvent,Number of Marine Hail Events,,, +Count_MarineHighWindEvent,Number of Marine High Wind Events,,, +Count_MarineStrongWindEvent,Number of Marine Strong Wind Events,,, +Count_MarineThunderstormWindEvent,Number of Marine Thunderstorm Wind Events,,, +Count_MarineTropicalStormEvent,Number of Marine Tropical Storms,,, +Count_MedicalConditionIncident_ConditionAIDS,Number of AIDS Cases,,, +Count_MedicalConditionIncident_ConditionBotulism,Number of Botulism Cases,,, +Count_MedicalConditionIncident_ConditionBrucellosis,Number of Brucellosis Cases,,, +Count_MedicalConditionIncident_ConditionCampylobacteriosis,Number of Campylobacteriosis Cases,,, +Count_MedicalConditionIncident_ConditionChickenpox,Number of Chickenpox Cases,,, +Count_MedicalConditionIncident_ConditionChikungunya,Number of Chikungunya Cases,,, +Count_MedicalConditionIncident_ConditionChlamydia,Number of Chlamydia Cases,,, +Count_MedicalConditionIncident_ConditionCongenitalSyphilis,Number of Congenital Syphilis Cases,,, +Count_MedicalConditionIncident_ConditionCryptosporidiosis,Number of Cryptosporidiosis Cases,,, +Count_MedicalConditionIncident_ConditionCryptosporidiosis_ConfirmedCase,Number of Confirmed Cryptosporidiosis Cases,,, +Count_MedicalConditionIncident_ConditionCryptosporidiosis_ProbableCase,Number of Probable Cryptosporidiosis Cases,,, +Count_MedicalConditionIncident_ConditionCyclosporiasis,Number of Cyclosporiasis Cases,,, +Count_MedicalConditionIncident_ConditionDengueDisease,Number of Dengue Disease Cases,,, +Count_MedicalConditionIncident_ConditionGiardiasis,Number of Giardiasis Cases,,, +Count_MedicalConditionIncident_ConditionGonorrhea,Number of Gonorrhea Cases,,, +Count_MedicalConditionIncident_ConditionHaemophilusInfluenzae_InvasiveDisease,Number of Haemophilus Influenzae Invasive Disease Cases,,, +Count_MedicalConditionIncident_ConditionHemolyticUremicSyndrome_PostDiarrheal,Number of Post Diarrheal Hemolytic Uremic Syndrome Cases,,, +Count_MedicalConditionIncident_ConditionHepatitisA_AcuteCondition,Number of Acute Hepatitis A Cases,,, +Count_MedicalConditionIncident_ConditionHepatitisB_AcuteCondition,Number of Acute Hepatitis B Cases,,, +Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ConfirmedCase,Number of Confirmed Acute Hepatitis C Cases,,, +Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ProbableCase,Number of Probable Acute Hepatitis C Cases,,, +Count_MedicalConditionIncident_ConditionHIVAIDS,Number of HIV/AIDS Cases,,, +Count_MedicalConditionIncident_ConditionHumanGranulocyticAnaplasmosis,Number of Human Granulocytic Anaplasmosis Cases,,, +Count_MedicalConditionIncident_ConditionHumanMonocyticEhrlichiosis,Number of Human Monocytic Ehrlichiosis Cases,,, +Count_MedicalConditionIncident_ConditionInfantBotulism,Number of Infant Botulism Cases,,, +Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,Number of Influenza Deaths in Children,,, +Count_MedicalConditionIncident_ConditionLegionnairesDisease,Number of Legionnaires Disease Cases,,, +Count_MedicalConditionIncident_ConditionListeriosis,Number of Listeriosis Cases,,, +Count_MedicalConditionIncident_ConditionListeriosis_ConfirmedCase,Number of Confirmed Listeriosis Cases,,, +Count_MedicalConditionIncident_ConditionLymeDisease,Number of Lyme Disease Cases,,, +Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,Number of Confirmed Lyme Disease Cases,,, +Count_MedicalConditionIncident_ConditionLymeDisease_ProbableCase,Number of Probable Cases of Lyme Disease,,, +Count_MedicalConditionIncident_ConditionMalaria,Number of Malaria Cases,,, +Count_MedicalConditionIncident_ConditionMeasles,Number of Measles Cases,,, +Count_MedicalConditionIncident_ConditionMeningococcalMeningitis,Number of Meningococcal Meningitis Cases,,, +Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease,Number of Invasive Meningococcal Meningitis Cases,,, +Count_MedicalConditionIncident_ConditionMumps,Number of Mumps Cases,,, +Count_MedicalConditionIncident_ConditionPertussis,Number of Pertussis Cases,,, +Count_MedicalConditionIncident_ConditionQFever,Number of QFever Cases,,, +Count_MedicalConditionIncident_ConditionQFever_AcuteCondition,Number of Acute QFever Cases,,, +Count_MedicalConditionIncident_ConditionRabiesinhuman,Number of Rabiesinhuman Cases,,, +Count_MedicalConditionIncident_ConditionSalmonellosisExceptTyphiAndParatyphi,Number of Salmonellosis Except Typhi And Paratyphi Cases,,, +Count_MedicalConditionIncident_ConditionShigaToxinEColi,Number of ShigaToxinEColi Cases,,, +Count_MedicalConditionIncident_ConditionShigellosis,Number of Shigellosis Cases,,, +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis,Number of Spotted Fever Rickettsiosis Cases,,, +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis_ProbableCase,Number of Probable Cases of Spotted Fever Rickettsiosis,,, +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosisIncludingRockyMountainSpottedFever,Number of Spotted Fever Rickettsiosis Including Rocky Mountain Spotted Fever Cases,,, +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_ConfirmedCase,Number of Confirmed Cases of Streptococcus Pneumonia,,, +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease,Number of Invasive Streptococcus Pneumonia Cases,,, +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,Number of Confirmed Cases of Invasive Streptococcus Pneumonia,,, +Count_MedicalConditionIncident_ConditionSyphilis,Number of Syphilis Cases,,, +Count_MedicalConditionIncident_ConditionSyphilisPrimaryAndSecondary,Number of Syphilis Primary And Secondary Cases,,, +Count_MedicalConditionIncident_ConditionTetanus,Number of Tetanus Cases,,, +Count_MedicalConditionIncident_ConditionTuberculosis,Number of Tuberculosis Cases,,, +Count_MedicalConditionIncident_ConditionTularemia,Number of Tularemia Cases,,, +Count_MedicalConditionIncident_ConditionTyphoidFever,Number of Typhoid Fever Cases,,, +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera,Number of Vibriosis Excluding Cholera Cases,,, +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ConfirmedCase,Number of Confirmed Cases of Vibriosis Excluding Cholera,,, +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ProbableCase,Number of Probable Cases of Vibriosis Excluding Cholera,,, +Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NeuroinvasiveDisease,Number of Neuroinvasive West Nile Virus Disease Cases,,, +Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NonNeuroinvasiveDisease,Number of NonNeuroinvasive West Nile Virus Disease Cases,,, +Count_MedicalConditionIncident_ConditionZikaVirusDisease_NonCongenitalDisease,Number of NonCongenital Zika Virus Disease Cases,,, +Count_MedicalConditionIncident_ConditionZikaVirusInfection_NonCongenitalDisease,Number of NonCongenital Zika Virus Infection Cases,,, +Count_MedicalConditionIncident_COVID_19_PatientInICU,Number of COVID-19 Patients in the Intensive Care Unit,,, +Count_MedicalConditionIncident_PatientDeceased_AnimalContactTransmission,Number of Deaths from Animal Contact Transmission,,, +Count_MedicalConditionIncident_PatientDeceased_FoodborneTransmission,Number of Deaths from Foodborne Transmission,,, +Count_MedicalConditionIncident_PatientDeceased_PersonToPersonTransmission,Number of Deaths from Person To Person Transmission,,, +Count_MedicalConditionIncident_PatientDeceased_WaterborneTransmission,Number of Deaths from Waterborne Transmission,,, +Count_MortalityEvent_Assault(Homicide),Number of Deaths from Assault (Homicide),,, +Count_MortalityEvent_Assault(Homicide)_Female,Number of female Deaths from Assault (Homicide),,, +Count_MortalityEvent_Diabetes,Number of Deaths from Diabetes,,, +Count_MortalityEvent_Diabetes_Female,Number of female Deaths from Diabetes,,, +Count_MortalityEvent_HeartDiseaseExcludingHypertension,Number of Deaths from Heart Disease Excluding Hypertension,,, +Count_MortalityEvent_IntentionalSelf-Harm(Suicide),Number of Intentional Self-Harm (Suicide) Deaths,,, +Count_MortalityEvent_IntentionalSelf-Harm(Suicide)_Female,Number of Intentional Self-Harm (Suicide) Deaths in Females,,, +Count_MortalityEvent_Suicide,Number of Suicide Deaths,,, +Count_Person,total population,,, +Count_Person_0To4Years_Female,Number of girls under 4 years old,,, +Count_Person_0To4Years_Male,Number of boys under 4 years old,,, +Count_Person_10OrMoreYears_Literate_AsAFractionOf_Count_Person_10OrMoreYears,Literacy Rate Among Individuals Aged 10 Years and Older,,, +Count_Person_10To14Years_Literate_AsAFractionOf_Count_Person_10To14Years,Literacy Rate Among Individuals Aged 10 to 14 years,,, +Count_Person_15OrMoreYears_Divorced_AmericanIndianAndAlaskaNativeAlone,number of Divorced American Indian And Alaska Native people,,, +Count_Person_15OrMoreYears_Divorced_AsianAlone,number of Divorced Asian people,,, +Count_Person_15OrMoreYears_Divorced_BlackOrAfricanAmericanAlone,number of Divorced Black or African American people,,, +Count_Person_15OrMoreYears_Divorced_ForeignBorn,number of divorced Foreign Born people,,, +Count_Person_15OrMoreYears_Divorced_HispanicOrLatino,number of divorced Hispanic or Latino people,,, +Count_Person_15OrMoreYears_Divorced_Native,number of Divorced Native people,,, +Count_Person_15OrMoreYears_Divorced_NativeHawaiianAndOtherPacificIslanderAlone,number of Divorced Native Hawaiian And Other Pacific Islander people,,, +Count_Person_15OrMoreYears_Divorced_OneRace,number of Divorced people with single Race,,, +Count_Person_15OrMoreYears_Divorced_TwoOrMoreRaces,number of divorced people with multi-races,,, +Count_Person_15OrMoreYears_Divorced_WhiteAlone,number of Divorced White people,,, +Count_Person_15OrMoreYears_Female_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Female,prevalence of Female Smokers Aged 15 and Older,,, +Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,Female labor force participation rate,,, +Count_Person_15OrMoreYears_Male_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Male,prevalence of male Smokers Aged 15 and Older,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_AmericanIndianAndAlaskaNativeAlone,Number of married American Indian or Alaska Native people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_AsianAlone,Number of married asian people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_BlackOrAfricanAmericanAlone,Number of married Black or African American people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_ForeignBorn,Number of married foreign born people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_HispanicOrLatino,Number of married Hispanic or Latino people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_Native,Number of married native people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_NativeHawaiianAndOtherPacificIslanderAlone,Number of married Native Hawaiian and Other Pacific Islander people,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_OneRace,Number of married people of one race,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_TwoOrMoreRaces,Number of married people of two or more races,,, +Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAlone,Number of married white people,,, +Count_Person_15OrMoreYears_NeverMarried_AmericanIndianAndAlaskaNativeAlone,Number of never married American Indian or Alaska Native people,,, +Count_Person_15OrMoreYears_NeverMarried_AsianAlone,Number of never married asian people,,, +Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,Number of never married Black or African American people,,, +Count_Person_15OrMoreYears_NeverMarried_ForeignBorn,Number of never married foreign born people,,, +Count_Person_15OrMoreYears_NeverMarried_HispanicOrLatino,Number of never married Hispanic or Latino people,,, +Count_Person_15OrMoreYears_NeverMarried_Native,Number of never married native people,,, +Count_Person_15OrMoreYears_NeverMarried_NativeHawaiianAndOtherPacificIslanderAlone,Number of never married Native Hawaiian and Other Pacific Islander people,,, +Count_Person_15OrMoreYears_NeverMarried_OneRace,Number of never married single-race people,,, +Count_Person_15OrMoreYears_NeverMarried_TwoOrMoreRaces,Number of married people of multi-races,,, +Count_Person_15OrMoreYears_NeverMarried_WhiteAlone,Number of never married white people,,, +Count_Person_15OrMoreYears_NeverMarried_WhiteAloneNotHispanicOrLatino,Number of never married Black or African American people,,, +Count_Person_15OrMoreYears_NoIncome,number of working age people with no income,,, +Count_Person_15OrMoreYears_Separated_AmericanIndianAndAlaskaNativeAlone,Number of separated American Indian or Alaska Native people,,, +Count_Person_15OrMoreYears_Separated_AsianAlone,Number of separated asian people,,, +Count_Person_15OrMoreYears_Separated_BlackOrAfricanAmericanAlone,Number of separated Black or African American people,,, +Count_Person_15OrMoreYears_Separated_ForeignBorn,Number of separated Foreign Born people,,, +Count_Person_15OrMoreYears_Separated_HispanicOrLatino,Number of separated Hispanic or Latino people,,, +Count_Person_15OrMoreYears_Separated_Native,Number of separated Native people,,, +Count_Person_15OrMoreYears_Separated_NativeHawaiianAndOtherPacificIslanderAlone,Number of separated Native Hawaiian and Other Pacific Islander people,,, +Count_Person_15OrMoreYears_Separated_OneRace,Number of separated One Race people,,, +Count_Person_15OrMoreYears_Separated_TwoOrMoreRaces,Number of separated Two Or More Races people,,, +Count_Person_15OrMoreYears_Separated_WhiteAlone,Number of separated white people,,, +Count_Person_15OrMoreYears_Smoking_AsFractionOf_Count_Person_15OrMoreYears,prevalence of Smokers Aged 15 and Older,,, +Count_Person_15OrMoreYears_Widowed_AmericanIndianAndAlaskaNativeAlone,Number of widowed American Indian or Alaska Native people,,, +Count_Person_15OrMoreYears_Widowed_AsianAlone,Number of widowed asian people,,, +Count_Person_15OrMoreYears_Widowed_BlackOrAfricanAmericanAlone,Number of widowed Black or African American people,,, +Count_Person_15OrMoreYears_Widowed_ForeignBorn,Number of widowed foreign born people,,, +Count_Person_15OrMoreYears_Widowed_HispanicOrLatino,Number of widowed Hispanic or Latino people,,, +Count_Person_15OrMoreYears_Widowed_Native,Number of widowed native born people,,, +Count_Person_15OrMoreYears_Widowed_NativeHawaiianAndOtherPacificIslanderAlone,Number of widowed Native Hawaiian and Other Pacific Islander people,,, +Count_Person_15OrMoreYears_Widowed_OneRace,Number of widowed one race people,,, +Count_Person_15OrMoreYears_Widowed_TwoOrMoreRaces,Number of widowed multi race people,,, +Count_Person_15OrMoreYears_Widowed_WhiteAlone,Number of widowed white people,,, +Count_Person_15OrMoreYears_WithIncome,Number of people with Income,,, +Count_Person_15To19Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To19Years_Female,Percentage of Females Aged 15-19 Who Gave Birth in the Past 12 Months,,, +Count_Person_15To19Years_Literate_AsAFractionOf_Count_Person_15To19Years,Percentage of Persons Aged 15-19 who are Literate,,, +Count_Person_15To24Years_Illiterate_AsAFractionOf_Count_Person_15To24Years,Percentage of Persons Aged 15-24 who are Illiterate,,, +Count_Person_15To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To50Years_Female,Percentage of Females Aged 15-50 Who Gave Birth in the Past 12 Months,,, +Count_Person_15To64Years_Female_InLaborForce_AsFractionOf_Count_Person_15To64Years_Female,Female labor force participation rate,,, +Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,Labor force participation rate,,, +Count_Person_15To64Years_Male_InLaborForce_AsFractionOf_Count_Person_15To64Years_Male,Male labor force participation rate,,, +Count_Person_16OrMoreYears_Female_WithEarnings,Number of Females with Earnings,,, +Count_Person_16OrMoreYears_Male_WithEarnings,Number of Males with Earnings,,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf15000To24999USDollar_WithEarnings,"number of people Earning Between $15,000 and $25000 Without Health Insurance",,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf25000To34999USDollar_WithEarnings,"number of people Earning Between $25,000 and $35000 Without Health Insurance",,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf35000To49999USDollar_WithEarnings,"number of people Earning Between $35,000 and $50000 Without Health Insurance",,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf4999OrLessUSDollar_WithEarnings,number of people Earning less than $5000 and Without Health Insurance,,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf50000To74999USDollar_WithEarnings,"number of people Earning Between $50,000 and $75000 Without Health Insurance",,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf5000To14999USDollar_WithEarnings,"number of people Earning $5,000 to $15000 Without Health Insurance",,, +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf75000OrMoreUSDollar_WithEarnings,"number of people Earning $75,000 or more Without Health Insurance",,, +Count_Person_16OrMoreYears_WithEarnings,Number of people with earnings,,, +Count_Person_16To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_16To50Years_Female,Percentage of females aged 16-50 who gave birth in the past 12 months,,, +Count_Person_18OrLessYears_Female_ResidesInCollegeOrUniversityStudentHousing,Number of females aged 18 or less who reside in college or university student housing,,, +Count_Person_18OrLessYears_Male_ResidesInCollegeOrUniversityStudentHousing,Number of males aged 18 or less who reside in college or university student housing,,, +Count_Person_18OrMoreYears_Civilian,Number of civilians aged 18 or more,,, +Count_Person_18OrMoreYears_Civilian_ResidesInAdultCorrectionalFacilities,Number of civilians aged 18 or more who reside in adult correctional facilities,,, +Count_Person_18OrMoreYears_Civilian_ResidesInCollegeOrUniversityStudentHousing,Number of civilians aged 18 or more who reside in college or university student housing,,, +Count_Person_18OrMoreYears_Civilian_ResidesInGroupQuarters,Number of civilians aged 18 or more who reside in group quarters,,, +Count_Person_18OrMoreYears_Civilian_ResidesInInstitutionalizedGroupQuarters,Number of civilians aged 18 or more who reside in institutionalized group quarters,,, +Count_Person_18OrMoreYears_Civilian_ResidesInNoninstitutionalizedGroupQuarters,Number of civilians aged 18 or more who reside in noninstitutionalized group quarters,,, +Count_Person_18OrMoreYears_Civilian_ResidesInNursingFacilities,Number of Civilian Individuals Aged 18 or More Resides In Nursing Facilities,,, +Count_Person_1OrMoreYears_DifferentHouse1YearAgo,Number of people older than 1 and moved home in the last year,,, +Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit,Number of people older than 1 and live in Renter Occupied Housing Units,,, +Count_Person_1OrMoreYears_ResidesInHousingUnit,Number of people older than 1 and reside in a Housing Unit,,, +Count_Person_25OrMoreYears_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people with a Bachelor's or higher Degree,,, +Count_Person_25OrMoreYears_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people with a Doctorate Degree,,, +Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Female,Number of Females with Educational Attainment of 10th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Male,Number of Males with Educational Attainment of 10th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Female,Number of Females with Educational Attainment of 11th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Male,Number of Males with Educational Attainment of 11th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Female,Number of Females with Educational Attainment of 12th Grade without Diploma,,, +Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Male,Number of Males with Educational Attainment of 12th Grade without Diploma,,, +Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Female,Number of Females with Educational Attainment of 9th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Male,Number of Males with Educational Attainment of 9th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Female,Number of Females with Educational Attainment of Associate's Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Male,Number of Males with Educational Attainment of Associate's Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,Number of females have their bachelors degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,Number of males have their bachelors degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,Number of Females with a Bachelors or Higher Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,Number of Males with a Bachelors Degree or Higher,,, +Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,Number of Females with a Doctorate Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,Number of Males with a Doctorate Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Female,Number of Females with a Masters Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Male,Number of Males with a Masters Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Female,Number of Females with No Schooling Completed,,, +Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Male,Number of Males with No Schooling Completed,,, +Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Female,Number of Females with Educational Attainment from Nursery to 4th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Male,Number of Males with Educational Attainment from Nursery to 4th Grade,,, +Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Female,Number of Females with a Professional School Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Male,Number of Males with a Professional School Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Female,Number of Females with Some College Education for 1 or More Years with No Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Male,Number of Males with Some College Education for 1 or More Years with No Degree,,, +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Female,Number of Females with Some College Education for Less than 1 Year,,, +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Male,Number of Males with Some College Education for Less than 1 Year,,, +Count_Person_25OrMoreYears_Female_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Bachelors Degree or Higher Educational Attainment,,, +Count_Person_25OrMoreYears_Female_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Doctorate Degree,,, +Count_Person_25OrMoreYears_Female_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Masters Degree or Higher,,, +Count_Person_25OrMoreYears_Female_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Tertiary Education,,, +Count_Person_25OrMoreYears_Male_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males with a Bachelors Degree or Higher,,, +Count_Person_25OrMoreYears_Male_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Doctorate Degree,,, +Count_Person_25OrMoreYears_Male_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Masters Degree or Higher,,, +Count_Person_25OrMoreYears_Male_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Tertiary Education,,, +Count_Person_25OrMoreYears_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people Who Have a Masters Degree or Higher,,, +Count_Person_25OrMoreYears_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people Who Have a Tertiary Education,,, +Count_Person_25To59Years_Illiterate_AsAFractionOf_Count_Person_25To59Years,Percentage of people Aged 25 to 59 Who are Illiterate,,, +Count_Person_25To64Years_EnrolledInEducationOrTraining_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who are enrolled in education or training,,, +Count_Person_25To64Years_EnrolledInEducationOrTraining_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who are enrolled in education or training,,, +Count_Person_25To64Years_EnrolledInEducationOrTraining_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who are enrolled in education or training,,, +Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who have tertiary education,,, +Count_Person_25To64Years_TertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who have tertiary education,,, +Count_Person_25To64Years_TertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who have tertiary education,,, +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who have upper secondary education or higher,,, +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who have upper secondary education or higher,,, +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who have upper secondary education or higher,,, +Count_Person_35To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_35To50Years_Female,Percentage of females aged 35 to 50 who have given birth in the past 12 months,,, +Count_Person_3OrMoreYears_Female_EnrolledInSchool,number of females who are enrolled in school,,, +Count_Person_3OrMoreYears_Male_EnrolledInSchool,number of males who are actively enrolled in any educational institution,,, +Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,number of people who speak an African language at home,,, +Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,number of people who speak an Amharic Somali or other Afro-Asiatic language at home,,, +Count_Person_5OrMoreYears_ArabicSpokenAtHome,number of people who speak Arabic at home,,, +Count_Person_5OrMoreYears_ArmenianSpokenAtHome,number of people who speak Armenian at home,,, +Count_Person_5OrMoreYears_BengaliSpokenAtHome,number of people who speak Bengali at home,,, +Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"number of people who speak any Chinese, Mandarin, or Cantonese language at home",,, +Count_Person_5OrMoreYears_ChineseSpokenAtHome,number of people who speak Chinese at home,,, +Count_Person_5OrMoreYears_ForeignBorn,number of people who are foreign born,,, +Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,number of people who speak French Creole at home,,, +Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome,number of people who speak French (including Cajun) at home,,, +Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,number of people who speak French (including Patois Cajun) at home,,, +Count_Person_5OrMoreYears_GermanSpokenAtHome,number of people who speak German at home,,, +Count_Person_5OrMoreYears_GreekSpokenAtHome,number of people who speak Greek at home,,, +Count_Person_5OrMoreYears_GujaratiSpokenAtHome,number of people who speak Gujarati at home,,, +Count_Person_5OrMoreYears_HaitianSpokenAtHome,number of people who speak Haitian at home,,, +Count_Person_5OrMoreYears_HebrewSpokenAtHome,number of people who speak Hebrew at home,,, +Count_Person_5OrMoreYears_HindiSpokenAtHome,number of people who speak Hindi at home,,, +Count_Person_5OrMoreYears_HmongSpokenAtHome,number of people who speak Hmong at home,,, +Count_Person_5OrMoreYears_HungarianSpokenAtHome,number of people who speak Hungarian at home,,, +Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,number of people who speak an Ilocano Samoan Hawaiian or other Austronesian language at home,,, +Count_Person_5OrMoreYears_ItalianSpokenAtHome,number of people who speak Italian at home,,, +Count_Person_5OrMoreYears_JapaneseSpokenAtHome,number of people who speak Japanese at home,,, +Count_Person_5OrMoreYears_KhmerSpokenAtHome,number of people who speak Khmer at home,,, +Count_Person_5OrMoreYears_KoreanSpokenAtHome,number of people who speak Korean at home,,, +Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,number of people who speak non-english language at home,,, +Count_Person_5OrMoreYears_LaotianSpokenAtHome,number of people who speak Laotian at home,,, +Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"number of people who speak Malayalam, Kannada or other Dravidian languages at home",,, +Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,number of people who speak Mon Khmer Cambodian at home,,, +Count_Person_5OrMoreYears_NavajoSpokenAtHome,number of people who speak Navajo at home,,, +Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"number of people who speak Nepali, Marathi or other Indic languages at home",,, +Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome,number of people who speak only English at home,,, +Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,number of people who speak Persian including Farsi and Dari at home,,, +Count_Person_5OrMoreYears_PersianSpokenAtHome,number of people who speak Persian at home,,, +Count_Person_5OrMoreYears_PolishSpokenAtHome,number of people who speak Polish at home,,, +Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,number of people who speak Portuguese or Portuguese Creole at home,,, +Count_Person_5OrMoreYears_PortugueseSpokenAtHome,number of people who speak Portuguese at home,,, +Count_Person_5OrMoreYears_PunjabiSpokenAtHome,number of people who speak Punjabi at home,,, +Count_Person_5OrMoreYears_ResidesInHousehold,number of people who reside in a household,,, +Count_Person_5OrMoreYears_RussianSpokenAtHome,number of people who speak Russian at home,,, +Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,number of people who speak Scandinavian languages at home,,, +Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,number of people who speak SerboCroatian at home,,, +Count_Person_5OrMoreYears_SpanishSpokenAtHome,number of people who speak Spanish at home,,, +Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,number of people who speak Tagalog including Filipino at home,,, +Count_Person_5OrMoreYears_TagalogSpokenAtHome,number of people who speak Tagalog at home,,, +Count_Person_5OrMoreYears_TamilSpokenAtHome,number of people who speak Tamil at home,,, +Count_Person_5OrMoreYears_TeluguSpokenAtHome,number of people who speak Telugu at home,,, +Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"number of people who speak Thai, Lao or other Tai Kadai languages at home",,, +Count_Person_5OrMoreYears_ThaiSpokenAtHome,number of people who speak Thai at home,,, +Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,number of people who speak Ukranian or other slavic languages at home,,, +Count_Person_5OrMoreYears_UrduSpokenAtHome,number of people who speak Urdu at home,,, +Count_Person_5OrMoreYears_VietnameseSpokenAtHome,number of people who speak Vietnamese at home,,, +Count_Person_5OrMoreYears_YiddishSpokenAtHome,number of people who speak Yiddish at home,,, +Count_Person_60OrMoreYears_Illiterate_AsAFractionOf_Count_Person_60OrMoreYears,Percent of illiterate people older than 60,,, +Count_Person_65OrMoreYears_Female_ResidesInNursingFacilities,number of females aged 65 Years or More and reside in Nursing Facilities,,, +Count_Person_65OrMoreYears_Male_ResidesInNursingFacilities,number of males aged 65 Years or More and reside in Nursing Facilities,,, +Count_Person_85OrMoreYears_Female,Number of females older than 85,,, +Count_Person_85OrMoreYears_Male,Number of males older than 85,,, +Count_Person_Aadhaar_Enrolled,Number of people enrolled for Aadhaar,,, +Count_Person_AbovePovertyLevelInThePast12Months,Number of people who were above the poverty line in the last 12 months,,, +Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of people above the poverty line in the past year who are American Indian or Alaska Native,,, +Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,Number of people above the poverty line in the past year who are asian,,, +Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of people above the poverty line in the past year who are Black or African American,,, +Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,Number of people above the poverty line in the past year who are Hispanic or Latino,,, +Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of people above the poverty line in the past year who are Native Hawaiian or Other Pacific Islander,,, +Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,Number of people above the poverty line in the past year who are multi race,,, +Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of people above the poverty line in the past year who are white,,, +Count_Person_AmbulatoryDifficulty,Number of people With Ambulatory Difficulty,,, +Count_Person_AmericanIndianAndAlaskaNativeAlone,Number of American Indian or Alaska Native people,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,Number of American Indian or Alaska Native people who reside in adult correctional facilities,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,Number of American Indian or Alaska Native people who reside in college or university student housing,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,Number of American Indian or Alaska Native people who reside in group quarters,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,Number of American Indian or Alaska Native people who reside in institutionalized group quarters,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,Number of American Indian or Alaska Native people who reside in juvenile facilities,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of American Indian or Alaska Native people who reside in military quarters or military ships,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of American Indian or Alaska Native people who reside in noninstitutionalized group quarters,,, +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,Number of American Indian or Alaska Native people who reside in nursing facilities,,, +Count_Person_AsianAlone,Number of asian people,,, +Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,Number of asian people who reside in adult correctional facilities,,, +Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,Number of asian people who reside in college or university student housing,,, +Count_Person_AsianAlone_ResidesInGroupQuarters,Number of asian people who reside in group quarters,,, +Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,Number of asian people who reside in institutionalized group quarters,,, +Count_Person_AsianAlone_ResidesInJuvenileFacilities,Number of asian people who reside in juvenile facilities,,, +Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of asian people who reside in military quarters or military ships,,, +Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of asian people who reside in noninstitutionalized group quarters,,, +Count_Person_AsianAlone_ResidesInNursingFacilities,Number of asian people who reside in nursing facilities,,, +Count_Person_AsianOrPacificIslander,Number of Asian or Pacific Islander people,,, +Count_Person_BachelorOfArtsHumanitiesAndOtherMajor,"Number of people with a bachelor's degree or higher in Arts, Humanities, and Other Major",,, +Count_Person_BachelorOfBusinessMajor,Number of people with a bachelor's degree or higher in Business Major,,, +Count_Person_BachelorOfEducationMajor,Number of people with a bachelor's degree or higher in Education Major,,, +Count_Person_BachelorOfScienceAndEngineeringMajor,Number of people with a bachelor's degree or higher in Science and Engineering Major,,, +Count_Person_BachelorOfScienceAndEngineeringRelatedMajor,Number of people with a bachelor's degree or higher in Science and Engineering Related Major,,, +Count_Person_BelowPovertyLevelInThePast12Months,Number of people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person,Percentage of people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone,Number of asian people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black or African American people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino,Number of Hispanic or Latino people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian Or Other Pacific IslanderAlone people below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of people of multi races below poverty level in the past 12 months,,, +Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,Number of white people below poverty level in the past 12 months,,, +Count_Person_BlackOrAfricanAmericanAlone,Number of Black or African American people,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,Number of Black or African American people who reside in adult correctional facilities,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,Number of Black or African American people who reside in College Or University Student Housing,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,Number of Black or African American people who reside in group quarters,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,Number of Black or African American people who reside in institutionalized group quarters,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,Number of Black or African American people who reside in juvenile facilities,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Black or African American people who reside in military quarters or military ships,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of Black or African American people who reside in noninstitutionalized group quarters,,, +Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,Number of Black or African American people who reside in nursing facilities,,, +Count_Person_BornInOtherStateInTheUnitedStates,Number of people who were born in other state in the United States,,, +Count_Person_BornInStateOfResidence,Number of people who were born in state of residence,,, +Count_Person_Civilian_Employed,Number of employed civilian,,, +Count_Person_Civilian_FamilyHousehold_NonInstitutionalized,Number of people in family household,,, +Count_Person_Civilian_Female_NonInstitutionalized,Number of NonInstitutionalized females,,, +Count_Person_Civilian_InLaborForce,Number of people in labor force,,, +Count_Person_Civilian_Male_NonInstitutionalized,Number of NonInstitutionalized males,,, +Count_Person_Civilian_MarriedCoupleFamilyHousehold_NonInstitutionalized,Number of people in married couple family household,,, +Count_Person_Civilian_NoDisability_NonInstitutionalized,Number of NonInstitutionalized females without disability,,, +Count_Person_Civilian_NonInstitutionalized,Number of NonInstitutionalized civilian,,, +Count_Person_Civilian_NonInstitutionalized_AmericanIndianOrAlaskaNativeAlone,number of NonInstitutionalized American Indian or Alaska Native Civilian,,, +Count_Person_Civilian_NonInstitutionalized_AsianAlone,number of NonInstitutionalized asian Civilian,,, +Count_Person_Civilian_NonInstitutionalized_BlackOrAfricanAmericanAlone,number of NonInstitutionalized Black or African American Civilian,,, +Count_Person_Civilian_NonInstitutionalized_ForeignBorn,number of NonInstitutionalized Foreign Born Civilian,,, +Count_Person_Civilian_NonInstitutionalized_HispanicOrLatino,number of NonInstitutionalized Hispanic or Latino Civilian,,, +Count_Person_Civilian_NonInstitutionalized_Native,number of NonInstitutionalized native Civilian,,, +Count_Person_Civilian_NonInstitutionalized_NativeHawaiianOrOtherPacificIslanderAlone,number of NonInstitutionalized Native Hawaiian or Other Pacific Islander Civilian,,, +Count_Person_Civilian_NonInstitutionalized_OneRace,number of NonInstitutionalized single race Civilian,,, +Count_Person_Civilian_NonInstitutionalized_PovertyStatusDetermined,number of NonInstitutionalized Civilian with poverty status determined,,, +Count_Person_Civilian_NonInstitutionalized_ResidesInHousehold,number of NonInstitutionalized Civilian who resides in household,,, +Count_Person_Civilian_NonInstitutionalized_TwoOrMoreRaces,number of NonInstitutionalized muti-race Civilian,,, +Count_Person_Civilian_NonInstitutionalized_WhiteAlone,number of NonInstitutionalized white Civilian,,, +Count_Person_Civilian_ResidesInHousehold,Number of civilian reside in household,,, +Count_Person_Civilian_WithDisability_NonInstitutionalized,Number of NonInstitutionalized civilian with disability,,, +Count_Person_CognitiveDifficulty,Number of People Who Have Cognitive Difficulty,,, +Count_Person_DetailedEnrolledInCollegeUndergraduateYears,Number of people Enrolled in Undergraduate college,,, +Count_Person_DetailedEnrolledInGrade1,Number of people Enrolled in Grade 1,,, +Count_Person_DetailedEnrolledInGrade10,Number of people Enrolled in Grade 10,,, +Count_Person_DetailedEnrolledInGrade11,Number of people Enrolled in Grade 11,,, +Count_Person_DetailedEnrolledInGrade12,Number of people Enrolled in Grade 12,,, +Count_Person_DetailedEnrolledInGrade2,Number of people Enrolled in Grade 2,,, +Count_Person_DetailedEnrolledInGrade3,Number of people Enrolled in Grade 3,,, +Count_Person_DetailedEnrolledInGrade4,Number of people Enrolled in Grade 4,,, +Count_Person_DetailedEnrolledInGrade5,Number of people Enrolled in Grade 5,,, +Count_Person_DetailedEnrolledInGrade6,Number of people Enrolled in Grade 6,,, +Count_Person_DetailedEnrolledInGrade7,Number of people Enrolled in Grade 7,,, +Count_Person_DetailedEnrolledInGrade8,Number of people Enrolled in Grade 8,,, +Count_Person_DetailedEnrolledInGrade9,Number of people Enrolled in Grade 9,,, +Count_Person_DetailedEnrolledInKindergarten,Number of people Enrolled in Kindergarten,,, +Count_Person_DetailedEnrolledInNurserySchoolPreschool,Number of people Enrolled in Nursery School Preschool,,, +Count_Person_DetailedGraduateOrProfessionalSchool,Number of people enrolled in Graduate Or Professional School,,, +Count_Person_DetailedHighSchool,Number of people enrolled in High School,,, +Count_Person_DetailedMiddleSchool,Number of people enrolled in Middle School,,, +Count_Person_DetailedPrimarySchool,Number of people enrolled in Primary School,,, +Count_Person_Divorced,Number of divorced individuals,,, +Count_Person_Divorced_ResidesInAdultCorrectionalFacilities,Number of divorced individuals residing in adult correctional facilities,,, +Count_Person_Divorced_ResidesInCollegeOrUniversityStudentHousing,Number of divorced individuals residing in college or university student housing,,, +Count_Person_Divorced_ResidesInGroupQuarters,Number of divorced individuals residing in group quarters,,, +Count_Person_Divorced_ResidesInInstitutionalizedGroupQuarters,Number of divorced individuals residing in institutionalized group quarters,,, +Count_Person_Divorced_ResidesInNoninstitutionalizedGroupQuarters,Number of divorced individuals residing in noninstitutionalized group quarters,,, +Count_Person_Divorced_ResidesInNursingFacilities,Number of divorced individuals residing in nursing facilities,,, +Count_Person_DivorcedOrSeparated,Number of divorced or separated individuals,,, +Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma,Number of People Who Completed 9th to 12th Grade Without Earning a Diploma,,, +Count_Person_EducationalAttainment_LessThan9ThGrade,Number of People Who Completed Less Than 9th Grade,,, +Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,Number of People Who Completed Less Than High School Diploma,,, +Count_Person_EducationalAttainment_SomeCollegeNoDegree,Number of People Who Completed Some College No Degree,,, +Count_Person_EducationalAttainment10ThGrade,Number of People Who Completed 10th Grade,,, +Count_Person_EducationalAttainment11ThGrade,Number of People Who Completed 11th Grade,,, +Count_Person_EducationalAttainment12ThGradeNoDiploma,Number of People Who Completed 12th Grade No Diploma,,, +Count_Person_EducationalAttainment1StGrade,Number of People Who Completed 1st Grade,,, +Count_Person_EducationalAttainment2NdGrade,Number of People Who Completed 2nd Grade,,, +Count_Person_EducationalAttainment3RdGrade,Number of People Who Completed 3rd Grade,,, +Count_Person_EducationalAttainment4ThGrade,Number of People Who Completed 4th Grade,,, +Count_Person_EducationalAttainment5ThGrade,Number of People Who Completed 5th Grade,,, +Count_Person_EducationalAttainment6ThGrade,Number of People Who Completed 6th Grade,,, +Count_Person_EducationalAttainment7ThGrade,Number of People Who Completed 7th Grade,,, +Count_Person_EducationalAttainment8ThGrade,Number of People Who Completed 8th Grade,,, +Count_Person_EducationalAttainment9ThGrade,Number of People Who Completed 9th Grade,,, +Count_Person_EducationalAttainmentAssociatesDegree,Number of People with Associates Degree,,, +Count_Person_EducationalAttainmentBachelorsDegree,Number of People with Bachelors Degree,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,Number of People With Bachelor's or higher Degree,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,Number of Female People With Bachelor's Degree or Higher Who Divorced in the Past 12 Months,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,Number of Female People With Bachelor's Degree or Higher Who Married in the Past 12 Months,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,Number of Male People With Bachelor's Degree or Higher Who Divorced in the Past 12 Months,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,Number of Male People With Bachelor's Degree or Higher Who Married in the Past 12 Months,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_OnlyEnglishSpokenAtHome,Number of People With Bachelor's Degree or Higher Who Speak Only English at Home,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInAdultCorrectionalFacilities,Number of People With Bachelor's Degree or Higher Who Reside in Adult Correctional Facilities,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInCollegeOrUniversityStudentHousing,Number of People With Bachelor's Degree or Higher Who Reside in College or University Student Housing,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Group Quarters,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInInstitutionalizedGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Institutionalized Group Quarters,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNoninstitutionalizedGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Noninstitutionalized Group Quarters,,, +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNursingFacilities,Number of People With Bachelor's Degree or Higher Who Reside in Nursing Facilities,,, +Count_Person_EducationalAttainmentDoctorateDegree,Number of People Who Completed Doctorate Degree,,, +Count_Person_EducationalAttainmentGedOrAlternativeCredential,Number of People Who Completed Ged Or Alternative Credential,,, +Count_Person_EducationalAttainmentGraduateOrProfessionalDegree,Number of People Who Completed Graduate Or Professional Degree,,, +Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency,Number of People Who Completed High School and Earned an Equivalency,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher,Number of people who are high school graduates or higher,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInAdultCorrectionalFacilities,Number of people who are high school graduates or higher and reside in adult correctional facilities,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInCollegeOrUniversityStudentHousing,Number of people who are high school graduates or higher and reside in college or university student housing,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInGroupQuarters,Number of people who are high school graduates or higher and reside in group quarters,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInInstitutionalizedGroupQuarters,Number of people who are high school graduates or higher and reside in institutionalized group quarters,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNoninstitutionalizedGroupQuarters,Number of people who are high school graduates or higher and reside in noninstitutionalized group quarters,,, +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNursingFacilities,Number of people who are high school graduates or higher and reside in nursing facilities,,, +Count_Person_EducationalAttainmentKindergarten,Number of people with kindergarten level education,,, +Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,Number of people who are less than high school graduates,,, +Count_Person_EducationalAttainmentMastersDegree,Number of people With Masters Degree,,, +Count_Person_EducationalAttainmentNoSchoolingCompleted,Number of people who have not completed any formal education,,, +Count_Person_EducationalAttainmentNurserySchool,Number of people with a nursery school level of education,,, +Count_Person_EducationalAttainmentPrimarySchool,Number of people with a primary school level of education,,, +Count_Person_EducationalAttainmentProfessionalSchoolDegree,Number of people with professional school degree,,, +Count_Person_EducationalAttainmentRegularHighSchoolDiploma,Number of people with high school diploma,,, +Count_Person_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree,Number of people attended college but have no degree,,, +Count_Person_EducationalAttainmentSomeCollegeLessThan1Year,Number of people attended college for less than 1 year,,, +Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,Number of people with associates degree,,, +Count_Person_Employed,Number of employed people,,, +dc/nm9hcklgg5zb3,Number of employed people,,, +Count_Person_Employed_NACE/A,"Number of employed people in Agriculture, forestry and fishing",,, +Count_Person_Employed_NACE/C,Number of employed people in Manufacturing,,, +Count_Person_Employed_NACE/F,Number of employed people in Construction,,, +Count_Person_Employed_NACE/J,Number of employed people in Information and communication,,, +Count_Person_Employed_NACE/K,Number of employed people in Financial and insurance activities,,, +Count_Person_Employed_NACE/L,Number of employed people in Real estate activities,,, +Count_Person_EnrolledInCollegeOrGraduateSchool,Number of people Enrolled in College or Graduate School,,, +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInAdultCorrectionalFacilities,Number of people Enrolled in College or Graduate School and Resides in Adult Correctional Facilities,,, +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInCollegeOrUniversityStudentHousing,Number of people Enrolled in College or Graduate School and Resides in College or University Student Housing,,, +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInGroupQuarters,Number of people Enrolled in College or Graduate School and Resides in Group Quarters,,, +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNursingFacilities,Number of people Enrolled in College or Graduate School and Resides in Nursing Facilities,,, +Count_Person_EnrolledInCollegeUndergraduateYears,Number of people Enrolled in College Undergraduate Years,,, +Count_Person_EnrolledInKindergarten,Number of people Enrolled in Kindergarten,,, +Count_Person_EnrolledInSchool,Number of people enrolled in school,,, +Count_Person_Female,Number of females,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months,number of females living Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,number of asian females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,number of Black or African American females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,number of hispanic or latino who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,number of muti-race females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,number of white females who live Above Poverty Level in the Past Year,,, +Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females,,, +Count_Person_Female_AsianAlone,number of asian females,,, +Count_Person_Female_AsianOrPacificIslander,number of asian or pacific islander females,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months,number of females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,number of asian females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,number of Black or African American females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,number of hispanic or latino females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,number of multi races females who live below poverty level in the past year,,, +Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,number of white females who live below poverty level in the past year,,, +Count_Person_Female_BlackOrAfricanAmericanAlone,number of Black or African American females,,, +Count_Person_Female_ConditionArthritis,Number of females with arthritis,,, +Count_Person_Female_ConditionDiseasesOfHeart,Number of females with heart Disease,,, +Count_Person_Female_DidNotWork,Number of females in the age range of 16 to 64 who do not work,,, +Count_Person_Female_Divorced,Number of divorced females,,, +Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,Number of divorced females in the past 12 months who are below poverty level in the past 12 months,,, +Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,Number of divorced females in the past 12 months for whom poverty status is determined,,, +Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,Number of divorced females in the past 12 months who reside in a household,,, +Count_Person_Female_ForeignBorn,Number of foreign born females,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,Number of foreign born female from africa,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,Number of foreign born female from asia,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean,Number of foreign born female from Caribbean,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of foreign born female from Central America Except Mexico,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,Number of foreign born female from Eastern Asia,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,Number of foreign born female from europe,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,Number of foreign born female from Latin America,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,Number of foreign born female from Mexico,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,Number of foreign born female from northamerica,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of foreign born female from Northern Western Europe,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,Number of foreign born female from oceania,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,Number of foreign born female from southamerica,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of foreign born female from South Central Asia,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of foreign born female from South Eastern Asia,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of foreign born female from Southern Eastern Europe,,, +Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,Number of foreign born female from Western Asia,,, +Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,Number of foreign born females who reside in Adult Correctional Facilities,,, +Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number of foreign born females who reside in College Or University Student Housing,,, +Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,Number of foreign born females who reside in Group Quarters,,, +Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number of foreign born females who reside in Institutionalized Group Quarters,,, +Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,Number of foreign born females who reside in Juvenile Facilities,,, +Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,Number of foreign born females who reside in Military Quarters Or Military Ships,,, +Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number of foreign born females who reside in Noninstitutionalized Group Quarters,,, +Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,Number of foreign born females who reside in Nursing Facilities,,, +Count_Person_Female_FullTimeYearRoundWorker,Number of female full time year around worker,,, +Count_Person_Female_HispanicOrLatino,Number of Hispanic or Latino females,,, +Count_Person_Female_MarriedAndNotSeparated,Number of married females,,, +Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,Number of females married in the past 12 months and below poverty level in the past 12 months,,, +Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,Number of females married in the past 12 months with poverty status determined,,, +Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,Number of females married in the past 12 months residing in a household,,, +Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone,Number of females of Native Hawaiian and Other Pacific Islander race,,, +Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,Number of females of Native Hawaiian or Other Pacific Islander race,,, +Count_Person_Female_NeverMarried,Number of never married females,,, +Count_Person_Female_NoHealthInsurance,Number of females with no health insurance,,, +Count_Person_Female_NonWhite,Number of non white females,,, +Count_Person_Female_NotHispanicOrLatino,Number of females that are not Hispanic or Latino,,, +Count_Person_Female_ResidesInAdultCorrectionalFacilities,Number of females residing in Adult Correctional Facilities,,, +Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,Number of females residing in College or University Student Housing,,, +Count_Person_Female_ResidesInGroupQuarters,Number of females residing in Group Quarters,,, +Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,Number of females residing in Institutionalized Group Quarters,,, +Count_Person_Female_ResidesInJuvenileFacilities,Number of females residing in Juvenile Facilities,,, +Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Number of females residing in Military Quarters or Military Ships,,, +Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,Number of females residing in Noninstitutionalized Group Quarters,,, +Count_Person_Female_ResidesInNursingFacilities,Number of females residing in Nursing Facilities,,, +Count_Person_Female_TwoOrMoreRaces,Number of muti-race females,,, +Count_Person_Female_WhiteAlone,Number of white females,,, +Count_Person_Female_Widowed,Number of widowed females,,, +Count_Person_Female_WithEarnings,Number of females with earnings,,, +Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,Number of females with earnings residing in Adult Correctional Facilities,,, +Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,Number of females with earnings residing in College or University Student Housing,,, +Count_Person_Female_WithEarnings_ResidesInGroupQuarters,Number of females with earnings residing in Group Quarters,,, +Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,Number of females with earnings residing in Institutionalized Group Quarters,,, +Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,Number of females with earnings residing in Juvenile Facilities,,, +Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,Number of females with earnings residing in Military Quarters or Military Ships,,, +Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,Number of females with earnings residing in Noninstitutionalized Group Quarters,,, +Count_Person_Female_WithEarnings_ResidesInNursingFacilities,Number of females with earnings residing in Nursing Facilities,,, +Count_Person_Female_WithHealthInsurance,Number of females with Health Insurance,,, +Count_Person_ForeignBorn_PlaceOfBirthAfrica,Number of foreign born people from africa,,, +Count_Person_ForeignBorn_PlaceOfBirthEasternAsia,Number of foreign born people from eastern Asia,,, +Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of foreign born people from Northern Western Europe,,, +Count_Person_ForeignBorn_PlaceOfBirthOceania,Number of foreign born people from Oceania,,, +Count_Person_ForeignBorn_PlaceOfBirthSouthamerica,Number of foreign born people from South America,,, +Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of foreign born people from South Central Asia,,, +Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of foreign born people from South Eastern Asia,,, +Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of foreign born people from Southern Eastern Europe,,, +Count_Person_ForeignBorn_PlaceOfBirthWesternAsia,Number of foreign born people from Western Asia,,, +Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAlone,Number of foreign born white people from Western Asia,,, +Count_Person_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number of foreign born people who live in college student housing,,, +Count_Person_ForeignBorn_ResidesInGroupQuarters,Number of foreign born people who reside in group quarters,,, +Count_Person_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number of foreign born people who live in institutionalized group quarters,,, +Count_Person_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number of foreign born people who live in non-institutionalized group quarters,,, +Count_Person_ForeignBorn_ResidesInNursingFacilities,Number of foreign born people who live in nursing facilities,,, +Count_Person_FullTimeYearRoundWorker,Number of people who worked full time through the year,,, +Count_Person_HearingDifficulty,Number of people with hearing difficulty,,, +Count_Person_HispanicOrLatino,number of hispanic or latino people,,, +Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,Number of hispanic or latino people who reside in adult correctional facilities,,, +Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,Number of hispanic or latino people who reside in college or university student housing,,, +Count_Person_HispanicOrLatino_ResidesInGroupQuarters,Number of hispanic or latino people who reside in group quarters,,, +Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,Number of hispanic or latino people who reside in institutionalized group quarters,,, +Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,Number of hispanic or latino people who reside in juvenile facilities,,, +Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,Number of hispanic or latino people who reside in military quarters or military ships,,, +Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,Number of hispanic or latino people who reside in noninstitutionalized group quarters,,, +Count_Person_HispanicOrLatino_ResidesInNursingFacilities,Number of hispanic or latino people who reside in nursing facilities,,, +Count_Person_Houseless,Number of houseless people,,, +Count_Person_Houseless_Female,Number of houseless females,,, +Count_Person_Houseless_Illiterate,Number of houseless illiterates,,, +Count_Person_Houseless_Illiterate_Female,Number of houseless illiterate females,,, +Count_Person_Houseless_Illiterate_Male,Number of houseless illiterate males,,, +Count_Person_Houseless_Illiterate_Rural,Number of houseless illiterates in rural areas,,, +Count_Person_Houseless_Illiterate_Urban,Number of houseless illiterates in urban areas,,, +Count_Person_Houseless_Literate,Number of houseless literates,,, +Count_Person_Houseless_Literate_Female,Number of houseless literate females,,, +Count_Person_Houseless_Literate_Male,Number of houseless literate males,,, +Count_Person_Houseless_Literate_Rural,Number of houseless literates in rural areas,,, +Count_Person_Houseless_Literate_Urban,Number of houseless literates in urban areas,,, +Count_Person_Houseless_Male,Number of houseless males,,, +Count_Person_Houseless_NonWorker,Number of houseless who did not work in the last year,,, +Count_Person_Houseless_Rural,Number of houseless who reside in rural area,,, +Count_Person_Houseless_Rural_Female,Number of houseless females who reside in rural area,,, +Count_Person_Houseless_Rural_Male,Number of houseless males who reside in rural area,,, +Count_Person_Houseless_ScheduledCaste,Number of houseless who belong to Scheduled Caste,,, +Count_Person_Houseless_ScheduledCaste_Female,Number of houseless females who belong to Scheduled Caste,,, +Count_Person_Houseless_ScheduledCaste_Male,Number of houseless males who belong to Scheduled Caste,,, +Count_Person_Houseless_ScheduledCaste_Rural,Number of houseless who belong to Scheduled Caste and reside in rural area,,, +Count_Person_Houseless_ScheduledCaste_Urban,Number of houseless scheduled caste people who reside in urban area,,, +Count_Person_Houseless_ScheduledTribe,Number of houseless scheduled tribe people,,, +Count_Person_Houseless_ScheduledTribe_Female,Number of houseless scheduled tribe females,,, +Count_Person_Houseless_ScheduledTribe_Male,Number of houseless scheduled tribe males,,, +Count_Person_Houseless_ScheduledTribe_Rural,Number of houseless scheduled tribe people who reside in rural area,,, +Count_Person_Houseless_ScheduledTribe_Urban,Number of houseless scheduled tribe people who reside in urban area,,, +Count_Person_Houseless_Urban,Number of houseless people who reside in urban area,,, +Count_Person_Houseless_Urban_Female,Number of houseless females who reside in urban area,,, +Count_Person_Houseless_Urban_Male,Number of houseless males who reside in urban area,,, +Count_Person_Houseless_Workers,Number of houseless who worked in the last year,,, +Count_Person_Houseless_Workers_Female,Number of houseless females who worked in the last year,,, +Count_Person_Houseless_Workers_Male,Number of houseless males who worked in the last year,,, +Count_Person_Houseless_Workers_Rural,Number of houseless workers who reside in rural area,,, +Count_Person_Houseless_Workers_Urban,Number of houseless workers who reside in urban area,,, +Count_Person_Houseless_YearsUpto6,Number of houseless who are up to 6 years old,,, +Count_Person_Houseless_YearsUpto6_Female,Number of houseless females under 6 years,,, +Count_Person_Houseless_YearsUpto6_Male,Number of houseless males under 6 years,,, +Count_Person_Houseless_YearsUpto6_Rural,Number of houseless individuals under 6 years who reside in rural area,,, +Count_Person_Houseless_YearsUpto6_Urban,Number of houseless individuals under 6 years who reside in urban area,,, +Count_Person_Illiterate,Number of illiterate people,,, +Count_Person_Illiterate_AsAFractionOf_Count_Person,Percentage of illiterate people,,, +Count_Person_Illiterate_Female,Number of illiterate females,,, +Count_Person_Illiterate_Male,Number of illiterate males,,, +Count_Person_Illiterate_Rural,Number of illiterate individuals who reside in rural area,,, +Count_Person_Illiterate_Urban,Number of illiterate individuals who reside in urban area,,, +Count_Person_InArmedForces,Number of people serving in armed forces,,, +Count_Person_IncomeOf10000To14999USDollar,"Number of Individuals with an Income Between $10,000 and $15,000",,, +Count_Person_IncomeOf25000To34999USDollar,"Number of Individuals with an Income Between $25,000 and $35,000",,, +Count_Person_IncomeOf35000To49999USDollar,"Number of Individuals with an Income Between $35,000 and $50,000",,, +Count_Person_IncomeOf50000To64999USDollar,"Number of Individuals with an Income Between $50,000 and $65,000",,, +Count_Person_IncomeOf65000To74999USDollar,"Number of Individuals with an Income Between $65,000 and $75,000",,, +Count_Person_IncomeOf75000OrMoreUSDollar,"Number of Individuals with an Income of $75,000 and Over",,, +Count_Person_IncomeOfUpto9999USDollar,"Number of Individuals with an Income of $9,999 and Below",,, +Count_Person_IndependentLivingDifficulty,Number of People With Independent Living Difficulty,,, +Count_Person_InLaborForce,number of people in labor force,,, +Count_Person_InLaborForce_ResidesInCollegeOrUniversityStudentHousing,Number of Labor Force Participants Residing in College or University Student Housing,,, +Count_Person_InLaborForce_ResidesInGroupQuarters,Number of Labor Force Participants reside in Group Quarters,,, +Count_Person_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,Number of Labor Force Participants reside in Noninstitutionalized Group Quarters,,, +Count_Person_IsInternetUser_PerCapita,percentage of internet users,,, +Count_Person_Literate,Number of Literate people,,, +Count_Person_Literate_Female,Number of Literate Females,,, +Count_Person_Literate_Male,Number of Literate Males,,, +Count_Person_Literate_Rural,Number of Literate Persons residing in Rural Areas,,, +Count_Person_Literate_Urban,Number of Literate Persons residing in Urban Areas,,, +Count_Person_Male,number of males,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months,Number of males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,Number of Black Or African American males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Hispanic Or Latino males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,Number of Native Hawaiian Or Other Pacific Islander males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,Number of multi-race males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of white males live Above Poverty Level In The Past 12 Months,,, +Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,Number of males that are American Indian Or Alaska Native,,, +Count_Person_Male_AsianAlone,Number of males that are asian,,, +Count_Person_Male_AsianOrPacificIslander,Number of males that are Asian Or Pacific Islander,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months,Number of males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone,Number of asian males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black Or African American males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino,Number of Hispanic Or Latino males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian Or Other Pacific Islander males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of multi-race males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,Number of White males that are Below Poverty Level In The Past 12 Months,,, +Count_Person_Male_BlackOrAfricanAmericanAlone,Number of males that are Black Or African American,,, +Count_Person_Male_ConditionArthritis,Number of males that have Arthritis,,, +Count_Person_Male_ConditionDiseasesOfHeart,Number of males that have heart Diseases,,, +Count_Person_Male_DidNotWork,Number of males that do Not Work,,, +Count_Person_Male_Divorced,Number of divorced males,,, +Count_Person_Male_ForeignBorn,Number foreign born males,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,Number foreign born males from Africa,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,Number foreign born males from Asia,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,Number foreign born males from Caribbean,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number foreign born males from Central America Except Mexico,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,Number foreign born males from Eastern Asia,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,Number foreign born males from Europe,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,Number foreign born males from Latin America,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,Number foreign born males from Mexico,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,Number foreign born males from North America,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number foreign born males from Northern Western Europe,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,Number foreign born males from Oceania,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,Number foreign born males from South America,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number foreign born males from South Central Asia,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number foreign born males from South Eastern Asia,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number foreign born males from Southern Eastern Europe,,, +Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,Number foreign born males from Western Asia,,, +Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,Number foreign born males resides in Adult Correctional Facilities,,, +Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number foreign born males resides in College Or University Student Housing,,, +Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,Number foreign born males resides in Group Quarters,,, +Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number foreign born males resides in Institutionalized Group Quarters,,, +Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,Number foreign born males resides in Juvenile Facilities,,, +Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,Number foreign born males resides in Military Quarters Or Military Ships,,, +Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number foreign born males resides in Noninstitutionalized Group Quarters,,, +Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,Number foreign born males resides in Nursing Facilities,,, +Count_Person_Male_HispanicOrLatino,number of Hispanic or Latino males,,, +Count_Person_Male_MarriedAndNotSeparated,number of Males married and not separated,,, +Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,number of Native Hawaiian and other Pacific Islander males,,, +Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,number of multi-race Native Hawaiian and other Pacific Islander males,,, +Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,number of Native Hawaiian or other Pacific Islander males,,, +Count_Person_Male_NeverMarried,number of never married males aged 15 years or older,,, +Count_Person_Male_NoHealthInsurance,number of civilian males without health insurance,,, +Count_Person_Male_NonWhite,number of non white males,,, +Count_Person_Male_NotHispanicOrLatino,number of non hispanic or latino males,,, +Count_Person_Male_ResidesInAdultCorrectionalFacilities,Number of males residing in adult correctional facilities,,, +Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,Number of males residing in college or university student housing,,, +Count_Person_Male_ResidesInGroupQuarters,Number of males residing in group quarters,,, +Count_Person_Male_ResidesInInstitutionalizedGroupQuarters,Number of males residing in institutionalized group quarters,,, +Count_Person_Male_ResidesInJuvenileFacilities,Number of males residing in juvenile facilities,,, +Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,Number of males residing in military quarters or military ships,,, +Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,Number of males residing in noninstitutionalized group quarters,,, +Count_Person_Male_ResidesInNursingFacilities,Number of males residing in nursing facilities,,, +Count_Person_Male_TwoOrMoreRaces,number of multi-race males,,, +Count_Person_Male_WhiteAlone,number of white males,,, +Count_Person_Male_Widowed,number of widowed males,,, +Count_Person_Male_WithEarnings,number of males with earnings,,, +Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,number of males with earnings who reside in adult correctional facilities,,, +Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,number of males with earnings who reside in college or university student housing,,, +Count_Person_Male_WithEarnings_ResidesInGroupQuarters,number of males with earnings who reside in group quarters,,, +Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,number of males with earnings who reside in institutionalized group quarters,,, +Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,number of males with earnings who reside in juvenile facilities,,, +Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,number of males with earnings who reside in military quarters or military ships,,, +Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,number of males with earnings who reside in noninstitutionalized group quarters,,, +Count_Person_Male_WithEarnings_ResidesInNursingFacilities,number of males with earnings who reside in nursing facilities,,, +Count_Person_Male_WithHealthInsurance,number of males with health insurance,,, +Count_Person_MarriedAndNotSeparated,Number of married people,,, +Count_Person_MarriedAndNotSeparated_ResidesInAdultCorrectionalFacilities,Number of married people who reside in adult correctional facilities,,, +Count_Person_MarriedAndNotSeparated_ResidesInCollegeOrUniversityStudentHousing,Number of married people who reside in college or university student housing,,, +Count_Person_MarriedAndNotSeparated_ResidesInGroupQuarters,Number of married people who reside in group quarters,,, +Count_Person_MarriedAndNotSeparated_ResidesInInstitutionalizedGroupQuarters,Number of married people who reside in institutionalized group quarters,,, +Count_Person_MarriedAndNotSeparated_ResidesInNoninstitutionalizedGroupQuarters,Number of married people who reside in noninstitutionalized group quarters,,, +Count_Person_MarriedAndNotSeparated_ResidesInNursingFacilities,Number of married people who reside in nursing facilities,,, +Count_Person_Native,Number of native people,,, +Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Adult Correctional Facilities,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,Number of Native Hawaiian or Other Pacific Islander people residing in College Or University Student Housing,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Group Quarters,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Institutionalized Group Quarters,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Juvenile Facilities,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Native Hawaiian or Other Pacific Islander people residing in Military Quarters Or Military Ships,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Noninstitutionalized Group Quarters,,, +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Nursing Facilities,,, +Count_Person_NeverMarried,Number of people that are never married,,, +Count_Person_NeverMarried_ResidesInAdultCorrectionalFacilities,Number of people that are never married and reside in adult correctional facilities,,, +Count_Person_NeverMarried_ResidesInCollegeOrUniversityStudentHousing,Number of people that are never married and reside in college or university student housing,,, +Count_Person_NeverMarried_ResidesInGroupQuarters,Number of people that are never married and reside in group quarters,,, +Count_Person_NeverMarried_ResidesInInstitutionalizedGroupQuarters,Number of people that are never married and reside in institutionalized group quarters,,, +Count_Person_NeverMarried_ResidesInNoninstitutionalizedGroupQuarters,Number of people that are never married and reside in noninstitutionalized group quarters,,, +Count_Person_NeverMarried_ResidesInNursingFacilities,Number of people that are never married and reside in nursing facilities,,, +Count_Person_NoDisability,number of people without disabilities,,, +Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,number of people without disabilities residing in adult correctional facilities,,, +Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,number of people without disabilities residing in college or university student housing,,, +Count_Person_NoDisability_ResidesInGroupQuarters,number of people without disabilities residing in group quarters,,, +Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,number of people without disabilities residing in institutionalized group quarters,,, +Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,number of people without disabilities residing in noninstitutionalized group quarters,,, +Count_Person_NoDisability_ResidesInNursingFacilities,number of people without disabilities residing in nursing facilities,,, +Count_Person_NoHealthInsurance,number of people with no health insurance,,, +Count_Person_NoHealthInsurance_AmericanIndianOrAlaskaNativeAlone,number of American Indian or Alaska Native people with no health insurance,,, +Count_Person_NoHealthInsurance_AsianAlone,number of asian people with no health insurance,,, +Count_Person_NoHealthInsurance_BlackOrAfricanAmericanAlone,number of Black Or African American people with no health insurance,,, +Count_Person_NoHealthInsurance_HispanicOrLatino,number of Hispanic or Latino people with no health insurance,,, +Count_Person_NoHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,number of Native Hawaiian or Other Pacific Islander people with no health insurance,,, +Count_Person_NoHealthInsurance_WhiteAlone,number of white people with no health insurance,,, +Count_Person_Nonveteran,Number of adult Civilians Who Are Not Veterans,,, +Count_Person_NonWhite,Number of non white people,,, +Count_Person_NonWorker,Number of people who do not work,,, +Count_Person_NonWorker_Female,Number of females who do not work,,, +Count_Person_NonWorker_Male,Number of males who do not work,,, +Count_Person_NonWorker_Rural,Number of rural people who do not work,,, +Count_Person_NonWorker_Urban,Number of urban people who do not work,,, +Count_Person_NotAUSCitizen,Number of non US citizens,,, +Count_Person_NotEnrolledInSchool,Number of people not enrolled in school,,, +Count_Person_NotInLaborForce,Number of people Aged 16 and Over Not in the Labor Force,,, +Count_Person_NowMarried,Number of married females,,, +Count_Person_OneRace,Number of people of single race,,, +Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,Number of people of single race who reside in adult correctional facilities,,, +Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,Number of people of single race who reside in college or university student housing,,, +Count_Person_OneRace_ResidesInGroupQuarters,Number of people of single race who reside in group quarters,,, +Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,Number of people of single race who reside in institutionalized group quarters,,, +Count_Person_OneRace_ResidesInJuvenileFacilities,Number of people of single race who reside in juvenile facilities,,, +Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,Number of people of single race who reside in military quarters or military ships,,, +Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,Number of people of single race who reside in noninstitutionalized group quarters,,, +Count_Person_OneRace_ResidesInNursingFacilities,Number of people of single race who reside in nursing facilities,,, +Count_Person_PerArea,Population Density,,, +Count_Person_PlaceOfBirthAsia,Number of foreign Born People from Asia,,, +Count_Person_PlaceOfBirthEurope,Number of foreign Born People from Europe,,, +Count_Person_PlaceOfBirthLatinAmerica,Number of foreign Born People from Latin America,,, +Count_Person_Producer,Number of farmers,,, +Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaskan farmers,,, +Count_Person_Producer_AsianAlone,Number of asian farmers,,, +Count_Person_Producer_BlackOrAfricanAmericanAlone,Number of Black or African American farmers,,, +Count_Person_Producer_HispanicOrLatino,Number of Hispanic or Latino farmers,,, +Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander farmers,,, +Count_Person_Producer_TwoOrMoreRaces,Number of multi races farmers,,, +Count_Person_Producer_WhiteAlone,Number of White farmers,,, +Count_Person_ResidesInAdultCorrectionalFacilities,Number of People Residing in Adult Correctional Facilities,,, +Count_Person_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,Number of School Enrolled People Residing in Adult Correctional Facilities,,, +Count_Person_ResidesInCollegeOrUniversityStudentHousing,Number of People Residing in College Or University Student Housing,,, +Count_Person_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,Number of School Enrolled People Residing in College Or University Student Housing,,, +Count_Person_ResidesInGroupQuarters,Number of People Residing in Group Quarters,,, +Count_Person_ResidesInGroupQuarters_EnrolledInSchool,Number of School Enrolled People Residing in Group Quarters,,, +Count_Person_ResidesInHousehold,Number of People Residing in Household,,, +Count_Person_ResidesInInstitutionalizedGroupQuarters,Number of People Residing in Institutionalized Group Quarters,,, +Count_Person_ResidesInNoninstitutionalizedGroupQuarters,Number of People Residing in Noninstitutionalized Group Quarters,,, +Count_Person_ResidesInNursingFacilities,Number of People Residing in Nursing Facilities,,, +Count_Person_Rural,number of people living in rural areas,,, +Count_Person_Rural_BelowPovertyLevelInThePast12Months,number of people living in rural areas and below poverty line,,, +Count_Person_Rural_Female,Number of females living in rural areas,,, +Count_Person_Rural_Male,Number of males living in rural areas,,, +Count_Person_ScheduledCaste,Number of scheduled caste people,,, +Count_Person_ScheduledCaste_Female,Number of scheduled caste females,,, +Count_Person_ScheduledCaste_Illiterate,Number of illiterate scheduled caste people,,, +Count_Person_ScheduledCaste_Literate,Number of literate scheduled caste people,,, +Count_Person_ScheduledCaste_Male,Number of scheduled caste males,,, +Count_Person_ScheduledCaste_Rural,Number of rural scheduled caste people,,, +Count_Person_ScheduledCaste_Urban,Number of urban scheduled caste people,,, +Count_Person_ScheduledCaste_Workers,Number of scheduled caste workers,,, +Count_Person_ScheduledCaste_YearsUpto6,Number of scheduled caste people below 6 years,,, +Count_Person_ScheduledCaste_YearsUpto6_Female,Number of scheduled caste girls below 6 years,,, +Count_Person_ScheduledCaste_YearsUpto6_Male,Number of scheduled caste boys below 6 years,,, +Count_Person_ScheduledCaste_YearsUpto6_Rural,Number of rural scheduled caste people below 6 years,,, +Count_Person_ScheduledCaste_YearsUpto6_Urban,Number of urban scheduled caste people below 6 years,,, +Count_Person_ScheduledTribe,Number of scheduled tribe people,,, +Count_Person_ScheduledTribe_Female,Number of scheduled tribe females,,, +Count_Person_ScheduledTribe_Illiterate,Number of illiterate scheduled tribe people,,, +Count_Person_ScheduledTribe_Literate,Number of literate scheduled tribe people,,, +Count_Person_ScheduledTribe_Male,Number of scheduled tribe males,,, +Count_Person_ScheduledTribe_Rural,Number of rural scheduled tribe people,,, +Count_Person_ScheduledTribe_Urban,Number of urban scheduled tribe people,,, +Count_Person_ScheduledTribe_Workers,Number of scheduled tribe workers,,, +Count_Person_ScheduledTribe_YearsUpto6,Number of scheduled tribe people below 6 years,,, +Count_Person_ScheduledTribe_YearsUpto6_Female,Number of scheduled tribe girls below 6 years,,, +Count_Person_ScheduledTribe_YearsUpto6_Male,Number of scheduled tribe boys below 6 years,,, +Count_Person_ScheduledTribe_YearsUpto6_Rural,Number of rural scheduled tribe people below 6 years,,, +Count_Person_ScheduledTribe_YearsUpto6_Urban,Number of urban scheduled tribe people below 6 years,,, +Count_Person_SelfCareDifficulty,Number of prople with self care disability,,, +Count_Person_Separated,Number of people who are seperated,,, +Count_Person_Separated_ResidesInAdultCorrectionalFacilities,Number of people who are seperated and reside in adult correctional facilities,,, +Count_Person_Separated_ResidesInCollegeOrUniversityStudentHousing,number of people who are seperated and reside in college or university student housing,,, +Count_Person_Separated_ResidesInGroupQuarters,number of people who are seperated and reside in group quarters,,, +Count_Person_Separated_ResidesInInstitutionalizedGroupQuarters,number of people who are seperated and reside in institutionalized group quarters,,, +Count_Person_Separated_ResidesInNoninstitutionalizedGroupQuarters,number of people who are seperated and reside in non institutionalized group quarters,,, +Count_Person_Separated_ResidesInNursingFacilities,number of people who are seperated and reside in nursing facilities,,, +Count_Person_SpeakEnglishNotAtAll,Number of people do not speak english at all,,, +Count_Person_SpeakEnglishNotWell,Number of people do not speak english well,,, +Count_Person_SpeakEnglishWell,Number of people who speak english well,,, +Count_Person_TwoOrMoreRaces,Number of people with multi races,,, +Count_Person_Unemployed,Number of unemployed people,,, +Count_Person_Upto4Years_Female_Overweight_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are overweight,,, +Count_Person_Upto4Years_Female_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are severely wasting,,, +Count_Person_Upto4Years_Female_Wasting_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are wasting,,, +Count_Person_Upto4Years_Male_Overweight_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are overweight,,, +Count_Person_Upto4Years_Male_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are severely wasting,,, +Count_Person_Upto4Years_Male_Wasting_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are wasting,,, +Count_Person_Upto4Years_Overweight_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are overweight,,, +Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are severely wasting,,, +Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are wasting,,, +Count_Person_Urban,Number of people living in urban areas,,, +Count_Person_Urban_BelowPovertyLevelInThePast12Months,Number of people living in urban areas and below poverty level in the past 12 months,,, +Count_Person_Urban_Female,Number of females living in urban areas,,, +Count_Person_Urban_Male,Number of males living in urban areas,,, +Count_Person_USCitizenBornInTheUnitedStates,Number of united states Citizens Born In The United States,,, +Count_Person_USCitizenByNaturalization,Number of united states Citizens By Naturalization,,, +Count_Person_Veteran,Number of veterans,,, +Count_Person_VisionDifficulty,Number of people With Vision Difficulty,,, +Count_Person_WhiteAlone,Number of white people,,, +Count_Person_Widowed,Number of widowed people,,, +Count_Person_WithDirectPurchaseHealthInsurance,Number of people with direct purchase health insurance,,, +Count_Person_WithDisability,Number of people with disabilities,,, +Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,Number of American Indian Or Alaska NativeAlone people with disabilities,,, +Count_Person_WithDisability_AsianAlone,Number of asian people with disabilities,,, +Count_Person_WithDisability_BlackOrAfricanAmericanAlone,Number of black or african american people with disabilities,,, +Count_Person_WithDisability_Female,Number of female people with disabilities,,, +Count_Person_WithDisability_HispanicOrLatino,Number of hispanic or latino people with disabilities,,, +Count_Person_WithDisability_Male,Number of male people with disabilities,,, +Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,Number of native hawaiian or other pacific islander people with disabilities,,, +Count_Person_WithDisability_OneRace,Number of one race people with disabilities,,, +Count_Person_WithDisability_TwoOrMoreRaces,Number of multi race people with disabilities,,, +Count_Person_WithDisability_WhiteAlone,Number of white people with disabiliites,,, +Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,Number of Non Hispanic or Latino White People With Disabilities,,, +Count_Person_WithEarnings_FullTimeYearRoundWorker,Number of full time year round workers with earnings,,, +Count_Person_WithEmployerBasedHealthInsurance,Number of people who have employer based health insurance,,, +Count_Person_WithHealthInsurance,Number of people with health insurance,,, +Count_Person_WithHealthInsurance_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people with health insurance,,, +Count_Person_WithHealthInsurance_AsianAlone,Number of asian people with health insurance,,, +Count_Person_WithHealthInsurance_BlackOrAfricanAmericanAlone,Number of Black Or African American people with health insurance,,, +Count_Person_WithHealthInsurance_HispanicOrLatino,Number of Hispanic or Latino people with health insurance,,, +Count_Person_WithHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people with health insurance,,, +Count_Person_WithHealthInsurance_WhiteAlone,Number of white people with health insurance,,, +Count_Person_WithMedicaidOrMeansTestedPublicCoverage,Number of people with Medicaid or means tested public coverage,,, +Count_Person_WithMedicareCoverage,Number of People With Medicare Coverage,,, +Count_Person_WithOwnChildrenUnder18,Number of People With Own Children Under 18,,, +Count_Person_WithOwnChildrenUnder18_Female,Number of Female People With Own Children Under 18,,, +Count_Person_WithOwnChildrenUnder18_Male,Number of Male People With Own Children Under 18,,, +Count_Person_WithPrivateHealthInsurance,Number of People With Private Health Insurance,,, +Count_Person_WithPublicHealthInsurance,Number of people with public health insurance,,, +Count_Person_WithTricareMilitaryHealthCoverage,Number of people who have tricare military health coverage,,, +Count_Person_WithVAHealthCare,Number of people with VA health care,,, +Count_Person_WorkedFullTime,Number of males who have worked before,,, +Count_Person_Workers,number of workers,,, +Count_Person_Workers_Female,Number of female workers,,, +Count_Person_Workers_Male,Number of Male Workers,,, +Count_Person_Workers_Rural,Number of Workers Living in Rural Areas,,, +Count_Person_Workers_Urban,Number of Workers Living in Urban Areas,,, +dc/twlffl9b5vgn3,Number of divorced people who are foreign born,,, +dc/70zj83ev915f8,Number of males who are married,,, +dc/dyhxtqe2pxhl5,Number of foreign born people with no income,,, +dc/qj9v0vqzp9vlg,Number of foreign born widowed people,,, +dc/gvnh5cpl9h1rf,Number of people with income who are foreign born,,, +dc/0gettc3bc60cb,Number of peole who drive to work,,, +dc/h7ft916g93ys2,Number of people whose commute time to work is 90 minutes or longer,,, +dc/fyc3yvjy0xw6g,Number of people whose commute time to work is 5 minutes or less,,, +dc/hbkh95kc7pkb6,Number of people who take public transportation to work,,, +dc/vp8cbt6k79t94,Number of people walking to work,,, +dc/6rltk4kf75612,Number of People working at home,,, +dc/4qtse8536dg63,Number of female American Indian Or Alaska Native With Bachelor or higher Degree,,, +dc/eg6rrdr1tkf76,Number of female asian With Bachelor or higher Degree,,, +dc/t7403chwvspm,Number of female Black Or African American With Bachelor or higher Degree,,, +dc/06f0jf8xvzw4f,Number of female hispanic or latino With Bachelor or higher Degree,,, +dc/v7yl3k9w3h7e8,Number of female Native Hawaiian Or Other Pacific Islander With Bachelor or higher Degree,,, +dc/hyfn2tlyz48lb,Number of multi races female With Bachelor or higher Degree,,, +dc/5hc4etrfyj9qg,Number of white female With Bachelor or higher Degree,,, +dc/4j5t00e5s5el3,Number of people aged 25 and older with an education level of kindergarten or lower,,, +dc/mqxdr821c7kw3,Number of American Indian Or Alaska Native females with some college education,,, +dc/whn99h1l0xgth,Number of Asian females who have attended some college,,, +dc/56md3ndhrmvm7,Number of Black or African American females who have attended some college,,, +dc/3w039ndqy7qv1,Number of Hispanic or Latino females who have attended some college,,, +dc/kpcfmb6lp3zpd,Number of Native Hawaiian or Other Pacific Islander females who have attended some college,,, +dc/epw58ne8mytn5,Number of females of some other race who have attended some college,,, +dc/q98jxycvs422f,Number of muti races females who have attended some college,,, +dc/9sneyc8lpk8dc,Number of White females who have attended some college,,, +dc/5qnjtqc0w783b,Number of American Indian or Alaska Native people currently enrolled in school,,, +dc/x4jl7c411edy9,Number of American Indian or Alaska Native people currently enrolled in school,,, +dc/km8en9ep7bwh6,Number of asian people currently enrolled in school,,, +dc/nvfkved5p7pv1,Number of asian people not currently enrolled in school,,, +dc/mwbmxs2q9zcgd,Number of American Indian or Alaska Native people enrolled in college or undergraduate years,,, +dc/nhmjhp72kjr48,Number of asian people enrolled in college or undergraduate years,,, +dc/wjtdrd9wq4m2g,Number of Black Or African American people enrolled in college or undergraduate years,,, +dc/0jtctjm33mgh1,Number of Hispanic or Latino people enrolled in college or undergraduate years,,, +dc/1t989xd1tn701,Number of Native Hawaiian or other Pacific Islander people enrolled in college or undergraduate years,,, +dc/zv5g19y8dl9r1,Number of people of multi races enrolled in college undergraduate years,,, +dc/55d9n710f1l43,Number of white people enrolled in college undergraduate years,,, +dc/qnphlls92tvs9,Number of American Indian or Alaska Native people enrolled in kindergarten,,, +dc/1c4zcyw02n71g,Number of asian people enrolled in kindergarten,,, +dc/ns1rqx6wy9909,Number of Black Or African American people enrolled in kindergarten,,, +dc/7g77dy8hfb1rg,Number of Hispanic or Latino people enrolled in kindergarten,,, +dc/556pqlh586bmc,Number of Native Hawaiian or other Pacific Islander people enrolled in kindergarten,,, +dc/3n8g9we5yv7th,Number of people of multi races enrolled in kindergarten,,, +dc/gr3zem8shyhbf,Number of white people enrolled in kindergarten,,, +dc/7fdfhnnjr5sh8,Number of American Indian or Alaska Native people enrolled in graduate or professional school,,, +dc/zmp6qzgzp7ly2,Number of asian people enrolled in graduate or professional school,,, +dc/3z6z9w930dl7b,Number of Black Or African American people enrolled in graduate or professional school,,, +dc/9cqv67nn7pn1b,Number of Hispanic or Latino people enrolled in graduate or professional school,,, +dc/fmx7fkrpd3jl2,Number of Native Hawaiian or other Pacific Islander people enrolled in graduate or professional school,,, +dc/kz9r60zp6s32b,Number of people of multi races enrolled in graduate or professional school,,, +dc/h8p2m5rx43j3b,Number of white people enrolled in graduate or professional school,,, +dc/fh4td3znm3l4g,Number of American Indian or Alaska Native people enrolled in high school,,, +dc/1kt512ynvpmc2,Number of asian people enrolled in high school,,, +dc/3bg4r46ly61q9,Number of Black Or African American people enrolled in high school,,, +dc/cc8wk2n0ywd9,Number of Hispanic or Latino people enrolled in high school,,, +dc/dxsxcw009pdm4,Number of Native Hawaiian or other Pacific Islander people enrolled in high school,,, +dc/g8537zqf45wl3,Number of people of multi races enrolled in high school,,, +dc/4hzyqndyzntm,Number of white people enrolled in high school,,, +dc/njgzb8knf11n8,Number of american indian or alaska native people enrolled in middle school,,, +dc/g4fthg3t3y5td,Number of asian people currently enrolled in middle school,,, +dc/e2szvml8jkld8,Number of Black Or African American people enrolled in middle school,,, +dc/zvr6djt1p9gj3,Number of hispanic or latino people enrolled in middle school,,, +dc/c57vzg7l74577,Number of native hawaiian or other pacific islander people enrolled in middle school,,, +dc/b3nmcj3w1lhed,Number of multi races people enrolled in middle school,,, +dc/qvf1yrhwzp8rd,Number of white people enrolled in middle school,,, +dc/p4jzvj8q1lnmd,Number of American Indian or Alaska Native people enrolled in primary school,,, +dc/x9e7150515yt7,Number of asian people enrolled in primary school,,, +dc/e4y4hqq6mjfsh,Number of Black Or African American people enrolled in primary school,,, +dc/68cg2z97cpl7d,Number of hispanic or latino people enrolled in primary school,,, +dc/wk2vjrzfgyq5d,Number of native hawaiian or other pacific islander people enrolled in primary school,,, +dc/jhjdplbeg26k1,Number of multi races people enrolled in primary school,,, +dc/bf85zc6wypd2h,Number of white people enrolled in primary school,,, +dc/0yv0ry7tjmwzc,Number of females enrolled in college undergraduate years,,, +dc/g8kg52zcxzw9f,Number of females enrolled in kindergarten,,, +dc/pltrqb2ng8dp8,Number of males enrolled in college undergraduate years,,, +dc/p34mhcpgtth76,Number of males enrolled in kindergarten,,, +dc/8cnhmxe67qddf,Number of native hawaiian or other pacific islander people currently enrolled in school,,, +dc/7nqp2vc6y6fef,Number of native hawaiian or other pacific islander people not currently enrolled in school,,, +dc/4wdtyd2bbf9m9,Number of multi races people currently enrolled in school,,, +dc/5blsqw3w9jmnc,Number of multi races people not currently enrolled in school,,, +dc/zq864lhfql079,Number of white people currently enrolled in school,,, +dc/mr1f76pb6yq98,Number of white people not currently enrolled in school,,, +dc/1lm9k2vdxj4c6,Number of foreign born people who speak Asian and Pacific Island languages at home,,, +dc/wbjmvkyqf6dm3,Number of native born people who speak Asian and Pacific Island languages at home,,, +dc/6bkn9vt30f5c1,Number of foreign born American Indian or Alaska Native people,,, +dc/xdfcsgf05b4mc,Number of foreign born asian people,,, +dc/v7bhlqc1lfxlg,Number of foreign-born Black Or African American people,,, +dc/wpkpr906ft37g,Number of foreign-born Hispanic or Latino people,,, +dc/40724bjd19ej7,Number of foreign-born Native Hawaiian or other Pacific Islander people,,, +dc/29vy1f58gdm0g,Number of foreign-born multi races people,,, +dc/ym3bfmz5e91gg,Number of foreign-born white people,,, +dc/nhecfv83n1nt9,Number of American Indian or Alaska Native people who were citizens at birth,,, +dc/vxhvgzjhwwmj6,Number of asian people who are citizens at birth,,, +dc/ktf5098lxb8sc,Number of Black Or African American people who are citizens at birth,,, +dc/scnp6d6sv1jqd,Number of Hispanic or Latino people who are citizens at birth,,, +dc/b18vkxwgc8xbd,Number of Native Hawaiian or Other Pacific Islander who are citizens at birth,,, +dc/2xd2ktjs23hk3,Number of multi races people who are citizens at birth,,, +dc/jxd329x7k27fb,Number of white people who are citizens at birth,,, +Count_PrescribedFireEvent,Number of Prescribed Fires,,, +Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Number of mobile phone subscriptions per person,,, +Count_RipCurrentEvent,Number of rip current events,,, +Count_School_SeniorSecondarySchool_Grade1To10,Number of senior secondary schools with grades 1 to 10,,, +Count_SolarInstallation,Number of solar installations,,, +Count_SolarInstallation_Commercial,Number of solar installations in the commercial sector,,, +Count_SolarInstallation_Residential,Number of solar installations in the residential sector,,, +Count_StormSurgeTideEvent,Number of storm surge or tide events,,, +Count_StrongWindEvent,Number of strong wind events,,, +Count_Student,Number of students,,, +Count_Student_AdultEducation,Number of Students Enrolled in Adult Education Programs,,, +Count_Student_Asian,Number of Asian students,,, +Count_Student_BachelorsDegree,Number of Students Enrolled in Bachelors Degree Programs,,, +Count_Student_Black,Number of Black students,,, +Count_Student_BRAHighSchool,Number of Students Enrolled in BRA High School Programs,,, +Count_Student_BrazilPreVestibular,Number of Students Enrolled in Brazil Pre Vestibular Programs,,, +Count_Student_Female,Number of Female students,,, +Count_Student_HawaiianNativeOrPacificIslander,Number of Students who are Hawaiian Native Or Pacific Islander,,, +Count_Student_HispanicOrLatino,Number of Students who are Hispanic Or Latino,,, +Count_Student_Male,Number of Male Students,,, +Count_Student_MastersDegreeOrHigher,Number of Students Enrolled in Masters Degree Or Higher Programs,,, +Count_Student_Nursery,Number of Students Enrolled in Nursery Programs,,, +Count_Student_PreKindergarten,Number of Students Enrolled in Pre Kindergarten Programs,,, +Count_Student_PrimaryEducation,Number of Students in primary education,,, +Count_Student_PrimaryEducation_PrivateSchool,Number of Students in private primary school,,, +Count_Student_PrimaryEducation_PublicSchool,Number of Students in public primary school,,, +Count_Student_PrivateSchool,Number of Students in Private School,,, +Count_Student_PublicSchool,Number of Students in Public School,,, +Count_Student_TwoOrMoreRaces,Number of Students who are muti race,,, +Count_Student_White,Number of Students who are White,,, +Count_Teacher,Number of teachers,,, +Count_Teacher_ElementaryTeacher,Number of elementary school teachers,,, +Count_Teacher_SecondaryTeacher,Number of secondary school teachers,,, +Count_Teacher_UniversityAndCollegeTeacher,Number of university and college teachers,,, +Count_ThunderstormWindEvent,Number of thunderstorm wind events,,, +Count_TornadoEvent,Number of tornado events,,, +Count_TropicalStormEvent,Number of tropical storm events,,, +Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,Number of state unemployment insurance claims,,, +Count_VolcanicAshEvent,Number of volcanic events,,, +Count_WasteGenerated_Processed_AsAFractionOf_Count_WasteGenerated,Percentage of waste generated that are processed,,, +Count_WaterspoutEvent,Number of waterspouts,,, +Count_WetBulbTemperatureEvent,Number of wet bulb temperature events,,, +Count_WildfireEvent,Number of wild fires,,, +Count_WildlandFireEvent,Number of wild land fires,,, +Count_WinterStormEvent,Number of winter storms,,, +Count_WinterWeatherEvent,Number of winter weather events,,, +Count_Worker_NAICSAccommodationFoodServices,Number of people Working in the Accommodation and Food Services Industry,,, +Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Number of people Working in the Administrative Support and Waste Management and Remediation Services Industry,,, +Count_Worker_NAICSAgricultureForestryFishingHunting,"Number of people work in Agriculture, Forestry, Fishing And Hunting",,, +dc/63gkdt13bmsv8,Number of people who work in air transportation,,, +dc/z27q5dymqyrnf,Number of people who work in apparel manufacturing,,, +Count_Worker_NAICSArtsEntertainmentRecreation,"Number of people who work in Arts, entertainment and recreation",,, +dc/rlk1yxmkk1qqg,Number of people who work in beverage and tobacco product manufacturing,,, +dc/hlxvn1t8b9bhh,Number of people who work in cattle ranching and farming,,, +dc/eh7s78v8s14l9,Number of people who work in chemical manufacturing,,, +Count_Worker_NAICSConstruction,Number of people who work in construction,,, +dc/n87t9dkckzxc8,Number of people who work as couriers and messengers,,, +dc/15lrzqkb6n0y7,Number of people who work in crop production,,, +Count_Worker_NAICSEducationalServices,Number of people who work in educational services,,, +Count_Worker_NAICSFinanceInsurance,Number of people who work in finance and insurance,,, +dc/107jnwnsh17xb,Number of people who work in food manufacturing,,, +dc/5br285q68be6,Number of people who work in Gambling Industries,,, +dc/c0wxmt45gffxc,Number of people who work in general merchandise stores,,, +Count_Worker_NAICSGoodsProducing,Number of people Working in the Goods Producing Industry,,, +Count_Worker_NAICSHealthCareSocialAssistance,Number of people Working in the Health Care and Social Assistance Industry,,, +Count_Worker_NAICSInformation,Number of people Working in the Information Industry,,, +dc/7bck6xpkc205c,number of workers in the leather and allied product manufacturing industry,,, +Count_Worker_NAICSManagementOfCompaniesEnterprises,Number of people Working in the Management of Companies and Enterprises Industry,,, +dc/ndg1xk1e9frc2,Number of people employed in the manufacturing sector,,, +Count_Worker_NAICSMiningQuarryingOilGasExtraction,"Number of people Working in the Mining, Quarrying, Oil, and Gas Extraction Industry",,, +dc/4mm2p1rxr5wz4,Number of people who work in store retailers,,, +Count_Worker_NAICSNonclassifiable,Number of people Working in the Nonclassifiable Industry,,, +dc/90nswpkp8wlw5,Number of people who work in nonmetallic mineral product manufacturing,,, +dc/2etwgx6vecreh,Number of people who work in nonstore retailers,,, +dc/6n6l2wrzv7473,Number of people who work in paper manufacturing,,, +dc/34t2kjrwbjd31,Number of people who work in petroleum and coal products manufacturing,,, +dc/yn0h4nw4k23f1,Number of people who work in pipeline transportation,,, +dc/qnz3rlypmfvw6,Number of people who work in plastics and rubber products manufacturing,,, +dc/8j8w7pf73ekn,Number of people who work in postal service,,, +dc/vp4cplffwv86g,Number of people who work in printing and related support activities,,, +Count_Worker_NAICSProfessionalScientificTechnicalServices,"Number of people Working in the Professional, Scientific, and Technical Services Industry",,, +Count_Worker_NAICSPublicAdministration,Number of people Working in the Public Administration Industry,,, +dc/3kwcvm428wpq4,Number of people who work in rail transportation,,, +Count_Worker_NAICSRealEstateRentalLeasing,Number of people Working in the Real Estate and Rental and Leasing Industry,,, +dc/p69tpsldf99h7,Number of people working in the retail trade industry,,, +Count_Worker_NAICSServiceProviding,Number of people Working in the Service Providing Industry,,, +dc/e2zdnwjjhyj36,"Number of people working in sports, hobby, music instruments, and book stores",,, +dc/bb4peddkgmqe7,Number of workers working in support activities for transportation,,, +dc/tqgf8zv96r5t8,Number of people who work in textile fabric finishing and fabric coating mills,,, +dc/8b3gpw1zyr7bf,Number of people who work in textile mills,,, +dc/dy2k68mmhenfd,Number of people who work in textile product mills,,, +Count_Worker_NAICSTotalAllIndustries,Number of people who work in all industries,,, +dc/bwr1l8y9we9k7,Number of people who work in transit and ground passenger transportation,,, +dc/8p97n7l96lgg8,Number of people who work in transportation and warehousing,,, +dc/k3hehk50ch012,Number of people who work in truck transportation,,, +Count_Worker_NAICSUtilities,Number of people who work in utilities,,, +dc/w1tfjz3h6138,Number of people who work in warehousing and storage,,, +dc/h1jy2glt2m7e6,Number of people who work in water transportation,,, +Count_Worker_NAICSWholesaleTrade,Number of people Working in the Wholesale Trade Industry,,, +dc/ws19bm1hl105b,Number of people who work in wood product manufacturing,,, +CountOfClaims_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,Number of Flood Insurance Claims for Building Structures and Contents,,, +CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedCase,Total confirmed COVID-19 cases,,, +CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,Total confirmed or probable COVID-19 cases,,, +CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,Total COVID-19 deaths,,, +CumulativeCount_MedicalTest_ConditionCOVID_19,Total COVID-19 tests performed,,, +CumulativeCount_Vaccine_COVID_19_Administered,Total COVID-19 vaccines administered,,, +DewPointTemperature_SurfaceLevel,Surface-Level Dew Point Temperature,,, +ExchangeRate_Currency_Standardized,exchange rates of Standard Local Currency (SLC) per US dollar,,, +Expenses_Farm,total farm expenses,,, +FemaCommunityResilience_NaturalHazardImpact,FEMA Community Resilience to Natural Hazard Impact,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact,FEMA National Risk Index for Natural Hazard Impact,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_AvalancheEvent,FEMA National Risk Index for Avalanche,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_CoastalFloodEvent,FEMA National Risk Index for Coastal Flood,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_ColdWaveEvent,FEMA National Risk Index for Cold Wave,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_DroughtEvent,FEMA National Risk Index for Drought,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_EarthquakeEvent,FEMA National Risk Index for Earthquake,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HailEvent,FEMA National Risk Index for Hail,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HeatWaveEvent,FEMA National Risk Index for Heat Wave,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HurricaneEvent,FEMA National Risk Index for Hurricane,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_IceStormEvent,FEMA National Risk Index for Ice Storm,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_LandslideEvent,FEMA National Risk Index for Landslide,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_LightningEvent,FEMA National Risk Index for Lightning,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_RiverineFloodingEvent,FEMA National Risk Index for Riverine Flooding,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_StrongWindEvent,FEMA National Risk Index for Strong Wind,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_TornadoEvent,FEMA National Risk Index for Tornado,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_TsunamiEvent,FEMA National Risk Index for Tsunami,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_VolcanicActivityEvent,FEMA National Risk Index for Volcanic Activity,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_WildfireEvent,FEMA National Risk Index for Wildfire,,, +FemaNaturalHazardRiskIndex_NaturalHazardImpact_WinterWeatherEvent,FEMA National Risk Index for Winter Weather,,, +FemaSocialVulnerability_NaturalHazardImpact,FEMA Social Vulnerability score to Natural Hazard Impact,,, +FertilityRate_Person_Female,Fertility rate,,, +GenderIncomeInequality_Person_15OrMoreYears_WithIncome,Income Inequality Between males and females,,, +GiniIndex_EconomicActivity,Gini Index; economic inequality,,, +GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,GDP change rate,,, +GrowthRate_Count_Person,Population change rate,,, +HeavyPrecipitationIndex,Heavy Precipitation Index,,, +Imports_EconomicActivity_CrudeOils,Amount of imported crude oils,,, +Imports_EconomicActivity_ElectronicComponents,Amount of imported Electronic Components,,, +Imports_EconomicActivity_IronAndSteel,Amount of imported Iron And Steel,,, +Imports_EconomicActivity_Pharmaceutical,Amount of imported Pharmaceutical,,, +Income_Farm,Farm incomes,,, +IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedCase,incremental count COVID-19 confirmed cases,,, +IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,incremental count of COVID-19 confirmed or probable cases,,, +IncrementalCount_MedicalConditionIncident_COVID_19_PatientDeceased,incremental count of COVID-19 deceased patients,,, +IncrementalCount_MedicalTest_ConditionCOVID_19,incremental count of COVID-19 tests,,, +IncrementalCount_Person,Population change,,, +IncrementalCount_Vaccine_COVID_19_Administered,incremental count of COVID-19 vaccinations administered,,, +indianCensus/Count_Person_Religion_Buddhist,Number of Buddhist people,,, +indianCensus/Count_Person_Religion_Buddhist_Female,Number of Buddhist females,,, +indianCensus/Count_Person_Religion_Buddhist_Illiterate,Number of illiterate Buddhist people,,, +indianCensus/Count_Person_Religion_Buddhist_Literate,Number of literate Buddhist people,,, +indianCensus/Count_Person_Religion_Buddhist_Male,Number of Buddhist males,,, +indianCensus/Count_Person_Religion_Buddhist_Rural,Number of Buddhist people who live in rural areas,,, +indianCensus/Count_Person_Religion_Buddhist_Urban,Number of Buddhist people who live in urban areas,,, +indianCensus/Count_Person_Religion_Buddhist_Workers,Number of Buddhist workers,,, +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6,Number of Buddhist children,,, +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Female,Number of Buddhist girls,,, +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Male,Number of Buddhist boys,,, +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural,Number of Buddhist children in rural areas,,, +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban,Number of Buddhist children in urban areas,,, +indianCensus/Count_Person_Religion_Christian,Number of Christian people,,, +indianCensus/Count_Person_Religion_Christian_Female,Number of Christian females,,, +indianCensus/Count_Person_Religion_Christian_Illiterate,Number of illiterate Christians,,, +indianCensus/Count_Person_Religion_Christian_Literate,Number of literate Christians,,, +indianCensus/Count_Person_Religion_Christian_Male,Number of Christian males,,, +indianCensus/Count_Person_Religion_Christian_Rural,Number of Christians who live in rural areas,,, +indianCensus/Count_Person_Religion_Christian_Urban,Number of Christians who live in urban areas,,, +indianCensus/Count_Person_Religion_Christian_Workers,Number of Christian workers,,, +indianCensus/Count_Person_Religion_Christian_YearsUpto6,Number of Christian children,,, +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Female,Number of Christian girls,,, +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Male,Number of Christian boys,,, +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural,Number of Christian children in rural areas,,, +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban,Number of Christian children in urban areas,,, +indianCensus/Count_Person_Religion_Hindu,Number of Hindus,,, +indianCensus/Count_Person_Religion_Hindu_Female,Number of Hindu females,,, +indianCensus/Count_Person_Religion_Hindu_Illiterate,Number of Hindu males,,, +indianCensus/Count_Person_Religion_Hindu_Literate,Number of literate Hindus,,, +indianCensus/Count_Person_Religion_Hindu_Male,Number of Hindu men,,, +indianCensus/Count_Person_Religion_Hindu_Rural,Number of Hindus who live in rural areas,,, +indianCensus/Count_Person_Religion_Hindu_Urban,Number of Hindus who live in urban areas,,, +indianCensus/Count_Person_Religion_Hindu_Workers,Number of Hindu workers,,, +indianCensus/Count_Person_Religion_Hindu_YearsUpto6,Number of Hindu children,,, +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Female,Number of Hindu girls,,, +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Male,Number of Hindu boys,,, +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural,Number of Hindu children in rural areas,,, +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban,Number of Hindu children in urban areas,,, +indianCensus/Count_Person_Religion_Jain,Number of Jains,,, +indianCensus/Count_Person_Religion_Jain_Female,Number of Jain females,,, +indianCensus/Count_Person_Religion_Jain_Illiterate,Number of illiterate Jains,,, +indianCensus/Count_Person_Religion_Jain_Literate,Number of literate Jains,,, +indianCensus/Count_Person_Religion_Jain_Male,Number of Jain males,,, +indianCensus/Count_Person_Religion_Jain_Rural,Number of Jains who live in rural areas,,, +indianCensus/Count_Person_Religion_Jain_Urban,Number of Jains who live in urban areas,,, +indianCensus/Count_Person_Religion_Jain_Workers,Number of Jain workers,,, +indianCensus/Count_Person_Religion_Jain_YearsUpto6,Number of Jain children,,, +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Female,Number of Jain girls,,, +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Male,Number of Jain boys,,, +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural,Number of Jain children in rural areas,,, +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban,Number of Jain children urban areas,,, +indianCensus/Count_Person_Religion_Muslim,Number of Muslims,,, +indianCensus/Count_Person_Religion_Muslim_Female,Number of Muslim females,,, +indianCensus/Count_Person_Religion_Muslim_Illiterate,Number of illiterate Muslims,,, +indianCensus/Count_Person_Religion_Muslim_Literate,Number of literate Muslims,,, +indianCensus/Count_Person_Religion_Muslim_Male,Number of Muslim males,,, +indianCensus/Count_Person_Religion_Muslim_Rural,Number of Muslims who live in rural areas,,, +indianCensus/Count_Person_Religion_Muslim_Urban,Number of Muslims who live in urban areas,,, +indianCensus/Count_Person_Religion_Muslim_Workers,Number of Muslim workers,,, +indianCensus/Count_Person_Religion_Muslim_YearsUpto6,Number of Muslim children,,, +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Female,Number of Muslim girls,,, +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Male,Number of Muslim boys,,, +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural,Number of Muslim children in rural areas,,, +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban,Number of Muslim children in urban areas,,, +indianCensus/Count_Person_Religion_Sikh,Number of Sikhs,,, +indianCensus/Count_Person_Religion_Sikh_Female,Number of Sikh females,,, +indianCensus/Count_Person_Religion_Sikh_Illiterate,Number of illiterate Sikhs,,, +indianCensus/Count_Person_Religion_Sikh_Literate,Number of literate Sikhs,,, +indianCensus/Count_Person_Religion_Sikh_Male,Number of Sikh males,,, +indianCensus/Count_Person_Religion_Sikh_Rural,Number of Sikhs who live in rural areas,,, +indianCensus/Count_Person_Religion_Sikh_Urban,Number of Sikhs who live in urban areas,,, +indianCensus/Count_Person_Religion_Sikh_Workers,Number of Sikh workers,,, +indianCensus/Count_Person_Religion_Sikh_YearsUpto6,Number of Sikh children,,, +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Female,Number of Sikh girls,,, +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Male,Number of Sikh boys,,, +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural,Number of Sikh children in rural areas,,, +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban,Number of Sikh children in urban areas,,, +InflationAdjustedGDP,Inflation Adjusted GDP,,, +InsuredUnemploymentRate_Person_WithCoveredEmployment_MovingAverage1WeekWindow,Insured Unemployment Rate,,, +LandCoverFraction_BareSparseVegetation,Percent of land covered by Bare Sparse Vegetation,,, +LandCoverFraction_BuiltUp,Percent of land covered by Built Up,,, +LandCoverFraction_Cropland,Percent of land covered by Cropland,,, +LandCoverFraction_Forest,Percent of land covered by Forest,,, +LandCoverFraction_HerbaceousVegetation,Percent of land covered by Herbaceous Vegetation,,, +LandCoverFraction_MossAndLichen,Percent of land covered by Moss And Lichen,,, +LandCoverFraction_PermanentWater,Percent of land covered by Permanent Water,,, +LandCoverFraction_SeasonalWater,Percent of land covered by Seasonal Water,,, +LandCoverFraction_Shrubland,Percent of land covered by Shrubland,,, +LandCoverFraction_SnowIce,Percent of land covered by Snow Ice,,, Length_Transportation_NationalHighway,Length of national highway,,, -Length_Transportation_Railroad,Length of railway route,,, +Length_Transportation_Railroad,Length of rail road,,, Length_Transportation_Road,Length of road,,, Length_Transportation_StateHighway,Length of state highway,,, -LifeExpectancy_Person,Life Expectancy of a Population,Average Lifespan of a Population,,Life Expectancy of a population; how long do people live;Average lifespan of the population; Mean lifespan of the population; Median lifespan of the population; Typical lifespan of the population; Average life expectancy of the population; -LifeExpectancy_Person_Female,"Life expectancy at birth, female (years)",Female Life Expectancy,,Life expectancy of females at birth; life expectancy of women; how long do women live; -LifeExpectancy_Person_Male,Life Expectancy: Male,Male Life Expectancy,,Life Expectancy of Males at birth; life expectancy of men; how long do men live; -MapFacts/Count_hiking_area,Number of hiking areas,hiking trails; trekking area,,Number of hiking areas; -MapFacts/Count_park,Number of Parks,count of parks; recreational parks,,Number of parks; -MarketValue_Farm_AgriculturalProducts,Market Value of Farm: Agricultural Products,Total Market Value of Agricultural Farms,,total market value of agricultural farms; -MarketValue_Farm_Crops,Market Value of Farm: Crops,Market Value of Farms Growing Crops,,market value of farms growing crops; -MarketValue_Farm_LivestockAndPoultry,Market Value of Farm: Livestock And Poultry,Market Value of Livestock and Poultry on a Farm,,market value of farms growing livestock and poultry; -MarketValue_Farm_MachineryAndEquipment,Market Value of Farm: Machinery And Equipment,Market Value of Farm Machinery and Equipment,,Market value of farm machinery and equipment; -Mean_Area_Farm,Mean Area of Farm,Mean Area of Farm,,Mean area of farm; -Mean_Concentration_AirPollutant_DieselPM,,Mean Concentration of Diesel PM Air Pollutant,, -Mean_Concentration_AirPollutant_Ozone,,Mean Concentration of Ozone Air Pollutant,, -Mean_Concentration_AirPollutant_PM2.5,,Mean Concentration of PM2.5 Air Pollutant,, -Mean_Earnings_Person_Female,"Mean Earnings: Female, With Earnings",Average Earnings for Females,,Average income for females With Earnings; -Mean_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,"Mean Earnings: Female, With Earnings, Adult Correctional Facilities",Average Earnings for Females Living in Adult Correctional Facilities,,"Average income for females With Earnings, in Adult Correctional Facilities;" -Mean_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Mean Earnings: Female, With Earnings, College or University Student Housing",Average Earnings for Females Living in College or University Student Housing,,"Average income for females With Earnings, in College or University Student Housing;" -Mean_Earnings_Person_Female_ResidesInGroupQuarters,"Mean Earnings: Female, With Earnings, Group Quarters",Average Earnings for Females Living in Group Quarters,,"Average income for females With Earnings, in Group Quarters;" -Mean_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Mean Earnings: Female, With Earnings, Institutionalized Group Quarters",Average Earnings for Females Living in Institutionalized Group Quarters,,"Average income for females With Earnings, in Institutionalized in Group Quarters;" -Mean_Earnings_Person_Female_ResidesInJuvenileFacilities,"Mean Earnings: Female, With Earnings, Juvenile Facilities",Average Earnings for Females Living in Juvenile Facilities,,"Average income for females With Earnings, in Juvenile Facilities;" -Mean_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Mean Earnings: Female, With Earnings, Military Quarters or Military Ships",Average Earnings for Females Living in Military Quarters or Ships,,"Average income for females With Earnings, in Military Quarters or Military Ships;" -Mean_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Mean Earnings: Female, With Earnings, Noninstitutionalized Group Quarters",Average Earnings for Females Living in Noninstitutionalized Group Quarters,,"Average income for females With Earnings, in Noninstitutionalized in Group Quarters;" -Mean_Earnings_Person_Female_ResidesInNursingFacilities,"Mean Earnings: Female, With Earnings, Nursing Facilities",Average Earnings for Females Living in Nursing Facilities,,"Average income for females With Earnings, in Nursing Facilities;" -Mean_Earnings_Person_Male,"Mean Earnings: Male, With Earnings",Average Earnings for Males,,Average income for males With Earnings; -Mean_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,"Mean Earnings: Male, With Earnings, Adult Correctional Facilities",Average Earnings for Males Living in Adult Correctional Facilities,,"Average income for males With Earnings, in Adult Correctional Facilities;" -Mean_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Mean Earnings: Male, With Earnings, College or University Student Housing",Average Earnings for Males Living in College or University Student Housing,,"Average income for males With Earnings, in College or University Student Housing;" -Mean_Earnings_Person_Male_ResidesInGroupQuarters,"Mean Earnings: Male, With Earnings, Group Quarters",Average Earnings for Males Living in Group Quarters,,"Average income for males With Earnings, in Group Quarters;" -Mean_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,"Mean Earnings: Male, With Earnings, Institutionalized Group Quarters",Average Earnings for Males Living in Institutionalized Group Quarters,,"Average income for males With Earnings, in Institutionalized in Group Quarters;" -Mean_Earnings_Person_Male_ResidesInJuvenileFacilities,"Mean Earnings: Male, With Earnings, Juvenile Facilities",Average Earnings for Males Living in Juvenile Facilities,,"Average income for males With Earnings, in Juvenile Facilities;" -Mean_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Mean Earnings: Male, With Earnings, Military Quarters or Military Ships",Average Earnings for Males Living in Military Quarters or Ships,,"Average income for males With Earnings, in Military Quarters or Military Ships;" -Mean_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Mean Earnings: Male, With Earnings, Noninstitutionalized Group Quarters",Average Earnings for Males Living in Noninstitutionalized Group Quarters,,"Average income for males With Earnings, in Noninstitutionalized in Group Quarters;" -Mean_Earnings_Person_Male_ResidesInNursingFacilities,"Mean Earnings: Male, With Earnings, Nursing Facilities",Average Earnings for Males Living in Nursing Facilities,,"Average income for males With Earnings, in Nursing Facilities;" -Mean_Expenses_Farm,Mean Expenses of Farm,Mean Expenses of Farm,,mean expenses of farm; -Mean_Income_Household,Mean Income of Household: With Income,Average Income for Households,,Mean Income of Household: With Income;Average income of households in the area; Mean income of homes in the area; Median income of households in the region; Average income of homes in the region; Mean income of households in the area; -Mean_Income_Household_FamilyHousehold,"Mean Income of Household: Family Household, With Income",Average Income for Family Households,,Mean Income of Household: in a family household with Income; -Mean_Income_Household_MarriedCoupleFamilyHousehold,"Mean Income of Household: Married Couple Family Household, With Income",Average Income for Married Couple Family Households,,Mean Income of Household: a Married Couple in a family household with Income; -Mean_Income_Household_NonfamilyHousehold,"Mean Income of Household: Nonfamily Household, With Income",Average Income for Nonfamily Households,,"Mean Income of Household: a Nonfamily Household, With Income;" -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FoodAndDrinksSector,Average inflation in consumer price index by Food and Beverages Sector.,,,inflation in consumer prices in food and drinks sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FuelAndLightSector,Average inflation in consumer price index by Fuel and Light Sector.,,,inflation in consumer prices in fuel and light sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_GeneralSector,Average inflation in consumer price index by General Sector.,,,inflation in consumer prices in general sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_UrbanHousingSector,Average inflation in consumer price index by Urban Housing Sector.,,,inflation in consumer prices in urban housing sector -Mean_MarketValue_Farm_AgriculturalProducts,Mean Market Value of Farm: Agricultural Products,Mean Market Value of Agricultural Farms,,mean market value of agricultural farms; -Mean_MarketValue_Farm_LandAndBuildings,Mean Market Value of Farm: Land And Buildings,Average Market Value of Land and Buildings on a Farm,,mean market value of land and buildings of farms; -Mean_MarketValue_Farm_MachineryAndEquipment,Mean Market Value of Farm: Machinery And Equipment,Mean Market Value of Farm Machinery and Equipment.,,Mean market value of farm machinery and equipment.; -Mean_NetMeasure_Income_Farm,Mean Income of Farm (Net Measure),Mean Income of Farm,,mean income of farm; -Mean_WagesMonthly_Worker,Mean Monthly Wages,Monthly wages of workers,,monthly wages; mean wages monthly; monthly worker wages;monthly income; monthly salary; -Median_Age_Person,Median Age,Median Age of Population,,Median Age;Median age of the population; Middle age of the population; Average age of the population; Mean age of the population; Typical age of the population; -Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,Median Age: American Indian or Alaska Native Alone,Median Age of American Indian or Alaska Native Population,,Median age for population identifying as American Indian or Alaska Native Alone; What is the median age of American Indian or Alaska Natives in; -Median_Age_Person_AsianAlone,Median Age: Asian Alone,Median Age of Asian Population,,Median age for population identifying as Asian Alone; -Median_Age_Person_BlackOrAfricanAmericanAlone,Median Age: Black or African American Alone,Median Age of Black or African American Population,,Median age for population identifying as Black or African American Alone; -Median_Age_Person_Female,Median Age: Female,Median Age of Females,,Median age for population identifying as Female; -Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,"Median Age: Female, American Indian or Alaska Native Alone",Median age of American Indian or Alaska Native Female Population,,"Median age for population identifying as Female, American Indian or Alaska Native Alone; median age of alaska native or native american women; What is the median age of American Indian or Alaska Native females in;" -Median_Age_Person_Female_AsianAlone,"Median Age: Female, Asian Alone",Median age of Asian Female Population,,"Median age for population identifying as Female, Asian Alone;" -Median_Age_Person_Female_BlackOrAfricanAmericanAlone,"Median Age: Female, Black or African American Alone",Median Age of Black or African American Female Population,,"Median age for population identifying as Female, Black or African American Alone;" -Median_Age_Person_Female_DivorcedInThePast12Months,"Median Age: Female, Divorced in The Past 12 Months",Median Age of Divorced Females in the Past 12 Months,,"Median age for population identifying as Female, Divorced in The Past 12 Months;" -Median_Age_Person_Female_ForeignBorn,"Median Age: Female, Foreign Born",Median Age of Foreign-Born Females,,"Median age for population identifying as Female, Foreign Born;" -Median_Age_Person_Female_HispanicOrLatino,"Median Age: Female, Hispanic or Latino",Median Age of Hispanic or Latino Females,,"Median age for population identifying as Female, Hispanic or Latino;" -Median_Age_Person_Female_MarriedInThePast12Months,"Median Age: Female, Married in The Past 12 Months",Median Age of Married Females in the Past 12 Months,,"Median age for population identifying as Female, a Married in The Past 12 Months;" -Median_Age_Person_Female_Native,"Median Age: Female, Native",Median Age of Females Born in the United States,,"Median age for population identifying as Female, Native;" -Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,"Median Age: Female, Native Hawaiian or Other Pacific Islander Alone",Median Age of Native Hawaiian or Other Pacific Islander Females,,"Median age for population identifying as Female, Native Hawaiian or Other Pacific Islander Alone;" -Median_Age_Person_Female_SomeOtherRaceAlone,"Median Age: Female, Some Other Race Alone",Median Age of Females of Some Other Race,,"Median age for population identifying as Female, Some Other Race Alone;" -Median_Age_Person_Female_TwoOrMoreRaces,"Median Age: Female, Two or More Races",Median Age of Females of Two or More Races,,"Median age for population identifying as Female, Two or More Races;" -Median_Age_Person_Female_WhiteAlone,"Median Age: Female, White Alone",Median Age of White Females,,"Median age for population identifying as Female, White Alone;" -Median_Age_Person_Female_WhiteAloneNotHispanicOrLatino,"Median Age: Female, White Alone Not Hispanic or Latino",Median Age of Non Hispanic or Latino White Females,,"Median age for population identifying as Female, White Alone Not Hispanic or Latino;" -Median_Age_Person_HispanicOrLatino,Median Age: Hispanic or Latino,Median Age of Hispanic or Latino Population,,Median age for population identifying as Hispanic or Latino; -Median_Age_Person_Male,Median Age: Male,Median Age of Males,,Median age for population identifying as Male; -Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,"Median Age: Male, American Indian or Alaska Native Alone",Median Age of American Indian or Alaska Native Males,,"Median age for population identifying as Male, American Indian or Alaska Native Alone;" -Median_Age_Person_Male_AsianAlone,"Median Age: Male, Asian Alone",Median Age of Asian Males,,"Median age for population identifying as Male, Asian Alone;" -Median_Age_Person_Male_BlackOrAfricanAmericanAlone,"Median Age: Male, Black or African American Alone",Median Age of Black or African American Males,,"Median age for population identifying as Male, Black or African American Alone;" -Median_Age_Person_Male_DivorcedInThePast12Months,"Median Age: Male, Divorced in The Past 12 Months",Median Age of Divorced Males in the Past 12 Months,,"Median age for population identifying as Male, Divorced in The Past 12 Months;" -Median_Age_Person_Male_ForeignBorn,"Median Age: Male, Foreign Born",Median Age of Foreign-Born Males,,"Median age for population identifying as Male, Foreign Born;" -Median_Age_Person_Male_HispanicOrLatino,"Median Age: Male, Hispanic or Latino",Median Age of Hispanic or Latino Males,,"Median age for population identifying as Male, Hispanic or Latino;" -Median_Age_Person_Male_MarriedInThePast12Months,"Median Age: Male, Married in The Past 12 Months",Median Age of Married Males in the Past 12 Months,,"Median age for population identifying as Male, a Married in The Past 12 Months;" -Median_Age_Person_Male_Native,"Median Age: Male, Native",Median Age of Males Born in the United States,,"Median age for population identifying as Male, Native;" -Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,"Median Age: Male, Native Hawaiian or Other Pacific Islander Alone",Median Age of Native Hawaiian or Other Pacific Islander Males,,"Median age for population identifying as Male, Native Hawaiian or Other Pacific Islander Alone;" -Median_Age_Person_Male_SomeOtherRaceAlone,"Median Age: Male, Some Other Race Alone",Median Age of Males of Some Other Race,,"Median age for population identifying as Male, Some Other Race Alone;" -Median_Age_Person_Male_TwoOrMoreRaces,"Median Age: Male, Two or More Races",Median Age of Males of Two or More Races,,"Median age for population identifying as Male, Two or More Races;" -Median_Age_Person_Male_WhiteAlone,"Median Age: Male, White Alone",Median Age of White Males,,"Median age for population identifying as Male, White Alone;" -Median_Age_Person_Male_WhiteAloneNotHispanicOrLatino,"Median Age: Male, White Alone Not Hispanic or Latino",Median Age of Non Hispanic or Latino White Males,,"Median age for population identifying as Male, White Alone Not Hispanic or Latino;" -Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,Median Age: Native Hawaiian or Other Pacific Islander Alone,Median Age of Native Hawaiian or Other Pacific Islander Population,,Median age for population identifying as Native Hawaiian or Other Pacific Islander Alone; -Median_Age_Person_NoHealthInsurance,"Median Age: Civilian, No Health Insurance, Non Institutionalized",Median Age of Population With No Health Insurance,,"Median age for population identifying as Civilian, No Health Insurance, Non Institutionalized;" -Median_Age_Person_NotAUSCitizen_Female_ForeignBorn,"Median Age: Not A US Citizen, Female, Foreign Born",Median Age of Foreign Born Females Who Are Not US Citizens,,"Median age for population identifying as Not A US Citizen, Female, Foreign Born;" -Median_Age_Person_NotAUSCitizen_Male_ForeignBorn,"Median Age: Not A US Citizen, Male, Foreign Born",Median Age of Foreign Born Males Who Are Not US Citizens,,"Median age for population identifying as Not A US Citizen, Male, Foreign Born;" -Median_Age_Person_SomeOtherRaceAlone,Median Age: Some Other Race Alone,Median Age of Population of Some Other Race,,Median age for population identifying as Some Other Race Alone; -Median_Age_Person_TwoOrMoreRaces,Median Age: Two or More Races,Median Age of Multiracial Population,,Median age for population identifying as Two or More Races; -Median_Age_Person_USCitizenByNaturalization_Female_ForeignBorn,"Median Age: US Citizen by Naturalization, Female, Foreign Born",Median Age of Foreign-Born Females Who Are US Citizens by Naturalization,,"Median age for population identifying as US Citizen by Naturalization, Female, Foreign Born;" -Median_Age_Person_USCitizenByNaturalization_Male_ForeignBorn,"Median Age: US Citizen by Naturalization, Male, Foreign Born",Median Age of Foreign-Born Males Who Are US Citizens by Naturalization,,"Median age for population identifying as US Citizen by Naturalization, Male, Foreign Born;" -Median_Age_Person_WhiteAlone,Median Age: White Alone,Median Age of White Population,,Median age for population identifying as White Alone; -Median_Age_Person_WhiteAloneNotHispanicOrLatino,Median Age: White Alone Not Hispanic or Latino,Median Age of Non Hispanic or Latino White Population,,Median age for population identifying as White Alone Not Hispanic or Latino; -Median_Area_Farm,Median Area of Farm,Median Area of Farm,,Median_Area_Farm; -Median_Earnings_Person,Median Earnings: With Earnings,Median Earnings for All People,,Median income for population identifying as With Earnings; -Median_Earnings_Person_Female,"Median Earnings: Female, With Earnings",Median Earnings for Females,,"Median income for population identifying as Female, With Earnings;" -Median_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,"Median Earnings: Female, With Earnings, Adult Correctional Facilities",Median Earnings for Females Living in Adult Correctional Facilities,,"Median income for population identifying as Female, With Earnings, in Adult Correctional Facilities;" -Median_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Median Earnings: Female, With Earnings, College or University Student Housing",Median Earnings for Females Living in College or University Student Housing,,"Median income for population identifying as Female, With Earnings, in College or University Student Housing;" -Median_Earnings_Person_Female_ResidesInGroupQuarters,"Median Earnings: Female, With Earnings, Group Quarters",Median Earnings for Females Living in Group Quarters,,"Median income for population identifying as Female, With Earnings, in Group Quarters;" -Median_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Median Earnings: Female, With Earnings, Institutionalized Group Quarters",Median Earnings for Females Living in Institutionalized Group Quarters,,"Median income for population identifying as Female, With Earnings, in Institutionalized in Group Quarters;" -Median_Earnings_Person_Female_ResidesInJuvenileFacilities,"Median Earnings: Female, With Earnings, Juvenile Facilities",Median Earnings for Females Living in Juvenile Facilities,,"Median income for population identifying as Female, With Earnings, in Juvenile Facilities;" -Median_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Median Earnings: Female, With Earnings, Military Quarters or Military Ships",Median Earnings for Females Living in Military Quarters or Military Ships,,"Median income for population identifying as Female, With Earnings, in Military Quarters or Military Ships;" -Median_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Median Earnings: Female, With Earnings, Noninstitutionalized Group Quarters",Median Earnings for Females Living in Noninstitutionalized Group Quarters,,"Median income for population identifying as Female, With Earnings, in Noninstitutionalized Group Quarters;" -Median_Earnings_Person_Female_ResidesInNursingFacilities,"Median Earnings: Female, With Earnings, Nursing Facilities",Median Earnings for Females Living in Nursing Facilities,,"Median income for population identifying as Female, With Earnings, in Nursing Facilities;" -Median_Earnings_Person_Male,"Median Earnings: Male, With Earnings",Median Earnings for Males,,"Median income for population identifying as Male, With Earnings;" -Median_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,"Median Earnings: Male, With Earnings, Adult Correctional Facilities",Median Earnings for Males Living in Adult Correctional Facilities,,"Median income for population identifying as Male, With Earnings, in Adult Correctional Facilities;" -Median_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Median Earnings: Male, With Earnings, College or University Student Housing",Median Earnings for Males Living in College or University Student Housing,,"Median income for population identifying as Male, With Earnings, in College or University Student Housing;" -Median_Earnings_Person_Male_ResidesInGroupQuarters,"Median Earnings: Male, With Earnings, Group Quarters",Median Earnings for Males Living in Group Quarters,,"Median income for population identifying as Male, With Earnings, in Group Quarters;" -Median_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,"Median Earnings: Male, With Earnings, Institutionalized Group Quarters",Median Earnings for Males Living in Institutionalized Group Quarters,,"Median income for population identifying as Male, With Earnings, in Institutionalized Group Quarters;" -Median_Earnings_Person_Male_ResidesInJuvenileFacilities,"Median Earnings: Male, With Earnings, Juvenile Facilities",Median Earnings for Males Living in Juvenile Facilities,,"Median income for population identifying as Male, With Earnings, in Juvenile Facilities;" -Median_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Median Earnings: Male, With Earnings, Military Quarters or Military Ships",Median Earnings for Males Living in Military Quarters or Military Ships,,"Median income for population identifying as Male, With Earnings, in Military Quarters or Military Ships;" -Median_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Median Earnings: Male, With Earnings, Noninstitutionalized Group Quarters",Median Earnings for Males Living in Noninstitutionalized Group Quarters,,"Median income for population identifying as Male, With Earnings, in Noninstitutionalized in Group Quarters;" -Median_Earnings_Person_Male_ResidesInNursingFacilities,"Median Earnings: Male, With Earnings, Nursing Facilities",Median Earnings for Males Living in Nursing Facilities,,"Median income for population identifying as Male, With Earnings, in Nursing Facilities;" -Median_Income_Household,Median Income of Household,Median Income for All Households,,Median Income of Household; Household income; Median household income; Typical household income; Middle household income; -Median_Income_Household_FamilyHousehold,"Median Income of Household: Family Household, With Income",Median Income for Family Households,,Median Income of Household: in a family household with Income; -Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,,Median Income of Households Identifying as American Indian or Alaska Native,,Median income of households identifying as American Indian or Alaska Native; -Median_Income_Household_HouseholderRaceAsianAlone,,Median Income of Households Identifying as Asian,,Median income of households identifying as Asian; -Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,,Median Income of Households Identifying as Black or African American,,Median income of households identifying as Black or African American; -Median_Income_Household_HouseholderRaceHispanicOrLatino,,Median Income of Households Identifying as Hispanic or Latino,,Median income of households identifying as Hispanic or Latino; -Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,,Median Income of Households Identifying as Native Hawaiian or Other Pacific Islander,,Median income of households identifying as Native Hawaiian or other Pacific Islander; -Median_Income_Household_HouseholderRaceWhiteAlone,,Median Income of Households Identifying as White,,Median income of households identifying as White; -Median_Income_Household_MarriedCoupleFamilyHousehold,"Median Income of Household: Married Couple Family Household, With Income",Median Income for Married Couple Family Households,,Median Income of Household: a Married Couple in a family household with Income; -Median_Income_Household_NoHealthInsurance,Median Income of Household: No Health Insurance,Median Income for Households Without Health Insurance,,Median Income of Household: No Health Insurance; -Median_Income_Household_NonfamilyHousehold,"Median Income of Household: Nonfamily Household, With Income",Median Income for Nonfamily Households,,"Median Income of Household: a Nonfamily Household, With Income;" -Median_Income_Household_WithFoodStampsInThePast12Months,Median Income of Household: With Food Stamps in The Past 12 Months,Median Income for Households With Food Stamps in the Past 12 Months,,Median Income of Household: With Food Stamps in The Past 12 Months; -Median_Income_Household_WithoutFoodStampsInThePast12Months,Median Income of Household: Without Food Stamps in The Past 12 Months,Median Income for Households Without Food Stamps in the Past 12 Months,,Median Income of Household: Without Food Stamps in The Past 12 Months; -Median_Income_Person,Median Income,Median Income of a Population,,Median pay; Median income;Median income of the population; Middle income of the population; Average income of the population; Mean income of the population; Typical income of the population; -Median_Income_Person_15OrMoreYears_Female_WithIncome,,Median Income of Women (15 Years or Older) With Income,, -Median_Income_Person_15OrMoreYears_Male_WithIncome,,Median Income of Men (15 Years or Older) With Income,, -MonetaryValue_Farm_GovernmentPayment,Monetary Value of Farm: Government Payment,Monetary Value of Government Payments to Farms,,monetary value of government payments to farms; -Monthly_Amount_FinancialTransaction_AadhaarEnabledPaymentSystemFundsTransfer,Total Value of Monthly Aadhaar Enabled Payment System Funds Transfer transactions,,,amount of aadhar enabled fund transfers -Monthly_Amount_FinancialTransaction_FinancialProduct_UPI,Total value of UPI transactions per month,,, -Monthly_Count_ElectricityConsumer,"Number of customer accounts, all sectors, monthly",Total Electricity Consumers in a Month,,Total electricity consumers in a month;Total electricity consumers in a month; The number of people using electricity each month; The monthly total of electricity consumption; The amount of electricity used in a month; The number of electricity users per month; -Monthly_Count_FinancialTransaction_AadhaarEnabledPaymentSystemFundsTransfer,Number of Monthly Aadhaar Enabled Payment System Funds Transfer transactions,,,number of aadhar enabled fund transfers -Monthly_Count_FinancialTransaction_FinancialProduct_UPI,Number of UPI transactions per month,,, -NetMeasure_Income_Farm,Income of Farm (Net Measure),Total Farm Income Net Measure,,total farm income net measure; -Nominal_Amount_EconomicActivity_GrossValueAdded_Agriculture,Gross Value Added in Agriculture by Constant Prices.,,,value of goods produced in agriculture sector -Nominal_Amount_EconomicActivity_GrossValueAdded_BankingAndInsuranceSector,Gross Value Added in Banking and Insurance by Constant Prices.,,,value of goods produced in banking and insurance sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Construction,Gross Value Added in Construction by Constant Prices.,,,value of goods produced in construction sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Industry,Gross Value Added in Industry by Constant Prices.,,,value of goods produced in industry sector -Nominal_Amount_EconomicActivity_GrossValueAdded_ManufacturingSector,Gross Value Added in Manufacture by Constant Prices.,,,value of goods produced in manufacturing sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Services,Gross Value Added in Services by Constant Prices.,,,value of goods produced in services sector -PalmerDroughtSeverityIndex_Atmosphere,,Palmer Drought Severity Index for the Atmosphere,, -Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication,"Prevalence: 18 Years or More, High Blood Pressure, Taking Blood Pressure Medication",Percent of People With High Blood Pressure Who Are Taking Blood Pressure Medication Among People Who Are 18 Years or Older in Age;,,percent of people with high blood pressure who are taking blood pressure medication among people who are 18 years or older in age; -Percent_Person_18To64Years_Female_NoHealthInsurance,,Percentage of Women (18 to 64 Years Old) Without Health Insurance,, -Percent_Person_18To64Years_Male_NoHealthInsurance,,Percentage of Men (18 to 64 Years Old) Without Health Insurance,, -Percent_Person_18To64Years_NoHealthInsurance_BlackOrAfricanAmericanAlone,,Percentage of Black or African American Population (18 to 64 Years Old) Without Health Insurance,, -Percent_Person_18To64Years_NoHealthInsurance_HispanicOrLatino,,Percentage of Hispanic or Latino Population (18 to 64 Years Old) Without Health Insurance,, -Percent_Person_18To64Years_NoHealthInsurance_WhiteAlone,,Percentage of White Population (18 to 64 Years Old) Without Health Insurance,, -Percent_Person_18To64Years_ReceivedNoHealthInsurance,"Prevalence: 18 - 64 Years, No Health Insurance",Percentage of Population Aged 18-64 With No Health Insurance,,Percent of people without health insurance;Percentage of the population aged 18-64 with no health insurance; Percentage of people aged 18-64 who don't have health insurance; Percentage of people aged 18-64 who aren't covered; Percentage of young adults aged 18-64 who don't have insurance; Percentage of people aged 18-64 who are uninsured; -Percent_Person_20OrMoreYears_WithDiabetes,"Prevalence: 20 Years or More, Diabetes",Percent of People 20 Years or Older With Diabetes,,percent of people who are older than 19 years and have diabetes ; -Percent_Person_65OrMoreYears_WithAllTeethLoss,"Prevalence of 65 Or More Years, All Teeth Loss",Percentage of Population Over 65 Years Old Who Have Complete Tooth Loss,,percent of people that have all teeth loss among people who are 65 years or older in age; -Percent_Person_BingeDrinking,,Percentage of Population Who Engage in Binge Drinking,,Percentage of population who engage in binge drinking; -Percent_Person_Children_WithAsthma,Prevalence: Asthma in Children,Percent of Children That Have Asthma,,percent of children that have asthma; -Percent_Person_Obesity,Prevalence: Obesity,Percentage of Population That Is Obese,,Percent of fat people;Percentage of the population that is obese; Percentage of overweight people; Percentage of people who are overweight; Percentage of people who have a BMI over 30; Percentage of people who are classified as obese; -Percent_Person_PhysicalInactivity,,Percentage of Population Who Are Physically Inactive,,Percentage of population who are physically inactive; -Percent_Person_ReceivedAnnualCheckup,Prevalence: Annual Checkup,Percentage of Population That Has Received an Annual Checkup,,Percent of people with annual checkup;Percentage of people who have had a yearly check-up; Percentage of people who have had preventive care; Percentage of population that keeps up with their health; Percentage of people who go to the doctor regularly; Percentage of population that receives regular checkups; -Percent_Person_SleepLessThan7Hours,Prevalence: Sleep Less Than 7 Hours,Percentage of Population That Sleeps Less Than 7 Hours Per Night,,Percent of people that sleeps less than seven hours; Percent of sleep deprived people;Percentage of the population that gets less than 7 hours of sleep a night; Percentage of people who sleep less than 7 hours; Percentage of people who don't get enough sleep; Percentage of the population that's sleep-deprived; Percentage of people who don't sleep enough; -Percent_Person_Smoking,Prevalence: Smoking,Percentage of Population That Smokes,,Percent of people that smoke;Percentage of the population that smokes; Percentage of smokers; Percentage of people who smoke; Percentage of people who use tobacco products; Percentage of people who smoke cigarettes; -Percent_Person_WithAllTeethLoss,Prevalence: All Teeth Loss,Prevalance of Complete Tooth Loss in the Population,,prevalance of all teeth loss in the population; -Percent_Person_WithArthritis,Prevalence: Arthritis,Percentage of Population With Arthritis,,percent of people that have arthritis;Percentage of the population with arthritis; Percentage of people with arthritis; Percentage of people with joint pain; Percentage of people with osteoarthritis; Percentage of people with rheumatoid arthritis; -Percent_Person_WithAsthma,Prevalence: Asthma,Percent of People That Have Asthma,,percent of people that have asthma; -Percent_Person_WithCancerExcludingSkinCancer,Prevalence: Cancer Excluding Skin Cancer,Percent of People That Have a Cancer Other Than Skin Cancer,,percent of people that have a cancer other than skin cancer; -Percent_Person_WithChronicKidneyDisease,Prevalence: Chronic Kidney Disease,Percent of People That Have Chronic Kidney Disease,,percent of people that have chronic kidney disease; -Percent_Person_WithChronicObstructivePulmonaryDisease,Prevalence: Chronic Obstructive Pulmonary Disease,Percent of People That Have Chronic Obstructive Pulmonary Disease,,percent of people that have chronic obstructive pulmonary disease; -Percent_Person_WithCoronaryHeartDisease,Prevalence: Coronary Heart Disease,Percentage of Population With Coronary Heart Disease,,percent of people that have coronary heart disease;Percentage of the population with coronary heart disease; Percentage of people with heart disease; Percentage of people with CHD; Percentage of people who have heart issues; Percentage of people with coronary artery disease; -Percent_Person_WithDiabetes,Prevalence: Diabetes,Percentage of Population With Diabetes,,percent of people that have diabetes;Percentage of the population with diabetes; Percentage of diabetics; Percentage of people with type 2 diabetes; Percentage of people with type 1 diabetes; Percentage of people who have diabetes; -Percent_Person_WithHighBloodPressure,Prevalence: High Blood Pressure,Percentage of Population With High Blood Pressure,,percent of people that have high blood pressure; Percentage of people with high blood pressure; Percentage of population with high blood pressure; Proportion of people with high blood pressure; Percentage of individuals with high blood pressure; Percentage of people who have high blood pressure;Percentage of people with high blood pressure; Percentage of the population with high blood pressure; Proportion of people with high blood pressure; Percentage of individuals with high blood pressure; Percentage of people who have high blood pressure; Percentage of the population that has high blood pressure; Percent of people with high blood pressure; Percentage of the population with hypertension;Percentage of the population with high blood pressure; Percentage of people with hypertension; Percentage of people with high BP; Percentage of people who have high blood pressure; Percentage of people with uncontrolled hypertension; -Percent_Person_WithHighCholesterol,Prevalence: High Cholesterol,Percent of People With High Cholesterol,,percent of people that have high cholesterol; -Percent_Person_WithMentalHealthNotGood,Prevalence: Mental Health Not Good,Percentage of Population With Poor Mental Health,,percent of people whose mental health is not good;Percentage of the population with poor mental health; Percentage of people with mental health issues; Percentage of people who have mental health problems; Percentage of people who have poor mental well-being; Percentage of people with a mental illness; -Percent_Person_WithPhysicalHealthNotGood,Prevalence: Physical Health Not Good,Percentage of Population With Poor Physical Health,,percent of people whose physical health is not good;Percentage of the population with poor physical health; Percentage of people with poor health; Percentage of people who have physical health issues; Percentage of people who are in poor physical condition; Percentage of people with chronic health issues; -Percent_Person_WithStroke,Prevalence: Stroke,Percentage of Population That Has Experienced a Stroke,,percent of people that have had a stroke;Percentage of the population that has had a stroke; Percentage of people who have had a stroke; Percentage of people with a stroke history; Percentage of people who have had a cerebrovascular accident; Percentage of people with a history of stroke; -Percent_Student_AsAFractionOf_Count_Teacher ,,Teacher to Student Ratio,, -Percent_TreeCanopy,Percent of Tree Canopy,Percent of Tree Canopy,,Percent of land with tree canopy; -QuantitySold_FarmInventory_CattleAndCalves,Quantity Sold of Farm Inventory: Cattle And Calves,Quantity of Cattle and Calves Sold From Farms,,Number of Cattle And Calves sold as farm inventory; -QuantitySold_FarmInventory_HogsAndPigs,Quantity Sold of Farm Inventory: Hogs And Pigs,Quantity of Hogs and Pigs Sold From Farms,,Number of hogs and pigs sold as farm inventory; -RetailDrugDistribution_DrugDistribution_Amphetamine,,Amount of Amphetamine Distributed Through Retail Drug Channels,, -RetailDrugDistribution_DrugDistribution_Codeine,,Amount of Codeine Distributed Through Retail Drug Channels,, -RetailDrugDistribution_DrugDistribution_Hydrocodone,,Amount of Hydrocodone Distributed Through Retail Drug Channels,, -RetailDrugDistribution_DrugDistribution_Morphine,,Amount of Morphine Distributed Through Retail Drug Channels,, -RetailDrugDistribution_DrugDistribution_Oxycodone,,Amount of Oxycodone Distributed Through Retail Drug Channels,, -UnemploymentRate_Person,Unemployment Rate,Unemployment Rate of a Population,,Unemployment Rate;Unemployment rate in the population; Jobless rate in the population; Percentage of population without work; Percentage of people in the population who don't have a job; Number of people in the population who are unemployed;unemployment -UnemploymentRate_Person_Female,Unemployment Rate: Female,Unemployment Rate of the Female Population,,Unemployment Rate of the female population; -UnemploymentRate_Person_Male,Unemployment Rate: Male,Unemployment Rate of the Male Population,,Unemployment Rate of the male population; -UnemploymentRate_Person_Rural,Unemployment Rate: Rural,,, -UnemploymentRate_Person_Rural_Female,"Unemployment Rate: Female, Rural",,, -UnemploymentRate_Person_Rural_Male,"Unemployment Rate: Male, Rural",,, -UnemploymentRate_Person_Urban,Unemployment Rate: Urban,,, -UnemploymentRate_Person_Urban_Female,"Unemployment Rate: Female, Urban",,, -UnemploymentRate_Person_Urban_Male,"Unemployment Rate: Male, Urban",,, -WagesTotal_Worker_NAICSAccommodationFoodServices,Wages Total of Person: Accommodation And Food Services (NAICS/72),Total Wages Earned by People Working in the Accommodation and Food Services Industry,,total wages of accommodation and food services workers;Total wages earned by people working in the accommodation and food services industry; The total amount of money earned by people in the accommodation and food services sector; The total salary paid to the accommodation and food services workforce; The combined income of all people working in the accommodation and food services industry; The total pay of the accommodation and food services labor force; -WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Wages Total of Person: Administrative And Support And Waste Management Services (NAICS/56),Total Wages Earned by People Working in the Administrative and Support and Waste Management Services Industry,,total wages of administrative and support and waste management services workers;management services industry;How much money workers in administrative and support services bring in;Earnings of those employed in waste management and support;Income for workers in the administrative and waste management sector;Wages for employees in the administrative and support and waste management services field.; -WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"Wages Total of Person: Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Total Wages Earned by People Working in the Agriculture, Forestry, Fishing, and Hunting Industry",,"total wages of agriculture, forestry, fishing and hunting workers;Total wages earned by people working in the agriculture, forestry, fishing, and hunting industry;How much money workers in agriculture make;Earnings of those employed in forestry, fishing, and hunting;Income for workers in the agriculture, forestry, fishing, and hunting sector;Wages for employees in the agriculture, forestry, fishing, and hunting field.;" -WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"Wages Total of Person: Arts, Entertainment, And Recreation (NAICS/71)","Total Wages for People Working in the Arts, Entertainment, and Recreation Industry",,"total wages of arts, entertainment, and recreation workers;Total wages for people working in the arts, entertainment, and recreation industry;How much money workers in the arts make;Earnings of those employed in entertainment and recreation;Income for workers in the arts, entertainment, and recreation sector;Wages for employees in the arts, entertainment, and recreation field.;" -WagesTotal_Worker_NAICSConstruction,Wages Total of Person: Construction (NAICS/23),Total Wages for People Working in the Construction Industry,,total wages of construction workers;Total wages for people working in the construction industry;How much money workers in construction make;Earnings of those employed in construction;Income for workers in the construction sector;Wages for employees in the construction field.; -WagesTotal_Worker_NAICSEducationalServices,Wages Total of Person: Educational Services (NAICS/61),Total Wages for People Working in the Educational Services Industry,,total wages of educational services workers;Total wages for people working in the educational services industry;How much money workers in the education field make;Earnings of those employed in educational services;Income for workers in the educational services sector;Wages for employees in the education field.; -WagesTotal_Worker_NAICSFinanceInsurance,Wages Total of Person: Finance And Insurance (NAICS/52),Total Wages for People Working in the Finance and Insurance Industry,,total wages of finance and insurance workers;Total wages for people working in the finance and insurance industry;How much money workers in the finance and insurance make;Earnings of those employed in finance and insurance;Income for workers in the finance and insurance sector;Wages for employees in the finance and insurance field; -WagesTotal_Worker_NAICSHealthCareSocialAssistance,Wages Total of Person: Health Care And Social Assistance (NAICS/62),Total Wages for People Working in the Health Care and Social Assistance Industry,,total wages of health care and social assistance workers;total wages for employees in health care and social assistance;Total wages for people working in the health care and social assistance industry;How much money workers in the health care and social assistance make;Earnings of those employed in health care and social assistance;Income for workers in the health care and social assistance sector;Wages for employees in the health care and social assistance field; -WagesTotal_Worker_NAICSInformation,Wages Total of Person: Information (NAICS/51),Total Wages for People Working in the Information Industry,,total wages of information workers;total earnings for employees in the information industry; total wages for information industry employees;wages for employees information industry;Total wages for people working in the information industry;How much money workers in the information make;Earnings of those employed in information;Income for workers in the information sector;Wages for employees in the information field; -WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,Wages Total of Person: Management of Companies And Enterprises (NAICS/55),Total Wages for People Working in the Management of Companies and Enterprises Industry,,total wages of management of companies and enterprises workers;Total wages for people working in the management of companies and enterprises industry;How much money workers in the management of companies and enterprises make;Earnings of those employed in management of companies and enterprises;Income for workers in the management of companies and enterprises sector;Wages for employees in the management of companies and enterprises field; -WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"Wages Total of Person: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Total Wages for People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry",,"total wages of mining, quarrying, and oil and gas extraction workers;Total wages for people working in the mining, quarrying, and oil and gas extraction industry;How much money workers in the mining, quarrying, and oil and gas extraction make;Earnings of those employed in mining, quarrying, and oil and gas extraction;Income for workers in the mining, quarrying, and oil and gas extraction sector;Wages for employees in the mining, quarrying, and oil and gas extraction field;" -WagesTotal_Worker_NAICSNonclassifiable,Wages Total of Person: Unclassified (NAICS/99),Total Wages Paid to Unclassified Workers,,total wages of unclassified workers;Total wages paid to unclassified workers; How much money workers in unclassified industries make; Earnings of those employed in unclassified industries; Income for workers in unclassified sectors; Wages for employees in unclassified fields; -WagesTotal_Worker_NAICSOtherServices,"Wages Total of Person: Other Services, Except Public Administration (NAICS/81)","Total Wages for People Working in Other Services, Except Public Administration",,"total wages of workers in other services except public administration ;Total wages for people working in other services, except public administration;How much money workers in the other services make;Earnings of those employed in other services;Income for workers in the other services sector;Wages for employees in the other services field;" -WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"Wages Total of Person: Professional, Scientific, And Technical Services (NAICS/54)","Total Wages Paid to Professional, Scientific, and Technical Services Workers",,"total wages of professional, scientific, and technical services workers;Total wages paid to professional, scientific, and technical services workers;How much money workers in the professional, scientific, and technical services make;Earnings of those employed in professional, scientific, and technical services;Income for workers in the professional, scientific, and technical services sector;Wages for employees in the professional, scientific, and technical services field;" -WagesTotal_Worker_NAICSPublicAdministration,Wages Total of Person: Public Administration (NAICS/92),Total Wages Paid to Public Administration Workers,,total wages of public administration workers;Total wages paid to public administration workers;How much money workers in the public administration make;Earnings of those employed in public administration;Income for workers in the public administration sector;Wages for employees in the public administration field; -WagesTotal_Worker_NAICSRealEstateRentalLeasing,Wages Total of Person: Real Estate And Rental And Leasing (NAICS/53),Total Wages Paid to Real Estate and Rental and Leasing Workers,,total wages of real estate and rental and leasing workers;Total wages paid to real estate and rental and leasing workers; How much money workers in the real estate and rental and leasing make; Earnings of those employed in real estate and rental and leasing; Income for workers in the real estate and rental and leasing sector; Wages for employees in the real estate and rental and leasing field; -WagesTotal_Worker_NAICSTotalAllIndustries,"Wages Total of Person: Total, All Industries (NAICS/10)",Total Wages Paid to Workers in All Industries,,"total wages of total, all industries workers;Total wages paid to workers in all industries; How much money workers in all industries make; Earnings of those employed in all industries; Income for workers in all sectors; Wages for employees in all fields;" -WagesTotal_Worker_NAICSUtilities,Wages Total of Person: Utilities (NAICS/22),Total Wages Paid to Utilities Workers,,total wages of utilities workers;Total wages paid to utilities workers; How much money workers in the utilities make; Earnings of those employed in utilities; Income for workers in the utilities sector; Wages for employees in the utilities field; -WagesTotal_Worker_NAICSWholesaleTrade,Wages Total of Person: Wholesale Trade (NAICS/42),Total Wages Paid to Wholesale Trade Workers,,total wages of wholesale trade workers;Total wages paid to wholesale trade workers; How much money workers in the wholesale trade make; Earnings of those employed in wholesale trade; Income for workers in the wholesale trade sector; Wages for employees in the wholesale trade field; -WithdrawalRate_Water,Withdrawal Rate of Water,Rate of Water Withdrawal,,Water withdraw rate;Water consumption rate; Rate of water usage; Water usage per capita; Water usage per person; Water consumption per capita; -dc/015d58s9xh8kd,Median Income (Real Individual Earnings Before Deductions): Real Estate And Rental And Leasing (NAICS/53),Median Income of Real Estate and Rental and Leasing Workers,,median income of real estate and rental and leasing workers;Median income of real estate and rental and leasing workers; Average salary for workers in the real estate and rental and leasing field; Income in the middle for the real estate and rental and leasing sector; Median pay for real estate and rental and leasing industry; Typical earnings for real estate and rental and leasing workers; -dc/0hq9z5mspf73f,Wages Total of Person: Water Transportation (NAICS/483),Total Wages Paid to Water Transportation Workers,,total wages of water transportation workers; -dc/107jnwnsh17xb,Population of Person: Food Manufacturing (NAICS/311),Population of People Working in the Food Manufacturing Industry,,number of food manufacturing workers; -dc/1jqm2g7cm9m75,Wages Total of Person: Textile And Fabric Finishing Mills (NAICS/3133),Total Wages Paid to Textile and Fabric Finishing Mills Workers,,total wages of textile and fabric finishing mills workers; -dc/1q3ker7zf14hf,Wages Total of Person: Textile Product Mills (NAICS/314),Total Wages Paid to Textile Product Mills Workers,,total wages of textile product mills workers; -dc/2etwgx6vecreh,Population of Person: Nonstore Retailers (NAICS/454),Population of People Working in Retail Outside of a Store,,number of nonstore retailers workers; -dc/2wgh04kx6es88,Median Income (Real Individual Earnings Before Deductions): Health Care And Social Assistance (NAICS/62),Median Income for People Working in the Health Care and Social Assistance Industry,,median income of health care and social assistance workers;median income of employees in health care and social assistance; Median pay for those in the health care and social assistance industry; Median income of individuals employed in the health care and social assistance sector; Amount of wages earned by employees in the health care and social assistance industry; -dc/34t2kjrwbjd31,Population of Person: Petroleum And Coal Products Manufacturing (NAICS/324),Population of People Working in the Petroleum and Coal Products Manufacturing Industry,,number of petroleum and coal products manufacturing workers; -dc/3ex11eg2q9hp6,Median Income (Real Individual Earnings Before Deductions): Manufacturing (NAICS/31-33),Median Income of Manufacturing Workers,,median income of manufacturing workers;Median income of manufacturing workers; Average salary for workers in the manufacturing field; Income in the middle for the manufacturing sector; Median pay for manufacturing industry; Typical earnings for manufacturing workers; -dc/3jr0p7yjw06z9,Count of BLS Establishment: Gambling Industries,Gambling Establishments,, -dc/3kwcvm428wpq4,Population of Person: Rail Transportation (NAICS/482),Number of Rail Transportation Workers,,number of rail transportation workers; -dc/4ky4sj05bw4nd,Wages Total of Person: Air Transportation (NAICS/481),Total Wages Earned by People Working in the Air Transportation Industry,,total wages of air transportation workers; -dc/4mm2p1rxr5wz4,Population of Person: Miscellaneous Store Retailers (NAICS/453),Population of People Working in Miscellaneous Retail Stores,,number of miscellaneous store retailers workers; -dc/4z9xy6wn8xns1,Median Income (Real Individual Earnings Before Deductions): Administrative And Support And Waste Management Services (NAICS/56),Median Income of People Working in the Administrative and Support and Waste Management Services Industry,,median income of administrative and support and waste management services workers;Median income of people working in the administrative and support and waste management services industry; The typical pay for people working in the administrative and support and waste management services industry; The median salary of administrative and support and waste management services employees; The average income of those working in administrative and support and waste management services; The middle range of income for people in the administrative and support and waste management services sector; -dc/5br285q68be6,Population of Person: Gambling Industries,Employees in Gambling Industry,, -dc/5f3gkej4mrq24,Median Income (Real Individual Earnings Before Deductions): Retail Trade (NAICS/44-45),Median Income of Retail Trade Workers,,median income of retail trade workers;Median income of retail trade workers; Average salary for workers in the retail trade field; Income in the middle for the retail trade sector; Median pay for retail trade industry; Typical earnings for retail trade workers; -dc/5hv2p802zmh03,"Median Income (Real Individual Earnings Before Deductions): Professional, Scientific, And Technical Services (NAICS/54)","Median Income of Professional, Scientific, and Technical Services Workers",,"median income of professional, scientific, and technical services workers;Median income of professional, scientific, and technical services workers;Average salary for workers in the professional, scientific, and technical services field;Income in the middle for the professional, scientific, and technical services sector;Median pay for professional, scientific, and technical services industry;Typical earnings for professional, scientific, and technical services workers;" -dc/63gkdt13bmsv8,Population of Person: Air Transportation (NAICS/481),Population of People Working in the Air Transportation Industry,,number of air transportation workers; -dc/6ets5evke9mw5,Wages Total of Person: Miscellaneous Store Retailers (NAICS/453),Total Wages for People Working in Miscellaneous Retail Stores,,total wages of miscellaneous store retailers workers; -dc/6n6l2wrzv7473,Population of Person: Paper Manufacturing (NAICS/322),Population of People Working in the Paper Manufacturing Industry,,number of paper manufacturing workers; -dc/7bck6xpkc205c,Population of Person: Leather And Allied Product Manufacturing (NAICS/316),Population of People Working in the Leather and Allied Product Manufacturing Industry,,number of leather and allied product manufacturing workers; -dc/7jqw95h5wbelb,Median Income (Real Individual Earnings Before Deductions): Public Administration (NAICS/92),Median Income of Public Administration Workers,,median income of public administration workers;Median income of public administration workers;Average salary for workers in the public administration field;Income in the middle for the public administration sector;Median pay for public administration industry;Typical earnings for public administration workers; -dc/7w0e0p0dzj82g,Wages Total of Person: Textile Mills (NAICS/313),Total Wages Paid to Textile Mills Workers,,total wages of textile mills workers; -dc/84czmnc1b6sp5,Wages Total of Person: Transportation And Warehousing (NAICS/48-49),Total Wages Paid to Transportation and Warehousing Workers,,total wages of transportation and warehousing workers;Total wages paid to transportation and warehousing workers; How much money workers in the transportation and warehousing make; Earnings of those employed in transportation and warehousing; Income for workers in the transportation and warehousing sector; Wages for employees in the transportation and warehousing field; -dc/8b3gpw1zyr7bf,Population of Person: Textile Mills (NAICS/313),Number of Textile Mills Workers,,number of textile mills workers; -dc/8cssekvykhys5,Wages Total of Person: Petroleum And Coal Products Manufacturing (NAICS/324),Total Wages for People Working in the Petroleum and Coal Products Manufacturing Industry,,total wages of petroleum and coal products manufacturing workers; -dc/8hy0p1ex5s2cb,Median Income (Real Individual Earnings Before Deductions): Wholesale Trade (NAICS/42),Median Income of Wholesale Trade Workers,,median income of wholesale trade workers;Median income of wholesale trade workers; Average salary for workers in the wholesale trade field; Income in the middle for the wholesale trade sector; Median pay for wholesale trade industry; Typical earnings for wholesale trade workers; -dc/8j8w7pf73ekn,Population of Person: Postal Service (NAICS/491),Number of Postal Service Workers,,number of postal service workers; -dc/8lqwvg8m9x7z8,Wages Total of Person: Cattle Ranching And Farming (NAICS/1121),Total Wages Earned by People Working in Cattle Ranching and Farming,,total wages of cattle ranching and farming workers; -dc/8p97n7l96lgg8,Population of Person: Transportation And Warehousing (NAICS/48-49),Number of Transportation and Warehousing Workers,,number of transportation and warehousing workers;Number of transportation and warehousing workers; Individuals employed in the transportation and warehousing sector; Workforce size for the transportation and warehousing industry; People working in the transportation and warehousing field; Employment numbers in the transportation and warehousing industry; -dc/8pxklrk2q6453,Wages Total of Person: Nonstore Retailers (NAICS/454),Total Wages for People Working in Retail Outside of a Store,,total wages of nonstore retailers workers; -dc/90nswpkp8wlw5,Population of Person: Nonmetallic Mineral Product Manufacturing (NAICS/327),Population of People Working in the Nonmetallic Mineral Product Manufacturing Industry,,number of nonmetallic mineral product manufacturing workers; -dc/95gev5g99r7nc,Wages Total of Person: Couriers And Messengers (NAICS/492),Total Wages for People Working as Couriers and Messengers,,total wages of couriers and messengers workers; -dc/9kk3vkzn5v0fb,Wages Total of Person: Beverage And Tobacco Product Manufacturing (NAICS/312),Total Wages for People Working in the Beverage and Tobacco Product Manufacturing Industry,,total wages of beverage and tobacco product manufacturing workers; -dc/9pmyhk89dj3pf,Median Income (Real Individual Earnings Before Deductions): Accommodation And Food Services (NAICS/72),Median Income of Accommodation and Food Services Workers,,median income of accommodation and food services workers;Median income of accommodation and food services workers; The typical pay for people working in the accommodation and food services industry; The median salary of accommodation and food services employees; The average income of those working in accommodation and food services; The middle range of income for people in the accommodation and food services sector; -dc/9t5n4mk2fxzdg,Wages Total of Person: Transit And Ground Passenger Transportation (NAICS/485),Total Wages Paid to Transit and Ground Passenger Transportation Workers,,total wages of transit and ground passenger transportation workers; -dc/9yj0bdp6s4ml5,Wages Total of Person: Plastics And Rubber Products Manufacturing (NAICS/326),Total Wages for People Working in the Plastics and Rubber Products Manufacturing Industry,,total wages of plastics and rubber products manufacturing workers; -dc/b4dj4sbgqybh7,"Median Income (Real Individual Earnings Before Deductions): Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)","Median Income for People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry",,"median income of mining, quarrying, and oil and gas extraction workers;The median income for those working in the mining, quarrying, and oil and gas extraction industry; The number of people employed in the mining, quarrying, and oil and gas extraction industry; Total wages earned by employees in the mining, quarrying, and oil and gas extraction field.;" -dc/bb4peddkgmqe7,Population of Person: Support Activities for Transportation (NAICS/488),Number of Support Activities for Transportation Workers,,number of support activities for transportation workers; -dc/bceet4dh33ev,Wages Total of Person: Support Activities for Transportation (NAICS/488),Total Wages Paid to Support Activities for Transportation Workers,,total wages of support activities for transportation workers; -dc/bwr1l8y9we9k7,Population of Person: Transit And Ground Passenger Transportation (NAICS/485),Number of Transit and Ground Passenger Transportation Workers,,number of transit and ground passenger transportation workers; -dc/c0wxmt45gffxc,Population of Person: General Merchandise Stores (NAICS/452),Population of People Working in General Merchandise Stores,,number of general merchandise stores workers; -dc/c58mvty4nhxdb,About: Mean Cohort Scale Achievement of Student,Mean Cohort Scale Achievement of Students,, -dc/dchdrg93spxkf,Wages Total of Person: General Merchandise Stores (NAICS/452),Total Wages for People Working in General Merchandise Stores,,total wages of general merchandise stores workers; -dc/dxcbt2knrsgg9,Wages Total of Person: Retail Trade (NAICS/44-45),Total Wages Paid to Retail Trade Workers,,total wages of retail trade workers;Total wages paid to retail trade workers; How much money workers in the retail trade make; Earnings of those employed in retail trade; Income for workers in the retail trade sector; Wages for employees in the retail trade field; -dc/dy2k68mmhenfd,Population of Person: Textile Product Mills (NAICS/314),Number of Textile Product Mills Workers,,number of textile product mills workers; -dc/e2zdnwjjhyj36,"Population of Person: Sports, Hobby, Music Instrument, Book Stores (NAICS/451)","Number of Sports, Hobby, Music Instrument, and Book Stores Workers",,"number of sports, hobby, music instrument, book stores workers;" -dc/eh7s78v8s14l9,Population of Person: Chemical Manufacturing (NAICS/325),Population of People Working in the Chemical Manufacturing Industry,,number of chemical manufacturing workers; -dc/fcn7wgvcwtsj2,Wages Total of Person: Warehousing And Storage (NAICS/493),Total Wages Paid to Warehousing and Storage Workers,,total wages of warehousing and storage workers; -dc/fetj39pqls2df,Wages Total of Person: Leather And Allied Product Manufacturing (NAICS/316),Total Wages for People Working in the Leather and Allied Product Manufacturing Industry,,total wages of leather and allied product manufacturing workers; -dc/h1jy2glt2m7e6,Population of Person: Water Transportation (NAICS/483),Number of Water Transportation Workers,,number of water transportation workers; -dc/h77bt8rxcjve3,Wages Total of Person: Truck Transportation (NAICS/484),Total Wages Paid to Truck Transportation Workers,,total wages of truck transportation workers; -dc/hlxvn1t8b9bhh,Population of Person: Cattle Ranching And Farming,Number of Farmers and Cattle Ranchers,,number of agriculture workers; number of workers in agriculture; number of farmers; number of cattle ranchers; number of farmers and cattle ranchers; farmers; cattle ranchers; people who are farming and cattle ranching; number of agricultural workers; agriculture workers; agricultural workers; workers in agriculture; -dc/jefhcs9qxc971,Median Income (Real Individual Earnings Before Deductions): Educational Services (NAICS/61),Median Income for People Working in the Educational Services Industry,,median income of educational services workers;Median income for people working in the educational services industry;How much money on average workers in the education field make;Average earnings of those employed in educational services;Middle percentile income for workers in the educational services sector;What's the typical salary for people working in the education field.; -dc/jngmh68j9z4q,Wages Total of Person: Food Manufacturing (NAICS/311),Total Wages for People Working in the Food Manufacturing Industry,,total wages of food manufacturing workers; -dc/k3hehk50ch012,Population of Person: Truck Transportation (NAICS/484),Number of Truck Transportation Workers,,number of truck transportation workers; -dc/k4grzkjq201xh,"Wages Total of Person: Sports, Hobby, Music Instrument, Book Stores (NAICS/451)","Total Wages Paid to Sports, Hobby, Music Instrument, and Book Stores Workers",,"total wages of sports, hobby, music instrument, book stores workers;" -dc/kl7t3p3de7tlh,Wages Total of Person: Paper Manufacturing (NAICS/322),Total Wages for People Working in the Paper Manufacturing Industry,,total wages of paper manufacturing workers; -dc/knhvyxwsd3y6h,"Median Income (Real Individual Earnings Before Deductions): Other Services, Except Public Administration (NAICS/81)","Median Income for People Working in Other Services, Except Public Administration",,"median income of workers in other services except public administration ;Median income for people working in other services, except public administration;Average salary for workers in the other services field;Income in the middle for the other services sector;Median pay for other services industry;Typical earnings for other services workers;" -dc/ksynl8pj8w5t5,Wages Total of Person: Rail Transportation (NAICS/482),Total Wages Paid to Rail Transportation Workers,,total wages of rail transportation workers; -dc/lygznlxpkj318,Wages Total of Person: Apparel Manufacturing (NAICS/315),Total Wages Earned by People Working in the Apparel Manufacturing Industry,,total wages of apparel manufacturing workers; -dc/m07n4w3ywjzs3,Median Income (Real Individual Earnings Before Deductions): Construction (NAICS/23),Median Income for People Working in the Construction Industry,,median income of construction workers;Median income for people working in the construction industry;How much money on average workers in construction make;Average earnings of those employed in construction;Middle percentile income for workers in the construction sector;What's the typical salary for people working in construction.; -dc/mfz54y2skbpeh,"Median Income (Real Individual Earnings Before Deductions): Arts, Entertainment, And Recreation (NAICS/71)","Median Income for People Working in the Arts, Entertainment, and Recreation Industry",,"median income of arts, entertainment, and recreation workers;Median income for people working in the arts, entertainment, and recreation industry;How much money on average workers in the arts make;Average earnings of those employed in entertainment and recreation;Middle percentile Income for workers in the arts, entertainment, and recreation sector;What's the typical salary for people working in the arts, entertainment, and recreation.;" -dc/n0m3e2r3pxb21,Wages Total of Person: Pipeline Transportation (NAICS/486),Total Wages for People Working in Pipeline Transportation,,total wages of pipeline transportation workers; -dc/n87t9dkckzxc8,Population of Person: Couriers And Messengers (NAICS/492),Population of People Working as Couriers and Messengers,,number of couriers and messengers workers; -dc/ndg1xk1e9frc2,Population of Person: Manufacturing (NAICS/31-33),Number of Manufacturing Workers,,number of manufacturing workers;Number of manufacturing workers; Individuals employed in the manufacturing sector; Workforce size for the manufacturing industry; People working in the manufacturing field; Employment numbers in the manufacturing industry; -dc/nesnbmrncfjrb,Wages Total of Person: Wood Product Manufacturing (NAICS/321),Total Wages Paid to Wood Product Manufacturing Workers,,total wages of wood product manufacturing workers; -dc/nh3s4skee5483,"Prevalence: Female, Diabetes",Percent of Females That Have Diabetes,,percent of females that have diabetes; -dc/ntpwcslsbjfc8,Wages Total of Person: Postal Service (NAICS/491),Total Wages Paid to Postal Service Workers,,total wages of postal service workers; -dc/p69tpsldf99h7,Population of Person: Retail Trade (NAICS/44-45),Number of Retail Trade Workers,,number of retail trade workers;Number of retail trade workers; Individuals employed in the retail trade sector; Workforce size for the retail trade industry; People working in the retail trade field; Employment numbers in the retail trade industry; -dc/qgpqqfzwz03d,Wages Total of Person: Scenic And Sightseeing Transportation (NAICS/487),Total Wages Paid to Scenic and Sightseeing Transportation Workers,,total wages of scenic and sightseeing transportation workers; -dc/qnz3rlypmfvw6,Population of Person: Plastics And Rubber Products Manufacturing (NAICS/326),Population of People Working in the Plastics and Rubber Products Manufacturing Industry,,number of plastics and rubber products manufacturing workers; -dc/rfdrfdc164y3b,Wages Total of Person: Chemical Manufacturing (NAICS/325),Total Wages for People Working in the Chemical Manufacturing Industry,,total wages of chemical manufacturing workers; -dc/rlk1yxmkk1qqg,Population of Person: Beverage And Tobacco Product Manufacturing (NAICS/312),Population of People Working in the Beverage and Tobacco Product Manufacturing Industry,,number of beverage and tobacco product manufacturing workers; -dc/t6m99mqmqxjbc,Median Income (Real Individual Earnings Before Deductions): Management of Companies And Enterprises (NAICS/55),Median Income for People Working in the Management of Companies and Enterprises Industry,,median income of management of companies and enterprises workers;Median salary for people working in the management of companies and enterprises sector; Number of people employed in the management of companies and enterprises industry; Total earnings for employees in the management of companies and enterprises sector; -dc/tqgf8zv96r5t8,Population of Person: Textile And Fabric Finishing Mills (NAICS/3133),Number of Textile and Fabric Finishing Mills Workers,,number of textile and fabric finishing mills workers; -dc/v3qgyhwx13m44,Population of Person: Scenic And Sightseeing Transportation (NAICS/487),Number of Scenic and Sightseeing Transportation Workers,,number of scenic and sightseeing transportation workers; -dc/vp4cplffwv86g,Population of Person: Printing And Related Support Activities (NAICS/323),Number of Printing and Related Support Activities Workers,,number of printing and related support activities workers; -dc/w1tfjz3h6138,Population of Person: Warehousing And Storage (NAICS/493),Number of Warehousing and Storage Workers,,number of warehousing and storage workers; -dc/ws19bm1hl105b,Population of Person: Wood Product Manufacturing (NAICS/321),Number of Wood Product Manufacturing Workers,,number of wood product manufacturing workers; -dc/wv0mr2t2f5rj9,Wages Total of Person: Printing And Related Support Activities (NAICS/323),Total Wages Paid to Printing and Related Support Activities Workers,,total wages of printing and related support activities workers; -dc/wzz9t818m1gk8,Wages Total of Person: Manufacturing (NAICS/31-33),Total Wages Paid to Manufacturing Workers,,total wages of manufacturing workers;Total wages paid to manufacturing workers; How much money workers in the manufacturing make; Earnings of those employed in manufacturing; Income for workers in the manufacturing sector; Wages for employees in the manufacturing field; -dc/x3gghqtglpr59,Median Income (Real Individual Earnings Before Deductions): Finance And Insurance (NAICS/52),Median Income for People Working in the Finance and Insurance Industry,,median income of finance and insurance workers;The average salary for individuals employed in the finance and insurance sector; Number of people working in the finance and insurance industry; Total pay earned by employees in the finance and insurance field; -dc/x95kmng969n42,Median Income (Real Individual Earnings Before Deductions): Utilities (NAICS/22),Median Income of Utilities Workers,,median income of utilities workers;Median income of utilities workers; Average salary for workers in the utilities field; Income in the middle for the utilities sector; Median pay for utilities industry; Typical earnings for utilities workers; -dc/xj2nk2bg60fg,Median Income (Real Individual Earnings Before Deductions): Information (NAICS/51),Median Income for People Working in the Information Industry,,median income of information workers;Middle income for those working in the information sector; Number of people employed in the information industry; Total pay earned by those working in the information sector; -dc/xmpy89x1nh8cg,"Prevalence: Male, Diabetes",Percent of Males That Have Diabetes,,percent of males that have diabetes; -dc/yn0h4nw4k23f1,Population of Person: Pipeline Transportation (NAICS/486),Population of People Working in Pipeline Transportation,,number of pipeline transportation workers; -dc/yw52qqrrb2w11,"Median Income (Real Individual Earnings Before Deductions): Agriculture, Forestry, Fishing And Hunting (NAICS/11)","Median Income of People Working in the Agriculture, Forestry, Fishing, and Hunting Industry",,"median income of agriculture, forestry, fishing and hunting workers;Median income of people working in the agriculture, forestry, fishing, and hunting industry;How much money on average workers in agriculture make;Average earnings of those employed in forestry, fishing, and hunting;Middle percentile income for workers in the agriculture, forestry, fishing, and hunting sector;What's the typical salary for people working in agriculture, forestry, fishing, and hunting.;" -dc/yxxs3hh2g2shd,Wages Total of Person: Nonmetallic Mineral Product Manufacturing (NAICS/327),Total Wages for People Working in the Nonmetallic Mineral Product Manufacturing Industry,,total wages of nonmetallic mineral product manufacturing workers; -dc/z27q5dymqyrnf,Population of Person: Apparel Manufacturing (NAICS/315),Population of People Working in the Apparel Manufacturing Industry,,number of apparel manufacturing workers; -dc/zbpsz8dg01nh2,Median Income (Real Individual Earnings Before Deductions): Transportation And Warehousing (NAICS/48-49),Median Income of Transportation and Warehousing Workers,,median income of transportation and warehousing workers;Median income of transportation and warehousing workers; Average salary for workers in the transportation and warehousing field; Income in the middle for the transportation and warehousing sector; Median pay for transportation and warehousing industry; Typical earnings for transportation and warehousing workers; -worldBank/4_1_1_TOTAL_ELECTRICITY_OUTPUT,Total electricity output (GWh),Total electricity output,,total energy output; total energy produced; -worldBank/4_1_2_REN_ELECTRICITY_OUTPUT,Renewable electricity output (GWh),Renewable electricity output,,renewable energy output; energy produced from renewables; -worldBank/4_1_SHARE_RE_IN_ELECTRICITY,Renewable electricity share of total electricity output (%),Renewable electricity proportion in total output,,fraction of electricity output due to renewables; renewable electricity as a percentage of total output; electricity output from renewables; -worldBank/EG_ELC_ACCS_RU_ZS,"Access to electricity, rural (% of rural population)",Access to electricity in rural area,,Percent of rural people with access to electricity; fraction of rural population with access to electrcity; rural population with electricty access; -worldBank/EG_ELC_ACCS_UR_ZS,"Access to electricity, urban (% of urban population)",Access to electricity in urban areas,,Percent of urban people with access to electricity; fraction of urban population with access to electrcity; urban population with electricty access; -worldBank/EG_ELC_ACCS_ZS,Access to electricity (% of population),Access to electricity,,Percent of people with access to electricity; fraction of population with access to electrcity; population with electricity access; +LifeExpectancy_Person,people life expectancy,,, +LifeExpectancy_Person_Female,female life expectancy,,, +LifeExpectancy_Person_Male,male Life expectancy,,, +MarketValue_Farm_AgriculturalProducts,Total market value of agricultural farms,,, +MarketValue_Farm_Crops,Market Value of Farms Growing Crops,,, +MarketValue_Farm_LivestockAndPoultry,Market Value of Livestock and Poultry in farm inventory,,, +MarketValue_Farm_MachineryAndEquipment,Market Value of Farm Machinery and Equipment,,, +Max_BarometricPressure,Max Barometric Pressure,,, +Max_Humidity_RelativeHumidity,Max Relative Humidity,,, +Max_PrecipitableWater_Atmosphere,Max Precipitable Water,,, +Max_Rainfall,Maximum rain fall,,, +Max_Snowfall,Maximum snow fall,,, +Max_Temperature,Maximum Temperature,,, +Mean_Area_Farm,Mean farm area,,, +Mean_BarometricPressure,Mean Barometric Pressure,,, +Mean_BirthWeight_BirthEvent_LiveBirth,Average birth weight for infants,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAfrica,Average Cash Assistance for Households with foreign born people from africa,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAsia,Average Cash Assistance for Households with foreign born people from asia,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCaribbean,Average Cash Assistance for Households with foreign born people from Caribbean,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Average Cash Assistance for Households with foreign born people from Central America Except Mexico,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEasternAsia,Average Cash Assistance for Households with foreign born people from Eastern Asia,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEurope,Average Cash Assistance for Households with foreign born people from europe,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Average Cash Assistance for Households with foreign born people from Latin America,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthMexico,Average Cash Assistance for Households with foreign born people from Mexico,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthamerica,Average Cash Assistance for Households with foreign born people from northamerica,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Average Cash Assistance for Households with foreign born people from Northern Western Europe,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthamerica,Average Cash Assistance for Households with foreign born people from south america,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Average Cash Assistance for Households with foreign born people from South Central Asia,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Average Cash Assistance for Households with foreign born people from South Eastern Asia,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Average Cash Assistance for Households with foreign born people from Southern Eastern Europe,,, +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthWesternAsia,Average Cash Assistance for Households with foreign born people from Western Asia,,, +Mean_Concentration_AirPollutant_CO,Average Atmospheric Carbon Monoxide Concentration,,, +Mean_Concentration_AirPollutant_DieselPM,Average Diesel PM Particle Concentration,,, +Mean_Concentration_AirPollutant_NO2,Average Atmospheric Nitrogen Dioxide Concentration,,, +Mean_Concentration_AirPollutant_Ozone,Average ozone concentration,,, +Mean_Concentration_AirPollutant_PM10,Average PM 10 Particle Concentration,,, +Mean_Concentration_AirPollutant_PM2.5,Average PM 2.5 Particle Concentration,,, +Mean_Concentration_AirPollutant_SmokePM25,Average smoke PM 2.5 Particle Concentration,,, +Mean_Concentration_AirPollutant_SO2,Average Atmospheric Sulfur Dioxide Concentration,,, +Mean_CoverageArea_SolarInstallation_Commercial,The average area covered by commercial solar installations,,, +Mean_CoverageArea_SolarInstallation_Residential,The average area covered by residential solar installations,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAfrica,Mean Earnings of Household with foreign born people from africa,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAsia,Mean Earnings of Household with foreign born people from asia,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean Earnings of Household with foreign born people from Caribbean,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean Earnings of Household with foreign born people from Central America Except Mexico,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean Earnings of Household with foreign born people from Eastern Asia,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEurope,Mean Earnings of Household with foreign born people from europe,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean Earnings of Household with foreign born people from Latin America,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthMexico,Mean Earnings of Household with foreign born people from Mexico,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean Earnings of Household with foreign born people from north america,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean Earnings of Household with foreign born people from Northern Western Europe,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthOceania,Mean Earnings of Household with foreign born people from oceania,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean Earnings of Household with foreign born people from south america,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean Earnings of Household with foreign born people from South Central Asia,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean Earnings of Household with foreign born people from South Eastern Asia,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean Earnings of Household with foreign born people from Southern Eastern Europe,,, +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean Earnings of Household with foreign born people from Western Asia,,, +Mean_Earnings_Person_Female,Average earnings of females,,, +Mean_Earnings_Person_Male,Average earnings of males,,, +Mean_Expenses_Farm,Mean Expenses of Farm,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAfrica,Mean size of Households with foreign born people from africa,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAsia,Mean size of Households with foreign born people from asia,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean size of Households with foreign born people from Caribbean,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean size of Households with foreign born people from Central America Except Mexico,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean size of Households with foreign born people from Eastern Asia,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEurope,Mean size of Households with foreign born people from europe,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean size of Households with foreign born people from Latin America,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthMexico,Mean size of Households with foreign born people from Mexico,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean size of Households with foreign born people from North America,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean size of Households with foreign born people from Northern Western Europe,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthOceania,Mean size of Households with foreign born people from oceania,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean size of Households with foreign born people from South America,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean size of Households with foreign born people from South Central Asia,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean size of Households with foreign born people from South Eastern Asia,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean size of Households with foreign born people from Southern Eastern Europe,,, +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean size of Households with foreign born people from Western Asia,,, +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit,Mean Household Size of Occupied Housing Unit,,, +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Mean Household Size of owner Occupied Housing Unit,,, +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_RenterOccupied,Mean Household Size of renter Occupied Housing Unit,,, +Mean_Humidity_RelativeHumidity,Mean relative humidity,,, +Mean_Income_Household,Average household income,,, +Mean_Income_Household_FamilyHousehold,Average family household income,,, +Mean_Income_Household_MarriedCoupleFamilyHousehold,Average married couple household income,,, +Mean_Income_Household_NonfamilyHousehold,Average non-family household income,,, +Mean_IncomeDeficit_Household_FamilyHousehold,Mean Income Deficit of Family Household,,, +Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold,Mean Income Deficit of Married Couple Family Household,,, +Mean_IncomeDeficit_Household_SingleMotherFamilyHousehold,Mean Income Deficit of Single Mother Family Household,,, +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FoodAndDrinksSector,Average inflation in consumer price index of Food and Beverages Sector,,, +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FuelAndLightSector,Average inflation in consumer price index of Fuel and Light Sector,,, +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_GeneralSector,Average inflation in consumer price index,,, +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_UrbanHousingSector,Average inflation in consumer price index of urban housing Sector,,, +Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth,Average Time Since Last Live Birth,,, +Mean_LmpGestationalAge_BirthEvent_LiveBirth,Average Age of Pregnancy Measured from Start of Last Menstrual Period,,, +Mean_MarketValue_Farm_AgriculturalProducts,Average market value of agriculture products in farms,,, +Mean_MarketValue_Farm_LandAndBuildings,Average market value of land and buildings on a farm,,, +Mean_MarketValue_Farm_MachineryAndEquipment,Average market value of farm machinery and equipment,,, +Mean_MothersAge_BirthEvent_LiveBirth,Average Age of Mothers at Live Birth,,, +Mean_NetMeasure_Income_Farm,Mean Income of Farm,,, +Mean_OeGestationalAge_BirthEvent_LiveBirth,Average OE Gestational Age,,, +Mean_PalmerDroughtSeverityIndex,Mean Palmer Drought Severity Index (PDSI),,, +Mean_PalmerDroughtSeverityIndex_Forest,Mean Palmer Drought Severity Index (PDSI) in forested areas,,, +Mean_PopulationWeighted_Concentration_AirPollutant_SmokePM25,Population-weighted Mean Concentration of Smoke PM2.5,,, +Mean_PrecipitableWater_Atmosphere,Average amount of Precipitable Water,,, +Mean_PrenatalVisitCount_BirthEvent_LiveBirth,Average prenatal vists,,, +Mean_PrePregnancyBMI_BirthEvent_LiveBirth,Average Pre pregnancy BMI,,, +Mean_Rainfall,Mean near-surface rainfall,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAfrica,Mean Retirement Income of Households with foreign born people from Africa,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAsia,Mean Retirement Income of Households with foreign born people from Asia,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean Retirement Income of Households with foreign born people from Caribbean,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean Retirement Income of Households with foreign born people from Central America Except Mexico,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean Retirement Income of Households with foreign born people from Eastern Asia,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEurope,Mean Retirement Income of Households with foreign born people from Europe,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean Retirement Income of Households with foreign born people from Latin America,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthMexico,Mean Retirement Income of Households with foreign born people from Mexico,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean Retirement Income of Households with foreign born people from North America,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean Retirement Income of Households with foreign born people from Northern Western Europe,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthOceania,Mean Retirement Income of Households with foreign born people from Oceania,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean Retirement Income of Households with foreign born people from South America,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean Retirement Income of Households with foreign born people from South Central Asia,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean Retirement Income of Households with foreign born people from South Eastern Asia,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean Retirement Income of Households with foreign born people from Southern Eastern Europe,,, +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean Retirement Income of Households with foreign born people from Western Asia,,, +Mean_Snowfall,Mean snow fall,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,Mean social security income of households with foreign born people from Africa,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,Mean social security income of households with foreign born people from Asia,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean social security income of households with foreign born people from Caribbean,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean social security income of households with foreign born people from Central America Except Mexico,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean social security income of households with foreign born people from Eastern Asia,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,Mean social security income of households with foreign born people from Europe,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean social security income of households with foreign born people from Latin America,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,Mean social security income of households with foreign born people from Mexico,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean social security income of households with foreign born people from North America,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean social security income of households with foreign born people from Northern Western Europe,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthOceania,Mean social security income of households with foreign born people from Oceania,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean social security income of households with foreign born people from South America,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean social security income of households with foreign born people from South Central Asia,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean social security income of households with foreign born people from South Eastern Asia,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean social security income of households with foreign born people from Southern Eastern Europe,,, +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean social security income of households with foreign born people from Western Asia,,, +Mean_Temperature,Mean Temperature,,, +Mean_Visibility,Mean Visibility,,, +Mean_WagesMonthly_Worker,Mean Monthly Wages,,, +Mean_WindSpeed,Mean Wind Speed,,, +MeanMothersAge_BirthEvent,Mean Mother's Age at Birth,,, +dc/q2pgyz35p79l4,Number of homicides of incarcerated females,,, +dc/jtf63bh66k41g,Number of homicides of incarcerated people,,, +dc/z29z7w7ldnwl4,Number of homicides of incarcerated males,,, +dc/gb0b3cwxyfsh9,Number of deaths of incarcerated females,,, +dc/67ttwfn9dswch,Number of deaths of incarcerated people,,, +dc/shgj6xwg96pp3,Number of suicides of incarcerated females,,, +dc/jte92xq8qsgtd,Number of suicides of incarcerated people,,, +dc/ep052e5d1p2t4,Number of suicides of incarcerated males,,, +dc/6xlk95n27cn23,Number of deaths of incarcerated males,,, +dc/lnp5g90fwpct8,Number of Incarcerated females,,, +dc/hxsdmw575en24,Number of Incarcerated people,,, +dc/03l0q0wyqrk39,Number of Incarcerated males,,, +Median_Age_Person,Median age of people,,, +Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native people,,, +Median_Age_Person_AsianAlone,median age of asian people,,, +Median_Age_Person_BlackOrAfricanAmericanAlone,median age of black or african american people,,, +Median_Age_Person_Female,median age of females,,, +Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native females,,, +Median_Age_Person_Female_AsianAlone,median age of asian females,,, +Median_Age_Person_Female_BlackOrAfricanAmericanAlone,median age of black or african american females,,, +Median_Age_Person_Female_ForeignBorn,median age of females who are foreign born,,, +Median_Age_Person_Female_HispanicOrLatino,median age of hispanic or latino females,,, +Median_Age_Person_Female_Native,median age of native born females,,, +Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander females,,, +Median_Age_Person_Female_TwoOrMoreRaces,median age of multi-race females,,, +Median_Age_Person_Female_WhiteAlone,median age of white females,,, +Median_Age_Person_ForeignBorn,median age of foreign born people,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthAfrica,median age of foreign born people from africa,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthAsia,median age of foreign born people from asia,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthCaribbean,median age of foreign born people from caribbean,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,median age of foreign born people from central america except mexico,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthEasternAsia,median age of foreign born people from eastern asia,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthEurope,median age of foreign born people from europe,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthLatinAmerica,median age of foreign born people from latin america,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthMexico,median age of foreign born people from mexico,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthNorthamerica,median age of foreign born people from north america,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,median age of foreign born people from northern western europe,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthOceania,median age of foreign born people from oceania,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthamerica,median age of foreign born people from south america,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,median age of foreign born people from south central asia,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,median age of foreign born people from south eastern asia,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,median age of foreign born people from southern eastern europe,,, +Median_Age_Person_ForeignBorn_PlaceOfBirthWesternAsia,median age of foreign born people from western asia,,, +Median_Age_Person_HispanicOrLatino,median age of hispanic or latino people,,, +Median_Age_Person_Male,median age of males,,, +Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native males,,, +Median_Age_Person_Male_AsianAlone,median age of asian males,,, +Median_Age_Person_Male_BlackOrAfricanAmericanAlone,median age of black or african american males,,, +Median_Age_Person_Male_ForeignBorn,median age of foreign born males,,, +Median_Age_Person_Male_HispanicOrLatino,median age of hispanic or latino males,,, +Median_Age_Person_Male_Native,median age of native males,,, +Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander males,,, +Median_Age_Person_Male_TwoOrMoreRaces,median age of multi races males,,, +Median_Age_Person_Male_WhiteAlone,median age of white males,,, +Median_Age_Person_Native,median age of native people,,, +Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander,,, +Median_Age_Person_NoHealthInsurance,median age of people who have no health insurance,,, +Median_Age_Person_ResidesInAdultCorrectionalFacilities,Median age of people residing in adult correctional facilities,,, +Median_Age_Person_ResidesInCollegeOrUniversityStudentHousing,Median age of people residing in college or university student housing,,, +Median_Age_Person_ResidesInGroupQuarters,Median age of people residing in group quarters,,, +Median_Age_Person_ResidesInInstitutionalizedGroupQuarters,Median age of people residing in institutionalized group quarters,,, +Median_Age_Person_ResidesInNoninstitutionalizedGroupQuarters,Median age of people residing in noninstitutionalized group quarters,,, +Median_Age_Person_ResidesInNursingFacilities,Median age of people residing in nursing facilities,,, +Median_Age_Person_TwoOrMoreRaces,Median age of people of multi races,,, +Median_Age_Person_WhiteAlone,Median age of white people,,, +Median_Age_Person_WorkedInThePast12Months,Median age of people who worked in the past 12 months,,, +Median_Area_Farm,Median area of farm,,, +Median_Earnings_Person,median earnings of people,,, +Median_Earnings_Person_Female,median earnings of females,,, +Median_Earnings_Person_Male,median earnings of males,,, +Median_GrossRent_HousingUnit_WithCashRent_OccupiedHousingUnit_RenterOccupied,Median Gross Rent for Cash-Rent Housing Units,,, +Median_HomeValue_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Median home value for owner occupied housing units,,, +Median_Income_Household,Median household income,,, +Median_Income_Household_FamilyHousehold,Median household income for family households,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthAfrica,Median income of households with foreign born people from Africa,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthAsia,Median income of households with foreign born people from Asia,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthCaribbean,Median income of households with foreign born people from Caribbean,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Median income of households with foreign born people from Central America Except Mexico,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthEasternAsia,Median income of households with foreign born people from Eastern Asia,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthEurope,Median income of households with foreign born people from Europe,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Median income of households with foreign born people from Latin America,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthMexico,Median income of households with foreign born people from Mexico,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthNorthamerica,Median income of households with foreign born people from North America,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Median income of households with foreign born people from Northern Western Europe,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthOceania,Median income of households with foreign born people from Oceania,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthamerica,Median income of households with foreign born people from South America,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Median income of households with foreign born people from South Central Asia,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Median income of households with foreign born people from South Eastern Asia,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Median income of households with foreign born people from Southern Eastern Europe,,, +Median_Income_Household_ForeignBorn_PlaceOfBirthWesternAsia,Median income of households with foreign born people from Western Asia,,, +Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Median income for household with American Indian or Alaska Native householder,,, +Median_Income_Household_HouseholderRaceAsianAlone,Median income for household with Asian householder,,, +Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Median income for household with Black or African American householder,,, +Median_Income_Household_HouseholderRaceHispanicOrLatino,Median income for household with Hispanic or Latino householder,,, +Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Median income for household with Native Hawaiian or other Pacific Islander householder,,, +Median_Income_Household_HouseholderRaceTwoOrMoreRaces,Median income for household with muti races householder,,, +Median_Income_Household_HouseholderRaceWhiteAlone,Median income for household with white householder,,, +Median_Income_Household_MarriedCoupleFamilyHousehold,Median income for married couple family household,,, +Median_Income_Household_NoHealthInsurance,Median income for household without health insurance,,, +Median_Income_Household_NonfamilyHousehold,Median income for non family household,,, +Median_Income_Household_WithFoodStampsInThePast12Months,Median Income for Households With Food Stamps in the Past Year,,, +Median_Income_Household_WithoutFoodStampsInThePast12Months,Median Income for Households Without Food Stamps in the Past Year,,, +Median_Income_Person,median individual income,,, +Median_Income_Person_15OrMoreYears_Female_WithIncome,Median Income of females,,, +Median_Income_Person_15OrMoreYears_Male_WithIncome,Median Income of males,,, +Median_Income_Person_15OrMoreYears_WithIncome_ForeignBorn,Median Income of foreign born people,,, +Median_Income_Person_18OrMoreYears_Civilian_WithIncome,Median Income of civilians,,, +Median_Income_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_WithIncome,Median Income of people with bachelor's degree,,, +Median_Income_Person_25OrMoreYears_EducationalAttainmentGraduateOrProfessionalDegree_WithIncome,Median Income of people with graduate or professional degree,,, +Median_Income_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_WithIncome,Median Income of people with high school graduate includes equivalency,,, +Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome,Median Income of people with less than high school graduate,,, +Median_Income_Person_25OrMoreYears_EducationalAttainmentSomeCollegeOrAssociatesDegree_WithIncome,Median Income of people with some college or associates degree,,, +MedianMothersAge_BirthEvent,Median Mother's Age at Birth,,, +Min_Humidity_RelativeHumidity,Minimum Relative Humidity,,, +Min_Rainfall,Minimal rainfall,,, +Min_Snowfall,minimal snowfall,,, +Min_Temperature,minimal Temperature,,, +Monthly_Count_ElectricityConsumer,Monthly count of electricity consumers,,, +MortalityRate_Person_Upto4Years_AsFractionOf_Count_BirthEvent_LiveBirth,Mortality Rate of Children Younger Than 4 Years,,, +NetMeasure_Income_Farm,Total farm net income,,, +NumberOfDays_HeatWaveEvent,Number of Heat Wave days in a year,,, +PalmerDroughtSeverityIndex_Atmosphere,Palmer Drought Severity Index,,, +Percent_BurnedArea_FireEvent,Percent of area that are burned in land fire,,, +Percent_BurnedArea_FireEvent_Forest,Percent of forest area that burned,,, +Percent_BurnedArea_FireEvent_Forest_HighSeverity,Percent of forest area that experienced high-severity fire,,, +Percent_Daily_TobaccoUsing_In_Count_Person,Prevalence of Daily Tobacco Smoking,,, +Percent_Daily_TobaccoUsing_In_Count_Person_Female,Prevalence of Daily Tobacco Use Among Females,,, +Percent_Daily_TobaccoUsing_In_Count_Person_Male,Prevalence of Daily Tobacco Use Among Mmales,,, +Percent_Person_18To64Years_Female_NoHealthInsurance,Percentage of working age females Without Health Insurance,,, +Percent_Person_18To64Years_Male_NoHealthInsurance,Percentage of working age males Without Health Insurance,,, +Percent_Person_18To64Years_ReceivedNoHealthInsurance,Percentage of working age population Without Health Insurance,,, +Percent_Person_20OrMoreYears_WithDiabetes,Percentage of People Aged 20 and above With Diabetes,,, +Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening,Percentage of females Aged 21 to 65 Received Cervical Cancer Screening,,, +Percent_Person_50To74Years_Female_ReceivedMammography,Percentage of females Aged 50 to 74 Received Mammography,,, +Percent_Person_50To75Years_ReceivedColorectalCancerScreening,Percentage of People Aged 50 to 75 Received Colorectal Cancer Screening,,, +Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices,Percentage of elderly females Received Core Preventive Services,,, +Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,Percentage of elderly males Received Core Preventive Services,,, +Percent_Person_65OrMoreYears_WithAllTeethLoss,Percentage of elderly people who have lost all their teeth,,, +Percent_Person_BingeDrinking,prevalence of binge drinking,,, +Percent_Person_Children_WithAsthma,prevalence of asthma among children,,, +Percent_Person_Obesity,prevalence of obesity,,, +Percent_Person_PhysicalInactivity,prevalence of physical inactivity,,, +Percent_Person_ReceivedAnnualCheckup,Percentage of the population who receive an annual checkup,,, +Percent_Person_ReceivedCholesterolScreening,Percentage of adults who Received Cholesterol Screening,,, +Percent_Person_ReceivedDentalVisit,Percentage of adults who Received Dental Visit,,, +Percent_Person_SleepLessThan7Hours,Percentage of adults who Sleep Less Than 7 Hours,,, +Percent_Person_Smoking,Prevalence of Smoke among adults,,, +Percent_Person_WithAllTeethLoss,Prevalence of All Teeth Loss among adults,,, +Percent_Person_WithArthritis,Prevalence of Arthritis among adults,,, +Percent_Person_WithAsthma,Prevalence of Asthma among adults,,, +Percent_Person_WithCancerExcludingSkinCancer,Prevalence of Cancer Excluding Skin Cancer among adults,,, +Percent_Person_WithChronicKidneyDisease,Prevalence of Chronic Kidney Disease among adults,,, +Percent_Person_WithChronicObstructivePulmonaryDisease,Prevalence of Chronic Obstructive Pulmonary Disease among adults,,, +Percent_Person_WithCoronaryHeartDisease,Prevalence of Coronary Heart Disease among adults,,, +Percent_Person_WithDiabetes,Prevalence of Diabetes among adults,,, +Percent_Person_WithHighBloodPressure,Prevalence of High Blood Pressure among adults,,, +Percent_Person_WithHighCholesterol,Prevalence of High Cholesterol among adults,,, +Percent_Person_WithMentalHealthNotGood,Prevalence of poor Mental Health among adults,,, +Percent_Person_WithPhysicalHealthNotGood,Prevalence of poor Physical Health among adults,,, +Percent_Person_WithStroke,Prevalence of Stroke among adults,,, +dc/4lvmzr1h1ylk1,Prevalence of adult female obesity,,, +dc/tcqb49dvg7k53,Prevalence of adult female physical inactivity,,, +dc/nh3s4skee5483,Prevalence of adult female diabetes,,, +dc/x13tvt8jsgrm4,Prevalence of adult male obesity,,, +dc/ty7pq88d26963,Prevalence of adult male physical inactivity,,, +dc/xmpy89x1nh8cg,Prevalence of adult male diabetes,,, +Percent_Student_AsAFractionOf_Count_Teacher,Student to Teacher Ratio,,, +Percent_TobaccoUsing_In_Count_Person,Prevalence of Tobacco Use,,, +Percent_TobaccoUsing_In_Count_Person_Female,Prevalence of tobacco use among females,,, +Percent_TobaccoUsing_In_Count_Person_Male,Prevalence of tobacco use among males,,, +QuantitySold_FarmInventory_CattleAndCalves,Number of Cattle and Calves Sold From Farms,,, +QuantitySold_FarmInventory_HogsAndPigs,Number of Hogs and Pigs Sold From Farms,,, +dc/9pmyhk89dj3pf,Median income of people working in the Accommodation & Food Services Industry,,, +dc/4z9xy6wn8xns1,"Median income of people working in the Administrative Support, Waste Management & Remediation Services Industry",,, +dc/yw52qqrrb2w11,"Median income of people working in the Agriculture, Forestry, Fishing & Hunting Industry",,, +dc/mfz54y2skbpeh,"Median income of people working in the Arts, Entertainment & Recreation Industry",,, +dc/m07n4w3ywjzs3,Median income of people working in the Construction Industry,,, +dc/jefhcs9qxc971,Median income of people working in the Educational Services Industry,,, +dc/x3gghqtglpr59,Median income of people working in the Finance & Insurance Industry,,, +dc/2wgh04kx6es88,Median income of people working in the Health Care & Social Assistance Industry,,, +dc/xj2nk2bg60fg,Median income of people working in the Information Industry,,, +dc/t6m99mqmqxjbc,Median income of people working in the Management of Companies & Enterprises Industry,,, +dc/3ex11eg2q9hp6,Median income of people working in the Manufacturing Industry,,, +dc/b4dj4sbgqybh7,Median income of people working in the Mining Quarrying Oil & Gas Extraction Industry,,, +dc/5hv2p802zmh03,Median income of people working in the Professional Scientific & Technical Services Industry,,, +dc/7jqw95h5wbelb,Median income of people working in the Public Administration Industry,,, +dc/015d58s9xh8kd,Median income of people working in the Real Estate Rental & Leasing Industry,,, +dc/5f3gkej4mrq24,Median income of people working in the Retail Trade Industry,,, +dc/zbpsz8dg01nh2,Median income of people working in the Transportation & Warehousing Industry,,, +dc/x95kmng969n42,Median income of people working in the Utilities Industry,,, +dc/8hy0p1ex5s2cb,Median income of people working in the Wholesale Trade Industry,,, +Receipts_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,Revenue of Administrative And Support And Waste Management Services Establishments,,, +ReceiptsBillingsOrSales_Establishment_NAICSConstruction_WithPayroll,Revenue of Construction Establishments,,, +ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll,"Revenue of Arts, Entertainment, and Recreation Establishments",,, +ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll,Revenue of Educational Services Establishments,,, +ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,Revenue of Health Care and Social Assistance Establishments,,, +ReceiptsOrRevenue_Establishment_NAICSInformation_WithPayroll,Revenue of Information Establishments,,, +ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,"Revenue of Professional, Scientific, and Technical Services Establishments",,, +RetailDrugDistribution_DrugDistribution_Alfentanil,amount of retail drug purchase of alfentanil,,, +RetailDrugDistribution_DrugDistribution_Amobarbital,amount of retail drug purchase of Amobarbital,,, +RetailDrugDistribution_DrugDistribution_Amphetamine,amount of retail drug purchase of Amphetamine,,, +RetailDrugDistribution_DrugDistribution_AnabolicSteroids,amount of retail drug purchase of Anabolic Steroids,,, +RetailDrugDistribution_DrugDistribution_BarbituricAcidDerivativeOrSalt,amount of retail drug purchase of Barbituric Acid Derivative Or Salt,,, +RetailDrugDistribution_DrugDistribution_Buprenorphine,amount of retail drug purchase of Buprenorphine,,, +RetailDrugDistribution_DrugDistribution_Butalbital,amount of retail drug purchase of Butalbital,,, +RetailDrugDistribution_DrugDistribution_Cocaine,amount of retail drug purchase of Cocaine,,, +RetailDrugDistribution_DrugDistribution_Codeine,amount of retail drug purchase of Codeine,,, +RetailDrugDistribution_DrugDistribution_dea/9809,amount of retail drug purchase of Amobarbital,,, +RetailDrugDistribution_DrugDistribution_Dihydrocodeine,amount of retail drug purchase of Dihydrocodeine,,, +RetailDrugDistribution_DrugDistribution_DlMethamphetamine,amount of retail drug purchase of Dl-Methamphetamine,,, +RetailDrugDistribution_DrugDistribution_DMethamphetamine,amount of retail drug purchase of D-Methamphetamine,,, +RetailDrugDistribution_DrugDistribution_Ecgonine,amount of retail drug purchase of Ecgonine,,, +RetailDrugDistribution_DrugDistribution_FDAApprovedGammaHydroxybutyricAcidPreparations,amount of retail drug purchase of FDA Approved Gamma Hydroxybutyric Acid Preparations,,, +RetailDrugDistribution_DrugDistribution_Fentanyl,amount of retail drug purchase of Fentanyl,,, +RetailDrugDistribution_DrugDistribution_GammaHydroxybutyricAcid,amount of retail drug purchase of Gamma Hydroxybutyric Acid,,, +RetailDrugDistribution_DrugDistribution_Hydrocodone,amount of retail drug purchase of Hydrocodone,,, +RetailDrugDistribution_DrugDistribution_Hydromorphone,amount of retail drug purchase of Hydromorphone,,, +RetailDrugDistribution_DrugDistribution_Levorphanol,amount of retail drug purchase of Levorphanol,,, +RetailDrugDistribution_DrugDistribution_Lisdexamfetamine,amount of retail drug purchase of Lisdexamfetamine,,, +RetailDrugDistribution_DrugDistribution_Lorazepam,amount of retail drug purchase of Lorazepam,,, +RetailDrugDistribution_DrugDistribution_MarketableOralDronabinol,amount of retail drug purchase of Marketable Oral Dronabinol,,, +RetailDrugDistribution_DrugDistribution_Methadone,amount of retail drug purchase of Methadone,,, +RetailDrugDistribution_DrugDistribution_Methylphenidate,amount of retail drug purchase of Methylphenidate,,, +RetailDrugDistribution_DrugDistribution_Morphine,amount of retail drug purchase of Morphine,,, +RetailDrugDistribution_DrugDistribution_Nabilone,amount of retail drug purchase of Nabilone,,, +RetailDrugDistribution_DrugDistribution_Naloxone,amount of retail drug purchase of Naloxone,,, +RetailDrugDistribution_DrugDistribution_Noroxymorphone,amount of retail drug purchase of Noroxymorphone,,, +RetailDrugDistribution_DrugDistribution_Oxycodone,amount of retail drug purchase of Oxycodone,,, +RetailDrugDistribution_DrugDistribution_Oxymorphone,amount of retail drug purchase of Oxymorphone,,, +RetailDrugDistribution_DrugDistribution_Paregoric,amount of retail drug purchase of Paregoric,,, +RetailDrugDistribution_DrugDistribution_Pentobarbital,amount of retail drug purchase of Pentobarbital,,, +RetailDrugDistribution_DrugDistribution_Pethidine,amount of retail drug purchase of Pethidine,,, +RetailDrugDistribution_DrugDistribution_Phencyclidine,amount of retail drug purchase of Phencyclidine,,, +RetailDrugDistribution_DrugDistribution_Phendimetrazine,amount of retail drug purchase of Phendimetrazine,,, +RetailDrugDistribution_DrugDistribution_Phenobarbital,amount of retail drug purchase of Phenobarbital,,, +RetailDrugDistribution_DrugDistribution_PoppyStrawConcentrate,amount of retail drug purchase of Poppy Straw Concentrate,,, +RetailDrugDistribution_DrugDistribution_PowderedOpium,amount of retail drug purchase of Powdered Opium,,, +RetailDrugDistribution_DrugDistribution_Remifentanil,amount of retail drug purchase of Remifentanil,,, +RetailDrugDistribution_DrugDistribution_Secobarbital,amount of retail drug purchase of Secobarbital,,, +RetailDrugDistribution_DrugDistribution_Sufentanil,amount of retail drug purchase of Sufentanil,,, +RetailDrugDistribution_DrugDistribution_Tapentadol,amount of retail drug purchase of Tapentadol,,, +RetailDrugDistribution_DrugDistribution_Testosterone,amount of retail drug purchase of Testosterone,,, +RetailDrugDistribution_DrugDistribution_TincuredOpium,amount of retail drug purchase of Tincured Opium,,, +RetailDrugDistribution_DrugDistribution_Zolpidem,amount of retail drug purchase of Zolpidem,,, +dc/xx3v7dmqp95h3,Revenue of Biomass Electric Power Generation establishments,,, +dc/s9cn1zj5fv5cc,Revenue of Electric Power Distribution establishments,,, +Revenue_Establishment_NAICSFinanceInsurance_WithPayroll,Revenue of Finance Insurance establishments,,, +dc/96b2ddmlpvq7f,Revenue of Geothermal Electric Power Generation establishments,,, +dc/n18hgz310vw83,Revenue of Hydroelectric Power Generation establishments,,, +Revenue_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,Revenue of Management of Companies Enterprises establishments,,, +dc/ktmr6ngnsqxmf,Revenue of Nuclear Electric Power Generation establishments,,, +Revenue_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,Revenue of Real Estate Rental Leasing establishments,,, +dc/te4lvw7tlnfv9,Revenue of Solar Electric Power Generation establishments,,, +dc/b6z2v4t8cvcd5,Revenue of Wind Electric Power Generation establishments,,, +Sales_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll,"Sales of Manufacturer Sales Branches And Offices, Wholesale Trade Establishments",,, +Sales_Establishment_NAICSAccommodationFoodServices_WithPayroll,Sales of Accommodation and Food Services Establishments,,, +Sales_Establishment_NAICSWholesaleTrade_WithPayroll,Sales of Wholesale Trade Establishments,,, +Sales_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Sales of USC Merchant Wholesalers, Wholesale Trade Establishments",,, +sdg/AG_FOOD_WST,Total food waste,,, +sdg/AG_FOOD_WST_PC,Food waste per capita,,, +sdg/AG_LND_FRST,Forest area as a proportion of total land area,,, +sdg/AG_LND_FRSTBIOPHA,Above-ground biomass in forest,,, +sdg/AG_LND_FRSTCHG,Annual forest area change rate,,, +sdg/AG_LND_FRSTN,Forest area,,, +sdg/AG_LND_FRSTPRCT,Proportion of forest area within legally established protected areas,,, +sdg/DC_ODA_BDVDL,Total official development assistance for biodiversity,,, +sdg/EG_FEC_RNEW,Renewable energy share in the total final energy consumption,,, +sdg/EN_EWT_GENPCAP,Electronic waste generated per capita,,, +sdg/EN_EWT_GENV,Electronic waste generated,,, +sdg/EN_MAR_BEALIT_BP,Beach litter originating from national land-based sources that ends in the beach,,, +sdg/EN_MAR_BEALIT_OP,Beach litter originating from national land-based sources that ends in the ocean,,, +sdg/EN_MAR_BEALITSQ,Beach litter per square kilometer,,, +sdg/EN_MAR_PLASDD,Floating plastic debris density,,, +sdg/EN_MAT_DOMCMPG,Domestic material consumption per unit of GDP,,, +sdg/EN_MAT_DOMCMPT,Domestic material consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF1,Domestic Biomass material consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF11,Domestic crops consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF13,Domestic Wood consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF14,Domestic Wild catch and harvest consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF2,Domestic Metal ores consumption,,, +sdg/EN_MAT_DOMCMPT.PRODUCT--MF3,Domestic Non-metallic minerals consumption,,, +sdg/EN_SCP_FRMN,Number of companies publishing sustainability reports with disclosure by dimension,,, +sdg/EN_SCP_FSHGDP,Sustainable fisheries as a proportion of GDP,,, +sdg/ER_FFS_CMPT_GDP,Fossil-fuel subsidies as a proportion of total GDP,,, +sdg/ER_FFS_CMPT_PC_CD,Fossil-fuel subsidies per capita,,, +sdg/ER_H2O_FWTL,Proportion of fish stocks within biologically sustainable levels,,, +sdg/ER_MRN_MPA,Average proportion of Marine Key Biodiversity Areas covered by protected areas,,, +sdg/ER_PTD_FRHWTR,Average proportion of Freshwater Key Biodiversity Areas covered by protected areas,,, +sdg/ER_PTD_MTN,Average proportion of Mountain Key Biodiversity Areas covered by protected areas,,, +sdg/ER_PTD_TERR,Average proportion of Terrestrial Key Biodiversity Areas covered by protected areas,,, +sdg/ER_RSK_LST,Red List Index,,, +sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F,Proportion of females of reproductive age who have their need for family planning satisfied with modern methods,,, +sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F,Proportion of females aged 15-49 years with anaemia,,, +sdg/SH_STA_MORT.SEX--F,Maternal mortality ratio,,, +sdg/SH_STA_STNT.AGE--Y0T4,Proportion of children under 5 who are moderately or severely stunted,,, +sdg/SH_STA_WAST.AGE--Y0T4,Proportion of children under 5 who are moderately or severely wasted,,, +sdg/SI_POV_DAY1,Proportion of population below international poverty line,,, +sdg/SI_POV_EMP1.AGE--Y_GE15,Employed population below international poverty line,,, +sdg/SN_ITK_DEFC,Prevalence of undernourishment,,, +sdg/SP_ACS_BSRVH2O,Proportion of population using basic drinking water services,,, +sdg/SP_ACS_BSRVSAN,Proportion of population using basic sanitation services,,, +sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F,Adolescent (15 to 19 years old) birth rate,,, +StandardizedPrecipitationEvapotranspirationIndex_Atmosphere,Standardized Precipitation Evapotranspiration Index (SPEI),,, +StandardizedPrecipitationIndex_Atmosphere,Standardized Precipitation Index (SPI),,, +Temperature,Temperature,,, +UnemploymentRate_Person,unemployment rate,,, +UnemploymentRate_Person_Female,female unemployment rate,,, +UnemploymentRate_Person_Male,male unemployment rate,,, +UnemploymentRate_Person_Rural,unemployment rate for people living in rural areas,,, +UnemploymentRate_Person_Rural_Female,unemployment rate for female living in rural areas,,, +UnemploymentRate_Person_Rural_Male,unemployment rate for male living in rural areas,,, +UnemploymentRate_Person_Urban,unemployment rate for person in urban areas,,, +UnemploymentRate_Person_Urban_Female,unemployment rate for female living in urban areas,,, +UnemploymentRate_Person_Urban_Male,unemployment rate for male living in urban areas,,, +USStateQuarterlyIndustryGDP_NAICS_11,"Amount of GDP for Agriculture, Forestry, Fishing And Hunting",,, +USStateQuarterlyIndustryGDP_NAICS_21,"Amount of GDP for Mining, Quarrying, Oil Gas Extraction",,, +USStateQuarterlyIndustryGDP_NAICS_22,Amount of GDP for Utilities,,, +USStateQuarterlyIndustryGDP_NAICS_23,Amount of GDP for Construction,,, +USStateQuarterlyIndustryGDP_NAICS_311_316&322_326,Amount of GDP for Manufacturing,,, +USStateQuarterlyIndustryGDP_NAICS_42,Amount of GDP for Wholesale Trade,,, +USStateQuarterlyIndustryGDP_NAICS_44_45,Amount of GDP for Retail Trade,,, +USStateQuarterlyIndustryGDP_NAICS_48_49,Amount of GDP for Transportation and Warehousing,,, +USStateQuarterlyIndustryGDP_NAICS_51,Amount of GDP for Information,,, +USStateQuarterlyIndustryGDP_NAICS_52,Amount of GDP for Finance and Insurance,,, +USStateQuarterlyIndustryGDP_NAICS_53,Amount of GDP for Real Estate and Rental and Leasing,,, +USStateQuarterlyIndustryGDP_NAICS_54,"Amount of GDP for Professional, Scientific, and Technical Services",,, +USStateQuarterlyIndustryGDP_NAICS_55,Amount of GDP for Management of Companies and Enterprises,,, +USStateQuarterlyIndustryGDP_NAICS_56,"Amount of GDP for Administrative Support, Waste Management and Remediation Services",,, +USStateQuarterlyIndustryGDP_NAICS_61,Amount of GDP for Educational Services,,, +USStateQuarterlyIndustryGDP_NAICS_62,Amount of GDP for Health Care and Social Assistance,,, +USStateQuarterlyIndustryGDP_NAICS_71,"Amount of GDP for Arts, Entertainment, and Recreation",,, +USStateQuarterlyIndustryGDP_NAICS_72,Amount of GDP for Accommodation and Food Services,,, +WagesAnnual_Establishment,total annual payroll amount of all establishments,,, +WagesAnnual_Establishment_NAICSAccommodationFoodServices,total annual payroll amount of Accommodation and Food Services establishments,,, +WagesAnnual_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"total annual payroll amount of Administrative Support, Waste Management and Remediation Services establishments",,, +WagesAnnual_Establishment_NAICSAgricultureForestryFishingHunting,"total annual payroll amount of Agriculture, Forestry, Fishing and Hunting establishments",,, +WagesAnnual_Establishment_NAICSArtsEntertainmentRecreation,"total annual payroll amount of Arts, Entertainment and Recreation establishments",,, +WagesAnnual_Establishment_NAICSConstruction,total annual payroll amount of Construction establishments,,, +WagesAnnual_Establishment_NAICSEducationalServices,total annual payroll amount of Educational Services establishments,,, +WagesAnnual_Establishment_NAICSFinanceInsurance,total annual payroll amount of Finance and Insurance establishments,,, +WagesAnnual_Establishment_NAICSHealthCareSocialAssistance,total annual payroll amount of Health Care and Social Assistance establishments,,, +dc/ck1ksqd8rgps6,total annual payroll amount of Heavy and Civil Engineering Construction establishments,,, +WagesAnnual_Establishment_NAICSInformation,total annual payroll amount of Information establishments,,, +WagesAnnual_Establishment_NAICSManagementOfCompaniesEnterprises,total annual payroll amount of Management of Companies and Enterprises establishments,,, +WagesAnnual_Establishment_NAICSManufacturing,total annual payroll amount of Manufacturing establishments,,, +WagesAnnual_Establishment_NAICSMiningQuarryingOilGasExtraction,"total annual payroll amount of Mining, Quarrying, and Oil and Gas Extraction establishments",,, +WagesAnnual_Establishment_NAICSNonclassifiable,total annual payroll amount of Nonclassifiable establishments,,, +WagesAnnual_Establishment_NAICSOtherServices,total annual payroll amount of Other Services establishments,,, +WagesAnnual_Establishment_NAICSProfessionalScientificTechnicalServices,"total annual payroll amount of Professional, Scientific, and Technical Services establishments",,, +WagesAnnual_Establishment_NAICSRealEstateRentalLeasing,total annual payroll amount of Real Estate and Rental and Leasing establishments,,, +dc/msz3yy4p50yyf,"total annual payroll amount of Research and Development in the Physical, Engineering, and Life Sciences establishments",,, +dc/j5fv028n7nhe4,total annual payroll amount of Residential Building Construction establishments,,, +WagesAnnual_Establishment_NAICSRetailTrade,total annual payroll amount of Retail Trade establishments,,, +WagesAnnual_Establishment_NAICSTransportationWarehousing,total annual payroll amount of Transportation and Warehousing establishments,,, +WagesAnnual_Establishment_NAICSUtilities,total annual payroll amount of Utilities establishments,,, +WagesAnnual_Establishment_NAICSWholesaleTrade,total annual payroll amount of Wholesale Trade,,, +WagesTotal_Worker_NAICSAccommodationFoodServices,Total Wages of Workers in the Accommodation and Food Services Industry,,, +WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Total Wages of Workers in the Administrative and Support and Waste Management Services Industry,,, +WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"Total wages of workers in the agriculture, forestry, fishing, & hunting industry",,, +dc/4ky4sj05bw4nd,total wages of Air Transportation workers,,, +dc/lygznlxpkj318,total wages of Apparel Manufacturing workers,,, +WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"total wages of Arts, Entertainment, and Recreation workers",,, +dc/9kk3vkzn5v0fb,total wages of Beverage and Tobacco Product Manufacturing workers,,, +dc/8lqwvg8m9x7z8,total wages of Cattle Ranching and Farming workers,,, +dc/rfdrfdc164y3b,total wages of Chemical Manufacturing workers,,, +WagesTotal_Worker_NAICSConstruction,total wages of Construction workers,,, +dc/95gev5g99r7nc,total wages of Couriers and Messengers workers,,, +WagesTotal_Worker_NAICSEducationalServices,total wages of Educational Services workers,,, +WagesTotal_Worker_NAICSFinanceInsurance,total wages of Finance and Insurance workers,,, +dc/jngmh68j9z4q,total wages of Food Manufacturing workers,,, +dc/dchdrg93spxkf,total wages of General Merchandise Stores workers,,, +WagesTotal_Worker_NAICSGoodsProducing,total wages of Goods Producing workers,,, +WagesTotal_Worker_NAICSHealthCareSocialAssistance,total wages of Health Care and Social Assistance workers,,, +WagesTotal_Worker_NAICSInformation,total wages of Information workers,,, +dc/fetj39pqls2df,total wages of Leather and Allied Product Manufacturing workers,,, +WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,total wages of workers in Management of Companies and Enterprises,,, +dc/wzz9t818m1gk8,total wages of workers in Manufacturing,,, +WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"total wages of workers in Mining, Quarrying, and Oil and Gas Extraction",,, +dc/6ets5evke9mw5,total wages of workers in Miscellaneous Store Retailers,,, +WagesTotal_Worker_NAICSNonclassifiable,total wages of workers in Nonclassifiable Establishments,,, +dc/yxxs3hh2g2shd,total wages of workers in Nonmetallic Mineral Product Manufacturing,,, +dc/8pxklrk2q6453,total wages of workers in Nonstore Retailers,,, +dc/kl7t3p3de7tlh,total wages of workers in Paper Manufacturing,,, +dc/8cssekvykhys5,total wages of workers in Petroleum and Coal Products Manufacturing,,, +dc/n0m3e2r3pxb21,total wages of workers in Pipeline Transportation,,, +dc/9yj0bdp6s4ml5,total wages of workers in Plastics and Rubber Products Manufacturing,,, +dc/ntpwcslsbjfc8,total wages of workers in Postal Service,,, +dc/wv0mr2t2f5rj9,total wages of workers in Printing and Related Support Activities,,, +WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"total wages of workers in Professional, Scientific, and Technical Services",,, +WagesTotal_Worker_NAICSPublicAdministration,total wages of workers in Public Administration,,, +dc/ksynl8pj8w5t5,total wages of workers in Rail Transportation,,, +WagesTotal_Worker_NAICSRealEstateRentalLeasing,total wages of workers in Real Estate and Rental and Leasing,,, +dc/dxcbt2knrsgg9,total wages of workers in Retail Trade,,, +dc/qgpqqfzwz03d,total wages of workers in Scenic and Sightseeing Transportation,,, +WagesTotal_Worker_NAICSServiceProviding,total wages of workers in Service Providing,,, +dc/k4grzkjq201xh,"total wages of workers in Sporting Goods, Hobby, Musical Instrument, and Book Stores",,, +dc/bceet4dh33ev,total wages of workers in Support Activities for Transportation,,, +dc/1jqm2g7cm9m75,total wages of workers in Textile Fabric Finishing and Fabric Coating Mills,,, +dc/7w0e0p0dzj82g,total wages of workers in Textile Mills,,, +dc/1q3ker7zf14hf,total wages of workers in Textile Product Mills,,, +WagesTotal_Worker_NAICSTotalAllIndustries,total wages of workers in all industries,,, +dc/9t5n4mk2fxzdg,total wages of workers in Transit Ground Passenger Transportation industry,,, +dc/84czmnc1b6sp5,total wages of workers in Transportation Warehousing industry,,, +dc/h77bt8rxcjve3,total wages of workers in Truck Transportation industry,,, +WagesTotal_Worker_NAICSUtilities,total wages of workers in Utilities industry,,, +dc/fcn7wgvcwtsj2,total wages of workers in Warehousing Storage industry,,, +dc/0hq9z5mspf73f,Total wages of workers in transportation and warehousing industry,,, +WagesTotal_Worker_NAICSWholesaleTrade,Total wages of workers in wholesale trade industry,,, +dc/nesnbmrncfjrb,Total wages of workers in wood product manufacturing industry,,, +WHO/Adult_daily_tob_use,Prevalence Of Daily Tobacco Use Among Adults,,, +WHO/bcgv_Female,Percentage of Bcg Immunization Coverage Among 1 Year Old female,,, +WHO/bcgv_Male,Percentage of Bcg Immunization Coverage Among 1 Year Old male,,, +WHO/bcgv_Rural,Percentage of Bcg Immunization Coverage Among 1 Year Old in Rural Areas,,, +WHO/bcgv_Urban,Percentage of Bcg Immunization Coverage Among 1 Year Old in Urban areas,,, +WHO/CM_01,Number Of under 5 years old Deaths,,, +WHO/CM_02,Number Of Infant Deaths,,, +WHO/CM_03,Number Of Neonatal Deaths,,, +WHO/dptv_Female,Percentage of Dtp3 Immunization Coverage Among 1 Year Old female,,, +WHO/dptv_Male,Percentage of Dtp3 Immunization Coverage Among 1 Year Old male,,, +WHO/dptv_Rural,Percentage of Dtp3 Immunization Coverage Among 1 Year Old in Rural Areas,,, +WHO/dptv_Urban,Percentage of Dtp3 Immunization Coverage Among 1 Year Old in Urban areas,,, +WHO/fullv_Female,Percentage of Full Immunization Coverage Among 1 Year Old female,,, +WHO/fullv_Male,Percentage of Full Immunization Coverage Among 1 Year Old male,,, +WHO/fullv_Rural,Percentage of Full Immunization Coverage Among 1 Year Old in Rural Areas,,, +WHO/fullv_Urban,Percentage of Full Immunization Coverage Among 1 Year Old in Urban areas,,, +WHO/GDO_q35,Estimated Population-Based Prevalence Of Depression,,, +WHO/LBW_PREVALENCE,Low Birth Weight Prevalence,,, +WHO/M_Est_smk_daily,Daily Tobacco Smoking Prevalence,,, +WHO/mslv_Female,Measles Immunization Coverage Among 1 year old female,,, +WHO/mslv_Male,Measles Immunization Coverage Among 1 year old male,,, +WHO/mslv_Rural,Measles Immunization Coverage Among 1 year old in Rural Areas,,, +WHO/mslv_Urban,Measles Immunization Coverage Among 1 year old in Urban areas,,, +WHO/NCD_BMI_18A,Prevalence Of Underweight Among Adults,,, +WHO/NCD_BMI_30A,Prevalence Of Obesity Among Adults,,, +WHO/NCD_PAC,Prevalence Of Insufficient Physical Activity Among Adults,,, +WHO/NTD_1,Number Of New Reported Cases Of Buruli Ulcer,,, +WHO/NTD_4,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Gambiense),,, +WHO/NTD_5,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Rhodesiense),,, +WHO/NTD_LEISHCNUM,Number Of Cases Of Cutaneous Leishmaniasis Reported,,, +WHO/NTD_LEISHVNUM,Number Of Cases Of Visceral Leishmaniasis Reported,,, +WHO/NTD_LEPR5,Leprosy - Number Of New G2D Cases,,, +WHO/NTD_YAWSNUM,Number Of Cases Of Yaws Reported,,, +WHO/NUTOVERWEIGHTPREV,Overweight Prevalence Among Children Under 5 Years old,,, +WHO/NUTRITION_ANAEMIA_CHILDREN_PREV,Prevalence Of Anaemia In Children Aged 6-59 Months,,, +WHO/NUTRITION_WA_2,Prevalence Of Underweight Children Under 5 Years Of Age,,, +WHO/NUTRITION_WH_2,Prevalence Of Wasted Children Under 5 Years Of Age,,, +WHO/NUTRITION_WH_3,Prevalence Of Severely Wasted Children Under 5 Years Of Age,,, +WHO/NUTSTUNTINGPREV,Stunting Prevalence Among Children Under 5 Years Of Age,,, +WHO/poliov_Female,Polio Immunization Coverage Among 1 year old female,,, +WHO/poliov_Male,Polio Immunization Coverage Among 1 year old male,,, +WHO/poliov_Rural,Polio Immunization Coverage Among 1 year old in rural area,,, +WHO/poliov_Urban,Polio Immunization Coverage Among 1 year old in urban area,,, +WHO/SA_0000001418,Disability-Adjusted Life Years Due to Alcohol Use Disorders,,, +WHO/SA_0000001419,Disability-Adjusted Life Years Due to Breast Cancer,,, +WHO/SA_0000001420,Disability-Adjusted Life Years Due to Colon and Rectum Cancer,,, +WHO/SA_0000001421,Disability-Adjusted Life Years Due to Diabetes,,, +WHO/SA_0000001422,Disability-Adjusted Life Years Due to Drownings,,, +WHO/SA_0000001423,Disability-Adjusted Life Years Due to Falls,,, +WHO/SA_0000001424,Disability-Adjusted Life Years Due to Fires,,, +WHO/SA_0000001425,Disability-Adjusted Life Years Due to Ischaemic Heart Disease,,, +WHO/SA_0000001426,Disability-Adjusted Life Years Due to Liver Cancer,,, +WHO/SA_0000001427,Disability-Adjusted Life Years Due to Liver Cirrhosis,,, +WHO/SA_0000001429,Disability-Adjusted Life Years Due to Mouth and Oropharynx Cancer,,, +WHO/SA_0000001430,Disability-Adjusted Life Years Due to Esophagus Cancer,,, +WHO/SA_0000001431,Disability-Adjusted Life Years Due to Poisoning,,, +WHO/SA_0000001432,Disability-Adjusted Life Years Due to Prematurity and Low Birth Weight,,, +WHO/SA_0000001433,Disability-Adjusted Life Years Due to Road Traffic Accidents,,, +WHO/SA_0000001434,Disability-Adjusted Life Years Due to Self-Inflicted Injuries,,, +WHO/SA_0000001435,Disability-Adjusted Life Years Due to Unintentional Injuries,,, +WHO/SA_0000001436,Disability-Adjusted Life Years Due to Violence,,, +WHO/SA_0000001437,Alcohol Use Disorder Death Rate,,, +WHO/SA_0000001438,Breast Cancer Death Rate,,, +WHO/SA_0000001439,Colon and Rectum Cancer Death Rate,,, +WHO/SA_0000001440,Diabetes Death Rate,,, +WHO/SA_0000001441,Death Rate from Drownings,,, +WHO/SA_0000001442,Death Rate from Falls,,, +WHO/SA_0000001443,Death Rate from Fires,,, +WHO/SA_0000001444,Ischemic Heart Disease Death Rate,,, +WHO/SA_0000001445,Liver Cancer Death Rate,,, +WHO/SA_0000001446,Liver Cirrhosis Death Rate,,, +WHO/SA_0000001448,Mouth and Oropharynx Cancer Death Rate,,, +WHO/SA_0000001449,Esophagus Cancer Death Rate,,, +WHO/SA_0000001450,Death Rate from Poisoning,,, +WHO/SA_0000001451,Death Rate from Prematurity and Low Birth Weight,,, +WHO/SA_0000001452,Age-Standardized Death Rates from Road Traffic Accidents,,, +WHO/SA_0000001453,Age-Standardized Death Rates from Self-Inflicted Injury,,, +WHO/SA_0000001455,Age-Standardized Death Rates from Violence,,, +WHO/SA_0000001456,Age-Standardized Death Rates due to Alcoholic Liver Disease,,, +WHO/SA_0000001458,Age-Standardized Death Rates from Poisoning,,, +WHO/SDG_SH_DTH_RNCOM_ChronicRespiratoryDiseases,Number Of Deaths Attributed Chronic Respiratory Diseases,,, +WHO/SDG_SH_DTH_RNCOM_DiabetesMellitus,Number Of Deaths Attributed Diabetes Mellitus,,, +WHO/SDG_SH_DTH_RNCOM_MajorCardiovascularDiseases,Number Of Deaths Attributed Major Cardiovascular Diseases,,, +WHO/SDG_SH_DTH_RNCOM_MalignantNeoplasms,Number Of Deaths Attributed Malignant Neoplasms,,, +WithdrawalRate_Water,Water Withdrawal rate,,, +WithdrawalRate_Water_Domestic,Withdrawal Rate of Water used for domestic needs,,, +WithdrawalRate_Water_Industrial,Withdrawal Rate of Water used for industrial needs,,, +WithdrawalRate_Water_Irrigation,Withdrawal Rate of Water used for Irrigation,,, +WithdrawalRate_Water_Livestock,Withdrawal Rate of Water used for live stock,,, +WithdrawalRate_Water_Mining,Withdrawal Rate of Water used for mining,,, +WithdrawalRate_Water_PublicSupply,Withdrawal Rate of Water used for public supply,,, +WithdrawalRate_Water_Thermoelectric,Withdrawal Rate of Water used for Thermo electric,,, +worldBank/4_1_1_TOTAL_ELECTRICITY_OUTPUT,Total electricity output,,, +worldBank/4_1_2_REN_ELECTRICITY_OUTPUT,Renewable electricity output,,, +worldBank/4_1_SHARE_RE_IN_ELECTRICITY,Renewable electricity share of total electricity output,,, +worldBank/EG_ELC_ACCS_RU_ZS,percentage of rural population with access to electricity,,, +worldBank/EG_ELC_ACCS_UR_ZS,percentage of urban population with access to electricity,,, +worldBank/EG_ELC_ACCS_ZS,percentage of population with access to electricity,,, \ No newline at end of file diff --git a/tools/nl/embeddings/data/preindex/medium/duplicate_names.csv b/tools/nl/embeddings/data/preindex/medium/duplicate_names.csv index aa26d5735b..286396c638 100644 --- a/tools/nl/embeddings/data/preindex/medium/duplicate_names.csv +++ b/tools/nl/embeddings/data/preindex/medium/duplicate_names.csv @@ -1,20 +1,81 @@ PreferredSV,DroppedSV,DuplicateName -WagesTotal_Worker_NAICSEducationalServices,dc/jefhcs9qxc971,what is the average salary for people working in the educational services industry? -AirQualityIndex_AirPollutant,dc/topic/AirQualityIndex,AQI -Amount_EconomicActivity_GrossDomesticProduction_Nominal,dc/topic/GDP,GDP +Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person,nominal Gross Domestic Product (GDP) per capita +Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,Annual amount of acetaldehyde emissions from Industrial Processes +Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,Annual amount of ammonia emissions from Industrial Processes +Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,Annual amount of arsenic emissions from Industrial Processes +Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,Annual amount of benzene emissions from Industrial Processes +Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,Annual amount of cadmium emissions from Industrial Processes +Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,Annual amount of carbon monoxide emissions from Industrial Processes +Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,Annual amount of chlorane emissions from Industrial Processes +Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,Annual amount of chlorine emissions from Industrial Processes +Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,Annual amount of chloroform emissions from Industrial Processes +Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,Annual amount of Chromium_6 emissions from Industrial Processes +Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,Annual amount of Cobalt emissions from Industrial Processes +Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,Annual amount of Cyanide emissions from Industrial Processes +Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,Annual amount of fluorane emissions from industrial processes +Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,Annual amount of formaldehyde emissions from industrial processes +Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,Annual amount of hexane emissions from industrial processes +Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,Annual amount of lead emissions from industrial processes +Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,Annual amount of manganese emissions from industrial processes +Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,Annual amount of mercury emissions from industrial processes +Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,Annual amount of methanol emissions from industrial processes +Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,Annual amount of naphthalene emissions from industrial processes +Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,Annual amount of Nickel emissions from industrial processes +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from On Road Vehicles +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,Annual amount of Oxides Of Nitrogen emissions from industrial processes +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,Annual amount of Oxochromiooxy Chromium emissions from industrial processes +Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,Annual amount of phenol emissions from industrial processes +Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,Annual amount of phosphorus emissions from industrial processes +Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,Annual amount of PM10 emissions from industrial processes +Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,Annual amount of PM2.5 emissions from industrial processes +Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,Annual amount of pyrene emissions from industrial processes +Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_SCC_23_IndustrialProcesses,Annual amount of emissions from industrial processes +Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,Annual amount of selenium emissions from industrial processes +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from solvent utilization +Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from solvent utilization +Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from solvent utilization +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from storage and transport +Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from storage and transport +Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from storage and transport +Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses,Annual amount of sulfane emissions from industrial processes +Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,Annual amount of sulfur dioxide emissions from industrial processes +Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,Annual amount of toluene emissions from industrial processes +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,Annual amount of volatile organic compound from industrial processes +Count_Establishment_NAICSAccommodationFoodServices,dc/w8gp902jnk426,Number of Accommodation And Food Services establishments +Count_Establishment_NAICSAgricultureForestryFishingHunting,dc/1j7jmy39fwhw5,"Number of Agriculture, Forestry, Fishing And Hunting establishments" +Count_Establishment_NAICSEducationalServices,dc/kcns4cvt14zx2,Number of Educational Services establishments +Count_Establishment_NAICSHealthCareSocialAssistance,dc/tz59wt1hkl4y,Number of Health Care and Social Assistance establishments +Count_Establishment_NAICSManagementOfCompaniesEnterprises,dc/9pz1cse6yndtg,Number of Management Of Companies and Enterprises establishments +Count_Establishment_NAICSManufacturing,dc/1wf1h5esex2d,Number of Manufacturing establishments +Count_Establishment_NAICSMiningQuarryingOilGasExtraction,dc/br6elkd593zs1,"Number of Mining, Quarrying, And Oil And Gas Extraction establishments" +Count_Establishment_NAICSProfessionalScientificTechnicalServices,dc/mlf5e4m68h2k7,"Number of Professional, Scientific, And Technical Services establishments" +Count_Establishment_NAICSRetailTrade,dc/2c2e9bn8p7xz6,Number of Retail Trade establishments +Count_Establishment_NAICSTransportationWarehousing,dc/x52jxxbwspczh,Number of Transportation And Warehousing establishments +Count_HeatEvent,Count_HeatWaveEvent,Number of Heat Waves +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Single Mother Family Households with a Householder Holding a Bachelor's Degree or Higher +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold,Number of Family Households with Black or African American Householder +Count_Household_WithFoodStampsInThePast12Months,Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of households that have received food stamps (SNAP) in the last 12 months +Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,Count_Person_15OrMoreYears_NeverMarried_WhiteAloneNotHispanicOrLatino,Number of never married Black or African American people +Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,Count_Person_15To64Years_Female_InLaborForce_AsFractionOf_Count_Person_15To64Years_Female,Female labor force participation rate +Count_Person_AmericanIndianOrAlaskaNativeAlone,Count_Person_AmericanIndianAndAlaskaNativeAlone,Number of American Indian or Alaska Native people +Count_Person_Employed,dc/nm9hcklgg5zb3,Number of employed people +Count_Person_EnrolledInKindergarten,Count_Person_DetailedEnrolledInKindergarten,Number of people Enrolled in Kindergarten +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people +Count_Person_NowMarried,Count_Person_Female_MarriedAndNotSeparated,Number of married females +dc/5qnjtqc0w783b,dc/x4jl7c411edy9,Number of American Indian or Alaska Native people currently enrolled in school +RetailDrugDistribution_DrugDistribution_dea/9809,RetailDrugDistribution_DrugDistribution_Amobarbital,amount of retail drug purchase of Amobarbital dc/topic/EconomicActivity,dc/topic/GlobalEconomicActivity,Economic Activity -Annual_Emissions_GreenhouseGas,dc/topic/GreenhouseGasEmissions,Greenhouse Gas Emissions dc/topic/EducationalAttainment,dc/topic/LevelOfEducationalAttainment,education attainment level -Count_Person_DetailedHighSchool,dc/topic/StudentsInHighSchool,high school students -Count_Person_DetailedMiddleSchool,dc/topic/StudentsInMiddleSchool,middle school students -Count_Person_DetailedPrimarySchool,dc/topic/StudentsInPrimarySchool,primary school students -UnemploymentRate_Person,dc/topic/UnemploymentRate,Unemployment Rate -UnemploymentRate_Person,dc/topic/UnemploymentRate,unemployment +Temperature,dc/topic/Temperatures,Temperature dc/topic/Mortality,dc/topic/WHOMortality,Mortality +sdg/SN_ITK_DEFC,dc/topic/sdg_2.1.1,Prevalence of undernourishment dc/topic/FoodInsecurity,dc/topic/sdg_2.1.2,food security +sdg/SH_STA_MORT.SEX--F,dc/topic/sdg_3.1.1,Maternal mortality ratio dc/topic/GlobalElectricityAccess,dc/topic/sdg_7.1.1,electricity access -Amount_EconomicActivity_GrossDomesticProduction_Nominal,dc/topic/sdg_8.1.1,GDP -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,dc/topic/sdg_8.1.1,GDP per capita +sdg/EG_FEC_RNEW,dc/topic/sdg_7.2.1,Renewable energy share in the total final energy consumption +dc/topic/GDP,dc/topic/sdg_8.1.1,GDP dc/topic/sdg_8.10,dc/topic/sdg_8.10.1,sdg 8 10 dc/topic/sdg_8.10,dc/topic/sdg_8.10.1,sdg 8.10 dc/topic/sdg_8.10,dc/topic/sdg_8.10.1,sdg 810 @@ -83,16 +144,19 @@ dc/topic/sdg_14.1,dc/topic/sdg_1.4.1,sdg 141 dc/topic/sdg_14.1,dc/topic/sdg_1.4.1,sdg141 dc/topic/sdg_14.2,dc/topic/sdg_1.4.2,sdg 142 dc/topic/sdg_14.2,dc/topic/sdg_1.4.2,sdg142 +sdg/ER_H2O_FWTL,dc/topic/sdg_14.4.1,Proportion of fish stocks within biologically sustainable levels dc/topic/sdg_15,dc/topic/sdg_1.5,sdg 15 dc/topic/sdg_15,dc/topic/sdg_1.5,sdg15 dc/topic/sdg_15.1,dc/topic/sdg_1.5.1,sdg 151 dc/topic/sdg_15.1,dc/topic/sdg_1.5.1,sdg151 +sdg/AG_LND_FRST,dc/topic/sdg_15.1.1,Forest area as a proportion of total land area dc/topic/sdg_15.2,dc/topic/sdg_1.5.2,sdg 152 dc/topic/sdg_15.2,dc/topic/sdg_1.5.2,sdg152 dc/topic/sdg_15.3,dc/topic/sdg_1.5.3,sdg 153 dc/topic/sdg_15.3,dc/topic/sdg_1.5.3,sdg153 dc/topic/sdg_15.4,dc/topic/sdg_1.5.4,sdg 154 dc/topic/sdg_15.4,dc/topic/sdg_1.5.4,sdg154 +sdg/ER_RSK_LST,dc/topic/sdg_15.5.1,Red List Index dc/topic/sdg_15.8,dc/topic/sdg_15.6.1,"Number of countries that have adopted legislative, administrative and policy frameworks to ensure fair and equitable sharing of benefits" dc/topic/sdg_15.a.1,dc/topic/sdg_15.b.1,(a) Official development assistance on conservation and sustainable use of biodiversity dc/topic/sdg_15.a.1,dc/topic/sdg_15.b.1,and (b) revenue generated and finance mobilized from biodiversity-relevant economic instruments @@ -108,113 +172,3 @@ dc/topic/sdg_17.11,dc/topic/sdg_17.1.1,sdg 1711 dc/topic/sdg_17.11,dc/topic/sdg_17.1.1,sdg1711 dc/topic/sdg_17.12,dc/topic/sdg_17.1.2,sdg 1712 dc/topic/sdg_17.12,dc/topic/sdg_17.1.2,sdg1712 -Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,Annual Emissions of Acetaldehyde in Industrial Processes -Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,Annual Emissions of Ammonia in Industrial Processes -Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,Annual Emissions of Arsenic in Industrial Processes -Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,Annual Emissions of Benzene in Industrial Processes -Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,Annual Emissions of Cadmium in Industrial Processes -Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,Annual Emissions of Carbon Monoxide in Industrial Processes -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,Annual Emissions of Chlorine in Industrial Processes -Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,Annual Emissions of Chlorine in External Combustion -Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,Annual Emissions of Chlorine in Internal Combustion Engines -Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,Annual Emissions of Chlorine in Stationary Source Fuel Combustion -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,Annual Emissions of Chlorine in Industrial Processes -Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,Annual Emissions of Chlorine in Waste Disposal Treatment and Recovery -Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,Annual Emissions of Chlorine in Miscellaneous Area Sources -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,Annual Emissions of Chlorine in Industrial Processes -Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,Annual Emissions of Chlorine in Petroleum and Solvent Evaporation -Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal,Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal,Annual Emissions of Chlorine in Waste Disposal -Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,Annual Emissions of Chloroform in Industrial Processes -Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,Annual Emissions of Chromium in Industrial Processes -Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,Annual Emissions of Cobalt in Industrial Processes -Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,Annual Emissions of Cyanide in Industrial Processes -Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,Annual Emissions of Fluorine in Industrial Processes -Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,Annual Emissions of Formaldehyde in Industrial Processes -Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,Annual Emissions of Hexane in Industrial Processes -Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,Annual Emissions of Lead in Industrial Processes -Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,Annual Emissions of Manganese in Industrial Processes -Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,Annual Emissions of Mercury in Industrial Processes -Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,Annual Emissions of Methanol in Industrial Processes -Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,Annual Emissions of Naphthalene in Industrial Processes -Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,Annual Emissions of Nickel in Industrial Processes -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,Annual Emissions of Non Biogenic PM2.5 On Road Vehicles -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,Annual Emissions of Oxides of Nitrogen in Industrial Processes -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,Annual Emissions of Oxides of Nitrogen in Industrial Processes -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,Annual Emissions of Oxo (Oxochromiooxy) Chromium From Industrial Processes -Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,Annual Emissions of Phenol in Industrial Processes -Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,Annual Emissions of Phosphorus in Industrial Processes -Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,Annual Emissions of PM10 in Industrial Processes -Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,Annual Emissions of PM2.5 in Industrial Processes -Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,Annual Emissions of Pyrene in Industrial Processes -Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_SCC_23_IndustrialProcesses,Annual Emissions by Industrial Processes -Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,Annual Emissions of Selenium in Industrial Processes -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,Annual Emissions of Non Biogenic Sulfur Dioxide From Solvent Utilization -Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses,Annual Emissions of Sulfane in Industrial Processes -Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,Annual Emissions of Sulfur Dioxide in Industrial Processes -Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,Annual Emissions of Toluene in Industrial Processes -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,Annual Emissions of Volatile Organic Compound From Industrial Processes -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,Total Annual Average Cost of Natural Gas for Electricity Generation -Annual_Average_RetailPrice_Electricity,Annual_Average_RetailPrice_Electricity_OtherSector,Annual Average Retail Price of Electricity -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas,Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,Annual Consumption of Natural Gas in All Sectors -Annual_Consumption_Fuel_LiquifiedPetroleumGas,Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse,Annual Consumption of Liquefied Petroleum Gas -Annual_Consumption_Fuel_OilRefineries_RefineryGas_EnergyIndustryOwnUse,Annual_Consumption_Fuel_EnergyIndustry_RefineryGas_EnergyIndustryOwnUse,Annual Consumption of Refinery Gas in Energy Industry Own Use -Annual_Consumption_Fuel_Kerosene,Annual_Consumption_Fuel_OtherSector_Kerosene,Annual Consumption of EIA_Kerosene -Annual_Emissions_CarbonDioxide_MineralExtraction,Annual_Emissions_CarbonDioxide_NetForestEmissions,Annual Emissions of Carbon Dioxide in Net Forest -Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,Annual Emissions of Non Biogenic Greenhouse Gas From Industrial Waste Landfills -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducer,Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,Annual Generation of Electricity From Combustible Fuel -Annual_Generation_Fuel_MotorGasoline,Annual_Generation_Fuel_MotorGasoline_Refinery,Annual Generation of Motor Gasoline -Annual_Generation_Fuel_BituminousCoal,Annual_Generation_Fuel_OtherBituminousCoal,Annual Generation of Bituminous Coal -Annual_Generation_Fuel_RefineryGas,Annual_Generation_Fuel_RefineryGas_Refinery,Annual Generation of Refinery Gas -Annual_Exports_Fuel_MotorGasoline,Annual_Imports_Fuel_MotorGasoline,Annual Exports of Motor Gasoline -Annual_SalesRevenue_Electricity,Annual_SalesRevenue_Electricity_Commercial,Annual Revenue From Retail Sales of Electricity -Count_Death_Male,Count_Death_Male_AsAFractionOf_Count_Person_Male,Male Deaths -Area_Farm_Producer_BlackOrAfricanAmericanAlone,Count_Farm_Producer_BlackOrAfricanAmericanAlone,African American Producers -Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Native Hawaiian or Other Pacific Islander Farm Producers -Area_Farm_Producer_TwoOrMoreRaces,Count_Farm_Producer_TwoOrMoreRaces,Multiracial Farm Producers -Count_Household_SingleMotherFamilyHousehold_SingleUnit,Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,Single Mother Family Households With Mobile Homes And All Other Types Of Units -Count_Household_SingleMotherFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,Count_Household_SingleMotherFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,Single Mother Family Households Below Poverty Level in The Past 12 Months -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Foreign Born Households in Asia With Cash Assistance In The Past 12 Months -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied,Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,Population With Bachelor's Degree or Higher Occupying Housing Units -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied,Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied,Housing Units Occupied by Multiracial Population -Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,dc/topic/WHOChildMortality,deaths among children -Count_MedicalConditionIncident_ConditionLymeDisease,Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,number of lyme disease cases -Count_Person_15OrMoreYears_Divorced_AsianAlone,Count_Person_15OrMoreYears_Separated_AsianAlone,Asians Divorced For 15 Years Or More -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_AsAFractionOfCount_Person_25To64Years,Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,Population Aged 25 to 64 Years With Less Than Primary Education -Count_Person_EnrolledInCollegeUndergraduateYears,Count_Person_DetailedEnrolledInCollegeUndergraduateYears,Population Enrolled in College Undergraduate Years -Count_Person_EnrolledInCollegeUndergraduateYears,Count_Person_DetailedEnrolledInCollegeUndergraduateYears,Population: Enrolled in College Undergraduate Years -Count_Person_EnrolledInKindergarten,Count_Person_DetailedEnrolledInKindergarten,Population Enrolled in Kindergarten -Count_Person_EnrolledInKindergarten,Count_Person_DetailedEnrolledInKindergarten,Population: Enrolled in Kindergarten -Count_Person_ForeignBorn_PlaceOfBirthMexico_1OrLessRatioToPovertyLine,Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_2OrMoreRatioToPovertyLine,Foreign-Born Population In Eastern Asia With A 2 Or More Ratio To Poverty Line -Count_Person_MainWorker_AgriculturalLabourers,dc/hlxvn1t8b9bhh,agricultural workers -Count_Student,dc/topic/StudentPopulation,Student Population -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ScaledForPartTimeUnemploymentBenefits,Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim_ScaledForPartTimeUnemploymentBenefits,Count of Unemployment Insurance Claim -Count_Establishment_NAICSAgricultureForestryFishingHunting,dc/1j7jmy39fwhw5,"Count of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11)" -Count_Establishment_NAICSWholesaleTrade,dc/2qgvm8lch89n5,Count of Establishment: Wholesale Trade (NAICS/42) -Count_Establishment_NAICSWholesaleTrade,dc/2qgvm8lch89n5,Wholesale Trade -Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,dc/5jy4dp16mtssg,Housing Units Without Mortgage -Count_Establishment_NAICSManagementOfCompaniesEnterprises,dc/9pz1cse6yndtg,Count of Establishment: Management of Companies And Enterprises (NAICS/55) -Count_Establishment_NAICSMiningQuarryingOilGasExtraction,dc/br6elkd593zs1,"Count of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21)" -Count_Establishment_NAICSArtsEntertainmentRecreation,dc/dc5hbzngddq37,"Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71)" -dc/9b9gqxj27fqwc,dc/h34ge8t21h9m1,"Housing Units With 3,000 USD or More Mortgage" -Count_Establishment_NAICSEducationalServices,dc/kcns4cvt14zx2,Count of Establishment: Educational Services (NAICS/61) -Count_Establishment_NAICSProfessionalScientificTechnicalServices,dc/mlf5e4m68h2k7,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54)" -Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,dc/rkq1jgk08zfs7,Housing Units Without Mortgage -Count_Establishment_NAICSHealthCareSocialAssistance,dc/tz59wt1hkl4y,Count of Establishment: Health Care And Social Assistance (NAICS/62) -Count_Establishment_NAICSAccommodationFoodServices,dc/w8gp902jnk426,Count of Establishment: Accommodation And Food Services (NAICS/72) -Max_Concentration_AirPollutant_PM2.5,Max_Concentration_AirPollutant_SmokePM25,Maximum Concentration Air Pollutant PM 2.5 -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNative,Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average Live Birth Weight in Grams For USC Mothers -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEurope,Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthOceania,Mean Family Size For Foreign Born Family Households Born in Europe -Count_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,Households of Foreign-Born Population in Eastern Asia -Min_Temperature,dc/topic/Temperatures,minimum temperature -Count_HeatWaveEvent,NumberOfDays_HeatWaveEvent,Heat Wave Events -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MaxRelativeHumidity,NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MinRelativeHumidity,Number of Months Based on RCP 8.5 -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Female,Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Female,Prevalence of Tobacco Smoking Female Population -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Male,Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Male,Prevalence of Tobacco Smoking Male Population -Radiation_Downwelling_ShortwaveRadiation,Mean_Radiation_Downwelling_ShortwaveRadiation,Downwelling Shortwave Radiation -sdg/AG_LND_FRST,dc/topic/sdg_15.1.1,Forest area as a proportion of total land area -sdg/EG_FEC_RNEW,dc/topic/sdg_7.2.1,Renewable energy share in the total final energy consumption -sdg/ER_H2O_FWTL,dc/topic/sdg_14.4.1,Proportion of fish stocks within biologically sustainable levels -sdg/ER_RSK_LST,dc/topic/sdg_15.5.1,Red List Index -sdg/SN_ITK_DEFC,dc/topic/sdg_2.1.1,Prevalence of undernourishment -Temperature,dc/topic/Temperatures,Temperature -USStateQuarterlyIndustryGDP_NAICS_72,Count_Establishment_NAICSAccommodationFoodServices,Accommodation and Food Services diff --git a/tools/nl/embeddings/data/preindex/medium/sv_descriptions.csv b/tools/nl/embeddings/data/preindex/medium/sv_descriptions.csv index 99c65c38d3..48a7390f9b 100644 --- a/tools/nl/embeddings/data/preindex/medium/sv_descriptions.csv +++ b/tools/nl/embeddings/data/preindex/medium/sv_descriptions.csv @@ -1,5897 +1,3436 @@ dcid,sentence -AirPollutant_Cancer_Risk,1 Air pollution can cause cancer;Air pollution can increase your risk of cancer;Cancer Risk From Air Pollutants;Cancer risk from air pollutants;The risk of cancer from air pollutants;The risk of cancer from air pollution;The risk of developing cancer from exposure to air pollutants;air pollutants can cause cancer;air pollution can increase your risk of cancer;air pollution is a risk factor for cancer;exposure to air pollutants can increase your risk of developing cancer -AirQualityIndex_AirPollutant,AQI;AQI pollutant;Air Quality Index Pollutant;Air pollution level;Air pollution measure;Air quality index;Air quality index level;Air quality index measurement;Air quality index pollutant;Air quality index reading;Air quality measurement;air quality index;air quality measure;air quality rating;aqi -AirQualityIndex_AirPollutant_CO,Air Quality Index: Carbon Monoxide -AirQualityIndex_AirPollutant_NO2,Air Quality Index: Nitrogen Dioxide -AirQualityIndex_AirPollutant_Ozone,Air Quality Index: Ozone -AirQualityIndex_AirPollutant_PM10,Air Quality Index: PM 10 -AirQualityIndex_AirPollutant_PM2.5,Air Quality Index: PM 2.5 -AirQualityIndex_AirPollutant_SO2,Air Quality Index: Sulfur Dioxide -AmountFarmInventory_WinterWheatForGrain,Amount of Farm Inventory: Winter Wheat for Grain;Amount of Winter Wheat for Grain Grown;Amount of winter wheat for grain in farm inventory;Farm inventory of winter wheat for grain;Quantity of winter wheat grain in farm inventory;The amount of winter wheat that farmers have on hand;The total amount of winter wheat that farmers have available for sale;The total amount of winter wheat that farmers have not yet sold;The total amount of winter wheat that farmers have on hand for grain;The total amount of winter wheat that farmers have stored;Total Farm Inventory of Winter Wheat for Grain;Total inventory of winter wheat for grain on farms;Total winter wheat grain held by farms;the amount of winter wheat produced for grain;the number of winter wheat grains grown;the quantity of winter wheat grown for grain;the volume of winter wheat grown for grain -Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,"Percentage of People Aged 15 Years or More Who Consume Alcohol;Percentage of people 15 years or older who consume alcohol in relation to total number of people 15 years or older;What percentage of people aged 15 and older drink alcohol?;What percentage of people aged 15 or older drink alcohol?;What percentage of people aged 15 years or older consume alcohol?;what is the number of people aged 15 years or older who drink alcohol, expressed as a percentage of the total population?;what is the percentage of people aged 15 years or older who drink alcohol?;what percentage of people aged 15 years or older consume alcohol?;what proportion of people aged 15 years or older drink alcohol?" -Amount_Consumption_Electricity_PerCapita,Average consumption of electricity per person;Electricity Used Per Capita;How much electricity does the average person use?;Per capita electricity consumption;The average amount of electricity used by each person in a country;electricity consumption per capita;electricity use per capita;per capita electricity consumption;what is the per capita electricity consumption? -Amount_Consumption_Energy_PerCapita,Average consumption of energy per person;Energy Used Per Capita;Energy consumption per person;Energy used per capita;How much energy does the average person use?;Per capita energy consumption;energy consumption per capita;energy use per capita rate;energy use per person;energy use per person rate -Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy,Amount of Consumption: Renewable Energy (As Fraction of Amount Consumption Energy);Annual Consumption Of Renewable Energy;the amount of renewable energy used each year;the amount of renewable energy used in a year;the annual use of renewable energy;the yearly consumption of renewable energy -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,Government expenditure on education as a percentage of total government expenditure;Percent of Total Government Expenditure Spent on Education;The amount of money the government spends on education as a percentage of its total budget;The percentage of the government's total budget spent on education;The percentage of the government's total spending that is allocated to education;The portion of the government's budget that goes to education;The share of the government's budget that is devoted to education;the amount of government spending on education as a percentage of total government spending;the percentage of government spending on education;the proportion of government spending on education;the share of government spending on education -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Education expenditure as a percentage of GDP;Education spending as a percentage of GDP;Government expenditure on education as a percentage of nominal gross domestic production;Percent of Nominal Gross Domestic Production (GDP) Spent on Education;Percentage of GDP spent on education;Share of GDP allocated to education;The percentage of GDP spent on education;the amount of gdp spent on education;the percentage of gdp spent on education;the portion of gdp spent on education;the share of gdp spent on education -Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal Percent of Nominal Gross Domestic Production (GDP) Spent on Education,Population Working in Legal Services;how many legal service workers are there;number of law industry workers;people working in law;population of legal service workers;population working in legal services -Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,"1 The amount of money spent on healthcare per person;Amount of Economic Activity: Expenditure Activity, Healthcare Expenditure (Per Capita);Average healthcare expenditure;Cost of healthcare per person;Expense spent on healthcare per individual;Healthcare Expenditure Per Person;Healthcare cost per person;Healthcare expenditure per person;Per capita healthcare expenditure;Per capita healthcare spending;The amount of money spent on healthcare per person;Total healthcare cost;the amount of money spent on healthcare per person;the average amount of money spent on healthcare per person;the cost of healthcare per person;the per capita cost of healthcare" -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,Government Expenditure on Military Activities;Government expenditure on military activities;Government spending on the military;The amount of money that a government spends on its military;government spending on the military;the amount of money the government spends on the military;the budget for the military;the cost of the military -Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,"Government expenditure on military activities as a percentage of nominal gross domestic production;How much of the government's budget goes to the military?;Military spending as a percentage of total government expenditure;Percent of Total Government Expenditure Spent on Military Activities;What percent of the government's budget goes to the military?;What percentage of the total government budget is spent on the military;military spending as a percentage of government expenditure;the amount of money that the government spends on the military, expressed as a percentage of total government spending;the percentage of government spending that goes to the military;the proportion of government spending that is allocated to the military" -Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government,"Amount of Economic Activity: Expenditure Activity, Tertiary Education Expenditure, Government (As Fraction of Amount Economic Activity Expenditure Activity Education Expenditure Government);Percent of Government Expenditure on Tertiary Education;the amount of economic activity: expenditure, tertiary education expenditure, government (as a fraction of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a percentage of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a proportion of the amount of economic activity, expenditure, activity, education expenditure, government);the amount of economic activity: expenditure, tertiary education expenditure, government (as a share of the amount of economic activity, expenditure, activity, education expenditure, government)" -Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Accommodation And Food Services (NAICS/72);Amount of economic activity in the accommodation and food services industry;Economic output of the accommodation and food services sector;Gross Domestic Product (GDP) of the Accommodation and Food Services Industry;Gross Domestic Product (GDP) of the accommodation and food services industry;How much the accommodation and food services sector contributes to the GDP.;The GDP contribution of the accommodation and food services field;The GDP of the Accommodation and Food Services Industry;The economic output of the Accommodation and Food Services Industry;The economic output of the accommodation and food services industry;The economic output of the hospitality industry;Value generated by the accommodation and food services industry;the contribution of the accommodation and food services industry to the economy;the economic output of the accommodation and food services industry;the economic value of the accommodation and food services industry;the total value of goods and services produced by the accommodation and food services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Administrative And Support And Waste Management Services (NAICS/56);Amount of economic activity in the administrative and support and waste management services industry;Economic output of the administrative and support services sector;Gross Domestic Product (GDP) of the Administrative and Support and Waste Management Services Industry;Gross Domestic Product (GDP) of the administrative and support and waste management services industry;How much the administrative and support and waste management sector contributes to the GDP.;The Administrative and Support and Waste Management Services Industry's contribution to GDP;The Administrative and Support and Waste Management Services Industry's economic output;The Administrative and Support and Waste Management Services Industry's share of GDP;The GDP contribution of the administrative and support and waste management field;The size of the Administrative and Support and Waste Management Services Industry's GDP;The value of the Administrative and Support and Waste Management Services Industry's GDP;Value generated by the administrative and waste management services industry;the economic output of the administrative and support and waste management services industry;the market value of all final goods and services produced by the administrative and support and waste management services industry within a given time period;the monetary measure of the market value of all final goods and services produced by the administrative and support and waste management services industry within a given time period;the total value of goods and services produced by the administrative and support and waste management services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Agriculture, Forestry, Fishing And Hunting (NAICS/11);Amount of economic activity in the agriculture, forestry, fishing and hunting industry;Economic output of the agriculture, forestry, fishing, and hunting sector;Gross Domestic Product (GDP) of the Agriculture, Forestry, Fishing and Hunting Industry;Gross Domestic Product (GDP) of the agriculture, forestry, fishing, and hunting industry;How much the agriculture, forestry, fishing, and hunting sector contributes to the GDP.;The GDP contribution of the agriculture, forestry, fishing, and hunting field;The GDP of the Agriculture, Forestry, Fishing and Hunting Industry;The economic output of the agriculture, forestry, fishing, and hunting industries;The economic output of the agriculture, forestry, fishing, and hunting industry;Value generated by the agriculture, forestry, fishing, and hunting industry;the contribution of the agriculture, forestry, fishing, and hunting industry to the us economy;the economic output of the agriculture, forestry, fishing, and hunting industry;the gdp of the agriculture, forestry, fishing, and hunting sector;the total value of goods and services produced by the agriculture, forestry, fishing, and hunting industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Arts, Entertainment, And Recreation (NAICS/71);Amount of economic activity in the arts, entertainment, and recreation industry;Economic output of the arts, entertainment, and recreation sector;Gross Domestic Product (GDP) of the Arts, Entertainment, and Recreation Industry;Gross Domestic Product (GDP) of the arts, entertainment, and recreation industry;How much the arts, entertainment, and recreation sector contributes to the GDP.;The GDP contribution of the arts, entertainment, and recreation field;The economic output of the arts, entertainment, and recreation industry;The total value of goods and services produced by the arts, entertainment, and recreation industry;Value generated by the arts, entertainment, and recreation industry;the economic contribution of the arts, entertainment, and recreation industry;the economic output of the arts, entertainment, and recreation industry;the size of the arts, entertainment, and recreation industry's economy;the total value of goods and services produced by the arts, entertainment, and recreation industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,"1 The total value of goods and services produced by the construction industry;Amount of Economic Activity (Real Value): Gross Domestic Production, Construction (NAICS/23);Amount of economic activity in the construction industry;Economic output of the construction sector;Gross Domestic Product (GDP) of the Construction Industry;Gross Domestic Product (GDP) of the construction industry;How much the construction sector contributes to the GDP.;The GDP contribution of the construction field;The GDP of the construction industry;The economic output of the construction industry;The total value of goods and services produced by the construction industry;Value generated by the construction industry;the economic output of the construction industry;the total economic output of the construction industry;the total value of goods and services produced by the construction industry;the value of the construction industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Educational Services (NAICS/61);Amount of economic activity in the educational services industry;Economic output of the educational services sector;Gross Domestic Product (GDP) of the Educational Services Industry;Gross Domestic Product (GDP) of the educational services industry;How much the educational services sector contributes to the GDP.;The GDP contribution of the educational services field;The economic output of the educational services industry;The total value of goods and services produced by the educational services industry;Value generated by the educational services industry;the contribution of the educational services industry to the economy;the economic output of the educational services industry;the economic value of the educational services industry;the total value of goods and services produced by the educational services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Finance And Insurance (NAICS/52);Amount of economic activity in the finance and insurance industry;Economic output of the finance and insurance sector;Gross Domestic Product (GDP) of the Finance and Insurance Industry;Gross Domestic Product (GDP) of the finance and insurance industry;How much the finance and insurance sector contributes to the GDP.;The Finance and Insurance Industry's GDP;The GDP contribution of the finance and insurance field;The GDP of the financial services industry;The economic output of the finance and insurance industry in the US;The economic output of the financial services industry;The financial services industry's contribution to GDP;Value generated by the finance and insurance industry;the finance and insurance industry's contribution to the overall economy;the size of the finance and insurance industry's economy;the total economic output of the finance and insurance industry;the total value of goods and services produced by the finance and insurance industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Health Care And Social Assistance (NAICS/62);Amount of economic activity in the health care and social assistance industry;Economic output of the health care and social assistance sector;Gross Domestic Product (GDP) of the Health Care and Social Assistance Industry;Gross Domestic Product (GDP) of the health care and social assistance industry;How much the health care and social assistance sector contributes to the GDP.;The GDP contribution of the health care and social assistance field;The contribution of the healthcare and social assistance industry to the US economy;The economic output of the health care and social assistance industry;The economic output of the healthcare and social assistance industry;The total value of goods and services produced by the health care and social assistance industry;The total value of goods and services produced by the healthcare and social assistance industry;Value generated by the health care and social assistance industry;the contribution of the health care and social assistance industry to the overall economy;the economic output of the health care and social assistance industry;the size of the health care and social assistance sector of the economy;the value of goods and services produced by the health care and social assistance industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Information (NAICS/51);Amount of economic activity in the information industry;Economic output of the information sector;Gross Domestic Product (GDP) of the Information Industry;Gross Domestic Product (GDP) of the information industry;How much the information sector contributes to the GDP.;The GDP contribution of the information field;The GDP of the information industry;The economic output of the information industry;The total value of goods and services produced by the information industry;Value generated by the information industry;the economic output of the information industry;the size of the information industry's economy;the total value of goods and services produced by the information industry;the value of the information industry's output" -Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Management of Companies And Enterprises (NAICS/55);Amount of economic activity in the management of companies and enterprises industry;Economic output of the management of companies and enterprises sector;Gross Domestic Product (GDP) of the Management of Companies and Enterprises Industry;Gross Domestic Product (GDP) of the management of companies and enterprises industry;How much the management of companies and enterprises sector contributes to the GDP.;The GDP contribution of the management of companies and enterprises field;The economic output of the Management of Companies and Enterprises Industry;The total economic output of the management of companies and enterprises industry;The total value of goods and services produced by the management of companies and enterprises industry;The total value of goods and services produced by the management of companies and enterprises industry in a given year;Value generated by the management of companies and enterprises industry;the economic output of the management of companies and enterprises industry;the economic performance of the management of companies and enterprises industry;the management of companies and enterprises industry's contribution to the gdp;the total value of goods and services produced by the management of companies and enterprises industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Amount of economic activity in the mining, quarrying, and oil and gas extraction industry;Economic output of the mining, quarrying, and oil and gas extraction sector;Gross Domestic Product (GDP) of the Mining, Quarrying, and Oil and Gas Extraction Industry;Gross Domestic Product (GDP) of the mining, quarrying, and oil and gas extraction industry;How much the mining, quarrying, and oil and gas extraction sector contributes to the GDP.;The GDP contribution of the mining, quarrying, and oil and gas extraction field;The economic output of the mining, quarrying, and oil and gas extraction industry;The total value of all goods and services produced by the mining, quarrying, and oil and gas extraction industry in a given year;The total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry;The total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry in a given year;Value generated by the mining, quarrying, and oil and gas extraction industry;the economic output of the mining, quarrying, and oil and gas extraction industry;the gdp of the mining, quarrying, and oil and gas extraction industry;the monetary value of the goods and services produced by the mining, quarrying, and oil and gas extraction industry;the total value of goods and services produced by the mining, quarrying, and oil and gas extraction industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Other Services, Except Public Administration (NAICS/81);Amount of economic activity in other services, except public administration industry;Economic output of the other services sector;GDP of non-government services;GDP of other services;GDP of private services;GDP of services excluding public administration;Gross Domestic Product (GDP) of Other Services, Except Public Administration Industry;Gross Domestic Product (GDP) of other services, except public administration industry;How much the other services sector except public administration contributes to the GDP.;Other services GDP;The GDP contribution of the other services field;Value generated by the other services industry;gdp of non-public administration services;gdp of other non-governmental services;gdp of other services, excluding public administration;gdp of private services" -Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"1 The total value of goods and services produced by the professional, scientific, and technical services industry;Amount of Economic Activity (Real Value): Gross Domestic Production, Professional, Scientific, And Technical Services (NAICS/54);Amount of economic activity in the professional, scientific, and technical services industry;Economic output of the professional, scientific, and technical services sector;Gross Domestic Product (GDP) of the Professional, Scientific, and Technical Services Industry;Gross Domestic Product (GDP) of the professional, scientific, and technical services industry;How much the professional, scientific, and technical services sector contributes to the GDP.;The GDP contribution of the professional, scientific, and technical services field;The total value of goods and services produced by the Professional, Scientific, and Technical Services Industry;The total value of goods and services produced by the professional, scientific, and technical services industry;The total value of goods and services produced by the professional, scientific, and technical services industry in a given year;Value generated by the professional, scientific, and technical services industry;the economic contribution of the professional, scientific, and technical services industry;the economic output of the professional, scientific, and technical services industry;the gdp of the professional, scientific, and technical services industry;the total value of goods and services produced by the professional, scientific, and technical services industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Real Estate And Rental And Leasing (NAICS/53);Amount of economic activity in the real estate and rental and leasing industry;Economic output of the real estate and rental and leasing sector;Gross Domestic Product (GDP) of the Real Estate and Rental and Leasing Industry;Gross Domestic Product (GDP) of the real estate and rental and leasing industry;How much the real estate and rental and leasing sector contributes to the GDP.;The GDP contribution of the real estate and rental and leasing field;The economic output of the real estate and rental and leasing industry;The total value of goods and services produced by the real estate and rental and leasing industry;The total value of goods and services produced by the real estate and rental and leasing industry in a given year;Value generated by the real estate and rental and leasing industry;the amount of money generated by the real estate and rental and leasing industry;the economic activity of the real estate and rental and leasing industry;the economic output of the real estate and rental and leasing industry;the total value of goods and services produced by the real estate and rental and leasing industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Utilities (NAICS/22);Amount of economic activity in the utilities industry;Economic output of the utilities sector;Gross Domestic Product (GDP) of the Utilities Industry;Gross Domestic Product (GDP) of the utilities industry;How much the utilities sector contributes to the GDP.;The GDP contribution of the utilities field;The economic output of the utilities industry;The total value of goods and services produced by the utilities industry;The total value of goods and services produced by the utilities industry in a given year;Value generated by the utilities industry;the economic output of the utilities industry;the economic value of the utilities industry;the size of the utilities industry's economy;the total value of goods and services produced by the utilities industry" -Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,"Amount of Economic Activity (Real Value): Gross Domestic Production, Wholesale Trade (NAICS/42);Amount of economic activity in the wholesale trade industry;Economic output of the wholesale trade sector;Gross Domestic Product (GDP) of the Wholesale Trade Industry;Gross Domestic Product (GDP) of the wholesale trade industry;How much the wholesale trade sector contributes to the GDP.;The GDP contribution of the wholesale trade field;The GDP of the wholesale trade industry;The total value of all goods and services sold by wholesalers in the United States;The value of all goods and services produced by the wholesale trade industry;The value of all goods and services produced by the wholesale trade industry in a given year;The value of all goods and services sold by wholesalers in a given year;Value generated by the wholesale trade industry;the amount of money generated by the wholesale trade industry;the economic activity of the wholesale trade industry;the total economic output of the wholesale trade industry;the value of all goods and services produced by the wholesale trade industry in a given year" -Amount_EconomicActivity_GrossDomesticProduction_Nominal,"1 the total market value of all final goods and services produced within a country's borders in a specific time period, usually a year;GDP;Nominal GDP;Nominal Gross Domestic Production (GDP);Nominal gross domestic production;Nominal measure of domestic production;Nominal size of domestic production;Nominal value of all domestic output;Nominal value of domestic goods and services;Total nominal domestic economic output;Total nominal domestic production;Total nominal output;gdp in current dollars;gdp in current values;gdp in nominal terms" -Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person,Amount of Economic Activity (Nominal): Gross Domestic Production (Per Capita);Nominal Gross Domestic Production in Population -Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,"Average nominal gross domestic production per person;GDP per capita;GDP per head;GDP per person;Gross domestic product per capita;Nominal GDP per capita;Nominal Gross Domestic Production (GDP) Per Capita;gdp per capita;gdp per capita (nominal);gdp per capita (ppp);gdp per capita, current prices" -Amount_EconomicActivity_GrossDomesticProduction_RealValue,Amount of Economic Activity (Real Value): Gross Domestic Production;Gross Domestic Production -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,"Gross National Income (PPP);Gross National Income Based on Purchasing Power Parity;Gross National Income at purchasing power parity;Gross National Income based on purchasing power parity;Gross national income based on purchasing power parity;Purchasing power parity (PPP) gross national income (GNI);gross national income (gni) based on purchasing power parity (ppp);gross national income based on purchasing power parity;gross national income per person, purchasing power parity" -Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,"GNI per capita (PPP);GNI per capita (PPP) in international dollars;GNI per capita based on purchasing power parity;GNI per capita based on purchasing power parity (PPP) in international dollars;Gross National Income Based on Purchasing Power Parity Per Capita;Gross National Income per capita based on purchasing power parity;Gross national income based on purchasing power parity per person;gni per capita (ppp);gni per capita based on purchasing power parity;gni per capita, purchasing power parity;gross national income per capita, ppp" -Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Agriculture, Hunting, Forestry, Fishing;Gross Value Added in Agriculture Hunting and Forestry Fishing Industry;gross value added (gva) in agriculture, hunting, forestry, and fishing;the real value of economic activity in agriculture, hunting, forestry, and fishing;the real value of economic activity in the agricultural, hunting, forestry, and fishing industries;the real value of economic activity in the agricultural, hunting, forestry, and fishing sectors" -Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Construction;Gross Value Added in Construction Industry;gross value added (gva) in construction;the amount of economic activity in real terms: gross value added, construction;the real value of economic activity in the building sector;the real value of economic activity: gross value added, construction" -Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Manufacturing;Gross Value Added in Manufacturing Industry;the amount of economic activity (real value) in manufacturing;the amount of economic activity in manufacturing, in real terms;the real value of economic activity in manufacturing;the real value of manufacturing activity" -Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Mining, Manufacturing, Utilities;Gross Value Added in Mining, Manufacturing and Utilities Industry;the real value of economic activity is calculated using gross value added, mining, manufacturing, and utilities;the real value of economic activity is expressed in terms of gross value added, mining, manufacturing, and utilities;the real value of economic activity is made up of gross value added, mining, manufacturing, and utilities;the real value of economic activity is measured by gross value added, mining, manufacturing, and utilities" -Amount_EconomicActivity_GrossValueAdded_ISICOtherActivities_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Other Activities;Gross Value Added in Other Activities Industry;the amount of economic activity in real terms, including gross value added and other activities;the amount of economic activity in real terms: gross value added, other activities;the real value of economic activity, including gross value added and other activities;the real value of economic activity: gross value added, other activities" -Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Transport, Storage And Communications;Gross Value Added in Transport, Storage and Communications Industry;the amount of economic activity in the transport, storage, and communications sector;the economic output of the transport, storage, and communications sector;the gross value added of the transport, storage, and communications sector;the real value of economic activity in the transport, storage, and communications sector" -Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue,"Amount of Economic Activity (Real Value): Gross Value Added, Wholesale, Retail Trade, Restaurants And Hotels;Gross Value Added in Wholesale, Retail Trade, Restaurants and Hotels Industry;the real value of economic activity is the amount of money spent on goods and services produced in the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation;the real value of economic activity is the sum of the gross value added of the wholesale, retail trade, and restaurant and hotel sectors;the real value of economic activity is the total output of the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation;the real value of economic activity is the total value of goods and services produced in the wholesale, retail trade, and restaurant and hotel sectors, adjusted for inflation" -Amount_EconomicActivity_GrossValueAdded_RealValue,Amount of Economic Activity (Real Value): Gross Value Added;Real Gross Value Added;gross value added (gva);gross value of output -Amount_Emissions_CarbonDioxide_PerCapita,CO2 Emissions Per Capita;Total Emissions of Carbon Dioxide Per Capita;how much co2 does a country produce per person?;how much co2 does the average person in a country emit?;what is the average person's co2 footprint?;what is the co2 emission rate of a country? -Amount_FarmInventory_BarleyForGrain,Amount of Barley Grown;Amount of Barley for Grain Grown;Amount of Farm Inventory: Barley for Grain;Amount of barley cultivated;Amount of barley for grain in farm inventory;Amount of barley harvested;Quantity of barley produced;Total barley grown;Total barley output;amount of barley grown;barley cultivation in the united states;barley harvest;barley production;barley production in the united states;barley yield;how much barley is grown in the us;the amount of barley grown in the united states -Amount_FarmInventory_CornForSilageOrGreenchop,Amount of Corn for Silage or Greenchop Grown;Amount of Farm Inventory: Corn for Silage or Greenchop;Amount of Silage produced;Amount of corn for silage or greenchop in farm inventory;Amount of silage made;Farm silage production;Quantity of silage produced;Total silage output;Total silage production;corn silage or greenchop harvested volume;corn silage or greenchop production;corn silage or greenchop yield;corn silage production;the acreage of corn grown for silage or greenchop;the amount of corn grown for silage or greenchop;the number of corn plants grown for silage or greenchop;the quantity of corn grown for silage or greenchop -Amount_FarmInventory_Cotton,Amount of Cotton Grown;Amount of Farm Inventory: Cotton;Amount of cotton harvested;Amount of cotton in farm inventory;Cotton harvest;Cotton production;Cotton yield;Quantity of cotton grown;The amount of cotton grown;Total cotton grown;Total cotton output;cotton crop size;cotton production;cotton yield;how much cotton is grown -Amount_FarmInventory_DryEdibleBeans,Amount of Beans Grown;Amount of Farm Inventory: Dry Edible Beans;Amount of beans harvested;Amount of dry edible beans in farm inventory;Bean output;Quantity of beans grown;The amount of beans produced;The number of beans grown;The quantity of beans grown;The volume of beans harvested;The yield of beans;Total bean production;Total beans grown;the amount of beans produced;the number of beans grown;the quantity of beans grown;the volume of beans harvested -Amount_FarmInventory_DurumWheatForGrain,"Amount of Durum Wheat Grown;Amount of Durum Wheat for Grain Grown;Amount of Farm Inventory: Durum Wheat for Grain;Amount of durum wheat for grain in farm inventory;Amount of durum wheat harvested;Durum wheat output;Quantity of durum wheat grown;Total durum wheat grown;Total durum wheat production;durum wheat grown for grain;grain grown from durum wheat;how much durum wheat is grown for grain in the united states?;how much durum wheat is produced for grain in the united states?;what is the amount of durum wheat grown for grain in the united states?;what is the quantity of durum wheat grown for grain in the united states?;wheat grown for durum grain;wheat grown for grain, durum" -Amount_FarmInventory_FoodGrain,Produciton of food grains -Amount_FarmInventory_Forage,Amount of Farm Inventory: Forage;Amount of Forage Produced;Amount of Forage produced;Amount of forage grown;Amount of forage in farm inventory;Amount of forage made;Farm forage production;Forage output;Forage production;Quantity of forage produced;Total forage output;Total forage production;Total forage yield;amount of forage grown;amount of forage produced;forage yield;quantity of forage produced -Amount_FarmInventory_JuteOrMesta,Production of jute and mesta -Amount_FarmInventory_OatsForGrain,Amount of Farm Inventory: Oats for Grain;Amount of Oats Grown;Amount of oats for grain in farm inventory;Amount of oats grown;Amount of oats harvested;Oat harvest;Oat output;Oat production;Oat yield;Quantity of oats grown;Total oat production;Total oats grown;amount of oats grown;oat crop;oat production;oat yield -Amount_FarmInventory_OtherSpringWheatForGrain,Amount of Farm Inventory: Other Spring Wheat for Grain;Amount of Other Spring Wheat for Grain Grown;Amount of Spring Wheat Grown;Amount of other spring wheat for grain in farm inventory;Amount of spring wheat harvested;Quantity of spring wheat grown;Spring wheat output;Total spring wheat grown;Total spring wheat production;the amount of grain grown from other spring wheat;the amount of other spring wheat grown for grain;the amount of other spring wheat grown for the purpose of grain;the amount of other spring wheat grown for use as grain;the amount of other spring wheat grown in the united states;the number of other spring wheat plants grown in the united states;the quantity of other spring wheat grown in the united states;the total number of other spring wheat plants grown in the united states -Amount_FarmInventory_PeanutsForNuts,Amount of Farm Inventory: Peanuts for Nuts;Amount of Peanuts Grown;Amount of Peanuts for Nuts Grown;Amount of peanuts for nuts in farm inventory;Amount of peanuts harvested;Peanut output;Quantity of peanuts grown;Total peanut production;Total peanuts grown;peanut production;peanut production in the united states;peanut yield;the amount of peanuts grown in the united states;the number of peanuts grown in the united states;the quantity of peanuts grown in the united states -Amount_FarmInventory_PimaCotton,Amount of Farm Inventory: Pima Cotton;Amount of Pima Cotton Grown;Amount of Pima cotton grown;Amount of Pima cotton harvested;Amount of pima cotton in farm inventory;Pima cotton output;Pima cotton production;Pima cotton yield;Quantity of Pima cotton grown;Total Pima cotton grown;Total Pima cotton production;how much pima cotton is grown?;how much pima cotton is produced?;what is the amount of pima cotton grown?;what is the quantity of pima cotton grown? -Amount_FarmInventory_Pulses,Production of pulses -Amount_FarmInventory_Rice,Amount of Rice Grown;Amount of rice harvested;Amount of rice in farm inventory;How much rice is grown;How much rice is produced;Quantity of rice grown;Rice output;The amount of rice grown;The amount of rice produced;Total rice grown;Total rice production;quantity of rice grown;rice harvest;rice production;rice yield -Amount_FarmInventory_SorghumForGrain,Amount of Farm Inventory: Sorghum for Grain;Amount of Sorghum Grown;Amount of sorghum for grain in farm inventory;Amount of sorghum grown;Amount of sorghum harvested;Quantity of sorghum grown;Sorghum harvest;Sorghum output;Sorghum production;Sorghum yield;Total sorghum grown;Total sorghum production;the amount of sorghum grown;the number of sorghum plants grown;the quantity of sorghum grown;the total sorghum production -Amount_FarmInventory_SorghumForSilageOrGreenchop,1 sorghum grown for silage or greenchop;2 sorghum production for silage or greenchop;3 sorghum acreage for silage or greenchop;4 sorghum yield for silage or greenchop;Amount of Farm Inventory: Sorghum for Silage or Greenchop;Amount of Sorghum for Silage or Greenchop Grown;Amount of sorghum for silage or greenchop in farm inventory;Farm inventory of sorghum for silage or greenchop;Quantity of sorghum for silage or greenchop in farm inventory;Total Farm Inventory of Sorghum for Silage or Greenchop;Total inventory of sorghum for silage or greenchop on farms;Total sorghum for silage or greenchop held by farms;how much sorghum is grown for silage or greenchop in the united states?;the amount of sorghum grown for silage or greenchop;the amount of sorghum produced for silage or greenchop;what is the amount of sorghum grown for silage or greenchop in the united states? -Amount_FarmInventory_SugarbeetsForSugar,Amount of Farm Inventory: Sugarbeets for Sugar;Amount of Sugarbeets Grown;Amount of Sugarbeets grown;Amount of sugarbeets for sugar in farm inventory;Amount of sugarbeets grown on farms;Amount of sugarbeets harvested;Quantity of sugarbeets grown;The number of sugarbeets grown;The quantity of sugarbeets cultivated;The quantity of sugarbeets grown;Total amount of sugarbeets grown;Total sugarbeet production;how many sugarbeets are grown?;how much sugarbeet production is there?;what is the volume of sugarbeet production?;what is the yield of sugarbeets? -Amount_FarmInventory_Sugarcane,Production of sugarcane -Amount_FarmInventory_SunflowerSeed,Amount of Farm Inventory: Sunflower Seed;Amount of Sunflower Seed Grown;Amount of Sunflowerseed grown;Amount of sunflower seed in farm inventory;Amount of sunflowerseed grown on farms;Amount of sunflowerseed harvested;Quantity of sunflowerseed grown;Total amount of sunflowerseed grown;Total sunflowerseed production;amount of sunflower seeds grown;sunflower seed harvest;sunflower seed production;sunflower seed yield;the amount of sunflower seeds grown -Amount_FarmInventory_UplandCotton,Amount of Farm Inventory: Upland Cotton;Amount of Upland Cotton Grown;Amount of upland cotton in farm inventory;Farm inventory of upland cotton;Quantity of upland cotton in farm inventory;The total amount of upland cotton that is currently stored on farms;The total amount of upland cotton that is stored on farms;Total Farm Inventory of Upland Cotton;Total amount of upland cotton in storage;Total inventory of upland cotton on farms;Total upland cotton held by farms;Upland cotton inventory;Upland cotton stock;how much upland cotton is grown?;what is the amount of upland cotton grown?;what is the quantity of upland cotton grown?;what is the volume of upland cotton grown? -Amount_FarmInventory_Wheat,Production of Wheat -Amount_FarmInventory_WheatForGrain,Amount of Farm Inventory: Wheat for Grain;Amount of Wheat Grown;Amount of Wheat for Grain Grown;Amount of wheat for grain in farm inventory;Amount of wheat harvested;Quantity of wheat grown;Total wheat grown;Total wheat production;Wheat output;the amount of wheat grown in the us;the quantity of wheat grown in the us;the volume of wheat grown in the us;wheat harvest;wheat production;wheat production in the united states;wheat production in the us;wheat yield -Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy,Amount of Production in Electricity From Nuclear Sources;Amount of Production: Electricity From Nuclear Sources (As Fraction of Amount Production Energy);the amount of electricity generated by nuclear power;the amount of electricity produced by nuclear energy;the amount of electricity produced by nuclear power plants;the amount of electricity produced from nuclear sources -Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy,"Amount of Production of Electricity From Oil Gas Or Coal Sources As a Fraction of Amount Production Energy;Amount of Production: Electricity From Oil Gas or Coal Sources (As Fraction of Amount Production Energy);the amount of electricity produced from oil, gas, or coal sources as a fraction of the total amount of energy produced;the percentage of electricity produced from oil, gas, or coal sources;the proportion of electricity produced from oil, gas, or coal sources;the share of electricity produced from oil, gas, or coal sources" -Amount_Remittance_InwardRemittance,Total Amount of Inward Remittances;Total amount of inward remittances;Total inward remittances;total amount of money remitted to a country by its citizens living abroad;total amount of money remitted to the country from abroad;total amount of money sent home by foreign workers -Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Inward Remittances as a Percentage of Nominal Gross Domestic Production;Inward remittances as a percentage of nominal gross domestic production;Inward remittances as a share of GDP;Percentage of GDP from inward remittances;Proportion of GDP from inward remittances;Share of GDP from inward remittances;The percentage of inward remittances to nominal gross domestic product;inward remittances as a percentage of gdp;inward remittances as a share of gdp;percentage of gdp from inward remittances;share of gdp from inward remittances -Amount_Remittance_OutwardRemittance,Total Amount of Outward Remittances;Total amount of outward remittances;total amount of money sent abroad;total amount of money sent home by immigrants;total amount of money sent overseas;total amount of money sent to foreign countries -Amount_Stock,The aggregate value of all stocks;The sum of all stock prices;The total value of all stocks;The total worth of all stocks;The total worth of all the stocks you own;Total Stock Value;Total stock value;the sum of the market values of all the stocks you own;the total amount of money you would get if you sold all your stocks at the current market price;the total value of your stock portfolio;the total worth of all the stocks you own -Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Stock Value as a Percentage of Nominal Gross Domestic Production (GDP);Stock value as a percentage of nominal gross domestic production;The market capitalization of stocks as a share of GDP;The percentage of GDP that is represented by the stock market;The ratio of stock market capitalization to GDP;The stock market's value as a percentage of GDP;The value of stocks as a percentage of GDP;stock market capitalization as a percentage of gdp;the percentage of gdp that is represented by the stock market;the ratio of stock market capitalization to gdp;the size of the stock market relative to the size of the economy -Amout_FarmInventory_CornForGrain,Amount of Corn Grown;Amount of Corn for Grain Grown;Amount of Farm Inventory: Corn for Grain;Amount of corn for grain in farm inventory;Amount of corn harvested;Corn output;Quantity of corn grown;Total corn grown;Total corn production;the amount of corn grown for animal feed;the amount of corn grown for ethanol production;the amount of corn grown for grain;the amount of corn grown for grain in the united states;the amount of corn grown for human consumption;the number of bushels of corn grown for grain in the united states;the quantity of corn grown for grain in the united states;the volume of corn grown for grain in the united states -AnnualChange_Stocks_Fuel_AviationGasoline,Stocks of Aviation Gasoline;Stocks of Fuel (Annual Change): Aviation Gasoline;aviation gasoline inventories;aviation gasoline inventory;the inventory of aviation gasoline;the stock of aviation gasoline -AnnualChange_Stocks_Fuel_BituminousCoal,Stocks of Bituminous Coal;Stocks of Fuel (Annual Change): EIA_Bituminous Coal;bituminous coal holdings;bituminous coal inventories;bituminous coal reserves;bituminous coal stockpiles -AnnualChange_Stocks_Fuel_BrownCoal,Annual Brown Coal Stocks Change;Stocks of Fuel (Annual Change): Brown Coal;annual change in brown coal stocks;brown coal stocks this year compared to last year;change in brown coal stocks from last year;year-over-year change in brown coal stocks -AnnualChange_Stocks_Fuel_CokeOvenCoke,Annual Change Stocks of Coke Oven Coke;Stocks of Fuel (Annual Change): Coke Oven Coke;coke oven coke stock change over the year;how coke oven coke stock has changed over the past year;the change in coke oven coke stock from last year to this year;year-over-year change in coke oven coke stock -AnnualChange_Stocks_Fuel_CrudeOil,Annual Stocks Of Crude Oil;Stocks of Fuel (Annual Change): Crude Oil;crude oil holdings;crude oil stockpiles;the annual stockpile of crude oil;the yearly stockpile of crude oil -AnnualChange_Stocks_Fuel_DieselOil,Annual Stocks Of Diesel Oil;Stocks of Fuel (Annual Change): Diesel Oil;annual diesel oil holdings;annual diesel oil reserves;annual diesel oil stockpiles;the yearly stockpile of diesel oil -AnnualChange_Stocks_Fuel_FuelOil,Annual Change of Fuel Oil;Stocks of Fuel (Annual Change): Fuel Oil;change in fuel oil from last year;how much did fuel oil change from last year;how much has fuel oil changed in the last year;year-over-year change in fuel oil -AnnualChange_Stocks_Fuel_HardCoal,Stocks of Fuel (Annual Change): Hard Coal;Stocks of Hard Coals;coal stockpiles;hard coal holdings;hard coal inventories;hard coal stockpiles -AnnualChange_Stocks_Fuel_Kerosene,Annual Stocks Change of Kerosene;Stocks of Fuel (Annual Change): EIA_Kerosene;the change in kerosene stocks from last year to this year;the change in kerosene stocks over the year;the difference between kerosene stocks this year and last year;the year-over-year change in kerosene stocks -AnnualChange_Stocks_Fuel_KeroseneJetFuel,Annual Stocks of Kerosene Jet Fuel;Stocks of Fuel (Annual Change): Kerosene Jet Fuel;kerosene jet fuel inventory;the annual inventory of kerosene jet fuel;the annual stockpile of kerosene jet fuel;the yearly inventory of kerosene jet fuel -AnnualChange_Stocks_Fuel_LiquifiedPetroleumGas,Annual Stocks Of Liquefied Petroleum Gas;Stocks of Fuel (Annual Change): Liquefied Petroleum Gas;how much liquefied petroleum gas is stockpiled each year?;the yearly amount of liquefied petroleum gas that is stockpiled;the yearly inventory of liquefied petroleum gas;what is the annual liquefied petroleum gas stockpile? -AnnualChange_Stocks_Fuel_Lubricants,Annual Stock Annual Lubricants;Stocks of Fuel (Annual Change): Lubricants;annual lubricant stock;annual lubricants stock;yearly lubricant inventory;yearly lubricant stock level -AnnualChange_Stocks_Fuel_MotorGasoline,Stocks of Fuel (Annual Change): Motor Gasoline;Stocks of Motor Gasoline;motor gasoline inventories;stocks of motor gasoline;the level of motor gasoline stocks;the quantity of motor gasoline in storage -AnnualChange_Stocks_Fuel_Naphtha,Stocks Of Naphtha;Stocks of Fuel (Annual Change): Naphtha;naphtha holdings;naphtha reserves;naphtha stockpiles;naphtha stocks on hand -AnnualChange_Stocks_Fuel_NaturalGas,Annual Stocks Of Natural Gas;Stocks of Fuel (Annual Change): Natural Gas;the annual inventory of natural gas;the annual stockpile of natural gas;the yearly stockpile of natural gas -AnnualChange_Stocks_Fuel_OtherBituminousCoal,Annual Change Stocks In Other Bituminous Coal Industries;Stocks of Fuel (Annual Change): UN_Other Bituminous Coal;how much have other bituminous coal industry stocks changed in the past year;other bituminous coal industry stock changes year-over-year;what is the percentage change in other bituminous coal industry stocks over the past year;what is the year-over-year change in other bituminous coal industry stocks -AnnualChange_Stocks_Fuel_OtherOilProducts,Stocks of Fuel (Annual Change): UN_Other Oil Products;Stocks of Other Oil Products;other oil products stocks;stocks of non-crude oil products;stocks of petroleum products other than crude oil;stocks of refined petroleum products -AnnualChange_Stocks_Fuel_PetroleumCoke,Annual Stock of Petroleum Coke;Stocks of Fuel (Annual Change): Petroleum Coke;annual change in petroleum coke stocks;change in petroleum coke stocks;petroleum coke stocks change from last year;year-over-year change in petroleum coke stocks -Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion,"Annual Amount Emissions Acetaldehyde, ExternalCombustion (1);Annual Emissions of Acetaldehyde in External Combustion;how much acetaldehyde is emitted from external combustion sources each year?;how much acetaldehyde is released into the atmosphere from external combustion sources each year?;what is the annual amount of acetaldehyde emitted from external combustion sources?;what is the total amount of acetaldehyde emitted from external combustion sources each year?" -Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Acetaldehyde, StationarySourceFuelCombustion (21);Annual Emissions of Acetaldehyde in Stationary Source Fuel Combustion;acetaldehyde emissions from stationary fuel combustion were 21 in 2021;in 2021, there were 21 acetaldehyde emissions from stationary fuel combustion;stationary fuel combustion emitted 21 acetaldehyde in 2021;the amount of acetaldehyde emitted from stationary fuel combustion in 2021 was 21" -Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources,"Annual Amount Emissions Acetaldehyde, MobileSources (22);Annual Emissions of Acetaldehyde in Mobile Sources;how much acetaldehyde is emitted by mobile sources each year?;the amount of acetaldehyde emitted by mobile sources each year;the amount of acetaldehyde that mobile sources emit each year;the annual emissions of acetaldehyde from mobile sources" -Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses,"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (23);acetaldehyde emissions from industrial processes in a year (23);the amount of acetaldehyde emitted from industrial processes in a year (23);the amount of acetaldehyde emitted from industrial processes in one year (23);the annual amount of acetaldehyde emitted from industrial processes (23)" -Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization,"Annual Amount Emissions Acetaldehyde, SolventUtilization (24);Annual Emissions of Acetaldehyde in Solvent Utilization;acetaldehyde emissions from solvent utilization (24);acetaldehyde emissions from using solvents (24);the amount of acetaldehyde emitted from solvent utilization (24);the amount of acetaldehyde emitted from using solvents (24)" -Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Acetaldehyde, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Acetaldehyde in Waste Disposal Treatment and Recovery;acetaldehyde emissions from waste disposal, treatment, and recovery in 2026;the amount of acetaldehyde emitted from waste disposal, treatment, and recovery in 2026;the level of acetaldehyde discharged from waste disposal, treatment, and recovery in 2026;the quantity of acetaldehyde released from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources,"Annual Amount Emissions Acetaldehyde, NaturalSources (27);Annual Emissions of Acetaldehyde in Natural Sources;the amount of acetaldehyde emitted from natural sources each year;the amount of acetaldehyde that is emitted from natural sources each year;the annual amount of acetaldehyde emitted from natural sources;the annual amount of acetaldehyde that is emitted from natural sources" -Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Acetaldehyde, MiscellaneousAreaSources (28);Annual Emissions of Acetaldehyde in Miscellaneous Area Sources;acetaldehyde emissions from miscellaneous area sources;acetaldehyde emissions from non-point sources;acetaldehyde emissions from other sources;annual emissions of acetaldehyde from miscellaneous area sources" -Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Acetaldehyde, InternalCombustionEngines (2);Annual Emissions of Acetaldehyde in Internal Combustion Engines;the amount of acetaldehyde emitted by internal combustion engines each year;the annual emissions of acetaldehyde from internal combustion engines;what is the annual acetaldehyde emission from internal combustion engines?;what is the annual amount of acetaldehyde emitted by internal combustion engines?" -Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (3);Annual Emissions of Acetaldehyde in Industrial Processes;the amount of acetaldehyde emitted by industrial processes each year;the amount of acetaldehyde emitted from industrial processes each year;the amount of acetaldehyde that is released into the atmosphere each year from industrial processes;the annual emissions of acetaldehyde from industrial processes" -Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Acetaldehyde, PetroleumAndSolventEvaporation (4);Annual Emissions of Acetaldehyde in Petroleum and Solvent Evaporation;acetaldehyde emissions from petroleum and solvent evaporation per year;annual emissions of acetaldehyde from petroleum and solvent evaporation;the amount of acetaldehyde emitted from petroleum and solvent evaporation each year;the annual amount of acetaldehyde emitted into the air from petroleum and solvent evaporation" -Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal,"5 acetaldehyde emissions from waste disposal on an annual basis;Annual Amount Emissions Acetaldehyde, WasteDisposal (5);Annual Emissions of Acetaldehyde in Waste Disposal" -Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion,"Annual Amount Emissions Ammonia, ExternalCombustion (1);Annual Emissions of Ammonia in External Combustion;ammonia emissions from external combustion per year;amount of ammonia emitted annually from external combustion;annual ammonia emissions from external combustion sources;annual emissions of ammonia from external combustion" -Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Ammonia, StationarySourceFuelCombustion (21);Annual Emissions of Ammonia in Stationary Source Fuel Combustion;ammonia emissions from stationary fuel combustion totaled 21 million metric tons in 2021;the amount of ammonia emitted from stationary fuel combustion in 2021 was 21 million metric tons;the amount of ammonia released into the atmosphere from stationary fuel combustion in 2021;the amount of ammonia that was released into the air from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources,"Annual Amount Emissions Ammonia, MobileSources (22);Annual Emissions of Ammonia in Mobile Sources;ammonia emissions from mobile sources annually;ammonia emissions from mobile sources per year;annual emissions of ammonia from mobile sources;the amount of ammonia emitted from mobile sources each year" -Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses,"Annual Amount Emissions Ammonia, IndustrialProcesses (23);ammonia emissions from industrial processes per year (23);amount of ammonia emitted by industrial processes per year (23);amount of ammonia emitted from industrial processes in a year (23);annual emissions of ammonia from industrial processes (23)" -Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization,"Annual Amount Emissions Ammonia, SolventUtilization (24);Annual Emissions of Ammonia in Solvent Utilization;amount of ammonia emitted annually from solvent utilization;amount of ammonia emitted from solvent utilization annually;annual ammonia emissions from solvent utilization;annual amount of ammonia emitted from solvent utilization" -Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport,"Annual Amount Emissions Ammonia, StorageAndTransport (25);Annual Emissions of Ammonia in Storage and Transport;ammonia emissions from storage and transport total 25 annually;annually, 25 tons of ammonia are emitted from storage and transport;storage and transport are responsible for 25 tons of ammonia emissions annually;the amount of ammonia emitted annually from storage and transport is 25" -Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Ammonia, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Ammonia in Waste Disposal Treatment and Recovery;ammonia emissions from waste disposal, treatment, and recovery;ammonia emissions from waste disposal, treatment, and recovery in 2026;ammonia emissions from waste recovery;ammonia emissions from waste treatment" -Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources,"Annual Amount Emissions Ammonia, NaturalSources (27);Annual Emissions of Ammonia in Natural Sources;ammonia emissions from natural sources (27) per year;annual amount of ammonia emissions from natural sources (27);the amount of ammonia emitted from natural sources each year (27);the amount of ammonia that is emitted from natural sources each year (27)" -Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Ammonia, MiscellaneousAreaSources (28);Annual Emissions of Ammonia in Miscellaneous Area Sources;ammonia emissions from miscellaneous area sources;ammonia emissions from miscellaneous area sources in a given year;ammonia emissions from other area sources;the amount of ammonia emitted from miscellaneous area sources in a year" -Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Ammonia, InternalCombustionEngines (2);Annual Emissions of Ammonia in Internal Combustion Engines;how much ammonia do internal combustion engines emit annually?;how much ammonia is emitted from internal combustion engines each year?;what is the annual ammonia emission from internal combustion engines?;what is the annual amount of ammonia emitted by internal combustion engines?" -Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,"Annual Amount Emissions Ammonia, IndustrialProcesses (3);Annual Emissions of Ammonia in Industrial Processes;amount of ammonia emitted from industrial processes each year;annual ammonia emissions from industrial processes;the amount of ammonia released into the atmosphere each year from industrial processes;what is the annual ammonia emission from industrial processes?" -Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Ammonia, PetroleumAndSolventEvaporation (4);Annual Emissions of Ammonia in Petroleum and Solvent Evaporation;annual emissions of ammonia, petroleum, and solvent evaporation;the amount of ammonia, petroleum, and solvent evaporation emitted each year;the annual total of ammonia, petroleum, and solvent evaporation released into the air;the yearly amount of ammonia, petroleum, and solvent evaporation released into the atmosphere" -Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal,"5 annual amount of ammonia discharged from waste disposal;Annual Amount Emissions Ammonia, WasteDisposal (5);Annual Emissions of Ammonia in Waste Disposal" -Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion,"Annual Amount Emissions Arsenic, ExternalCombustion (1);Annual Emissions of Arsenic in External Combustion;annual arsenic emissions from external combustion;annual arsenic emissions from external combustion sources;annual external combustion arsenic emissions;arsenic emissions from external combustion per year" -Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Arsenic, StationarySourceFuelCombustion (21);Annual Emissions of Arsenic in Stationary Source Fuel Combustion;arsenic emissions from stationary fuel combustion in 2021;the amount of arsenic emitted from stationary fuel combustion in 2021;the amount of arsenic released into the air from stationary fuel combustion in 2021;the amount of arsenic that was released into the atmosphere from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources,"22 tons of arsenic are emitted from mobile sources each year;Annual Amount Emissions Arsenic, MobileSources (22);Annual Emissions of Arsenic in Mobile Sources;arsenic emissions from mobile sources total 22 tons annually;mobile sources are responsible for 22 tons of arsenic emissions annually;mobile sources emit 22 tons of arsenic annually" -Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses,"Annual Amount Emissions Arsenic, IndustrialProcesses (23);arsenic emissions from industrial processes (23);arsenic released into the environment from industrial processes (23);the amount of arsenic emitted from industrial processes (23);the amount of arsenic released into the environment from industrial processes (23)" -Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization,"Annual Amount Emissions Arsenic, SolventUtilization (24);Annual Emissions of Arsenic in Solvent Utilization;annual emissions of arsenic from solvent utilization;arsenic emissions from solvent utilization per year;arsenic released into the environment from solvent utilization each year;the amount of arsenic released into the environment from solvent utilization in one year" -Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Arsenic, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Arsenic in Waste Disposal Treatment and Recovery;the amount of arsenic emitted from waste disposal, treatment, and recovery in a year;the amount of arsenic released into the environment from waste disposal, treatment, and recovery in a year;the amount of arsenic that is released from waste disposal, treatment, and recovery into the environment in a year;the amount of arsenic that is released into the environment from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Arsenic, MiscellaneousAreaSources (28);Annual Emissions of Arsenic in Miscellaneous Area Sources;arsenic emissions from area sources, miscellaneous;arsenic emissions from area sources, nes;arsenic emissions from area sources, not otherwise specified;arsenic emissions from miscellaneous area sources" -Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Arsenic, InternalCombustionEngines (2);Annual Emissions of Arsenic in Internal Combustion Engines;amount of arsenic emitted by internal combustion engines each year;annual arsenic emissions from internal combustion engines;how much arsenic is emitted annually by internal combustion engines?;what is the annual arsenic emission rate from internal combustion engines?" -Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,"Annual Amount Emissions Arsenic, IndustrialProcesses (3);Annual Emissions of Arsenic in Industrial Processes;annual arsenic emissions from industrial processes;arsenic emissions from industrial processes in a year;how much arsenic is emitted from industrial processes each year;the amount of arsenic emitted from industrial processes each year" -Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Arsenic, PetroleumAndSolventEvaporation (4);Annual Emissions of Arsenic in Petroleum and Solvent Evaporation;annual emissions of arsenic, petroleum, and solvent evaporation;the amount of arsenic, petroleum, and solvent evaporation emitted each year;the annual amount of arsenic, petroleum, and solvent evaporation released into the environment;the total amount of arsenic, petroleum, and solvent evaporation released into the air, water, and soil each year" -Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal,"Annual Amount Emissions Arsenic, WasteDisposal (5);Annual Emissions of Arsenic in Waste Disposal" -Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses,"Annual Amount Emissions Asbestos, IndustrialProcesses (3);Annual Emissions of Asbestos in Industrial Processes;the amount of asbestos emitted by industrial processes each year;the annual amount of asbestos emitted by industrial processes;the annual emissions of asbestos from industrial processes;the yearly amount of asbestos emitted by industrial processes" -Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion,"Annual Amount Emissions Benzene, ExternalCombustion (1);Annual Emissions of Benzene in External Combustion;annual amount of benzene emissions from external combustion;annual benzene emissions from external combustion;annual external combustion benzene emissions;benzene emissions from external combustion" -Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Benzene, StationarySourceFuelCombustion (21);Annual Emissions of Benzene in Stationary Source Fuel Combustion;the amount of benzene emitted from stationary fuel combustion in 2021;the amount of benzene emitted from stationary sources from fuel combustion in 2021;the amount of benzene released into the air from stationary sources in 2021 as a result of fuel combustion;the amount of benzene that was released into the atmosphere in 2021 from stationary sources due to fuel combustion" -Annual_Amount_Emissions_Benzene_SCC_22_MobileSources,"Annual Amount Emissions Benzene, MobileSources (22);Annual Emissions of Benzene in Mobile Sources;the amount of benzene emitted by mobile sources in one year;the amount of benzene emitted from mobile sources in a year;the annual amount of benzene emitted by mobile sources;the annual amount of benzene emitted from mobile sources" -Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Benzene, IndustrialProcesses (23);benzene emissions from industrial processes are 23 units per year;benzene emissions from industrial processes total 23 each year;industrial processes emit 23 units of benzene each year;the amount of benzene emitted from industrial processes each year is 23" -Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization,"Annual Amount Emissions Benzene, SolventUtilization (24);Annual Emissions of Benzene in Solvent Utilization;amount of benzene emitted from solvent use each year;annual amount of benzene emissions from solvent use;annual benzene emissions from solvent use;benzene emissions from solvent use per year" -Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport,"Annual Amount Emissions Benzene, StorageAndTransport (25);Annual Emissions of Benzene in Storage and Transport;annual benzene emissions from storage and transport: 25;benzene emissions from storage and transport in a year: 25;the amount of benzene emitted from storage and transport annually: 25;the amount of benzene emitted from storage and transport in a year: 25" -Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Benzene, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Benzene in Waste Disposal Treatment and Recovery;annual amount of benzene emissions from waste disposal, treatment, and recovery: 26;benzene emissions from waste disposal, treatment, and recovery: 26;the amount of benzene emitted from waste disposal, treatment, and recovery each year is 26;waste disposal, treatment, and recovery emit 26 units of benzene each year" -Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Benzene, MiscellaneousAreaSources (28);Annual Emissions of Benzene in Miscellaneous Area Sources;benzene emissions from area sources, miscellaneous;benzene emissions from miscellaneous area sources;benzene emissions, miscellaneous area sources;emissions of benzene from miscellaneous area sources" -Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines,"1 amount of benzene emitted annually from internal combustion engines;2 annual benzene emissions from internal combustion engines;Annual Amount Emissions Benzene, InternalCombustionEngines (2);Annual Emissions of Benzene in Internal Combustion Engines;annual benzene emissions from internal combustion engines;the amount of benzene emitted from internal combustion engines each year" -Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,"1 the amount of benzene emitted by industrial processes each year;2 the annual emissions of benzene from industrial processes;3 the amount of benzene that is released into the air each year from industrial processes;Annual Amount Emissions Benzene, IndustrialProcesses (3);Annual Emissions of Benzene in Industrial Processes;the amount of benzene emitted by industrial processes each year" -Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Benzene, PetroleumAndSolventEvaporation (4);Annual Emissions of Benzene in Petroleum and Solvent Evaporation;amount of benzene, petroleum, and solvent evaporated annually;annual benzene, petroleum, and solvent evaporation emissions;annual emissions of benzene, petroleum, and solvents from evaporation;annual evaporation of benzene, petroleum, and solvents" -Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal,"Annual Amount Emissions Benzene, WasteDisposal (5);Annual Emissions of Benzene in Waste Disposal" -Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion,"Annual Amount Emissions Cadmium, ExternalCombustion (1);Annual Emissions of Cadmium in External Combustion;annual cadmium emissions from external combustion;cadmium emissions from external combustion annually;cadmium emissions from external combustion per year;the amount of cadmium emitted from external combustion each year" -Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cadmium, StationarySourceFuelCombustion (21);Annual Emissions of Cadmium in Stationary Source Fuel Combustion;cadmium emissions from stationary fuel combustion in 2021;the amount of cadmium emitted from stationary fuel combustion in 2021;the level of cadmium pollution caused by stationary fuel combustion in 2021;the quantity of cadmium released into the atmosphere from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources,"Annual Amount Emissions Cadmium, MobileSources (22);Annual Emissions of Cadmium in Mobile Sources;annual cadmium emissions from mobile sources are 22 tons;cadmium emissions from mobile sources are 22 tons annually;mobile sources emit 22 tons of cadmium annually;the amount of cadmium emitted by mobile sources annually is 22" -Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cadmium, IndustrialProcesses (23);cadmium emissions from industrial processes (23);the amount of cadmium emitted from industrial processes each year (23);the amount of cadmium emitted from industrial processes in one year (23);the annual amount of cadmium emitted from industrial processes (23)" -Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization,"Annual Amount Emissions Cadmium, SolventUtilization (24);Annual Emissions of Cadmium in Solvent Utilization;amount of cadmium emitted from solvent use each year (24);amount of cadmium emitted from solvent use in one year (24);annual emissions of cadmium from solvent use (24);cadmium emissions from solvent use in one year (24)" -Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cadmium, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Cadmium in Waste Disposal Treatment and Recovery;cadmium emissions from waste disposal, treatment, and recovery activities amount to 26 in a year;cadmium emissions from waste disposal, treatment, and recovery activities total 26 in a year;the amount of cadmium emitted from waste disposal, treatment, and recovery activities in a year is 26;the annual amount of cadmium emitted from waste disposal, treatment, and recovery activities is 26" -Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cadmium, MiscellaneousAreaSources (28);Annual Emissions of Cadmium in Miscellaneous Area Sources;cadmium emissions from miscellaneous area sources (28);cadmium emissions from miscellaneous sources (28);cadmium emissions from non-point sources (28);cadmium emissions from other sources (28)" -Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Cadmium, InternalCombustionEngines (2);Annual Emissions of Cadmium in Internal Combustion Engines;annual amount of cadmium emitted by internal combustion engines;annual cadmium emissions from internal combustion engines;the amount of cadmium emitted by internal combustion engines each year;the annual emissions of cadmium from internal combustion engines" -Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cadmium, IndustrialProcesses (3);Annual Emissions of Cadmium in Industrial Processes;cadmium emissions from industrial processes;the amount of cadmium emitted from industrial processes each year;the amount of cadmium that is released into the environment each year from industrial processes;the annual emissions of cadmium from industrial processes" -Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cadmium, PetroleumAndSolventEvaporation (4);Annual Emissions of Cadmium in Petroleum and Solvent Evaporation;annual cadmium emissions from petroleum and solvent evaporation;the amount of cadmium emitted annually from petroleum and solvent evaporation;the amount of cadmium emitted from petroleum and solvent evaporation each year;the annual amount of cadmium emitted from petroleum and solvent evaporation" -Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal,"Annual Amount Emissions Cadmium, WasteDisposal (5);Annual Emissions of Cadmium in Waste Disposal" -Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Carbon Dioxide, ExternalCombustion (1);Annual Emissions of Carbon Dioxide in External Combustion;annual carbon dioxide emissions from external combustion;annual external combustion carbon dioxide emissions;carbon dioxide emissions from external combustion per year;external combustion carbon dioxide emissions per year" -Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources,"Annual Amount Emissions Carbon Dioxide, MobileSources (22);Annual Emissions of Carbon Dioxide in Mobile Sources;how much carbon dioxide do mobile sources emit each year?;how much carbon dioxide is emitted by mobile sources each year?;what is the annual amount of carbon dioxide emitted by mobile sources?;what is the total amount of carbon dioxide emitted by mobile sources each year?" -Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Carbon Dioxide, MiscellaneousAreaSources (28);Annual Emissions of Carbon Dioxide in Miscellaneous Area Sources;carbon dioxide emissions from miscellaneous sources, per year;the amount of carbon dioxide emitted from miscellaneous sources each year;the annual amount of carbon dioxide emitted from miscellaneous sources;the total amount of carbon dioxide emitted from miscellaneous sources in a year" -Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Carbon Dioxide, InternalCombustionEngines (2);Annual Emissions of Carbon Dioxide in Internal Combustion Engines;how much carbon dioxide do internal combustion engines emit each year?;how much carbon dioxide is emitted by internal combustion engines each year?;the amount of carbon dioxide emitted by internal combustion engines each year;what is the annual carbon dioxide emissions from internal combustion engines?" -Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses,"1 the amount of carbon dioxide emitted by industrial processes each year;Annual Amount Emissions Carbon Dioxide, IndustrialProcesses (3);Annual Emissions of Carbon Dioxide in Industrial Processes;annual industrial carbon dioxide emissions;carbon dioxide emissions from industrial processes per year;the amount of carbon dioxide emitted by industrial processes each year" -Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Carbon Dioxide, PetroleumAndSolventEvaporation (4);Annual Emissions of Carbon Dioxide in Petroleum and Solvent Evaporation;the amount of carbon dioxide emitted from petroleum and solvent evaporation each year;the annual amount of carbon dioxide emitted from petroleum and solvent evaporation;the annual carbon dioxide emissions from petroleum and solvent evaporation;the yearly amount of carbon dioxide emitted from petroleum and solvent evaporation" -Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal,"Annual Amount Emissions Carbon Dioxide, WasteDisposal (5);Annual Emissions of Carbon Dioxide in Waste Disposal" -Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion,"1 how much carbon monoxide is emitted from external combustion sources each year?;2 what is the annual amount of carbon monoxide emitted from external combustion sources?;4 how much carbon monoxide is released into the atmosphere each year from external combustion sources?;5 what is the annual carbon monoxide emissions from external combustion sources?;Annual Amount Emissions Carbon Monoxide, ExternalCombustion (1);Annual Emissions of Carbon Monoxide in External Combustion" -Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Carbon Monoxide, StationarySourceFuelCombustion (21);Annual Emissions of Carbon Monoxide in Stationary Source Fuel Combustion;carbon monoxide emissions from stationary fuel combustion in 2021;the amount of carbon monoxide emitted from stationary fuel combustion in 2021;the annual amount of carbon monoxide emitted from stationary fuel combustion in 2021;the total amount of carbon monoxide emitted from stationary fuel combustion in 2021" -Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources,"1 the amount of carbon monoxide emitted by mobile sources each year is 22 million metric tons;2 mobile sources emit 22 million metric tons of carbon monoxide each year;3 carbon monoxide emissions from mobile sources total 22 million metric tons annually;4 mobile sources are responsible for emitting 22 million metric tons of carbon monoxide each year;Annual Amount Emissions Carbon Monoxide, MobileSources (22);Annual Emissions of Carbon Monoxide in Mobile Sources" -Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (23);carbon monoxide emissions from industrial processes total 23 units per year;industrial processes are responsible for emitting 23 units of carbon monoxide each year;industrial processes emit 23 units of carbon monoxide each year;the amount of carbon monoxide emitted by industrial processes each year is 23" -Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization,"Annual Amount Emissions Carbon Monoxide, SolventUtilization (24);Annual Emissions of Carbon Monoxide in Solvent Utilization;amount of carbon monoxide emitted annually from solvent utilization;amount of carbon monoxide emitted from solvent utilization (24) annually;carbon monoxide emissions from solvent utilization annually;solvent utilization (24) annual carbon monoxide emissions" -Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport,"Annual Amount Emissions Carbon Monoxide, StorageAndTransport (25);Annual Emissions of Carbon Monoxide in Storage and Transport;annual carbon monoxide emissions from storage and transport are 25;carbon monoxide emissions from storage and transport amount to 25 annually;storage and transport are responsible for 25 annual carbon monoxide emissions;the amount of carbon monoxide emitted annually from storage and transport is 25" -Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Carbon Monoxide, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Carbon Monoxide in Waste Disposal Treatment and Recovery;the amount of carbon monoxide emitted from waste disposal and treatment facilities in the united states is 26 million metric tons per year;the amount of carbon monoxide emitted from waste disposal and treatment in a 12-month period;the amount of carbon monoxide emitted from waste disposal and treatment in a year;the amount of carbon monoxide emitted from waste disposal and treatment in one year" -Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources,"27 million metric tons of carbon monoxide are emitted from natural sources each year;Annual Amount Emissions Carbon Monoxide, NaturalSources (27);Annual Emissions of Carbon Monoxide in Natural Sources;carbon monoxide emissions from natural sources total 27 million metric tons each year;the amount of carbon monoxide emitted from natural sources each year is 27 million metric tons;the annual amount of carbon monoxide emitted from natural sources is 27 million metric tons" -Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Carbon Monoxide, MiscellaneousAreaSources (28);Annual Emissions of Carbon Monoxide in Miscellaneous Area Sources;carbon monoxide emissions from area sources;carbon monoxide emissions from miscellaneous area sources;carbon monoxide emissions from miscellaneous sources;carbon monoxide emissions from other sources" -Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Carbon Monoxide, InternalCombustionEngines (2);Annual Emissions of Carbon Monoxide in Internal Combustion Engines;how much carbon monoxide is emitted from internal combustion engines each year?;the annual carbon monoxide emissions from internal combustion engines;the annual emissions of carbon monoxide from internal combustion engines;what is the annual amount of carbon monoxide emitted by internal combustion engines?" -Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,"1 the amount of carbon monoxide emitted by industrial processes each year;2 the annual carbon monoxide emissions from industrial processes;3 the amount of carbon monoxide released into the atmosphere each year from industrial processes;Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (3);Annual Emissions of Carbon Monoxide in Industrial Processes;carbon monoxide emissions from industrial processes" -Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Carbon Monoxide, PetroleumAndSolventEvaporation (4);Annual Emissions of Carbon Monoxide in Petroleum and Solvent Evaporation;annual carbon monoxide emissions from petroleum and solvent evaporation;annual emissions of carbon monoxide from petroleum and solvent evaporation;the amount of carbon monoxide emitted annually from petroleum and solvent evaporation;the annual amount of carbon monoxide emitted from petroleum and solvent evaporation" -Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal,"5 annual amount of carbon monoxide released from waste disposal;Annual Amount Emissions Carbon Monoxide, WasteDisposal (5);Annual Emissions of Carbon Monoxide in Waste Disposal" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Chemical and Allied Product Manufacturing;the amount of ammonia emitted by chemical and allied product manufacturing each year;the annual ammonia emissions from chemical and allied product manufacturing;what is the annual ammonia emission rate from the chemical and allied product manufacturing industry?;what is the annual amount of ammonia emissions from the chemical and allied product manufacturing industry?" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Chemical and Allied Product Manufacturing;the amount of carbon monoxide emitted by chemical and allied product manufacturing each year;the annual carbon monoxide emissions from chemical and allied product manufacturing;the annual carbon monoxide output of chemical and allied product manufacturing;the total amount of carbon monoxide emitted by chemical and allied product manufacturing in one year" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Chemical and Allied Product Manufacturing;the amount of nitrogen oxides emitted by chemical and allied product manufacturing each year;the amount of nitrogen oxides that are emitted into the environment each year by chemical and allied product manufacturing;the annual emissions of nitrogen oxides from chemical and allied product manufacturing;the yearly amount of nitrogen oxides emitted by chemical and allied product manufacturing" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Chemical and Allied Product Manufacturing;the amount of pm10 emissions from chemical and allied product manufacturing;the amount of pm10 emissions from non-biogenic sources in chemical and allied product manufacturing;the amount of pm10 emitted by chemical and allied product manufacturing;the amount of pm10 emitted from non-biogenic sources in chemical and allied product manufacturing" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Chemical and Allied Product Manufacturing;the amount of pm 25 emissions from chemical and allied product manufacturing in a year;the annual amount of pm 25 emissions from chemical and allied product manufacturing that are not from biological sources;the annual amount of pm 25 emissions from chemical and allied product manufacturing that are not from living things;the annual amount of pm 25 emissions from non-biogenic sources in the chemical and allied product manufacturing industry" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Chemical and Allied Product Manufacturing;annual emissions of sulfur dioxide from chemical and allied product manufacturing;sulfur dioxide emissions from chemical and allied product manufacturing per year;the amount of sulfur dioxide emitted by chemical and allied product manufacturing each year;the annual amount of sulfur dioxide emitted from chemical and allied product manufacturing sources" -Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Chemical And Allied Product Manufacturing, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Chemical and Allied Product Manufacturing;annual emissions of volatile organic compounds from chemical and allied product manufacturing" -Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,"Annual Amount Emissions Chlorane, ExternalCombustion (1);Annual Emissions of Chlorine in External Combustion;amount of chlorane emitted from external combustion per year;annual amount of emissions of chlorane from external combustion;annual emissions of chlorane from external combustion;chlorane emissions from external combustion per year" -Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chlorane, StationarySourceFuelCombustion (21);Annual Emissions of Chlorine in Stationary Source Fuel Combustion;annual amount of emissions of chlorane from stationary source fuel combustion (21);chlorane emissions from fuel combustion in stationary sources (21);chlorane emissions from stationary source fuel combustion (21);emissions of chlorane from stationary source fuel combustion (21)" -Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chlorane, IndustrialProcesses (23);chlorane emissions from industrial processes total 23 each year;how much chlorane is emitted from industrial processes annually?;the amount of chlorane emitted from industrial processes each year is 23;what is the amount of chlorane emitted from industrial processes annually?" -Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization,"Annual Amount Emissions Chlorane, SolventUtilization (24);Annual Emissions of Chlorine in Solvent Utilization;amount of emissions from chlorane solvent utilization per year;annual amount of emissions from chlorane solvent utilization;annual emissions of chlorane solvent utilization;chlorane solvent utilization emissions per year" -Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chlorane, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Chlorine in Waste Disposal Treatment and Recovery;amount of chlorane emitted annually from waste disposal, treatment, and recovery;amount of chlorane emitted from waste disposal, treatment, and recovery each year;annual amount of chlorane emitted from waste disposal, treatment, and recovery;annual amount of emissions of chlorane from waste disposal, treatment, and recovery" -Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chlorane, MiscellaneousAreaSources (28);Annual Emissions of Chlorine in Miscellaneous Area Sources;chlorane emissions from area sources (not specified);chlorane emissions from miscellaneous area sources;chlorane emissions from miscellaneous sources;chlorane emissions from other sources" -Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,"2 the annual amount of chlorane emissions from internal combustion engines;Annual Amount Emissions Chlorane, InternalCombustionEngines (2);Annual Emissions of Chlorine in Internal Combustion Engines;the amount of emissions of chlorane from internal combustion engines each year;the amount of emissions of chlorane from internal combustion engines per year;the annual amount of chlorane emissions from internal combustion engines" -Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chlorane, IndustrialProcesses (3);Annual Emissions of Chlorine in Industrial Processes;the amount of chlorane emitted from industrial processes each year;the amount of chlorane emitted from industrial processes in a year;the annual amount of chlorane emitted from industrial processes;the annual emissions of chlorane from industrial processes" -Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chlorane, PetroleumAndSolventEvaporation (4);Annual Emissions of Chlorine in Petroleum and Solvent Evaporation;how much chlorane, petroleum and solvent evaporation is emitted annually?;how much chlorane, petroleum and solvent evaporation is emitted each year?;what is the annual amount of chlorane, petroleum and solvent evaporation emissions?;what is the yearly amount of chlorane, petroleum and solvent evaporation emissions?" -Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal,"Annual Amount Emissions Chlorane, WasteDisposal (5);Annual Emissions of Chlorine in Waste Disposal" -Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,"Annual Amount Emissions Chlorine, ExternalCombustion (1);amount of chlorine emitted from external combustion each year;annual amount of chlorine emissions from external combustion;annual chlorine emissions from external combustion;chlorine emissions from external combustion per year" -Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chlorine, StationarySourceFuelCombustion (21);annual chlorine emissions from stationary fuel combustion (21);chlorine emissions from stationary fuel combustion (21);emissions of chlorine from stationary fuel combustion (21);the amount of chlorine emitted from stationary fuel combustion (21)" -Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources,"Annual Amount Emissions Chlorine, MobileSources (22);Annual Emissions of Chlorine in Mobile Sources;amount of chlorine emitted from mobile sources each year;annual amount of chlorine emissions from mobile sources;annual emissions of chlorine from mobile sources;chlorine emissions from mobile sources per year" -Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chlorine, IndustrialProcesses (23);annual chlorine emissions from industrial processes (23);chlorine emissions from industrial processes (23);the amount of chlorine emitted from industrial processes per year (23);the amount of chlorine released into the atmosphere from industrial processes per year (23)" -Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chlorine, WasteDisposalTreatmentAndRecovery (26);annual amount of chlorine emissions from waste disposal, treatment, and recovery;annual emissions of chlorine from waste disposal, treatment, and recovery;chlorine emissions from waste disposal, treatment, and recovery per year;the amount of chlorine emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chlorine, MiscellaneousAreaSources (28);annual amount of emissions from chlorine, miscellaneous area sources;annual emissions of chlorine from miscellaneous area sources;chlorine emissions from miscellaneous area sources, annual;chlorine emissions from miscellaneous area sources, annual amount" -Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,"1 annual amount of chlorine emissions from internal combustion engines;2 annual emissions of chlorine from internal combustion engines;2 the annual emissions of chlorine from internal combustion engines;Annual Amount Emissions Chlorine, InternalCombustionEngines (2);the amount of chlorine emitted by internal combustion engines each year" -Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chlorine, IndustrialProcesses (3);annual amount of chlorine emissions from industrial processes;annual emissions of chlorine from industrial processes;the amount of chlorine emitted from industrial processes each year;the annual amount of chlorine released into the environment from industrial processes" -Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chlorine, PetroleumAndSolventEvaporation (4);annual emissions of chlorine, petroleum, and solvent evaporation;the amount of chlorine, petroleum, and solvent evaporation emitted each year;the annual total of chlorine, petroleum, and solvent evaporation emissions;the yearly amount of chlorine, petroleum, and solvent evaporation released into the environment" -Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal,"Annual Amount Emissions Chlorine, WasteDisposal (5)" -Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion,"Annual Amount Emissions Chloroform, ExternalCombustion (1);Annual Emissions of Chloroform in External Combustion;amount of chloroform emitted annually from external combustion;annual amount of chloroform emissions from external combustion;annual chloroform emissions from external combustion;chloroform emissions from external combustion per year" -Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chloroform, StationarySourceFuelCombustion (21);Annual Emissions of Chloroform in Stationary Source Fuel Combustion;chloroform emissions from stationary fuel combustion in 2021;chloroform emissions from stationary fuel combustion in 2021, in kilograms;the amount of chloroform emitted from stationary fuel combustion in 2021;the amount of chloroform released into the atmosphere from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses,"23 units of chloroform are emitted from industrial processes;Annual Amount Emissions Chloroform, IndustrialProcesses (23);chloroform emissions from industrial processes (23);industrial processes are responsible for emitting 23 units of chloroform;industrial processes emit 23 units of chloroform" -Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization,"Annual Amount Emissions Chloroform, SolventUtilization (24);Annual Emissions of Chloroform in Solvent Utilization;annual amount of chloroform emissions from solvent utilization;annual chloroform emissions from solvent utilization;chloroform emissions from solvent utilization annually;chloroform emissions from solvent utilization per year" -Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chloroform, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Chloroform in Waste Disposal Treatment and Recovery;amount of chloroform emitted from waste disposal, treatment, and recovery;amount of chloroform emitted from waste management;chloroform emissions from waste disposal, treatment, and recovery;chloroform emissions from waste management" -Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chloroform, MiscellaneousAreaSources (28);Annual Emissions of Chloroform in Miscellaneous Area Sources;chloroform emissions from miscellaneous area sources;chloroform emissions from other sources;emissions of chloroform from miscellaneous area sources;emissions of chloroform from miscellaneous sources" -Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines,"2 the annual emissions of chloroform from internal combustion engines;Annual Amount Emissions Chloroform, InternalCombustionEngines (2);Annual Emissions of Chloroform Internal Combustion Engines;the annual emissions of chloroform from internal combustion engines;what is the annual chloroform emission from internal combustion engines?;what is the annual emission of chloroform from internal combustion engines?" -Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chloroform, IndustrialProcesses (3);Annual Emissions of Chloroform in Industrial Processes;annual chloroform emissions from industrial processes;the annual amount of chloroform emitted by industrial processes" -Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chloroform, PetroleumAndSolventEvaporation (4);Annual Emissions of Chloroform in Petroleum and Solvent Evaporation;amount of emissions from chloroform, petroleum, and solvent evaporation per year;annual amount of emissions from chloroform, petroleum, and solvent evaporation;annual emissions of chloroform, petroleum, and solvent evaporation;emissions from chloroform, petroleum, and solvent evaporation per year" -Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal,"5 chloroform emissions from waste disposal annually;Annual Amount Emissions Chloroform, WasteDisposal (5);Annual Emissions of Chloroform in Waste Disposal" -Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion,"Annual Amount Emissions Chromium(6+), ExternalCombustion (1);Annual Emissions of Chromium in External Combustion;annual chromium(vi) emissions from external combustion;annual emissions of chromium(vi) from external combustion;chromium(vi) emissions from external combustion;external combustion emissions of chromium(vi)" -Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Chromium(6+), StationarySourceFuelCombustion (21);Annual Emissions of Chromium in Stationary Source Fuel Combustion;amount of chromium(vi) emitted from stationary fuel combustion each year;annual amount of chromium(vi) emitted from stationary fuel combustion;annual emissions of chromium(vi) from stationary fuel combustion;chromium(vi) emissions from stationary fuel combustion each year" -Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources,"Annual Amount Emissions Chromium(6+), MobileSources (22);Annual Emissions of Chromium in Mobile Sources;annual amount of chromium(vi) emissions from mobile sources;annual chromium(vi) emissions from mobile sources;annual emissions of chromium(vi) from mobile sources;mobile sources' annual chromium(vi) emissions" -Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses,"Annual Amount Emissions Chromium(6+), IndustrialProcesses (23);amount of chromium(vi) emitted annually from industrial processes;annual chromium(vi) emissions from industrial processes;annual emissions of chromium(vi) from industrial processes;chromium(vi) emissions from industrial processes per year" -Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization,"Annual Amount Emissions Chromium(6+), SolventUtilization (24);Annual Emissions of Chromium in Solvent Utilization;annual amount of chromium(6+) solvent utilization;annual chromium(vi) emissions from solvents;annual emissions of chromium(vi) from solvent utilization;annual emissions of chromium(vi) from solvents" -Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Chromium(6+), WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Chromium in Waste Disposal Treatment and Recovery;amount of chromium(6+) emitted annually from waste disposal, treatment, and recovery;amount of chromium(6+) emitted from waste disposal, treatment, and recovery each year;annual amount of chromium(6+) emissions from waste disposal, treatment, and recovery;annual emissions of chromium(6+) from waste disposal, treatment, and recovery" -Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Chromium(6+), MiscellaneousAreaSources (28);Annual Emissions of Chromium in Miscellaneous Area Sources;annual emissions of chromium(6+) from area sources other than point sources;annual emissions of chromium(6+) from miscellaneous area sources;annual emissions of chromium(6+) from miscellaneous sources;annual emissions of chromium(6+) from non-point sources" -Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Chromium(6+), InternalCombustionEngines (2);Annual Emissions of Chromium in Internal Combustion Engines;annual amount of chromium(vi) emissions from internal combustion engines;annual chromium(vi) emissions from internal combustion engines;chromium(vi) emissions from internal combustion engines on an annual basis;chromium(vi) emissions from internal combustion engines per year" -Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,"Annual Amount Emissions Chromium(6+), IndustrialProcesses (3);Annual Emissions of Chromium in Industrial Processes;amount of chromium(6+) emitted from industrial processes per year;annual amount of chromium(6+) emissions from industrial processes;annual chromium(6+) emissions from industrial processes;chromium(6+) emissions from industrial processes per year" -Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Chromium(6+), PetroleumAndSolventEvaporation (4);Annual Emissions of Chromium in Petroleum and Solvent Evaporation;chromium(6+) emissions from petroleum and solvent evaporation amount to 4 annually;chromium(6+) is emitted from petroleum and solvent evaporation at an annual rate of 4;petroleum and solvent evaporation emit 4 chromium(6+) annually;the annual amount of chromium(6+) emissions from petroleum and solvent evaporation is 4" -Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal,"Annual Amount Emissions Chromium(6+), WasteDisposal (5);Annual Emissions of Chromium in Waste Disposal" -Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion,"Annual Amount Emissions Cobalt, ExternalCombustion (1);Annual Emissions of Cobalt in External Combustion;amount of cobalt emitted from external combustion each year;annual cobalt emissions from external combustion;annual external combustion emissions of cobalt;external combustion emissions of cobalt per year" -Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cobalt, StationarySourceFuelCombustion (21);Annual Emissions of Cobalt in Stationary Source Fuel Combustion;cobalt emissions from stationary fuel combustion;cobalt emissions from stationary sources;how many tons of cobalt are emitted from stationary fuel combustion each year?;what is the annual amount of cobalt emissions from stationary fuel combustion?" -Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources,"Annual Amount Emissions Cobalt, MobileSources (22);Annual Emissions of Cobalt in Mobile Sources;amount of cobalt emitted by mobile sources each year;annual amount of cobalt emissions from mobile sources;cobalt emissions from mobile sources;mobile sources of cobalt emissions" -Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cobalt, IndustrialProcesses (23);cobalt emissions from industrial processes in a year (23);cobalt emissions from industrial processes in one year (23);the amount of cobalt emitted from industrial processes in one year (23);the annual amount of cobalt emitted from industrial processes (23)" -Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization,"Annual Amount Emissions Cobalt, SolventUtilization (24);Annual Emissions of Cobalt in Solvent Utilization;annual cobalt solvent utilization emissions;cobalt solvent utilization emissions;emissions from cobalt solvent utilization;solvent utilization emissions of cobalt" -Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cobalt, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Cobalt in Waste Disposal Treatment and Recovery;cobalt emissions from waste disposal;cobalt emissions from waste disposal, treatment, and recovery;cobalt emissions from waste management;cobalt emissions from waste treatment and recovery" -Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cobalt, MiscellaneousAreaSources (28);Annual Emissions of Cobalt in Miscellaneous Area Sources;cobalt emissions from miscellaneous sources (28);cobalt emissions from other sources (28);cobalt emissions from unknown sources (28);cobalt emissions from unlisted sources (28)" -Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines,"1 the amount of cobalt emitted by internal combustion engines each year;Annual Amount Emissions Cobalt, InternalCombustionEngines (2);Annual Emissions of Cobalt in Internal Combustion Engines;here are 2 different ways of saying ""annual amount emissions cobalt, internalcombustionengines"":;the amount of cobalt emitted by internal combustion engines each year;the annual emissions of cobalt from internal combustion engines" -Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cobalt, IndustrialProcesses (3);Annual Emissions of Cobalt in Industrial Processes;how much cobalt is emitted from industrial processes each year?;how much cobalt is released into the environment each year from industrial processes?;what is the annual amount of cobalt emitted from industrial processes?;what is the annual emission of cobalt from industrial processes?" -Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cobalt, PetroleumAndSolventEvaporation (4);Annual Emissions of Cobalt in Petroleum and Solvent Evaporation;annual emissions of cobalt, petroleum, and solvent evaporation;the amount of cobalt, petroleum, and solvent evaporation emitted each year;the annual total of cobalt, petroleum, and solvent evaporation emissions;the total amount of cobalt, petroleum, and solvent evaporation emitted in a year" -Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal,"Annual Amount Emissions Cobalt, WasteDisposal (5);Annual Emissions of Cobalt in Waste Disposal" -Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion,"Annual Amount Emissions Cyanide, ExternalCombustion (1);Annual Emissions of Cyanide in External Combustion;amount of cyanide emitted from external combustion annually;annual cyanide emissions from external combustion;cyanide emissions from external combustion on an annual basis;cyanide emissions from external combustion per year" -Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Cyanide, StationarySourceFuelCombustion (21);Annual Emissions of Cyanide in Stationary Source Fuel Combustion;the amount of cyanide emitted from stationary fuel combustion in 2021;the amount of cyanide released into the air from stationary fuel combustion in 2021;the amount of cyanide that was released into the air in 2021 from stationary fuel combustion;the amount of cyanide that was released into the atmosphere from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Cyanide, IndustrialProcesses (23);the amount of cyanide emitted from industrial processes each year;the annual discharge of cyanide into the environment from industrial processes;the annual quantity of cyanide released into the environment from industrial processes;the total amount of cyanide released into the environment from industrial processes each year" -Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization,"Annual Amount Emissions Cyanide, SolventUtilization (24);Annual Emissions of Cyanide in Solvent Utilization;annual cyanide emissions from solvent utilization (24);annual emissions of cyanide from solvent utilization (24);cyanide emissions from solvent utilization (24);cyanide emissions from solvent utilization in one year (24)" -Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Cyanide, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Cyanide in Waste Disposal Treatment and Recovery;annual amount of cyanide emitted from waste disposal, treatment, and recovery;annual cyanide emissions from waste disposal, treatment, and recovery;annual emissions of cyanide from waste disposal, treatment, and recovery;cyanide emissions from waste disposal, treatment, and recovery per year" -Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Cyanide, MiscellaneousAreaSources (28);Annual Emissions of Cyanide in Miscellaneous Area Sources;annual emissions of cyanide from miscellaneous area sources;cyanide emissions from area sources;cyanide emissions from miscellaneous area sources;cyanide emissions from miscellaneous sources" -Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Cyanide, InternalCombustionEngines (2);Annual Emissions of Cyanide in Internal Combustion Engines;sure, here are 2 different ways to phrase the sentence ""annual amount emissions cyanide, internalcombustionengines"":;the amount of cyanide emitted by internal combustion engines each year;the yearly amount of cyanide emissions from internal combustion engines;what is the annual amount of cyanide emissions from internal combustion engines?" -Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Cyanide, IndustrialProcesses (3);Annual Emissions of Cyanide in Industrial Processes;annual cyanide emissions from industrial processes;annual emissions of cyanide from industrial processes;cyanide emissions from industrial processes" -Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Cyanide, PetroleumAndSolventEvaporation (4);Annual Emissions of Cyanide in Petroleum and Solvent Evaporation;annual amount of cyanide, petroleum, and solvent evaporation emissions;annual emissions of cyanide, petroleum, and solvents from evaporation;annual emissions of cyanide, petroleum, and solvents from evaporation processes;annual emissions of cyanide, petroleum, and solvents from evaporation sources" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From EPA Fuel Combustion Other;amount of emissions from epa_fuel combustion other, non biogenic emission source, ammonia per year;annual amount of emissions from epa_fuel combustion other, non biogenic emission source, ammonia;epa_fuel combustion other, non biogenic emission source, ammonia annual emissions;epa_fuel combustion other, non biogenic emission source, ammonia emissions per year" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From EPA Fuel Combustion Other;the amount of carbon monoxide emitted from epa_fuel combustion other, non biogenic emission source each year;the annual amount of carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source;the annual carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source;the yearly total of carbon monoxide emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Fuel Combustion Other;the amount of nox emitted from epa_fuel combustion other, non biogenic emission source in one year;the annual amount of nox emitted from epa_fuel combustion other, non biogenic emission source;the total amount of nox emitted from epa_fuel combustion other, non biogenic emission source in one year;the yearly amount of nox emitted from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From EPA Fuel Combustion Other;annual amount of emissions from epa_fuel combustion other, non biogenic emission source, pm 10;annual emissions of epa_fuel combustion other, non biogenic emission source, pm 10;annual epa_fuel combustion other, non biogenic emission source, pm 10 emissions;epa_fuel combustion other, non biogenic emission source, pm 10 annual emissions" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From EPA Fuel Combustion Other;how much pm 25 is emitted from epa_fuel combustion other, non biogenic emission source each year;the amount of pm 25 emitted from epa_fuel combustion other, non biogenic emission source each year;the annual amount of pm 25 emitted from epa_fuel combustion other, non biogenic emission source;the annual pm 25 emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Fuel Combustion Other;the amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source each year;the amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source in a year;the annual amount of sulfur dioxide emitted by epa_fuel combustion other, non biogenic emission source;the annual sulfur dioxide emissions from epa_fuel combustion other, non biogenic emission source" -Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Fuel Combustion Other, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From EPA Fuel Combustion Other;annual epa_fuel combustion other, non biogenic emission source, volatile organic compound emissions;epa_fuel combustion other, non biogenic emission source, volatile organic compound annual emissions;epa_fuel combustion other, non biogenic emission source, volatile organic compound emissions per year;how much volatile organic compound (voc) is emitted from epa_fuel combustion other, non biogenic emission source each year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From EPA Miscellaneous;how much ammonia is emitted from epa_miscellaneous emission source and non biogenic emission source each year?;how much ammonia is emitted from epa_miscellaneous emission source and non biogenic emission source in a year?;what is the annual amount of ammonia emitted from epa_miscellaneous emission source and non biogenic emission source?;what is the total amount of ammonia emitted from epa_miscellaneous emission source and non biogenic emission source each year?" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From EPA Miscellaneous;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual amount of emissions;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual emissions;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual output;epa_miscellaneous emission source, non biogenic emission source, carbon monoxide annual release" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Miscellaneous;annual amount of emissions from epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen;epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen;epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen emissions per year;the amount of epa_miscellaneous emission source, non biogenic emission source, oxides of nitrogen emitted each year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From EPA Miscellaneous;annual emissions from epa_miscellaneous emission source, non biogenic emission source, pm 10;epa_miscellaneous emission source, non biogenic emission source, pm 10 annual emissions;the amount of epa_miscellaneous emission source, non biogenic emission source, pm 10 emitted annually;the annual amount of epa_miscellaneous emission source, non biogenic emission source, pm 10 emitted" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From EPA Miscellaneous;the amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in a year;the annual emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25;the sum of the emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in a year;the total amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and pm 25 in one year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Miscellaneous;annual amount of sulfur dioxide emitted by epa_miscellaneous emission source, non biogenic emission source;epa_miscellaneous emission source, non biogenic emission source's annual sulfur dioxide emissions;epa_miscellaneous emission source, non biogenic emission source, sulfur dioxide annual emissions;sulfur dioxide emissions from epa_miscellaneous emission source, non biogenic emission source in a year" -Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Miscellaneous Emission Source, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From EPA Miscellaneous;the amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year;the annual emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound;the sum of the emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year;the total amount of emissions from epa_miscellaneous emission source, non biogenic emission source, and volatile organic compound in a year" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From EPA Other Industrial Processes;amount of ammonia emissions from epa_other industrial processes;epa_other industrial processes emissions of ammonia;what is the annual amount of ammonia emitted by epa_other industrial processes?;what is the annual emission of ammonia from epa_other industrial processes?" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From EPA Other Industrial Processes;how much carbon monoxide is emitted annually by non-biogenic sources in other industrial processes, according to the epa;how much carbon monoxide is emitted by epa_other industrial processes, non biogenic emission source each year?;what is the annual amount of carbon monoxide emitted by epa_other industrial processes, non biogenic emission source?;what is the yearly amount of carbon monoxide emitted by epa_other industrial processes, non biogenic emission source?" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From EPA Other Industrial Processes;how many epa_other industrial processes, non biogenic emission source, oxides of nitrogen are emitted each year?;how much of epa_other industrial processes, non biogenic emission source, oxides of nitrogen is emitted annually?;what is the annual amount of epa_other industrial processes, non biogenic emission source, oxides of nitrogen emissions?;what is the annual epa_other industrial processes, non biogenic emission source, oxides of nitrogen emission total?" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From EPA Other Industrial Processes;the amount of emissions from epa_other industrial processes, pm 10, that are not from living things, per year;the amount of emissions from non-biogenic sources in epa_other industrial processes, pm 10, per year;the annual amount of emissions from epa_other industrial processes, pm 10, that are not biogenic;the annual amount of emissions from epa_other industrial processes, pm 10, that are not from plants or animals" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From EPA Other Industrial Processes;epa_other industrial processes, non biogenic emission source, pm 25 annual emissions;the amount of epa_other industrial processes, non biogenic emission source, pm 25 emitted each year;the annual epa_other industrial processes, non biogenic emission source, pm 25 output;the epa_other industrial processes, non biogenic emission source, pm 25 emissions per year" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From EPA Other Industrial Processes;the amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source each year;the amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source in a year;the annual amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source;the yearly amount of sulfur dioxide emitted by epa_other industrial processes, non biogenic emission source" -Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: EPA_Other Industrial Processes, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non BiogenicEmissionSource_VolatileOrganicCompound;annual emissions from epa_other industrial processes, non biogenic emission source, volatile organic compound;epa_other industrial processes, non biogenic emission source, volatile organic compound emissions;the amount of epa_other industrial processes, non biogenic emission source, volatile organic compound emitted each year;the annual epa_other industrial processes, non biogenic emission source, volatile organic compound emission rate" -Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion,"Annual Amount Emissions Fluorane, ExternalCombustion (1);Annual Emissions of Fluorine in External Combustion;annual amount of fluorane emissions from external combustion;annual external combustion emissions of fluorane;external combustion emissions of fluorane per year;fluorane emissions from external combustion per year" -Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Fluorane, StationarySourceFuelCombustion (21);Annual Emissions of Fluorine in Stationary Source Fuel Combustion;annual amount of emissions from stationary fuel combustion of fluorane;annual emissions of fluorane from stationary fuel combustion;emissions of fluorane from stationary fuel combustion per year;fluorane emissions from stationary fuel combustion per year" -Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Fluorane, IndustrialProcesses (23);amount of fluorane emitted by industrial processes in a year;fluorane emissions from industrial processes (23);fluorane emissions from industrial processes annually;fluorane emissions from industrial processes in one year" -Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization,"Annual Amount Emissions Fluorane, SolventUtilization (24);Annual Emissions of Fluorane in Solvent Utilization;amount of fluorane emitted annually from solvent utilization;annual amount of emissions from fluorane solvent utilization;annual emissions of fluorane from solvent utilization;annual fluorane emissions from solvent use" -Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Fluorane, MiscellaneousAreaSources (28);Annual Emissions of Fluorine in Miscellaneous Area Sources;fluorane emissions from area sources;fluorane emissions from miscellaneous area sources;fluorane emissions from miscellaneous sources;fluorane emissions from other sources" -Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines,"2 annual emissions of fluorane from internal combustion engines;2 the annual emissions of fluorine from internal combustion engines;Annual Amount Emissions Fluorane, InternalCombustionEngines (2);Annual Emissions of Fluorine in Internal Combustion Engines;how much fluorine is released into the air each year from internal combustion engines?" -Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Fluorane, IndustrialProcesses (3);Annual Emissions of Fluorine in Industrial Processes;fluorane emissions from industrial processes;fluorane emissions from industrial processes per year;the amount of fluorane that is released into the atmosphere each year from industrial processes;what is the annual fluorine emission from industrial processes?" -Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Fluorane, PetroleumAndSolventEvaporation (4);Annual Emissions of Fluorine in Petroleum and Solvent Evaporation;annual emissions of fluorane, petroleum, and solvent evaporation;the amount of fluorane, petroleum, and solvent evaporation emitted each year;the annual total of fluorane, petroleum, and solvent emissions;the total amount of fluorane, petroleum, and solvent evaporated each year" -Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal,"Annual Amount Emissions Fluorane, WasteDisposal (5);Annual Emissions of Fluorine in Waste Disposal;annual fluorane waste;annual fluorane waste disposal" -Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion,"Annual Amount Emissions Formaldehyde, ExternalCombustion (1);Annual Emissions of Formaldehyde in External Combustion;amount of formaldehyde emitted from external combustion annually;annual amount of formaldehyde emissions from external combustion;formaldehyde emissions from external combustion on an annual basis;formaldehyde emissions from external combustion per year" -Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Formaldehyde, StationarySourceFuelCombustion (21);Annual Emissions of Formaldehyde in Stationary Source Fuel Combustion;emissions of formaldehyde from stationary fuel combustion in 2021;formaldehyde emissions from stationary combustion of fuels in 2021;formaldehyde emissions from stationary fuel combustion in 2021;formaldehyde emissions from stationary source fuel combustion in 2021" -Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources,"Annual Amount Emissions Formaldehyde, MobileSources (22);Annual Emissions of Formaldehyde in Mobile Sources;amount of formaldehyde emitted from mobile sources each year;annual formaldehyde emissions from mobile sources;formaldehyde emissions from mobile sources annually;formaldehyde emissions from mobile sources per year" -Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses,"Annual Amount Emissions Formaldehyde, IndustrialProcesses (23);formaldehyde emissions from industrial processes (23);formaldehyde emissions from industrial processes, 23;formaldehyde emissions from industrial processes, amounting to 23;industrial processes that emit formaldehyde (23)" -Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization,"Annual Amount Emissions Formaldehyde, SolventUtilization (24);Annual Emissions of Formaldehyde in Solvent Utilization;amount of formaldehyde emitted from solvent utilization annually;annual amount of formaldehyde emissions from solvent utilization;annual formaldehyde emissions from solvent utilization;formaldehyde emissions from solvent utilization per year" -Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Formaldehyde, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Formaldehyde in Waste Disposal Treatment and Recovery;formaldehyde emissions from waste disposal, treatment, and recovery in 2026;the amount of formaldehyde emitted from waste disposal, treatment, and recovery in 2026;the level of formaldehyde pollution from waste disposal, treatment, and recovery in 2026;the quantity of formaldehyde released into the air from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources,"Annual Amount Emissions Formaldehyde, NaturalSources (27);Annual Emissions of Formaldehyde in Natural Sources;amount of formaldehyde emitted from natural sources each year;annual amount of formaldehyde emissions from natural sources;formaldehyde emissions from natural sources per year;formaldehyde released from natural sources annually" -Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Formaldehyde, MiscellaneousAreaSources (28);Annual Emissions of Formaldehyde in Miscellaneous Area Sources;formaldehyde emissions from area sources;formaldehyde emissions from miscellaneous area sources;formaldehyde emissions from miscellaneous sources;formaldehyde emissions from other sources" -Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Formaldehyde, InternalCombustionEngines (2);Annual Emissions of Formaldehyde in Internal Combustion Engines;the amount of formaldehyde emitted by internal combustion engines each year;the annual formaldehyde emissions from internal combustion engines;what is the annual amount of formaldehyde emissions from internal combustion engines?;what is the annual amount of formaldehyde emitted by internal combustion engines?" -Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,"1 annual formaldehyde emissions from industrial processes;Annual Amount Emissions Formaldehyde, IndustrialProcesses (3);Annual Emissions of Formaldehyde in Industrial Processes;formaldehyde emissions from industrial processes;formaldehyde emitted by industrial processes;formaldehyde given off by industrial processes" -Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation,"1 the amount of formaldehyde, petroleum, and solvent evaporation that is emitted annually;2 the annual amount of formaldehyde, petroleum, and solvent evaporation emissions;3 formaldehyde, petroleum, and solvent evaporation emissions per year;4 the annual emissions of formaldehyde, petroleum, and solvent evaporation;Annual Amount Emissions Formaldehyde, PetroleumAndSolventEvaporation (4);Annual Emissions of Formaldehyde in Petroleum and Solvent Evaporation" -Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal,"Annual Amount Emissions Formaldehyde, WasteDisposal (5);Annual Emissions of Formaldehyde in Waste Disposal" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Fuel Combustion Electric Utility" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Fuel Combustion Electric Utility;the amount of carbon monoxide emitted from fuel combustion by electric utilities each year;the annual amount of carbon monoxide emissions from fuel combustion by electric utilities;the annual carbon monoxide emissions from fuel combustion by electric utilities;the total amount of carbon monoxide emitted from fuel combustion by electric utilities in one year" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Fuel Combustion Electric Utility;the amount of nitrogen oxides emitted from fuel combustion in electric utilities each year;the annual emissions of nitrogen oxides from fuel combustion in electric utilities;the annual quantity of nitrogen oxides emitted from fuel combustion in electric utilities;the yearly amount of nitrogen oxides emitted from fuel combustion in electric utilities" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Fuel Combustion Electric Utility;the amount of emissions from fuel combustion electric utilities that are not biogenic and are pm 10, per year;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are particulate matter 10 micrometers or less in diameter;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are particulate matter with an aerodynamic diameter of 10 micrometers or less;the annual amount of emissions from fuel combustion electric utilities that are not biogenic and are pm 10" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Fuel Combustion Electric Utility;the amount of emissions from fuel combustion by electric utilities, which are not biogenic, and are pm 25, in a year;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are fine particulate matter with a diameter of 25 micrometers or less;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are particulate matter 25;the annual amount of emissions from fuel combustion by electric utilities that are not biogenic and are pm 25" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Fuel Combustion Electric Utility;the amount of sulfur dioxide emitted by fuel combustion electric utilities each year;the annual sulfur dioxide emissions from fuel combustion electric utilities;the annual sulfur dioxide output of fuel combustion electric utilities;the total amount of sulfur dioxide emitted by fuel combustion electric utilities in one year" -Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Fuel Combustion Electric Utility, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Fuel Combustion Electric Utility;annual emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds;the amount of emissions produced each year by fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds;the annual total of emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds;the total amount of emissions from fuel combustion by electric utilities, non-biogenic emission sources, and volatile organic compounds in a year" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Fuel Combustion Industrial;annual amount of ammonia emissions from fuel combustion in industry;annual amount of ammonia emissions from industrial fuel combustion;annual amount of non-biogenic ammonia emissions from industrial fuel combustion;annual emissions from fuel combustion in industrial, non-biogenic sources, including ammonia" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Fuel Combustion Industrial;annual carbon monoxide emissions from industrial fuel combustion;annual emissions of carbon monoxide from industrial fuel combustion;annual industrial carbon monoxide emissions from fuel combustion;annual non-biogenic carbon monoxide emissions from fuel combustion in industry" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Fuel Combustion Industrial;the amount of nitrogen oxides emitted from industrial fuel combustion each year;the annual amount of nitrogen oxides emitted from fuel combustion in industrial sources;the annual amount of nitrogen oxides emitted from fuel combustion in industry;the annual amount of nitrogen oxides emitted from industrial fuel combustion" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Fuel Combustion Industrial;annual emissions from industrial fuel combustion of particulate matter with an aerodynamic diameter of 10 micrometers or less, excluding biogenic sources;annual emissions from industrial fuel combustion of pm10, excluding biogenic sources;annual emissions from industrial fuel combustion, excluding biogenic sources, of particulate matter with an aerodynamic diameter of 10 micrometers or less;annual emissions of pm10 from industrial fuel combustion, excluding biogenic sources" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Fuel Combustion Industrial;annual amount of emissions from fuel combustion in industrial, non-biogenic sources of pm 25;annual emissions from fuel combustion in industrial, non-biogenic sources of particulate matter 25;annual emissions of particulate matter 25 from fuel combustion in industrial, non-biogenic sources;annual emissions of particulate matter 25 from industrial, non-biogenic sources of fuel combustion" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Fuel Combustion Industrial;annual sulfur dioxide emissions from industrial fuel combustion;sulfur dioxide emissions from industrial fuel combustion per year;the amount of sulfur dioxide emitted from industrial fuel combustion each year;the annual amount of sulfur dioxide emitted from industrial fuel combustion sources" -Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Fuel Combustion Industrial, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Fuel Combustion Industrial;annual emissions from fuel combustion in industrial non-biogenic sources of volatile organic compounds;annual emissions of volatile organic compounds from fuel combustion in industrial non-biogenic sources;annual emissions of volatile organic compounds from fuel combustion in industrial sources;emissions of volatile organic compounds from fuel combustion in industrial non-biogenic sources, annually" -Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion,"Annual Amount Emissions Hexane, ExternalCombustion (1);Annual Emissions of Hexane in External Combustion;amount of hexane emitted from external combustion each year;annual amount of hexane emissions from external combustion;annual hexane emissions from external combustion;hexane emissions from external combustion each year" -Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Hexane, StationarySourceFuelCombustion (21);Annual Emissions of Hexane in Stationary Source Fuel Combustion;amount of hexane emitted from stationary fuel combustion in a year;annual hexane emissions from stationary fuel combustion;hexane emissions from stationary fuel combustion in a year;hexane emissions from stationary fuel combustion per year" -Annual_Amount_Emissions_Hexane_SCC_22_MobileSources,"Annual Amount Emissions Hexane, MobileSources (22);Annual Emissions of Hexane in Mobile Sources;annual amount of hexane emissions from mobile sources;annual hexane emissions from mobile sources;hexane emissions from mobile sources per year;mobile sources' annual hexane emissions" -Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Hexane, IndustrialProcesses (23);hexane emissions from industrial processes total 23 units per year;industrial processes emit 23 units of hexane each year;the amount of hexane emitted from industrial processes each year is 23;the annual amount of hexane emitted from industrial processes is 23 units" -Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization,"Annual Amount Emissions Hexane, SolventUtilization (24);Annual Emissions of Hexane in Solvent Utilization;amount of emissions from hexane solvent utilization per year;annual amount of emissions from hexane solvent utilization;annual emissions of hexane solvent utilization;emissions from hexane solvent utilization per year" -Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport,"Annual Amount Emissions Hexane, StorageAndTransport (25);Annual Emissions of Hexane in Storage and Transport;annual emissions of hexane from storage and transport: 25;hexane emissions from storage and transport total 25 annually;storage and transport of hexane result in annual emissions of 25;the amount of hexane emitted annually from storage and transport is 25" -Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Hexane, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Hexane in Waste Disposal Treatment and Recovery;annual amount of hexane emissions from waste disposal and treatment and recovery: 26;hexane emissions from waste disposal and treatment and recovery: 26;the amount of hexane emitted from waste disposal and treatment and recovery each year is 26;the amount of hexane that is emitted from waste disposal and treatment and recovery each year is 26" -Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Hexane, MiscellaneousAreaSources (28);Annual Emissions of Hexane in Miscellaneous Area Sources;amount of hexane emitted from miscellaneous area sources (28) annually;annual amount of emissions of hexane from miscellaneous area sources (28);annual emissions of hexane from miscellaneous area sources (28);hexane emissions from miscellaneous area sources (28) annually" -Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Hexane, InternalCombustionEngines (2);Annual Emissions of Hexane in Internal Combustion Engines;how much hexane is emitted by internal combustion engines annually?;how much hexane is emitted from internal combustion engines each year?;what is the annual amount of hexane emitted by internal combustion engines?;what is the yearly amount of hexane emitted by internal combustion engines?" -Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Hexane, IndustrialProcesses (3);Annual Emissions of Hexane in Industrial Processes;annual emissions of hexane from industrial processes;hexane emissions from industrial processes per year;the amount of hexane emitted from industrial processes each year;the total amount of hexane released into the air from industrial processes each year" -Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Hexane, PetroleumAndSolventEvaporation (4);Annual Emissions of Hexane in Petroleum and Solvent Evaporation;annual emissions of hexane from petroleum and solvent evaporation;the amount of hexane emitted into the atmosphere each year from petroleum and solvent evaporation;the amount of hexane that is released into the atmosphere each year from the evaporation of petroleum and solvents;the annual amount of hexane that is released into the air from petroleum and solvent evaporation" -Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal,"Annual Amount Emissions Hexane, WasteDisposal (5);Annual Emissions of Hexane in Waste Disposal" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Industrial and Other Processes;what is the annual amount of ammonia emitted from non-biogenic sources?;what is the annual amount of ammonia released from non-biogenic sources?;what is the annual emission of ammonia from industrial and other processes?;what is the annual emission of ammonia from non-biogenic sources?" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Industrial and Other Processes;annual carbon monoxide emissions from non-biogenic sources;carbon monoxide emissions from industrial and other processes, not from biological sources;carbon monoxide emissions from non-biogenic sources;non-biogenic carbon monoxide emissions" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Industrial and Other Processes;annual emissions of nitrogen oxides from non-biological sources;annual emissions of nitrogen oxides from other processes;the amount of nitrogen oxides released into the air each year from industrial and non-living sources;the annual amount of nitrogen oxides emitted from sources other than living things" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Industrial and Other Processes;the amount of particulate matter 10 micrometers or less in diameter (pm10) released into the air each year from industrial and other processes that are not caused by living things, such as factories and power plants" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Industrial and Other Processes;the amount of emissions from industrial and other processes that are not biogenic and are in the form of fine particulate matter;the amount of emissions from industrial and other processes that are not biogenic and are in the form of pm 25" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Industrial and Other Processes;annual emissions of sulfur dioxide from non-biogenic sources;non-biogenic sulfur dioxide emissions;sulfur dioxide emissions from anthropogenic sources;sulfur dioxide emissions from non-biological sources" -Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Industrial And Other Processes, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Industrial and Other Processes;annual amount of emissions from volatile organic compounds;annual emissions of volatile organic compounds" -Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion,"Annual Amount Emissions Lead, ExternalCombustion (1);Annual Emissions of Lead in External Combustion;annual lead emissions from external combustion;annual lead emissions from external combustion sources;external combustion lead emissions per year;lead emissions from external combustion per year" -Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Lead, StationarySourceFuelCombustion (21);Annual Emissions of Lead in Stationary Source Fuel Combustion;lead emissions from stationary fuel combustion in 2021;the amount of lead emitted from stationary fuel combustion in 2021;the level of lead emitted from stationary fuel combustion in 2021;the quantity of lead emitted from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Lead_SCC_22_MobileSources,"Annual Amount Emissions Lead, MobileSources (22);Annual Emissions of Lead in Mobile Sources;the amount of lead emitted by mobile sources in one year;the amount of lead that is released into the air from mobile sources each year;the annual lead emissions from mobile sources;the yearly amount of lead that is emitted into the atmosphere by mobile sources" -Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses,"Annual Amount Emissions Lead, IndustrialProcesses (23);lead emissions from industrial processes (23);the amount of lead emitted from industrial processes in a year (23);the amount of lead emitted from industrial processes in one year (23);the annual amount of lead emitted from industrial processes (23)" -Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization,"Annual Amount Emissions Lead, SolventUtilization (24);Annual Emissions of Lead in Solvent Utilization;annual lead emissions from solvent utilization;lead emissions from solvent utilization per year;the amount of lead emitted from solvent utilization each year;the annual amount of lead emitted from solvent utilization" -Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport,"Annual Amount Emissions Lead, StorageAndTransport (25);Annual Emissions of Lead in Storage and Transport;annual lead emissions from storage and transport;lead emissions from storage and transport per year;the amount of lead emitted from storage and transport each year;the total amount of lead emitted from storage and transport in a year" -Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Lead, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Lead in Waste Disposal Treatment and Recovery;lead emissions from waste disposal, treatment, and recovery;lead emissions from waste management;lead emissions from waste recovery;lead emissions from waste treatment and disposal" -Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Lead, MiscellaneousAreaSources (28);Annual Emissions of Lead in Miscellaneous Area Sources;lead emissions from area sources;lead emissions from miscellaneous area sources;lead emissions from non-point sources;lead emissions from other sources" -Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Lead, InternalCombustionEngines (2);Annual Emissions of Lead in Internal Combustion Engines;how much lead do internal combustion engines emit each year?;how much lead is emitted by internal combustion engines annually?;what is the annual amount of lead emitted by internal combustion engines?;what is the annual lead emission from internal combustion engines?" -Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,"Annual Amount Emissions Lead, IndustrialProcesses (3);Annual Emissions of Lead in Industrial Processes;lead emissions from industrial processes;the amount of lead emitted by industrial processes each year;the annual amount of lead emitted by industrial processes;the lead emissions from industrial processes each year" -Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Lead, PetroleumAndSolventEvaporation (4);Annual Emissions of Lead in Petroleum and Solvent Evaporation;amount of lead emitted from petroleum and solvent evaporation each year;annual amount of lead emitted from petroleum and solvent evaporation;annual lead emissions from petroleum and solvent evaporation;annual lead emissions from petroleum and solvent evaporation into the air" -Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal,"5 annual lead emissions and waste disposal and management;Annual Amount Emissions Lead, WasteDisposal (5);Annual Emissions of Lead in Waste Disposal" -Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion,"Annual Amount Emissions Manganese, ExternalCombustion (1);Annual Emissions of Manganese in External Combustion;how much manganese is emitted from external combustion?;how much manganese is released into the environment each year from external combustion?;what is the annual amount of manganese emitted from external combustion?;what is the total amount of manganese emitted from external combustion each year?" -Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Manganese, StationarySourceFuelCombustion (21);Annual Emissions of Manganese in Stationary Source Fuel Combustion;emissions of manganese from stationary fuel combustion in 2021;manganese emissions from stationary fuel combustion in 2021;the amount of manganese emitted from stationary fuel combustion in 2021;the annual amount of manganese emitted from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Manganese_SCC_22_MobileSources,"Annual Amount Emissions Manganese, MobileSources (22);Annual Emissions of Manganese in Mobile Sources;manganese emissions from mobile sources in a 12-month period;manganese emissions from mobile sources in a year;the amount of manganese emitted by mobile sources in a 12-month period;the amount of manganese emitted by mobile sources in a year" -Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses,"Annual Amount Emissions Manganese, IndustrialProcesses (23);annual manganese emissions from industrial processes (23);manganese emissions from industrial processes (23);the amount of manganese emitted from industrial processes in a year (23);the annual amount of manganese emitted from industrial processes (23)" -Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization,"Annual Amount Emissions Manganese, SolventUtilization (24);Annual Emissions of Manganese in Solvent Utilization;annual emissions of manganese solvent utilization;manganese solvent utilization annual emissions;manganese solvent utilization emissions per year;the amount of manganese solvent utilization emitted annually" -Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Manganese, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Manganese in Waste Disposal Treatment and Recovery;manganese emissions from waste disposal, treatment, and recovery in 2026;the amount of manganese emitted from waste disposal, treatment, and recovery in 2026;the annual amount of manganese emitted from waste disposal, treatment, and recovery in 2026;the total amount of manganese emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Manganese, MiscellaneousAreaSources (28);Annual Emissions of Manganese in Miscellaneous Area Sources;manganese emissions from area sources in 2020;manganese emissions from miscellaneous area sources in 2020;manganese emissions from non-point sources in 2020;manganese emissions from sources other than point sources in 2020" -Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Manganese, InternalCombustionEngines (2);Annual Emissions of Manganese in Internal Combustion Engines;how much manganese is emitted from internal combustion engines each year?;the amount of manganese emitted by internal combustion engines each year;the amount of manganese emitted from internal combustion engines each year;the annual emissions of manganese from internal combustion engines" -Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,"Annual Amount Emissions Manganese, IndustrialProcesses (3);Annual Emissions of Manganese in Industrial Processes;annual emissions of manganese from industrial processes;the amount of manganese that is released into the environment each year from industrial processes" -Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation,"2 the amount of manganese emitted from petroleum and solvent evaporation each year;3 the annual amount of manganese released into the air from petroleum and solvent evaporation;4 the annual amount of manganese that is released into the atmosphere from petroleum and solvent evaporation;Annual Amount Emissions Manganese, PetroleumAndSolventEvaporation (4);Annual Emissions of Manganese in Petroleum and Solvent Evaporation;how much manganese is emitted from petroleum and solvent evaporation each year?" -Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal,"Annual Amount Emissions Manganese, WasteDisposal (5);Annual Emissions of Manganese in Waste Disposal" -Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion,"Annual Amount Emissions Mercury, ExternalCombustion (1);Annual Emissions of Mercury in External Combustion;amount of mercury emitted from external combustion each year;annual amount of mercury emissions from external combustion;annual mercury emissions from external combustion;mercury emissions from external combustion, per year" -Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Mercury, StationarySourceFuelCombustion (21);Annual Emissions of Mercury in Stationary Source Fuel Combustion;annual mercury emissions from stationary fuel combustion;annual mercury emissions from stationary sources;mercury emissions from stationary fuel combustion;the amount of mercury emitted from stationary sources from fuel combustion in 2021" -Annual_Amount_Emissions_Mercury_SCC_22_MobileSources,"Annual Amount Emissions Mercury, MobileSources (22);Annual Emissions of Mercury in Mobile Sources;annual amount of mercury emissions from mobile sources (22);the amount of mercury emitted annually from mobile sources (22);the amount of mercury emitted from mobile sources each year (22);the annual amount of mercury emitted by mobile sources (22)" -Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses,"Annual Amount Emissions Mercury, IndustrialProcesses (23);industrial processes emit 23 metric tons of mercury each year;mercury emissions from industrial processes amount to 23 metric tons per year;the amount of mercury emitted from industrial processes each year is 23 metric tons;the annual amount of mercury emitted from industrial processes is 23 metric tons" -Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization,"Annual Amount Emissions Mercury, SolventUtilization (24);Annual Emissions of Mercury in Solvent Utilization;annual amount of mercury emissions from solvent utilization;annual mercury emissions from solvent use;annual mercury emissions from solvent utilization;mercury emissions from solvent utilization per year" -Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport,"Annual Amount Emissions Mercury, StorageAndTransport (25);Annual Emissions of Mercury in Storage and Transport;annual amount of mercury emissions from storage and transport;annual mercury emissions from storage and transport;mercury emissions from storage and transport annually;mercury emissions from storage and transport per year" -Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Mercury, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Mercury in Waste Disposal Treatment and Recovery;in a year, 26 units of mercury are emitted from waste disposal, treatment, and recovery;mercury emissions from waste disposal, treatment, and recovery total 26 in a year;the amount of mercury emitted from waste disposal, treatment, and recovery in a year is 26;the annual amount of mercury emitted from waste disposal, treatment, and recovery is 26" -Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Mercury, MiscellaneousAreaSources (28);Annual Emissions of Mercury in Miscellaneous Area Sources;mercury emissions from area sources;mercury emissions from miscellaneous area sources;mercury emissions from non-point sources;mercury emissions from non-point sources other than electric utilities" -Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines,"1 how much mercury do internal combustion engines emit annually?;Annual Amount Emissions Mercury, InternalCombustionEngines (2);Annual Emissions of Mercury in Internal Combustion Engines;how much mercury do internal combustion engines emit each year?;how much mercury is emitted from internal combustion engines each year?;what is the annual amount of mercury emitted from internal combustion engines?" -Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,"Annual Amount Emissions Mercury, IndustrialProcesses (3);Annual Emissions of Mercury in Industrial Processes;mercury emissions from industrial activities;mercury emissions from industrial processes;mercury released into the environment from industrial processes;the amount of mercury emitted by industrial processes each year" -Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation,"1 annual mercury emissions from petroleum and solvent evaporation;2 the amount of mercury emitted into the air each year from petroleum and solvent evaporation;3 the annual release of mercury into the atmosphere from petroleum and solvent evaporation;4 the annual amount of mercury that is released into the air from petroleum and solvent evaporation;Annual Amount Emissions Mercury, PetroleumAndSolventEvaporation (4);Annual Emissions of Mercury in Petroleum and Solvent Evaporation" -Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal,"Annual Amount Emissions Mercury, WasteDisposal (5);Annual Emissions of Mercury in Waste Disposal;annual mercury emissions from waste" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Metals Processing;the amount of emissions from metals processing, non-biogenic emission sources, and ammonia each year;the annual amount of emissions from metals processing, non-biogenic emission sources, and ammonia;the annual rate of emissions from metals processing, non-biogenic emission sources, and ammonia;the total amount of emissions from metals processing, non-biogenic emission sources, and ammonia over the course of a year" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Metals Processing;annual emissions of carbon monoxide from metals processing;annual emissions of metals processing;how much carbon monoxide is emitted from metals processing each year?;what is the annual amount of carbon monoxide emissions from metals processing?" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Metals Processing;how much metal processing emits nitrogen oxides each year;how much metal processing produces non-biogenic emissions of oxides of nitrogen each year?;the annual emissions of nitrogen oxides from metal processing;what is the annual amount of non-biogenic emissions of oxides of nitrogen from metal processing?" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Metals Processing;how much metal processing produces pm 10 emissions each year?;how much pm 10 comes from metal processing each year?;what is the annual amount of pm 10 emissions from metal processing?;what is the annual pm 10 emission rate from metal processing?" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Metals Processing;the amount of emissions from metals processing, non-biogenic emission sources, and pm 25 each year;the annual amount of emissions from metals processing, non-biogenic emission sources, and pm 25;the total amount of emissions from metals processing, non-biogenic emission sources, and pm 25 each year;the total annual amount of emissions from metals processing, non-biogenic emission sources, and pm 25" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Metals Processing;annual emissions of sulfur dioxide from non-biogenic sources in the metals processing industry;the amount of sulfur dioxide emitted from metals processing each year;the annual amount of sulfur dioxide released into the atmosphere from metals processing;the annual sulfur dioxide emissions from non-biogenic sources in the metals processing industry" -Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Metals Processing, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Metals Processing;how much metal processing, non-biogenic emission source, and volatile organic compound are emitted each year?;how much metal processing, non-biogenic emission source, and volatile organic compound emissions are there each year?;what is the annual amount of metal processing, non-biogenic emission source, and volatile organic compound emissions?;what is the total amount of metal processing, non-biogenic emission source, and volatile organic compound emissions each year?" -Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion,"Annual Amount Emissions Methane, ExternalCombustion (1);Annual Emissions of Methane in External Combustion;annual methane emissions from external combustion;how much methane is emitted from external combustion each year;methane emissions from external combustion on an annual basis;methane emissions from external combustion per year" -Annual_Amount_Emissions_Methane_SCC_22_MobileSources,"Annual Amount Emissions Methane, MobileSources (22);Annual Emissions of Methane in Mobile Sources;annual methane emissions from mobile sources;the amount of methane emitted by mobile sources annually;the amount of methane emitted by mobile sources each year;the amount of methane emitted by mobile sources in a year" -Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Methane, MiscellaneousAreaSources (28);Annual Emissions of Methane in Miscellaneous Area Sources;methane emissions from area sources;methane emissions from area sources, miscellaneous;methane emissions from miscellaneous area sources;methane emissions from miscellaneous sources" -Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines,"1 the amount of methane emitted by internal combustion engines each year;2 the annual methane emissions from internal combustion engines;Annual Amount Emissions Methane, InternalCombustionEngines (2);Annual Emissions of Methane in Internal Combustion Engines;how much methane is emitted from internal combustion engines each year?;what is the annual amount of methane emissions from internal combustion engines?" -Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Methane, IndustrialProcesses (3);Annual Emissions of Methane in Industrial Processes;methane emissions from industrial activities;methane emissions from industrial processes;methane emissions from industrial sources;methane released by industrial processes" -Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Methane, PetroleumAndSolventEvaporation (4);Annual Emissions of Methane in Petroleum and Solvent Evaporation;annual emissions of methane from petroleum and solvent evaporation;how much methane, petroleum, and solvent is emitted each year?;how much methane, petroleum, and solvent is released into the atmosphere each year?;what is the annual release of methane, petroleum, and solvent into the atmosphere?" -Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal,"Annual Amount Emissions Methane, WasteDisposal (5);Annual Emissions of Methane in Waste Disposal" -Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion,"Annual Amount Emissions Methanol, ExternalCombustion (1);Annual Emissions of Methanol in External Combustion;annual emissions of methanol from external combustion;annual methanol emissions from external combustion;methanol emissions from external combustion annually;methanol emissions from external combustion per year" -Annual_Amount_Emissions_Methanol_SCC_22_MobileSources,"Annual Amount Emissions Methanol, MobileSources (22);Annual Emissions of Methanol in Mobile Sources;methanol emissions from mobile sources (22) annually;methanol emissions from mobile sources (22) per year;the amount of methanol emitted from mobile sources (22) annually;the amount of methanol emitted from mobile sources (22) per year" -Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses,"Annual Amount Emissions Methanol, IndustrialProcesses (23);methanol emissions from industrial processes (23);methanol emissions from industrial processes: 23;the amount of methanol released into the air from industrial processes in 2023;the amount of methanol released into the atmosphere from industrial processes in 2023" -Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization,"Annual Amount Emissions Methanol, SolventUtilization (24);Annual Emissions of Methanol in Solvent Utilization;annual emissions of methanol from solvent utilization (24);methanol emissions from solvent utilization per year (24);methanol solvent utilization emissions (24);methanol solvent utilization emissions per year (24)" -Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Methanol, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Methanol in Waste Disposal Treatment and Recovery;methanol emissions from waste disposal, treatment, and recovery in 2026;the amount of methanol emitted from waste disposal, treatment, and recovery in 2026;the level of methanol emitted from waste disposal, treatment, and recovery in 2026;the quantity of methanol emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources,"Annual Amount Emissions Methanol, NaturalSources (27);Annual Emissions of Methanol in Natural Sources;methanol emissions from natural sources amount to 27 in a year;methanol emissions from natural sources are 27 in a year;methanol emissions from natural sources in a year: 27;the amount of methanol emitted from natural sources in a year is 27" -Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Methanol, MiscellaneousAreaSources (28);Annual Emissions of Methanol in Miscellaneous Area Sources;methanol emissions from area sources (28);methanol emissions from miscellaneous area sources (28);methanol emissions from non-industrial sources (28);methanol emissions from other sources (28)" -Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines,"1 methanol emissions from internal combustion engines per year;2 annual emissions of methanol from internal combustion engines;Annual Amount Emissions Methanol, InternalCombustionEngines (2);Annual Emissions of Methanol in Internal Combustion Engines;annual methanol emissions from internal combustion engines;methanol emissions from internal combustion engines per year" -Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,"Annual Amount Emissions Methanol, IndustrialProcesses (3);Annual Emissions of Methanol in Industrial Processes;annual emissions of methanol from industrial processes;methanol emissions from industrial processes;methanol emissions from industrial processes in a year;methanol emissions from industrial processes per year" -Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Methanol, PetroleumAndSolventEvaporation (4);Annual Emissions of Methanol in Petroleum and Solvent Evaporation;how much methanol, petroleum, and solvent evaporate annually?;how much methanol, petroleum, and solvent evaporate each year?;what is the annual amount of methanol, petroleum, and solvent evaporation?;what is the annual emission of methanol, petroleum, and solvent evaporation?" -Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal,"Annual Amount Emissions Methanol, WasteDisposal (5);Annual Emissions of Methanol in Waste Disposal" -Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion,"Annual Amount Emissions Naphthalene, ExternalCombustion (1);Annual Emissions of Naphthalene in External Combustion;amount of naphthalene emitted annually from external combustion;annual amount of naphthalene emissions from external combustion;annual naphthalene emissions from external combustion;naphthalene emissions from external combustion per year" -Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Naphthalene, StationarySourceFuelCombustion (21);Annual Emissions of Naphthalene in Stationary Source Fuel Combustion;amount of naphthalene emitted from stationary sources from fuel combustion (21);annual amount of naphthalene emissions from stationary sources from fuel combustion (21);naphthalene emissions from stationary sources from fuel combustion (21);naphthalene emitted from stationary sources from fuel combustion (21)" -Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources,"Annual Amount Emissions Naphthalene, MobileSources (22);Annual Emissions of Naphthalene in Mobile Sources;annual amount of naphthalene emissions from mobile sources;annual naphthalene emissions from mobile sources;naphthalene emissions from mobile sources annually;naphthalene emissions from mobile sources per year" -Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Naphthalene, IndustrialProcesses (23);naphthalene emissions from industrial processes in a year (23);the amount of naphthalene emitted from industrial processes in a year (23);the amount of naphthalene emitted from industrial processes in one year (23);the annual amount of naphthalene emitted from industrial processes (23)" -Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization,"Annual Amount Emissions Naphthalene, SolventUtilization (24);Annual Emissions of Naphthalene in Solvent Utilization;annual amount of naphthalene emissions from solvent utilization (24);annual emissions of naphthalene from solvent utilization (24);annual naphthalene emissions from solvent use (24);annual naphthalene emissions from solvent utilization (24)" -Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport,"Annual Amount Emissions Naphthalene, StorageAndTransport (25);Annual Emissions of Naphthalene in Storage and Transport;annually, 25 naphthalene emissions come from storage and transport;naphthalene emissions from storage and transport are 25 annually;storage and transport are responsible for 25 naphthalene emissions annually;the amount of naphthalene emitted annually from storage and transport is 25" -Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Naphthalene, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Naphthalene in Waste Disposal Treatment and Recovery;naphthalene emissions from waste disposal, treatment, and recovery activities totaled 26;naphthalene was emitted at a rate of 26 units per year from waste disposal, treatment, and recovery activities;the amount of naphthalene emitted from waste disposal, treatment, and recovery activities was 26;waste disposal, treatment, and recovery activities emitted 26 units of naphthalene" -Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Naphthalene, MiscellaneousAreaSources (28);Annual Emissions of Naphthalene in Miscellaneous Area Sources;annual amount of naphthalene emissions from miscellaneous area sources;annual naphthalene emissions from miscellaneous area sources;naphthalene emissions from miscellaneous area sources annually;naphthalene emissions from miscellaneous area sources per year" -Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Naphthalene, InternalCombustionEngines (2);Annual Emissions of Naphthalene in Internal Combustion Engines;here are 2 different phrasings of ""annual amount emissions naphthalene, internalcombustionengines"":;how much naphthalene is released into the atmosphere from internal combustion engines each year?;the amount of naphthalene emitted by internal combustion engines each year;what is the annual emission of naphthalene from internal combustion engines?" -Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,"1 the amount of naphthalene emitted from industrial processes each year;2 the annual emissions of naphthalene from industrial processes;3 the amount of naphthalene that is released into the environment each year from industrial processes;Annual Amount Emissions Naphthalene, IndustrialProcesses (3);Annual Emissions of Naphthalene in Industrial Processes;annual naphthalene emissions from industrial processes" -Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation,"1 the annual amount of emissions from naphthalene, petroleum, and solvent evaporation;2 the amount of naphthalene, petroleum, and solvent evaporation that is emitted each year;Annual Amount Emissions Naphthalene, PetroleumAndSolventEvaporation (4);Annual Emissions of Naphthalene in Petroleum and Solvent Evaporation;annual emissions of naphthalene, petroleum, and solvent evaporation;the amount of naphthalene, petroleum, and solvent evaporation emitted each year" -Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal,"5 the annual amount of naphthalene that is released into the air from waste disposal;Annual Amount Emissions Naphthalene, WasteDisposal (5);Annual Emissions of Naphthalene in Waste Disposal" -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Ammonia;Annual Emissions of Biogenic Ammonia From Natural Resource" -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Biogenic Carbon Monoxide From Natural Resource;the amount of carbon monoxide emitted from natural resources and biogenic emission sources each year;the amount of carbon monoxide emitted from natural resources and biogenic sources in a year;the annual amount of carbon monoxide emitted from natural resources and biogenic sources;the annual carbon monoxide emissions from natural resources and biogenic sources" -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Biogenic Oxides of Nitrogen From Natural Resource;the amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen each year;the annual amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen;the annual total of emissions from natural resources, biogenic emission sources, and oxides of nitrogen;the total amount of emissions from natural resources, biogenic emission sources, and oxides of nitrogen in a year" -Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Natural Resource, Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Biogenic Volatile Organic Compound From Natural Resource;the amount of emissions from natural resources, biogenic emission sources, and volatile organic compounds each year;the annual emissions of natural resources, biogenic emission sources, and volatile organic compounds;the sum of the emissions from natural resources, biogenic emission sources, and volatile organic compounds each year;the total amount of emissions from natural resources, biogenic emission sources, and volatile organic compounds each year" -Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion,"Annual Amount Emissions Nickel, ExternalCombustion (1);Annual Emissions of Nickel in External Combustion;annual external combustion emissions of nickel;annual nickel emissions from external combustion;nickel emissions from external combustion annually;nickel emissions from external combustion per year" -Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Nickel, StationarySourceFuelCombustion (21);Annual Emissions of Nickel in Stationary Source Fuel Combustion;annual nickel emissions from stationary sources;nickel emissions from stationary fuel combustion in 2021;the amount of nickel emitted from stationary fuel combustion in 2021;the amount of nickel emitted in 2021 from stationary fuel combustion" -Annual_Amount_Emissions_Nickel_SCC_22_MobileSources,"Annual Amount Emissions Nickel, MobileSources (22);Annual Emissions of Nickel in Mobile Sources;annual nickel emissions from mobile sources;how much nickel is emitted from mobile sources each year?;what is the amount of nickel emitted from mobile sources each year?;what is the annual amount of nickel emitted from mobile sources?" -Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses,"23 metric tons of nickel emitted from industrial processes annually;23 million grams of nickel emitted from industrial processes annually;23 tonnes of nickel emitted from industrial processes annually;23,000 kilograms of nickel emitted from industrial processes annually;Annual Amount Emissions Nickel, IndustrialProcesses (23)" -Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization,"Annual Amount Emissions Nickel, SolventUtilization (24);Annual Emissions of Nickel in Solvent Utilization;amount of nickel emitted from solvent utilization in a year (24);annual emissions of nickel from solvent utilization (24);annual nickel emissions from solvent utilization (24);nickel emissions from solvent utilization in a year (24)" -Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Nickel, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Nickel in Waste Disposal Treatment and Recovery;nickel emissions from waste disposal, treatment, and recovery;nickel emissions from waste management;nickel emissions from waste recovery;nickel emissions from waste treatment" -Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Nickel, MiscellaneousAreaSources (28);Annual Emissions of Nickel in Miscellaneous Area Sources;nickel emissions from miscellaneous sources in 2028;nickel emissions from non-point sources in 2028;nickel emissions from other sources in 2028;nickel emissions from unknown sources in 2028" -Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Nickel, InternalCombustionEngines (2);Annual Emissions of Nickel in Internal Combustion Engines;the amount of nickel emitted by internal combustion engines each year;the annual amount of nickel emissions from internal combustion engines;the annual emissions of nickel from internal combustion engines;what is the annual nickel emission from internal combustion engines?" -Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,"Annual Amount Emissions Nickel, IndustrialProcesses (3);Annual Emissions of Nickel in Industrial Processes;the amount of nickel emitted from industrial processes each year;the amount of nickel emitted from industrial processes in a year;the annual amount of nickel emitted from industrial processes;what is the annual nickel emission from industrial processes?" -Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Nickel, PetroleumAndSolventEvaporation (4);Annual Emissions of Nickel in Petroleum and Solvent Evaporation;annual emissions of nickel from petroleum and solvent evaporation;the amount of nickel, petroleum, and solvent evaporated each year;the annual total of nickel, petroleum, and solvent evaporation;the total amount of nickel, petroleum, and solvent that evaporate each year" -Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal,"Annual Amount Emissions Nickel, WasteDisposal (5);Annual Emissions of Nickel in Waste Disposal" -Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Nitrous Oxide, ExternalCombustion (1);Annual Emissions of Nitrous Oxide in External Combustion;amount of nitrous oxide emitted from external combustion per year;annual amount of nitrous oxide emissions from external combustion;annual nitrous oxide emissions from external combustion;external combustion nitrous oxide emissions per year" -Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources,"22 million metric tons of nitrous oxide are emitted by mobile sources each year;Annual Amount Emissions Nitrous Oxide, MobileSources (22);Annual Emissions of Nitrous Oxide in Mobile Sources;mobile sources are responsible for the emission of 22 million metric tons of nitrous oxide each year;mobile sources emit 22 million metric tons of nitrous oxide each year;the amount of nitrous oxide emitted by mobile sources each year is 22 million metric tons" -Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines,"2 the annual emissions of nitrous oxide from internal combustion engines;Annual Amount Emissions Nitrous Oxide, InternalCombustionEngines (2);Annual Emissions of Nitrous Oxide in Internal Combustion Engines;how many tons of nitrous oxide do internal combustion engines emit each year?;how much nitrous oxide do internal combustion engines emit annually?;what is the annual nitrous oxide emissions from internal combustion engines?" -Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Nitrous Oxide, IndustrialProcesses (3);Annual Emissions of Nitrous Oxide in Industrial Processes;the amount of nitrous oxide emitted by industrial processes each year;the amount of nitrous oxide emitted from industrial processes each year;the amount of nitrous oxide that is emitted from industrial processes each year;the annual amount of nitrous oxide that is emitted from industrial processes" -Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Nitrous Oxide, PetroleumAndSolventEvaporation (4);Annual Emissions of Nitrous Oxide in Petroleum and Solvent Evaporation;annual emissions of nitrous oxide from petroleum and solvent evaporation;annual nitrous oxide emissions from petroleum and solvent evaporation;the amount of nitrous oxide emitted annually from petroleum and solvent evaporation;the annual amount of nitrous oxide emitted from petroleum and solvent evaporation" -Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal,"Annual Amount Emissions Nitrous Oxide, WasteDisposal (5);Annual Emissions of Nitrous Oxide in Waste Disposal;what is the annual release of nitrous oxide from waste disposal?" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Non Road Engines and Vehicles;amount of ammonia emitted by non-road engines and vehicles each year;annual ammonia emissions from non-road engines and vehicles, non-biogenic sources;annual emissions of ammonia from non-road engines and vehicles;total ammonia emissions from non-road engines and vehicles each year" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Non Road Engines and Vehicles;the amount of carbon monoxide emitted by non-road engines and vehicles each year;the annual carbon monoxide contribution from non-road engines and vehicles;the annual carbon monoxide emissions from non-road engines and vehicles;the annual carbon monoxide output from non-road engines and vehicles" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Non Road Engines and Vehicles;the amount of nitrogen oxides emitted by non-road engines and vehicles each year;the annual emissions of nitrogen oxides from non-road engines and vehicles;the annual total of nitrogen oxides emitted by non-road engines and vehicles;the total amount of nitrogen oxides emitted by non-road engines and vehicles in a year" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, PM 10;Annual Emissions Non Biogenic PM10 From Non Road Engines and Vehicles;how much pm 10 is emitted by non-road engines and vehicles each year?;how much pm 10 is released into the air each year from non-road engines and vehicles?;what is the annual amount of pm 10 emissions from non-road engines and vehicles?;what is the total amount of pm 10 emitted by non-road engines and vehicles each year?" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Non Road Engines and Vehicles;annual amount of emissions: non road engines and vehicles, non biogenic emission source, pm 25" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Non Road Engines and Vehicles;how much sulfur dioxide do non-road engines and vehicles emit each year?;how much sulfur dioxide is emitted by non-road engines and vehicles each year?;what is the annual amount of sulfur dioxide emissions from non-road engines and vehicles?;what is the annual sulfur dioxide emission rate from non-road engines and vehicles?" -Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Non Road Engines And Vehicles, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Non Road Engines and Vehicles;annual emissions from non-road engines and vehicles, non-biogenic emission sources, and volatile organic compounds;the amount of emissions produced annually by non-road engines and vehicles, non-biogenic emission sources, and volatile organic compounds;what is the annual amount of emissions from non-road engines and vehicles, non-biogenic sources, and volatile organic compounds?;what is the total amount of pollution caused by non-road engines and vehicles, non-biogenic sources, and volatile organic compounds?" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia On Road Vehicles;ammonia emissions from on-road vehicles;annual amount of emissions: on road vehicles, non biogenic emission source, ammonia;how much ammonia is emitted from non-biogenic sources by on-road vehicles each year?;what is the annual amount of ammonia emitted from non-biogenic sources by on-road vehicles?" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide On Road Vehicles;annual emissions of carbon monoxide from non-biogenic sources from on-road vehicles;carbon monoxide emissions from non-biogenic sources from on-road vehicles per year;the amount of carbon monoxide emitted from non-biogenic sources from on-road vehicles each year;the annual amount of carbon monoxide emitted from non-biogenic sources from on-road vehicles" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen On Road Vehicles;how much nitrogen oxide is emitted annually by on-road vehicles?;how much nitrogen oxide is emitted from on-road vehicles each year?;what is the annual amount of nitrogen oxide emissions from on-road vehicles?;what is the annual emission rate of nitrogen oxide from on-road vehicles?" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM2.5 On Road Vehicles;annual emissions of pm 10 from non-biogenic sources on roads;annual pm 10 emissions from non-biogenic sources in road transportation;annual pm 10 emissions from non-biogenic sources on road vehicles;the amount of pm 10 (particulate matter) emitted by road vehicles each year" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, PM 2.5;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to fine particulate matter pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to particulate matter pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to pm 25 air pollution;annual amount of emissions from non-biogenic sources, such as on-road vehicles, that contribute to pm 25 pollution" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide On Road Vehicles;sulfur dioxide emissions from on-road vehicles in a given year;the amount of sulfur dioxide emitted by on-road vehicles each year;the annual amount of sulfur dioxide released into the atmosphere by on-road vehicles;the total annual emissions of sulfur dioxide from on-road vehicles" -Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: on Road Vehicles, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound On Road Vehicles;annual emissions of volatile organic compounds from on-road vehicles" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion,"Annual Amount Emissions Oxides Of Nitrogen, ExternalCombustion (1);Annual Emissions of Oxides of Nitrogen in External Combustion;annual amount of emissions of oxides of nitrogen from external combustion;annual amount of oxides of nitrogen emitted from external combustion;annual emissions of nitrogen oxides from external combustion;annual emissions of oxides of nitrogen from external combustion" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Oxides Of Nitrogen, StationarySourceFuelCombustion (21);Annual Emissions of Oxides of Nitrogen in Stationary Source Fuel Combustion;the amount of nitrogen oxides released into the atmosphere from stationary fuel combustion in 2021;the amount of nitrogen oxides that were released into the air from stationary fuel combustion in 2021;the quantity of nitrogen oxides released from stationary fuel combustion in 2021;the total amount of nitrogen oxides released from stationary fuel combustion in 2021" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,"Annual Amount Emissions Oxides Of Nitrogen, MobileSources (22);Annual Emissions of Oxides of Nitrogen in Industrial Processes;the amount of nitrogen oxides emitted by mobile sources in a year;the amount of nitrogen oxides emitted by mobile sources in one year;the annual amount of nitrogen oxides emitted by mobile sources;the annual emissions of nitrogen oxides from mobile sources" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses,"23 tons of nitrogen oxides are emitted from industrial processes each year;Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (23);industrial processes are responsible for emitting 23 tons of nitrogen oxides each year;industrial processes emit 23 tons of nitrogen oxides annually;the annual amount of nitrogen oxides emitted from industrial processes is 23 tons" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,"Annual Amount Emissions Oxides Of Nitrogen, SolventUtilization (24);Annual Emissions of Oxides of Nitrogen in Solvent Utilization;annual amount of oxides of nitrogen emitted from solvent use;annual amount of oxides of nitrogen emitted from solvent utilization;annual emissions of nitrogen oxides from solvent processing;annual emissions of nitrogen oxides from solvent treatment" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,"Annual Amount Emissions Oxides Of Nitrogen, StorageAndTransport (25);Annual Emissions of Oxides of Nitrogen in Storage and Transport;annual emissions of oxides of nitrogen from storage and transport, 25;oxides of nitrogen emissions from storage and transport per year;the annual amount of oxides of nitrogen emitted from storage and transport, as measured in 25 units;the total amount of oxides of nitrogen emitted from storage and transport in one year" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Oxides of Nitrogen in Waste Disposal Treatment and Recovery;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in 12 months;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in 365 days;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in a year;the amount of nitrogen oxides emitted from waste disposal, treatment, and recovery in one year" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources,"Annual Amount Emissions Oxides Of Nitrogen, NaturalSources (27);Annual Emissions of Oxides of Nitrogen in Natural Sources;the amount of nitrogen oxides emitted from natural sources each year is 27;the amount of nitrogen oxides emitted from natural sources in one year is 27;the annual amount of nitrogen oxides emitted from natural sources is 27;the annual emission of nitrogen oxides from natural sources is 27" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Oxides Of Nitrogen, MiscellaneousAreaSources (28);Annual Emissions of Oxides of Nitrogen in Miscellaneous Area Sources;the amount of nitrogen oxides emitted from area sources in one year;the amount of nitrogen oxides emitted from miscellaneous area sources in a year;the amount of nitrogen oxides emitted from miscellaneous area sources in one year;the amount of nitrogen oxides emitted from non-point and miscellaneous area sources in one year" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Oxides Of Nitrogen, InternalCombustionEngines (2);Annual Emissions of Oxides of Nitrogen in Internal Combustion Engines;how much nitrogen oxide is emitted annually by internal combustion engines?;how much nitrogen oxide is released into the atmosphere each year by internal combustion engines?;what is the annual discharge of nitrogen oxide from internal combustion engines?;what is the annual output of nitrogen oxides from internal combustion engines?" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,"Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (3);the annual output of oxides of nitrogen from industrial processes" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Oxides Of Nitrogen, PetroleumAndSolventEvaporation (4);Annual Emissions of Oxides of Nitrogen in Petroleum and Solvent Evaporation;annual emissions of oxides of nitrogen and petroleum and solvent evaporation;the amount of oxides of nitrogen and petroleum and solvent evaporation emitted each year;the annual amount of oxides of nitrogen and petroleum and solvent evaporation that are released into the air;the annual total of oxides of nitrogen and petroleum and solvent evaporation emissions" -Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal,"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposal (5);Annual Emissions of Oxides of Nitrogen in Waste Disposal" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, ExternalCombustion (1);Annual Emissions of Oxo (Oxochromiooxy) Chromium From External Combustion;amount of oxo(oxochromiooxy)chromium emitted from external combustion per year;annual amount of oxo(oxochromiooxy)chromium emissions from external combustion;annual oxo(oxochromiooxy)chromium emissions from external combustion;oxo(oxochromiooxy)chromium emissions from external combustion per year" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, StationarySourceFuelCombustion (21);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Stationary Source Fuel Combustion;amount of oxo(oxochromiooxy)chromium emitted from stationary fuel combustion annually;annual amount of oxo(oxochromiooxy)chromium emissions from stationary fuel combustion;annual emissions of oxo(oxochromiooxy)chromium from stationary fuel combustion;annual oxo(oxochromiooxy)chromium emissions from stationary fuel combustion" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MobileSources (22);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Mobile Sources;amount of oxo(oxochromiooxy)chromium emitted annually from mobile sources;annual amount of oxo(oxochromiooxy)chromium emissions from mobile sources;annual oxo(oxochromiooxy)chromium emissions from mobile sources;mobile sources' annual oxo(oxochromiooxy)chromium emissions" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (23);the amount of oxo(oxochromiooxy)chromium emitted from industrial processes each year;the amount of oxo(oxochromiooxy)chromium emitted from industrial processes in a year;the annual amount of oxo(oxochromiooxy)chromium emitted from industrial processes;the annual emission of oxo(oxochromiooxy)chromium from industrial processes" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, SolventUtilization (24);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Solvent Utilization;amount of oxo(oxochromiooxy)chromium emitted annually from solvent utilization;amount of oxo(oxochromiooxy)chromium emitted from solvent utilization annually;annual amount of oxo(oxochromiooxy)chromium emissions from solvent utilization;annual oxo(oxochromiooxy)chromium emissions from solvent utilization" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Waste Disposal Treatment and Recovery;amount of oxo(oxochromiooxy)chromium emitted annually from waste disposal, treatment, and recovery;amount of oxo(oxochromiooxy)chromium emitted from waste disposal, treatment, and recovery annually;annual amount of emissions of oxo(oxochromiooxy)chromium from waste disposal, treatment, and recovery;annual emissions of oxo(oxochromiooxy)chromium from waste disposal, treatment, and recovery" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MiscellaneousAreaSources (28);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Miscellaneous Area Sources;amount of oxo(oxochromiooxy)chromium emitted annually from miscellaneous area sources;annual emissions of oxo(oxochromiooxy)chromium from miscellaneous area sources;annual oxo(oxochromiooxy)chromium emissions from miscellaneous area sources;emissions of oxo(oxochromiooxy)chromium from miscellaneous area sources per year" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines,"2 the annual emissions of oxo(oxochromiooxy)chromium from internal combustion engines;Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, InternalCombustionEngines (2);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Internal Combustion Engines;the amount of oxo(oxochromiooxy)chromium emitted by internal combustion engines in a year;the annual amount of oxo(oxochromiooxy)chromium emitted by internal combustion engines;the annual emissions of oxo(oxochromiooxy)chromium from internal combustion engines" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (3);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Industrial Processes;the annual quantity of oxo(oxochromiooxy)chromium released into the environment from industrial processes" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, PetroleumAndSolventEvaporation (4);Annual Emissions of Oxo (Oxochromiooxy) Chromium From Petroleum and Solvent Evaporation;the amount of oxo(oxochromiooxy)chromium emitted annually from petroleum and solvent evaporation;the amount of oxo(oxochromiooxy)chromium emitted from petroleum and solvent evaporation each year;the annual amount of oxo(oxochromiooxy)chromium emitted from petroleum and solvent evaporation;the annual emissions of oxo(oxochromiooxy)chromium from petroleum and solvent evaporation" -Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal,"5 oxo(oxochromiooxy)chromium emissions from waste disposal per annum;5 the amount of oxo(oxochromiooxy)chromium that is released into the environment from waste disposal each year;Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposal (5);Annual Emissions of Oxo(Oxochromiooxy) Chromium From Waste Disposal" -Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion,"Annual Amount Emissions PM10, ExternalCombustion (1);Annual Emissions of PM10 in External Combustion;how much pm10 is emitted from external combustion each year?;what is the annual amount of pm10 emitted from external combustion?;what is the annual pm10 emissions from external combustion?;what is the total amount of pm10 emitted from external combustion each year?" -Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions PM10, StationarySourceFuelCombustion (21);Annual Emissions of PM10 in Stationary Source Fuel Combustion" -Annual_Amount_Emissions_PM10_SCC_22_MobileSources,"22% of pm10 emissions came from mobile sources;22% of pm10 emissions were emitted by mobile sources;Annual Amount Emissions PM10, MobileSources (22);Annual Emissions of PM10 in Mobile Sources;mobile sources emitted 22% of the annual amount of pm10 emissions;mobile sources were responsible for 22% of pm10 emissions" -Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses,"23% of pm10 emissions are caused by industrial processes;23% of pm10 emissions come from industrial processes;Annual Amount Emissions PM10, IndustrialProcesses (23);industrial processes are responsible for 23% of pm10 emissions;industrial processes contribute 23% of annual pm10 emissions" -Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,"Annual Amount Emissions PM10, SolventUtilization (24);Annual Emissions of PM10 in Solvent Utilization;annual emissions of pm10 and solvent utilization (24);annual pm10 emissions and solvent use (24);annual pm10 emissions and solvent utilization;annual pm10 emissions and solvent utilization (24)" -Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,"Annual Amount Emissions PM10, StorageAndTransport (25);Annual Emissions of PM10 in Storage and Transport;annual pm10 emissions from storage and distribution;annual pm10 emissions from storage and transfer;annual pm10 emissions from storage and transport;annual pm10 emissions from storage and transportation" -Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery,"26 units of pm10 were emitted from waste disposal, treatment, and recovery;Annual Amount Emissions PM10, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of PM10 in Waste Disposal Treatment and Recovery;the amount of pm10 emitted from waste disposal, treatment, and recovery was 26;waste disposal, treatment, and recovery emitted 26 pm10;waste disposal, treatment, and recovery emitted 26 units of pm10" -Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions PM10, MiscellaneousAreaSources (28);Annual Emissions of PM10 in Miscellaneous Area Sources;annual emissions of particulate matter 10 micrometers or less in diameter from miscellaneous area sources;annual emissions of pm10 from miscellaneous area sources;annual pm10 emissions from miscellaneous area sources;pm10 emissions from miscellaneous area sources" -Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines,"1 the amount of pm10 emissions from internal combustion engines per year;2 the annual amount of pm10 emitted by internal combustion engines;Annual Amount Emissions PM10, InternalCombustionEngines (2);Annual Emissions of PM10 in Internal Combustion Engines;annual emissions of pm10 from internal combustion engines;the amount of pm10 emitted by internal combustion engines each year" -Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,"1 annual emissions of pm10 from industrial processes;2 the amount of pm10 emitted by industrial processes each year;3 the annual amount of pm10 released into the air by industrial processes;Annual Amount Emissions PM10, IndustrialProcesses (3);Annual Emissions of PM10 in Industrial Processes;the amount of pm10 emitted by industrial processes each year" -Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions PM10, PetroleumAndSolventEvaporation (4);Annual Emissions of PM10 in Petroleum and Solvent Evaporation;the amount of pm10 emitted each year from petroleum and solvent evaporation;the annual amount of pm10 emissions from petroleum and solvent evaporation;the annual pm10 emissions from petroleum and solvent evaporation;the total amount of pm10 emitted from petroleum and solvent evaporation in one year" -Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal,"Annual Amount Emissions PM10, WasteDisposal (5);Annual Emissions of PM10 in Waste Disposal" -Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories,"Annual Amount Emissions PM10, MACTSourceCategories (6);Annual Emissions of PM10 in MACT Source Categories;the amount of pm10 emissions from mact source categories each year;the annual amount of pm10 emissions from mact source categories;the annual pm10 emissions from mact source categories;the total amount of pm10 emissions from mact source categories over the course of a year" -Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion,"Annual Amount Emissions PM2.5, ExternalCombustion (1);Annual Emissions of PM2.5 in External Combustion;amount of pm25 emitted from external combustion annually;annual amount of pm25 emissions from external combustion;annual emissions of pm25 from external combustion;annual pm25 emissions from external combustion" -Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions PM2.5, StationarySourceFuelCombustion (21);Annual Emissions of PM2.5 in Stationary Source Fuel Combustion;the sum of all pm25 emissions from stationary source fuel combustion in 2021;the total amount of pm25 released into the air from stationary source fuel combustion in 2021" -Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources,"22% of annual pm25 emissions are emitted by mobile sources;22% of annual pm25 emissions come from mobile sources;Annual Amount Emissions PM2.5, MobileSources (22);Annual Emissions of PM2.5 in Mobile Sources;mobile sources are responsible for 22% of annual pm25 emissions;mobile sources emit 22% of annual pm25 emissions" -Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses,"Annual Amount Emissions PM2.5, IndustrialProcesses (23);industrial processes are responsible for emitting 23 tons of pm25 each year;industrial processes emit 23 tons of pm25 each year;pm25 emissions from industrial processes total 23 tons per year;the amount of pm25 emitted by industrial processes each year is 23" -Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,"Annual Amount Emissions PM2.5, SolventUtilization (24);Annual Emissions of PM2.5 in Solvent Utilization;amount of pm25 emitted from solvent utilization annually;annual amount of pm25 emissions from solvent utilization;annual amount of solvent utilization pm25 emissions;solvent utilization pm25 emissions annually" -Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,"Annual Amount Emissions PM2.5, StorageAndTransport (25);Annual Emissions of PM2.5 in Storage and Transport;amount of pm25 emitted annually from storage and transport;annual amount of pm25 emissions from storage and transport;annual emissions of pm25 from storage and transport;annual pm25 emissions from storage and transport" -Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions PM2.5, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of PM2.5 in Waste Disposal Treatment and Recovery;the amount of pm25 discharged from waste disposal, treatment, and recovery in one year;the amount of pm25 released from waste disposal, treatment, and recovery in one year;the amount of pm25 released into the air from waste disposal, treatment, and recovery in a year;the amount of pm25 that comes from waste disposal, treatment, and recovery in a year" -Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions PM2.5, MiscellaneousAreaSources (28);Annual Emissions of PM2.5 in Miscellaneous Area Sources;annual pm25 emissions from area sources, miscellaneous;annual pm25 emissions from area sources, nec;annual pm25 emissions from area sources, not elsewhere classified;annual pm25 emissions from miscellaneous area sources" -Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines,"Annual Amount Emissions PM2.5, InternalCombustionEngines (2);Annual Emissions of PM2.5 in Internal Combustion Engines;annual emissions of pm25 from internal combustion engines;the amount of pm25 emissions from internal combustion engines each year;what is the annual amount of pm25 emitted by internal combustion engines?;what is the annual pm25 emissions from internal combustion engines?" -Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,"Annual Amount Emissions PM2.5, IndustrialProcesses (3);Annual Emissions of PM2.5 in Industrial Processes;sure here are 3 different ways of saying ""annual amount emissions pm25, industrial processes"":" -Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation,"1 the amount of pm25 emissions from petroleum and solvent evaporation each year;4 the amount of pm25 emitted from petroleum and solvent evaporation each year;Annual Amount Emissions PM2.5, PetroleumAndSolventEvaporation (4);Annual Emissions of PM2.5 in Petroleum and Solvent Evaporation;the amount of pm25 and petroleum and solvent evaporation emitted each year" -Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal,"Annual Amount Emissions PM2.5, WasteDisposal (5);Annual Emissions of PM2.5 in Waste Disposal" -Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories,"Annual Amount Emissions PM2.5, MACTSourceCategories (6);Annual Emissions of PM2.5 in MACT Source Categories;annual emissions of pm25 from mact source categories;the amount of pm25 emitted annually from mact source categories;the annual total of pm25 emissions from mact source categories;the total amount of pm25 emitted from mact source categories each year" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Petroleum and Related Industries;the aggregate emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the amount of emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the sum of emissions from petroleum and related industries, non-biogenic emission sources, and ammonia;the total emissions from petroleum and related industries, non-biogenic emission sources, and ammonia" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Petroleum and Related Industries;how much carbon monoxide is emitted by petroleum and related industries each year?;what is the annual amount of carbon monoxide emissions from petroleum and related industries?;what is the annual carbon monoxide emission rate from petroleum and related industries?;what is the total amount of carbon monoxide emitted by petroleum and related industries each year?" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Petroleum and Related Industries;how much oxides of nitrogen is emitted annually by petroleum and related industries;how much petroleum and related industries emit oxides of nitrogen annually;the amount of nitrogen oxides emitted by petroleum and related industries each year;the amount of nitrogen oxides released into the atmosphere each year from petroleum and related industries" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Petroleum and Related Industries;annual emissions from petroleum and related industries, non-biogenic emission sources, pm 10;annual emissions from petroleum and related industries, non-biogenic sources, particulate matter 10;annual emissions from petroleum and related industries, non-biogenic sources, particulate matter 10 microns or less;annual emissions from petroleum and related industries, non-biogenic sources, pm 10" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Petroleum and Related Industries;annual emissions of pm 25 from petroleum and related industries, non-biogenic;annual non-biogenic pm 25 emissions from petroleum and related industries;annual pm 25 emissions from petroleum and related industries, non-biogenic;petroleum and related industries' annual pm 25 emissions" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Petroleum and Related Industries;the amount of sulfur dioxide emitted by petroleum and related industries each year;the annual sulfur dioxide emissions from petroleum and related industries;the annual sulfur dioxide output from petroleum and related industries;the total amount of sulfur dioxide emitted by petroleum and related industries in a year" -Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Petroleum And Related Industries, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Petroleum and Related Industries;annual emissions of petroleum and related industries, non-biogenic emission sources, and volatile organic compounds;emissions from petroleum and related industries, non-biogenic emission sources, and volatile organic compounds;emissions from petroleum and related industries, non-biogenic emission sources, and volatile organic compounds per year;petroleum and related industries, non-biogenic emission source, volatile organic compound annual emissions" -Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion,"Annual Amount Emissions Phenol, ExternalCombustion (1);Annual Emissions of Phenol in External Combustion;annual amount of phenol emissions from external combustion;annual phenol emissions from external combustion;phenol emissions from external combustion annually;phenol emissions from external combustion per year" -Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Phenol, StationarySourceFuelCombustion (21);Annual Emissions of Phenol in Stationary Source Fuel Combustion;phenol emissions from stationary sources from fuel combustion in the united states in 2021;the amount of phenol emitted from fuel combustion in the united states in 2021 from stationary sources;the amount of phenol emitted from stationary sources from fuel combustion in the united states in 2021;the amount of phenol emitted from stationary sources in the united states in 2021 from fuel combustion" -Annual_Amount_Emissions_Phenol_SCC_22_MobileSources,"Annual Amount Emissions Phenol, MobileSources (22);Annual Emissions of Phenol in Mobile Sources;annual emissions of phenol from mobile sources;mobile sources' annual emissions of phenol;phenol emissions from mobile sources per year;the amount of phenol emitted by mobile sources each year" -Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses,"Annual Amount Emissions Phenol, IndustrialProcesses (23);industrial processes emit 23 units of phenol each year;phenol emissions from industrial processes total 23 units per year;the amount of phenol emitted from industrial processes each year is 23;the annual amount of phenol emitted from industrial processes is 23 units" -Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization,"Annual Amount Emissions Phenol, SolventUtilization (24);Annual Emissions of Phenol in Solvent Utilization;phenol is emitted from solvent utilization at an annual rate of 24;solvent utilization emits 24 units of phenol annually;the amount of phenol emitted annually from solvent utilization is 24;the annual emission of phenol from solvent utilization is 24 units" -Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery,"26 phenols are emitted from waste disposal, treatment, and recovery each year;Annual Amount Emissions Phenol, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Phenol in Waste Disposal Treatment and Recovery;phenol emissions from waste disposal, treatment, and recovery amount to 26 per year;the amount of phenol emitted from waste disposal, treatment, and recovery each year is 26;the annual amount of phenol emissions from waste disposal, treatment, and recovery is 26" -Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Phenol, MiscellaneousAreaSources (28);Annual Emissions of Phenol in Miscellaneous Area Sources;phenol emissions from miscellaneous area sources (28);phenol emissions from miscellaneous sources (28);phenol emissions from non-point sources (28);phenol emissions from other sources (28)" -Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Phenol, InternalCombustionEngines (2);Annual Emissions of Phenol in Internal Combustion Engines;annual phenol emissions from internal combustion engines;the annual emissions of phenol from internal combustion engines;the annual release of phenol into the atmosphere from internal combustion engines;the yearly amount of phenol released into the air by internal combustion engines" -Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,"Annual Amount Emissions Phenol, IndustrialProcesses (3);Annual Emissions of Phenol in Industrial Processes;annual emissions of phenol from industrial processes;the amount of phenol emitted by industrial processes each year;the amount of phenol emitted from industrial processes each year;the annual amount of phenol released into the environment from industrial processes" -Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Phenol, PetroleumAndSolventEvaporation (4);Annual Emissions of Phenol in Petroleum and Solvent Evaporation;annual emissions of phenol, petroleum, and solvent evaporation;the amount of phenol, petroleum, and solvent evaporation emitted each year;the annual rate of phenol, petroleum, and solvent evaporation;the total amount of phenol, petroleum, and solvent evaporated each year" -Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal,"Annual Amount Emissions Phenol, WasteDisposal (5);Annual Emissions of Phenol in Waste Disposal" -Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion,"Annual Amount Emissions Phosphorus, ExternalCombustion (1);Annual Emissions of Phosphorus in External Combustion;annual external combustion phosphorus emissions;annual phosphorus emissions from external combustion;phosphorus emissions from external combustion annually;phosphorus emissions from external combustion per year" -Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Phosphorus, StationarySourceFuelCombustion (21);Annual Emissions of Phosphorus in Stationary Source Fuel Combustion;the amount of phosphorus emitted from stationary fuel combustion in 2021;the amount of phosphorus that was emitted from burning fuel at stationary sources in 2021;the amount of phosphorus that was released into the air from stationary fuel combustion in 2021;the amount of phosphorus that went into the atmosphere from burning fuel at stationary sources in 2021" -Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources,"Annual Amount Emissions Phosphorus, MobileSources (22);Annual Emissions of Phosphorus in Mobile Sources;annual amount of phosphorus emissions from mobile sources;annual phosphorus emissions from mobile sources;mobile sources' annual phosphorus emissions;phosphorus emissions from mobile sources per year" -Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses,"Annual Amount Emissions Phosphorus, IndustrialProcesses (23);industrial processes emit 23 units of phosphorus;phosphorus emissions from industrial processes (23);phosphorus emissions from industrial processes amount to 23 units;phosphorus emissions from industrial processes, 23" -Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization,"Annual Amount Emissions Phosphorus, SolventUtilization (24);Annual Emissions of Phosphorus in Solvent Utilization;annual amount of phosphorus emissions from solvent utilization;annual emissions of phosphorus from solvent utilization;annual phosphorus emissions from solvent utilization;annual phosphorus emissions from the use of solvents" -Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Phosphorus, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Phosphorus in Waste Disposal Treatment and Recovery;phosphorus emissions from waste disposal, treatment, and recovery in 2026;the amount of phosphorus emitted from waste disposal, treatment, and recovery in 2026;the number of tons of phosphorus emitted from waste disposal, treatment, and recovery in 2026;the quantity of phosphorus emitted from waste disposal, treatment, and recovery in 2026" -Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Phosphorus, MiscellaneousAreaSources (28);Annual Emissions of Phosphorus in Miscellaneous Area Sources;phosphorus emissions from miscellaneous area sources (28);phosphorus emissions from miscellaneous sources (28);phosphorus emissions from nonpoint sources (28);phosphorus emissions from nonpoint sources other than agriculture (28)" -Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Phosphorus, InternalCombustionEngines (2);Annual Emissions of Phosphorus in Internal Combustion Engines;how much phosphorus is emitted annually by internal combustion engines?;how much phosphorus is emitted from internal combustion engines each year?;what is the annual amount of phosphorus emitted by internal combustion engines?;what is the annual emission of phosphorus from internal combustion engines?" -Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,"Annual Amount Emissions Phosphorus, IndustrialProcesses (3);Annual Emissions of Phosphorus in Industrial Processes;annual phosphorus emissions from industrial processes;the amount of phosphorus released into the environment each year from industrial processes;the annual output of phosphorus from industrial activities;the total amount of phosphorus released into the air, water, and soil each year from industrial processes" -Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Phosphorus, PetroleumAndSolventEvaporation (4);Annual Emissions of Phosphorus in Petroleum and Solvent Evaporation;amount of phosphorus, petroleum, and solvent evaporation emitted annually;annual amount of emissions of phosphorus, petroleum, and solvent evaporation;annual amount of phosphorus, petroleum, and solvent evaporation emitted;annual emissions of phosphorus, petroleum, and solvent evaporation" -Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal,"5 the amount of phosphorus that is released into the environment each year from waste disposal;Annual Amount Emissions Phosphorus, WasteDisposal (5);Annual Emissions of Phosphorus in Waste Disposal" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Prescribed Fire;how much ammonia is emitted from prescribed fires and non-biogenic emission sources each year?;how much ammonia is released into the atmosphere each year from prescribed fires and non-biogenic emission sources?;what is the annual amount of ammonia emissions from prescribed fires and non-biogenic emission sources?;what is the total amount of ammonia emitted from prescribed fires and non-biogenic emission sources each year?" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Prescribed Fire;how much carbon monoxide is emitted each year from prescribed fires and non-biogenic emission sources?;how much carbon monoxide is released into the atmosphere each year from prescribed fires and non-biogenic emission sources?;what is the annual amount of carbon monoxide emissions from prescribed fires and non-biogenic emission sources?;what is the total amount of carbon monoxide emitted each year from prescribed fires and non-biogenic emission sources?" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Prescribed Fire;the amount of oxides of nitrogen emitted from prescribed fires and non-biogenic emission sources each year;the annual emissions of oxides of nitrogen from prescribed fires and non-biogenic emission sources;the annual output of oxides of nitrogen from prescribed fires and non-biogenic emission sources;the total amount of oxides of nitrogen emitted from prescribed fires and non-biogenic emission sources in a year" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Prescribed Fire;annual emissions from prescribed fires, non-biogenic emission sources, and pm 10;the amount of emissions released each year from prescribed fires, non-biogenic emission sources, and pm 10;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and pm 10;the total annual emissions from prescribed fires, non-biogenic emission sources, and pm 10" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Prescribed Fire;annual emissions from prescribed fires, non-biogenic emission sources, and pm 25;the amount of emissions released into the atmosphere each year from prescribed fires, non-biogenic emission sources, and pm 25;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and pm 25;the annual total of emissions from prescribed fires, non-biogenic emission sources, and pm 25" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Prescribed Fire;how much sulfur dioxide is emitted annually from prescribed fires and non-biogenic emission sources?;what is the annual amount of sulfur dioxide emitted from prescribed fires and non-biogenic emission sources?;what is the annual amount of sulfur dioxide released into the atmosphere from prescribed fires and non-biogenic emission sources?;what is the annual sulfur dioxide emission rate from prescribed fires and non-biogenic emission sources?" -Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Prescribed Fire, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Prescribed Fire;annual emissions from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the amount of emissions released each year from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the annual amount of pollution released into the air from prescribed fires, non-biogenic emission sources, and volatile organic compounds;the annual total of emissions from prescribed fires, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion,"Annual Amount Emissions Pyrene, ExternalCombustion (1);Annual Emissions of Pyrene in External Combustion;amount of pyrene emitted annually from external combustion;annual amount of pyrene emissions from external combustion;annual pyrene emissions from external combustion;pyrene emissions from external combustion per year" -Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Pyrene, StationarySourceFuelCombustion (21);Annual Emissions of Pyrene in Stationary Source Fuel Combustion;the amount of pyrene emitted from stationary fuel combustion in 2021;the amount of pyrene that was emitted into the air in 2021 from stationary sources as a result of burning fuel;the amount of pyrene that was released into the air in 2021 from stationary sources as a result of fuel combustion;the amount of pyrene that was released into the atmosphere from stationary sources in 2021 as a result of fuel combustion" -Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources,"Annual Amount Emissions Pyrene, MobileSources (22);Annual Emissions of Pyrene in Mobile Sources;mobile sources emitted 22 tons of pyrene annually;mobile sources were responsible for 22 tons of pyrene emissions each year;pyrene emissions from mobile sources were 22 tons per year;the annual amount of pyrene emitted by mobile sources was 22 tons" -Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Pyrene, IndustrialProcesses (23);how much pyrene is emitted from industrial processes each year?;how much pyrene is released into the atmosphere from industrial processes each year?;what is the annual amount of pyrene emitted from industrial processes?;what is the total amount of pyrene emitted from industrial processes each year?" -Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Pyrene, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Pyrene in Waste Disposal Treatment and Recovery;amount of pyrene emitted annually from waste disposal, treatment, and recovery;annual amount of pyrene emissions from waste disposal, treatment, and recovery;annual pyrene emissions from waste disposal, treatment, and recovery;pyrene emissions from waste disposal, treatment, and recovery per year" -Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Pyrene, MiscellaneousAreaSources (28);Annual Emissions of Pyrene in Miscellaneous Area Sources;pyrene emissions from area sources;pyrene emissions from miscellaneous area sources;pyrene emissions from miscellaneous sources;pyrene emissions from other sources" -Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines,"2 the annual emissions of pyrene from internal combustion engines;Annual Amount Emissions Pyrene, InternalCombustionEngines (2);Annual Emissions of Pyrene in Internal Combustion Engines;annual pyrene emissions from internal combustion engines;pyrene emissions from internal combustion engines per year;the annual emissions of pyrene from internal combustion engines" -Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Pyrene, IndustrialProcesses (3);Annual Emissions of Pyrene in Industrial Processes;amount of pyrene emitted from industrial processes each year;annual amount of emissions of pyrene from industrial processes;annual emissions of pyrene from industrial processes;the amount of pyrene emitted from industrial processes each year" -Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Pyrene, PetroleumAndSolventEvaporation (4);Annual Emissions of Pyrene in Petroleum and Solvent Evaporation;amount of pyrene emitted annually from petroleum and solvent evaporation;annual amount of emissions of pyrene from petroleum and solvent evaporation;annual emissions of pyrene from petroleum and solvent evaporation;emissions of pyrene from petroleum and solvent evaporation per year" -Annual_Amount_Emissions_SCC_1_ExternalCombustion,Annual Amount Emissions ExternalCombustion (1);Annual Emissions by External Combustion;annual amount of external combustion emissions;annual emissions from external combustion;annual emissions of external combustion;annual external combustion emissions -Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion,Annual Amount Emissions StationarySourceFuelCombustion (21);Annual Emissions by Stationary Source Fuel Combustion -Annual_Amount_Emissions_SCC_22_MobileSources,Annual Amount Emissions MobileSources (22);Annual Emissions by Mobile Sources;annual emissions from mobile sources;emissions from mobile sources per year;mobile sources' annual emissions;mobile sources' yearly emissions -Annual_Amount_Emissions_SCC_23_IndustrialProcesses,23% of annual emissions came from industrial processes;23% of annual emissions were produced by industrial processes;Annual Amount Emissions IndustrialProcesses (23);industrial processes contributed 23% of annual emissions;industrial processes were responsible for 23% of annual emissions -Annual_Amount_Emissions_SCC_24_SolventUtilization,Annual Amount Emissions SolventUtilization (24);Annual Emissions by Solvent Utilization;annual amount of solvent used;annual solvent emissions;annual solvent usage;solvent utilization annual emission rate -Annual_Amount_Emissions_SCC_25_StorageAndTransport,Annual Amount Emissions StorageAndTransport (25);Annual Emissions by Storage and Transport;amount of emissions from storage and transport per year;annual amount of emissions from storage and transport;annual emissions from storage and transport;annual emissions storage and transport -Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery,Annual Amount Emissions WasteDisposalTreatmentAndRecovery (26);Annual Emissions by Waste Disposal Treatment and Recovery -Annual_Amount_Emissions_SCC_27_NaturalSources,Annual Amount Emissions NaturalSources (27);Annual Emissions by Natural Sources;annual emissions from natural sources;annual emissions from nature;emissions from natural sources each year;emissions from natural sources per year -Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources,Annual Amount Emissions MiscellaneousAreaSources (28);Annual Emissions by Miscellaneous Area Sources;annual emissions from miscellaneous sources;emissions from miscellaneous sources;emissions from miscellaneous sources per year;emissions from unknown sources -Annual_Amount_Emissions_SCC_2_InternalCombustionEngines,1 annual emissions from internal combustion engines;Annual Amount Emissions InternalCombustionEngines (2);Annual Emissions by Internal Combustion Engines;annual emissions from internal combustion engines;what are the annual emissions from internal combustion engines?;what is the annual amount of emissions from internal combustion engines? -Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual Amount Emissions IndustrialProcesses (3);Annual Emissions by Industrial Processes;the amount of emissions from industrial processes each year;the annual emissions from industrial processes;what are the annual emissions from industrial processes?;what is the annual amount of emissions from industrial processes? -Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation,Annual Amount Emissions PetroleumAndSolventEvaporation (4);Annual Emissions by Petroleum and Solvent Evaporation;annual emissions from petroleum and solvent evaporation;annual emissions of petroleum and solvents due to evaporation;annual petroleum and solvent evaporation emissions;emissions from petroleum and solvent evaporation each year -Annual_Amount_Emissions_SCC_5_WasteDisposal,Annual Amount Emissions WasteDisposal (5);Annual Emissions by Waste Disposal -Annual_Amount_Emissions_SCC_6_MACTSourceCategories,Annual Amount Emissions MACTSourceCategories (6);Annual Emissions by MACT Source Categories;annual emissions from mact source categories;annual emissions from major source categories;annual emissions from sources subject to mact;annual emissions from sources subject to maximum achievable control technology (mact) -Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion,"Annual Amount Emissions Selenium, ExternalCombustion (1);Annual Emissions of Selenium in External Combustion;annual amount of selenium emissions from external combustion;annual selenium emissions from external combustion;selenium emissions from external combustion annually;selenium emissions from external combustion per year" -Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Selenium, StationarySourceFuelCombustion (21);Annual Emissions of Selenium in Stationary Source Fuel Combustion;selenium emissions from stationary fuel combustion in 2021;selenium emissions from stationary source fuel combustion annually;the amount of selenium emitted from stationary fuel combustion in 2021;the annual amount of selenium emitted from stationary fuel combustion in 2021" -Annual_Amount_Emissions_Selenium_SCC_22_MobileSources,"Annual Amount Emissions Selenium, MobileSources (22);Annual Emissions of Selenium in Mobile Sources;selenium emissions from mobile sources in 2022;the amount of selenium emitted by mobile sources in 2022;the number of selenium emissions from mobile sources in 2022;the quantity of selenium emitted by mobile sources in 2022" -Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses,"Annual Amount Emissions Selenium, IndustrialProcesses (23);industrial processes emit 23 units of selenium each year;selenium emissions from industrial processes total 23 units per year;the amount of selenium emitted from industrial processes each year is 23;the annual amount of selenium emitted from industrial processes is 23 units" -Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization,"Annual Amount Emissions Selenium, SolventUtilization (24);Annual Emissions of Selenium in Solvent Utilization;annual amount of selenium emissions from solvent utilization (24);annual amount of selenium released into the air from solvent utilization (24);selenium emissions from solvent utilization, annual amount (24);selenium solvent utilization emissions, annual amount (24)" -Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Selenium, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Selenium in Waste Disposal Treatment and Recovery;the amount of selenium emitted from waste disposal, treatment, and recovery in a year;the amount of selenium emitted from waste disposal, treatment, and recovery in one year;the annual amount of selenium emitted from waste disposal, treatment, and recovery;the annual amount of selenium emitted from waste disposal, treatment, and recovery in one year" -Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Selenium, MiscellaneousAreaSources (28);Annual Emissions of Selenium in Miscellaneous Area Sources;selenium emissions from area sources (28);selenium emissions from miscellaneous area sources (28);selenium emissions from non-point sources (28);selenium emissions from other sources (28)" -Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Selenium, InternalCombustionEngines (2);Annual Emissions of Selenium in Internal Combustion Engines;how much selenium is released into the environment each year from internal combustion engines?;what is the annual amount of selenium emitted from internal combustion engines?;what is the annual release of selenium into the environment from internal combustion engines?;what is the annual selenium emission from internal combustion engines?" -Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,"Annual Amount Emissions Selenium, IndustrialProcesses (3);Annual Emissions of Selenium in Industrial Processes;how much selenium is released into the environment each year from industrial processes?;selenium emissions from industrial processes;the amount of selenium emitted from industrial processes each year;the annual amount of selenium emitted from industrial processes" -Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Selenium, PetroleumAndSolventEvaporation (4);Annual Emissions of Selenium in Petroleum and Solvent Evaporation;how much selenium is emitted into the air each year from petroleum and solvent evaporation?;the amount of selenium emitted from petroleum and solvent evaporation each year;the annual amount of selenium emitted from petroleum and solvent evaporation;what is the annual amount of selenium emitted into the air from petroleum and solvent evaporation?" -Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal,"Annual Amount Emissions Selenium, WasteDisposal (5);Annual Emissions of Selenium in Waste Disposal" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Solvent Utilization;the annual amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia;the annualized amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia;the total amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia in a year;the yearly amount of emissions from solvent utilization, non-biogenic emission sources, and ammonia" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Solvent Utilization;annual amount of emissions from solvent utilization;the amount of solvent utilization, non biogenic emission source, and carbon monoxide emitted each year;the annual amount of solvent utilization, non biogenic emission source, and carbon monoxide emissions;the yearly amount of solvent utilization, non biogenic emission source, and carbon monoxide released into the atmosphere" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Solvent Utilization;how much solvent utilization, non-biogenic emission source, and oxides of nitrogen are emitted annually?;what is the annual amount of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?;what is the annual level of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?;what is the annual quantity of solvent utilization, non-biogenic emission source, and oxides of nitrogen emissions?" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Solvent Utilization;the annual amount of emissions from solvent utilization, non-biogenic emission sources, and pm 10;the annual total of emissions from solvent utilization, non-biogenic emission sources, and pm 10;the sum of the emissions from solvent utilization, non-biogenic emission sources, and pm 10 over the course of a year;the total amount of emissions from solvent utilization, non-biogenic emission sources, and pm 10 in one year" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic Sulfur Dioxide From Solvent Utilization;the annual amount of emissions from solvent utilization, non-biogenic emission sources, and pm 25;the annual amount of emissions from solvents, non-biogenic sources, and particulate matter 25" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Sulfur Dioxide;annual emissions of solvent utilization, non-biogenic emission source, and sulfur dioxide;the amount of solvent utilization, non-biogenic emission source, and sulfur dioxide emitted each year;the annual sum of solvent utilization, non-biogenic emission source, and sulfur dioxide emissions;the annual total of solvent utilization, non-biogenic emission source, and sulfur dioxide emissions" -Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Solvent Utilization, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Solvent Utilization;the amount of emissions released into the atmosphere each year from the use of solvents, non-biogenic emission sources, and volatile organic compounds;the annual total of emissions from solvents, non-biogenic emission sources, and volatile organic compounds;the total amount of emissions released into the air each year from the use of solvents, non-biogenic emission sources, and volatile organic compounds;the yearly amount of emissions from solvents, non-biogenic emission sources, and volatile organic compounds" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Stationary Fuel Combustion;how much pollution is caused by stationary fuel combustion, non-biogenic emission sources, and ammonia?;how much pollution is released into the air each year from stationary fuel combustion, non-biogenic emission sources, and ammonia?;what is the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and ammonia?;what is the total amount of pollution released into the atmosphere each year from stationary fuel combustion, non-biogenic emission sources, and ammonia?" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Stationary Fuel Combustion;the annual amount of carbon monoxide emissions from stationary fuel combustion, non-biogenic emission sources;the annual amount of carbon monoxide emissions from stationary sources, not from biological sources;the annual amount of carbon monoxide emissions from stationary sources, not from living things;the annual amount of carbon monoxide emissions from stationary sources, not from plants or animals" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Stationary Fuel Combustion;amount of oxides of nitrogen emitted by stationary fuel combustion each year;annual amount of oxides of nitrogen released into the atmosphere from stationary fuel combustion;annual emissions of oxides of nitrogen from stationary fuel combustion;stationary fuel combustion emissions of non-biogenic oxides of nitrogen" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Stationary Fuel Combustion;annual amount of emissions: stationary fuel combustion, non biogenic emission source, pm 10" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Stationary Fuel Combustion;the amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25 in a year;the amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25 per year;the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25;the annual emissions from stationary fuel combustion, non-biogenic emission sources, and pm 25" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Stationary Fuel Combustion;amount of sulfur dioxide emitted from stationary fuel combustion each year;amount of sulfur dioxide released into the atmosphere from stationary fuel combustion each year;sulfur dioxide emissions from stationary fuel combustion;sulfur dioxide emissions from stationary fuel combustion per year" -Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Stationary Fuel Combustion, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Stationary Fuel Combustion;how much pollution is caused by stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds each year?;how much pollution is in the air each year from stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds?;what is the annual amount of emissions from stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution caused by stationary fuel combustion, non-biogenic emission sources, and volatile organic compounds each year?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Storage and Transport;ammonia emissions from non-biological sources, storage and transport;ammonia emissions from storage and transport, non-biogenic sources;how much ammonia is emitted from storage and transport each year?;how much ammonia is released into the atmosphere each year from storage and transport?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Storage and Transport;annual carbon monoxide emissions from storage and transport" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Storage and Transport;amount of oxides of nitrogen emitted from storage and transport of non-biogenic sources;emissions of oxides of nitrogen from storage and transport of non-biogenic sources;oxides of nitrogen emitted from storage and transport of non-biogenic sources;storage and transport of non-biogenic emission sources of oxides of nitrogen" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Storage and Transport;annual amount of emissions: storage and transport, non biogenic emission source, pm 10" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Storage and Transport;how much pollution is emitted each year from storage and transport, non-biogenic sources, and pm 25?;how much pollution is released into the air each year from storage and transport, non-biogenic sources, and pm 25?;what is the annual amount of emissions from storage and transport, non-biogenic sources, and pm 25?;what is the total amount of pollution emitted each year from storage and transport, non-biogenic sources, and pm 25?" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Storage and Transport;how much sulfur dioxide is released into the atmosphere each year from storage and transport?;storage and transport emissions of sulfur dioxide" -Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Storage And Transport, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Storage and Transport;how much non-biogenic volatile organic compound storage and transport is emitted annually?;how much storage and transport of non-biogenic volatile organic compounds is emitted each year?;the amount of storage and transport of non-biogenic volatile organic compound emitted each year;the annual amount of storage and transport of non-biogenic volatile organic compound emitted" -Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion,"Annual Amount Emissions Sulfane, ExternalCombustion (1);Annual Emissions of Sulfane in External Combustion" -Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses,"Annual Amount Emissions Sulfane, IndustrialProcesses (23)" -Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization,"Annual Amount Emissions Sulfane, SolventUtilization (24);Annual Emissions of Sulfane in Solvent Utilization;amount of sulfone solvent utilized annually;annual amount of sulfone solvent utilized;annual emissions from sulfone solvent utilization;annual emissions of sulfone solvent utilization" -Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Sulfane, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Sulfane in Waste Disposal Treatment and Recovery;sulfide emissions from waste disposal, treatment, and recovery in a year;sulfide emissions from waste disposal, treatment, and recovery per year;the amount of sulfide that is emitted from waste disposal, treatment, and recovery each year" -Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Sulfane, MiscellaneousAreaSources (28);Annual Emissions of Sulfane in Miscellaneous Area Sources;sulfane emissions from area sources in 2020;sulfane emissions from miscellaneous area sources in 2020;sulfane emissions from non-point sources in 2020;sulfane emissions from sources other than point sources in 2020" -Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Sulfane, InternalCombustionEngines (2);Annual Emissions of Sulfane in Internal Combustion Engines" -Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,"Annual Amount Emissions Sulfane, IndustrialProcesses (3);Annual Emissions of Sulfane in Industrial Processes;sulfide emissions from industrial processes annually" -Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Sulfane, PetroleumAndSolventEvaporation (4);Annual Emissions of Sulfane in Petroleum and Solvent Evaporation" -Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal,"Annual Amount Emissions Sulfane, WasteDisposal (5);Annual Emissions of Sulfane in Waste Disposal" -Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion,"Annual Amount Emissions Sulfur Dioxide, ExternalCombustion (1);Annual Emissions of Sulfur Dioxide in External Combustion;annual emissions of sulfur dioxide from external combustion;annual external combustion emissions of sulfur dioxide;annual sulfur dioxide emissions from external combustion;external combustion emissions of sulfur dioxide per year" -Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Sulfur Dioxide, StationarySourceFuelCombustion (21);Annual Emissions of Sulfur Dioxide in Stationary Source Fuel Combustion;emissions of sulfur dioxide from stationary fuel combustion (21);stationary fuel combustion emissions of sulfur dioxide (21);sulfur dioxide emissions from stationary fuel combustion (21);sulfur dioxide emissions from stationary fuel combustion in 2021" -Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources,"Annual Amount Emissions Sulfur Dioxide, MobileSources (22);Annual Emissions of Sulfur Dioxide in Mobile Sources;how much sulfur dioxide do mobile sources emit each year?;how much sulfur dioxide is emitted by mobile sources each year?;what is the annual amount of sulfur dioxide emissions from mobile sources?;what is the total amount of sulfur dioxide emitted by mobile sources each year?" -Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses,"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (23);annual sulfur dioxide emissions from industrial processes are 23 million metric tons;industrial processes are responsible for the emission of 23 million metric tons of sulfur dioxide each year;industrial processes emit 23 million metric tons of sulfur dioxide annually;sulfur dioxide emissions from industrial processes total 23 million metric tons annually" -Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization,"Annual Amount Emissions Sulfur Dioxide, SolventUtilization (24);Annual Emissions of Sulfur Dioxide in Solvent Utilization;amount of sulfur dioxide emitted from solvent utilization each year;annual sulfur dioxide emissions from solvent processing;annual sulfur dioxide emissions from solvent utilization;sulfur dioxide emissions from solvent utilization per year" -Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport,"Annual Amount Emissions Sulfur Dioxide, StorageAndTransport (25);Annual Emissions of Sulfur Dioxide in Storage and Transport;annually, 25 tons of sulfur dioxide are emitted from storage and transport;storage and transport are responsible for 25 tons of sulfur dioxide emissions annually;sulfur dioxide emissions from storage and transport amount to 25 annually;the amount of sulfur dioxide emitted annually from storage and transport is 25" -Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Sulfur Dioxide, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Sulfur Dioxide in Waste Disposal Treatment and Recovery;sulfur dioxide emissions from waste disposal treatment and recovery are 26 per year;the amount of sulfur dioxide emitted from waste disposal treatment and recovery in a year is 26;the annual amount of sulfur dioxide emitted from waste disposal treatment and recovery is 26;waste disposal treatment and recovery emits 26 units of sulfur dioxide per year" -Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Sulfur Dioxide, MiscellaneousAreaSources (28);Annual Emissions of Sulfur Dioxide in Miscellaneous Area Sources;annual emissions of sulfur dioxide from miscellaneous area sources;sulfur dioxide emissions from miscellaneous area sources in a given year;sulfur dioxide emissions from miscellaneous area sources per year;the amount of sulfur dioxide emitted from miscellaneous area sources each year" -Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines,"2 annual sulfur dioxide emissions from internal combustion engines;Annual Amount Emissions Sulfur Dioxide, InternalCombustionEngines (2);Annual Emissions of Sulfur Dioxide in Internal Combustion Engines;how much sulfur dioxide is emitted by internal combustion engines each year?;what is the annual amount of sulfur dioxide emitted by internal combustion engines?;what is the total amount of sulfur dioxide emitted by internal combustion engines each year?" -Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (3);Annual Emissions of Sulfur Dioxide in Industrial Processes;sulfur dioxide emissions from industrial processes per year;the amount of sulfur dioxide released into the atmosphere each year from industrial processes;the amount of sulfur dioxide that is released into the atmosphere each year from industrial processes;the annual emissions of sulfur dioxide from industrial processes" -Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Sulfur Dioxide, PetroleumAndSolventEvaporation (4);Annual Emissions of Sulfur Dioxide in Petroleum and Solvent Evaporation;sulfur dioxide and petroleum and solvent evaporation emissions per year;the annual amount of sulfur dioxide and petroleum and solvent evaporation emitted into the atmosphere;the annual total of sulfur dioxide and petroleum and solvent evaporation released into the air;the total amount of sulfur dioxide and petroleum and solvent evaporation released into the air each year" -Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal,"Annual Amount Emissions Sulfur Dioxide, WasteDisposal (5);Annual Emissions of Sulfur Dioxide in Waste Disposal" -Annual_Amount_Emissions_SulfurDioxide_SCC_6_MACTSourceCategories,"Annual Amount Emissions Sulfur Dioxide, MACTSourceCategories (6)" -Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion,"Annual Amount Emissions Toluene, ExternalCombustion (1);Annual Emissions of Toluene in External Combustion;annual amount of toluene emitted from external combustion;annual toluene emissions from external combustion;toluene emissions from external combustion per year;toluene emissions from external combustion, annual" -Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Toluene, StationarySourceFuelCombustion (21);Annual Emissions of Toluene in Stationary Source Fuel Combustion;the amount of toluene emitted from stationary fuel combustion sources each year;the amount of toluene emitted from stationary fuel combustion sources in 2021;the annual amount of toluene emitted from stationary fuel combustion sources;toluene emissions from stationary fuel combustion sources in 2021" -Annual_Amount_Emissions_Toluene_SCC_22_MobileSources,"Annual Amount Emissions Toluene, MobileSources (22);Annual Emissions of Toluene in Mobile Sources;the amount of toluene emitted by mobile sources each year;the amount of toluene emitted by mobile sources in a year;the annual toluene emissions from mobile sources;toluene emissions from mobile sources in a year" -Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses,"Annual Amount Emissions Toluene, IndustrialProcesses (23);the amount of toluene emitted from industrial processes in a year is 23;the annual amount of toluene emitted from industrial processes is 23;toluene emissions from industrial processes in a year: 23;toluene emissions from industrial processes total 23 in a year" -Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization,"Annual Amount Emissions Toluene, SolventUtilization (24);Annual Emissions of Toluene in Solvent Utilization;annual emissions of toluene from solvent utilization;annual toluene emissions from solvent use;annual toluene emissions from solvent-based processes;annual toluene emissions from solvent-based products" -Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport,"25 tons of toluene are emitted from storage and transport each year;Annual Amount Emissions Toluene, StorageAndTransport (25);Annual Emissions of Toluene in Storage and Transport;storage and transport are responsible for emitting 25 tons of toluene annually;the amount of toluene emitted annually from storage and transport is 25;toluene emissions from storage and transport total 25 annually" -Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Toluene, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Toluene in Waste Disposal Treatment and Recovery;amount of toluene emitted annually from waste disposal, treatment, and recovery;annual amount of toluene emissions from waste disposal, treatment, and recovery;annual toluene emissions from waste disposal, treatment, and recovery;toluene emissions from waste disposal, treatment, and recovery annually" -Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Toluene, MiscellaneousAreaSources (28);Annual Emissions of Toluene in Miscellaneous Area Sources;annual emissions of toluene from miscellaneous area sources (28);toluene emissions from area sources (28);toluene emissions from miscellaneous area sources (28);toluene emissions from non-point sources (28)" -Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Toluene, InternalCombustionEngines (2);Annual Emissions of Toluene in Internal Combustion Engines;how much toluene is released into the atmosphere from internal combustion engines each year?;the annual emissions of toluene from internal combustion engines;what is the annual amount of toluene emitted from internal combustion engines?;what is the annual toluene emission from internal combustion engines?" -Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,"Annual Amount Emissions Toluene, IndustrialProcesses (3);Annual Emissions of Toluene in Industrial Processes;the amount of toluene emitted by industrial processes each year;the amount of toluene that is released into the environment each year from industrial processes;the annual emissions of toluene from industrial processes;toluene emissions from industrial processes" -Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Toluene, PetroleumAndSolventEvaporation (4);Annual Emissions of Toluene in Petroleum and Solvent Evaporation;how much toluene, petroleum, and solvent evaporation is emitted annually?;what is the annual amount of toluene, petroleum, and solvent evaporation emissions?;what is the annual amount of toluene, petroleum, and solvent evaporation released into the environment?;what is the annual toluene, petroleum, and solvent evaporation emissions?" -Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal,"5 the annual amount of toluene that is disposed of as waste;5 toluene emissions from waste disposal yearly;Annual Amount Emissions Toluene, WasteDisposal (5);Annual Emissions of Toluene in Waste Disposal" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Transportation;how much pollution is caused by transportation, non-biogenic emission sources, and ammonia each year?;how much pollution is emitted from transportation, non-biogenic emission sources, and ammonia each year?;what is the annual amount of pollution from transportation, non-biogenic emission sources, and ammonia?;what is the total amount of pollution from transportation, non-biogenic emission sources, and ammonia each year?" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Transportation;how much carbon monoxide is emitted by transportation each year?;how much carbon monoxide is emitted by transportation sources each year?;what is the annual amount of carbon monoxide emissions from transportation?;what is the total amount of carbon monoxide emitted by transportation each year?" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Transportation;annual amount of transportation emissions of oxides of nitrogen;annual emissions of oxides of nitrogen from transportation;the amount of nitrogen oxides emitted by transportation sources each year;the annual amount of nitrogen oxides emitted by transportation" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Transportation;annual emissions from transportation and non-biogenic sources of pm 10;annual emissions of pm 10 from transportation and non-biogenic sources;annual emissions of pm 10 from transportation and non-biological sources;annual emissions of pm 10 from transportation and other sources" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Transportation;annual emissions from transportation and non-biogenic sources, including pm 25;annual emissions from transportation, non-biogenic sources, and particulate matter less than 25 micrometers in diameter;annual emissions from transportation, non-biogenic sources, and pm 25;what is the annual amount of non-biogenic pm 25 emissions from transportation?" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions of Non Biogenic Sulfur Dioxide From Transportation;how much sulfur dioxide does transportation emit each year?;how much sulfur dioxide is emitted by transportation each year?;what is the annual amount of sulfur dioxide emitted by transportation?;what is the annual sulfur dioxide emission from transportation?" -Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Transportation, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Transportation;how much pollution is emitted by transportation, non-biogenic emission sources, and volatile organic compounds each year?;how much pollution is released into the air each year by transportation, non-biogenic emission sources, and volatile organic compounds?;what is the annual amount of emissions from transportation, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution emitted by transportation, non-biogenic emission sources, and volatile organic compounds each year?" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion,"Annual Amount Emissions Volatile Organic Compound, ExternalCombustion (1);Annual Emissions of Volatile Organic Compound From External Combustion;how much volatile organic compound is released into the air each year from external combustion?;what is the annual amount of volatile organic compound emitted from external combustion?;what is the annual release of volatile organic compound into the air from external combustion?" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion,"Annual Amount Emissions Volatile Organic Compound, StationarySourceFuelCombustion (21);Annual Emissions of Volatile Organic Compound From Stationary Source Fuel Combustion;volatile organic compounds from stationary fuel combustion (21)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources,"Annual Amount Emissions Volatile Organic Compound, MobileSources (22);Annual Emissions of Volatile Organic Compound From Mobile Sources;amount of volatile organic compounds emitted from mobile sources each year;annual amount of emissions of volatile organic compounds from mobile sources;annual emissions of volatile organic compounds from mobile sources;volatile organic compounds emitted from mobile sources each year" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses,"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (23);annual emissions of volatile organic compounds from industrial processes (23);the amount of volatile organic compounds emitted from industrial processes each year (23);the annual release of volatile organic compounds from industrial processes (23);the yearly output of volatile organic compounds from industrial processes (23)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization,"Annual Amount Emissions Volatile Organic Compound, SolventUtilization (24);Annual Emissions of Volatile Organic Compound From Solvent Utilization;the amount of volatile organic compounds emitted annually from solvent use (24);the annual amount of volatile organic compounds released into the air from solvent use (24);the annual amount of volatile organic compounds that are released into the environment from solvent use (24);the annual amount of volatile organic compounds that escape into the atmosphere from solvent use (24)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport,"Annual Amount Emissions Volatile Organic Compound, StorageAndTransport (25);Annual Emissions of Volatile Organic Compound From Storage and Transport;annual amount of volatile organic compounds emitted from storage and transport (25);the annual discharge of volatile organic compounds from storage and transport (25);the annual release of volatile organic compounds from storage and transport (25)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual Amount Emissions Volatile Organic Compound, WasteDisposalTreatmentAndRecovery (26);Annual Emissions of Volatile Organic Compound From Waste Disposal Treatment and Recovery;volatile organic compounds emitted from waste disposal, treatment, and recovery (26)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources,"27 million metric tons of volatile organic compounds (vocs) are emitted from natural sources each year;Annual Amount Emissions Volatile Organic Compound, NaturalSources (27);Annual Emissions Volatile Organic Compound From Natural Sources;annual emissions of volatile organic compounds from natural sources (27);the amount of volatile organic compounds emitted from natural sources each year (27);the annual release of volatile organic compounds from natural sources (27)" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources,"Annual Amount Emissions Volatile Organic Compound, MiscellaneousAreaSources (28);Annual Emissions of Volatile Organic Compound From Miscellaneous Area Sources;the amount of volatile organic compounds emitted from miscellaneous area sources in a year;the total amount of volatile organic compounds emitted from miscellaneous area sources in a year;the yearly amount of volatile organic compounds emitted from miscellaneous area sources;volatile organic compound emissions from miscellaneous area sources" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines,"Annual Amount Emissions Volatile Organic Compound, InternalCombustionEngines (2);Annual Emissions of Volatile Organic Compound From Internal Combustion Engines" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (3);Annual Emissions of Volatile Organic Compound From Industrial Processes;the amount of volatile organic compounds emitted by industrial processes each year;the amount of volatile organic compounds emitted from industrial processes each year;the annual release of volatile organic compounds into the atmosphere from industrial processes" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation,"Annual Amount Emissions Volatile Organic Compound, PetroleumAndSolventEvaporation (4);Annual Emissions of Volatile Organic Compound From Petroleum and Solvent Evaporation;annual emissions of volatile organic compounds from petroleum and solvent evaporation;the amount of volatile organic compounds emitted into the atmosphere each year from petroleum and solvent evaporation;the annual amount of volatile organic compounds that are released into the air from petroleum and solvent evaporation;the annual release of volatile organic compounds into the air from petroleum and solvent evaporation" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal,"Annual Amount Emissions Volatile Organic Compound, WasteDisposal (5);Annual Emissions of Volatile Organic Compound From Waste Disposal" -Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories,"Annual Amount Emissions Volatile Organic Compound, MACTSourceCategories (6);Annual Emissions of Volatile Organic Compound From MACT Source Categories;annual emissions of volatile organic compounds from mact source categories;annual emissions of volatile organic compounds from sources regulated by mact;the amount of volatile organic compounds emitted annually from mact source categories;the annual total of volatile organic compounds emitted from mact source categories" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Waste Disposal and Recycling;how much ammonia is emitted from waste disposal and recycling?;how much ammonia is released into the atmosphere each year from waste disposal and recycling?;what is the annual amount of ammonia emissions from waste disposal and recycling?;what is the total amount of ammonia emitted from waste disposal and recycling each year?" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Waste Disposal and Recycling;amount of emissions from waste disposal and recycling;the amount of carbon monoxide emitted each year from recycling;the amount of carbon monoxide emitted each year from waste disposal;the amount of carbon monoxide emitted each year from waste disposal and recycling" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Waste Disposal and Recycling;annual emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen;the amount of emissions produced each year from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen;the annual total of emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen;the total amount of emissions from waste disposal and recycling, non-biogenic emission sources, and oxides of nitrogen in a year" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Waste Disposal and Recycling" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Waste Disposal and Recycling;annual amount of emissions: waste disposal and recycling, non biogenic emission source, pm 25" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions Non Biogenic Sulfur Dioxide From Waste Disposal and Recycling;the annual amount of emissions from waste disposal and recycling, as well as non-biogenic emission sources and sulfur dioxide;the annual amount of emissions from waste disposal and recycling, non-biogenic emission sources, and sulfur dioxide" -Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Waste Disposal And Recycling, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Waste Disposal and Recycling;what is the annual amount of emissions from waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds?;what is the annual emission rate of waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds?;what is the total amount of pollution produced by waste disposal and recycling, non-biogenic emission sources, and volatile organic compounds each year?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Ammonia;Annual Emissions of Non Biogenic Ammonia From Wildfire;annual amount of emissions: wildfire, non biogenic emission source, ammonia;how much wildfire, non-biogenic emissions, and ammonia are emitted each year?;what is the annual amount of emissions from wildfires, non-biogenic sources, and ammonia?;what is the total amount of emissions from wildfires, non-biogenic sources, and ammonia each year?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Carbon Monoxide;Annual Emissions of Non Biogenic Carbon Monoxide From Wildfire;annual emissions: wildfire, non biogenic emission source, carbon monoxide;emissions from wildfires;how much carbon monoxide is emitted from wildfires each year?;wildfire emissions" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Oxides of Nitrogen;Annual Emissions of Non Biogenic Oxides of Nitrogen From Wildfire;the amount of oxides of nitrogen emitted from wildfire and non-biogenic sources each year;the annual amount of oxides of nitrogen emitted from wildfire and non-biogenic sources;the total amount of oxides of nitrogen emitted from wildfire and non-biogenic sources each year;the total annual amount of oxides of nitrogen emitted from wildfire and non-biogenic sources" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, PM 10;Annual Emissions of Non Biogenic PM10 From Wildfire;annual emissions from wildfires, non-biogenic sources, and pm 10;the amount of emissions released each year from wildfires, non-biogenic sources, and pm 10;the annual amount of pollution released into the air from wildfires, non-biogenic sources, and pm 10;the annual total of emissions from wildfires, non-biogenic sources, and pm 10" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, PM 2.5;Annual Emissions of Non Biogenic PM2.5 From Wildfire;how much pollution is caused by wildfires, non-biogenic emission sources, and pm 25 each year?;how much pollution is in the air each year from wildfires, non-biogenic emission sources, and pm 25?;what is the annual amount of emissions from wildfires, non-biogenic emission sources, and pm 25?;what is the total amount of pollution in the air each year from wildfires, non-biogenic emission sources, and pm 25?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Sulfur Dioxide;Annual Emissions Non Biogenic Sulfur Dioxide From Wildfire;how many tons of sulfur dioxide are emitted from wildfires each year?;how much sulfur dioxide is emitted from wildfires each year?;what is the annual amount of sulfur dioxide emissions from wildfires?;what is the total amount of sulfur dioxide emitted from wildfires each year?" -Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual Amount of Emissions: Wildfire, Non Biogenic Emission Source, Volatile Organic Compound;Annual Emissions of Non Biogenic Volatile Organic Compound From Wildfire;how much wildfire, non-biogenic emission source, and volatile organic compound emissions are there each year?;what is the annual amount of wildfire, non-biogenic emission source, and volatile organic compound emissions?;what is the total amount of wildfire, non-biogenic emission source, and volatile organic compound emissions each year?;what is the total annual amount of wildfire, non-biogenic emission source, and volatile organic compound emissions?" -Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal,"Quality of Fossil Fuels in Electricity Generation;Quality of fossil fuels in electricity generation, ash content, bituminous coal, all sectors, annual;the quality of fossil fuels for electricity generation;the quality of fossil fuels for power generation;the quality of fossil fuels in power generation;the quality of fossil fuels used in electricity generation" -Annual_AshContent_Fuel_ForElectricityGeneration_Coal,"Annual Quality of Coal in Electricity Generation;Quality of fossil fuels in electricity generation, ash content, coal, all sectors, annual;coal quality in electricity generation from year to year;coal quality in electricity generation year on year;the quality of coal used in electricity generation each year;yearly coal quality in electricity generation" -Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Annual Ash Content In Coal For Electricity Generation In Electric Power Plants;Quality of fossil fuels in electricity generation, ash content, coal, electric power (total), annual;the amount of ash in coal used to generate electricity in power plants each year;the annual amount of ash left over after burning coal to generate electricity;the annual amount of ash produced by burning coal to generate electricity;the annual percentage of ash in coal used to generate electricity in power plants" -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal,"Annual Quality of Subbituminous Coal in All Sectors;Quality of fossil fuels in electricity generation, ash content, subbituminous coal, all sectors, annual;the annual quality of subbituminous coal in all sectors;the quality of subbituminous coal in all sectors each year;the quality of subbituminous coal in all sectors on an annual basis;the quality of subbituminous coal in all sectors over the course of a year" -Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Annual Ash Content In Subbituminous Coal For Electricity Generation by Electric Power;Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric power (total), annual;the amount of ash in subbituminous coal used for electricity generation by electric power;the level of ash in subbituminous coal used for electricity generation by electric power;the percentage of ash in subbituminous coal used for electricity generation by electric power;the proportion of ash in subbituminous coal used for electricity generation by electric power" -Annual_Average_AshContent_Coal_For_ElectricPower,"Annual Ash Content In Electric Power;Ash content, electric power (total), annual;the amount of ash produced by electric power plants each year;the amount of ash that electric power plants produce each year;the annual ash production of electric power plants;the yearly amount of ash produced by electric power plants" -Annual_Average_AshContent_Coal_For_OtherIndustrial,"Annual Ash Content For Other Industries;Ash content, other industrial, annual;ash content in other industries on an annual basis;the amount of ash produced by other industries each year;the amount of ash that is left over from other industries' processes;the amount of ash that is produced by other industries' activities" -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric power (total), annual;Total Annual Average Cost of Natural Gas for Electricity Generation" -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,"Average Cost of Fossil Fuels For Electricity Generation From Natural Gas;Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric utility, annual;how much does it cost to generate electricity from natural gas?;how much does it cost to produce electricity from natural gas?" -Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,"Average cost of fossil fuels for electricity generation (per Btu), natural gas, independent power producers (total), annual" -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric power (total), annual;Total Annual Average Cost of Petroleum Liquids for Electricity Generation;the annual cost of petroleum liquids for electricity generation;the average annual cost of petroleum liquids for electricity generation;the cost of petroleum liquids for electricity generation per year;the total cost of petroleum liquids for electricity generation per year" -Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Annual Average Cost Of Petroleum Liquids For Electricity Production;Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric utility, annual;the average annual cost of petroleum liquids for electricity production;the cost of petroleum liquids for electricity production each year;the cost of petroleum liquids for electricity production on average each year;the yearly cost of petroleum liquids for electricity production" -Annual_Average_HeatContent_Coal_For_ElectricPower,"Heat content, electric power (total), annual;Total Annual Heat Content of Electric Power;the annual heat output of electricity;the total amount of heat produced by electricity each year;the total heat content of electricity produced each year;the total heat energy produced by electricity each year" -Annual_Average_HeatContent_Coal_For_OtherIndustrial,"Annual Average of Heat Content in Coal For Other Industrial;Heat content, other industrial, annual;the average amount of heat that can be extracted from coal used in other industrial processes;the average energy content of coal used in other industrial processes;the average heat content of coal used in other industrial processes;the average heating value of coal used in other industrial processes" -Annual_Average_RetailPrice_Electricity,Annual Average Retail Price of Electricity;Annual average retail price of electricity;Average annual retail price of electricity;The average annual cost of electricity;The average cost of electricity per year;The average price of electricity per year;The average yearly cost of electricity;what is the average price of electricity per year? -Annual_Average_RetailPrice_Electricity_Commercial,"Annual Average Retail Price of Electricity in Commercial;Average retail price of electricity, commercial, annual;the annual cost of electricity for commercial businesses;the average amount of money that commercial businesses pay for electricity each year;the average price of electricity in commercial buildings per year;the yearly cost of electricity for commercial properties" -Annual_Average_RetailPrice_Electricity_Industrial,"Annual Average Retail Price of Electricity in Industries;Average retail price of electricity, industrial, annual;the average annual electricity bill for industries;the average annual retail price of electricity in industries;the average cost of electricity for industries;the average price of electricity paid by industries each year" -Annual_Average_RetailPrice_Electricity_OtherSector,"Annual Average Retail Price Electricity in Other Sectors;Average retail price of electricity, other, annual;the average amount paid for electricity in the united states;the average cost of electricity in other sectors in the united states;the average cost of electricity in the united states;the average rate for electricity in the united states" -Annual_Average_RetailPrice_Electricity_Residential,"Annual Average Retail Price of Residential Electricity;Average retail price of electricity, residential, annual;the annual average retail price of electricity for residential customers;the annual cost of residential electricity;the average price of residential electricity per year;the typical price that residential customers pay for electricity each year" -Annual_Average_SulfurContent_Coal_For_ElectricPower,"Sulfur content, electric power (total), annual;Total Annual Sulfur Content For Electric Power;annual sulfur content of electricity production;total annual sulfur content of electricity;total sulfur content of electricity generated annually;total sulfur content of electricity produced annually" -Annual_Average_SulfurContent_Coal_For_OtherIndustrial,"Annual Sulfur content in Other Industrial;Sulfur content, other industrial, annual;annual sulfur content in non-energy industries;annual sulfur content in non-power-generation industries;annual sulfur content in other industrial sectors;annual sulfur content in other industries" -Annual_Capacity_Electricity_AutoProducer,Annual Capacity of Electricity Auto Producers;Annual Capacity of Electricity: Auto Producer;the amount of electric cars that can be produced by car manufacturers in one year;the annual output of electric cars from car manufacturers;the annual production capacity of electric car manufacturers;the total number of electric cars that can be produced by car manufacturers in a year -Annual_Capacity_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,"Annual Capacity Of Electricity From Combustible Fuel In Autoproducer Electricity Power Plants;Annual Capacity of Electricity: From Combustible Fuel, Auto Producer Electricity Power Plants;sure, here are five different ways of saying ""annual capacity of electricity from combustible fuel in autoproducer electricity power plants"" without repeating any of the words:;the amount of electricity generated from combustible fuel in autoproducer electricity power plants each year;the amount of electricity produced by autoproducer electricity power plants from combustible fuel each year;the annual capacity of electricity from combustible fuel in autoproducer electricity power plants" -Annual_Capacity_Electricity_CombustibleFuel_ElectricityPowerPlants,"Annual Capacity Electricity From Combustible Fuel in Electricity Power Plants;Annual Capacity of Electricity: From Combustible Fuel, Electricity Power Plants;electricity generated by combustible fuels in power plants per year;the amount of electricity generated by combustible fuels in power plants each year;the amount of electricity generated by power plants that use combustible fuels each year;the annual output of electricity from combustible fuels in power plants" -Annual_Capacity_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Combustible Fuel in Main Activity Producer Electricity Power Plants;Annual Capacity of Electricity: From Combustible Fuel, Main Activity Producer Electricity Power Plants;the annual capacity of power plants that use fossil fuels to generate electricity;the total output of power plants that use combustible fuels in a year" -Annual_Capacity_Electricity_ElectricityPowerPlants,Annual Capacity Of Electricity Power Plants;Annual Capacity of Electricity: Electricity Power Plants;the annual capacity of electricity power plants;the annual electricity output of power plants;the annual output of electricity power plants;the annual power generation of power plants -Annual_Capacity_Electricity_MainActivityProducer,Annual Capacity of Electricity by Main Activity Producers;Annual Capacity of Electricity: Main Activity Producer;the annual capacity of electricity produced by the main activity producers;what is the annual capacity of electricity produced by the main activity producers? -Annual_Capacity_Electricity_SolarPhotovoltaic,Annual Capacity of Electricity From Solar Photovoltaic;Annual Capacity of Electricity: From Solar Photovoltaic;the total amount of power produced by solar panels in a year;what is the annual output of solar photovoltaics? -Annual_Capacity_Electricity_SolarPhotovoltaic_MainActivityProducer,"Annual Capacity of Electricity by Solar Photovoltaic For Main Activity Producer;Annual Capacity of Electricity: From Solar Photovoltaic, Main Activity Producer;annual electricity capacity from solar photovoltaic by main activity producer;annual solar photovoltaic capacity by main activity producer;annual solar photovoltaic electricity capacity by main activity producer;solar photovoltaic capacity by main activity producer, annual" -Annual_Capacity_Electricity_Solar_AutoProducerElectricityPowerPlants,"Annual Capacity of Electricity From Solar Energy By Autoproducer Electricity Power Plants;Annual Capacity of Electricity: From Solar, Auto Producer Electricity Power Plants;the amount of electricity generated by solar power plants owned by autoproducers each year;the annual capacity of solar energy from autoproducer electricity power plants;the annual output of solar power plants owned by autoproducers;the total amount of electricity generated by solar power plants owned by autoproducers in a year" -Annual_Capacity_Electricity_Solar_ElectricityPowerPlants,"Annual Capacity of Electric Power Plants From Solar;Annual Capacity of Electricity: From Solar, Electricity Power Plants;the amount of electricity generated by solar power plants each year;the amount of electricity that solar power plants generate each year;the total output of solar power plants in a year" -Annual_Capacity_Electricity_Solar_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity From Solar Main Activity Producer Electricity Power Plants;Annual Capacity of Electricity: From Solar, Main Activity Producer Electricity Power Plants" -Annual_Capacity_Electricity_Water_AutoProducerElectricityPowerPlants,"Annual Capacity of EIA_Water by Auto Producer Electricity Power Plants;Annual Capacity of Electricity: From EIA_Water, Auto Producer Electricity Power Plants;the amount of electricity produced by water-powered auto producer plants each year;the amount of electricity produced by water-powered auto producer plants in a year" -Annual_Capacity_Electricity_Water_ElectricityPowerPlants,"Annual Capacity of Electricity From Water by Electricity Power Plants;Annual Capacity of Electricity: From EIA_Water, Electricity Power Plants;the amount of electricity generated by hydropower plants each year;the amount of electricity generated by water power plants each year;the total amount of electricity produced by hydropower plants in a year;the total amount of electricity produced by water power in a year" -Annual_Capacity_Electricity_Water_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity From Water by Main Activity Producer Electricity Power Plants;Annual Capacity of Electricity: From EIA_Water, Main Activity Producer Electricity Power Plants;annual electricity production from water by main activity producer;annual electricity production from water by main activity producing power plants;annual water power production by main activity producer;what is the annual capacity of electricity from water by main activity producer electricity power plants?" -Annual_Capacity_Electricity_Wind_ElectricityPowerPlants,"Annual Capacity of Electricity From Wind In Electricity Power Plants;Annual Capacity of Electricity: From Wind, Electricity Power Plants;the amount of electricity generated by wind turbines in power plants each year;the annual output of wind power plants;what is the annual capacity of wind power plants?;what is the total amount of electricity generated by wind power plants in a year?" -Annual_Capacity_Electricity_Wind_MainActivityProducerElectricityPowerPlants,"Annual Capacity of Electricity From Wind in Main Activity Producer Electricity Power Plants;Annual Capacity of Electricity: From Wind, Main Activity Producer Electricity Power Plants;annual wind power capacity in electricity power plants that are the main activity of their producers;annual wind power capacity in main activity producer electricity power plants;what is the annual capacity of wind power generation by the main producers of electricity?;what is the annual capacity of wind power in main activity producer electricity power plants?" -Annual_Capacity_Fuel_CrudeOil_Refinery,"Annual Capacity of Crude Oil in Refinery;Annual Capacity of Fuel: Crude Oil, Refinery;how much crude oil can a refinery process in a year?;the amount of crude oil that a refinery can process in a year;the annual crude oil processing capacity of a refinery;the annual processing capacity of a refinery for crude oil" -Annual_Consumption_Coal_ElectricPower,"Annual Consumption of Electric Power;Total consumption, electric power (total), annual;the annual usage of electric power" -Annual_Consumption_Coal_ElectricUtility,"Total Annual Consumption of Electric Utility;Total consumption, electric utility, annual;annual electricity consumption of an electric utility;electric utility's annual consumption;how much electricity does an electric utility use in a year;the annual electricity consumption of an electric utility" -Annual_Consumption_Coal_OtherIndustrial,"Annual Consumption of Coal in Other industrial;Total consumption, other industrial, annual;coal consumption in other industries;coal use in other industries;how much coal is used by other industries;other industrial coal consumption" -Annual_Consumption_Electricity,Amount of electricity consumed in a year;Annual Consumption of Electricity;Annual Electricity Consumption;Annual electricity consumption;The amount of electricity used each year;The annual electricity consumption;The total amount of electricity used in a year;The yearly energy usage;amount of electricity consumed in a year;annual electricity use;the amount of electricity used each year;the amount of electricity used in a year;the amount of electricity used over the course of a year;the annual consumption of electricity;the annual usage of electricity;the total amount of electricity consumed in a year;the yearly electricity consumption -Annual_Consumption_Electricity_Agriculture,Annual Consumption of Electricity for Agriculture;Annual Consumption of Electricity: for Agriculture;the amount of electricity used in agriculture each year;the annual electricity consumption of the agricultural sector;the annual electricity usage of farms and other agricultural businesses;the total amount of electricity used in agriculture over the course of a year -Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry,Annual Consumption of Electricity for Chemical Petrochemical Industries;Annual Consumption of Electricity: for Chemical Petrochemical Industry;the amount of electricity used by the chemical and petrochemical industries each year;the annual electricity consumption of the chemical and petrochemical industries;the total amount of electricity used by the chemical and petrochemical industries in a year;the yearly amount of electricity used by the chemical and petrochemical industries -Annual_Consumption_Electricity_CoalMines_EnergyIndustryOwnUse,"Annual Consumption of Electricity In Coal Mines;Annual Consumption of Electricity: for Coal Mines, Energy Industry Own Use;how much electricity do coal mines consume annually?;how much electricity do coal mines use each year?;what is the amount of electricity used by coal mines each year?;what is the annual electricity consumption of coal mines?" -Annual_Consumption_Electricity_CommerceAndPublicServices,Annual Consumption of Electricity for Commerce And Public Services;Annual Consumption of Electricity: for Commerce And Public Services;annual electricity consumption for commerce and public services;commerce and public services annual electricity consumption;electricity consumed by commerce and public services annually;the amount of electricity used by commerce and public services each year -Annual_Consumption_Electricity_ConstructionIndustry,Annual Consumption for Construction Industry;Annual Consumption of Electricity: for Construction Industry;the amount of construction materials that are used up each year;the amount of materials used in the construction industry each year;the annual consumption of construction materials;the annual cost of construction materials -Annual_Consumption_Electricity_ElectricityGeneration_EnergyIndustryOwnUse,"Annual Consumption Of Electricity In Electricity Generation Industries;Annual Consumption of Electricity: for Electricity Generation, Energy Industry Own Use;electricity consumption in electricity generation industries per year;electricity used by electricity generation industries annually;what is the annual electricity consumption of the electricity generation industry?;what is the annual electricity usage of the electricity generation industry?" -Annual_Consumption_Electricity_EnergyIndustry_EnergyIndustryOwnUse,"Annual Consumption Of Electricity For Industrial Use;Annual Consumption of Electricity: for Energy Industry, Energy Industry Own Use;annual industrial electricity consumption;the annual industrial electricity consumption;the yearly industrial electricity usage" -Annual_Consumption_Electricity_FoodAndTobaccoIndustry,Annual Consumption For Food And Tobacco Industries;Annual Consumption of Electricity: for Food And Tobacco Industry;the amount of food and tobacco that is consumed each year;the annual rate at which food and tobacco are used;the yearly amount of food and tobacco that is used up;the yearly consumption of food and tobacco -Annual_Consumption_Electricity_Households,Annual Consumption of Electricity in Households;Annual Consumption of Electricity: for Households;annual electricity consumption by households;electricity used by households per year;how much electricity do households consume annually;how much electricity do households use in a year -Annual_Consumption_Electricity_Industry_EnergyIndustryOwnUse,"Annual Consumption of Electricity in Industries For Energy Industry Own Use;Annual Consumption of Electricity: for Industry, Energy Industry Own Use;annual electricity consumption by industries for their own use;the annual amount of electricity used by industries for their own purposes;the annual consumption of electricity by industries for their own use;the yearly amount of electricity used by industries for their own purposes" -Annual_Consumption_Electricity_IronSteel,Annual Consumption of Electricity By Iron Steel Industries;Annual Consumption of Electricity: for Iron Steel;annual electricity consumption of iron and steel industries;electricity consumed by iron and steel industries annually;iron and steel industries' annual electricity consumption;the amount of electricity used by iron and steel industries each year -Annual_Consumption_Electricity_MachineryIndustry,Annual Consumption of Electricity For Machinery Industries;Annual Consumption of Electricity: for Machinery Industry;electricity consumption by machinery industries;machinery industries' electricity usage;the amount of electricity that machinery industries consume;the amount of electricity used by machinery industries -Annual_Consumption_Electricity_Manufacturing,Annual Consumption of Electricity For Manufacturing;Annual Consumption of Electricity: for Manufacturing;annual electricity consumption in manufacturing;annual manufacturing electricity consumption;electricity used in manufacturing each year;manufacturing's annual electricity use -Annual_Consumption_Electricity_MiningAndQuarryingIndustry,Annual Consumption of Electricity in The Mining And Quarrying Industry;Annual Consumption of Electricity: for Mining And Quarrying Industry;electricity used by the mining and quarrying industry each year;the amount of electricity used by the mining and quarrying industry in a year;the annual electricity consumption of the mining and quarrying industry;the yearly amount of electricity used by the mining and quarrying industry -Annual_Consumption_Electricity_NonFerrousMetalsIndustry,Annual Consumption of Electricity in Non-Ferrous Metals Industries;Annual Consumption of Electricity: for Non Ferrous Metals Industry;how much electricity do non-ferrous metals industries use annually?;how much electricity do non-ferrous metals industries use each year?;what is the amount of electricity used by non-ferrous metals industries each year?;what is the annual electricity consumption of non-ferrous metals industries? -Annual_Consumption_Electricity_NonMetallicMineralsIndustry,Annual Consumption of Electricity By The Non-Metallic Minerals Industry;Annual Consumption of Electricity: for Non Metallic Minerals Industry;electricity consumption by the non-metallic minerals industry;how much electricity does the non-metallic minerals industry use?;the annual electricity consumption of the non-metallic minerals industry;the non-metallic minerals industry's electricity usage -Annual_Consumption_Electricity_OilGasExtraction_EnergyIndustryOwnUse,"Annual Consumption Of Electricity in Oil Gas Extraction;Annual Consumption of Electricity: for Oil Gas Extraction, Energy Industry Own Use;annual electricity consumption in oil and gas extraction;electricity used in oil and gas extraction each year;how much electricity is used in oil and gas extraction each year;the amount of electricity used in oil and gas extraction each year" -Annual_Consumption_Electricity_OilRefineries_EnergyIndustryOwnUse,"Annual Consumption of Electricity: for Oil Refineries, Energy Industry Own Use;Annual Consumption of Oil Refineries in Energy Industry Own Use;how much oil do oil refineries use in their own operations?;the amount of oil that oil refineries use in their own operations;what is the annual amount of oil that oil refineries use for their own use?;what is the annual consumption of oil refineries in the energy industry for their own use?" -Annual_Consumption_Electricity_OtherIndustry,2 what is the annual electricity consumption of other industries?;Annual Consumption of Electricity By Other Industries;Annual Consumption of Electricity: for UN_Other Industry;how much electricity do other industries consume annually?;what is the annual electricity consumption of other industries?;what is the annual electricity usage of other industries? -Annual_Consumption_Electricity_OtherManufacturingIndustry,Annual Consumption Of Electricity In Manufacturing Industries;Annual Consumption of Electricity: for UN_Other Manufacturing Industry;how much electricity do manufacturing industries consume annually?;what is the amount of electricity used by manufacturing industries each year?;what is the annual electricity consumption of manufacturing industries?;what is the annual electricity usage of manufacturing industries? -Annual_Consumption_Electricity_OtherSector,Annual Consumption of Electricity In Other Sectors;Annual Consumption of Electricity: for UN_Other Sector;annual electricity use in other sectors;electricity consumption in other sectors each year;the amount of electricity used in other sectors each year;the annual amount of electricity used in other sectors -Annual_Consumption_Electricity_OtherTransport,Annual Consumption of Electricity in UN Other Transport;Annual Consumption of Electricity: for UN_Other Transport;how much electricity does un other transport use each year?;how much electricity is consumed by un other transport each year?;what is the amount of electricity used by un other transport each year?;what is the annual electricity consumption of un other transport? -Annual_Consumption_Electricity_PaperPulpPrintIndustry,Annual Consumption of Electricity: for Paper Pulp Print Industry;Annual Electricity Consumption By Paper Pulp Print Industries;how much electricity do paper pulp and print industries use each year?;how much electricity do the paper pulp and print industries consume annually?;what is the amount of electricity used by the paper pulp and print industries each year?;what is the annual electricity consumption of the paper pulp and print industries? -Annual_Consumption_Electricity_RailTransport,Annual Consumption of Electricity In Rail Transport;Annual Consumption of Electricity: for Rail Transport;how much electricity do trains use each year?;how much electricity is used by rail transport each year?;what is the amount of electricity used by rail transport each year?;what is the annual electricity consumption of rail transport? -Annual_Consumption_Electricity_TextileAndLeatherIndustry,Annual Consumption Of Electricity By Textile And Leather Industries;Annual Consumption of Electricity: for Textile And Leather Industry;how much electricity do textile and leather industries use each year?;how much electricity do the textile and leather industries use in a year?;what is the amount of electricity used by the textile and leather industries each year?;what is the annual electricity consumption of the textile and leather industries? -Annual_Consumption_Electricity_TransportEquipmentIndustry,Annual Consumption of Electricity in Transport Equipment Industries;Annual Consumption of Electricity: for Transport Equipment Industry;how much electricity do transport equipment industries use each year?;how much electricity do transport equipment industries use in a year?;what is the annual electricity consumption of transport equipment industries?;what is the total amount of electricity used by transport equipment industries each year? -Annual_Consumption_Electricity_TransportIndustry,Annual Consumption of Electricity in Transport Industries;Annual Consumption of Electricity: for Transport Industry;the amount of electricity used by the transportation industry each year;the annual electricity consumption of the transportation sector;the total amount of electricity used by transportation companies each year;the yearly electricity usage of the transportation industry -Annual_Consumption_Electricity_UnspecifiedSector,Annual Consumption Of Electricity in UN_Unspecified Sectors;Annual Consumption of Electricity: for UN_Unspecified Sector;annual electricity use in un_unspecified sectors;electricity consumption in un_unspecified sectors per year;the amount of electricity used in un_unspecified sectors each year;the annual electricity consumption of un_unspecified sectors -Annual_Consumption_Electricity_WoodAndWoodProductsIndustry,Annual Consumption For Wood And Wood Products Industries;Annual Consumption of Electricity: for Wood And Wood Products Industry;the amount of wood and wood products used each year by industries;the annual rate at which industries use wood and wood products;the yearly amount of wood and wood products that industries use;the yearly consumption of wood and wood products by industries -Annual_Consumption_Energy_CommerceAndPublicServices_Heat,"Annual Consumption of Energy: Commerce And Public Services, Heat;Annual Consumption of Heat In Commerce And Public Services;the amount of heat used in commerce and public services each year;the annual amount of heat consumed by businesses and government agencies;the annual heat consumption of businesses and government organizations;the total amount of heat used in commercial and public buildings each year" -Annual_Consumption_Energy_ElectricityGeneration_Heat_EnergyIndustryOwnUse,"Annual Consumption of Energy: Electricity Generation, Heat, Energy Industry Own Use;Annual Consumption of Heat for Own Use in Electricity Generation Industries;the amount of heat used by electricity generation industries each year;the amount of heat used by electricity generation industries in a year;the annual consumption of heat by electricity generation industries;the annual use of heat by electricity generation industries" -Annual_Consumption_Energy_Geothermal,Annual Consumption of Energy: Geothermal;Annual Consumption of Geothermal -Annual_Consumption_Energy_Heat,Annual Consumption of Energy in Heat;Annual Consumption of Energy: Heat;the amount of energy used for heating each year;the annual amount of energy used to heat things;the annual energy usage for heating;the yearly consumption of energy for heating -Annual_Consumption_Energy_Households_Heat,"Annual Consumption of Energy: Households, Heat;Annual Consumption of Heat in Households;how much heat do households use each year?;how much heat do households use in a year?;how much heat is consumed by households annually?;what is the annual heat consumption of households?" -Annual_Consumption_Energy_Households_SolarThermal,"Annual Consumption of Energy: Households, Solar Thermal;Annual Consumption of Solar Thermal in Households;how much solar thermal energy do households use each year?;how much solar thermal energy do households use in a year?;what is the annual amount of solar thermal energy used by households?;what is the annual consumption of solar thermal energy in households?" -Annual_Consumption_Energy_Manufacturing_Heat,"Annual Consumption of Energy: Manufacturing, Heat;Annual Consumption of Heat in Manufacturing Industries;the amount of heat that manufacturing industries use each year;the amount of heat used by manufacturing industries each year;the annual amount of heat consumed by manufacturing industries;the annual heat consumption of manufacturing industries" -Annual_Consumption_Energy_OilRefineries_Refinery_FuelTransformation,"Annual Consumption of Energy: Oil Refineries, Refinery, Fuel Transformation;Annual Consumption of Fuel Transformation in Oil Refineries, Refinery;annual fuel transformation in oil refineries;how much fuel is transformed in oil refineries each year?;how much fuel is transformed into other products in oil refineries each year?;what is the annual amount of fuel that is transformed into other products in oil refineries?" -Annual_Consumption_Energy_OtherIndustry_Heat,"Annual Consumption of Energy: UN_Other Industry, Heat;Annual Consumption of Heat in Other Industries;annual heat consumption in other industries;heat consumption in other industries each year;the amount of heat consumed by other industries each year;the amount of heat consumed by other industries in a year" -Annual_Consumption_Energy_OtherManufacturingIndustry_Heat,"Annual Consumption of Energy: UN_Other Manufacturing Industry, Heat;Annual Consumption of Heat in Other Manufacturing Industries;annual heat usage in other manufacturing industries;heat consumption in other manufacturing industries per year;the amount of heat used in other manufacturing industries each year;the annual amount of heat consumed by other manufacturing industries" -Annual_Consumption_Energy_OtherSector_Heat,"Annual Consumption Of Heat In Other Sectors;Annual Consumption of Energy: UN_Other Sector, Heat;Annual Consumption of Heat in Other Sectors;annual heat consumption in other sectors;heat consumption in other sectors per year;sure here are five different ways to say ""annual consumption of heat in other sectors"":;the amount of heat consumed in other sectors each year" -Annual_Consumption_Energy_OtherSector_SolarThermal,"Annual Consumption Of Solar Thermal Energy BY Other Sectors;Annual Consumption of Energy: UN_Other Sector, Solar Thermal;other sectors' annual consumption of solar thermal energy;the amount of solar thermal energy consumed by other sectors each year;the annual consumption of solar thermal energy by other sectors;the annual use of solar thermal energy by other sectors" -Annual_Consumption_Energy_SolarThermal,Annual Consumption Of Solar Thermal Energy;Annual Consumption of Energy: Solar Thermal;the amount of solar thermal energy used each year;the annual demand for solar thermal energy;the annual usage of solar thermal energy;the yearly consumption of solar thermal energy -Annual_Consumption_Fuel_Agriculture_DieselOil,"Annual Consumption of Diesel Oil in Agriculture;Annual Consumption of Fuel: Agriculture, Diesel Oil;how much diesel fuel is used in agriculture each year?;how much diesel oil is used in agriculture annually?;what is the amount of diesel oil used in agriculture each year?;what is the annual consumption of diesel oil in agriculture?" -Annual_Consumption_Fuel_Agriculture_FuelOil,"Annual Consumption Of Fuel Oil In Agriculture;Annual Consumption of Fuel: Agriculture, Fuel Oil;the amount of fuel oil used in agriculture each year;the annual fuel oil usage in agriculture;the annual rate of fuel oil consumption in agriculture;the yearly amount of fuel oil used in farming" -Annual_Consumption_Fuel_Agriculture_Fuelwood,"Annual Consumption of Fuel Wood In Agriculture;Annual Consumption of Fuel: Agriculture, Fuelwood;the amount of wood used for agricultural purposes in a year;the amount of wood used for fuel in agriculture each year;the annual amount of wood burned for fuel in agriculture;the yearly consumption of wood for agricultural use" -Annual_Consumption_Fuel_Agriculture_Kerosene,"Annual Consumption of Fuel: Agriculture, EIA_Kerosene;Annual Consumption of Kerosene in Agriculture;kerosene consumption in agriculture each year;the amount of kerosene used in agriculture each year;the annual amount of kerosene used in agriculture;the yearly consumption of kerosene in agriculture" -Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas In Agriculture;Annual Consumption of Fuel: Agriculture, Liquefied Petroleum Gas;the amount of liquefied petroleum gas used in agriculture each year;the annual consumption of liquefied petroleum gas by the agricultural sector;the annual rate of liquefied petroleum gas consumption in agriculture;the yearly use of liquefied petroleum gas in agriculture" -Annual_Consumption_Fuel_Agriculture_MotorGasoline,"1 annual gasoline consumption in agriculture;2 the amount of gasoline used in agriculture each year;3 the yearly gasoline usage in agriculture;4 the annual gasoline consumption in the agricultural sector;Annual Consumption of Fuel: Agriculture, Motor Gasoline;Annual Consumption of Motor Gasoline In Agriculture" -Annual_Consumption_Fuel_Agriculture_NaturalGas,"Annual Consumption of Fuel: Agriculture, Natural Gas;Annual Consumption of Natural Gas by Agriculture;how much natural gas does agriculture use annually?;how much natural gas does agriculture use each year?;what is the amount of natural gas used by agriculture each year?;what is the annual consumption of natural gas by agriculture?" -Annual_Consumption_Fuel_AnthraciteCoal,Annual Consumption of Anthracite Coal;Annual Consumption of Fuel: EIA_Anthracite Coal;how much anthracite coal is consumed annually?;how much anthracite coal is used each year?;what is the amount of anthracite coal consumed each year?;what is the annual consumption of anthracite coal? -Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Combined Heat Power Plants, Natural Gas, Fuel Transformation;Annual Consumption of Natural Gas in Auto Producer Combined Heat Power Plants;annual natural gas consumption in auto producer combined heat power plants;annual natural gas use in auto producer combined heat power plants;the amount of natural gas used in auto producer combined heat power plants each year;the annual amount of natural gas consumed by auto producer combined heat power plants" -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_DieselOil_FuelTransformation,"Annual Consumption of Diesel Oil in Autoproducer Electricity Power Plants;Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Diesel Oil, Fuel Transformation;the amount of diesel oil that autoproducer electricity power plants use each year;the amount of diesel oil used in autoproducer electricity power plants each year;the annual diesel oil usage in autoproducer electricity power plants;the yearly consumption of diesel oil in autoproducer electricity power plants" -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_FuelOil_FuelTransformation,"Annual Consumption of Fuel Oil in Autoproducer Electricity Power Plants;Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Fuel Oil, Fuel Transformation;the amount of fuel oil that autoproducer electricity power plants use in a year;the amount of fuel oil used by autoproducer electricity power plants each year;the annual rate at which fuel oil is used by autoproducer electricity power plants;the yearly consumption of fuel oil by autoproducer electricity power plants" -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_HardCoal_FuelTransformation,"Annual Consumption Of Hard Coal In Fuel Transmission;Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Hard Coal, Fuel Transformation;how much hard coal is consumed in fuel transmission annually?;how much hard coal is used in fuel transmission each year?;what is the amount of hard coal used in fuel transmission each year?;what is the annual consumption of hard coal in fuel transmission?" -Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Auto Producer Electricity Power Plants, Natural Gas, Fuel Transformation;Annual Consumption of Natural Gas by Autoproducer Electricity Power Plants for Fuel Transformation;annual consumption of natural gas by autoproducer electricity power plants for fuel transformation;annual natural gas consumption by autoproducer electricity power plants for fuel transformation;autoproducer electricity power plants' annual consumption of natural gas for fuel transformation;the amount of natural gas consumed by autoproducer electricity power plants for fuel transformation each year" -Annual_Consumption_Fuel_AviationGasoline,Annual Consumption of Aviation Gasoline;Annual Consumption of Fuel: Aviation Gasoline;the amount of aviation gasoline used each year;the amount of aviation gasoline used in a year;the annual rate of aviation gasoline consumption;the yearly consumption of aviation gasoline -Annual_Consumption_Fuel_Bagasse,Annual Consumption of Bagasse;Annual Consumption of Fuel: Bagasse;the amount of bagasse consumed each year;the annual consumption of bagasse;the annual rate of bagasse consumption;the yearly amount of bagasse used -Annual_Consumption_Fuel_BioDiesel,Annual Consumption of Biodiesel;Annual Consumption of Fuel: Bio Diesel;how much biodiesel is consumed annually?;how much biodiesel is used each year?;what is the annual consumption of biodiesel?;what is the yearly consumption of biodiesel? -Annual_Consumption_Fuel_BioGas,Annual Consumption of Bio Gas;Annual Consumption of Fuel: Bio Gas;biogas consumption per year;how much biogas is consumed annually?;what is the annual consumption of biogas?;what is the yearly consumption of biogas? -Annual_Consumption_Fuel_BioGasoline,Annual Consumption of Bio Gasoline;Annual Consumption of Fuel: Bio Gasoline;annual bio gasoline usage;bio gasoline consumption in a year;bio gasoline consumption per year;bio gasoline use per year -Annual_Consumption_Fuel_BituminousCoal,Annual Consumption Of Bituminous Coal;Annual Consumption of Fuel: EIA_Bituminous Coal;how much bituminous coal is consumed each year?;how much bituminous coal is used each year?;what is the annual consumption of bituminous coal?;what is the yearly consumption of bituminous coal? -Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse,"Annual Consumption Bituminous Coal in Non Energy Use;Annual Consumption of Fuel: EIA_Bituminous Coal, Non Energy Use;annual coal use for non-energy purposes;coal use for non-energy purposes" -Annual_Consumption_Fuel_BlastFurnaceGas,Annual Consumption of Blast Furnace Gas;Annual Consumption of Fuel: Blast Furnace Gas;the amount of blast furnace gas used each year;the amount of blast furnace gas used in a year;the annual rate of blast furnace gas consumption;the yearly consumption of blast furnace gas -Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation,"Annual Consumption Of Coke In Blast Furnaces;Annual Consumption of Fuel: Blast Furnaces, Coke Oven Coke, Fuel Transformation;the amount of coke that is used in blast furnaces each year;the amount of coke used in blast furnaces each year;the annual use of coke in blast furnaces;the yearly consumption of coke in blast furnaces" -Annual_Consumption_Fuel_BrownCoal,Annual Brown Coal Consumption;Annual Consumption of Fuel: Brown Coal;the amount of brown coal that is used each year;the amount of brown coal used each year;the annual rate of brown coal use;the yearly consumption of brown coal -Annual_Consumption_Fuel_Charcoal,Annual Consumption of Charcoal;Annual Consumption of Fuel: Charcoal;how much charcoal is used each year;the amount of charcoal consumed each year;the annual charcoal usage;the yearly consumption of charcoal -Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation,"Annual Consumption of Charcoal Plants and Fuelwood in Fuel Transformation Industries;Annual Consumption of Fuel: Charcoal Plants, Fuelwood, Fuel Transformation;the amount of charcoal and fuelwood used in fuel transformation industries each year;the annual rate of charcoal and fuelwood use in fuel transformation industries;the annual use of charcoal and fuelwood in fuel transformation industries;the yearly consumption of charcoal and fuelwood in fuel transformation industries" -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil,"Annual Consumption of Diesel Oil in Chemical Petrochemical Industries;Annual Consumption of Fuel: Chemical Petrochemical Industry, Diesel Oil;annual diesel oil consumption in chemical and petrochemical industries;how much diesel oil is used each year in chemical and petrochemical industries;the amount of diesel oil used annually in chemical and petrochemical industries;the annual diesel oil usage in chemical and petrochemical industries" -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil,"Annual Consumption of Fuel Oil in Chemical Petrochemical Industries;Annual Consumption of Fuel: Chemical Petrochemical Industry, Fuel Oil;the amount of fuel oil used by chemical and petrochemical industries each year;the annual rate at which fuel oil is used by the chemical and petrochemical industries;the total amount of fuel oil used by the chemical and petrochemical industries in a year;the yearly consumption of fuel oil by the chemical and petrochemical industries" -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Hard Coal;Annual Consumption of Hard Coal in Chemical Petrochemical Industries;the amount of hard coal used in chemical and petrochemical industries each year;the annual hard coal usage in the chemical and petrochemical industries;the annual rate of hard coal consumption in the chemical and petrochemical industries;the yearly consumption of hard coal in the chemical and petrochemical industries" -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Chemical Petrochemical Industries;how much liquefied petroleum gas do the chemical and petrochemical industries use each year?;how much liquefied petroleum gas is consumed by the chemical and petrochemical industries each year?;what is the annual consumption of liquefied petroleum gas by the chemical and petrochemical industries?;what is the yearly amount of liquefied petroleum gas used by the chemical and petrochemical industries?" -Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas,"Annual Consumption of Fuel: Chemical Petrochemical Industry, Natural Gas;Annual Consumption of Natural Gas in Chemical Petrochemical Industries;how much natural gas do the chemical and petrochemical industries use each year?;how much natural gas is consumed by the chemical and petrochemical industries each year?;what is the amount of natural gas used by the chemical and petrochemical industries each year?;what is the annual consumption of natural gas by the chemical and petrochemical industries?" -Annual_Consumption_Fuel_CokeOvenCoke,Annual Consumption of Coke Oven Coke;Annual Consumption of Fuel: Coke Oven Coke;how much coke oven coke is consumed each year?;how much coke oven coke is used each year?;what is the amount of coke oven coke consumed each year?;what is the annual consumption of coke oven coke? -Annual_Consumption_Fuel_CokeOvens_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Coke Ovens, Hard Coal, Fuel Transformation;Annual Consumption of Hard Coal by Coke Ovens;annual coke oven coal usage;coke oven coal consumption per year;the amount of hard coal used in coke ovens each year;the annual rate of hard coal consumption by coke ovens" -Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal,"Annual Consumption of Charcoal By Commerce And Public Services Establishments;Annual Consumption of Fuel: Commerce And Public Services, Charcoal;how much charcoal do businesses and public services use each year?;how much charcoal do businesses and public services use in a year?;what is the amount of charcoal that businesses and public services use each year?;what is the annual consumption of charcoal by businesses and public services?" -Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil,"Annual Consumption of Diesel Oil in Commerce and Public Services;Annual Consumption of Fuel: Commerce And Public Services, Diesel Oil;how much diesel oil is consumed by businesses and public services in a year?;how much diesel oil is used by businesses and public services each year?;the amount of diesel oil used in commerce and public services each year;the yearly consumption of diesel oil by businesses and government agencies" -Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil,"Annual Consumption of Fuel Oil by Commerce and Public Services;Annual Consumption of Fuel: Commerce And Public Services, Fuel Oil;fuel oil use by businesses and public services each year;the amount of fuel oil used by businesses and public services in a year;the annual fuel oil consumption of businesses and public services;the yearly amount of fuel oil used by businesses and public services" -Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood,"Annual Consumption of Fuel: Commerce And Public Services, Fuelwood;Annual Consumption of Fuelwood in Commerce And Public Services;how much fuelwood is consumed by commerce and public services each year?;the amount of fuelwood used by businesses and government agencies each year;the quantity of fuelwood used by businesses and government agencies in a year;the yearly consumption of firewood by commercial and public sectors" -Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal,"Annual Consumption of Fuel: Commerce And Public Services, Hard Coal;Annual Consumption of Hard Coal by Commerce And Public Services Establishments;the amount of hard coal that businesses and public services use each year;the amount of hard coal used by businesses and public services each year;the annual rate at which hard coal is consumed by businesses and public services;the yearly consumption of hard coal by commercial and public service entities" -Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene,"Annual Consumption of Fuel: Commerce And Public Services, EIA_Kerosene;Annual Consumption of Kerosene in Commerce And Public Services;annual kerosene use in commerce and public services;kerosene consumption in commerce and public services per year;kerosene use in commerce and public services on an annual basis;the amount of kerosene used in commerce and public services each year" -Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Commerce And Public Services, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Commerce And Public Service Industries;how much liquefied petroleum gas is consumed in commerce and public service industries each year?;how much liquefied petroleum gas is used in commerce and public service industries each year?;what is the amount of liquefied petroleum gas used in commerce and public service industries each year?;what is the annual consumption of liquefied petroleum gas in commerce and public service industries?" -Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline,"Annual Consumption of Fuel: Commerce And Public Services, Motor Gasoline;Annual Consumption of Motor Gasoline in Commerce And Public Services;the amount of motor gasoline used in commerce and public services each year;the annual consumption of motor gasoline by businesses and government agencies;the total amount of motor gasoline used by businesses and government agencies in a year;the yearly amount of motor gasoline used by businesses and government agencies to power their vehicles and equipment" -Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas,"Annual Consumption Of Natural Gas By Commerce And Public Services;Annual Consumption of Fuel: Commerce And Public Services, Natural Gas;the amount of natural gas that businesses and public services use in a year;the amount of natural gas used by businesses and public services each year;the annual natural gas consumption of commerce and public services;the yearly usage of natural gas by commerce and public services" -Annual_Consumption_Fuel_ConstructionIndustry_DieselOil,"Annual Consumption of Diesel Oil in Construction Industries;Annual Consumption of Fuel: Construction Industry, Diesel Oil;how much diesel oil does the construction industry consume annually?;the amount of diesel oil used by the construction industry each year;what is the annual consumption of diesel oil by the construction industry?;what is the annual usage of diesel oil by the construction industry?" -Annual_Consumption_Fuel_ConstructionIndustry_FuelOil,"Annual Consumption of Fuel Oil in Construction Industries;Annual Consumption of Fuel: Construction Industry, Fuel Oil;how much fuel oil is consumed by the construction industry annually?;how much fuel oil is used in construction each year?;what is the amount of fuel oil used in construction each year?;what is the annual fuel oil consumption of the construction industry?" -Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas In Construction Industries;Annual Consumption of Fuel: Construction Industry, Liquefied Petroleum Gas;the amount of liquefied petroleum gas used in construction industries each year;the annual liquefied petroleum gas consumption of construction industries;the annual rate of liquefied petroleum gas consumption in construction industries;the yearly amount of liquefied petroleum gas used in construction" -Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas,"Annual Consumption of Fuel: Construction Industry, Natural Gas;Annual Consumption of Natural Gas in Construction Industries;the amount of natural gas used by the construction industry each year;the annual rate of natural gas consumption by the construction industry;the total amount of natural gas used by the construction industry in a year;the yearly consumption of natural gas by the construction industry" -Annual_Consumption_Fuel_DieselOil,Annual Consumption of Diesel Oil;Annual Consumption of Fuel: Diesel Oil;annual diesel oil consumption;annual diesel oil usage;what is the annual consumption of diesel oil?;what is the yearly consumption of diesel oil? -Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline,"Annual Consumption of Aviation Gasoline in Domestic Aviation Transport;Annual Consumption of Fuel: Domestic Aviation Transport, Aviation Gasoline;how much aviation gasoline is consumed annually in domestic aviation transport?;how much aviation gasoline is used annually in domestic aviation transport?;what is the amount of aviation gasoline consumed annually in domestic aviation transport?;what is the annual consumption of aviation gasoline in domestic aviation transport?" -Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel,"Annual Consumption of Fuel: Domestic Aviation Transport, Kerosene Jet Fuel;Annual Consumption of Kerosene Jet Fuel for Domestic Aviation Transport;how much kerosene jet fuel do domestic airlines burn each year?;how much kerosene jet fuel is used by domestic airlines each year?;how much kerosene jet fuel is used by domestic airlines in a year?;what is the annual consumption of kerosene jet fuel by domestic airlines?" -Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil,"1 the amount of diesel oil used in domestic navigation transport each year;2 the annual diesel oil consumption of domestic navigation transport;3 the yearly amount of diesel oil used in domestic navigation transport;4 the annual diesel oil usage in domestic navigation transport;Annual Consumption of Diesel Oil in Domestic Navigation Transport;Annual Consumption of Fuel: Domestic Navigation Transport, Diesel Oil" -Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil,"Annual Consumption of Fuel Oil in Domestic Navigation Transport;Annual Consumption of Fuel: Domestic Navigation Transport, Fuel Oil;the amount of fuel oil used in domestic navigation transport each year;the annual fuel oil consumption of domestic navigation transport;the annual fuel oil demand of domestic navigation transport;the yearly fuel oil usage of domestic navigation transport" -Annual_Consumption_Fuel_ElectricityGeneration_Bagasse_FuelTransformation,"Annual Consumption of Bagasse in Fuel Transformation;Annual Consumption of Fuel: Electricity Generation, Bagasse, Fuel Transformation;the amount of bagasse used in fuel transformation each year;the annual amount of bagasse that is transformed into fuel;the annual rate of bagasse use in fuel transformation;the yearly consumption of bagasse for fuel transformation" -Annual_Consumption_Fuel_ElectricityGeneration_BioGas_FuelTransformation,"Annual Consumption of Biogas in Electricity Generation Industries for Fuel Transformation;Annual Consumption of Fuel: Electricity Generation, Bio Gas, Fuel Transformation;the annual level of biogas consumption in electricity generation industries;the annual rate of biogas consumption in electricity generation industries;the yearly consumption of biogas in electricity generation industries;the yearly consumption of biogas in electricity generation industries for fuel transformation" -Annual_Consumption_Fuel_ElectricityGeneration_BrownCoal_FuelTransformation,"Annual Consumption of Brown Coal For Electricity Generation;Annual Consumption of Fuel: Electricity Generation, Brown Coal, Fuel Transformation;how much brown coal is used to generate electricity each year?;how much brown coal is used to generate electricity in a year?;what is the annual amount of brown coal used to generate electricity?;what is the annual consumption of brown coal for electricity generation?" -Annual_Consumption_Fuel_ElectricityGeneration_DieselOil_FuelTransformation,"Annual Consumption of Diesel Oil in Electricity Generation;Annual Consumption of Fuel: Electricity Generation, Diesel Oil, Fuel Transformation;how much diesel oil is burned each year to generate electricity?;how much diesel oil is used to generate electricity each year?;what is the annual amount of diesel oil used to generate electricity?;what is the annual consumption of diesel oil for electricity generation?" -Annual_Consumption_Fuel_ElectricityGeneration_FuelOil_FuelTransformation,"Annual Consumption of Fuel Oil in Electricity Generation And Fuel Transformation Industries;Annual Consumption of Fuel: Electricity Generation, Fuel Oil, Fuel Transformation;the amount of fuel oil used in electricity generation and fuel transformation industries each year;the annual consumption of fuel oil in the electricity generation and fuel transformation industries;the annual rate of fuel oil consumption in the electricity generation and fuel transformation industries;the yearly amount of fuel oil used in the electricity generation and fuel transformation industries" -Annual_Consumption_Fuel_ElectricityGeneration_Fuelwood_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Fuelwood, Fuel Transformation;Annual Consumption of Fuelwood in Electricity Generation;the amount of fuelwood used to generate electricity each year;the annual amount of fuelwood burned to produce electricity;the annual fuelwood usage for electricity generation;the yearly consumption of fuelwood for electricity generation" -Annual_Consumption_Fuel_ElectricityGeneration_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Hard Coal, Fuel Transformation;Annual Consumption of Hard Coal For Electricity Generation;how much hard coal is used for electricity generation annually?;how much hard coal is used to generate electricity each year?;what is the amount of hard coal used for electricity generation each year?;what is the annual consumption of hard coal for electricity generation?" -Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Electricity Generation, Natural Gas, Fuel Transformation;Annual Consumption of Natural Gas in Fuel Transformation;how much fuel is consumed each year for electricity generation, natural gas, and fuel transformation?;what are the annual fuel consumption figures for electricity generation, natural gas, and fuel transformation?;what are the annual fuel consumption rates for electricity generation, natural gas, and fuel transformation?;what is the annual fuel consumption for electricity generation, natural gas, and fuel transformation?" -Annual_Consumption_Fuel_ElectricityGeneration_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Bituminous Coal For Electricity Generation;Annual Consumption of Fuel: Electricity Generation, UN_Other Bituminous Coal, Fuel Transformation;how much bituminous coal is consumed annually for electricity generation?;how much bituminous coal is used annually to generate electricity?;what is the amount of bituminous coal consumed annually for electricity generation?;what is the annual consumption of bituminous coal for electricity generation?" -Annual_Consumption_Fuel_EnergyIndustry_DieselOil_EnergyIndustryOwnUse,"Annual Consumption of Diesel Oil by Energy Industries;Annual Consumption of Fuel: Energy Industry, Diesel Oil, Energy Industry Own Use;how much diesel oil do energy industries consume each year?;what is the amount of diesel oil that energy industries consume each year?;what is the annual consumption of diesel oil by energy industries?;what is the annual usage of diesel oil by energy industries?" -Annual_Consumption_Fuel_EnergyIndustry_FuelOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel Oil in Energy Industries Own Use;Annual Consumption of Fuel: Energy Industry, Fuel Oil, Energy Industry Own Use;annual fuel oil consumption by the energy industry for its own use;the amount of fuel oil the energy industry consumes each year;the amount of fuel oil used by the energy industry each year;the annual fuel oil usage of the energy industry" -Annual_Consumption_Fuel_EnergyIndustry_LiquifiedPetroleumGas_EnergyIndustryOwnUse,"Annual Consumption Of Liquefied Petroleum Gas In Energy Industries;Annual Consumption of Fuel: Energy Industry, Liquefied Petroleum Gas, Energy Industry Own Use;how much liquefied petroleum gas is consumed by energy industries each year?;how much lpg is used in energy industries;liquefied petroleum gas (lpg) consumption in energy industries;what is the annual consumption of liquefied petroleum gas in energy industries?" -Annual_Consumption_Fuel_EnergyIndustry_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption Of Natural Gas In the Energy Industry;Annual Consumption of Fuel: Energy Industry, Natural Gas, Energy Industry Own Use;how much natural gas does the energy industry use each year?;how much natural gas is consumed by the energy industry each year?;what is the amount of natural gas consumed by the energy industry each year?;what is the annual consumption of natural gas by the energy industry?" -Annual_Consumption_Fuel_EnergyIndustry_RefineryGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Energy Industry, Refinery Gas, Energy Industry Own Use;sure here are five different ways of saying ""annual consumption of refinery gas in energy industry own use"":" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil,"Annual Consumption Of Diesel Oil In Food And Tobacco Industries;Annual Consumption of Fuel: Food And Tobacco Industry, Diesel Oil;how much diesel oil do the food and tobacco industries use each year?;how much diesel oil is consumed by the food and tobacco industries each year?;what is the annual consumption of diesel oil in the food and tobacco industries?;what is the annual diesel oil consumption of the food and tobacco industries?" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil,"Annual Consumption of Fuel Oil in Food and Tobacco Industries;Annual Consumption of Fuel: Food And Tobacco Industry, Fuel Oil;the amount of fuel oil used by the food and tobacco industries each year;the annual rate of fuel oil consumption in the food and tobacco industries;the total amount of fuel oil that is consumed by the food and tobacco industries in a year;the yearly amount of fuel oil that is used by the food and tobacco industries" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal,"Annual Consumption of Fuel: Food And Tobacco Industry, Hard Coal;Annual Consumption of Hard Coal in Food And Tobacco Industries;how much hard coal do the food and tobacco industries use each year?;how much hard coal is used by the food and tobacco industries each year?;what is the annual consumption of hard coal by the food and tobacco industries?;what is the annual usage of hard coal by the food and tobacco industries?" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas In The Food And Tobacco Industries;Annual Consumption of Fuel: Food And Tobacco Industry, Liquefied Petroleum Gas;how much liquefied petroleum gas do the food and tobacco industries consume annually?;how much liquefied petroleum gas is consumed annually by the food and tobacco industries?;what is the amount of liquefied petroleum gas consumed annually by the food and tobacco industries?;what is the annual consumption of liquefied petroleum gas in the food and tobacco industries?" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas,"Annual Consumption of Fuel: Food And Tobacco Industry, Natural Gas;Annual Consumption of Natural Gas in The Food And Tobacco Industries;the amount of natural gas that the food and tobacco industries use each year;the amount of natural gas used by the food and tobacco industries each year;the annual natural gas usage of the food and tobacco industries;the yearly consumption of natural gas by the food and tobacco industries" -Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherBituminousCoal,"Annual Consumption Of Bituminous Coal In The Food And Tobacco Industries;Annual Consumption of Fuel: Food And Tobacco Industry, UN_Other Bituminous Coal;how much bituminous coal do the food and tobacco industries consume each year?;how much bituminous coal do the food and tobacco industries use each year?;what is the annual consumption of bituminous coal by the food and tobacco industries?;what is the annual usage of bituminous coal by the food and tobacco industries?" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal,"Annual Total Consumption of Coal in All Sectors;Total consumption (Btu), coal, all sectors, annual;the amount of coal consumed in all sectors each year;the total amount of coal used in all sectors annually;total annual consumption of coal in all sectors;total coal consumption in all sectors per year" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,"Total consumption (Btu), natural gas, all sectors, annual" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen,"Total Annual Consumption Of Natural Gas;Total consumption (Btu), natural gas, commercial cogen, annual;the total amount of natural gas consumed in a year;the total amount of natural gas used in a year;the total natural gas consumed in a year;total natural gas consumption per year" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen,"Annual Consumption Electric Utility Cogen For Electricity Generation And Thermal Output;Total consumption (Btu), natural gas, electric utility cogen, annual;annual cogeneration consumption by electric utilities for electricity generation and thermal output;annual cogeneration output from electric utilities for electricity generation and thermal output;annual electric utility consumption for cogeneration for electricity generation and thermal output;annual electricity generation and thermal output from cogeneration by electric utilities" -Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,"1 total annual consumption of petroleum liquids in all sectors;Annual Total Consumption of Petroleum Liquids In All Sectors;Total consumption (Btu), petroleum liquids, all sectors, annual;the total amount of petroleum liquids consumed in all sectors each year;the total annual consumption of petroleum liquids in all sectors;total petroleum liquids consumed in all sectors annually" -Annual_Consumption_Fuel_ForElectricityGeneration_Coal,"Annual Consumption of Coal in Electricity Generation;Consumption for electricity generation, coal, all sectors, annual;coal consumption for electricity generation, annually, across all sectors;coal consumption for electricity generation, annually, in all sectors" -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas,"Annual Consumption for Electricity Generation From Natural Gas;Consumption for electricity generation (Btu), natural gas, all sectors, annual;what is the annual consumption of natural gas for electricity generation?" -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen,"Annual Consumption of Natural Gas For Electricity Generation;Consumption for electricity generation (Btu), natural gas, commercial cogen, annual;how much natural gas is used for electricity generation annually?;the annual usage of natural gas for electricity generation;the yearly consumption of natural gas for electricity generation;what is the amount of natural gas used for electricity generation each year?" -Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen,"Annual Consumption For Natural Gas In Electricity Generation By Cogen Utilities;Consumption for electricity generation (Btu), natural gas, electric utility cogen, annual;how much natural gas do cogeneration utilities use to generate electricity each year?;the amount of natural gas used by cogeneration utilities to generate electricity each year;what is the annual natural gas consumption of cogeneration utilities for electricity generation?;what is the annual natural gas usage of cogeneration utilities for electricity generation?" -Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,"Annual Consumption of Petroleum Liquids For Electricity Generation In All Sectors;Consumption for electricity generation (Btu), petroleum liquids, all sectors, annual;the amount of petroleum liquids used for electricity generation in all sectors each year;the annual consumption of petroleum liquids for electricity generation in all sectors;the annual use of petroleum liquids for electricity generation in all sectors;the yearly amount of petroleum liquids used for electricity generation in all sectors" -Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal,"Annual Consumption of Coal For Useful Thermal Output;Consumption for useful thermal output, coal, all sectors, annual;the amount of coal used each year to generate heat;the amount of coal used each year to produce heat;the annual consumption of coal for heating;the annual consumption of coal for thermal energy" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas,"Annual Consumption of Natural Gas in All Sectors;Consumption for useful thermal output (Btu), natural gas, all sectors, annual" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial,"Annual Consumption of Natural Gas For Useful Thermal Output by Commercial;Consumption for useful thermal output, natural gas, all commercial (total), annual;commercial natural gas consumption for useful thermal output per year;the amount of natural gas consumed by commercial businesses for useful thermal output each year;the annual amount of natural gas used by commercial businesses for useful thermal output;the yearly amount of natural gas consumed by commercial businesses for useful thermal output" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen,"Annual Consumption Of Natural Gas For Useful Thermal Output;Consumption for useful thermal output, natural gas, commercial cogen, annual;annual consumption of natural gas for useful thermal output;the amount of natural gas used each year to generate heat;the annual amount of natural gas used for heating purposes;the annual amount of natural gas used to produce heat" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower,"Annual Consumption Of Natural Gas Electric Power in Electric Power Plants;Annual Consumption of Natural Gas in Electric Power Industries;Consumption for useful thermal output, natural gas, electric power (total), annual;electric power industries' annual consumption of natural gas;the amount of natural gas used by the electric power industry" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen,"Annual Consumption Of Natural Gas By Electric Utility Cogen;Consumption for useful thermal output (Btu), natural gas, electric utility cogen, annual;annual consumption of natural gas by electric utility cogeneration;annual natural gas consumption by electric utility cogeneration;the amount of natural gas used by electric utilities for cogeneration each year;the annual rate of natural gas consumption by electric utilities for cogeneration" -Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers,"Annual Consumption of Natural Gas For Useful Thermal Output by Independent Power Producers;Consumption for useful thermal output (Btu), natural gas, independent power producers (total), annual;the amount of natural gas that independent power producers use each year to generate heat;the amount of natural gas used by independent power producers each year to generate heat;the annual amount of natural gas used by independent power producers to produce heat;the yearly consumption of natural gas by independent power producers for useful thermal output" -Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids,"Annual Consumption of Petroleum Liquids For Thermal Output;Consumption for useful thermal output (Btu), petroleum liquids, all sectors, annual;how much petroleum does the united states use for thermal output?;the amount of petroleum liquids consumed annually for thermal output;the annual use of petroleum liquids for thermal energy;what is the annual consumption of petroleum liquids for thermal output in the united states?" -Annual_Consumption_Fuel_FuelOil,Annual Consumption of Fuel Oil;Annual Consumption of Fuel: Fuel Oil;the amount of fuel oil consumed each year;the amount of fuel oil used in a year;the annual rate of fuel oil consumption;the yearly usage of fuel oil -Annual_Consumption_Fuel_FuelTransformationIndustry_Bagasse_FuelTransformation,"1 the amount of bagasse used in fuel transformation industries each year;2 the annual rate of bagasse consumption in fuel transformation industries;3 the yearly use of bagasse in fuel transformation industries;4 the amount of bagasse that is consumed in fuel transformation industries each year;Annual Consumption of Bagasse in Fuel Transformation Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Bagasse, Fuel Transformation" -Annual_Consumption_Fuel_FuelTransformationIndustry_BioGas_FuelTransformation,"Annual Consumption of Bio Gas in Fuel Transformation Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Bio Gas, Fuel Transformation;the amount of biogas that fuel transformation industries use each year;the annual rate at which biogas is consumed by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_BrownCoal_FuelTransformation,"Annual Consumption Of Brown Coal In Fuel Transmission Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Brown Coal, Fuel Transformation;the amount of brown coal used in fuel transmission industries each year;the annual amount of brown coal used by fuel transmission industries;the yearly consumption of brown coal by fuel transmission industries;the yearly usage of brown coal by fuel transmission industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_CokeOvenCoke_FuelTransformation,"Annual Consumption of Coke Oven Coke in Fuel Transformation;Annual Consumption of Fuel: Fuel Transformation Industry, Coke Oven Coke, Fuel Transformation;coke oven coke consumption in fuel transformation per year;the amount of coke oven coke used in fuel transformation each year;the annual rate of coke oven coke consumption in fuel transformation;the yearly amount of coke oven coke used in fuel transformation" -Annual_Consumption_Fuel_FuelTransformationIndustry_CrudeOil_FuelTransformation,"Annual Consumption of Crude Oil By Fuel Transformation Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Crude Oil, Fuel Transformation;the amount of crude oil that fuel transformation industries use each year;the amount of crude oil used by fuel transformation industries each year;the annual consumption of crude oil by fuel transformation industries;the yearly use of crude oil by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_DieselOil_FuelTransformation,"Annual Consumption Of Diesel Oil In Fuel Transmission Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Diesel Oil, Fuel Transformation;the amount of diesel oil that fuel transmission industries use each year;the amount of diesel oil used in fuel transmission industries each year;the annual usage of diesel oil in fuel transmission industries;the yearly consumption of diesel oil by fuel transmission industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_FuelOil_FuelTransformation,"Annual Consumption of Fuel Oil By Fuel Transformation Industries;Annual Consumption of Fuel: Fuel Transformation Industry, Fuel Oil, Fuel Transformation;fuel oil consumption by fuel transformation industries;fuel oil used in fuel transformation industries;fuel transformation industries' fuel oil usage;the amount of fuel oil used by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_Fuelwood_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Fuelwood, Fuel Transformation;Annual Consumption of Fuelwood by Fuel Transformation Industries;fuelwood consumption by fuel transformation industries per year;the amount of fuelwood used by fuel transformation industries each year;the annual amount of fuelwood used by fuel transformation industries;the yearly consumption of fuelwood by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Hard Coal, Fuel Transformation;Annual Consumption of Hard Coal in the Fuel Transformation Industries;how much hard coal do the fuel transformation industries use each year?;how much hard coal is used by the fuel transformation industries each year?;what is the annual consumption of hard coal by the fuel transformation industries?;what is the annual usage of hard coal by the fuel transformation industries?" -Annual_Consumption_Fuel_FuelTransformationIndustry_LiquifiedPetroleumGas_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Liquefied Petroleum Gas, Fuel Transformation;Annual Consumption of Liquefied Petroleum Gas in Fuel Transformation Industries;the amount of liquefied petroleum gas used by fuel transformation industries each year;the annual rate of liquefied petroleum gas consumption in fuel transformation industries;the total amount of liquefied petroleum gas used by fuel transformation industries in one year;the yearly consumption of liquefied petroleum gas by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Natural Gas Liquids, Fuel Transformation;Annual Consumption of Natural Gas Liquids in Fuel Transformation Industries;annual consumption of natural gas liquids in the fuel transformation industry;the amount of natural gas liquids consumed by the fuel transformation industry each year;the annual amount of natural gas liquids used by the fuel transformation industry;the annual rate of natural gas liquids consumption by the fuel transformation industry" -Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Natural Gas, Fuel Transformation;Annual Consumption of Natural Gas in Fuel Transformation Industries;the amount of natural gas used in fuel transformation industries each year;the annual amount of natural gas that fuel transformation industries use;the yearly amount of natural gas that is consumed by fuel transformation industries;the yearly consumption of natural gas by fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Bituminous Coal in Fuel Transformation Industries;Annual Consumption of Fuel: Fuel Transformation Industry, UN_Other Bituminous Coal, Fuel Transformation;annual consumption of bituminous coal in fuel transformation industries;the amount of bituminous coal used in fuel transformation industries each year;the annual usage of bituminous coal in fuel transformation industries;the yearly consumption of bituminous coal in fuel transformation industries" -Annual_Consumption_Fuel_FuelTransformationIndustry_RefineryFeedstocks_FuelTransformation,"Annual Consumption of Fuel: Fuel Transformation Industry, Refinery Feedstocks, Fuel Transformation;Annual Consumption of Refinery Feedstocks In Fuel Transformation Industry And Fuel Transformation;the amount of refinery feedstocks consumed annually in the fuel transformation industry;the annual consumption of refinery feedstocks in the fuel transformation industry;the annual rate of consumption of refinery feedstocks in the fuel transformation industry;the yearly consumption of refinery feedstocks in the fuel transformation industry" -Annual_Consumption_Fuel_Fuelwood,Annual Consumption of Fuel: Fuelwood;Annual Consumption of Fuelwood;annual fuelwood consumption;the amount of fuelwood used each year;the amount of fuelwood used in a year;the yearly consumption of fuelwood -Annual_Consumption_Fuel_HardCoal,Annual Consumption of Fuel: Hard Coal;Annual Consumption of Hard Coal;how much hard coal is consumed annually?;how much hard coal is used each year?;what is the annual consumption of hard coal?;what is the yearly consumption of hard coal? -Annual_Consumption_Fuel_Households_Charcoal,"Annual Consumption of Charcoal in Households;Annual Consumption of Fuel: Households, Charcoal;the amount of charcoal that households use each year;the amount of charcoal used in households each year;the annual household consumption of charcoal;the yearly amount of charcoal used in households" -Annual_Consumption_Fuel_Households_DieselOil,"1 how much diesel oil do households consume each year?;2 what is the annual consumption of diesel oil in households?;3 what is the average amount of diesel oil that households consume each year?;4 how much diesel oil do households use each year?;Annual Consumption of Diesel Oil In Households;Annual Consumption of Fuel: Households, Diesel Oil" -Annual_Consumption_Fuel_Households_FuelOil,"Annual Consumption Of Fuel Oil By Households;Annual Consumption of Fuel: Households, Fuel Oil;how much fuel oil do households consume annually?;how much fuel oil do households use each year?;what is the annual fuel oil consumption of households?;what is the annual fuel oil usage of households?" -Annual_Consumption_Fuel_Households_Fuelwood,"Annual Consumption of Fuel: Households, Fuelwood;Annual Consumption of Fuelwood in Households;how much fuelwood do households typically use each year?;how much fuelwood do households use each year?;what is the annual consumption of fuelwood in households?;what is the average amount of fuelwood that households use each year?" -Annual_Consumption_Fuel_Households_HardCoal,"Annual Consumption of Fuel: Households, Hard Coal;Annual Consumption of Hard Coal in Households;the amount of hard coal that households use each year, on average;the amount of hard coal used in households each year;the annual rate of hard coal consumption in households;the yearly consumption of hard coal by households" -Annual_Consumption_Fuel_Households_Kerosene,"Annual Consumption of Fuel: Households, EIA_Kerosene;Annual Consumption of Kerosene in Households;how much kerosene do households use each year?;how much kerosene is used in households annually?;what is the annual consumption of kerosene in households?;what is the average amount of kerosene used in households each year?" -Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas By Households;Annual Consumption of Fuel: Households, Liquefied Petroleum Gas;the amount of liquefied petroleum gas that households consume each year;the amount of liquefied petroleum gas that households use in a year;the annual amount of liquefied petroleum gas that households use;the yearly consumption of liquefied petroleum gas by households" -Annual_Consumption_Fuel_Households_NaturalGas,"1 how much natural gas do households use each year?;2 what is the annual consumption of natural gas in households?;3 what is the average amount of natural gas used by households each year?;4 how much natural gas do households use in a year?;Annual Consumption of Fuel: Households, Natural Gas;Annual Consumption of Natural Gas in Households" -Annual_Consumption_Fuel_Households_VegetalWaste,"Annual Consumption of Fuel: Households, Vegetal Waste;Annual Consumption of Vegetal Waste in Households;how much vegetable waste do households consume each year?;how much vegetable waste do households throw away each year?;what is the annual consumption of vegetable waste in households?;what is the average amount of vegetable waste that households consume each year?" -Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Industry, Natural Gas, Energy Industry Own Use;Annual Consumption of Natural Gases;sure here are 5 different ways to say ""annual consumption of natural gases"":" -Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline,"Annual Consumption of Aviation Gasoline in International Aviation Bunkers;Annual Consumption of Fuel: International Aviation Bunkers, Aviation Gasoline;how much aviation gasoline is consumed in international aviation bunkers each year?;how much aviation gasoline is used in international aviation bunkers annually?;what is the annual consumption of aviation gasoline in international aviation bunkers?;what is the annual usage of aviation gasoline in international aviation bunkers?" -Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel,"Annual Consumption of Fuel: International Aviation Bunkers, Kerosene Jet Fuel;Annual Consumption of Kerosene Jet Fuel in International Aviation Bunkers;the amount of kerosene jet fuel used in international aviation bunkers each year;the annual rate of kerosene jet fuel consumption in international aviation bunkers;the quantity of kerosene jet fuel used in international aviation bunkers annually;the yearly consumption of kerosene jet fuel in international aviation bunkers" -Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil,"Annual Consumption Of Diesel Oil By International Marine Bunkers;Annual Consumption of Fuel: International Marine Bunkers, Diesel Oil;the amount of diesel oil consumed by international marine bunkers each year;the annual amount of diesel oil used by international marine bunkers;the annual rate of diesel oil consumption by international marine bunkers;the yearly consumption of diesel oil by international marine bunkers" -Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil,"Annual Consumption of Fuel Oil in International Marine Bunkers;Annual Consumption of Fuel: International Marine Bunkers, Fuel Oil;how much fuel oil do international marine bunkers use each year?;how much fuel oil is consumed by international marine bunkers each year?;what is the amount of fuel oil used by international marine bunkers each year?;what is the annual consumption of fuel oil in international marine bunkers?" -Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas,"1 the amount of blast furnace gas used in iron and steel production each year;2 the annual rate of blast furnace gas consumption in the iron and steel industry;3 the total amount of blast furnace gas used in iron and steel production over the course of a year;4 the yearly consumption of blast furnace gas in the iron and steel sector;Annual Consumption of Blast Furnace Gas in Iron Steel;Annual Consumption of Fuel: Iron Steel, Blast Furnace Gas" -Annual_Consumption_Fuel_IronSteel_CokeOvenCoke,"1 the annual consumption of coke oven coke in iron and steel production;2 the amount of coke oven coke used in iron and steel production each year;3 the yearly consumption of coke oven coke in the iron and steel industry;4 the annual usage of coke oven coke in iron and steelmaking;Annual Consumption of Fuel: Iron Steel, Coke Oven Coke;Annual Consumption of Iron Steel Coke Oven Coke in Iron Steel" -Annual_Consumption_Fuel_IronSteel_DieselOil,"Annual Consumption of Diesel Oil in Iron Steel Industries;Annual Consumption of Fuel: Iron Steel, Diesel Oil;how much diesel oil does the iron and steel industry use each year?;how much diesel oil is consumed by the iron and steel industry each year?;what is the amount of diesel oil used by the iron and steel industry each year?;what is the annual consumption of diesel oil in the iron and steel industry?" -Annual_Consumption_Fuel_IronSteel_FuelOil,"Annual Consumption of Fuel Oil in Iron Steel;Annual Consumption of Fuel: Iron Steel, Fuel Oil;how much fuel oil does the iron and steel industry use each year?;how much fuel oil is used in iron and steel production each year?;what is the annual consumption of fuel oil in the iron and steel industry?;what is the annual fuel oil consumption of the iron and steel industry?" -Annual_Consumption_Fuel_IronSteel_HardCoal,"Annual Consumption of Fuel: Iron Steel, Hard Coal;Annual Consumption of Hard Coal in Iron Steel;how much fuel do iron and steel mills and hard coal mines consume each year?;how much fuel is consumed each year by iron and steel mills and hard coal mines?;what is the amount of fuel consumed each year by iron and steel mills and hard coal mines?;what is the annual fuel consumption of iron and steel mills and hard coal mines?" -Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Iron Steel, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Iron and Steel Industries;the amount of liquefied petroleum gas used in the iron and steel industry each year;the annual consumption of liquefied petroleum gas in the iron and steel industry;the annual rate of liquefied petroleum gas consumption in the iron and steel industry;the yearly use of liquefied petroleum gas in the iron and steel industry" -Annual_Consumption_Fuel_IronSteel_NaturalGas,"Annual Consumption of Fuel: Iron Steel, Natural Gas;Annual Consumption of Natural Gas in Iron Steel;annual consumption of natural gas in iron and steel industry;annual natural gas consumption by the iron and steel industry;the amount of natural gas used by the iron and steel industry each year;the annual natural gas usage of the iron and steel industry" -Annual_Consumption_Fuel_Kerosene,Annual Consumption of EIA_Kerosene;Annual Consumption of Fuel: EIA_Kerosene -Annual_Consumption_Fuel_KeroseneJetFuel,Annual Consumption of Fuel: Kerosene Jet Fuel;Annual Consumption of Kerosene Jet Fuel;how much kerosene jet fuel is consumed each year?;how much kerosene jet fuel is used each year?;what is the annual consumption of kerosene jet fuel?;what is the yearly consumption of kerosene jet fuel? -Annual_Consumption_Fuel_LiquifiedPetroleumGas,Annual Consumption of Fuel: Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas -Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse,"Annual Consumption of Fuel: Liquefied Petroleum Gas, Non Energy Use" -Annual_Consumption_Fuel_Lubricants,Annual Consumption of Fuel: Lubricants;Annual Consumption of Lubricants;how much lubricant is consumed annually?;how much lubricant is used each year?;how much lubricant is used in a year?;what is the annual consumption of lubricants? -Annual_Consumption_Fuel_Lubricants_NonEnergyUse,"Annual Consumption of Fuel: Lubricants, Non Energy Use;Annual Consumption of Lubricants in Non-Energy Use;consumption of lubricants for non-energy purposes;lubricant use in non-energy applications;non-energy use of lubricants;use of lubricants in non-energy applications" -Annual_Consumption_Fuel_MachineryIndustry_DieselOil,"Annual Consumption of Diesel Oil in Machinery Industries;Annual Consumption of Fuel: Machinery Industry, Diesel Oil;the annual consumption of diesel oil by machinery industries;the annual diesel oil consumption of machinery industries;the yearly consumption of diesel oil by machinery industries;what is the annual consumption of diesel oil by machinery industries?" -Annual_Consumption_Fuel_MachineryIndustry_FuelOil,"Annual Consumption of Fuel Oil in Machinery Industries;Annual Consumption of Fuel: Machinery Industry, Fuel Oil;how much fuel oil do machinery industries use each year?;how much fuel oil is used by machinery industries each year?;what is the amount of fuel oil used by machinery industries each year?;what is the annual consumption of fuel oil in machinery industries?" -Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas In Machinery Industries;Annual Consumption of Fuel: Machinery Industry, Liquefied Petroleum Gas;how much liquefied petroleum gas is consumed by machinery industries each year?;how much liquefied petroleum gas is used in machinery industries each year?;what is the amount of liquefied petroleum gas used by machinery industries each year?;what is the annual consumption of liquefied petroleum gas in machinery industries?" -Annual_Consumption_Fuel_MachineryIndustry_NaturalGas,"Annual Consumption Of Natural Gas In Machinery Industries;Annual Consumption of Fuel: Machinery Industry, Natural Gas;how much natural gas do machinery industries use each year?;how much natural gas is used by machinery industries each year?;what is the amount of natural gas used by machinery industries each year?;what is the annual consumption of natural gas by machinery industries?" -Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Coke Oven Coke in Main Activity Producer Combined Heat Power Plants;Annual Consumption of Fuel: Main Activity Producer Combined Heat Power Plants, Natural Gas, Fuel Transformation;the amount of coke oven coke consumed by main activity producer combined heat power plants each year;the annual amount of coke oven coke used by main activity producer combined heat power plants;the yearly consumption of coke oven coke by main activity producer combined heat power plants;the yearly usage of coke oven coke by main activity producer combined heat power plants" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_DieselOil_FuelTransformation,"Annual Consumption of Diesel Oil in Main Activity Producer Electricity Power Plants Industries for Fuel Transformation;Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Diesel Oil, Fuel Transformation;annual diesel oil usage in power plants and fuel transformation industries;diesel oil consumption in power plants and fuel transformation industries per year;the amount of diesel oil used in power plants and fuel transformation industries each year;the annual consumption of diesel oil by power plants and fuel transformation industries" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_FuelOil_FuelTransformation,"Annual Consumption of Fuel Oil in Main Activity Producer Electricity Power Plants;Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Fuel Oil, Fuel Transformation;annual fuel oil consumption in power plants that generate electricity as their main activity;annual fuel oil consumption in power plants that generate electricity as their primary business;annual fuel oil usage in power plants that generate electricity as their main business;annual fuel oil use in power plants that generate electricity as their primary activity" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_HardCoal_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Hard Coal, Fuel Transformation;Annual Consumption of Hard Coal in Fuel Transformation;the amount of fuel consumed by electricity power plants, hard coal, and fuel transformation each year;the annual fuel consumption of electricity power plants, hard coal, and fuel transformation, in total;the annual fuel usage of electricity power plants, hard coal, and fuel transformation;the total amount of fuel used by electricity power plants, hard coal, and fuel transformation in a year" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_NaturalGas_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, Natural Gas, Fuel Transformation;Annual Consumption of Natural Gas by Main Activity Producer Electricity Power Plants;electricity power plants as the main activity producer of natural gas consumption" -Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherBituminousCoal_FuelTransformation,"Annual Consumption of Fuel: Main Activity Producer Electricity Power Plants, UN_Other Bituminous Coal, Fuel Transformation;Annual Consumption of Other Bituminous Coal in Fuel Transformation;annual consumption of fuel: main activity producer electricity power plants, un_other bituminous coal, fuel transformation;the amount of fuel consumed by electricity power plants each year, including bituminous coal;the amount of fuel consumed each year by electricity power plants, which is mainly bituminous coal, is transformed into energy;the amount of fuel used by electricity power plants each year, including bituminous coal, for fuel transformation" -Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal,"Annual Consumption of Anthracite Coal in Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, EIA_Anthracite Coal;the amount of anthracite coal used by manufacturing industries each year;the annual rate of anthracite coal consumption in manufacturing;the annual usage of anthracite coal in manufacturing;the yearly consumption of anthracite coal in manufacturing" -Annual_Consumption_Fuel_Manufacturing_Bagasse,"Annual Consumption of Bagasse in Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, Bagasse;the amount of bagasse used in manufacturing industries each year;the annual usage of bagasse in manufacturing industries;the yearly amount of bagasse used in manufacturing;the yearly consumption of bagasse in manufacturing" -Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas,"Annual Consumption of Blast Furnace Gas in Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, Blast Furnace Gas;how much blast furnace gas do manufacturing industries consume each year?;how much blast furnace gas is consumed by manufacturing industries each year?;what is the amount of blast furnace gas consumed by manufacturing industries each year?;what is the annual consumption of blast furnace gas by manufacturing industries?" -Annual_Consumption_Fuel_Manufacturing_BrownCoal,"Annual Consumption of Brown Coal in Manufacturing;Annual Consumption of Fuel: Manufacturing, Brown Coal;how much brown coal is consumed by manufacturing each year?;how much brown coal is used in manufacturing each year?;what is the amount of brown coal used in manufacturing each year?;what is the annual consumption of brown coal in manufacturing?" -Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke,"Annual Consumption of Coke Oven Coke in Manufacturing;Annual Consumption of Fuel: Manufacturing, Coke Oven Coke;annual coke oven coke consumption in manufacturing;the amount of coke oven coke used in manufacturing each year;the amount of coke oven coke used in manufacturing in a year;the annual rate of coke oven coke consumption in manufacturing" -Annual_Consumption_Fuel_Manufacturing_DieselOil,"Annual Consumption of Diesel Oil by Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, Diesel Oil;annual diesel oil consumption by manufacturing industries;the annual rate of diesel oil consumption by manufacturing industries;the yearly consumption of diesel oil by manufacturing industries;what is the annual consumption of diesel oil by manufacturing industries?" -Annual_Consumption_Fuel_Manufacturing_FuelOil,"Annual Consumption of Fuel Oil in Manufacturing;Annual Consumption of Fuel: Manufacturing, Fuel Oil;how much fuel oil do manufacturers use each year?;how much fuel oil is consumed in manufacturing each year?;how much fuel oil is used in manufacturing each year?;what is the annual consumption of fuel oil in manufacturing?" -Annual_Consumption_Fuel_Manufacturing_Fuelwood,"Annual Consumption of Fuel: Manufacturing, Fuelwood;Annual Consumption of Fuelwood in Manufacturing;how much fuelwood is consumed in manufacturing each year?;how much fuelwood is used in manufacturing each year?;what is the amount of fuelwood used in manufacturing each year?;what is the annual consumption of fuelwood in manufacturing?" -Annual_Consumption_Fuel_Manufacturing_HardCoal,"Annual Consumption of Fuel: Manufacturing, Hard Coal;Annual Consumption of Hard Coal in Manufacturing Industries;the amount of hard coal that manufacturing industries use each year;the amount of hard coal used by manufacturing industries each year;the annual rate at which manufacturing industries consume hard coal;the yearly consumption of hard coal by manufacturing industries" -Annual_Consumption_Fuel_Manufacturing_Kerosene,"1 the amount of kerosene used by manufacturing industries each year;2 the annual rate of kerosene consumption in manufacturing industries;3 the yearly amount of kerosene used by manufacturing industries;4 the total amount of kerosene used by manufacturing industries in a year;Annual Consumption Of Kerosene In Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, EIA_Kerosene" -Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Manufacturing, Liquefied Petroleum Gas;Annual Consumption of Liquified Petroleum Gas in Manufacturing;annual consumption of liquefied petroleum gas in manufacturing;liquefied petroleum gas consumption in manufacturing on an annual basis;the amount of liquefied petroleum gas consumed in manufacturing each year;the annual liquefied petroleum gas consumption of manufacturing" -Annual_Consumption_Fuel_Manufacturing_MotorGasoline,"5 the annual gasoline consumption of manufacturing industries;Annual Consumption Of Motor Gasoline In Manufacturing Industries;Annual Consumption of Fuel: Manufacturing, Motor Gasoline;how much motor gasoline do manufacturing industries use each year?;how much motor gasoline do manufacturing industries use in a year?;the annual gasoline usage of manufacturing industries" -Annual_Consumption_Fuel_Manufacturing_NaturalGas,"1 the amount of natural gas used in manufacturing each year;2 the annual rate of natural gas consumption in manufacturing;3 the yearly amount of natural gas used in manufacturing;5 the amount of natural gas used in manufacturing in a year;Annual Consumption of Fuel: Manufacturing, Natural Gas;Annual Consumption of Natural Gas for Manufacturing" -Annual_Consumption_Fuel_Manufacturing_OtherBituminousCoal,"Annual Consumption of Fuel: Manufacturing, UN_Other Bituminous Coal;Annual Consumption of Other Bituminous Coal in Manufacturing Industries;the amount of other bituminous coal that manufacturing industries use each year;the amount of other bituminous coal used by manufacturing industries each year;the annual rate of consumption of other bituminous coal by manufacturing industries;the yearly consumption of other bituminous coal by manufacturing industries" -Annual_Consumption_Fuel_Manufacturing_OtherOilProducts,"Annual Consumption of Fuel: Manufacturing, UN_Other Oil Products;Annual Consumption of UN Other Oil Product in Manufacturing Industries;the amount of un other oil product consumed by manufacturing industries each year;the amount of un other oil product that manufacturing industries use each year;the annual rate of consumption of un other oil product by manufacturing industries;the yearly consumption of un other oil product by manufacturing industries" -Annual_Consumption_Fuel_Manufacturing_PetroleumCoke,"Annual Consumption of Fuel: Manufacturing, Petroleum Coke;Annual Consumption of Petroleum Coke in Manufacturing Industries;how much petroleum coke do manufacturing industries use each year?;how much petroleum coke is used by manufacturing industries each year?;the amount of petroleum coke used by manufacturing industries each year;what is the total amount of petroleum coke used by manufacturing industries in a year?" -Annual_Consumption_Fuel_Manufacturing_VegetalWaste,"Annual Consumption of Fuel: Manufacturing, Vegetal Waste;Annual Consumption of Vegetal Waste Manufacturing;the amount of vegetable waste produced each year;the annual amount of vegetable waste used in manufacturing;the annual consumption of vegetable waste in manufacturing;the quantity of vegetable waste used in manufacturing each year" -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil,"Annual Consumption of Diesel Oil in Mining And Quarrying Industries;Annual Consumption of Fuel: Mining And Quarrying Industry, Diesel Oil;the amount of diesel oil used in mining and quarrying industries each year;the annual rate of diesel oil consumption in the mining and quarrying industries;the total amount of diesel oil used in mining and quarrying industries in one year;the yearly consumption of diesel oil in the mining and quarrying industries" -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil,"Annual Consumption of Fuel Oil in Mining and Quarrying Industries;Annual Consumption of Fuel: Mining And Quarrying Industry, Fuel Oil;the amount of fuel oil used in mining and quarrying industries each year;the annual rate of fuel oil consumption in the mining and quarrying industry;the total amount of fuel oil used in mining and quarrying industries over the course of a year;the yearly consumption of fuel oil in the mining and quarrying sector" -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Mining And Quarrying Industry, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Mining And Quarrying Industries;how much liquefied petroleum gas is consumed annually by the mining and quarrying industries?;what is the amount of liquefied petroleum gas consumed annually by the mining and quarrying industries?;what is the annual consumption of liquefied petroleum gas in the mining and quarrying industries?;what is the annual usage of liquefied petroleum gas in the mining and quarrying industries?" -Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas,"Annual Consumption of Fuel: Mining And Quarrying Industry, Natural Gas;Annual Consumption of Natural Gas in Mining And Quarrying Industries;how much natural gas do mining and quarrying industries consume annually?;how much natural gas is used in mining and quarrying industries each year?;what is the amount of natural gas used in mining and quarrying industries each year?;what is the annual consumption of natural gas in mining and quarrying industries?" -Annual_Consumption_Fuel_MotorGasoline,Annual Consumption of Fuel: Motor Gasoline;Annual Consumption of Motor Gasoline;annual fuel consumption of motor gasoline;annual gasoline consumption;how much gasoline is consumed each year;the yearly consumption of motor gasoline -Annual_Consumption_Fuel_Naphtha,Annual Consumption Of Naphtha;Annual Consumption of Fuel: Naphtha;annual naphtha demand;annual naphtha usage;how much naphtha is consumed each year?;the yearly consumption of naphtha -Annual_Consumption_Fuel_Naphtha_NonEnergyUse,"Annual Consumption of Fuel: Naphtha, Non Energy Use;Annual Consumption of Naphtha For Non-Energy Use;the amount of naphtha used for non-energy purposes each year;the annual rate of naphtha consumption for non-energy uses;the annual use of naphtha for non-energy purposes;the yearly consumption of naphtha for non-energy uses" -Annual_Consumption_Fuel_NaturalGas,Annual Consumption of Fuel: Natural Gas;Annual Consumption of Natural Gas;how much natural gas does the us consume each year?;how much natural gas does the us go through each year?;how much natural gas does the us use in a year?;what is the annual natural gas consumption of the united states? -Annual_Consumption_Fuel_NaturalGas_NonEnergyUse,"Annual Consumption Of Natural Gas For Non-Energy Use;Annual Consumption of Fuel: Natural Gas, Non Energy Use;the amount of natural gas used for non-energy purposes each year;the annual consumption of natural gas for non-energy uses;the annual non-energy use of natural gas;the yearly amount of natural gas used for non-energy purposes" -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil,"Annual Consumption of Diesel Oil in Non Ferrous Metals Industry;Annual Consumption of Fuel: Non Ferrous Metals Industry, Diesel Oil;how much diesel oil does the non-ferrous metals industry use each year?;how much diesel oil is used in the non-ferrous metals industry each year?;what is the annual consumption of diesel oil in the non-ferrous metals industry?;what is the annual usage of diesel oil in the non-ferrous metals industry?" -Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas,"Annual Consumption of Fuel: Non Ferrous Metals Industry, Natural Gas;Annual Consumption of Natural Gas by Non-Ferrous Metal Industries;the amount of natural gas consumed by non-ferrous metal industries each year;the annual natural gas consumption of non-ferrous metal industries;the total natural gas consumed by non-ferrous metal industries in one year;the yearly natural gas usage of non-ferrous metal industries" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil,"Annual Consumption of Diesel Oil in Non-Metallic Minerals Industries;Annual Consumption of Fuel: Non Metallic Minerals Industry, Diesel Oil;annual diesel oil use in the non-metallic minerals industry;diesel oil consumption in the non-metallic minerals industry;the amount of diesel oil used in the non-metallic minerals industry each year;the annual rate of diesel oil consumption in the non-metallic minerals industry" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil,"Annual Consumption of Fuel Oil In The Non-Metallic Industry;Annual Consumption of Fuel: Non Metallic Minerals Industry, Fuel Oil;how much fuel oil does the non-metallic industry consume annually?;how much fuel oil does the non-metallic sector use each year?;what is the annual fuel oil consumption of the non-metallic industry?;what is the annual fuel oil usage of the non-metallic sector?" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Hard Coal;Annual Consumption of Hard Coal in Non-Metallic Minerals Industries;the amount of hard coal used in non-metallic minerals industries each year;the annual amount of hard coal that is consumed in non-metallic minerals industries;the annual rate at which hard coal is used in non-metallic minerals industries;the yearly consumption of hard coal in non-metallic minerals industries" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Non-Metallic Minerals Industries;the amount of liquefied petroleum gas consumed by non-metallic minerals industries each year;the amount of liquefied petroleum gas that non-metallic minerals industries use each year;the annual rate of liquefied petroleum gas consumption by non-metallic minerals industries;the yearly consumption of liquefied petroleum gas by non-metallic minerals industries" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Natural Gas;Annual Consumption of Natural Gas by Non-Metallic Minerals Industries;the amount of natural gas consumed by non-metallic minerals industries each year;the amount of natural gas used by non-metallic minerals industries in a year;the annual rate of natural gas consumption by non-metallic minerals industries;the yearly consumption of natural gas by non-metallic minerals industries" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherBituminousCoal,"Annual Consumption of Fuel: Non Metallic Minerals Industry, UN_Other Bituminous Coal;Annual Consumption of Other Bituminous Coal in Non-Metallic Mineral Industries;the amount of other bituminous coal consumed by non-metallic mineral industries each year;the annual amount of other bituminous coal used by non-metallic mineral industries;the annual rate of consumption of other bituminous coal by non-metallic mineral industries;the yearly consumption of other bituminous coal by non-metallic mineral industries" -Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke,"Annual Consumption of Fuel: Non Metallic Minerals Industry, Petroleum Coke;Annual Petroleum Coke Consumption By Non-Metallic Minerals Industries;non-metallic minerals industries' annual petroleum coke consumption;the amount of petroleum coke consumed by non-metallic minerals industries each year;the annual rate of petroleum coke consumption by non-metallic minerals industries;the total amount of petroleum coke consumed by non-metallic minerals industries in a year" -Annual_Consumption_Fuel_OilGasExtraction_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption Of Natural Gas Used For Oil and Gas Extraction;Annual Consumption of Fuel: Oil Gas Extraction, Natural Gas, Energy Industry Own Use;the amount of natural gas used for oil and gas extraction each year;the amount of natural gas used for oil and gas extraction in a year;the annual use of natural gas for oil and gas extraction;the yearly consumption of natural gas for oil and gas extraction" -Annual_Consumption_Fuel_OilRefineries_CrudeOil_FuelTransformation,"Annual Consumption of Crude Oil In Fuel Transformation;Annual Consumption of Fuel: Oil Refineries, Crude Oil, Fuel Transformation;the annual amount of crude oil that is transformed into fuel;the annual rate of crude oil consumption for fuel transformation;what is the annual consumption of crude oil for fuel transformation?" -Annual_Consumption_Fuel_OilRefineries_DieselOil_EnergyIndustryOwnUse,"Annual Consumption Of Diesel Oil By Oil Refineries;Annual Consumption of Fuel: Oil Refineries, Diesel Oil, Energy Industry Own Use;the amount of diesel oil consumed by oil refineries each year;the amount of diesel oil that oil refineries use each year;the annual consumption of diesel oil by oil refineries;the annual diesel oil usage of oil refineries" -Annual_Consumption_Fuel_OilRefineries_FuelOil_EnergyIndustryOwnUse,"Annual Consumption of Fuel Oil in Oil Refineries;Annual Consumption of Fuel: Oil Refineries, Fuel Oil, Energy Industry Own Use;the amount of fuel oil used by oil refineries each year;the annual rate of fuel oil consumption by oil refineries;the total amount of fuel oil used by oil refineries in a year;the yearly consumption of fuel oil by oil refineries" -Annual_Consumption_Fuel_OilRefineries_LiquifiedPetroleumGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Liquefied Petroleum Gas, Energy Industry Own Use;Annual Consumption of Liquefied Petroleum Gas in Oil Refineries;how much liquefied petroleum gas is consumed in oil refineries each year?;how much liquefied petroleum gas is used in oil refineries each year?;what is the amount of liquefied petroleum gas used in oil refineries each year?;what is the annual consumption of liquefied petroleum gas in oil refineries?" -Annual_Consumption_Fuel_OilRefineries_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: Oil Refineries, Natural Gas Liquids, Fuel Transformation;Annual Consumption of Natural Gas Liquids in Fuel Transformation;the amount of natural gas liquids consumed each year in the process of converting them into fuel;the annual amount of natural gas liquids used to transform into fuel;the annual usage of natural gas liquids in fuel transformation;the yearly consumption of natural gas liquids for fuel transformation" -Annual_Consumption_Fuel_OilRefineries_NaturalGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Natural Gas, Energy Industry Own Use;Annual Consumption of Natural Gas for Oil Refineries;how much natural gas do oil refineries use each year?;how much natural gas does the oil refining industry consume annually?;how much natural gas is used by oil refineries in a year?;what is the annual natural gas consumption of oil refineries?" -Annual_Consumption_Fuel_OilRefineries_RefineryFeedstocks_FuelTransformation,"Annual Consumption of Fuel: Oil Refineries, Refinery Feedstocks, Fuel Transformation;Annual Consumption of Refinery Feedstocks In Oil Refineries;how much refinery feedstock do oil refineries consume annually?;how much refinery feedstock is consumed annually by oil refineries?;what is the amount of refinery feedstock consumed annually by oil refineries?;what is the annual consumption of refinery feedstock by oil refineries?" -Annual_Consumption_Fuel_OilRefineries_RefineryGas_EnergyIndustryOwnUse,"Annual Consumption of Fuel: Oil Refineries, Refinery Gas, Energy Industry Own Use;Annual Consumption of Refinery Gas in Energy Industry Own Use" -Annual_Consumption_Fuel_OtherBituminousCoal,Annual Consumption of Fuel: UN_Other Bituminous Coal;Annual Consumption of Other Bituminous Coal;how much other bituminous coal is consumed annually?;how much other bituminous coal is used each year?;what is the annual consumption of other bituminous coal?;what is the yearly consumption of other bituminous coal? -Annual_Consumption_Fuel_OtherIndustry_DieselOil,"Annual Consumption of Diesel Oil in Other Industry;Annual Consumption of Fuel: UN_Other Industry, Diesel Oil;diesel oil consumption by un_other industry per year;the amount of diesel oil consumed by un_other industry each year;the annual diesel oil usage of un_other industry;the yearly consumption of diesel oil by un_other industry" -Annual_Consumption_Fuel_OtherIndustry_FuelOil,"Annual Consumption of Fuel Oil in Other Industries;Annual Consumption of Fuel: UN_Other Industry, Fuel Oil;how much fuel oil do other industries use each year?;how much fuel oil is consumed by other industries each year?;how much fuel oil is used in other industries each year?;what is the annual consumption of fuel oil in other industries?" -Annual_Consumption_Fuel_OtherIndustry_Fuelwood,"Annual Consumption of Fuel Wood in Other Industry;Annual Consumption of Fuel: UN_Other Industry, Fuelwood;annual consumption of fuelwood by un_other industry;the amount of fuelwood un_other industry consumes annually;the annual fuelwood usage of un_other industry;un_other industry's annual fuelwood consumption" -Annual_Consumption_Fuel_OtherIndustry_HardCoal,"Annual Consumption of Fuel: UN_Other Industry, Hard Coal;Annual Consumption of Hard Coal In Other Industry;hard coal consumption in other industries;hard coal use in industries other than power;hard coal use in other industries;the amount of hard coal used in other industries" -Annual_Consumption_Fuel_OtherIndustry_Kerosene,"Annual Consumption of Fuel: UN_Other Industry, EIA_Kerosene;Annual Consumption of Kerosene by Other Industries;how much kerosene do other industries consume annually?;how much kerosene is used by other industries each year?;what is the amount of kerosene used by other industries each year?;what is the annual consumption of kerosene by other industries?" -Annual_Consumption_Fuel_OtherIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel-Liquefied Petroleum Gas in Other Industries;Annual Consumption of Fuel: UN_Other Industry, Liquefied Petroleum Gas;annual liquefied petroleum gas use in other industries;liquefied petroleum gas (lpg) consumption in other industries each year;liquefied petroleum gas consumption in other industries each year;the amount of liquefied petroleum gas used in other industries each year" -Annual_Consumption_Fuel_OtherIndustry_MotorGasoline,"Annual Consumption of Fuel: UN_Other Industry, Motor Gasoline;Annual Consumption of Motor Gasoline in Other Industries;how much motor gasoline is consumed by other industries each year?;how much motor gasoline is used by other industries annually?;what is the annual consumption of motor gasoline by other industries?;what is the yearly consumption of motor gasoline by other industries?" -Annual_Consumption_Fuel_OtherIndustry_NaturalGas,"Annual Consumption of Fuel: UN_Other Industry, Natural Gas;Annual Consumption of Natural Gas in Other Industries;the amount of natural gas used by other industries each year;the annual consumption of natural gas by industries other than electricity generation;the annual natural gas consumption of industries other than power generation;the total amount of natural gas used by industries other than power plants" -Annual_Consumption_Fuel_OtherIndustry_NaturalGasLiquids_FuelTransformation,"Annual Consumption of Fuel: UN_Other Industry, Natural Gas Liquids, Fuel Transformation;Annual Consumption of Natural Gas Liquids in Other Industries;how much natural gas liquids are used in other industries each year?;how much natural gas liquids do other industries use each year?;what is the amount of natural gas liquids used in other industries each year?;what is the annual consumption of natural gas liquids in other industries?" -Annual_Consumption_Fuel_OtherIndustry_OtherBituminousCoal,"Annual Consumption of Bituminous Coal by Other Industries;Annual Consumption of Fuel: UN_Other Industry, UN_Other Bituminous Coal;how much bituminous coal is consumed by other industries annually?;how much bituminous coal is consumed by other industries each year?;what is the amount of bituminous coal consumed by other industries each year?;what is the annual consumption of bituminous coal by other industries?" -Annual_Consumption_Fuel_OtherManufacturingIndustry_Bagasse,"1 the amount of bagasse used in other manufacturing industries each year;2 the annual consumption of bagasse in non-sugarcane industries;3 the yearly use of bagasse in industries other than sugar production;4 the amount of bagasse consumed by industries other than sugar mills each year;Annual Consumption of Bagasse in Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Bagasse" -Annual_Consumption_Fuel_OtherManufacturingIndustry_BrownCoal,"Annual Consumption of Brown Coal in Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Brown Coal;how much brown coal do other manufacturing industries consume each year?;how much brown coal is consumed by other manufacturing industries each year?;what is the amount of brown coal consumed by other manufacturing industries each year?;what is the annual consumption of brown coal by other manufacturing industries?" -Annual_Consumption_Fuel_OtherManufacturingIndustry_CokeOvenCoke,"Annual Consumption Of Coke Oven Gas In Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Coke Oven Coke;annual coke oven gas consumption in other manufacturing industries;coke oven gas consumption in other manufacturing industries per year;the amount of coke oven gas consumed by other manufacturing industries each year;the annual amount of coke oven gas used by other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_DieselOil,"Annual Consumption of Diesel Oil in Other Manufacturing Industry;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Diesel Oil;annual consumption of diesel oil in other manufacturing industries;other manufacturing industries' annual diesel oil consumption;the amount of diesel oil consumed by other manufacturing industries each year;the annual diesel oil usage of other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_FuelOil,"Annual Consumption of Fuel Oil in Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Fuel Oil;the amount of fuel oil used in other manufacturing industries each year;the amount of fuel oil used in other manufacturing industries over the course of a year;the annual rate of fuel oil consumption in other manufacturing industries;the yearly consumption of fuel oil in other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_Fuelwood,"Annual Consumption of Fuel Wood in Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Fuelwood;the amount of wood used as fuel in other manufacturing industries each year;the amount of wood used as fuel in other manufacturing industries over the course of a year;the annual rate of wood consumption for fuel in other manufacturing industries;the yearly consumption of wood for fuel in other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_HardCoal,"Annual Consumption Of Hard Coal By Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Hard Coal;hard coal consumption by other manufacturing industries each year;the amount of hard coal that other manufacturing industries use each year;the amount of hard coal used by other manufacturing industries each year;the annual consumption of hard coal by other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_Kerosene,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, EIA_Kerosene;Annual Consumption of Kerosene in Other Manufacturing Industries;how much kerosene do other manufacturing industries use annually?;how much kerosene is used in other manufacturing industries each year?;what is the amount of kerosene used in other manufacturing industries each year?;what is the annual consumption of kerosene in other manufacturing industries?" -Annual_Consumption_Fuel_OtherManufacturingIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Liquefied Petroleum Gas;Annual Liquefied Petroleum Gas Consumption in Other UN Manufacturing Industries;the amount of liquefied petroleum gas that un manufacturing industries use each year;the amount of liquefied petroleum gas used each year by un manufacturing industries;the annual consumption of liquefied petroleum gas by un manufacturing industries;the yearly use of liquefied petroleum gas by un manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_MotorGasoline,"Annual Consumption Of Motor Gasoline By Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Motor Gasoline;the amount of gasoline manufacturing industries consume each year;the amount of gasoline manufacturing industries use each year;the amount of gasoline used by manufacturing industries each year;the annual gasoline consumption of manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_NaturalGas,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Natural Gas;Annual Consumption of Natural Gas in Other Manufacturing Industry;how much natural gas is consumed each year in other manufacturing industries?;how much natural gas is used each year in other manufacturing industries?;what is the amount of natural gas used each year in other manufacturing industries?;what is the annual consumption of natural gas in other manufacturing industries?" -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherBituminousCoal,"Annual Consumption Of Bituminous Coal in Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, UN_Other Bituminous Coal;how much bituminous coal is consumed annually by other manufacturing industries?;how much bituminous coal is used annually by other manufacturing industries?;what is the annual consumption of bituminous coal by other manufacturing industries?;what is the annual use of bituminous coal by other manufacturing industries?" -Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherOilProducts,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, UN_Other Oil Products;Annual Consumption of Other Oil Products in Other Manufacturing Industries;annual use of other oil products in other manufacturing industries;how much other oil products are used in other manufacturing industries each year;the amount of other oil products used in other manufacturing industries each year;the annual consumption of other oil products in other manufacturing industries" -Annual_Consumption_Fuel_OtherManufacturingIndustry_PetroleumCoke,"1 other manufacturing industries' annual petroleum coke consumption;2 the annual consumption of petroleum coke by other manufacturing industries;3 the amount of petroleum coke consumed by other manufacturing industries each year;4 the yearly amount of petroleum coke used by other manufacturing industries;Annual Consumption Of Petroleum Coke By Other Manufacturing Industries;Annual Consumption of Fuel: UN_Other Manufacturing Industry, Petroleum Coke" -Annual_Consumption_Fuel_OtherManufacturingIndustry_VegetalWaste,"Annual Consumption of Fuel: UN_Other Manufacturing Industry, Vegetal Waste;Annual Consumption of Vegetal Waste in Other Manufacturing Industry;annual consumption of fuel in the un_other manufacturing industry and vegetal waste sector;the amount of fuel consumed annually by the un_other manufacturing industry and vegetal waste sector;the amount of fuel used by the un_other manufacturing industry and vegetal waste sector each year;the annual fuel consumption of the un_other manufacturing industry and vegetal waste sector" -Annual_Consumption_Fuel_OtherOilProducts,Annual Consumption of Fuel: UN_Other Oil Products;Annual Consumption of Other Oil Products;the amount of other oil products consumed each year;the amount of other oil products used each year;the annual rate of consumption of other oil products;the yearly consumption of other oil products -Annual_Consumption_Fuel_OtherOilProducts_NonEnergyUse,"Annual Consumption of Fuel: UN_Other Oil Products, Non Energy Use;Annual Consumption of Other Oil Products in Non-Energy Use;how much oil is used each year for non-energy purposes?;how much oil is used for non-energy purposes each year?;what is the annual amount of oil used for non-energy use?;what is the annual consumption of oil for non-energy use?" -Annual_Consumption_Fuel_OtherSector_Charcoal,"Annual Consumption of Charcoal by Other Sectors;Annual Consumption of Fuel: UN_Other Sector, Charcoal;charcoal consumption by other sectors each year;the amount of charcoal used by other sectors each year;the annual amount of charcoal used by other sectors;the yearly consumption of charcoal by other sectors" -Annual_Consumption_Fuel_OtherSector_DieselOil,"Annual Consumption of Diesel Oil in Other Sectors;Annual Consumption of Fuel: UN_Other Sector, Diesel Oil;diesel oil consumption in other sectors each year;how much diesel oil is used in other sectors in a year?;what is the amount of diesel oil used by non-transportation sectors annually?;what is the annual consumption of diesel oil in non-transportation sectors?" -Annual_Consumption_Fuel_OtherSector_FuelOil,"Annual Consumption of Fuel Oil in Other Sectors;Annual Consumption of Fuel: UN_Other Sector, Fuel Oil;the amount of fuel oil used in other sectors each year;the amount of fuel oil used in other sectors in a year;the annual fuel oil usage in other sectors;the yearly consumption of fuel oil in other sectors" -Annual_Consumption_Fuel_OtherSector_Fuelwood,"Annual Consumption of Fuel: UN_Other Sector, Fuelwood;Annual Consumption of Fuelwood in Other Sectors;how much fuelwood is consumed in other sectors annually?;how much fuelwood is used in other sectors each year?;what is the amount of fuelwood used in other sectors each year?;what is the annual consumption of fuelwood in other sectors?" -Annual_Consumption_Fuel_OtherSector_HardCoal,"Annual Consumption of Fuel: UN_Other Sector, Hard Coal;Annual Consumption of Hard Coal in UN_Other Sectors;the amount of hard coal used in un_other sectors each year;the annual hard coal consumption of un_other sectors;the hard coal that un_other sectors use each year;the yearly hard coal usage of un_other sectors" -Annual_Consumption_Fuel_OtherSector_Kerosene,"Annual Consumption of Fuel: UN_Other Sector, EIA_Kerosene" -Annual_Consumption_Fuel_OtherSector_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Other Sector, Liquefied Petroleum Gas;Annual Consumption of Liquified Petroleum Gas by Other Sectors;how much liquified petroleum gas do other sectors consume each year?;how much liquified petroleum gas is consumed by other sectors each year?;what is the amount of liquified petroleum gas consumed by other sectors each year?;what is the annual consumption of liquified petroleum gas by other sectors?" -Annual_Consumption_Fuel_OtherSector_MotorGasoline,"1 how much motor gasoline is used in other sectors each year?;2 what is the annual consumption of motor gasoline in non-transportation sectors?;4 what is the annual consumption of motor gasoline in non-automotive sectors?;Annual Consumption of Fuel: UN_Other Sector, Motor Gasoline;Annual Consumption of Motor Gasoline in Other Sectors;the amount of motor gasoline used in other sectors each year" -Annual_Consumption_Fuel_OtherSector_NaturalGas,"Annual Consumption of Fuel: UN_Other Sector, Natural Gas;Annual Consumption of Natural Gas in Other Sectors;the amount of natural gas used in other sectors each year;the annual amount of natural gas consumed in sectors other than power;the yearly consumption of natural gas in sectors other than the power sector;the yearly use of natural gas in sectors other than electricity generation" -Annual_Consumption_Fuel_OtherSector_OtherBituminousCoal,"Annual Consumption Of Bituminous Coal By Other Sectors;Annual Consumption of Fuel: UN_Other Sector, UN_Other Bituminous Coal;how much bituminous coal is consumed by other sectors each year?;how much bituminous coal is used by other sectors each year?;what is the annual consumption of bituminous coal by other sectors?;what is the yearly consumption of bituminous coal by other sectors?" -Annual_Consumption_Fuel_OtherSector_VegetalWaste,"Annual Consumption of Fuel: UN_Other Sector, Vegetal Waste;Annual Consumption of Vegetal Waste In Other Sectors;how much vegetable waste is consumed in other sectors each year?;how much vegetable waste is used in other sectors each year?;what is the amount of vegetable waste consumed in other sectors each year?;what is the annual consumption of vegetable waste in other sectors?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil,"Annual Consumption of Fuel: Paper Pulp Print Industry, Diesel Oil;Annual consumption Of Diesel Oil In The Paper Pulp Print Industries;how much diesel oil is consumed by the paper, pulp, and print industries each year?;how much diesel oil is used in the paper, pulp, and print industries each year?;what is the amount of diesel oil used in the paper, pulp, and print industries each year?;what is the annual consumption of diesel oil in the paper, pulp, and print industries?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil,"Annual Consumption of Fuel Oil in Paper Pulp Print Industries;Annual Consumption of Fuel: Paper Pulp Print Industry, Fuel Oil;how much fuel oil do the paper pulp and print industries use each year?;how much fuel oil is used in the paper pulp and print industries each year?;what is the amount of fuel oil used by the paper pulp and print industries each year?;what is the annual fuel oil consumption of the paper pulp and print industries?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas,"Annual Consumption Of Liquefied Petroleum Gas Fuel In The Paper Pulp Print Industries;Annual Consumption of Fuel: Paper Pulp Print Industry, Liquefied Petroleum Gas;how much liquefied petroleum gas fuel do the paper, pulp, and print industries use each year?;how much liquefied petroleum gas fuel is used by the paper, pulp, and print industries each year?;what is the annual consumption of liquefied petroleum gas fuel in the paper, pulp, and print industries?;what is the annual usage of liquefied petroleum gas fuel in the paper, pulp, and print industries?" -Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas,"Annual Consumption of Fuel: Paper Pulp Print Industry, Natural Gas;Annual Consumption of Natural Gas In The Paper Pulp Industry;how much natural gas does the paper pulp industry use each year?;how much natural gas does the paper pulp industry use in a year?;what is the amount of natural gas consumed by the paper pulp industry each year?;what is the annual consumption of natural gas by the paper pulp industry?" -Annual_Consumption_Fuel_ParaffinWaxes,Annual Consumption of Fuel: Paraffin Waxes;Annual Consumption of Paraffin Waxes;annual paraffin wax demand;annual paraffin wax usage;how much paraffin wax is consumed each year;the amount of paraffin wax used each year -Annual_Consumption_Fuel_ParaffinWaxes_NonEnergyUse,"Annual Consumption of Fuel: Paraffin Waxes, Non Energy Use;Annual Consumption of Paraffin Waxes For Non-Energy Use;the amount of paraffin wax used each year for non-energy purposes;the annual amount of paraffin wax used for non-energy purposes;the annual consumption of paraffin wax for non-energy uses;the annual usage of paraffin wax for non-energy uses" -Annual_Consumption_Fuel_PetroleumCoke,Annual Consumption of Fuel: Petroleum Coke;Annual Consumption of Petroleum Coke;the amount of petroleum coke consumed each year;the annual petroleum coke usage;the annual rate of petroleum coke consumption;the yearly consumption of petroleum coke -Annual_Consumption_Fuel_PetroleumCoke_NonEnergyUse,"Annual Consumption of Fuel: Petroleum Coke, Non Energy Use;Annual Consumption of Petroleum Coke In Non-Energy Use;the amount of petroleum coke used for non-energy purposes each year;the annual consumption of petroleum coke for non-energy use;the annual consumption of petroleum coke for non-energy uses;the annual use of petroleum coke for non-energy purposes" -Annual_Consumption_Fuel_RailTransport_DieselOil,"1 how much diesel oil is used in rail transport each year?;2 what is the annual consumption of diesel oil in rail transport?;3 how much diesel oil is consumed by rail transport each year?;4 what is the amount of diesel oil used in rail transport each year?;Annual Consumption of Diesel Oil in Rail Transport;Annual Consumption of Fuel: Rail Transport, Diesel Oil" -Annual_Consumption_Fuel_RoadTransport_BioDiesel,"Annual Consumption of Biodiesel in Road Transport;Annual Consumption of Fuel: Road Transport, Bio Diesel;biodiesel consumption in road transport each year;biodiesel use in road transport on a yearly basis;the amount of biodiesel used in road transport each year;the annual amount of biodiesel used in road transport" -Annual_Consumption_Fuel_RoadTransport_BioGasoline,"Annual Consumption of Bio Gasoline in Road Transport;Annual Consumption of Fuel: Road Transport, Bio Gasoline;how much bio gasoline is used in road transport each year?;the amount of bio gasoline used in road transport each year;the annual amount of bio gasoline used in road vehicles;the yearly consumption of bio gasoline in road transport" -Annual_Consumption_Fuel_RoadTransport_DieselOil,"Annual Consumption of Diesel Oil in Road Transport;Annual Consumption of Fuel: Road Transport, Diesel Oil;the amount of diesel oil used in road transport each year;the annual rate of diesel oil consumption in road transport;the total amount of diesel oil used in road transport over the course of a year;the yearly consumption of diesel oil by road transport vehicles" -Annual_Consumption_Fuel_RoadTransport_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Road Transport, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Road Transport;how much lpg is used in road transport annually?;how much lpg is used in road transport each year?;the amount of liquefied petroleum gas used in road transport each year;the yearly consumption of liquefied petroleum gas in road vehicles" -Annual_Consumption_Fuel_RoadTransport_MotorGasoline,"Annual Consumption of Fuel: Road Transport, Motor Gasoline;Annual Consumption of Motor Gasoline in Road Transport;the amount of gasoline used in road transport each year;the amount of gasoline used in road transport in a year;the annual gasoline consumption of road vehicles;the yearly consumption of gasoline by road vehicles" -Annual_Consumption_Fuel_RoadTransport_NaturalGas,"Annual Consumption of Fuel: Road Transport, Natural Gas;Annual Natural Gas Consumption For Road Use;the amount of natural gas used on the roads each year;the annual amount of natural gas consumed by road vehicles;the annual consumption of natural gas for road transportation;the annual natural gas usage for road transportation" -Annual_Consumption_Fuel_TextileAndLeatherIndustry_DieselOil,"Annual Consumption of Diesel Oil in Textile And Leather Industries;Annual Consumption of Fuel: Textile And Leather Industry, Diesel Oil;the amount of diesel oil used in the textile and leather industries each year;the annual amount of diesel oil that is used by the textile and leather industries;the total amount of diesel oil that is used by the textile and leather industries in a year;the yearly consumption of diesel oil by the textile and leather industries" -Annual_Consumption_Fuel_TextileAndLeatherIndustry_FuelOil,"Annual Consumption Of Fuel Oil In Textile And Leather Industries;Annual Consumption of Fuel: Textile And Leather Industry, Fuel Oil;fuel oil consumption in the textile and leather industries;the amount of fuel oil used by the textile and leather industries;the annual fuel oil usage of the textile and leather industries;the textile and leather industries' annual fuel oil consumption" -Annual_Consumption_Fuel_TextileAndLeatherIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Textile And Leather Industry, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Textile And Leather Industries;the amount of liquefied petroleum gas consumed by the textile and leather industries each year;the amount of liquefied petroleum gas that the textile and leather industries use each year;the annual use of liquefied petroleum gas in the textile and leather industries;the yearly consumption of liquefied petroleum gas by the textile and leather industries" -Annual_Consumption_Fuel_TextileAndLeatherIndustry_NaturalGas,"Annual Consumption of Fuel: Textile And Leather Industry, Natural Gas;Annual Consumption of Natural Gas in Textile And Leather Industries;Annual Consumption of Natural Gas in Textile And Leather Industry;annual natural gas consumption in the textile and leather industry;how much natural gas is consumed by the textile and leather industry each year;the amount of natural gas used by the textile and leather industry annually;the annual natural gas usage of the textile and leather industry" -Annual_Consumption_Fuel_TransportEquipmentIndustry_NaturalGas,"Annual Consumption Of Natural Gas In Transport Equipment Industries;Annual Consumption of Fuel: Transport Equipment Industry, Natural Gas;how much natural gas is consumed by the transport equipment industry annually?;how much natural gas is used by transport equipment industries each year?;what is the annual consumption of natural gas by the transport equipment industry?;what is the annual natural gas consumption of the transport equipment industry?" -Annual_Consumption_Fuel_TransportIndustry_AviationGasoline,"Annual Consumption of Aviation Gasoline in Transport Industries;Annual Consumption of Fuel: Transport Industry, Aviation Gasoline;the amount of aviation gasoline used by the transportation industry each year;the annual rate at which aviation gasoline is used by the transportation industry;the total amount of aviation gasoline that is used by the transportation industry in a year;the yearly consumption of aviation gasoline by the transportation industry" -Annual_Consumption_Fuel_TransportIndustry_BioDiesel,"Annual Consumption of Biodiesel in Transport Industry;Annual Consumption of Fuel: Transport Industry, Bio Diesel;annual consumption of bio diesel in the transport industry;annual consumption of fuel in the transport industry: bio diesel;how much bio diesel does the transport industry use each year?;what is the annual consumption of bio diesel by the transport industry?" -Annual_Consumption_Fuel_TransportIndustry_BioGasoline,"Annual Consumption of Bio Gasoline in Transport Industries;Annual Consumption of Fuel: Transport Industry, Bio Gasoline;how much bio gasoline is used in transportation each year?;what is the amount of bio gasoline used in transportation each year?;what is the annual consumption of bio gasoline in transportation?;what is the annual usage of bio gasoline in transportation?" -Annual_Consumption_Fuel_TransportIndustry_DieselOil,"Annual Consumption of Diesel Oil for Transport Industries;Annual Consumption of Fuel: Transport Industry, Diesel Oil;the amount of diesel oil used by transport industries each year;the annual rate of diesel oil consumption by transport industries;the total amount of diesel oil used by transport industries in a year;the yearly amount of diesel oil used by transport industries" -Annual_Consumption_Fuel_TransportIndustry_FuelOil,"Annual Consumption of Fuel Oil in Transport Industry;Annual Consumption of Fuel: Transport Industry, Fuel Oil;fuel oil consumption in the transport industry;the amount of fuel oil that the transport industry consumes;the amount of fuel oil used by the transport industry;the transport industry's fuel oil usage" -Annual_Consumption_Fuel_TransportIndustry_KeroseneJetFuel,"Annual Consumption of Fuel: Transport Industry, Kerosene Jet Fuel;Annual Consumption of Kerosene Jet Fuel in Transport Industries;how much kerosene jet fuel does the transportation industry consume annually?;how much kerosene jet fuel is used by the transportation industry each year?;what is the amount of kerosene jet fuel used by the transportation industry each year?;what is the annual consumption of kerosene jet fuel by the transportation industry?" -Annual_Consumption_Fuel_TransportIndustry_LiquifiedPetroleumGas,"Annual Consumption of Fuel: Transport Industry, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas For Transport Industries;the amount of liquefied petroleum gas used by the transportation industry each year;the annual consumption of liquefied petroleum gas by the transportation sector;the total amount of liquefied petroleum gas used by the transportation industry in a year;the yearly amount of liquefied petroleum gas used by the transportation industry" -Annual_Consumption_Fuel_TransportIndustry_MotorGasoline,"Annual Consumption of Fuel: Transport Industry, Motor Gasoline;Annual Consumption of Motor Gasoline in Transport Industries;how much motor gasoline does the transport industry consume in a year?;how much motor gasoline does the transport industry use each year?;how much motor gasoline is consumed annually by the transport industry?;what is the annual consumption of motor gasoline by the transport industry?" -Annual_Consumption_Fuel_TransportIndustry_NaturalGas,"Annual Consumption Of Natural Gas In Transport Industries;Annual Consumption of Fuel: Transport Industry, Natural Gas;how much natural gas does the transport industry use each year?;how much natural gas is used by the transport industry each year?;what is the amount of natural gas consumed by the transport industry each year?;what is the annual consumption of natural gas by the transport industry?" -Annual_Consumption_Fuel_UnspecifiedSector_Charcoal,"Annual Consumption of Charcoal By Unspecified Sectors;Annual Consumption of Fuel: UN_Unspecified Sector, Charcoal;charcoal consumption by unspecified sectors each year;the amount of charcoal used by unspecified sectors each year;the annual amount of charcoal used by unspecified sectors;the yearly consumption of charcoal by unspecified sectors" -Annual_Consumption_Fuel_UnspecifiedSector_DieselOil,"Annual Consumption of Diesel Oil in Unspecified Sectors;Annual Consumption of Fuel: UN_Unspecified Sector, Diesel Oil;diesel oil consumption in unknown sectors each year;the amount of diesel oil used in unknown sectors each year;the amount of diesel oil used in unknown sectors over the course of a year;the annual amount of diesel oil used in unknown sectors" -Annual_Consumption_Fuel_UnspecifiedSector_FuelOil,"Annual Consumption of Fuel Oil in Unspecified Sectors;Annual Consumption of Fuel: UN_Unspecified Sector, Fuel Oil;fuel oil consumption in unspecified sectors;fuel oil used in unspecified sectors;the amount of fuel oil used in unspecified sectors;the consumption of fuel oil in unspecified sectors" -Annual_Consumption_Fuel_UnspecifiedSector_Fuelwood,"Annual Consumption of Fuel: UN_Unspecified Sector, Fuelwood;Annual Consumption of Fuelwood in Unspecified Sectors;the amount of fuelwood that is consumed each year in sectors that are not named;the amount of fuelwood used each year in unspecified sectors;the annual consumption of fuelwood in unknown or uncategorized sectors;the yearly use of fuelwood in sectors that are not specified" -Annual_Consumption_Fuel_UnspecifiedSector_HardCoal,"Annual Consumption of Fuel: UN_Unspecified Sector, Hard Coal;Annual Consumption of Hard Coal in Unspecified Sector;how much hard coal is consumed each year in an unspecified sector?;how much hard coal is used each year in an unspecified sector?;what is the amount of hard coal consumed each year in an unspecified sector?;what is the annual consumption of hard coal in an unspecified sector?" -Annual_Consumption_Fuel_UnspecifiedSector_Kerosene,"Annual Consumption of Fuel: UN_Unspecified Sector, EIA_Kerosene;Annual Consumption of Kerosene in Unspecified Sector;annual fuel consumption by un_unspecified sector and eia_kerosene;the amount of fuel consumed by un_unspecified sector and eia_kerosene each year;the annual fuel usage of un_unspecified sector and eia_kerosene;un_unspecified sector and eia_kerosene fuel consumption per year" -Annual_Consumption_Fuel_UnspecifiedSector_LiquifiedPetroleumGas,"Annual Consumption of Fuel: UN_Unspecified Sector, Liquefied Petroleum Gas;Annual Consumption of Liquefied Petroleum Gas in Unspecified Sector;how much liquefied petroleum gas does the unspecified sector consume annually?;how much liquefied petroleum gas is consumed annually in the unspecified sector?;what is the amount of liquefied petroleum gas consumed annually by the unspecified sector?;what is the annual consumption of liquefied petroleum gas in the unspecified sector?" -Annual_Consumption_Fuel_UnspecifiedSector_MotorGasoline,"Annual Consumption of Fuel: UN_Unspecified Sector, Motor Gasoline;Annual Consumption of Motor Gasoline in UN Unspecified Sector Industries;how much motor gasoline do un unspecified sector industries use each year?;how much motor gasoline is consumed by un unspecified sector industries each year?;what is the amount of motor gasoline consumed by un unspecified sector industries in a year?;what is the annual consumption of motor gasoline by un unspecified sector industries?" -Annual_Consumption_Fuel_UnspecifiedSector_NaturalGas,"Annual Consumption of Fuel: UN_Unspecified Sector, Natural Gas;Annual Consumption of Natural Gas in Unspecified Sectors;how much natural gas is consumed annually in unspecified sectors?;what is the amount of natural gas consumed annually in unspecified sectors?;what is the annual consumption of natural gas in unspecified sectors?;what is the yearly consumption of natural gas in unspecified sectors?" -Annual_Consumption_Fuel_VegetalWaste,Annual Consumption of Fuel: Vegetal Waste;Annual Consumption of Vegetal Waste Fuels;the amount of vegetable waste fuels consumed each year;the amount of vegetable waste fuels used each year;the annual rate of vegetable waste fuel consumption;the yearly consumption of vegetable waste fuels -Annual_Consumption_Fuel_WhiteSpirit,Annual Consumption of Fuel: White Spirit;Annual Consumption of White Spirit;how much white spirit is consumed each year?;how much white spirit is used each year?;what is the annual consumption of white spirit?;what is the yearly consumption of white spirit? -Annual_Consumption_Fuel_WhiteSpirit_NonEnergyUse,"Annual Consumption of Fuel: White Spirit, Non Energy Use;Annual Consumption of White Spirit in Non-Energy Use;the amount of white spirit used each year for non-energy purposes;the annual rate of white spirit consumption for non-energy uses;the yearly consumption of white spirit for non-energy uses;the yearly consumption of white spirit for purposes other than generating energy" -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_DieselOil,"Annual Consumption Of Diesel Oil By The Wood And Wood Products Industries;Annual Consumption of Fuel: Wood And Wood Products Industry, Diesel Oil;how much diesel oil does the wood and wood products industry use each year?;how much diesel oil does the wood and wood products industry use in a year?;what is the annual consumption of diesel oil by the wood and wood products industry?;what is the yearly consumption of diesel oil by the wood and wood products industry?" -Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_NaturalGas,"Annual Consumption of Fuel: Wood And Wood Products Industry, Natural Gas;Annual Consumption of Natural Gas in Wood And Wood Products Industries;how much natural gas do wood and wood products industries consume annually?;how much natural gas do wood and wood products industries use each year?;what is the annual consumption of natural gas in the wood and wood products industries?;what is the annual natural gas consumption of wood and wood products industries?" -Annual_Count_ElectricityConsumer,"1 Number of people who use electricity in a year;Number of customer accounts (all sectors) per year;Number of customer accounts, all sectors, annual;Number of people who use electricity in a year;The amount of electricity used in a year;The annual electricity demand;The number of people using electricity annually;The number of people who use electricity in a year;The yearly total of electricity consumption;Total Electricity Consumers in a Year;Total electricity consumers in a year;electricity consumption per year;electricity used in a year;number of people who use electricity in a year;total electricity usage" -Annual_Count_ElectricityConsumer_Commercial,"Annual Customer Consumer of Commercial Electricity;Number of customer accounts, commercial, annual;annual commercial electricity consumption by customers;annual commercial electricity customer consumption;annual electricity consumption by commercial customers;commercial electricity customer annual consumption" -Annual_Count_ElectricityConsumer_Industrial,"Annual Electricity Consumers in Industrial;Number of customer accounts, industrial, annual;annual number of industrial customer accounts;number of industrial customer accounts annually;number of industrial customer accounts in a year;number of industrial customer accounts per year" -Annual_Count_ElectricityConsumer_Residential,"Annual Electricity Consumers in Residential;Number of customer accounts, residential, annual;annual number of residential customer accounts;annual residential customer account total;number of residential customer accounts in a year;number of residential customer accounts per year" -Annual_Emissions_CarbonDioxide_Agriculture,"Annual Amount of Emissions: Agriculture, Carbon Dioxide;Annual Emissions of Carbon Dioxide From Agriculture;how much carbon dioxide does agriculture produce each year;how much co2 does agriculture emit annually;what is the annual amount of carbon dioxide emissions from agriculture;what is the annual carbon dioxide footprint of agriculture" -Annual_Emissions_CarbonDioxide_AluminumProduction,"Annual Amount of Emissions: Aluminum Production, Carbon Dioxide;Annual Emissions of Carbon Dioxide From Aluminum Production;how much carbon dioxide is emitted annually from aluminum production?;how much carbon dioxide is released into the atmosphere each year from aluminum production?;what is the amount of carbon dioxide emitted from aluminum production each year?;what is the annual carbon dioxide emissions from aluminum production?" -Annual_Emissions_CarbonDioxide_Biogenic,"Annual Amount of Emissions: Biogenic Emission Source, Carbon Dioxide;Annual Emissions of Carbon Dioxide From Biogenic;how much carbon dioxide is emitted from biogenic sources each year?;how much carbon dioxide is released into the atmosphere each year from biogenic sources?;what is the annual amount of carbon dioxide emitted from biogenic sources?;what is the total amount of carbon dioxide emitted from biogenic sources each year?" -Annual_Emissions_CarbonDioxide_CementProduction,"Annual Amount of Emissions: Cement Production, Carbon Dioxide;Annual Emissions of Carbon Dioxide From Cement Production;amount of carbon dioxide released into the atmosphere each year from cement production;annual amount of carbon dioxide emissions from cement production;annual carbon dioxide emissions from cement industry;annual carbon dioxide emissions from cement manufacturing" -Annual_Emissions_CarbonDioxide_ChemicalPetrochemicalIndustry,"Annual Amount of Emissions: Chemical Petrochemical Industry, Carbon Dioxide;Annual Emissions of Carbon Dioxide From Chemical Petrochemical Industry;the amount of carbon dioxide emitted by the chemical petrochemical industry each year;the annual carbon dioxide emissions from the chemical petrochemical industry;the total amount of carbon dioxide that the chemical petrochemical industry releases into the air each year;the yearly amount of carbon dioxide released into the atmosphere by the chemical petrochemical industry" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Carbon Dioxide;Annual Emissions of Carbon Dioxide Climate Trace From Other Energy Use;carbon dioxide emissions from other energy sources;carbon dioxide emissions from other energy use;emissions from other energy use, in terms of carbon dioxide;other energy use carbon dioxide emissions" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Carbon Dioxide;Annual Emissions of Carbon Dioxide Climate Trace From Other Fossil Fuel Operations;how much carbon dioxide is emitted from other fossil fuel operations each year?;the annual carbon dioxide emissions from other fossil fuel operations;the annual carbon dioxide output from other fossil fuel operations;what is the annual amount of carbon dioxide emissions from other fossil fuel operations?" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherManufacturing,"1 carbon dioxide emissions from other manufacturing industries in a year;2 the amount of carbon dioxide released into the atmosphere each year from other manufacturing industries;4 the yearly carbon dioxide emissions from other manufacturing industries;5 the amount of carbon dioxide that other manufacturing industries release into the atmosphere each year;Annual Amount of Emissions: Other Manufacturing, Carbon Dioxide;Annual Emissions of Carbon Dioxide Climate Trace From Other Manufacturing" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Carbon Dioxide;Annual Emissions of Carbon Dioxide Climate Trace From Other Onsite Fuel Usage;carbon dioxide emissions from other onsite energy sources;carbon dioxide emissions from other onsite fuel usage;carbon dioxide emissions from other onsite fuels;carbon dioxide emissions from other onsite sources" -Annual_Emissions_CarbonDioxide_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Carbon Dioxide;Annual Emissions of Carbon Dioxide Climate Trace From Other Transportation;carbon dioxide emissions from other transportation sources in a year;the amount of carbon dioxide emitted by other transportation sources in a year;the annual amount of carbon dioxide emitted by other transportation sources;the annual carbon dioxide emissions from other transportation sources" -Annual_Emissions_CarbonDioxide_CoalMining,"Annual Amount of Emissions: Coal Mining, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Coal Mining;the amount of carbon dioxide emitted by coal mining each year;the amount of carbon dioxide released into the atmosphere each year from coal mining;the annual amount of carbon dioxide produced by coal mining;the annual carbon dioxide emissions from coal mining" -Annual_Emissions_CarbonDioxide_CopperMining,"Annual Amount of Emissions: Copper Mining, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Copper Mining;the amount of carbon dioxide emitted from copper mining each year;the amount of carbon dioxide that is released into the atmosphere each year from copper mining;the annual amount of carbon dioxide that is released into the atmosphere as a result of copper mining;the annual carbon dioxide emissions from copper mining" -Annual_Emissions_CarbonDioxide_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Cropland Fire;annual co2 emissions from cropland fires;annual cropland fire emissions of carbon dioxide;annual cropland fire emissions of co2;annual emissions of carbon dioxide from cropland fires" -Annual_Emissions_CarbonDioxide_ElectricityGeneration,"Annual Amount of Emissions: Electricity Generation, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Electricity Generation;annual carbon dioxide emissions from electricity generation;annual carbon dioxide emissions from electricity production;annual carbon dioxide emissions from power generation;annual carbon dioxide emissions from the electricity sector" -Annual_Emissions_CarbonDioxide_ForestryAndLandUse,"Annual Amount of Emissions: Forestry And Land Use, Carbon Dioxide" -Annual_Emissions_CarbonDioxide_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Fossil Fuel Operations;how much carbon dioxide is emitted from fossil fuel operations each year?;how much carbon dioxide is released into the atmosphere each year from fossil fuel operations?;what is the annual amount of carbon dioxide emissions from fossil fuel operations?;what is the total amount of carbon dioxide emitted from fossil fuel operations each year?" -Annual_Emissions_CarbonDioxide_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Carbon Dioxide;Annual Emissions of Carbon Dioxide For Domestic Aviation;carbon dioxide emissions from domestic aviation each year;the amount of carbon dioxide released into the atmosphere each year from domestic aviation;the amount of carbon dioxide that domestic aviation emits into the atmosphere each year;the annual amount of carbon dioxide released into the atmosphere by domestic aviation" -Annual_Emissions_CarbonDioxide_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Carbon Dioxide;Annual Emissions of Carbon Dioxide For International Aviation;the amount of carbon dioxide emitted from fuel combustion for international aviation each year;the amount of carbon dioxide released into the atmosphere each year from international aviation fuel combustion;the annual carbon dioxide emissions from international aviation fuel combustion;the annual carbon dioxide output from international aviation fuel combustion" -Annual_Emissions_CarbonDioxide_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Carbon Dioxide;Annual Emissions of Carbon Dioxide For Railways;the amount of carbon dioxide emitted from fuel combustion for railways each year;the amount of carbon dioxide that railways emit into the air each year;the annual amount of carbon dioxide released into the atmosphere from railway fuel combustion;the yearly total of carbon dioxide produced by burning fuel for railways" -Annual_Emissions_CarbonDioxide_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Carbon Dioxide;Annual Emissions of Carbon Dioxide For Residential Commercial Onsite Heating;carbon dioxide emissions from fuel combustion for heating in homes and businesses;carbon dioxide emissions from fuel combustion for heating in residential and commercial buildings;carbon dioxide emissions from fuel combustion for heating in residential and commercial properties;carbon dioxide emissions from fuel combustion for residential and commercial onsite heating" -Annual_Emissions_CarbonDioxide_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Carbon Dioxide;Annual Emissions of Carbon Dioxide For Road Vehicles;carbon dioxide emissions from road vehicles each year;the amount of carbon dioxide released into the atmosphere each year from road vehicles;the annual amount of carbon dioxide emitted by road vehicles;the yearly amount of carbon dioxide released by road vehicles" -Annual_Emissions_CarbonDioxide_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Buildings;carbon dioxide emissions from fuel combustion in buildings;the amount of carbon dioxide released into the atmosphere each year from burning fuel in buildings;the annual amount of carbon dioxide emitted by buildings from burning fuel;the annual amount of carbon dioxide released into the air from buildings burning fuel" -Annual_Emissions_CarbonDioxide_IronMining,"Annual Amount of Emissions: Iron Mining, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Iron Mining;iron mining's annual carbon dioxide emissions;the amount of carbon dioxide emitted by iron mining each year;the amount of carbon dioxide that iron mining emits each year;the annual carbon dioxide emissions from iron mining" -Annual_Emissions_CarbonDioxide_Manufacturing,"Annual Amount of Emissions: Manufacturing, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Manufacturing;how much carbon dioxide does manufacturing produce each year?;how much carbon dioxide is released into the atmosphere by manufacturing each year?;what is the annual amount of carbon dioxide emissions from manufacturing?;what is the total amount of carbon dioxide emitted by manufacturing each year?" -Annual_Emissions_CarbonDioxide_MaritimeShipping,"Annual Amount of Emissions: Maritime Shipping, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Maritime Shipping;annual carbon dioxide emissions from maritime shipping;how much carbon dioxide does maritime shipping emit each year;the amount of carbon dioxide emitted by maritime shipping each year;the annual carbon dioxide emissions from the shipping industry" -Annual_Emissions_CarbonDioxide_MineralExtraction,"Annual Amount of Emissions: Mineral Extraction, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Net Forest;how much carbon dioxide is emitted from mineral extraction each year?;how much carbon dioxide is released into the atmosphere each year from mineral extraction?;what is the annual amount of carbon dioxide emissions from mineral extraction?;what is the total amount of carbon dioxide emitted from mineral extraction each year?" -Annual_Emissions_CarbonDioxide_NetForestEmissions,"Annual Amount of Emissions: Net Forest Emissions, Carbon Dioxide;amount of carbon dioxide released into the atmosphere each year from deforestation;annual carbon dioxide emissions from deforestation;annual net carbon dioxide emissions from deforestation;net annual carbon dioxide emissions from deforestation" -Annual_Emissions_CarbonDioxide_NetGrasslandEmissions,"Annual Amount of Emissions: Net Grassland Emissions, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Net Grassland;annual net carbon dioxide emissions from grasslands;annual net emissions of carbon dioxide and other greenhouse gases from grasslands;annual net emissions of greenhouse gases from managed grasslands;annual net greenhouse gas emissions from grasslands" -Annual_Emissions_CarbonDioxide_NetWetlandEmissions,"Annual Amount of Emissions: Net Wetland Emissions, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Net Wetland;the amount of carbon dioxide emitted by wetlands each year;the amount of carbon dioxide that wetlands add to the atmosphere each year;the annual amount of carbon dioxide released into the atmosphere by wetlands;the annual net amount of carbon dioxide that wetlands emit" -Annual_Emissions_CarbonDioxide_NonBiogenic,1 Annual emissions of carbon dioxide from non-biological sources;Annual Emissions of Non-Biogenic Carbon Dioxide;Annual carbon dioxide emissions from non-biological sources;Annual emissions of non-biogenic carbon dioxide;Annual non-biogenic carbon dioxide emissions;How much carbon dioxide is emitted each year that is not from biological sources?;Non-biogenic carbon dioxide emissions each year;annual carbon dioxide emissions from non-living sources;annual carbon dioxide emissions from non-natural sources;annual emissions of carbon dioxide from non-biological sources;annual non-biogenic carbon dioxide emissions -Annual_Emissions_CarbonDioxide_OilAndGasProduction,"Annual Amount of Emissions: Oil And Gas Production, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Oil and Gas Production;how much carbon dioxide is emitted annually from oil and gas production?;how much carbon dioxide is released into the atmosphere each year from oil and gas production?;what is the amount of carbon dioxide emitted from oil and gas production each year?;what is the annual carbon dioxide emissions from oil and gas production?" -Annual_Emissions_CarbonDioxide_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Oil and Gas Refining;the amount of carbon dioxide emitted by oil and gas refining each year;the amount of carbon dioxide released into the atmosphere each year by oil and gas refining;the annual carbon dioxide output of oil and gas refining;the yearly carbon dioxide emissions from oil and gas refining" -Annual_Emissions_CarbonDioxide_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Open Burning Waste;the amount of open burning waste and carbon dioxide emitted each year;the annual amount of open burning waste and carbon dioxide released into the atmosphere;the annual total of open burning waste and carbon dioxide emissions;the total amount of open burning waste and carbon dioxide produced each year" -Annual_Emissions_CarbonDioxide_Power,"Annual Amount of Emissions: Power, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Power;the amount of carbon dioxide emitted each year from power plants;the amount of carbon dioxide that power plants release into the atmosphere each year;the annual carbon dioxide output from power plants;the yearly amount of carbon dioxide released into the atmosphere by power plants" -Annual_Emissions_CarbonDioxide_PulpAndPaperManufacturing,"Annual Amount of Emissions: Pulp And Paper Manufacturing, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Pulp and Paper Manufacturing;the amount of carbon dioxide emitted by the pulp and paper industry each year;the annual carbon dioxide emissions from the pulp and paper industry;the annual carbon footprint of the pulp and paper industry;the total amount of carbon dioxide released into the atmosphere by the pulp and paper industry each year" -Annual_Emissions_CarbonDioxide_RockQuarry,"Annual Amount of Emissions: Rock Quarry, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Rock Quarry;how much carbon dioxide does a rock quarry emit each year?;how much carbon dioxide is released into the atmosphere by rock quarries each year?;what is the amount of carbon dioxide released by rock quarries each year?;what is the annual carbon dioxide emission from rock quarries?" -Annual_Emissions_CarbonDioxide_SandQuarry,"Annual Amount of Emissions: Sand Quarry, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Sand Quarry;annual carbon dioxide emissions from sand quarries;carbon dioxide emissions from sand quarries per year;the amount of carbon dioxide emitted by sand quarries each year;the annual carbon dioxide output of sand quarries" -Annual_Emissions_CarbonDioxide_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Solid Fuel Transformation;the amount of carbon dioxide emitted from solid fuel transformation each year;the annual carbon dioxide emissions from solid fuel transformation;the annual carbon dioxide output from solid fuel transformation;the yearly amount of carbon dioxide released into the atmosphere from solid fuel transformation" -Annual_Emissions_CarbonDioxide_SteelManufacturing,"Annual Amount of Emissions: Steel Manufacturing, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Steel Manufacturing;amount of carbon dioxide emitted annually from steel manufacturing;annual amount of carbon dioxide emissions from steel manufacturing;carbon dioxide emissions from steel manufacturing in a year;total carbon dioxide emissions from steel manufacturing per year" -Annual_Emissions_CarbonDioxide_Transportation,"Annual Amount of Emissions: Transportation, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Transportation;annual carbon dioxide emissions from transportation;how much carbon dioxide does transportation emit annually;how much carbon dioxide is emitted by transportation each year;the amount of carbon dioxide emitted by transportation each year" -Annual_Emissions_CarbonDioxide_WasteManagement,"Annual Amount of Emissions: Waste Management, Carbon Dioxide;Annual Emissions of Carbon Dioxide in Waste Management;the amount of carbon dioxide emitted from waste management each year;the amount of carbon dioxide that is released into the atmosphere from waste management each year;the annual amount of carbon dioxide that is released into the atmosphere from waste management activities;the annual carbon dioxide emissions from waste management" -Annual_Emissions_EPA_OtherFullyFluorinatedCompound_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, EPA_Other Fully Fluorinated Compound;Annual Emissions of Non Biogenic Other Fully Fluorinated Compound;how much epa_other fully fluorinated compound is emitted from non-biogenic sources each year?;how much of the epa_other fully fluorinated compound is emitted from non-biogenic sources each year?;what is the annual amount of epa_other fully fluorinated compound emitted from non-biogenic sources?;what is the yearly amount of epa_other fully fluorinated compound emitted from non-biogenic sources?" -Annual_Emissions_GreenhouseGas,Emissions that contribute to global warming;Greenhouse Gas Emissions;emissions from greenhouse gases;emissions of greenhouse gases;ghg emissions;greenhouse gas emissions;greenhouse gases released into the atmosphere -Annual_Emissions_GreenhouseGas_Agriculture,"Annual Amount of Emissions: Agriculture, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Agriculture;annual greenhouse gas emissions from agriculture;greenhouse gas emissions from agriculture;the amount of greenhouse gases emitted by agriculture each year;the annual amount of greenhouse gases emitted by the agricultural sector" -Annual_Emissions_GreenhouseGas_AluminumProduction,"Annual Amount of Emissions: Aluminum Production, Greenhouse Gas" -Annual_Emissions_GreenhouseGas_AmmoniaManufacturing_NonBiogenic,"Annual Amount of Emissions: Ammonia Manufacturing, Non Biogenic Emission Source;Annual Emissions of Greenhouse Gas Non Biogenic Ammonia From Manufacturing;ammonia emissions from manufacturing;ammonia manufacturing emissions;emissions from ammonia manufacturing;non-biogenic ammonia emissions" -Annual_Emissions_GreenhouseGas_BauxiteMining,"Annual Amount of Emissions: Bauxite Mining, Greenhouse Gas" -Annual_Emissions_GreenhouseGas_CementProduction,"Annual Amount of Emissions: Cement Production, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Cement Production;how much does cement production contribute to greenhouse gas emissions each year?;how much greenhouse gas does cement production emit each year?;what is the annual amount of greenhouse gas emissions from cement production?;what is the annual greenhouse gas footprint of cement production?" -Annual_Emissions_GreenhouseGas_CementProduction_NonBiogenic,"Annual Amount of Emissions: Cement Production, Non Biogenic Emission Source;Annual Emissions of Greenhouse Gas Non Biogenic From Cement Production;annual amount of non-biogenic emissions from cement production;emissions from cement production that are not biogenic;emissions from non-biogenic sources from cement production;non-biogenic emissions from cement production" -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Greenhouse Gas;Annual Emissions of Greenhouse Gas Climate Trace in Other Energy Use;other energy-related emissions" -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Greenhouse Gas;Annual Emissions of Greenhouse Gas Climate Trace in Other Manufacturing;greenhouse gas emissions from other manufacturing processes;how much greenhouse gas is emitted by other manufacturing processes;other manufacturing's contribution to greenhouse gas emissions;the amount of greenhouse gas emitted by other manufacturing processes each year" -Annual_Emissions_GreenhouseGas_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Greenhouse Gas;Annual Emissions of Greenhouse Gas Climate Trace in Other Transportation;greenhouse gas emissions from non-road transportation;greenhouse gas emissions from other transportation sources;greenhouse gas emissions from transportation other than cars and trucks;other transportation sources of greenhouse gas emissions" -Annual_Emissions_GreenhouseGas_CopperMining,"Annual Amount of Emissions: Copper Mining, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Copper Mining;annual greenhouse gas emissions from copper mining;greenhouse gas emissions from copper mining per year;how much greenhouse gas is emitted from copper mining annually;the amount of greenhouse gases emitted from copper mining each year" -Annual_Emissions_GreenhouseGas_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Cropland Fire;greenhouse gas emissions from cropland fires;the amount of greenhouse gases emitted from cropland fires each year;the annual amount of greenhouse gases emitted by cropland fires;the annual rate of greenhouse gas emissions from cropland fires" -Annual_Emissions_GreenhouseGas_ElectricityGeneration,"Annual Amount of Emissions: Electricity Generation, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Electricity Generation;how much greenhouse gas is emitted each year from electricity generation?;how much greenhouse gas is released into the atmosphere each year from electricity generation?;what is the annual amount of greenhouse gas emissions from electricity generation?;what is the total amount of greenhouse gas emissions from electricity generation each year?" -Annual_Emissions_GreenhouseGas_ElectricityGenerationFromThermalPowerPlant,"1 greenhouse gas emissions from electricity generation from thermal power plants per year;2 annual greenhouse gas emissions from electricity generation from thermal power plants;3 the amount of greenhouse gases emitted from electricity generation from thermal power plants each year;4 the annual total of greenhouse gases emitted from electricity generation from thermal power plants;Annual Amount of Emissions: Electricity Generation From Thermal Power Plant, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Electricity Generation From Thermal Power Plant" -Annual_Emissions_GreenhouseGas_ElectricityGeneration_NonBiogenic,"Annual Amount of Emissions: Electricity Generation, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Electricity Generation;annual emissions from electricity generation, excluding biogenic emissions;annual emissions from electricity generation, excluding emissions from biomass combustion;annual non-biogenic emissions from electricity generation;the annual amount of emissions from electricity generation, excluding biogenic emissions" -Annual_Emissions_GreenhouseGas_ElectronicsManufacture_NonBiogenic,"Annual Amount of Emissions: Electronics Manufacture, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Electronics Manufacture;annual emissions from electronics manufacturing;annual emissions from non-biogenic sources in electronics manufacturing;annual non-biogenic emissions from electronics manufacturing;emissions from electronics manufacturing, non-biogenic sources" -Annual_Emissions_GreenhouseGas_EntericFermentation,"Annual Amount of Emissions: Enteric Fermentation, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Enteric Fermentation;annual emissions of greenhouse gases from enteric fermentation;greenhouse gas emissions from enteric fermentation" -Annual_Emissions_GreenhouseGas_FluorinatedGHGProduction_NonBiogenic,"Annual Amount of Emissions: Fluorinated GHGProduction, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Fluorinated GHG Production;annual emissions of fluorinated greenhouse gases from non-biogenic sources;annual production of fluorinated greenhouse gases from non-biogenic sources;the amount of fluorinated greenhouse gases emitted annually from non-biogenic sources;the amount of fluorinated greenhouse gases produced annually from non-biogenic sources" -Annual_Emissions_GreenhouseGas_ForestClearing,"Annual Amount of Emissions: Forest Clearing, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Forest Clearing;annual greenhouse gas emissions from forest clearing;annual greenhouse gas emissions from forest loss;the amount of greenhouse gases emitted each year from forest clearing;the annual greenhouse gas emissions from forest clearing" -Annual_Emissions_GreenhouseGas_ForestFire,"Annual Amount of Emissions: Forest Fire, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Forest Fire;how many greenhouse gases are released into the atmosphere each year from forest fires?;how much greenhouse gas is emitted from forest fires each year?;what is the annual amount of greenhouse gas emissions from forest fires?;what is the total amount of greenhouse gases released into the atmosphere each year from forest fires?" -Annual_Emissions_GreenhouseGas_ForestryAndLandUse,"Annual Amount of Emissions: Forestry And Land Use, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Forestry and Land Use;forestry and land use greenhouse gas emissions;greenhouse gas emissions from deforestation;greenhouse gas emissions from forestry and land use;the amount of greenhouse gases emitted from forestry and land use" -Annual_Emissions_GreenhouseGas_FuelCombustionForAviation,"Annual Amount of Emissions: Fuel Combustion for Aviation, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Aviation;how much greenhouse gas is emitted from aviation each year?;how much greenhouse gas is emitted from fuel combustion for aviation each year?;what is the annual amount of greenhouse gas emissions from fuel combustion for aviation?;what is the total amount of greenhouse gas emissions from fuel combustion for aviation each year?" -Annual_Emissions_GreenhouseGas_FuelCombustionForCooking,"Annual Amount of Emissions: Fuel Combustion for Cooking, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Cooking;the amount of greenhouse gases emitted from cooking fuel combustion each year;the annual amount of greenhouse gases released into the atmosphere from cooking fuel combustion;the annual greenhouse gas emissions from cooking fuel combustion;the yearly total of greenhouse gases produced by cooking fuel combustion" -Annual_Emissions_GreenhouseGas_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Railways;greenhouse gas emissions from fuel combustion for railways per year;the amount of greenhouse gases emitted from fuel combustion for railways each year;the annual amount of greenhouse gases emitted from fuel combustion for railways;the total amount of greenhouse gases emitted from fuel combustion for railways in a year" -Annual_Emissions_GreenhouseGas_FuelCombustionForRefrigerationAirConditioning,"Annual Amount of Emissions: Fuel Combustion for Refrigeration Air Conditioning, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Refrigeration Air Conditioning;annual emissions of greenhouse gases from fuel combustion for refrigeration and air conditioning;greenhouse gas emissions from fuel combustion for refrigeration and air conditioning;greenhouse gas emissions from fuel combustion for refrigeration and air conditioning in a year;the amount of greenhouse gases emitted from fuel combustion for refrigeration and air conditioning each year" -Annual_Emissions_GreenhouseGas_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Residential Commercial Onsite Heating;greenhouse gas emissions from fuel combustion for heating in homes and businesses;greenhouse gas emissions from fuel combustion for heating in residential and commercial buildings;greenhouse gas emissions from fuel combustion for heating in residential and commercial sectors;greenhouse gas emissions from fuel combustion for residential and commercial onsite heating" -Annual_Emissions_GreenhouseGas_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Greenhouse Gas;Annual Emissions of Greenhouse Gas For Road Vehicles;greenhouse gas emissions from road vehicles per year;the amount of greenhouse gases emitted by road vehicles each year;the annual amount of greenhouse gases emitted by road vehicles;the total amount of greenhouse gases emitted by road vehicles in one year" -Annual_Emissions_GreenhouseGas_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Buildings;annual greenhouse gas emissions from fuel combustion in buildings;greenhouse gas emissions from fuel combustion in buildings;the amount of greenhouse gases emitted from fuel combustion in buildings each year;the annual amount of greenhouse gases emitted from fuel combustion in buildings" -Annual_Emissions_GreenhouseGas_GlassProduction_NonBiogenic,"Annual Amount of Emissions: Glass Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Glass Production;annual amount of glass production emissions;annual emissions from glass production;emissions from glass production;non-biogenic emissions from glass production" -Annual_Emissions_GreenhouseGas_HydrogenProduction_NonBiogenic,"Annual Amount of Emissions: Hydrogen Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Hydrogen Production;annual amount of hydrogen production emissions;annual amount of hydrogen production emissions from non-biological sources;annual amount of non-biogenic hydrogen production emissions;annual amount of non-biological hydrogen production emissions" -Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,"Annual Amount of Emissions: Industrial Waste Landfills, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Industrial Waste Landfills;how much pollution do industrial waste landfills produce each year?;how much pollution is released into the environment each year from industrial waste landfills?;what is the annual amount of emissions from non-biogenic sources, such as industrial waste landfills?;what is the total amount of pollution released into the atmosphere each year from non-biogenic sources, such as industrial waste landfills?" -Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,"Annual Amount of Emissions: Industrial Wastewater Treatment, Non Biogenic Emission Source;amount of emissions from industrial wastewater treatment;emissions from industrial wastewater treatment, non-biogenic;industrial wastewater treatment emissions;non-biogenic emissions from industrial wastewater treatment" -Annual_Emissions_GreenhouseGas_IronAndSteelProduction_NonBiogenic,"Annual Amount of Emissions: Iron And Steel Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Iron and Steel Production;the amount of emissions from iron and steel production each year;the amount of emissions from iron and steel production in a year;the annual amount of emissions from iron and steel production;the annual emissions from iron and steel production" -Annual_Emissions_GreenhouseGas_IronMining,"Annual Amount of Emissions: Iron Mining, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Iron Mining;greenhouse gas emissions from iron mining;iron mining's contribution to greenhouse gas emissions;the amount of greenhouse gases emitted by iron mining each year;the annual greenhouse gas emissions from iron mining" -Annual_Emissions_GreenhouseGas_LimeProduction_NonBiogenic,"Annual Amount of Emissions: Lime Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Lime Production;the amount of emissions produced by lime production each year;the annual emissions from lime production;the total emissions from lime production in one year;the yearly output of emissions from lime production" -Annual_Emissions_GreenhouseGas_ManagedSoils,"Annual Amount of Emissions: Managed Soils, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Managed Soils;amount of greenhouse gases emitted from managed soils each year;annual greenhouse gas emissions from managed soils;annual release of greenhouse gases from managed soils;greenhouse gases released from managed soils each year" -Annual_Emissions_GreenhouseGas_Manufacturing,"Annual Amount of Emissions: Manufacturing, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Manufacturing;how many greenhouse gases are emitted by manufacturing each year?;how much greenhouse gas does manufacturing produce each year?;what is the annual amount of greenhouse gas emissions from manufacturing?;what is the total amount of greenhouse gas emissions from manufacturing each year?" -Annual_Emissions_GreenhouseGas_ManureManagement,"Annual Amount of Emissions: Manure Management, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Manure Management;greenhouse gas emissions from manure management;manure management's contribution to greenhouse gas emissions;manure management's greenhouse gas emissions;the amount of greenhouse gases emitted by manure management" -Annual_Emissions_GreenhouseGas_MaritimeShipping,"Annual Amount of Emissions: Maritime Shipping, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Maritime Shipping;how much greenhouse gas does maritime shipping contribute to climate change each year?;how much greenhouse gas does maritime shipping emit each year?;what is the annual amount of greenhouse gas emissions from maritime shipping?;what is the total amount of greenhouse gas emissions from maritime shipping each year?" -Annual_Emissions_GreenhouseGas_MaritimeTransport,"Annual Amount of Emissions: Maritime Transport, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Maritime Transport;annual emissions from maritime transport;greenhouse gas emissions from maritime transport;how much greenhouse gas does maritime transport emit each year;the amount of greenhouse gas emissions from maritime transport each year" -Annual_Emissions_GreenhouseGas_MineralExtraction,"Annual Amount of Emissions: Mineral Extraction, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Mineral Extraction;annual greenhouse gas emissions from mineral extraction;how much greenhouse gas is emitted each year from mineral extraction?;the amount of greenhouse gas emissions from mineral extraction each year;what is the annual amount of greenhouse gas emissions from mineral extraction?" -Annual_Emissions_GreenhouseGas_MiscellaneousUseOfCarbonates_NonBiogenic,"Annual Amount of Emissions: Miscellaneous Use of Carbonates, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Miscellaneous Use of Carbonates;annual emissions from miscellaneous carbonate sources;annual emissions from miscellaneous non-biological sources of carbonates;annual emissions from non-biogenic sources of carbonates;annual emissions from non-biological sources of carbonates" -Annual_Emissions_GreenhouseGas_MunicipalLandfills_NonBiogenic,"Annual Amount of Emissions: Municipal Landfills, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Municipal Landfills;how much non-biogenic pollution do municipal landfills produce each year?;how much pollution do municipal landfills produce each year?;what is the annual amount of emissions from non-biogenic sources in municipal landfills?;what is the annual amount of non-biogenic emissions from municipal landfills?" -Annual_Emissions_GreenhouseGas_NitricAcidProduction_NonBiogenic,"Annual Amount of Emissions: Nitric Acid Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas From Nitric Acid Production;annual emissions from nitric acid production;annual nitric acid production emissions;emissions from non-biogenic nitric acid production;non-biogenic nitric acid production emissions" -Annual_Emissions_GreenhouseGas_NonBiogenic,1 The amount of non-biogenic greenhouse gases emitted each year;Annual Emissions of Non-Biogenic Greenhouse Gases;Annual emissions of non-biogenic greenhouse gases;The amount of non-biogenic greenhouse gases emitted each year;The amount of non-biogenic greenhouse gases that are released into the atmosphere each year;The yearly release of non-biogenic greenhouse gases;the amount of non-biogenic greenhouse gases emitted each year;the amount of non-biogenic greenhouse gases that are released into the atmosphere each year;the annual release of non-biogenic greenhouse gases into the atmosphere;the yearly output of non-biogenic greenhouse gases -Annual_Emissions_GreenhouseGas_NonBiogenic_Per_Annual_Generation_Electricity,Annual Emissions of Non Biogenic Greenhouse Gas in Generation Electricity;Annual Non-Biogenic Greenhouse Gas Emissions per Unit of Electricity Generated;annual emissions of non-biogenic greenhouse gases per unit of electricity generated;annual non-biogenic greenhouse gas emissions from electricity generation;annual non-biogenic greenhouse gas emissions per kilowatt-hour of electricity generated;annual non-biogenic greenhouse gas emissions per unit of electricity generated -Annual_Emissions_GreenhouseGas_OilAndGas,"Annual Amount of Emissions: Oil And Gas, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Oil and Gas;how much greenhouse gas is emitted from oil and gas each year?;how much greenhouse gas is released into the atmosphere each year from oil and gas?;what is the annual amount of greenhouse gas emissions from oil and gas?;what is the total amount of greenhouse gas emissions from oil and gas each year?" -Annual_Emissions_GreenhouseGas_OilAndGasProduction,"1 the amount of greenhouse gas emissions from oil and gas production each year;2 the annual amount of greenhouse gases released into the atmosphere from oil and gas production;3 the total amount of greenhouse gases produced by oil and gas production each year;4 the annual output of greenhouse gases from oil and gas production;Annual Amount of Emissions: Oil And Gas Production, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Oil and Gas Production" -Annual_Emissions_GreenhouseGas_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Open Burning Waste;annual amount of greenhouse gases emitted by open burning waste;annual greenhouse gas emissions from open burning waste;annual open burning waste emissions of greenhouse gases;greenhouse gas emissions from open burning waste per year" -Annual_Emissions_GreenhouseGas_PetrochemicalProduction,"Annual Amount of Emissions: Petrochemical Production, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Petrochemical Production;the amount of greenhouse gas emissions from petrochemical production each year;the annual output of greenhouse gases from petrochemical production;the total amount of greenhouse gases emitted from petrochemical production in a year;the yearly amount of greenhouse gases released into the atmosphere from petrochemical production" -Annual_Emissions_GreenhouseGas_PetrochemicalProduction_NonBiogenic,"Annual Amount of Emissions: Petrochemical Production, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Petrochemical Production;emissions from petrochemical production that are not biogenic;emissions from petrochemical production that are not from living things;emissions from petrochemical production, non-biogenic;non-biogenic emissions from petrochemical production" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_Processing_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Processing, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum and Natural Gas Systems Processing;the amount of emissions from petroleum and natural gas systems each year;the amount of emissions from petroleum and natural gas systems each year, excluding biogenic sources;the annual amount of emissions from non-biogenic sources in petroleum and natural gas systems;the annual amount of emissions from petroleum and natural gas processing" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_TransmissionOrCompression_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Transmission or Compression, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum and Natural Gas Systems Transmission or Compression;the amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source, in a year;the amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source, in one year;the annual amount of emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source;the annual emissions from petroleum and natural gas systems, transmission or compression, non biogenic emission source" -Annual_Emissions_GreenhouseGas_PetroleumAndNaturalGasSystems_UndergroundStorage_NonBiogenic,"Annual Amount of Emissions: Petroleum And Natural Gas Systems_Underground Storage, Non Biogenic Emission Source;Annual Emissions of Greenhouse Gas in Petroleum and Natural Gas Systems Underground Storage;the amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source in a year;the amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source per year;the annual amount of emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source;the annual emissions from petroleum and natural gas systems, underground storage, non-biogenic emission source" -Annual_Emissions_GreenhouseGas_PetroleumRefining,"Annual Amount of Emissions: Petroleum Refining, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Petroleum Refining;greenhouse gas emissions from petroleum refining;the amount of greenhouse gases emitted by petroleum refineries each year;the annual amount of greenhouse gases released into the atmosphere by petroleum refineries;the total amount of greenhouse gases that petroleum refineries release into the environment each year" -Annual_Emissions_GreenhouseGas_PetroleumRefining_NonBiogenic,"Annual Amount of Emissions: Petroleum Refining, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Petroleum Refining;emissions from non-biogenic sources in petroleum refining;emissions from petroleum refining;non-biogenic emissions from petroleum refining;petroleum refining emissions" -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing,"1 greenhouse gas emissions from pulp and paper manufacturing;2 the amount of greenhouse gases emitted by the pulp and paper industry each year;3 the annual output of greenhouse gases from pulp and paper mills;4 the total amount of greenhouse gases released into the atmosphere by the pulp and paper industry each year;Annual Amount of Emissions: Pulp And Paper Manufacturing, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Pulp and Paper Manufacturing" -Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing_NonBiogenic,"Annual Amount of Emissions: Pulp And Paper Manufacturing, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Pulp and Paper Manufacturing;annual emissions from pulp and paper manufacturing, excluding biogenic emissions;emissions from pulp and paper manufacturing, non-biogenic;emissions from pulp and paper manufacturing, not from biological sources;non-biogenic emissions from pulp and paper manufacturing" -Annual_Emissions_GreenhouseGas_RiceCultivation,"Annual Amount of Emissions: Rice Cultivation, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Rice Cultivation;how much greenhouse gas is emitted from rice cultivation each year?;how much greenhouse gas is released into the atmosphere each year from rice cultivation?;what is the annual amount of greenhouse gas emissions from rice cultivation?;what is the annual greenhouse gas footprint of rice cultivation?" -Annual_Emissions_GreenhouseGas_RockQuarry,"Annual Amount of Emissions: Rock Quarry, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Rock Quarry;greenhouse gas emissions from rock quarries;the amount of greenhouse gases emitted by rock quarries each year;the annual amount of greenhouse gases released into the atmosphere by rock quarries;the total amount of greenhouse gases produced by rock quarries in a year" -Annual_Emissions_GreenhouseGas_SandQuarry,"Annual Amount of Emissions: Sand Quarry, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Sand Quarry;how much greenhouse gas does a sand quarry emit each year?;how much greenhouse gas is emitted by sand quarries annually?;what is the amount of greenhouse gas emitted by sand quarries each year?;what is the annual greenhouse gas emissions from sand quarries?" -Annual_Emissions_GreenhouseGas_SavannaFire,"Annual Amount of Emissions: Savanna Fire, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Savanna Fire;annual amount of greenhouse gases emitted by savanna fires;annual greenhouse gas emissions from savanna fires;how much greenhouse gas is emitted by savanna fires each year;the annual amount of greenhouse gas emissions from savanna fires" -Annual_Emissions_GreenhouseGas_ShrublandFire,"Annual Amount of Emissions: Shrubland Fire, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Shrubland Fire;the amount of greenhouse gases emitted from shrubland fires each year;the annual amount of greenhouse gases released into the atmosphere by shrubland fires;the annual greenhouse gas emissions from shrubland fires;the yearly total of greenhouse gases produced by shrubland fires" -Annual_Emissions_GreenhouseGas_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Solid Fuel Transformation;the amount of greenhouse gases emitted from solid fuel transformation each year;the annual amount of greenhouse gases released into the atmosphere from solid fuel transformation;the annual greenhouse gas emissions from solid fuel transformation;the yearly total of greenhouse gases produced by solid fuel transformation" -Annual_Emissions_GreenhouseGas_SolidWasteDisposal,"Annual Amount of Emissions: Solid Waste Disposal, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Solid Waste Disposal;the amount of solid waste and greenhouse gas emissions produced each year;the annual amount of solid waste and greenhouse gases that are released into the environment;the annual output of solid waste and greenhouse gases;the yearly total of solid waste and greenhouse gas emissions" -Annual_Emissions_GreenhouseGas_StationaryCombustion_NonBiogenic,"Annual Amount of Emissions: Stationary Combustion, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Stationary Combustion;emissions from non-biogenic sources from stationary combustion;emissions from stationary combustion, excluding biogenic sources;emissions from stationary combustion, non-biogenic sources;emissions from stationary combustion, non-biological sources" -Annual_Emissions_GreenhouseGas_SteelManufacturing,"Annual Amount of Emissions: Steel Manufacturing, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Steel Manufacturing;greenhouse gas emissions from steel manufacturing;the amount of greenhouse gases emitted by the steel industry;the amount of greenhouse gases released into the atmosphere from steel production;the amount of greenhouse gases that are produced by the steel industry" -Annual_Emissions_GreenhouseGas_Transportation,"Annual Amount of Emissions: Transportation, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Transportation;greenhouse gas emissions from transportation;the amount of greenhouse gases emitted by transportation each year;the annual amount of greenhouse gases emitted by transportation;the annual greenhouse gas emissions from transportation" -Annual_Emissions_GreenhouseGas_UndergroundCoalMines_NonBiogenic,"Annual Amount of Emissions: Underground Coal Mines, Non Biogenic Emission Source;Annual Emissions of Non Biogenic Greenhouse Gas in Underground Coal Mines;annual emissions from underground coal mines;emissions from underground coal mines each year;the amount of emissions from underground coal mines each year;the annual amount of emissions from underground coal mines that are not biogenic" -Annual_Emissions_GreenhouseGas_WasteManagement,"Annual Amount of Emissions: Waste Management, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Waste Management;the annual amount of emissions from waste management and greenhouse gases;the annual output of waste and greenhouse gases;the annual total of waste and greenhouse gases that are emitted;the yearly amount of waste and greenhouse gases that are released into the environment" -Annual_Emissions_GreenhouseGas_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Greenhouse Gas;Annual Emissions of Greenhouse Gas in Wastewater Treatment and Discharge;annual greenhouse gas emissions from wastewater treatment and discharge;greenhouse gas emissions from wastewater treatment and discharge;the amount of greenhouse gases emitted from wastewater treatment and discharge each year;the annual amount of greenhouse gases released into the atmosphere from wastewater treatment and discharge" -Annual_Emissions_Hydrofluorocarbon_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Hydrofluorocarbon;Annual Emissions of Non Biogenic Hydrofluorocarbon;how many non-biogenic hydrofluorocarbons are emitted each year?;how much non-biogenic hydrofluorocarbon is emitted each year?;what is the annual amount of non-biogenic hydrofluorocarbon emissions?;what is the total amount of non-biogenic hydrofluorocarbon emitted each year?" -Annual_Emissions_Hydrofluoroether_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Hydrofluoroether;Annual Emissions of Non Biogenic Hydrofluoroether;the amount of hydrofluoroether emitted each year;the annual amount of hydrofluoroether emissions from non-biogenic sources;the annual amount of hydrofluoroether emissions from sources other than living organisms;the annual amount of non-biogenic hydrofluoroether emissions" -Annual_Emissions_Methane_Agriculture,"1 the amount of methane emitted by agriculture each year;2 the annual methane emissions from agriculture;3 the amount of methane that is released into the atmosphere each year from agriculture;4 the annual amount of methane that is released into the atmosphere from agricultural activities;Annual Amount of Emissions: Agriculture, Methane;Annual Emissions of Methane in Agriculture" -Annual_Emissions_Methane_BiologicalTreatmentOfSolidWasteAndBiogenic,"Annual Amount of Emissions: Biological Treatment of Solid Waste And Biogenic, Methane;Annual Emissions of Methane in Biological Treatment of Solid Waste and Biogenic;the amount of methane emitted from biological treatment of solid waste each year;the annual amount of methane released into the atmosphere from biological treatment of solid waste;the annual methane emissions from biological treatment of solid waste;the yearly amount of methane produced by biological treatment of solid waste" -Annual_Emissions_Methane_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Methane;Annual Emissions of Methane Climate Trace in Other Energy Use;emissions of methane from other energy sources;methane emissions from other energy sources;methane emissions from other energy use;other energy use methane emissions" -Annual_Emissions_Methane_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Methane;Annual Emissions of Methane Climate Trace in Other Fossil Fuel Operations;methane emissions from other fossil fuel operations;methane emissions from other fossil fuel-related activities" -Annual_Emissions_Methane_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Methane;Annual Emissions of Methane Climate Trace in Other Manufacturing;the amount of methane emitted by other manufacturing industries each year;the annual methane emissions from other manufacturing industries;the annual methane output from other manufacturing industries;the total amount of methane emitted by other manufacturing industries in a year" -Annual_Emissions_Methane_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Methane;Annual Emissions of Methane Climate Trace in Other Onsite Fuel Usage;methane emissions from other on-site fuel burning;methane emissions from other on-site fuel consumption;methane emissions from other on-site fuel use;methane emissions from other onsite fuel usage" -Annual_Emissions_Methane_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Methane;Annual Emissions of Methane Climate Trace in Other Transportation;methane emissions from non-road transportation;methane emissions from other forms of transportation;methane emissions from other transportation sources;methane emissions from transportation other than cars and trucks" -Annual_Emissions_Methane_CoalMining,"Annual Amount of Emissions: Coal Mining, Methane;Annual Emissions of Methane in Coal Mining;how much coal and methane are emitted each year?;how much coal and methane is released into the atmosphere each year?;what are the annual emissions of coal and methane?;what is the annual amount of coal and methane emissions?" -Annual_Emissions_Methane_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Methane;Annual Emissions of Methane in Cropland Fire;how much methane is emitted from cropland fires each year?;the amount of methane and carbon dioxide released into the atmosphere each year from burning agricultural land;the amount of methane and carbon dioxide released into the atmosphere each year from cropland fires;the annual amount of methane and carbon dioxide released into the atmosphere from burning crops" -Annual_Emissions_Methane_EntericFermentation,"Annual Amount of Emissions: Enteric Fermentation, Methane;Annual Emissions of Methane in Enteric Fermentation;annual methane emissions from enteric fermentation;methane emissions from enteric fermentation;the amount of methane emitted from enteric fermentation each year;the annual amount of methane produced by enteric fermentation" -Annual_Emissions_Methane_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Methane;Annual Emissions of Methane in Fossil Fuel Operations;how much methane is emitted from fossil fuel operations each year?;how much methane is produced by fossil fuel operations each year?;how much methane is released into the atmosphere each year from fossil fuel operations?;what is the annual amount of methane emissions from fossil fuel operations?" -Annual_Emissions_Methane_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Methane;Annual Emissions of Methane For Domestic Aviation;annual methane emissions from domestic aviation;annual methane emissions from fuel combustion in domestic aviation;methane emissions from domestic aviation;methane emissions from fuel combustion in domestic aviation" -Annual_Emissions_Methane_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Methane;Annual Emissions of Methane For International Aviation;how much methane is emitted from fuel combustion for international aviation each year?;how much methane is emitted from international aviation each year?;what is the annual amount of methane emissions from fuel combustion for international aviation?;what is the annual amount of methane emissions from international aviation?" -Annual_Emissions_Methane_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Methane;Annual Emissions of Methane For Railways;annual methane emissions from fuel combustion for railways;methane emissions from fuel combustion for railways, annually;the amount of methane emitted from fuel combustion for railways each year;the annual amount of methane emitted from fuel combustion for railways" -Annual_Emissions_Methane_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Methane;Annual Emissions of Methane For Residential Commercial Onsite Heating;methane emissions from fuel combustion for heating in homes and businesses;methane emissions from fuel combustion for heating in residential and commercial buildings;methane emissions from fuel combustion for heating in residential and commercial sectors;methane emissions from fuel combustion for residential and commercial onsite heating" -Annual_Emissions_Methane_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Methane;Annual Emissions of Methane For Road Vehicles;methane emissions from fuel combustion for road vehicles;the amount of methane emitted from fuel combustion for road vehicles each year;the annual amount of methane emitted from fuel combustion for road vehicles;the total amount of methane emitted from fuel combustion for road vehicles in a year" -Annual_Emissions_Methane_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Methane;Annual Emissions of Methane in Buildings;methane emissions from fuel combustion in buildings;the amount of methane emitted from fuel combustion in buildings each year;the amount of methane emitted from fuel combustion in buildings in a year;the annual amount of methane emitted from fuel combustion in buildings" -Annual_Emissions_Methane_Manufacturing,"Annual Amount of Emissions: Manufacturing, Methane;Annual Emissions of Methane in Manufacturing;how much methane does manufacturing emit each year?;the amount of methane emitted by manufacturing;what is the annual amount of methane emitted by manufacturing?;what is the annual methane output of manufacturing?" -Annual_Emissions_Methane_ManureManagement,"Annual Amount of Emissions: Manure Management, Methane;Annual Emissions of Methane in Manure Management;the amount of methane emitted from manure management each year;the annual amount of methane produced by manure management;the annual amount of methane released from manure management;the annual amount of methane released into the atmosphere from manure management" -Annual_Emissions_Methane_NonBiogenic,Annual Emissions of Non-Biogenic Methane;Annual emissions of non-biogenic methane;Annual non-biogenic methane emissions;Methane emissions from non-biological sources each year;The amount of non-biogenic methane emitted each year;The amount of non-biogenic methane that is released into the atmosphere each year;annual non-biological methane emissions;annual non-biological methane emissions from human activities;methane emissions from non-biological sources in a year;methane emissions from non-biological sources per year -Annual_Emissions_Methane_OilAndGasProduction,"Annual Amount of Emissions: Oil And Gas Production, Methane;Annual Emissions of Methane in Oil and Gas Production;how much methane is emitted from oil and gas production each year?;how much methane is released into the atmosphere each year from oil and gas production?;what is the annual amount of methane emissions from oil and gas production?;what is the total amount of methane emitted from oil and gas production each year?" -Annual_Emissions_Methane_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Methane;Annual Emissions of Methane in Oil and Gas Refining;annual methane emissions from oil and gas refining;methane emissions from oil and gas refining;methane emissions from oil and gas refining in a year;the amount of methane emitted from oil and gas refining each year" -Annual_Emissions_Methane_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Methane;Annual Emissions of Methane in Open Burning Waste;the amount of methane and open burning waste emitted each year;the annual amount of methane and open burning waste released into the atmosphere;the annual rate of methane and open burning waste emissions;the yearly total of methane and open burning waste emissions" -Annual_Emissions_Methane_Power,"Annual Amount of Emissions: Power, Methane;Annual Emissions of Methane in Power;annual methane emissions from power plants;annual power plant methane emissions;methane emissions from power plants;power plant methane emissions" -Annual_Emissions_Methane_RiceCultivation,"Annual Amount of Emissions: Rice Cultivation, Methane;Annual Emissions of Methane in Rice Cultivation;methane emissions from growing rice;methane emissions from rice cultivation;methane emissions from rice farming;methane emissions from rice paddies" -Annual_Emissions_Methane_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Methane;Annual Emissions of Methane in Solid Fuel Transformation;annual emissions of methane from solid fuel transformation;methane emissions from solid fuel transformation per year;the amount of methane emitted from solid fuel transformation each year;the annual amount of methane released into the atmosphere from solid fuel transformation" -Annual_Emissions_Methane_SolidWasteDisposal,"Annual Amount of Emissions: Solid Waste Disposal, Methane;Annual Emissions of Methane in Solid Waste Disposal;amount of methane emitted from solid waste disposal;how much methane is emitted from solid waste disposal;methane emissions from landfills;methane emissions from solid waste disposal" -Annual_Emissions_Methane_Transportation,"Annual Amount of Emissions: Transportation, Methane;Annual Emissions of Methane in Transportation;how much methane is emitted each year by transportation;the amount of methane emitted by transportation each year;the annual amount of methane emitted by transportation;the annual methane emissions from transportation" -Annual_Emissions_Methane_WasteManagement,"Annual Amount of Emissions: Waste Management, Methane;Annual Emissions of Methane in Waste Management;how much methane is emitted from waste management each year?;how much methane is released into the atmosphere from waste management each year?;what is the annual amount of methane emissions from waste management?;what is the total amount of methane emitted from waste management each year?" -Annual_Emissions_Methane_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Methane;Annual Emissions of Methane in Wastewater Treatment and Discharge;how much methane is emitted from wastewater treatment and discharge each year?;what is the annual amount of methane emitted from wastewater treatment and discharge?;what is the annual methane emissions from wastewater treatment and discharge?;what is the total amount of methane emitted from wastewater treatment and discharge each year?" -Annual_Emissions_NitrogenTrifluoride_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Nitrogen Trifluoride;Annual Emissions of Non Biogenic Nitrogen Trifluoride;annual emissions of nitrogen trifluoride from human activities;annual emissions of nitrogen trifluoride from non-biogenic sources;annual emissions of nitrogen trifluoride from sources other than living things;annual emissions of non-biogenic nitrogen trifluoride" -Annual_Emissions_NitrousOxide_Agriculture,"Annual Amount of Emissions: Agriculture, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Agriculture;annual amount of nitrous oxide emissions from agriculture;annual amount of nitrous oxide emitted by agriculture;annual amount of nitrous oxide emitted from the agricultural sector;annual nitrous oxide emissions from agriculture" -Annual_Emissions_NitrousOxide_BiologicalTreatmentOfSolidWasteAndBiogenic,"Annual Amount of Emissions: Biological Treatment of Solid Waste And Biogenic, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Biological Treatment of Solid Waste And Biogenic;how much nitrous oxide is emitted from biological treatment of solid waste each year?;what is the annual amount of nitrous oxide emissions from biological treatment of solid waste?;what is the annual amount of nitrous oxide released into the atmosphere from biological treatment of solid waste?;what is the annual nitrous oxide emission rate from biological treatment of solid waste?" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherAgriculturalSoilEmissions,"Annual Amount of Emissions: Other Agricultural Soil Emissions, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Agricultural Soil;annual emissions of nitrous oxide from other agricultural soil sources;nitrous oxide emissions from other agricultural soil sources per year;the amount of nitrous oxide emitted from other agricultural soil sources each year;the annual amount of nitrous oxide emitted from agricultural soil sources other than manure and fertilizer" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherEnergyUse,"Annual Amount of Emissions: Other Energy Use, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Energy Use;emissions of nitrous oxide from other energy sources;nitrous oxide emissions from other energy use;nitrous oxide emissions from sources other than electricity and heat;nitrous oxide emissions from sources other than energy" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherFossilFuelOperations,"Annual Amount of Emissions: Other Fossil Fuel Operations, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Fossil Fuel Operations;annual nitrous oxide emissions from other fossil fuel operations;nitrous oxide emissions from other fossil fuel operations;nitrous oxide emissions from other fossil fuel operations in a year;the amount of nitrous oxide emitted from other fossil fuel operations in a year" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherManufacturing,"Annual Amount of Emissions: Other Manufacturing, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Manufacturing;annual nitrous oxide emissions from other manufacturing;nitrous oxide emissions from other manufacturing;nitrous oxide emissions from other manufacturing in one year;other manufacturing nitrous oxide emissions per year" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherOnsiteFuelUsage,"Annual Amount of Emissions: Other Onsite Fuel Usage, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Onsite Fuel Usage;annual emissions of nitrous oxide from other onsite fuel usage;annual nitrous oxide emissions from other onsite fuel usage;nitrous oxide emissions from other onsite fuel usage;nitrous oxide emissions from other onsite fuel usage per year" -Annual_Emissions_NitrousOxide_ClimateTrace_OtherTransportation,"Annual Amount of Emissions: Other Transportation, Nitrous Oxide;Annual Emissions of Nitrous Oxide Climate Trace in Other Transportation;the amount of nitrous oxide emitted by other transportation each year;the annual amount of nitrous oxide emissions from other transportation;the total amount of nitrous oxide emitted by other transportation in one year;the yearly amount of nitrous oxide emitted by other transportation" -Annual_Emissions_NitrousOxide_CroplandFire,"Annual Amount of Emissions: Cropland Fire, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Cropland Fire;annual nitrous oxide emissions from cropland fires;cropland fire nitrous oxide emissions;nitrous oxide emissions from cropland fires;nitrous oxide emissions from cropland fires per year" -Annual_Emissions_NitrousOxide_FossilFuelOperations,"Annual Amount of Emissions: Fossil Fuel Operations, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Fossil Fuel Operations;the amount of nitrous oxide emitted from fossil fuel operations each year;the amount of nitrous oxide emitted from fossil fuel operations in one year;the annual amount of nitrous oxide emitted from fossil fuel operations;the annual emissions of nitrous oxide from fossil fuel operations" -Annual_Emissions_NitrousOxide_FuelCombustionForDomesticAviation,"Annual Amount of Emissions: Fuel Combustion for Domestic Aviation, Nitrous Oxide;Annual Emissions of Nitrous Oxide For Domestic Aviation;emissions of nitrous oxide from domestic aviation fuel combustion;nitrous oxide emissions from domestic aviation;nitrous oxide emissions from domestic aviation fuel combustion;nitrous oxide emissions from fuel combustion in domestic aviation" -Annual_Emissions_NitrousOxide_FuelCombustionForInternationalAviation,"Annual Amount of Emissions: Fuel Combustion for International Aviation, Nitrous Oxide;Annual Emissions of Nitrous Oxide For International Aviation;annual nitrous oxide emissions from international aviation;nitrous oxide emissions from international aviation;nitrous oxide emissions from international aviation each year;the amount of nitrous oxide emitted by international aviation each year" -Annual_Emissions_NitrousOxide_FuelCombustionForRailways,"Annual Amount of Emissions: Fuel Combustion for Railways, Nitrous Oxide;Annual Emissions of Nitrous Oxide For Railways;nitrous oxide emissions from fuel combustion in railways;the amount of nitrous oxide emitted from fuel combustion in railways each year;the annual amount of nitrous oxide emitted from fuel combustion in railways;the yearly amount of nitrous oxide emitted from fuel combustion in railways" -Annual_Emissions_NitrousOxide_FuelCombustionForResidentialCommercialOnsiteHeating,"Annual Amount of Emissions: Fuel Combustion for Residential Commercial Onsite Heating, Nitrous Oxide;Annual Emissions of Nitrous Oxide For Residential Commercial Onsite Heating;how much nitrous oxide is emitted from fuel combustion for residential and commercial onsite heating each year?;what is the annual amount of nitrous oxide emissions from fuel combustion for residential and commercial onsite heating?;what is the annual emission rate of nitrous oxide from fuel combustion for residential and commercial onsite heating?;what is the total amount of nitrous oxide emitted from fuel combustion for residential and commercial onsite heating each year?" -Annual_Emissions_NitrousOxide_FuelCombustionForRoadVehicles,"Annual Amount of Emissions: Fuel Combustion for Road Vehicles, Nitrous Oxide;Annual Emissions of Nitrous Oxide For Road Vehicles;annual nitrous oxide emissions from fuel combustion for road vehicles;annual nitrous oxide emissions from road vehicles;nitrous oxide emissions from fuel combustion for road vehicles in a year;the amount of nitrous oxide emitted from fuel combustion for road vehicles in a year" -Annual_Emissions_NitrousOxide_FuelCombustionInBuildings,"Annual Amount of Emissions: Fuel Combustion in Buildings, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Buildings;the amount of nitrous oxide emitted from fuel combustion in buildings each year;the annual emissions of nitrous oxide from fuel combustion in buildings;the annual quantity of nitrous oxide emitted from fuel combustion in buildings;the yearly amount of nitrous oxide emitted from fuel combustion in buildings" -Annual_Emissions_NitrousOxide_Manufacturing,"Annual Amount of Emissions: Manufacturing, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Manufacturing;the annual amount of nitrous oxide emitted by manufacturing;the annual nitrous oxide emissions from manufacturing;the yearly amount of nitrous oxide emitted by manufacturing;what is the annual amount of nitrous oxide emissions from manufacturing?" -Annual_Emissions_NitrousOxide_ManureManagement,"Annual Amount of Emissions: Manure Management, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Manure Management;annual nitrous oxide emissions from manure management;manure management's annual nitrous oxide emissions;nitrous oxide emissions from manure management each year;nitrous oxide emissions from manure management in a year" -Annual_Emissions_NitrousOxide_NonBiogenic,Annual Emissions of Non-Biogenic Nitrous Oxide;Annual emissions of nitrous oxide from non-biogenic sources;Annual emissions of non-biogenic nitrous oxide;Annual release of non-biogenic nitrous oxide;How much nitrous oxide is emitted from non-biological sources each year?;The amount of nitrous oxide released into the atmosphere each year;The amount of nitrous oxide released into the atmosphere each year that is not from natural sources;the amount of nitrous oxide released into the atmosphere each year that is not from natural sources;the amount of nitrous oxide that is not from natural sources that is released into the atmosphere each year;the annual amount of nitrous oxide that is not from natural sources that is released into the atmosphere;the annual release of nitrous oxide into the atmosphere from human activities -Annual_Emissions_NitrousOxide_OilAndGasRefining,"Annual Amount of Emissions: Oil And Gas Refining, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Oil and Gas Refining;the amount of nitrous oxide emitted from oil and gas refining each year;the amount of nitrous oxide emitted from oil and gas refining in one year;the annual amount of nitrous oxide emitted from oil and gas refining;the yearly amount of nitrous oxide emitted from oil and gas refining" -Annual_Emissions_NitrousOxide_OpenBurningWaste,"Annual Amount of Emissions: Open Burning Waste, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Open Burning Waste;the amount of open burning waste and nitrous oxide emitted each year;the annual amount of emissions from open burning waste and nitrous oxide;the annual total of open burning waste and nitrous oxide emissions;the total amount of open burning waste and nitrous oxide emitted in one year" -Annual_Emissions_NitrousOxide_Power,"1 the amount of nitrous oxide emitted each year from power plants;2 the yearly amount of nitrous oxide released into the atmosphere from power plants;3 the annual amount of nitrous oxide that power plants release into the air;Annual Amount of Emissions: Power, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Power;sure, here are 5 different ways of saying ""annual amount of emissions: power, nitrous oxide"" in a colloquial way:" -Annual_Emissions_NitrousOxide_SolidFuelTransformation,"Annual Amount of Emissions: Solid Fuel Transformation, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Solid Fuel Transformation;how much nitrous oxide is emitted from solid fuel transformation each year?;how much solid fuel transformation contributes to nitrous oxide emissions each year?;what is the annual amount of nitrous oxide emissions from solid fuel transformation?;what is the annual contribution of solid fuel transformation to nitrous oxide emissions?" -Annual_Emissions_NitrousOxide_SyntheticFertilizerApplication,"Annual Amount of Emissions: Synthetic Fertilizer Application, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Synthetic Fertilizer Application;how much nitrous oxide is emitted from synthetic fertilizer application each year?;how much nitrous oxide is released into the atmosphere each year from synthetic fertilizer application?;what is the annual amount of nitrous oxide emissions from synthetic fertilizer application?;what is the annual release of nitrous oxide into the atmosphere from synthetic fertilizer application?" -Annual_Emissions_NitrousOxide_Transportation,"Annual Amount of Emissions: Transportation, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Transportation;nitrous oxide emissions from the transportation sector;nitrous oxide emissions from transportation;the annual amount of nitrous oxide emitted by transportation;transportation's nitrous oxide emissions" -Annual_Emissions_NitrousOxide_WasteManagement,"Annual Amount of Emissions: Waste Management, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Waste Management;how much nitrous oxide is emitted from waste management each year?;how much nitrous oxide is produced by waste management each year?;what is the annual amount of nitrous oxide emitted from waste management?;what is the annual emission of nitrous oxide from waste management?" -Annual_Emissions_NitrousOxide_WastewaterTreatmentAndDischarge,"Annual Amount of Emissions: Wastewater Treatment And Discharge, Nitrous Oxide;Annual Emissions of Nitrous Oxide in Wastewater Treatment and Discharge;amount of nitrous oxide emitted from wastewater treatment and discharge;how much nitrous oxide is emitted from wastewater treatment and discharge;nitrous oxide emissions from wastewater treatment and discharge;nitrous oxide emissions from wastewater treatment and discharge per year" -Annual_Emissions_Perfluorocarbon_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Perfluorocarbon;Annual Emissions of Non Biogenic Perfluorocarbon;annual emissions of perfluorocarbons from non-biogenic sources;perfluorocarbon emissions from non-biogenic sources;the amount of perfluorocarbons emitted from non-biogenic sources each year;the annual release of perfluorocarbons from non-biogenic sources" -Annual_Emissions_SulfurHexafluoride_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Sulfur Hexafluoride;Annual Emissions of Non Biogenic Sulfur Hexafluoride;annual emissions of sulfur hexafluoride from non-biogenic sources;the amount of sulfur hexafluoride emitted each year from non-biogenic sources;the annual discharge of sulfur hexafluoride from non-biogenic sources;the annual release of sulfur hexafluoride from non-biogenic sources" -Annual_Emissions_VeryShortLivedCompounds_NonBiogenic,"Annual Amount of Emissions: Non Biogenic Emission Source, Very Short Lived Compounds;Annual Emissions of Non Biogenic Very Short Lived Compounds;annual amount of emissions from non-biogenic sources of very short-lived compounds;annual emissions from non-biogenic sources of very short-lived compounds;annual emissions of very short-lived compounds from non-biogenic sources;emissions from non-biogenic sources of very short-lived compounds, annually" -Annual_ExpectedLoss_NaturalHazardImpact,1 the annual cost of natural disasters;2 the estimated cost of natural disasters each year;3 the annual financial impact of natural disasters;4 the estimated financial impact of natural disasters each year;Annual Expected Loss from Natural Hazard Impact;Cost of natural disasters;Estimated Annual Cost From Natural Disaster Impacts;Estimated annual cost from natural disaster impacts;Estimated annual loss from natural hazard impacts;How much it costs each year due to natural disasters;The annual price tag of natural disasters;The estimated cost of natural disasters on an annual basis;The financial burden of natural disasters;The financial impact of natural disasters;The price tag of natural disasters;The yearly financial impact of natural disasters -Annual_ExpectedLoss_NaturalHazardImpact_AvalancheEvent,Annual Expected Loss from Natural Hazard Impact: Avalanche;Annual Expected Loss on Avalanche Event;the annual cost of avalanches;the annual damage from avalanches;the average annual loss from avalanches;the expected annual loss from avalanches -Annual_ExpectedLoss_NaturalHazardImpact_CoastalFloodEvent,Annual Expected Loss from Natural Hazard Impact: Coastal Flood;Annual Expected Loss on Coastal Floods;the amount of money that is expected to be lost each year due to coastal flooding;the annual expected loss from coastal flooding;the annual financial impact of coastal flooding;the expected annual loss from coastal flooding -Annual_ExpectedLoss_NaturalHazardImpact_ColdWaveEvent,Annual Expected Loss from Natural Hazard Impact: Cold Wave;Annual Expected Loss on old Waves;the annual cost of cold waves;the annual damage from cold waves;the average annual loss from cold waves;the expected annual loss from cold waves -Annual_ExpectedLoss_NaturalHazardImpact_DroughtEvent,Annual Expected Loss from Natural Hazard Impact: Drought;Annual Expected Loss on Drought;the annual damage from droughts;the annual expected loss from drought;the average annual loss from droughts;the expected annual loss from droughts -Annual_ExpectedLoss_NaturalHazardImpact_EarthquakeEvent,1 the average annual loss from earthquakes in the united states;2 the amount of money that is expected to be lost each year due to earthquakes in the united states;Annual Expected Loss Earthquakes;Annual Expected Loss from Natural Hazard Impact: Earthquake;the amount of money that is expected to be lost each year due to earthquakes in the united states;the average annual loss from earthquakes in the united states -Annual_ExpectedLoss_NaturalHazardImpact_HailEvent,Annual Expected Loss Hails;Annual Expected Loss from Natural Hazard Impact: Hail;the average annual loss from hail damage -Annual_ExpectedLoss_NaturalHazardImpact_HeatWaveEvent,Annual Expected Loss from Natural Hazard Impact: Heat Wave;Annual Expected Loss on Heat Waves;the amount of money that is expected to be lost each year due to heat waves;the annual expected loss from heat waves;the expected loss from heat waves each year;the financial impact of heat waves -Annual_ExpectedLoss_NaturalHazardImpact_HurricaneEvent,Annual Expected Loss from Natural Hazard Impact: Hurricane;Annual Expected Loss on Hurricanes;the annual damage from hurricanes;the annual expected loss from hurricane impact;the annual impact of hurricanes;the annual loss from hurricanes -Annual_ExpectedLoss_NaturalHazardImpact_IceStormEvent,Annual Expected Loss from Natural Hazard Impact: Ice Storm;Annual Expected Loss on Ice Storms;how much damage do ice storms cause each year?;how much money is expected to be lost each year due to ice storms?;what is the annual financial impact of ice storms?;what is the estimated annual cost of ice storms? -Annual_ExpectedLoss_NaturalHazardImpact_LandslideEvent,Annual Expected Loss from Natural Hazard Impact: Landslide;Annual Expected Loss on Landslides;the amount of money that is expected to be lost each year due to landslides;the average annual loss from landslides;the cost of landslides each year;the expected annual loss from landslides -Annual_ExpectedLoss_NaturalHazardImpact_LightningEvent,Annual Expected Loss from Natural Hazard Impact: Lightning;Annual Expected Loss on Lightnings;the amount of money that is typically lost each year due to lightning strikes in the united states;the average annual loss from lightning strikes in the united states;the estimated financial impact of lightning strikes in the united states each year;the expected cost of lightning strikes in the united states each year -Annual_ExpectedLoss_NaturalHazardImpact_RiverineFloodingEvent,Annual Expected Loss from Natural Hazard Impact: Riverine Flooding;Annual Expected Loss on Riverine Floods;the annual cost of riverine flooding;the annual damage from riverine flooding;the average annual loss from riverine flooding;the expected annual loss from riverine flooding -Annual_ExpectedLoss_NaturalHazardImpact_StrongWindEvent,Annual Expected Loss from Natural Hazard Impact: Strong Wind;Annual Expected Loss on Strong Winds;how much money is expected to be lost each year due to strong winds?;what is the annual expected loss from strong winds?;what is the average annual loss from strong winds?;what is the estimated annual loss from strong winds? -Annual_ExpectedLoss_NaturalHazardImpact_TornadoEvent,Annual Expected Loss from Natural Hazard Impact: Tornado;Annual Expected Loss on Tornados;the average annual loss from tornadoes in the united states;the estimated annual damage from tornadoes in the united states;the expected annual cost of tornadoes in the united states;the projected annual loss from tornadoes in the united states -Annual_ExpectedLoss_NaturalHazardImpact_TsunamiEvent,Annual Expected Loss from Natural Hazard Impact: Tsunami;Annual Expected Loss on Tsunamis;the annual cost of tsunamis;the annual damage from tsunamis;the average annual loss from tsunamis;the expected annual loss from tsunamis -Annual_ExpectedLoss_NaturalHazardImpact_VolcanicActivityEvent,Annual Expected Loss from Natural Hazard Impact: Volcanic Activity;Annual Expected Loss on Volcanic Activities;the amount of money that is expected to be lost from volcanic activity each year;the annual cost of volcanic activity;the annual expected loss from volcanic activity;the expected loss from volcanic activity each year -Annual_ExpectedLoss_NaturalHazardImpact_WildfireEvent,Annual Expected Loss from Natural Hazard Impact: Wildfire;Annual Expected Loss on Wildfires;the amount of money that is lost to wildfires each year;the annual cost of wildfires to the economy;the average annual loss from wildfires;the expected cost of wildfires each year -Annual_ExpectedLoss_NaturalHazardImpact_WinterWeatherEvent,Annual Expected Loss from Natural Hazard Impact: Winter Weather;Annual Expected Loss on Winter Weather;the amount of money that is typically lost each year due to winter weather events;the average annual loss from winter weather disasters;the average annual loss from winter weather events;the projected financial loss from winter weather events each year -Annual_Exports_Electricity,Annual Exports of Electricity;electricity exported each year;electricity exported per year;the amount of electricity exported annually;the annual amount of electricity exported -Annual_Exports_Fuel_AviationGasoline,Annual Exports of Aviation Gasoline;Annual Exports of Fuel: Aviation Gasoline;the amount of aviation gasoline exported each year;the annual figure for the amount of aviation gasoline that is exported;the yearly amount of aviation gasoline that is shipped out of the country;the yearly total of aviation gasoline that is shipped out of the us -Annual_Exports_Fuel_BituminousCoal,1 the amount of bituminous coal that is exported each year;4 the total tonnage of bituminous coal that is exported every year;Annual Exports of Bituminous Coal;Annual Exports of Fuel: EIA_Bituminous Coal;the amount of bituminous coal that is exported each year;the total amount of bituminous coal that is exported in a year -Annual_Exports_Fuel_BrownCoal,Annual Exports Of Brown Coal;Annual Exports of Fuel: Brown Coal;the amount of brown coal that is exported each year;the annual brown coal exportation;the annual brown coal trade;the tonnage of brown coal that is traded internationally each year -Annual_Exports_Fuel_Charcoal,Annual Exports of Charcoal;Annual Exports of Fuel: Charcoal;the amount of charcoal exported each year;the annual number of charcoal shipments;the total amount of charcoal that is exported each year;the yearly amount of charcoal that is shipped out of the country -Annual_Exports_Fuel_CokeOvenCoke,Annual Exports of Coke Oven Coke;Annual Exports of Fuel: Coke Oven Coke;the amount of coke oven coke exported each year;the number of tons of coke oven coke that are exported each year;the total tonnage of coke oven coke that is exported each year;the yearly amount of coke oven coke exported -Annual_Exports_Fuel_CrudeOil,Annual Exports of Crude Oil;Annual Exports of Fuel: Crude Oil;the amount of crude oil that a country exports each year;the annual amount of crude oil that a country sends abroad;the annual volume of crude oil that a country ships out of its borders;the yearly amount of crude oil exported -Annual_Exports_Fuel_DieselOil,Annual Exports of Diesel Oil;Annual Exports of Fuel: Diesel Oil;diesel oil exports per year;diesel oil shipped out annually;the annual amount of diesel oil that is shipped out of the country;the annual figure for diesel oil exports -Annual_Exports_Fuel_FuelOil,Annual Exports Of Fuel Oil;Annual Exports of Fuel: Fuel Oil;the amount of fuel oil that is exported each year;the annual volume of fuel oil that is shipped out of the country;the yearly amount of fuel oil that is shipped out of the country;the yearly number of barrels of fuel oil that are sent abroad -Annual_Exports_Fuel_Fuelwood,Annual Exports of Fuel: Fuelwood;Annual Exports of Fuelwood;the amount of fuelwood that is exported each year;the annual amount of fuelwood that is shipped out of a country;the annual amount of fuelwood that is traded internationally;the annual number of fuelwood shipments -Annual_Exports_Fuel_HardCoal,Annual Exports Of Hard Coal;Annual Exports of Fuel: Hard Coal;hard coal exports per year;the amount of hard coal exported each year;the annual hard coal export total;the yearly amount of hard coal exported -Annual_Exports_Fuel_Kerosene,Annual Exports of EIA_Kerosene;Annual Exports of Fuel: EIA_Kerosene;the amount of eia_kerosene exported each year;the annual exportation of eia_kerosene;the yearly amount of eia_kerosene that is shipped out of the country;the yearly transfer of eia_kerosene to other countries -Annual_Exports_Fuel_KeroseneJetFuel,Annual Exports of Fuel: Kerosene Jet Fuel;Annual Exports of Kerosene Jet Fuel;the amount of kerosene jet fuel that is exported each year;the amount of kerosene jet fuel that is sold to other countries each year;the yearly total of kerosene jet fuel that is exported;the yearly total of kerosene jet fuel that is sold to other nations -Annual_Exports_Fuel_LiquifiedPetroleumGas,Annual Exports of Fuel: Liquefied Petroleum Gas;Annual Exports of Liquefied Petroleum Gas;the amount of liquefied petroleum gas that is exported each year;the annual number of liquefied petroleum gas shipments;the total amount of liquefied petroleum gas that is exported in a year;the yearly amount of liquefied petroleum gas that is shipped out of the country -Annual_Exports_Fuel_Lubricants,Annual Exports of Fuel: Lubricants;Annual Exports of Lubricants;the amount of lubricants exported each year;the amount of lubricants that are exported each year;the annual figure for lubricants that are shipped out of the country;the yearly total of lubricants that are shipped internationally -Annual_Exports_Fuel_MotorGasoline,Annual Exports of Fuel: Motor Gasoline;Annual Exports of Motor Gasoline -Annual_Exports_Fuel_Naphtha,Annual Exports of Fuel: Naphtha;Annual Exports of Naphtha;how much naphtha does the us export each year?;naphtha exports in a year;naphtha exports per year;the amount of naphtha exported each year -Annual_Exports_Fuel_NaturalGas,Annual Exports of Fuel: Natural Gas;Annual Exports of Natural Gas;how much natural gas does the us export each year?;the amount of natural gas that is exported each year;the yearly amount of natural gas that is shipped out of the country;what is the annual amount of natural gas that the us exports? -Annual_Exports_Fuel_NaturalGasLiquids,Annual Exports of Fuel: Natural Gas Liquids;Annual Exports of Natural Gas Liquids;the amount of natural gas liquids that are exported each year;the annual shipment of natural gas liquids abroad;the yearly amount of natural gas liquids that are sent out of the country;the yearly transfer of natural gas liquids to other countries -Annual_Exports_Fuel_OtherBituminousCoal,Annual Exports of Fuel: UN_Other Bituminous Coal;Annual Exports of UN Other Bituminous Coal;the amount of un other bituminous coal exported each year;the annual figure for un other bituminous coal that is sent abroad;the yearly amount of un other bituminous coal that is shipped out of the country;the yearly total of un other bituminous coal that is exported -Annual_Exports_Fuel_OtherOilProducts,Annual Exports of Fuel: UN_Other Oil Products;Annual Exports of Other Oil Products;the amount of other oil products exported each year;the annual figure for the number of other oil products that are sent to other countries;the total number of other oil products that are exported each year;the yearly amount of other oil products that are shipped out of the country -Annual_Exports_Fuel_ParaffinWaxes,Annual Exports of Fuel: Paraffin Waxes;Annual Exports of Paraffin Waxes;the amount of paraffin wax that is exported each year;the amount of paraffin waxes exported each year;the annual figure for the number of paraffin waxes that are exported;the volume of paraffin wax that is exported annually -Annual_Exports_Fuel_PetroleumCoke,Annual Exports of Fuel: Petroleum Coke;Annual Exports of Petroleum Coke;the amount of petroleum coke that is exported each year;the annual volume of petroleum coke that is sent to other countries;the yearly amount of petroleum coke that is shipped out of the country;the yearly tonnage of petroleum coke that is transported to foreign markets -Annual_Exports_Fuel_WhiteSpirit,Annual Exports of Fuel: White Spirit;Annual Exports of White Spirit;how much white spirit does the us export annually? -Annual_Generation_Electricity,"Amount of electricity generated in a year;Annual electricity generation;Annual energy generation (all fuels, all sectors);Energy Generation (All Fuels, All Sectors);Net generation, all fuels, all sectors, annual;The amount of power generated annually;The electricity production;The total amount of electricity produced each year;The yearly energy output;annual energy output (all fuels, all sectors);annual energy production (all fuels, all sectors);annual energy yield (all fuels, all sectors);total energy produced in a year (all fuels, all sectors)" -Annual_Generation_Electricity_AutoProducer,Annual Generation of Auto-Produced Electricity;Annual Generation of Electricity: Auto Producer;the annual amount of electricity generated by cars;the annual electricity generation from cars;the annual electricity production of cars;the yearly production of electricity by cars -Annual_Generation_Electricity_BioGas_ThermalElectricity,"Annual Generation of Bio Gas in Thermal Electricity;Annual Generation of Electricity: From Bio Gas, Thermal Electricity;the amount of biogas generated annually for thermal electricity production;the amount of biogas produced each year for thermal electricity;the annual output of biogas for thermal electricity;the annual production of biogas for thermal electricity" -Annual_Generation_Electricity_BrownCoal_ThermalElectricity,"Annual Generation of Electricity by Brown Coal in Thermal Electricity;Annual Generation of Electricity: From Brown Coal, Thermal Electricity;annual electricity generated from brown coal in thermal power plants;the amount of electricity generated from brown coal in thermal power stations each year;the amount of electricity produced from brown coal in thermal power plants each year;the annual production of electricity from brown coal in thermal power stations" -Annual_Generation_Electricity_Coal,"Annual Net Generation of Coal By All Sectors;Net generation, coal, all sectors, annual;annual coal generation by all sectors;coal generation by all sectors in a year;the annual net generation of coal by all sectors;what is the annual net generation of coal by all sectors?" -Annual_Generation_Electricity_Coal_ElectricPower,"Annual Generation of Electricity by Coal in Electric Power;Net generation, coal, electric power (total), annual;the amount of electricity generated by coal each year in the electric power sector;the annual amount of electricity produced from coal in the electric power sector;the annual production of electricity from coal in the electric power industry;the yearly output of electricity from coal in the electric power industry" -Annual_Generation_Electricity_Coal_ElectricUtility,"Annual Generation of Coal in Electric Utility;Net generation, coal, electric utility, annual;annual net generation from coal-fired electric utilities" -Annual_Generation_Electricity_Coal_ThermalElectricity,"Annual Generation of Electricity: From Coal, Thermal Electricity;Annual Generation of Thermal Electricity From Coal;the annual production of thermal electricity from coal" -Annual_Generation_Electricity_CombustibleFuel_AutoProducer,"Annual Generation of Electricity by Combustible Fuel Auto Producers;Annual Generation of Electricity: From Combustible Fuel, Auto Producer;how much electricity do combustible fuel auto producers generate each year?;how much electricity do combustible fuel auto producers generate in a year?;what is the annual electricity generation of combustible fuel auto producers?;what is the annual electricity output of combustible fuel auto producers?" -Annual_Generation_Electricity_CombustibleFuel_AutoProducerCombinedHeatPowerPlants,"Annual Generation of Combustible Fuel in Auto Producer Combined Heat Power Plants;Annual Generation of Electricity: From Combustible Fuel, Auto Producer Combined Heat Power Plants;the amount of electricity generated each year from combustible fuels and auto producer combined heat power plants;the annual output of electricity from combustible fuels and auto producer combined heat power plants;the annual production of electricity from combustible fuels and auto producer combined heat power plants;the total amount of electricity produced each year by combustible fuels and auto producer combined heat power plants" -Annual_Generation_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants,"Annual Generation Of Combustible Fuel In Autoproducer Electricity Power Plants;Annual Generation of Electricity: From Combustible Fuel, Auto Producer Electricity Power Plants;the annual amount of combustible fuel generated in autoproducer electricity power plants;the annual production of combustible fuel in autoproducer electricity power plants;the yearly generation of combustible fuel in autoproducer electricity power plants;the yearly output of combustible fuel in autoproducer electricity power plants" -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducer,"Annual Generation of Electricity From Combustible Fuel;Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer" -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,"Annual Generation of Electricity From Combustible Fuel by Main Activity Producer Combined Heat Power Plants;Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer Combined Heat Power Plants;annual production of electricity from combustible fuel by main activity producer combined heat and power plants;how much electricity is produced from combustible fuel by combined heat power plants each year?;what is the annual generation of electricity from combustible fuel by main activity producer combined heat power plants?;what is the annual production of electricity from combustible fuel by main activity producer combined heat power plants?" -Annual_Generation_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants,"Annual Generation of Electricity: From Combustible Fuel, Main Activity Producer Electricity Power Plants" -Annual_Generation_Electricity_Commercial,"Annual Net Generation Of All Fuels;Net generation, all fuels, all commercial (total), annual;annual net electricity generation from all fuels;annual net generation of electricity from all fuels;annual net output from all fuels" -Annual_Generation_Electricity_CommercialCogen,"Annual Net Generation of All Fuels in Commercial Cogen;Net generation, all fuels, commercial cogen, annual;the annual amount of electricity produced from all fuels in commercial cogeneration;the annual net generation of electricity from all fuels in commercial cogeneration;the annual net output of electricity from all fuels in commercial cogeneration;the total annual output of electricity from all fuels in commercial cogeneration" -Annual_Generation_Electricity_CommercialNonCogen,"Annual Net Generation of All Fuels in Commercial Non-Cogen;Net generation, all fuels, commercial non-cogen, annual;the annual amount of energy produced by commercial non-cogen facilities from all fuels;the annual output of all fuels in commercial non-cogen facilities;the total amount of energy produced by all fuels in commercial non-cogen facilities each year;the total amount of energy produced by commercial non-cogen facilities from all types of fuel" -Annual_Generation_Electricity_ConventionalHydroelectric,"Annual Net Generation Of Conventional Hydroelectric Energy In All Sectors;Net generation, conventional hydroelectric, all sectors, annual;the amount of conventional hydroelectric energy generated in all sectors each year;the annual output of conventional hydroelectric energy in all sectors;the annual production of conventional hydroelectric energy in all sectors;the total amount of conventional hydroelectric energy produced in all sectors annually" -Annual_Generation_Electricity_ConventionalHydroelectric_AutoProducer,"Annual Generation of Electricity From Conventional Hydroelectric by Auto Producers;Annual Generation of Electricity: From Conventional Hydroelectric, Auto Producer;how much conventional hydroelectric power do auto producers generate each year?;how much electricity do auto producers generate from conventional hydroelectric power each year?;what is the annual hydroelectric power generation from conventional sources by auto producers?;what is the annual hydroelectric power generation from conventional sources by the auto industry?" -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricPower,"Annual Net Generation of conventional Hydroelectric in Total Electric Power;Net generation, conventional hydroelectric, electric power (total), annual;the extent to which conventional hydroelectric power plants contribute to total electric power generation in a year;the percentage of total electric power generated by conventional hydroelectric power plants in a year;the proportion of total electric power generated by conventional hydroelectric power plants in a year;the share of total electric power generated by conventional hydroelectric power plants in a year" -Annual_Generation_Electricity_ConventionalHydroelectric_ElectricUtility,"Annual Net Generation of Conventional Hydroelectric in Electric Utility;Net generation, conventional hydroelectric, electric utility, annual;the amount of electricity generated by conventional hydroelectric power plants in electric utilities each year;the amount of electricity generated by conventional hydroelectric power plants in the electric utility industry each year;the annual hydroelectric power generation of electric utilities;the annual output of conventional hydroelectric power plants in electric utilities" -Annual_Generation_Electricity_ConventionalHydroelectric_MainActivityProducer,"Annual Generation oF Conventional Hydroelectric in Main Activity Producer;Annual Generation of Electricity: From Conventional Hydroelectric, Main Activity Producer;annual production of conventional hydroelectricity by the main activity producer;the amount of conventional hydroelectricity produced annually by the main activity producer;the annual output of conventional hydroelectricity from the main activity producer;the annual yield of conventional hydroelectricity from the main activity producer" -Annual_Generation_Electricity_DieselOil_ThermalElectricity,"Annual Generation of Electricity: From Diesel Oil, Thermal Electricity;Annual Generation of Thermal Electricity From Diesel Oil;the amount of thermal electricity generated from diesel oil each year;the amount of thermal electricity produced from diesel oil in a year;the annual production of thermal electricity from diesel oil;the yearly output of thermal electricity from diesel oil" -Annual_Generation_Electricity_ElectricPower,"Annual Generation of Electric Power in Electricity;Net generation, all fuels, electric power (total), annual" -Annual_Generation_Electricity_ElectricUtility,"Annual Net Generation of Electricity in Electric Utility;Net generation, all fuels, electric utility, annual;what was the annual net generation of electricity by electric utilities?" -Annual_Generation_Electricity_ElectricUtilityCogen,"Annual Net generation All fuels Electric Uity Cogen;Net generation, all fuels, electric utility cogen, annual;annual net generation of all fuels, electric utility, and cogeneration plants" -Annual_Generation_Electricity_ElectricUtilityNonCogen,"Annual Net generation of all Fuels in Electric Utility Non-Cogen;Net generation, all fuels, electric utility non-cogen, annual;the total amount of electricity generated by all fuels in electric utilities that are not cogeneration facilities, in a given year;the total amount of electricity generated by all fuels in electric utilities that are not cogeneration plants in a given year;the total amount of electricity generated by all fuels in electric utilities that are not combined heat and power (chp) facilities, in a given year;the total amount of electricity generated by all fuels in electric utilities that do not use cogeneration, in a given year" -Annual_Generation_Electricity_FuelOil_ThermalElectricity,"Annual Generation of Electricity: From Fuel Oil, Thermal Electricity;Annual Generation of Thermal Electricity From Fuel Oil;the amount of thermal electricity generated from fuel oil each year;the amount of thermal electricity produced from fuel oil in one year;the annual output of thermal electricity from fuel oil;the yearly production of thermal electricity from fuel oil" -Annual_Generation_Electricity_Households,Annual Generation of Electricity for Households;Annual Generation of Electricity: for Households -Annual_Generation_Electricity_IndependentPowerProducers,"Annual Net Generation of Electricity From All Fuels By Independent Power Producers;Net generation, all fuels, independent power producers (total), annual;the annual net generation of electricity from all fuels by independent power producers;the annual net generation of electricity from independent power producers;the total amount of electricity generated from all fuels by independent power producers each year;the total annual net generation of electricity from independent power producers" -Annual_Generation_Electricity_Industrial,"Annual Net Generation Of All Fuels By Industries;Net generation, all fuels, all industrial (total), annual;annual net generation of all fuels by economic activity;annual net generation of all fuels by end-use sector;annual net generation of all fuels by industry;annual net generation of all fuels by sector" -Annual_Generation_Electricity_IndustrialCogen,"Annual Net Generation of Electricity by Industrial Cogen;Net generation, all fuels, industrial cogen, annual;the amount of electricity generated by industrial cogeneration each year;the annual output of electricity from industrial cogeneration;the annual output of electricity from industrial cogeneration plants;the total amount of electricity produced by industrial cogeneration facilities in a year" -Annual_Generation_Electricity_IndustrialNonCogen,"Annual Generation of Electricity by Industrial Non Cogen;Annual Generation of Electricity by Industrial Non-Cogen;Net generation, all fuels, industrial non-cogen, annual;electricity generated by industrial non-cogen plants each year;the annual amount of electricity generated by industrial non-cogen plants;the total amount of electricity generated by industrial non-cogen plants in one year;the yearly output of electricity from industrial non-cogen plants" -Annual_Generation_Electricity_MainActivityProducer,Annual Generation of Electricity by Main Activity Producer;Annual Generation of Electricity: Main Activity Producer;what are the annual electricity generation figures for each type of producer?;what are the annual electricity generation statistics for each type of producer?;what is the annual electricity generation by each type of producer?;what is the annual generation of electricity by each type of producer? -Annual_Generation_Electricity_NaturalGas,"Annual Net Generation of Natural Gas in All Sectors;Net generation, natural gas, all sectors, annual;annual generation of natural gas in all sectors;natural gas generation in all sectors per year;the annual net generation of natural gas in all sectors;the total annual generation of natural gas in all sectors" -Annual_Generation_Electricity_NaturalGas_Commercial,"Annual Generation of Natural Gas in Commercial;Net generation, natural gas, all commercial (total), annual" -Annual_Generation_Electricity_NaturalGas_CommercialCogen,"Annual Net Generation of Natural Gas in Commercial Cogen;Net generation, natural gas, commercial cogen, annual;the amount of natural gas generated annually by commercial cogeneration;the amount of natural gas generated by commercial cogeneration each year;the annual amount of natural gas generated by commercial cogeneration facilities;the annual net generation of natural gas from commercial cogeneration facilities" -Annual_Generation_Electricity_NaturalGas_ElectricPower,"Annual Net Generation of Natural Gas in Electric Power;Net generation, natural gas, electric power (total), annual;the annual net generation of natural gas in electric power" -Annual_Generation_Electricity_NaturalGas_ElectricUtility,"Annual Net Generation Of Natural Gas In Electric Utility;Net generation, natural gas, electric utility, annual;the annual generation of natural gas by electric utilities" -Annual_Generation_Electricity_NaturalGas_ElectricUtilityCogen,"Annual Generation of Natural Gas in Electric Utility Cogen;Net generation, natural gas, electric utility cogen, annual" -Annual_Generation_Electricity_NaturalGas_ElectricUtilityNonCogen,"Annual Net Generation of Natural Gas in Utility Non-Cogen;Net generation, natural gas, electric utility non-cogen, annual;the annual net generation of natural gas by utilities, excluding cogeneration;the annual net output of natural gas generated by utilities, excluding cogeneration;what was the annual net generation of natural gas in the utility non-cogen sector?;what was the average annual net generation of natural gas in the utility non-cogen sector?" -Annual_Generation_Electricity_NaturalGas_IndependentPowerProducers,"Annual Net Generation Of Natural Gas in Independent Power Producers;Net generation, natural gas, independent power producers (total), annual;the annual generation of natural gas by independent power producers;the annual net generation of natural gas by independent power producers" -Annual_Generation_Electricity_NaturalGas_Industrial,"Annual Net Generation of Natural Gas In All Industrials;Net generation, natural gas, all industrial (total), annual;the annual net generation of natural gas by all industries;the annual net generation of natural gas in all industries;the annual net output of natural gas from all industrial sources;the net amount of natural gas generated by all industries in a year" -Annual_Generation_Electricity_NaturalGas_IndustrialCogen,"Annual Net Generation Of Natural Gas for industrial cogen;Net generation, natural gas, industrial cogen, annual;annual natural gas generation for industrial cogeneration" -Annual_Generation_Electricity_NaturalGas_ThermalElectricity,"1 the amount of electricity generated from natural gas in thermal power plants each year;2 the annual production of electricity from natural gas in thermal power plants;3 the total amount of electricity generated from natural gas in thermal power plants in a year;4 the annual output of electricity from natural gas in thermal power plants;Annual Generation of Electricity From Natural Gas In Thermal Electricity;Annual Generation of Electricity: From Natural Gas, Thermal Electricity" -Annual_Generation_Electricity_NonRenewableWaste_ThermalElectricity,"Annual Generation of Electricity: From Non Renewable Waste, Thermal Electricity;Annual Generation of Non-Renewable Waste in Thermal Electricity;the amount of non-renewable waste generated each year from thermal electricity production;the annual generation of non-renewable waste from thermal electricity production facilities;the annual production of non-renewable waste from thermal electricity generation;the yearly amount of non-renewable waste produced by thermal electricity generation" -Annual_Generation_Electricity_OilProducts_ThermalElectricity,"Annual Generation of Electricity: From Oil Products, Thermal Electricity;Annual Generation of Thermal Electricity From Oil Products Industries;the amount of thermal electricity generated by oil products industries each year;the amount of thermal electricity produced by oil products industries in a year;the annual production of thermal electricity from oil products industries;the yearly output of thermal electricity from oil products industries" -Annual_Generation_Electricity_Other,"Annual Net generation in All Sectors;Net generation, other, all sectors, annual;annual net electricity generation from all sectors;annual net electricity production from all sectors;annual net generation from all sectors;total annual generation from all sectors" -Annual_Generation_Electricity_OtherBiomass,"Annual Net generation Of Other Biomass In All Sectors;Net generation, other biomass, all sectors, annual;annual amount of energy from other biomass in all sectors;annual net production of other biomass in all sectors;total amount of energy produced from other biomass in all sectors in a year;total energy produced from other biomass in all sectors in one year" -Annual_Generation_Electricity_OtherBiomass_ElectricPower,"Annual Net Generation of Biomass For Electric Power;Net generation, other biomass, electric power (total), annual;the amount of electricity generated from biomass each year;the annual output of electricity from biomass;the total amount of electricity produced from biomass in a year;the yearly production of electricity from biomass" -Annual_Generation_Electricity_OtherBiomass_ElectricUtilityNonCogen,"Annual Net Generation of Other Biomass in Electric Utility Non-cogen;Net generation, other biomass, electric utility non-cogen, annual;the annual net generation of electricity from biomass in electric utilities that are not cogeneration facilities;the annual output of electricity from other biomass in electric utility non-cogen facilities;the annual output of electricity from other biomass in electric utility non-cogen plants;the annual yield of electricity from other biomass in electric utility non-cogen plants" -Annual_Generation_Electricity_OtherBiomass_IndependentPowerProducers,"Annual Net generation Of Electricity by Other Biomass From Independent Power Producers;Net generation, other biomass, independent power producers (total), annual;the amount of electricity generated by independent power producers from other biomass sources each year;the annual net generation of electricity from other biomass sources by independent power producers;the annual output of electricity from other biomass sources by independent power producers;the total amount of electricity generated by independent power producers from other biomass sources in a year" -Annual_Generation_Electricity_Other_ElectricPower,"Annual Net Generation of Other Fuels in Electric Power Generation;Net generation, other, electric power (total), annual;the annual sum of electricity generated from other fuels" -Annual_Generation_Electricity_PetroleumLiquids,"Annual Net Generation of Petroleum Liquids in All Sectors;Net generation, petroleum liquids, all sectors, annual;annual net output of petroleum liquids in all sectors;annual net production of petroleum liquids in all sectors;annual net yield of petroleum liquids in all sectors;annual petroleum liquids yield from all sectors" -Annual_Generation_Electricity_PetroleumLiquids_Commercial,"Annual Net Generation of Petroleum Liquids in All Commercial;Net generation, petroleum liquids, all commercial (total), annual;annual commercial petroleum liquids production;annual commercial production of petroleum liquids" -Annual_Generation_Electricity_PetroleumLiquids_ElectricPower,"Net generation, petroleum liquids, electric power (total), annual;Total Annual Net Generation of Petroleum Liquids in Electric Power Plants;the total amount of petroleum liquids generated by electric power plants each year;the total amount of petroleum liquids that electric power plants produce each year;the total annual output of petroleum liquids from electric power plants;the total annual production of petroleum liquids by electric power plants" -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtility,"Annual Net Generation of Petroleum Liquids in Electric Utility;Net generation, petroleum liquids, electric utility, annual" -Annual_Generation_Electricity_PetroleumLiquids_ElectricUtilityNonCogen,"Annual Net Generation of Petroleum Liquids in Electric Utility Non-Cogen;Net generation, petroleum liquids, electric utility non-cogen, annual;the annual net generation of petroleum liquids by electric utilities, excluding cogeneration;the annual production of petroleum liquids by electric utilities, excluding cogeneration;the annual production of petroleum liquids by electric utilities, not including cogeneration;the annual yield of petroleum liquids from electric utilities, excluding cogeneration" -Annual_Generation_Electricity_PetroleumLiquids_IndependentPowerProducers,"Annual Net Generation of Petroleum Liquids in Independent Power Producers;Net generation, petroleum liquids, independent power producers (total), annual;annual production of petroleum liquids by independent power producers;the annual production of petroleum liquids by independent power producers;the annual yield of petroleum liquids by independent power producers;the yearly yield of petroleum liquids from independent power producers" -Annual_Generation_Electricity_PetroleumLiquids_Industrial,"Annual Net Generation of Petroleum Liquids in all industrial;Net generation, petroleum liquids, all industrial (total), annual;the annual production of petroleum liquids by industry" -Annual_Generation_Electricity_PetroleumLiquids_IndustrialCogen,"Annual Net Generation of Electricity by Petroleum Liquids in Industrial Cogen;Net generation, petroleum liquids, industrial cogen, annual;the amount of electricity generated from petroleum liquids in industrial cogeneration each year;the annual net generation of electricity from petroleum liquids in industrial cogeneration facilities;the annual net output of electricity from petroleum liquids in industrial cogeneration;the annual net production of electricity from petroleum liquids in industrial cogeneration units" -Annual_Generation_Electricity_RenewableEnergy,"Annual Net Generation of Other Renewables in All Sectors;Net generation, other renewables (total), all sectors, annual;annual generation of other renewable energy sources in all sectors;annual output of other renewable energy sources in all sectors;annual production of other renewable energy sources in all sectors;the total amount of electricity generated from other renewable sources in all sectors each year" -Annual_Generation_Electricity_RenewableEnergy_Commercial,"Net generation, other renewables (total), all commercial (total), annual;Total Annual Net Generation Other Renewables;total annual generation from other renewable sources;total annual net generation from non-hydroelectric renewable energy sources;total annual net generation from other renewable energy sources;total annual net generation from renewable energy sources other than hydropower" -Annual_Generation_Electricity_RenewableEnergy_ElectricPower,"Net generation, other renewables (total), electric power (total), annual;Total Annual Net Generation of Other Renewables in Electric Power;the total amount of electricity generated from other renewable sources each year;the total amount of electricity generated from other renewable sources in a year;the total amount of electricity generated from renewable sources each year;the total amount of electricity generated from sources that are sustainable and renewable" -Annual_Generation_Electricity_RenewableEnergy_ElectricUtility,"Annual Net generation Of Other Renewables In Electric Utility;Net generation, other renewables (total), electric utility, annual;the annual amount of electricity generated from other renewable sources in electric utilities;the annual net generation of other renewables in electric utilities;the annual output of other renewable energy sources in electric utilities;the annual production of electricity from other renewable sources in electric utilities" -Annual_Generation_Electricity_RenewableEnergy_ElectricUtilityNonCogen,"Net generation, other renewables (total), electric utility non-cogen, annual;Total Annual Net Generation of Other Renewables in Electric Utility Non-Cogen;the annual net generation of other renewables in electric utility non-cogen;the total amount of electricity generated by other renewables in electric utility non-cogen each year;the total amount of electricity produced by other renewables in electric utility non-cogen each year;the total annual output of other renewables in electric utility non-cogen" -Annual_Generation_Electricity_RenewableEnergy_IndependentPowerProducers,"Annual Net Generation of Other Renewables in Independent Power Producers;Net generation, other renewables (total), independent power producers (total), annual;the amount of electricity generated by independent power producers from other renewable sources each year;the annual net generation of other renewables by independent power producers;the annual output of other renewable energy sources from independent power producers;the total amount of electricity generated from other renewable sources by independent power producers in a year" -Annual_Generation_Electricity_RenewableEnergy_Industrial,"Annual Net Generation Of Other Renewables By All Industries;Net generation, other renewables (total), all industrial (total), annual;annual generation of other renewables by all industries;annual generation of renewable energy by all industries;renewable energy generation by all industries in a year;the total amount of renewable energy generated by all industries in a year" -Annual_Generation_Electricity_RenewableEnergy_IndustrialCogen,"Annual Net Generation of Other Renewables in industrial cogen;Net generation, other renewables (total), industrial cogen, annual;the amount of electricity generated from other renewables in industrial cogeneration each year;the annual net generation of other renewables in industrial cogeneration;the annual output of electricity from other renewable sources in industrial cogeneration;the total amount of electricity generated from other renewable sources in industrial cogeneration over the course of a year" -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic,"Annual Generation of Small Scale Solar Photovoltaic in Electricity;Net generation, small-scale solar photovoltaic, all sectors, annual;the annual net output of small-scale solar photovoltaics in all sectors" -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Commercial,"Annual Net Generation Small-Scale Solar Photovoltaic in All Commercial;Net generation, small-scale solar photovoltaic, all commercial (total), annual;annual net generation from small-scale solar photovoltaics in all commercial sectors;annual net generation from small-scale solar photovoltaics in the commercial sector;annual small-scale solar photovoltaic generation in all commercial sectors;annual small-scale solar photovoltaic generation in the commercial sector" -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Industrial,"Annual Net Generation Of Small Scale Solar Photovoltaic In All Industrial;Net generation, small-scale solar photovoltaic, all industrial (total), annual;the amount of electricity generated by small-scale solar photovoltaic in all industrial sectors each year;the annual net generation of small-scale solar photovoltaic in all industrial sectors;the annual output of small-scale solar photovoltaic in all industrial sectors;the total amount of electricity generated by small-scale solar photovoltaic in all industrial sectors in one year" -Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic_Residential,"Annual Net generation of Small-Scale Solar Photovoltaic Residential;Net generation, small-scale solar photovoltaic, residential, annual;the amount of electricity generated by small-scale solar photovoltaic systems in homes each year;the annual net generation of electricity from small-scale solar photovoltaic systems in residential buildings;the annual output of small-scale solar photovoltaic systems in residential settings;the annual output of solar power from small-scale residential photovoltaic systems" -Annual_Generation_Electricity_Solar,"Annual Net generation of All Solar in All Sectors;Net generation, all solar, all sectors, annual;all-sector annual solar generation;annual net solar generation;annual solar generation in all sectors" -Annual_Generation_Electricity_SolarPhotovoltaic_AutoProducer,"Annual Generation of Electricity From Solar Photovoltaic Auto Producers;Annual Generation of Electricity: From Solar Photovoltaic, Auto Producer;the amount of electricity generated by solar photovoltaic auto producers each year;the annual output of electricity from solar photovoltaic auto producers;the total amount of electricity produced by solar photovoltaic auto producers in one year;the yearly production of electricity from solar photovoltaic auto producers" -Annual_Generation_Electricity_SolarPhotovoltaic_MainActivityProducer,"Annual Generation of Electricity From Solar Photovoltaic;Annual Generation of Electricity: From Solar Photovoltaic, Main Activity Producer;annual solar photovoltaic electricity production;solar photovoltaic electricity generation per year;the amount of electricity generated by solar photovoltaics each year;the annual output of solar photovoltaic power plants" -Annual_Generation_Electricity_Solar_AutoProducer,"Annual Generation of Electricity From Solar in Auto Producer;Annual Generation of Electricity: From Solar, Auto Producer;the amount of electricity generated from solar power by car manufacturers each year;the amount of solar energy produced by car makers each year;the annual output of solar power by car companies;the yearly production of solar electricity by automobile manufacturers" -Annual_Generation_Electricity_Solar_Commercial,"Annual Generation Of Electricity From Solar Energy By Commercial Industries;Net generation, all solar, all commercial (total), annual;commercial industries' annual generation of electricity from solar energy;the amount of electricity generated by solar energy in commercial industries each year;the amount of solar power generated by commercial industries each year;the annual output of solar-generated electricity in commercial industries" -Annual_Generation_Electricity_Solar_IndependentPowerProducers,"Annual Net Generation of Electricity by Solar For Independent Power Producers;Net generation, all solar, independent power producers (total), annual;the amount of electricity generated by solar power for independent power producers each year;the annual output of solar power for independent power producers;the annual production of solar power for independent power producers;the total amount of electricity generated by solar power for independent power producers in a year" -Annual_Generation_Electricity_Solar_Industrial,"Annual Net Generation of All Solar in All Industries;Net generation, all solar, all industrial (total), annual" -Annual_Generation_Electricity_Solar_MainActivityProducer,"Annual Generation of Electricity: From Solar, Main Activity Producer;Annual Generation of Main Activity Producer From Solar;how much solar energy did the main activity producer generate in a year?;how much solar power did the main activity producer produce in a year?;what was the annual solar generation of the main activity producer?;what was the annual solar output of the main activity producer?" -Annual_Generation_Electricity_Solar_Residential,"Annual Net Generation of All Solar In Residential;Net generation, all solar, residential, annual;the annual amount of electricity generated by solar panels in homes;the annual output of solar power from residential solar panels;the total amount of solar energy produced by residential solar systems each year;the total amount of solar power generated in residential areas each year" -Annual_Generation_Electricity_SolidBioFuel_ThermalElectricity,"Annual Generation of Electricity: From Solid Bio Fuel, Thermal Electricity;Annual Generation of Solid Bio Fuel in Thermal Electricity;the amount of electricity generated from solid biofuels each year;the amount of electricity produced from solid biofuels in a year;the annual production of electricity from solid biofuels;the yearly output of electricity from solid biofuels" -Annual_Generation_Electricity_ThermalElectricity,Annual Generation of Electricity: Thermal Electricity;Annual Net Generation of Thermal Electricity;the amount of thermal electricity generated each year;the annual output of thermal electricity;the total amount of thermal electricity produced in a year;the yearly production of thermal electricity -Annual_Generation_Electricity_UtilityScalePhotovoltaic,"Annual Net Generation of Photovoltaic in Electricity Utility Scale;Net generation, utility-scale photovoltaic, all sectors, annual;the amount of electricity generated by photovoltaics in utility-scale power plants each year;the annual output of photovoltaics in utility-scale power plants;the annual production of electricity from photovoltaics in utility-scale power plants;the total amount of electricity produced by photovoltaics in utility-scale power plants over the course of a year" -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricPower,"Net generation, utility-scale photovoltaic, electric power (total), annual;Total Annual Net Generation in Utility-Scale Photovoltaic;annual net generation of utility-scale photovoltaics;annual net output of utility-scale photovoltaics;total annual output of utility-scale photovoltaics" -Annual_Generation_Electricity_UtilityScalePhotovoltaic_ElectricUtilityNonCogen,"Annual Net Generation of Utility-scale Photovoltaic by Electric Utility Non-cogen;Net generation, utility-scale photovoltaic, electric utility non-cogen, annual;the amount of electricity generated by utility-scale photovoltaics each year by electric utilities that are not cogeneration facilities;the annual amount of electricity generated by utility-scale photovoltaics, not including cogeneration;the annual output of utility-scale photovoltaics by electric utilities that are not cogeneration facilities;the annual output of utility-scale photovoltaics, excluding cogeneration" -Annual_Generation_Electricity_UtilityScalePhotovoltaic_IndependentPowerProducers,"Annual Net Generation of Electricity by Utility Scale Photovoltaic in Independent Producers;Net generation, utility-scale photovoltaic, independent power producers (total), annual;the amount of electricity generated by utility-scale photovoltaics in independent producers each year;the annual output of electricity from utility-scale photovoltaics in independent producers;the annual production of electricity from utility-scale photovoltaics in independent producers;the total amount of electricity generated by utility-scale photovoltaics in independent producers over the course of a year" -Annual_Generation_Electricity_UtilityScaleSolar,"Annual Net Generation of All Utility-Scale Solar;Net generation, all utility-scale solar, all sectors, annual;annual output of utility-scale solar power plants;the annual electricity generation of utility-scale solar power plants;the annual output of utility-scale solar power plants;the annual production of utility-scale solar power plants" -Annual_Generation_Electricity_UtilityScaleSolar_ElectricPower,"Annual Net Generation of Electricity in all Utility-scale Solar Electric Power;Net generation, all utility-scale solar, electric power (total), annual;annual electricity generation from utility-scale solar power;annual net generation of electricity from utility-scale solar electric power plants;the annual electricity generation from utility-scale solar power plants;total annual electricity generated by utility-scale solar power plants" -Annual_Generation_Electricity_UtilityScaleSolar_ElectricUtilityNonCogen,"Annual Net Generational Utility-Scale Solar in Electric Utility Non-Cogen;Net generation, all utility-scale solar, electric utility non-cogen, annual;annual net generation of utility-scale solar in electric utilities excluding cogeneration plants;annual net generation of utility-scale solar in electric utilities excluding combined-cycle and cogeneration plants;annual net generation of utility-scale solar in electric utility non-cogen;annual net generation of utility-scale solar in non-cogeneration electric utilities" -Annual_Generation_Electricity_UtilityScaleSolar_IndependentPowerProducers,"Net generation, all utility-scale solar, independent power producers (total), annual;Total Annual Utility Scale Electricity Generation in Independent Power Producer Industries;the annual electricity output from independent power producers;the annual electricity output of independent power producers;the annual output of electricity from independent power producers;the total annual electricity generation from independent power producers" -Annual_Generation_Electricity_Wind,"Annual Net Generation of Wind Energy in All Sectors;Net generation, wind, all sectors, annual;annual wind energy generation in all sectors;annual wind power generation in all sectors;the amount of wind energy generated each year in all sectors;the annual net generation of wind power" -Annual_Generation_Electricity_Wind_ElectricPower,"Annual Wind Electricity Generation;Net generation, wind, electric power (total), annual;the annual output of wind farms;the annual output of wind-powered generators;the annual production of wind power" -Annual_Generation_Electricity_Wind_ElectricUtilityNonCogen,"Annual Net Generation of Wind in Electric Utility Non-Cogen;Net generation, wind, electric utility non-cogen, annual;the amount of wind power generated by electric utilities each year that are not cogeneration facilities;the annual amount of wind energy produced by electric utilities, not including cogeneration;the annual output of wind power by electric utilities, excluding cogeneration;the total amount of wind power produced by electric utilities each year, not including cogeneration" -Annual_Generation_Electricity_Wind_IndependentPowerProducers,"Net generation, wind, independent power producers (total), annual;Total Annual Net Generation of Wind in Independent Power Producers;the total amount of electricity generated by wind power in a year from independent power producers;the total amount of wind energy generated by independent power producers in a year;the total amount of wind energy produced by independent power producers in a year;the total annual output of wind turbines owned by independent power producers" -Annual_Generation_Electricity_Wind_MainActivityProducer,"Annual Generation Of Electricity From Wind;Annual Generation of Electricity: From Wind, Main Activity Producer;the amount of electricity generated from wind each year;the annual output of wind-generated electricity;the annual yield of wind-powered electricity;the yearly production of wind power" -Annual_Generation_Energy_Coal,1 The amount of energy produced by coal in a year;Annual Energy Generation From Coal;Annual Generation of Energy: Coal;Annual coal energy generation;Annual energy generation from coal;The amount of electricity produced from coal in a year;The amount of energy produced by burning coal in a year;The amount of energy produced by coal in a year;The annual output of coal-generated electricity;The total amount of coal-generated power in a year;The yearly coal power production;Total energy generated from coal in a year;the amount of energy generated from coal each year;the annual output of coal-fired power plants;the annual production of electricity from coal;the total amount of energy produced by coal-fired power plants each year -Annual_Generation_Energy_CombustibleFuel_MainActivityProducer,"Annual Generation of Combustible Fuel;Annual Generation of Energy: Combustible Fuel, Main Activity Producer;the amount of combustible fuel produced each year;the annual production of combustible fuel;the total amount of combustible fuel produced in a year;the yearly output of combustible fuel" -Annual_Generation_Energy_CombustibleFuel_MainActivityProducerCombinedHeatPowerPlants,"Annual Generation of Energy by Combustible Fuel For Main Activity Producer Combined Heat Power Plants;Annual Generation of Energy: Combustible Fuel, Main Activity Producer Combined Heat Power Plants;annual energy generation by combustible fuel for main activity combined heat and power plants;annual energy generation by combustible fuel for main activity producer cogeneration plants;annual energy generation by combustible fuel for main activity producer combined heat power plants;annual energy production by fuel type for combined heat and power plants" -Annual_Generation_Energy_FuelOil,Annual Generation of Energy: Fuel Oil;Annual Oil Generation;the annual production of oil -Annual_Generation_Energy_Geothermal,Annual Generation of Energy: Geothermal;Annual Generation of Geothermal Energy -Annual_Generation_Energy_Heat,Annual Generation of Energy: Heat;Annual Generation of Heat;the amount of heat produced each year;the annual heat generation;the annual heat output;the yearly production of heat -Annual_Generation_Energy_HeatCombustibleFuels,Annual Generation of Energy: Heat Combustible Fuels;Annual Generation of Heat Combustible Fuels;the amount of heat produced by combustible fuels each year;the amount of heat produced by combustible fuels in a year;the annual output of heat from combustible fuels;the yearly generation of heat from combustible fuels -Annual_Generation_Energy_Heat_AutoProducer,"Annual Generation of Energy: Heat, Auto Producer;Annual Generation of Heat Energy in Auto Producers;the amount of heat energy generated by car manufacturers each year;the annual output of heat energy from the car industry;the total amount of heat energy produced by the automotive industry in a year;the yearly production of heat energy by the automotive sector" -Annual_Generation_Energy_Heat_MainActivityProducer,"Annual Generation Of Heat From Main Activity Producer;Annual Generation of Energy: Heat, Main Activity Producer;the amount of heat produced by the main activity producer each year;the annual output of heat from the main activity producer;the total amount of heat produced by the main activity producer in one year;the yearly heat output of the main activity producer" -Annual_Generation_Energy_NaturalGas,Annual Generation of Energy: Natural Gas;Annual Generation of Natural Gas;the amount of natural gas generated each year;the amount of natural gas produced in a year;the yearly production of natural gas;the yearly yield of natural gas -Annual_Generation_Energy_OilProducts,Annual Generation of Energy: Oil Products;Yearly Oil Products Energy Generation -Annual_Generation_Energy_Refinery,Annual Generation of Energy: Refinery;Annual Generation of Refinery Energy;annual refinery energy output;the annual energy generation of refineries -Annual_Generation_Energy_Solar,Annual Generation of Energy: Solar;Annual Generation of Solar Energy;the amount of solar energy generated each year;the amount of solar energy produced in a year;the annual output of solar electricity;the yearly production of solar power -Annual_Generation_Energy_Water,Annual Generation of EIA Water;Annual Generation of Energy: EIA_Water;the amount of water generated by the eia each year;the annual output of water from the eia;the total amount of water produced by the eia in a year;the yearly production of water by the eia -Annual_Generation_Fuel_AdditivesOxygenates,Annual Generation of Additives Oxygenates;Annual Generation of Fuel: Additives Oxygenates;the amount of additives oxygenates generated each year;the annual output of additives oxygenates;the yearly production of additives oxygenates;the yearly yield of additives oxygenates -Annual_Generation_Fuel_AnthraciteCoal,Annual Generation of Anthracite Coal;Annual Generation of Fuel: EIA_Anthracite Coal;anthracite coal production per year;the amount of anthracite coal produced each year;the annual output of anthracite coal;the yearly yield of anthracite coal -Annual_Generation_Fuel_AviationGasoline,Annual Generation of Aviation Gasoline;Annual Generation of Fuel: Aviation Gasoline;the amount of aviation gasoline produced each year;the annual production of aviation gasoline;the annual yield of aviation gasoline;the yearly output of aviation gasoline -Annual_Generation_Fuel_AviationGasoline_Refinery,"Annual Generation Of Aviation Of Aviation Gasoline By Refineries;Annual Generation of Fuel: Aviation Gasoline, Refinery;annual production of aviation gasoline by refineries;the amount of aviation gasoline produced by refineries each year;the annual output of aviation gasoline from refineries;the number of gallons of aviation gasoline produced by refineries each year" -Annual_Generation_Fuel_Bagasse,Annual Generation of Bagasse;Annual Generation of Fuel: Bagasse;the amount of bagasse produced each year;the annual harvest of bagasse;the annual production of bagasse;the annual yield of bagasse -Annual_Generation_Fuel_BioDiesel,Annual Generation of Biodiesel;Annual Generation of Fuel: Bio Diesel;biodiesel production per year;the annual yield of biodiesel;the yearly production of biodiesel;what is the annual production of biodiesel? -Annual_Generation_Fuel_BioGas,Annual Generation of Biogas;Annual Generation of Fuel: Bio Gas;the amount of biogas produced each year;the annual production of biogas;the annual yield of biogas;the yearly output of biogas -Annual_Generation_Fuel_BioGasoline,Annual Generation Of Bio Gasoline;Annual Generation of Fuel: Bio Gasoline;the amount of bio gasoline produced each year;the amount of bio gasoline produced in a year;the annual production of bio gasoline;the yearly output of bio gasoline -Annual_Generation_Fuel_BituminousCoal,Annual Generation of Bituminous Coal;Annual Generation of Fuel: EIA_Bituminous Coal -Annual_Generation_Fuel_BituminousCoal_Refinery,"Annual Generation of Bituminous Coal in Refinery Industries;Annual Generation of Fuel: EIA_Bituminous Coal, Refinery;the amount of bituminous coal generated by refinery industries each year;the amount of bituminous coal produced by refinery industries in a year;the annual production of bituminous coal by refinery industries;the yearly output of bituminous coal by refinery industries" -Annual_Generation_Fuel_BlastFurnaceGas,Annual Generation of Blast Furnace Gas;Annual Generation of Fuel: Blast Furnace Gas;the amount of blast furnace gas produced each year;the annual output of blast furnace gas;the yearly production of blast furnace gas;the yearly yield of blast furnace gas -Annual_Generation_Fuel_BrownCoal,Annual Generation of Brown Coal;Annual Generation of Fuel: Brown Coal;the amount of brown coal generated each year;the amount of brown coal produced in a year;the annual output of brown coal;the yearly production of brown coal -Annual_Generation_Fuel_Charcoal,Annual Generation of Charcoal;Annual Generation of Fuel: Charcoal;the amount of charcoal produced each year;the annual output of charcoal;the annual yield of charcoal;the yearly production of charcoal -Annual_Generation_Fuel_CokeOvenCoke,Annual Generation of Fuel: Coke Oven Coke;Annual Generation of Oven Coke;the amount of oven coke produced each year;the amount of oven coke produced in a year;the annual output of oven coke;the yearly production of oven coke -Annual_Generation_Fuel_CokeOvenGas,Annual Generation Of Coke Oven Gas;Annual Generation of Fuel: Coke Oven Gas;the amount of coke oven gas produced each year;the amount of coke oven gas produced in one year;the annual production of coke oven gas;the yearly output of coke oven gas -Annual_Generation_Fuel_CokingCoal,Annual Generation of Coking Coal;Annual Generation of Fuel: Coking Coal;annual coking coal output;coking coal production per year;the amount of coking coal produced each year;the yearly generation of coking coal -Annual_Generation_Fuel_CrudeOil,Amount of crude oil generated in a year;Annual Energy Generation From Crude Oil;Annual Generation of Fuel: Crude Oil;Annual crude oil production;Annual energy generation from crude oil;Crude oil production per year;The amount of crude oil produced each year;The annual amount of crude oil generated;The annual crude oil supply;The annual output of crude oil;The yearly total of crude oil production;Yearly crude oil production;the amount of energy generated from crude oil each year;the annual production of energy from crude oil;the total amount of energy produced from crude oil in one year;the yearly output of energy from crude oil -Annual_Generation_Fuel_DieselOil,1 The yearly production of diesel oil;Amount of diesel oil generated in a year;Annual Energy Generation From Diesel Oil;Annual Generation of Fuel: Diesel Oil;Annual diesel oil production;Annual energy generation from diesel oil;The amount of diesel oil produced each year;The annual diesel fuel supply;The annual output of diesel oil;The annual production of diesel oil;The yearly total of diesel oil production;amount of diesel oil generated in a year;annual diesel oil production;annual energy generation from diesel oil;the amount of energy generated from diesel oil each year;the annual production of energy from diesel oil;the total amount of energy produced from diesel oil in a year -Annual_Generation_Fuel_DieselOil_Refinery,"Annual Generation of Diesel Oil in Refinery Industries;Annual Generation of Fuel: Diesel Oil, Refinery;diesel oil production in refineries" -Annual_Generation_Fuel_FuelOil,Annual Generation Of Fuel;Annual Generation of Fuel: Fuel Oil;the amount of fuel produced each year;the annual output of fuel;the total amount of fuel produced in one year;the yearly production of fuel -Annual_Generation_Fuel_FuelOil_Refinery,"Annual Generation of Fuel Oil in Refinery;Annual Generation of Fuel: Fuel Oil, Refinery;the amount of fuel oil produced in a refinery each year;the annual output of fuel oil from a refinery;the annual yield of fuel oil from a refinery;the yearly production of fuel oil in a refinery" -Annual_Generation_Fuel_Fuelwood,Annual Generation of Fuel: Fuelwood;Annual Generation of Fuelwood;annual production of firewood;the annual production of fuelwood;the annual yield of firewood;the annual yield of fuelwood -Annual_Generation_Fuel_HardCoal,Annual Generation of Fuel: Hard Coal;Annual Generation of Hard Coal;the amount of hard coal produced each year;the annual production of hard coal;the annual yield of hard coal;the yearly output of hard coal -Annual_Generation_Fuel_Kerosene,Annual Generation of EIA Kerosene;Annual Generation of Fuel: EIA_Kerosene;the amount of kerosene generated by the eia each year;the annual production of kerosene by the eia;the eia's annual kerosene output;the yearly output of kerosene by the eia -Annual_Generation_Fuel_KeroseneJetFuel,Annual Generation Of Kerosene Jet Fuel;Annual Generation of Fuel: Kerosene Jet Fuel;annual production of kerosene jet fuel;the amount of kerosene jet fuel produced in one year;the yearly production of kerosene jet fuel;the yearly yield of kerosene jet fuel -Annual_Generation_Fuel_KeroseneJetFuel_Refinery,"Annual Generation of Fuel: Kerosene Jet Fuel, Refinery;Annual Generation of Kerosene Jet Fuel in Refinery;annual refinery kerosene jet fuel output;kerosene jet fuel production in refinery on an annual basis;kerosene jet fuel production in refinery per year;refinery kerosene jet fuel production per annum" -Annual_Generation_Fuel_Kerosene_Refinery,"Annual Generation of Fuel: EIA_Kerosene, Refinery;Annual Generation of Kerosene From Refineries;kerosene production from refineries;the amount of kerosene produced by refineries each year;the annual output of kerosene from refineries;the yearly generation of kerosene by refineries" -Annual_Generation_Fuel_LigniteCoal,Annual Generation of Electricity by Lignite Coal;Annual Generation of Fuel: Lignite Coal;the amount of electricity generated by lignite coal each year;the amount of electricity produced from lignite coal in a year;the annual production of electricity from lignite coal;the yearly output of electricity from lignite coal -Annual_Generation_Fuel_LiquifiedPetroleumGas,Annual Generation of Fuel: Liquefied Petroleum Gas;Annual Generation of Liquefied Petroleum Gas;the amount of liquefied petroleum gas generated each year;the annual production of liquefied petroleum gas;the annual supply of liquefied petroleum gas;the annual yield of liquefied petroleum gas -Annual_Generation_Fuel_LiquifiedPetroleumGas_PetroleumPlants,"1 the amount of liquefied petroleum gas produced by petroleum plants each year;2 the yearly production of liquefied petroleum gas by petroleum plants;3 the annual output of liquefied petroleum gas from petroleum plants;4 the total amount of liquefied petroleum gas produced by petroleum plants in a year;Annual Generation of Fuel: Liquefied Petroleum Gas, Petroleum Plants;Annual Generation of Liquefied Petroleum Gas By Petroleum Plants" -Annual_Generation_Fuel_LiquifiedPetroleumGas_Refinery,"Annual Generation of Fuel: Liquefied Petroleum Gas, Refinery;Annual Net Generation of Liquefied Petroleum Gas in Refinery;the amount of liquefied petroleum gas produced by a refinery in one year;the annual output of liquefied petroleum gas from a refinery;the annual yield of liquefied petroleum gas from a refinery;the total amount of liquefied petroleum gas produced by a refinery in a 12-month period" -Annual_Generation_Fuel_Lubricants,Annual Generation of Fuel: Lubricants;Annual Generation of Lubricants;the amount of lubricants produced each year;the number of lubricants produced each year;the yearly number of lubricants produced;the yearly production of lubricants -Annual_Generation_Fuel_Lubricants_Refinery,"Annual Generation of Fuel Lubricants Refineries;Annual Generation of Fuel: Lubricants, Refinery;the amount of fuel lubricants produced by refineries each year;the annual output of fuel lubricants from refineries;the annual production of fuel lubricants by refineries;the total amount of fuel lubricants produced by refineries in a year" -Annual_Generation_Fuel_MotorGasoline,Annual Generation of Fuel: Motor Gasoline;Annual Generation of Motor Gasoline;the annual production of gasoline;the annual yield of gasoline;the yearly generation of gasoline -Annual_Generation_Fuel_MotorGasoline_Refinery,"Annual Generation of Fuel: Motor Gasoline, Refinery" -Annual_Generation_Fuel_MunicipalWaste,Annual Generation of Fuel: Municipal Waste;Annual Generation of Municipal Waste;the amount of trash produced by a city each year;the annual sum of waste produced by a city;the total amount of garbage that a city produces in a year;the yearly output of trash from a city -Annual_Generation_Fuel_Naphtha,Annual Generation of Fuel: Naphtha;Annual Generation of Naphtha;the amount of naphtha produced each year;the annual production of naphtha;the yearly output of naphtha;the yearly yield of naphtha -Annual_Generation_Fuel_Naphtha_Refinery,"Annual Generation of Fuel: Naphtha, Refinery;Annual Generation of Naphtha In Refinery;the amount of naphtha produced by a refinery each year;the amount of naphtha that a refinery produces in a year;the annual output of naphtha from a refinery;the yearly production of naphtha by a refinery" -Annual_Generation_Fuel_NaturalGas,Annual Generation of Fuel: Natural Gas;Annual Generation of Natural Gases -Annual_Generation_Fuel_NaturalGasLiquids,Annual Generation of Fuel: Natural Gas Liquids;Annual Generation of Natural Gas Liquids;the amount of natural gas liquids produced each year;the annual output of natural gas liquids;the annual yield of natural gas liquids;the yearly production of natural gas liquids -Annual_Generation_Fuel_Nuclear,Amount of nuclear fuel generated in a year;Annual Energy Generation From Nuclear Fuel;Annual Generation of Fuel: Nuclear;Annual energy generation from nuclear fuel;Annual nuclear fuel production;The amount of nuclear fuel generated annually;The amount of nuclear fuel produced each year;The annual amount of nuclear fuel produced;The annual output of nuclear fuel;The annual production of nuclear fuel;The total amount of nuclear fuel produced in a year;The yearly total of nuclear fuel generation;amount of nuclear fuel generated in a year;the amount of energy generated from nuclear fuel each year;the annual output of nuclear power plants;the annual yield of nuclear power;the yearly production of nuclear energy -Annual_Generation_Fuel_OtherBituminousCoal,Annual Generation of Fuel: UN_Other Bituminous Coal -Annual_Generation_Fuel_OtherOilProducts,Annual Generation of Fuel: UN_Other Oil Products;Annual Generation of Other Oil Products;the amount of other oil products generated each year;the yearly production of other oil products;the yearly yield of other oil products;what is the annual production of oil products other than crude oil? -Annual_Generation_Fuel_OtherOilProducts_Refinery,"Annual Generation Of Other Oil Products By Refinery Industries;Annual Generation of Fuel: UN_Other Oil Products, Refinery;the amount of other oil products produced by refinery industries each year;the annual output of other oil products by refinery industries;the number of other oil products produced by refinery industries each year;the yearly production of other oil products by refinery industries" -Annual_Generation_Fuel_ParaffinWaxes,Annual Generation Of Paraffin Waxes;Annual Generation of Fuel: Paraffin Waxes;the amount of paraffin wax produced each year;the amount of paraffin wax that is produced each year;the annual production of paraffin wax;the yearly yield of paraffin wax -Annual_Generation_Fuel_ParaffinWaxes_Refinery,"Annual Generation of Fuel: Paraffin Waxes, Refinery;Annual Generation of Paraffin Waxes Refinery;Annual Generation of Refinery Paraffin Waxes;annual production of paraffin waxes by the refinery;paraffin waxes generated by the refinery annually;paraffin waxes produced by the refinery each year;the refinery's annual production of paraffin waxes" -Annual_Generation_Fuel_PetroleumCoke,Annual Generation of Fuel: Petroleum Coke;Annual Generation of Petroleum Coke -Annual_Generation_Fuel_PetroleumCoke_Refinery,"Annual Generation of Fuel: Petroleum Coke, Refinery;Annual Generation of Petroleum Coke From Refineries;the amount of petroleum coke produced by refineries each year;the amount of petroleum coke that refineries produce in a year;the annual production of petroleum coke by refineries;the yearly output of petroleum coke from refineries" -Annual_Generation_Fuel_RefineryFeedstocks,Annual Generation of Fuel: Refinery Feedstocks;Annual Generation of Refinery Feedstocks;the amount of refinery feedstocks generated each year;the amount of refinery feedstocks produced in a year;the annual output of refinery feedstocks;the yearly production of refinery feedstocks -Annual_Generation_Fuel_RefineryGas,Annual Generation of Fuel: Refinery Gas;Annual Generation of Refinery Gas -Annual_Generation_Fuel_RefineryGas_Refinery,"Annual Generation of Fuel: Refinery Gas, Refinery" -Annual_Generation_Fuel_VegetalWaste,Annual Generation of Fuel: Vegetal Waste;Annual Generation of Vegetal Waste;the annual production of vegetable waste;the annual vegetable waste output;the yearly generation of vegetable waste -Annual_Generation_Fuel_WhiteSpirit,Annual Generation of Fuel: White Spirit;Annual Generation of White Spirit;the amount of white spirit produced each year;the amount of white spirit produced in a year;the annual output of white spirit;the yearly production of white spirit -Annual_Generation_Fuel_WhiteSpirit_Refinery,"Annual Generation of Fuel: White Spirit, Refinery;Annual Generation of White Spirit in Refinery;the amount of white spirit produced by a refinery in a year;the annual output of white spirit from a refinery;the yearly yield of white spirit from a refinery;white spirit production in a refinery per year" -Annual_Imports_Electricity,Annual Imports of Electricity;electricity imported each year;the amount of electricity imported each year;the annual amount of electricity imported;the yearly amount of electricity imported -Annual_Imports_Fuel_AnthraciteCoal,Annual Imports of Anthracite Coal;Annual Imports of Fuel: EIA_Anthracite Coal;the amount of anthracite coal that is imported each year;the annual quantity of anthracite coal that is brought in from other countries;the yearly amount of anthracite coal that is brought into the country;the yearly number of tons of anthracite coal that are brought in from other countries -Annual_Imports_Fuel_AviationGasoline,Annual Imports of Aviation Gasoline;Annual Imports of Fuel: Aviation Gasoline;the amount of aviation gasoline imported each year;the annual amount of aviation gasoline that is brought into the country;the total amount of aviation gasoline that is brought into the country in a year;the yearly amount of aviation gasoline imported -Annual_Imports_Fuel_BituminousCoal,Annual Imports of Bituminous Coal;Annual Imports of Fuel: EIA_Bituminous Coal;the amount of bituminous coal that the united states imports each year;the number of tons of bituminous coal that the us brings in each year;the yearly quantity of bituminous coal that the us brings in from other countries;the yearly volume of bituminous coal that the us imports -Annual_Imports_Fuel_BrownCoal,Annual Imports of Brown Coal;Annual Imports of Fuel: Brown Coal;annual imports of brown coal;brown coal imports per year;the amount of brown coal imported each year;the annual quantity of brown coal imported -Annual_Imports_Fuel_Charcoal,Annual Imports of Charcoal;Annual Imports of Fuel: Charcoal;the amount of charcoal imported each year;the annual amount of charcoal that is brought into the country from other countries;the annual quantity of charcoal brought into the country;the yearly amount of charcoal brought in from other countries -Annual_Imports_Fuel_CokeOvenCoke,Annual Imports of Coke Oven Coke;Annual Imports of Fuel: Coke Oven Coke;the amount of coke oven coke imported annually;the annual figure for coke oven coke imports;the annual rate of coke oven coke imports;the yearly volume of coke oven coke imports -Annual_Imports_Fuel_CokingCoal,Annual Coking Coal Imports;Annual Imports of Fuel: Coking Coal;the amount of coking coal imported each year;the amount of coking coal that is imported each year;the annual quantity of coking coal that is imported;the yearly volume of coking coal that is imported -Annual_Imports_Fuel_CrudeOil,Annual Imports of Fuel: Crude Oil;Yearly Crude Oil Imports;the amount of crude oil the us imports each year;the annual amount of crude oil the us imports;the us's yearly crude oil imports;the yearly amount of crude oil the us imports -Annual_Imports_Fuel_DieselOil,Annual Imports of Diesel Oil;Annual Imports of Fuel: Diesel Oil;the amount of diesel oil that the us imports each year;the annual rate of diesel oil imports;the annual volume of diesel oil imports;the yearly amount of diesel oil imported -Annual_Imports_Fuel_FuelOil,Annual Imports of Fuel Oil;Annual Imports of Fuel: Fuel Oil;the amount of fuel oil that the united states imports each year;the amount of fuel oil the us imports each year;the annual fuel oil imports of the us;the us's annual fuel oil imports -Annual_Imports_Fuel_Fuelwood,Annual Imports of Fuel: Fuelwood;Annual Imports of Fuelwood;the amount of fuelwood imported each year;the annual figure for fuelwood imports;the yearly amount of fuelwood imported;the yearly total of fuelwood imports -Annual_Imports_Fuel_HardCoal,Annual Imports of Fuel: Hard Coal;Annual Imports of Hard Coal;the amount of hard coal that is imported each year;the annual volume of hard coal that is brought in from other countries;the number of tons of hard coal that are imported each year;the yearly amount of hard coal that is brought into the country -Annual_Imports_Fuel_Kerosene,Annual Imports Of Kerosene;Annual Imports of Fuel: EIA_Kerosene;how much kerosene does the us import annually?;how much kerosene does the us import each year?;what is the annual amount of kerosene the us imports?;what is the us's annual kerosene import? -Annual_Imports_Fuel_KeroseneJetFuel,Annual Imports of Fuel: Kerosene Jet Fuel;Annual Imports of Kerosene Jet Fuel;the amount of kerosene jet fuel imported each year;the annual sum of kerosene jet fuel imported from other countries;the total amount of kerosene jet fuel imported annually;the yearly amount of kerosene jet fuel brought in from other countries -Annual_Imports_Fuel_LiquifiedPetroleumGas,Annual Imports of Fuel: Liquefied Petroleum Gas;Annual Imports of Liquified Petroleum Gas;how much liquified petroleum gas does the us bring in each year?;how much liquified petroleum gas does the us import each year?;what is the annual amount of liquified petroleum gas that the us imports?;what is the total amount of liquified petroleum gas that the us imports each year? -Annual_Imports_Fuel_Lubricants,Annual Imports of Fuel: Lubricants;Annual Imports of Lubricants;the amount of lubricants imported each year;the annual amount of lubricants imported;the annual sum of lubricants imported;the yearly amount of lubricants brought into the country -Annual_Imports_Fuel_MotorGasoline,Annual Imports of Fuel: Motor Gasoline;the annual figure for motor gasoline that is transferred to foreign countries;the yearly quantity of motor gasoline that is transferred to other nations -Annual_Imports_Fuel_Naphtha,Annual Imports of Fuel: Naphtha;Annual Imports of Naphtha;the amount of naphtha that the us imports each year;the amount of naphtha the us imports each year;the annual naphtha imports of the us;the us's annual naphtha imports -Annual_Imports_Fuel_NaturalGas,Annual Imports Of Natural Gas;Annual Imports of Fuel: Natural Gas;the amount of natural gas the us imports each year;the annual quantity of natural gas the us receives from other countries;the yearly total of natural gas the us imports from other nations;the yearly volume of natural gas the us acquires from other countries -Annual_Imports_Fuel_OtherBituminousCoal,Annual Imports of Fuel: UN_Other Bituminous Coal;Annual Imports of Other UN Bituminous Coal;the amount of bituminous coal imported by the un each year;the annual amount of bituminous coal that the un imports;the annual figure for bituminous coal imported by the un;the quantity of bituminous coal that the un imports each year -Annual_Imports_Fuel_OtherOilProducts,Annual Imports of Fuel: UN_Other Oil Products;Annual Imports of Other Oil Products;the amount of other oil products imported each year;the annual quantity of other oil products imported;the annual volume of other oil products imported;the yearly amount of other oil products imported -Annual_Imports_Fuel_ParaffinWaxes,Annual Imports Of Paraffin Waxes;Annual Imports of Fuel: Paraffin Waxes;how much paraffin wax does the us import each year?;what is the annual amount of paraffin wax that the us imports?;what is the quantity of paraffin wax that the us imports each year?;what is the total annual import of paraffin wax by the us? -Annual_Imports_Fuel_PetroleumCoke,Annual Imports of Fuel: Petroleum Coke;Annual Income of Petroleum Coke Fuel;how much money does petroleum coke fuel make in a year?;what is the annual income of petroleum coke fuel?;what is the annual revenue of petroleum coke fuel?;what is the yearly profit of petroleum coke fuel? -Annual_Imports_Fuel_WhiteSpirit,Annual Imports of Fuel: White Spirit;Annual Imports of White Spirit;the amount of white spirit imported annually;the annual white spirit import total;the yearly amount of white spirit imported;white spirit imports each year -Annual_Loss_Electricity,Annual Loss of Electricity;annual electricity leakage;annual electricity loss;electricity loss per year;how much electricity is lost each year -Annual_Loss_Energy_Heat,Annual Loss of Energy: Heat;Annual Loss of Heat;annual heat loss;heat loss over a year;heat loss per year;yearly heat loss -Annual_Loss_Fuel_NaturalGas,Annual Loss Of Natural Gas;Annual Loss of Fuel: Natural Gas;annual natural gas leakage;annual natural gas loss;natural gas loss over the course of a year;natural gas loss per year -Annual_Loss_Fuel_NaturalGas_GasLostFlaredAndVented,"Annual Loss of Fuel: Natural Gas, Gas Lost Flared And Vented;Annual Loss of Natural Gas, Lost Flared and Vented;annual natural gas loss due to flaring and venting;annual natural gas loss from flaring and venting;annual natural gas loss from flaring and venting activities;annual natural gas loss from flaring and venting operations" -Annual_ProductReclassification_Fuel_DieselOil,Annual Product Reclassification of Diesel Oil;Annual Product Reclassification of Fuel: Diesel Oil;annual diesel oil reclassification;annual review of diesel oil classification;diesel oil reclassification on an annual basis;reclassification of diesel oil every year -Annual_ProductReclassification_Fuel_FuelOil,Annual Product Reclassification of Fuel Oil;Annual Product Reclassification of Fuel: Fuel Oil;annual review of fuel oil product classifications;annual revision of fuel oil product codes;annual update of fuel oil product categories;reclassification of fuel oil products on an annual basis -Annual_ProductReclassification_Fuel_Kerosene,Annual Product Reclassification of Fuel: EIA_Kerosene;Annual Product Reclassification of Kerosene;annual kerosene reclassification;kerosene reclassification every year;kerosene reclassification on a yearly basis;reclassification of kerosene on an annual basis -Annual_ProductReclassification_Fuel_KeroseneJetFuel,1 reclassification of kerosene jet fuel for each year;3 yearly adjustment to the classification of kerosene jet fuel;Annual Product Reclassification Of Kerosene Jet Fuel;Annual Product Reclassification of Fuel: Kerosene Jet Fuel;changing the classification of kerosene jet fuel every year;reclassifying kerosene jet fuel annually -Annual_ProductReclassification_Fuel_MotorGasoline,Annual Product Reclassification of Fuel: Motor Gasoline;Annual Product Reclassification of Motor Gasoline;annual review of motor gasoline classifications;annual update of motor gasoline classifications;recategorization of motor gasoline on a yearly basis;reclassification of motor gasoline on an annual basis -Annual_ProductReclassification_Fuel_OtherOilProducts,Annual Product Reclassification of Fuel: UN_Other Oil Products;Annual Product Reclassification of Other Oil Products;annual reclassification of oil products;annual review of oil product classifications;reclassification of oil products each year;reclassification of other oil products on an annual basis -Annual_ProductReclassification_Fuel_RefineryFeedstocks,1 the annual reclassification of fuel refinery feedstocks;2 the annual change in the way fuel refinery feedstocks are classified;3 the annual update to the way fuel refinery feedstocks are classified;Annual Product Reclassification of Fuel: Refinery Feedstocks;Annual Reclassification of Refinery Feedstocks;the annual reclassification of fuel refinery feedstocks -Annual_Receipt_Fuel_ForElectricityGeneration_BituminousCoal,"Annual Receipts of Bituminous Coal by Electricity Plants;Receipts of fossil fuels by electricity plants (Btu), bituminous coal, all sectors, annual;the amount of bituminous coal received by electricity plants each year;the annual sum of bituminous coal received by electricity plants;the annual sum of bituminous coal that electricity plants receive;the annual total of bituminous coal received by electricity plants" -Annual_Receipt_Fuel_ForElectricityGeneration_Coal,"Annual Receipts of Coal For Electricity Generation in All Sectors;Receipts of fossil fuels by electricity plants (Btu), coal, all sectors, annual;the amount of money that coal companies receive each year from selling coal to generate electricity in all sectors;the annual income from coal sales for electricity generation in all sectors;the total annual receipts from coal sales for electricity generation in all sectors;the total annual revenue from coal sales for electricity generation in all sectors" -Annual_Receipt_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Annual Receipts of Coal For Electricity Generation by Electric Power;Receipts of fossil fuels by electricity plants, coal, electric power (total), annual;coal receipts for electricity generation by electric power companies each year;the annual income of electric power companies from coal sales for electricity generation;the annual revenue of electric power companies from coal sales for electricity generation;the yearly income from coal sales for electricity generation" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas,"Annual Receipts of Natural Gas in All Sectors;Receipts of fossil fuels by electricity plants (Btu), natural gas, all sectors, annual;all sectors' natural gas receipts;natural gas receipts for all sectors;the annual receipts of natural gas by all sectors;total natural gas receipts in all sectors" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower,"Annual Receipts of Natural Gas in Electric Power;Receipts of fossil fuels by electricity plants (Btu), natural gas, electric power (total), annual;annual natural gas receipts for electric power" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility,"Annual Receipts of Natural Gas in Electricity Plants;Receipts of fossil fuels by electricity plants (Btu), natural gas, electric utility, annual;the total amount of natural gas that electricity plants receive in one year" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen,"Annual Receipts of Natural Gas by electricity plants;Receipts of fossil fuels by electricity plants (Btu), natural gas, electric utility non-cogen, annual;the annual receipts of natural gas by electricity plants" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers,"2 the annual income of independent power producers from natural gas;Annual Receipts Of Natural Gas in Independent Power Producers;Receipts of fossil fuels by electricity plants (Btu), natural gas, independent power producers (total), annual;how much natural gas do independent power producers receive annually?;how much natural gas do independent power producers receive each year?;what are the annual receipts of natural gas for independent power producers?" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_Industrial,"Annual Receipts of Natural gas in All Industrial;Receipts of fossil fuels by electricity plants (Btu), natural gas, all industrial (total), annual;annual natural gas receipts in all industrial sectors;the annual sum of natural gas received by all industries;the total annual natural gas receipts of all industrial sectors" -Annual_Receipt_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen,"Annual Receipts of Natural Gas by Electricity Plants in Industrial Cogen;Receipts of fossil fuels by electricity plants (Btu), natural gas, industrial cogen, annual;the amount of natural gas received by electricity plants in industrial cogeneration each year;the annual amount of natural gas received by electricity plants in industrial cogeneration;the annual receipts of natural gas by electricity plants in industrial cogeneration;the yearly amount of natural gas received by electricity plants in industrial cogeneration" -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids,"Annual Receipts of Petroleum Liquids by Electricity Plants;Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, all sectors, annual;annual petroleum liquids receipts by electricity plants;electricity plants' annual receipts of petroleum liquids" -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, electric power (total), annual;Total Annual Receipts of petroleum liquids by electricity plants;the annual sum of petroleum liquids received by electricity plants;the total amount of petroleum liquids received by electricity plants each year;the total amount of petroleum liquids that electricity plants receive each year;total petroleum liquids received by electricity plants each year" -Annual_Receipt_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Annual Receipts Of Petroleum Liquids In Electricity Plants;Receipts of fossil fuels by electricity plants (Btu), petroleum liquids, electric utility, annual;the amount of petroleum liquids received by electricity plants each year;the annual amount of petroleum liquids that electricity plants receive;the annual sum of petroleum liquids that electricity plants receive;the yearly sum of petroleum liquids that electricity plants receive" -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal,"Annual Receipts Of Sub Bituminous Coal For Electricity Generation;Receipts of fossil fuels by electricity plants (Btu), subbituminous coal, all sectors, annual;the amount of money received for subbituminous coal used to generate electricity each year;the annual income from subbituminous coal used to generate electricity;the annual revenue from sub bituminous coal used for electricity generation;the total amount of money paid for subbituminous coal used to generate electricity in a year" -Annual_Receipt_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Annual Receipts of Sub-bituminous Coal in Electricity Power Plants;Receipts of fossil fuels by electricity plants (Btu), subbituminous coal, electric power (total), annual;the amount of sub-bituminous coal received by electricity power plants each year;the annual amount of sub-bituminous coal that electricity power plants receive;the annual sum of sub-bituminous coal that electricity power plants receive;the yearly total of sub-bituminous coal that electricity power plants take in" -Annual_Reserves_Fuel_BrownCoal,Annual Reserves Of Brown Coal;Annual Reserves of Fuel: Brown Coal;the quantity of brown coal that is still available -Annual_Reserves_Fuel_BrownCoal_EnergyAdditionalResources,"Annual Reserves of Brown Coal For Energy Additional Resources;Annual Reserves of Fuel: Brown Coal, Energy Additional Resources;additional reading on brown coal reserves for energy;additional resources on annual brown coal reserves for energy;additional resources on brown coal reserves for energy;other resources about annual reserves of brown coal for energy" -Annual_Reserves_Fuel_BrownCoal_EnergyKnownReserves,"1 known annual reserves of brown coal in energy terms;5 the annual known reserves of brown coal that can be used for energy;Annual Reserves of Brown Coal in Energy Known Reserves;Annual Reserves of Fuel: Brown Coal, Energy Known Reserves;what is the known annual reserve of brown coal for energy use?;what is the known reserve of brown coal for energy use each year?" -Annual_Reserves_Fuel_BrownCoal_EnergyRecoverableReserves,"Annual Reserves Of Brown Coal in Energy Recoverable Reserves;Annual Reserves of Fuel: Brown Coal, Energy Recoverable Reserves;brown coal reserves that can be recovered for energy;brown coal reserves that can be recovered for energy production;brown coal reserves that can be recovered for energy use each year;reserves of brown coal that can be recovered for energy use" -Annual_Reserves_Fuel_CrudeOil,Annual Reserves of Crude Oil;Annual Reserves of Fuel: Crude Oil;how much crude oil does the us have in reserve?;the reserves of crude oil that a country has;total crude oil reserves;what is the us's annual crude oil reserve? -Annual_Reserves_Fuel_FallingWater_HydraulicResources,"Annual Reserves of Fuel: Falling Water, Hydraulic Resources;Annual Reserves of Hydraulic Resources in Falling Water;how much water can be used from falling water each year?;how much water is available in falling water each year?;what is the annual flow of water in falling water?;what is the annual supply of water in falling water?" -Annual_Reserves_Fuel_HardCoal,Annual Reserves of Fuel: Hard Coal;Annual Reserves of Hard Coal;the amount of hard coal that is left to be mined;the annual inventory of hard coal;the remaining hard coal reserves;the total amount of hard coal that is left to be mined -Annual_Reserves_Fuel_HardCoal_EnergyAdditionalResources,"Annual Reserves Of Hard Coal As Energy Additional Resources;Annual Reserves of Fuel: Hard Coal, Energy Additional Resources;hard coal reserves as additional energy resources;hard coal reserves as alternative energy resources;hard coal reserves as backup energy resources;hard coal reserves as supplementary energy resources" -Annual_Reserves_Fuel_HardCoal_EnergyKnownReserves,"Annual Reserves of Fuel: Hard Coal, Energy Known Reserves;Annual Reserves of Hard Coal in Energy Known Reserves;hard coal reserves in energy terms;known reserves of hard coal in energy terms;the known reserves of hard coal that can be used for energy;the known reserves of hard coal that can be used to generate energy" -Annual_Reserves_Fuel_HardCoal_EnergyRecoverableReserves,"Annual Reserves Of Hard Coal Energy;Annual Reserves of Fuel: Hard Coal, Energy Recoverable Reserves;hard coal energy reserves per year;the amount of hard coal energy that is available each year;the annual hard coal energy budget;the annual supply of hard coal energy" -Annual_Reserves_Fuel_NaturalGas,Annual Reservations Of Natural Gas;Annual Reserves of Fuel: Natural Gas;the amount of natural gas that is reserved each year;the annual quantity of natural gas that is put in storage;the annual tally of natural gas that is kept in reserve;the yearly amount of natural gas that is reserved -Annual_Reserves_Fuel_OilShaleAndTarSands_CrudeOil,"1 how much crude oil is there in oil shale and tar sands?;2 what are the annual reserves of crude oil in oil shale and tar sands?;3 what is the amount of crude oil in oil shale and tar sands?;4 what is the quantity of crude oil in oil shale and tar sands?;Annual Reserves of Crude Oil in Oil Shale And Tar Sands;Annual Reserves of Fuel: Oil Shale And Tar Sands, Crude Oil" -Annual_Reserves_Fuel_Uranium_EnergyReservesAssured,"Annual Reserves of Fuel: Uranium, Energy Reserves Assured;Annual Reserves of Uranium;the amount of uranium that is available each year;the annual quantity of uranium that is available;the annual supply of uranium;the yearly amount of uranium that is available" -Annual_RetailSales_Electricity,"Annual Retail Sales of Electricity in All Sectors;Retail sales of electricity, all sectors, annual;annual sales of electricity to all sectors;electricity sales to all sectors in a year;sales of electricity to all sectors in a year;total electricity sales to all sectors in a year" -Annual_RetailSales_Electricity_Commercial,"Annual Retail Sales of Electricity in Commercial;Retail sales of electricity, commercial, annual;annual commercial electricity sales;annual electricity sales to commercial customers;commercial electricity sales for the year;electricity sales to commercial businesses" -Annual_RetailSales_Electricity_Industrial,"Annual Retail Sales of Industrial Electricity;Retail sales of electricity, industrial, annual;industrial electricity sales per year;sales of industrial electricity in a year;value of industrial electricity sold in a year;yearly turnover from industrial electricity sales" -Annual_RetailSales_Electricity_OtherSector,"Annual Retail Sales Of Electricity;Retail sales of electricity, other, annual;annual sales of electricity;electricity sales per year;retail sales of electricity in a year;total annual electricity sales" -Annual_RetailSales_Electricity_Residential,"Annual Retail Sales Of Electricity In Residential Industries;Retail sales of electricity, residential, annual;annual electricity sales to residential customers;residential electricity sales per year;retail sales of electricity in residential industries;the annual amount of electricity sold to residential customers" -Annual_SalesRevenue_Electricity,"Annual Revenue From Retail Sales of Electricity;Revenue from retail sales of electricity, all sectors, annual;annual revenue from retail sales of electricity to all sectors;annual revenue from the retail sale of electricity to all sectors;annual revenue from the sale of electricity to all sectors;annual sales of electricity to all sectors, in terms of revenue" -Annual_SalesRevenue_Electricity_Commercial,"Revenue from retail sales of electricity, commercial, annual" -Annual_SalesRevenue_Electricity_Industrial,"Annual Revenue from Retail Sales of Electricity in Industrial;Revenue from retail sales of electricity, industrial, annual;annual revenue from industrial electricity sales;annual revenue from retail sales of electricity in the industrial sector;annual revenue from the sale of electricity to industrial customers;industrial electricity sales revenue for the year" -Annual_SalesRevenue_Electricity_OtherSector,"Annual Revenue From Retail Sales of Electricity For Other Sectors Consumption;Revenue from retail sales of electricity, other, annual;annual retail electricity sales revenue for other sectors;annual revenue from retail electricity sales to other sectors;other sectors' annual revenue from retail electricity sales;retail electricity sales revenue for other sectors in a year" -Annual_SalesRevenue_Electricity_Residential,"Annual Revenue From Retail Sales Of Electricity For Residential Consumption;Revenue from retail sales of electricity, residential, annual;annual income from residential electricity sales;annual revenue from retail sales of electricity for residential consumption;how much money is made from selling electricity to people's homes;revenue from residential electricity sales" -Annual_Stock_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Annual Fossil Coal in Electric Power;Fossil-fuel stocks for electricity generation, coal, electric power (total), annual" -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Fossil-fuel stocks for electricity generation, petroleum liquids, electric power (total), annual;Total Annual Petroleum Liquids Stocks For Electricity Generation;total annual petroleum liquids stocks for electricity generation;total annual petroleum liquids stocks for generating electricity;total annual petroleum liquids stocks for power generation;total annual petroleum liquids stocks for power production" -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Annual Fossil-Fuel Stocks of Petroleum Liquids in Electric Utility;Fossil-fuel stocks for electricity generation, petroleum liquids, electric utility, annual;the annual inventory of petroleum liquids that electric utilities keep" -Annual_Stock_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers,"Annual Consumption of Petroleum Liquids For Electricity Generation in Independent Power Producers;Fossil-fuel stocks for electricity generation, petroleum liquids, independent power producers, annual;the amount of petroleum liquids consumed annually by independent power producers for electricity generation;the amount of petroleum liquids used by independent power producers to generate electricity each year;the amount of petroleum liquids used for electricity generation by independent power producers each year;the annual amount of petroleum liquids consumed by independent power producers for electricity generation" -Annual_SulfurContent_Fuel_ForElectricityGeneration_BituminousCoal,"Annual Sulfur Content In Bituminous Coal For Electricity Generation;Quality of fossil fuels in electricity generation, sulfur content, bituminous coal, all sectors, annual;sulfur content in bituminous coal used for electricity generation each year;the amount of sulfur in bituminous coal used for electricity generation each year;the average amount of sulfur in bituminous coal used for electricity generation each year;the level of sulfur in bituminous coal used for electricity generation each year" -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal,"Annual Quality of Sulfur Content In Coal;Quality of fossil fuels in electricity generation, sulfur content, coal, all sectors, annual;annual sulfur content in coal;coal sulfur content year-to-year;sulfur content in coal each year;yearly sulfur content in coal" -Annual_SulfurContent_Fuel_ForElectricityGeneration_Coal_ElectricPower,"Annual Quality of Fossil Fuels in Electricity Generation;Quality of fossil fuels in electricity generation, sulfur content, coal, electric power (total), annual;the annual quality of fossil fuels used to generate electricity;the annual quality of fossil fuels used to make electricity;the annual quality of fossil fuels used to power the grid;the quality of fossil fuels used in electricity generation each year" -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids,"Annual Quality of Petroleum Liquids in All Sectors;Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, all sectors, annual;the annual quality of petroleum liquids in all sectors;the quality of petroleum liquids in all sectors each year;the quality of petroleum liquids in all sectors on a yearly basis;the quality of petroleum liquids in all sectors year after year" -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower,"Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, electric power (total), annual;Total Annual Quality of Petroleum Liquids in Electricity Generation;the total annual tonnage of petroleum liquids used in electricity generation;what is the annual quality of petroleum liquids used in electricity generation?;what is the quality of petroleum liquids used to generate electricity each year?" -Annual_SulfurContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility,"Annual Sulfur Content of Petroleum Liquids For Electricity Generation in Electric Utility;Quality of fossil fuels in electricity generation, sulfur content, petroleum liquids, electric utility, annual;annual sulfur content of petroleum liquids used for electricity generation in electric utilities;sulfur content of petroleum liquids used for electricity generation in electric utilities each year;the amount of sulfur in petroleum liquids used for electricity generation in electric utilities each year;the annual average sulfur content of petroleum liquids used for electricity generation in electric utilities" -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal,"1 sulfur content of subbituminous coal used for electricity generation each year;2 the amount of sulfur in subbituminous coal used to generate electricity each year;3 the percentage of sulfur in subbituminous coal used to generate electricity each year;4 the annual average sulfur content of subbituminous coal used for electricity generation;Annual Sulfur Content In Subbituminous Coal For Electricity Generation;Quality of fossil fuels in electricity generation, sulfur content, subbituminous coal, all sectors, annual" -Annual_SulfurContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower,"Quality of fossil fuels in electricity generation, sulfur content, subbituminous coal, electric power (total), annual;Total Annual Quality of Subbituminous Coal in Electricity Generation in Electric Power;the annual quantity of subbituminous coal used to produce electricity;the annual sum of subbituminous coal used to generate power;the total amount of subbituminous coal used to generate electricity each year;the yearly total of subbituminous coal used to create electricity" -Annual_WithdrawalRate_Water_AsAFractionOf_Annual_Reserve_Water,Annual ground water withdrawal against net annual availability (%);water withdrawal percentage -Area_Farm,Area of Farm;Total Farm Area;Total area of land on a farm;total Farm Area;total area of farms -Area_Farm_BarleyForGrain,Acreage of barley fields;Area of Farm: Barley for Grain;Barley farm acreage;Farms growing barley for grain;The total area of land used for barley farming;Total Area of Barley Farms;Total area of barley cultivation;Total area of land used for barley farming;the total acreage of barley farms;the total area of barley farms;the total land area used for barley farming;the total land area used for barley production;total area of barley farms -Area_Farm_CornForGrain,Area of Farm: Corn for Grain;Farms growing corn for grain;Total Area of Farms Growing Corn;the total acreage of corn farms;the total acreage of farms that grow corn;the total acreage of land cultivated for corn;the total acreage of land planted with corn;the total amount of land used for corn farming;the total area of land used to grow corn;the total land area devoted to corn cultivation;the total number of acres used to grow corn;total area of farms growing corn -Area_Farm_CornForSilageOrGreenchop,Area of Farm: Corn for Silage or Greenchop;Farms growing corn for silage or greenchop;How much land is used for silage on farms?;The total area of farmland used for silage;The total area of farms used for silage;The total area of farms used for silage production;Total Area of Farms for Silage;the total acreage of farms used for silage;the total amount of land used for silage production;the total area of farms used for silage;the total land area used for silage production;total area of farms for silage -Area_Farm_Cotton,Area of Farm: Cotton;Area of Farms Growing Cotton;Cotton acreage;Cotton farming area;Farms growing cotton;The amount of land used for cotton farming;area of farms growing cotton;the acreage of cotton farms;the amount of land used for cotton farming;the area of farms growing cotton;the land area devoted to cotton farming -Area_Farm_Cropland,Area of Farm: Cropland;Area of Farms Used for Crop Cultivation;Farmland used for crops;Farms with cropland;area of farms used for crop cultivation;cropland;farmland;farmland used for crop production;farmland used for growing crops -Area_Farm_DryEdibleBeans,Area of Farm: Dry Edible Beans;Area of Farms Growing Beans;Area of land used to grow beans;Bean acreage;Bean-growing area;Bean-growing land;Farms growing dry edible beans;Land area used to cultivate beans;area of farms growing beans;the acreage of bean farms;the acreage of land used for bean farming;the land area used for bean cultivation;the land area used for bean production -Area_Farm_DurumWheatForGrain,Area of Farm: Durum Wheat for Grain;Area of Farms Growing Durum Wheat;Area of land used to grow durum wheat;Farms growing durum wheat for grain;The amount of land that is used to grow durum wheat;The amount of land used for durum wheat farming;The area of farms growing durum wheat;The extent of durum wheat cultivation;area of farms growing durum wheat;the amount of land used to grow durum wheat;the number of acres of land used to grow durum wheat;the total area of durum wheat cultivation;the total land area used for durum wheat production -Area_Farm_Forage,Area of Farm: Forage;Forage Farm Area -Area_Farm_HarvestedCropland,Area of Farm: Harvested Cropland;Area of Farms With Harvested Cropland;Cropland area;Cropland on farms;Cultivated land;Farms with harvested cropland;Harvested cropland area;Land under crop production;area of farms with harvested cropland;area of farms with harvested crops;land that is used to grow and harvest crops;the land area used for farming and harvesting -Area_Farm_IrrigatedLand,Area of Farm: Irrigated Land;Area of Irrigated Lands on Farms;Farmland area under irrigation;Farmland that is irrigated;Farmland under irrigation;Farms with irrigated land;area of irrigated lands on farms;farmland area that is irrigated;farmland that has its water supply supplemented by artificial means;farmland that is not rain-fed;farmland that is watered artificially -Area_Farm_OatsForGrain,Area of Farm: Oats for Grain;Area of Farms Growing Oats;Area of farms growing oats;Area of land used to grow oats;Farms growing oats for grain;Oat acreage;Oat farming area;Oat growing area;The amount of land used to grow oats;extent of land used for oat farming;oat acreage;oat cultivation area;oat farmland -Area_Farm_Orchards,Area of Farm: Orchards;Farms with orchards;The combined area of all farms that have orchards;Total Area of Farms With Orchards;acreage of farms with orchards;area of farms with fruit trees;land area of farms with fruit trees;land area of farms with orchards;the total acreage of farms with orchards;the total amount of land that is used for farming orchards;the total land area of farms that have orchards;the total surface area of farms that grow fruit trees;total area of farms with orchards -Area_Farm_OtherSpringWheatForGrain,Area of Farm: Other Spring Wheat for Grain;Other Spring Wheat for Grain Area;spring wheat for other grain areas -Area_Farm_PeanutsForNuts,Acreage of land used to grow peanuts;Area of Farm: Peanuts for Nuts;Area of Farms Growing Peanuts;Farms growing peanuts for nuts;Land used to grow peanuts;Peanut farm acreage;Peanut farm land;Peanut growing acreage;area of farms growing peanuts;the acreage of farms that grow peanuts;the land area of farms that grow peanuts;the size of the land area used for peanut farming;the total area of land used for peanut cultivation -Area_Farm_PimaCotton,Area of Farm: Pima Cotton;Area of Farms Growing Pima Cotton;Farms growing Pima cotton;Land area used for pima cotton farming;The acreage of pima cotton farms;The amount of land used for pima cotton farming;The area of land dedicated to pima cotton cultivation;The land area used for pima cotton production;area of farms growing pima cotton;the acreage of pima cotton farms;the amount of land used to grow pima cotton;the land area devoted to pima cotton cultivation;the land area used for pima cotton farming -Area_Farm_Potatoes,Area of Farm: Potatoes;Area of Farms Growing Potatoes;Farms growing potatoes;The acreage of potato farms;The amount of land that is used to grow potatoes;The amount of land used for potato farming;The land area devoted to potato cultivation;area of farms growing potatoes;the acreage of potato farms;the amount of land used for potato farming;the land area used for potato cultivation;the land used to grow potatoes -Area_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,"Area of Farm: Primary Producer, American Indian or Alaska Native Alone;Area of Farms with American Indians or Alaska Natives Primary Producers;the acreage of land used for agricultural purposes by american indians or alaska natives;the amount of land used for farming by american indians or alaska natives;the area of farms with american indians or alaska natives as primary producers;the size of farms owned and operated by american indians or alaska natives" -Area_Farm_PrimaryProducer_AsianAlone,"Area of Farm: Primary Producer, Asian Alone;Asian Primary Producers;people in asia who are involved in primary production;people who are involved in primary production in asia" -Area_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,"2 african americans who are involved in primary production;3 people of african descent who are primary producers;4 african americans who work in the primary sector;African Americans Primary Producers;Area of Farm: Primary Producer, Black or African American Alone" -Area_Farm_PrimaryProducer_HispanicOrLatino,"Area of Farm: Primary Producer, Hispanic or Latino;Hispanic Primary Farm Producers;hispanic primary producers in agriculture" -Area_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,"Area Of Native Hawaiian or Other Pacific Islander Primary Farm Producer;Area of Farm: Primary Producer, Native Hawaiian or Other Pacific Islander Alone;area of primary farm production by native hawaiians or other pacific islanders;area where native hawaiian or other pacific islander primary farm production is concentrated;area where native hawaiians or other pacific islanders are the primary farm producers;native hawaiian or other pacific islander primary farm producer area" -Area_Farm_PrimaryProducer_TwoOrMoreRaces,"Area Of Multiracial Primary Farm;Area of Farm: Primary Producer, Two or More Races;farm area with a multiracial population;multiracial farm area" -Area_Farm_PrimaryProducer_WhiteAlone,"Area of Farm: Primary Producer, White Alone;Total Area of White Primary Producer Farms" -Area_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Producer in Farm;Area of Farm: Producer, American Indian or Alaska Native Alone;american indian or alaska native farmer;indigenous farmer;native american farmer;native farmer" -Area_Farm_Producer_AsianAlone,"Area Of Farms With Asian Producers;Area of Farm: Producer, Asian Alone;the acreage of land that is used for agriculture by asian farmers;the amount of land that is used for farming by asian producers;the land area that is used for farming by people of asian descent;the size of farms that are owned and operated by asian people" -Area_Farm_Producer_BlackOrAfricanAmericanAlone,"African American Producers;Area of Farm: Producer, Black or African American Alone" -Area_Farm_Producer_HispanicOrLatino,"Area of Farm For Hispanic Producers;Area of Farm: Producer, Hispanic or Latino;hispanic farm acreage;hispanic farm size;hispanic farmers' land area;land area of hispanic farms" -Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"Area of Farm: Producer, Native Hawaiian or Other Pacific Islander Alone;Native Hawaiian or Other Pacific Islander Farm Producers" -Area_Farm_Producer_TwoOrMoreRaces,"Area of Farm: Producer, Two or More Races;Multiracial Farm Producers;agricultural producers of mixed race;farmers of many cultures;farmers who are multiracial;people of multiple races who own and operate farms" -Area_Farm_Producer_WhiteAlone,"Area of Farm: Producer, White Alone;Area of Farms Owned By White Producers;White Population Area of Farm Producers;acreage of farms owned by white producers;land area of farms owned by white producers;white farm producers' land area;white-owned farm acreage" -Area_Farm_Rice,Area of Farm: Rice;Area of Farms Growing Rice;Farms growing rice;Rice-growing land;area of farms growing rice;area of land used to grow rice;land area used for rice cultivation;rice farming area;rice-growing land;the acreage of rice farms;the land area devoted to rice cultivation;the land area used for rice cultivation;the size of rice fields -Area_Farm_SorghumForGrain,Area of Farm: Sorghum for Grain;Area of Farms Growing Sorghum;Farms growing sorghum for grain;Sorghum acreage;The amount of land that is used for sorghum farming;The amount of land used for growing sorghum;The amount of land used for sorghum cultivation;area of farms growing sorghum;the amount of land used for sorghum cultivation;the extent of land used for sorghum production;the number of acres of land used to grow sorghum;the size of the land area used for sorghum farming -Area_Farm_SorghumForSilageOrGreenchop,Area of Farm: Sorghum for Silage or Greenchop;Total Area of Sorghum For Silage Farms;sorghum for silage or greenchop area of the farm;sorghum for silage or greenchop area of the farm's land;sorghum for silage or greenchop farm area;sorghum for silage or greenchop farming -Area_Farm_SugarbeetsForSugar,Acreage of land used for sugarbeet production;Amount of land used for growing sugarbeets for sugar production;Area of Farm: Sugarbeets for Sugar;Area of Farms Growing Sugarbeets for Sugar Production;Area of land used for growing sugarbeets for sugar production;Farms growing sugarbeets for sugar;Land area used for sugarbeet production;Size of land used for sugarbeet production;area of farms growing sugarbeets for sugar production;the acreage of land used to grow sugarbeets for sugar production;the amount of land used to grow sugarbeets for sugar production;the land area used to grow sugarbeets for sugar production;the size of the land used to grow sugarbeets for sugar production -Area_Farm_SunflowerSeed,Area of Farm: Sunflower Seed;Area of Farms Growing Sunflower Seeds;Farms growing sunflower seed;The amount of land used to grow sunflower seeds;acreage of sunflower farms;area of farms growing sunflower seeds;area of land used to grow sunflower seeds;land area devoted to sunflower cultivation;sunflower seed farm acreage;the acreage of land used for sunflower seed production;the amount of land used for growing sunflower seeds;the land area devoted to sunflower cultivation;the total area of land used to grow sunflowers -Area_Farm_SweetPotatoes,Area of Farm: Sweet Potatoes;Area of Farms Growing Sweet Potatoes;Farms growing sweet potatoes;The amount of land used for sweet potato farming;area of farms growing sweet potatoes;the acreage of land used for sweet potato cultivation;the amount of land used for sweet potato farming;the amount of land used to grow sweet potatoes;the land area devoted to sweet potato production;the total land area used for sweet potato farming -Area_Farm_UplandCotton,Area of Farm: Upland Cotton;Area of Farms Growing Upland Cotton;Farms growing upland cotton;The amount of land used for upland cotton farming;area of farms growing upland cotton;the acreage of land used to grow upland cotton;the land area devoted to upland cotton farming;the land area used for upland cotton production;the size of the land area used for upland cotton farming -Area_Farm_VegetablesHarvestedForSale,Area of Farm: Vegetables Harvested for Sale;Area of Farms Growing Vegetables for Sale;Farmland used to grow vegetables for sale;Farms growing vegetables for sale;The amount of land used for growing vegetables to be sold;The area of land used for growing vegetables to be sold;Vegetable farming area;area of farms growing vegetables for sale;the acreage of farms that grow vegetables for sale;the amount of land used for growing vegetables to be sold;the amount of land used to grow vegetables for sale;the area of farms growing vegetables for sale -Area_Farm_WheatForGrain,Area of Farm: Wheat for Grain;Area of Farms Growing Wheat;Farms growing wheat for grain;The amount of land used for wheat farming;Wheat acreage;Wheat-growing farmland;area of farms growing wheat;the acreage of wheat fields;the amount of land used for wheat farming;the land area dedicated to wheat cultivation;the total area of land used to grow wheat -Area_Farm_WinterWheatForGrain,Area of Farm: Winter Wheat for Grain;Area of Farms Growing Winter Wheat;Area of land used to grow winter wheat;Farms growing winter wheat for grain;The amount of land that is used for growing winter wheat;The area of farmland used for winter wheat cultivation;Winter wheat acreage;area of farms growing winter wheat;the acreage of land that is used to grow winter wheat;the amount of land that is used to grow winter wheat;the amount of land used for winter wheat farming;the land area that is used for winter wheat cultivation -Area_FireEvent,Area of Fire Event;Total Area of Fire Events;danger zone;fire zone;firing zone;target area -Area_FloodEvent,Area of Flood Event;Total Area of Flood Events;area affected by flooding;area at risk of flooding;flood-prone area;floodplain -Area_LandCover_Forest,Area of Land Cover: Forest;land covered by forest -Area_LandCover_Tree,Area of Land Cover: Tree;land covered by trees +AirPollutant_Cancer_Risk,Lifetime cancer risk from inhalation of air toxics +AirQualityIndex_AirPollutant,Air quality index +AirQualityIndex_AirPollutant_CO,Air Quality Index of Carbon Monoxide +AirQualityIndex_AirPollutant_NO2,Air Quality Index of Nitrogen Dioxide +AirQualityIndex_AirPollutant_Ozone,Air Quality Index of Ozone +AirQualityIndex_AirPollutant_PM10,Air Quality Index of PM10 +AirQualityIndex_AirPollutant_PM2.5,Air Quality Index of PM2.5 +AirQualityIndex_AirPollutant_SO2,Air Quality Index of Sulfur Dioxide +AmountFarmInventory_WinterWheatForGrain,Amount of Winter Wheat grown for Grain production +Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears,Alcohol consumed per capita +Amount_Consumption_Electricity_PerCapita,Electricity consumed per capita +Amount_Consumption_Energy_PerCapita,Energy consumed per capita +Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy,Proportion of Renewable Energy Consumption Relative to Total Energy Consumption +Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government,Percentage of Total Government Spending Allocated to Education +Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Proportion of Education Spending Relative to Nominal GDP +Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person,Healthcare Expenditure per Capita +Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government,Government Military Expenditure +Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Proportion of Military Spending Relative to Nominal Gross Domestic Product +Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government,Government Tertiary Education Expenditure as Proportion of Government Education Expenditure +Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue,Gross Domestic Product (GDP) of the accommodation and food industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue,"Gross Domestic Product (GDP) of the administrative support, waste management, and remediation services industry" +Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue,"Gross Domestic Product (GDP) of the agriculture, forestry, fishing, and hunting industry" +Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue,"Gross Domestic Product (GDP) of the arts, entertainment, and recreation industry" +Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue,Gross Domestic Product (GDP) of the construction industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue,Gross Domestic Product (GDP) of the educational services industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue,Gross Domestic Product (GDP) of the finance and insurance industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue,Gross Domestic Product (GDP) of the health care and social assistance industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue,Gross Domestic Product (GDP) of the information industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue,Gross Domestic Product (GDP) of the management of companies and enterprises industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue,"Gross Domestic Product (GDP) of the mining, quarrying, and oil and gas extraction industry" +Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue,"Gross Domestic Product (GDP) of the professional, scientific, and technical services industry" +Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue,Gross Domestic Product (GDP) of the real estate and rental and leasing industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue,Gross Domestic Product (GDP) of the utilities industry +Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue,Gross Domestic Product (GDP) of the wholesale trade industry +Amount_EconomicActivity_GrossDomesticProduction_Nominal,nominal Gross Domestic Product (GDP) +Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita,nominal Gross Domestic Product (GDP) per capita +Amount_EconomicActivity_GrossDomesticProduction_RealValue,real value of Gross Domestic Product (GDP) +Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity,Gross National Income Based on Purchasing Power Parity +Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita,Gross National Income per capita Based on Purchasing Power Parity +Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue,"Real Gross Value Added from Agriculture, Hunting, Forestry, and Fishing" +Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue,Real Gross Value Added from Construction +Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue,Real Gross Value Added from Manufacturing +Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue,"Real Gross Value Added from Mining, Manufacturing, and Utilities" +Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue,"Real Gross Value Added from Transport, Storage, and Communications" +Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue,"Real Gross Value Added from Wholesale, Retail Trade, Restaurants, and Hotels" +Amount_EconomicActivity_GrossValueAdded_RealValue,Real Gross Value Added +Amount_Emissions_CarbonDioxide_PerCapita,Carbon Dioxide Emissions per Capita +Amount_FarmInventory_BarleyForGrain,Amount of Barley grown for Grain production +Amount_FarmInventory_CornForSilageOrGreenchop,Amount of Corn grown for Silage (green fodder) or Greenchop +Amount_FarmInventory_Cotton,Amount of cotton grown +Amount_FarmInventory_DryEdibleBeans,Amount of Dry Edible Bean grown +Amount_FarmInventory_DurumWheatForGrain,Amount of Durum Wheat grown for grain production +Amount_FarmInventory_Forage,Amount of Forage grown +Amount_FarmInventory_JuteOrMesta,Amount of Jute or mesta grown +Amount_FarmInventory_OatsForGrain,Amount of Oats grown for grain production +Amount_FarmInventory_PeanutsForNuts,Amount of peanut grown +Amount_FarmInventory_PimaCotton,Amount of pima cotton grown +Amount_FarmInventory_Pulses,Amount of pulses grown +Amount_FarmInventory_Rice,Amount of rice grown +Amount_FarmInventory_SorghumForGrain,Amount of Sorghum grown for grain production +Amount_FarmInventory_SorghumForSilageOrGreenchop,Amount of Sorghum grown for silage or greenchop +Amount_FarmInventory_SugarbeetsForSugar,Amount of Sugarbeets grown for sugar production +Amount_FarmInventory_SunflowerSeed,Amount of sunflower seed grown +Amount_FarmInventory_UplandCotton,Amount of upland Cotton grown +Amount_FarmInventory_Wheat,Amount of wheat grown +Amount_FarmInventory_WheatForGrain,Amount of Wheat grown for grain production +Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy,Proportion of Electricity Generated from Nuclear Sources +Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy,"Proportion of Electricity Generated from Oil, Gas, or Coal Sources" +Amount_Remittance_InwardRemittance,Amount of Inward Remittance +Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Inward Remittance as a Fraction of Nominal Gross Domestic Product +Amount_Remittance_OutwardRemittance,Amount of Outward Remittance +Amount_Stock,Stock market capitalization +Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal,Stock market capitalization as a Proportion of Nominal GDP +Amout_FarmInventory_CornForGrain,Amount of Corn grown for grain production +Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion,Annual amount of acetaldehyde emissions from External Combustion +Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion,Annual amount of acetaldehyde emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources,Annual amount of acetaldehyde emissions from Mobile Sources +Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization,Annual amount of acetaldehyde emissions from Solvent Utilization +Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of acetaldehyde emissions from Waste Disposal, Treatment, and Recovery" +Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources,Annual amount of acetaldehyde emissions from Natural Sources +Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources,Annual amount of acetaldehyde emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines,Annual amount of acetaldehyde emissions from Internal Combustion Engines +Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses,Annual amount of acetaldehyde emissions from Industrial Processes +Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation,Annual amount of acetaldehyde emissions from Petroleum and Solvent Evaporation +Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal,Annual amount of acetaldehyde emissions from Waste Disposal +Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion,Annual amount of ammonia emissions from External Combustion +Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion,Annual amount of ammonia emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources,Annual amount of ammonia emissions from Mobile Sources +Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization,Annual amount of ammonia emissions from Solvent Utilization +Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport,Annual amount of ammonia emissions from Storage And Transport +Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of ammonia emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources,Annual amount of ammonia emissions from Natural Sources +Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources,Annual amount of ammonia emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines,Annual amount of ammonia emissions from Internal Combustion Engines +Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses,Annual amount of ammonia emissions from Industrial Processes +Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation,Annual amount of ammonia emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal,Annual amount of ammonia emissions from Waste Disposal +Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion,Annual amount of arsenic emissions from External Combustion +Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion,Annual amount of arsenic emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources,Annual amount of arsenic emissions from Mobile Sources +Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization,Annual amount of arsenic emissions from Solvent Utilization +Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of arsenic emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources,Annual amount of arsenic emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines,Annual amount of arsenic emissions from Internal Combustion Engines +Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses,Annual amount of arsenic emissions from Industrial Processes +Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation,Annual amount of arsenic emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal,Annual amount of arsenic emissions from Waste Disposal +Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses,Annual amount of asbestos emissions from Industrial Processes +Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion,Annual amount of benzene emissions from External Combustion +Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion,Annual amount of benzene emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Benzene_SCC_22_MobileSources,Annual amount of benzene emissions from Mobile Sources +Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization,Annual amount of benzene emissions from Solvent Utilization +Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport,Annual amount of benzene emissions from Storage And Transport +Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of benzene emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources,Annual amount of benzene emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines,Annual amount of benzene emissions from Internal Combustion Engines +Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses,Annual amount of benzene emissions from Industrial Processes +Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of benzene emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal,Annual amount of benzene emissions from Waste Disposal +Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion,Annual amount of cadmium emissions from External Combustion +Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion,Annual amount of cadmium emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources,Annual amount of cadmium emissions from Mobile Sources +Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization,Annual amount of cadmium emissions from Solvent Utilization +Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of cadmium emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources,Annual amount of cadmium emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines,Annual amount of cadmium emissions from Internal Combustion Engines +Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses,Annual amount of cadmium emissions from Industrial Processes +Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of cadmium emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal,Annual amount of cadmium emissions from Waste Disposal +Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion,Annual amount of carbon dioxide emissions from External Combustion +Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources,Annual amount of carbon dioxide emissions from Mobile Sources +Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources,Annual amount of carbon dioxide emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines,Annual amount of carbon dioxide emissions from Internal Combustion Engines +Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses,Annual amount of carbon dioxide emissions from Industrial Processes +Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of carbon dioxide emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal,Annual amount of carbon dioxide emissions from Waste Disposal +Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion,Annual amount of carbon monoxide emissions from External Combustion +Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion,Annual amount of carbon monoxide emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources,Annual amount of carbon monoxide emissions from Mobile Sources +Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization,Annual amount of carbon monoxide emissions from Solvent Utilization +Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport,Annual amount of carbon monoxide emissions from Storage And Transport +Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of carbon monoxide emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources,Annual amount of carbon monoxide emissions from Natural Sources +Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources,Annual amount of carbon monoxide emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines,Annual amount of carbon monoxide emissions from Internal Combustion Engines +Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses,Annual amount of carbon monoxide emissions from Industrial Processes +Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of carbon monoxide emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal,Annual amount of carbon monoxide emissions from Waste Disposal +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10,Annual amount of pm10 emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5,Annual amount of pm2.5 emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from Chemical And Allied Product Manufacturing +Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion,Annual amount of chlorane emissions from External Combustion +Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion,Annual amount of chlorane emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization,Annual amount of chlorane emissions from Solvent Utilization +Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chlorane emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources,Annual amount of chlorane emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines,Annual amount of chlorane emissions from Internal Combustion Engines +Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses,Annual amount of chlorane emissions from Industrial Processes +Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chlorane emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal,Annual amount of chlorane emissions from Waste Disposal +Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion,Annual amount of chlorine emissions from External Combustion +Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion,Annual amount of chlorine emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources,Annual amount of chlorine emissions from Mobile Sources +Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chlorine emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources,Annual amount of chlorine emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines,Annual amount of chlorine emissions from Internal Combustion Engines +Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses,Annual amount of chlorine emissions from Industrial Processes +Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chlorine emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal,Annual amount of chlorine emissions from Waste Disposal +Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion,Annual amount of chloroform emissions from External Combustion +Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion,Annual amount of chloroform emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization,Annual amount of chloroform emissions from Solvent Utilization +Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of chloroform emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources,Annual amount of chloroform emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines,Annual amount of chloroform emissions from Internal Combustion Engines +Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses,Annual amount of chloroform emissions from Industrial Processes +Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation,Annual amount of chloroform emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal,Annual amount of chloroform emissions from Waste Disposal +Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion,Annual amount of Chromium_6 emissions from External Combustion +Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion,Annual amount of Chromium_6 emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources,Annual amount of Chromium_6 emissions from Mobile Sources +Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization,Annual amount of Chromium_6 emissions from Solvent Utilization +Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Chromium_6 emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources,Annual amount of Chromium_6 emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines,Annual amount of Chromium_6 emissions from Internal Combustion Engines +Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses,Annual amount of Chromium_6 emissions from Industrial Processes +Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Chromium_6 emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal,Annual amount of Chromium_6 emissions from Waste Disposal +Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion,Annual amount of Cobalt emissions from External Combustion +Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion,Annual amount of Cobalt emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources,Annual amount of Cobalt emissions from Mobile Sources +Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization,Annual amount of Cobalt emissions from Solvent Utilization +Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Cobalt emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources,Annual amount of Cobalt emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines,Annual amount of Cobalt emissions from Internal Combustion Engines +Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses,Annual amount of Cobalt emissions from Industrial Processes +Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Cobalt emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal,Annual amount of Cobalt emissions from Waste Disposal +Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion,Annual amount of Cyanide emissions from External Combustion +Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion,Annual amount of Cyanide emissions from Stationary Source Fuel Combustion +Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization,Annual amount of Cyanide emissions from Solvent Utilization +Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of Cyanide emissions from Waste Disposal Treatment And Recovery +Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources,Annual amount of Cyanide emissions from Miscellaneous Area Sources +Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines,Annual amount of Cyanide emissions from Internal Combustion Engines +Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses,Annual amount of Cyanide emissions from Industrial Processes +Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Cyanide emissions from Petroleum And Solvent Evaporation +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia,"Annual amount of ammonia emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide,"Annual amount of carbon monoxide emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen,"Annual amount of oxides of nitrogen emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10,"Annual amount of PM10 emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5,"Annual amount of PM2.5 emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide,"Annual amount of sulfur dioxide emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound,"Annual amount of volatile organic compound emissions from non-biogenic, miscellaneous emission sources" +Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion,Annual amount of fluorane emissions from external combustion +Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion,Annual amount of fluorane emissions from stationary source fuel combustion +Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization,Annual amount of fluorane emissions from solvent utilization +Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources,Annual amount of fluorane emissions from miscellaneous area sources +Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines,Annual amount of fluorane emissions from internal combustion engines +Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses,Annual amount of fluorane emissions from industrial processes +Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of fluorane emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal,Annual amount of fluorane emissions from waste disposal +Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion,Annual amount of formaldehyde emissions from external combustion +Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion,Annual amount of formaldehyde emissions from stationary source fuel combustion +Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources,Annual amount of formaldehyde emissions from mobile sources +Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization,Annual amount of formaldehyde emissions from solvent utilization +Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of formaldehyde emissions from waste disposal treatment and recovery +Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources,Annual amount of formaldehyde emissions from natural sources +Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources,Annual amount of formaldehyde emissions from miscellaneous area sources +Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines,Annual amount of formaldehyde emissions from internal combustion engines +Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses,Annual amount of formaldehyde emissions from industrial processes +Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation,Annual amount of formaldehyde emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal,Annual amount of formaldehyde emissions from waste disposal +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from industrial fuel combustion +Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from industrial fuel combustion +Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion,Annual amount of hexane emissions from external combustion +Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion,Annual amount of hexane emissions from stationary source fuel combustion +Annual_Amount_Emissions_Hexane_SCC_22_MobileSources,Annual amount of hexane emissions from mobile sources +Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization,Annual amount of hexane emissions from solvent utilization +Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport,Annual amount of hexane emissions from storage and transport +Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of hexane emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources,Annual amount of hexane emissions from miscellaneous area sources +Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines,Annual amount of hexane emissions from internal combustion engines +Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses,Annual amount of hexane emissions from industrial processes +Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of hexane emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal,Annual amount of hexane emissions from waste disposal +Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion,Annual amount of lead emissions from external combustion +Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion,Annual amount of lead emissions from stationary source fuel combustion +Annual_Amount_Emissions_Lead_SCC_22_MobileSources,Annual amount of lead emissions from mobile sources +Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization,Annual amount of lead emissions from solvent utilization +Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport,Annual amount of lead emissions from storage and transport +Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of lead emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources,Annual amount of lead emissions from miscellaneous area sources +Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines,Annual amount of lead emissions from internal combustion engines +Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses,Annual amount of lead emissions from industrial processes +Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation,Annual amount of lead emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal,Annual amount of lead emissions from waste disposal +Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion,Annual amount of manganese emissions from external combustion +Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion,Annual amount of manganese emissions from stationary source fuel combustion +Annual_Amount_Emissions_Manganese_SCC_22_MobileSources,Annual amount of manganese emissions from mobile sources +Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization,Annual amount of manganese emissions from solvent utilization +Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of manganese emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources,Annual amount of manganese emissions from miscellaneous area sources +Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines,Annual amount of manganese emissions from internal combustion engines +Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses,Annual amount of manganese emissions from industrial processes +Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation,Annual amount of manganese emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal,Annual amount of manganese emissions from waste disposal +Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion,Annual amount of mercury emissions from external combustion +Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion,Annual amount of mercury emissions from stationary source fuel combustion +Annual_Amount_Emissions_Mercury_SCC_22_MobileSources,Annual amount of mercury emissions from mobile sources +Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization,Annual amount of mercury emissions from solvent utilization +Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport,Annual amount of mercury emissions from storage and transport +Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of mercury emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources,Annual amount of mercury emissions from miscellaneous area sources +Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines,Annual amount of mercury emissions from internal combustion engines +Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses,Annual amount of mercury emissions from industrial processes +Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation,Annual amount of mercury emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal,Annual amount of mercury emissions from waste disposal +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia,Annual amount of ammonia emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of carbon monoxide emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of oxides of nitrogen emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of sulfur dioxide emissions from metals processing +Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of volatile organic compound emissions from metals processing +Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion,Annual amount of methane emissions from external combustion +Annual_Amount_Emissions_Methane_SCC_22_MobileSources,Annual amount of methane emissions from mobile sources +Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources,Annual amount of methane emissions from miscellaneous area sources +Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines,Annual amount of methane emissions from internal combustion engines +Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses,Annual amount of methane emissions from industrial processes +Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of methane emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal,Annual amount of methane emissions from waste disposal +Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion,Annual amount of methanol emissions from external combustion +Annual_Amount_Emissions_Methanol_SCC_22_MobileSources,Annual amount of methanol emissions from mobile sources +Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization,Annual amount of methanol emissions from solvent utilization +Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of methanol emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources,Annual amount of methanol emissions from natural sources +Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources,Annual amount of methanol emissions from miscellaneous area sources +Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines,Annual amount of methanol emissions from internal combustion engines +Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses,Annual amount of methanol emissions from industrial processes +Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation,Annual amount of methanol emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal,Annual amount of methanol emissions from waste disposal +Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion,Annual amount of naphthalene emissions from external combustion +Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion,Annual amount of naphthalene emissions from stationary source fuel combustion +Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources,Annual amount of naphthalene emissions from mobile sources +Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization,Annual amount of naphthalene emissions from solvent utilization +Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport,Annual amount of naphthalene emissions from storage and transport +Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of naphthalene emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources,Annual amount of naphthalene emissions from miscellaneous area sources +Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines,Annual amount of naphthalene emissions from internal combustion engines +Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses,Annual amount of naphthalene emissions from industrial processes +Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of naphthalene emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal,Annual amount of naphthalene emissions from waste disposal +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from NaturalResource with biogenic emissions +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from NaturalResource with biogenic emissions +Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound,Annual amount of VolatileOrganicCompound emissions from NaturalResource with biogenic emissions +Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion,Annual amount of Nickel emissions from external combustion +Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion,Annual amount of Nickel emissions from stationary source fuel combustion +Annual_Amount_Emissions_Nickel_SCC_22_MobileSources,Annual amount of Nickel emissions from mobile sources +Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization,Annual amount of Nickel emissions from solvent utilization +Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Nickel emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources,Annual amount of Nickel emissions from miscellaneous area sources +Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines,Annual amount of Nickel emissions from internal combustion engines +Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses,Annual amount of Nickel emissions from industrial processes +Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Nickel emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal,Annual amount of Nickel emissions from waste disposal +Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion,Annual amount of NitrousOxide emissions from external combustion +Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources,Annual amount of NitrousOxide emissions from mobile sources +Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines,Annual amount of NitrousOxide emissions from internal combustion engines +Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses,Annual amount of NitrousOxide emissions from industrial processes +Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of NitrousOxide emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal,Annual amount of NitrousOxide emissions from waste disposal +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia,Annual amount of Sulfur Dioxide emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from Non Road Engines And Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5,Annual amount of Ammonia emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from On Road Vehicles +Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from On Road Vehicles +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion,Annual amount of Oxides Of Nitrogen emissions from external combustion +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion,Annual amount of Oxides Of Nitrogen emissions from stationary source fuel combustion +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources,Annual amount of Oxides Of Nitrogen emissions from mobile sources +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization,Annual amount of Oxides Of Nitrogen emissions from solvent utilization +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport,Annual amount of Oxides Of Nitrogen emissions from storage and transport +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Oxides Of Nitrogen emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources,Annual amount of Oxides Of Nitrogen emissions from natural sources +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources,Annual amount of Oxides Of Nitrogen emissions from miscellaneous area sources +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines,Annual amount of Oxides Of Nitrogen emissions from internal combustion engines +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses,Annual amount of Oxides Of Nitrogen emissions from industrial processes +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Oxides Of Nitrogen emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal,Annual amount of Oxides Of Nitrogen emissions from waste disposal +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion,Annual amount of Oxochromiooxy Chromium emissions from external combustion +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion,Annual amount of Oxochromiooxy Chromium emissions from stationary source fuel combustion +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources,Annual amount of Oxochromiooxy Chromium emissions from mobile sources +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization,Annual amount of Oxochromiooxy Chromium emissions from solvent utilization +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of Oxochromiooxy Chromium emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources,Annual amount of Oxochromiooxy Chromium emissions from miscellaneous area sources +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines,Annual amount of Oxochromiooxy Chromium emissions from internal combustion engines +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses,Annual amount of Oxochromiooxy Chromium emissions from industrial processes +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of Oxochromiooxy Chromium emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal,Annual amount of Oxochromiooxy Chromium emissions from waste disposal +Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion,Annual amount of PM10 emissions from external combustion +Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion,Annual amount of PM10 emissions from stationary source fuel combustion +Annual_Amount_Emissions_PM10_SCC_22_MobileSources,Annual amount of PM10 emissions from mobile sources +Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization,Annual amount of PM10 emissions from solvent utilization +Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport,Annual amount of PM10 emissions from storage and transport +Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of PM10 emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources,Annual amount of PM10 emissions from miscellaneous area sources +Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines,Annual amount of PM10 emissions from internal combustion engines +Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses,Annual amount of PM10 emissions from industrial processes +Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation,Annual amount of PM10 emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal,Annual amount of PM10 emissions from waste disposal +Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories,Annual amount of PM10 emissions from MACT source categories +Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion,Annual amount of PM2.5 emissions from external combustion +Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion,Annual amount of PM2.5 emissions from stationary source fuel combustion +Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources,Annual amount of PM2.5 emissions from mobile sources +Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization,Annual amount of PM2.5 emissions from solvent utilization +Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport,Annual amount of PM2.5 emissions from storage and transport +Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of PM2.5 emissions from waste disposal, treatment and recovery" +Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources,Annual amount of PM2.5 emissions from miscellaneous area sources +Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines,Annual amount of PM2.5 emissions from internal combustion engines +Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses,Annual amount of PM2.5 emissions from industrial processes +Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation,Annual amount of PM2.5 emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal,Annual amount of PM2.5 emissions from waste disposal +Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories,Annual amount of PM2.5 emissions from MACT source categories +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from Petroleum And Related Industries +Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from Petroleum And Related Industries +Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion,Annual amount of phenol emissions from external combustion +Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion,Annual amount of phenol emissions from stationary source fuel combustion +Annual_Amount_Emissions_Phenol_SCC_22_MobileSources,Annual amount of phenol emissions from mobile sources +Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization,Annual amount of phenol emissions from solvent utilization +Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of phenol emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources,Annual amount of phenol emissions from miscellaneous area sources +Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines,Annual amount of phenol emissions from internal combustion engines +Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses,Annual amount of phenol emissions from industrial processes +Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation,Annual amount of phenol emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal,Annual amount of phenol emissions from waste disposal +Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion,Annual amount of phosphorus emissions from external combustion +Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion,Annual amount of phosphorus emissions from stationary source fuel combustion +Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources,Annual amount of phosphorus emissions from mobile sources +Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization,Annual amount of phosphorus emissions from solvent utilization +Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of phosphorus emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources,Annual amount of phosphorus emissions from miscellaneous area sources +Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines,Annual amount of phosphorus emissions from internal combustion engines +Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses,Annual amount of phosphorus emissions from industrial processes +Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation,Annual amount of phosphorus emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal,Annual amount of phosphorus emissions from waste disposal +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from prescribed fire +Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from prescribed fire +Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion,Annual amount of pyrene emissions from external combustion +Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion,Annual amount of pyrene emissions from stationary source fuel combustion +Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources,Annual amount of pyrene emissions from mobile sources +Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of pyrene emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources,Annual amount of pyrene emissions from miscellaneous area sources +Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines,Annual amount of pyrene emissions from internal combustion engines +Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses,Annual amount of pyrene emissions from industrial processes +Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of pyrene emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_SCC_1_ExternalCombustion,Annual amount of emissions from external combustion +Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion,Annual amount of emissions from stationary source fuel combustion +Annual_Amount_Emissions_SCC_22_MobileSources,Annual amount of emissions from mobile sources +Annual_Amount_Emissions_SCC_24_SolventUtilization,Annual amount of emissions from solvent utilization +Annual_Amount_Emissions_SCC_25_StorageAndTransport,Annual amount of emissions from storage and transport +Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_SCC_27_NaturalSources,Annual amount of emissions from natural sources +Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources,Annual amount of emissions from miscellaneous area sources +Annual_Amount_Emissions_SCC_2_InternalCombustionEngines,Annual amount of emissions from internal combustion engines +Annual_Amount_Emissions_SCC_3_IndustrialProcesses,Annual amount of emissions from industrial processes +Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation,Annual amount of emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_SCC_5_WasteDisposal,Annual amount of emissions from waste disposal +Annual_Amount_Emissions_SCC_6_MACTSourceCategories,Annual amount of emissions from MACT source categories +Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion,Annual amount of selenium emissions from external combustion +Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion,Annual amount of selenium emissions from stationary source fuel combustion +Annual_Amount_Emissions_Selenium_SCC_22_MobileSources,Annual amount of selenium emissions from mobile sources +Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization,Annual amount of selenium emissions from solvent utilization +Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of selenium emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources,Annual amount of selenium emissions from miscellaneous area sources +Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines,Annual amount of selenium emissions from internal combustion engines +Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses,Annual amount of selenium emissions from industrial processes +Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation,Annual amount of selenium emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal,Annual amount of selenium emissions from waste disposal +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from solvent utilization +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from solvent utilization +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from solvent utilization +Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from solvent utilization +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from stationary fuel combustion +Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from stationary fuel combustion +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from storage and transport +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from storage and transport +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from storage and transport +Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from storage and transport +Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion,Annual amount of sulfane emissions from external combustion +Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization,Annual amount of sulfane emissions from solvent utilization +Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of sulfane emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources,Annual amount of sulfane emissions from miscellaneous area sources +Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines,Annual amount of sulfane emissions from internal combustion engines +Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses,Annual amount of sulfane emissions from industrial processes +Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation,Annual amount of sulfane emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal,Annual amount of sulfane emissions from waste disposal +Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion,Annual amount of sulfur dioxide emissions from external combustion +Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion,Annual amount of sulfur dioxide emissions from stationary source fuel combustion +Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources,Annual amount of sulfur dioxide emissions from mobile sources +Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization,Annual amount of sulfur dioxide emissions from solvent utilization +Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport,Annual amount of sulfur dioxide emissions from storage and transport +Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of sulfur dioxide emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources,Annual amount of sulfur dioxide emissions from miscellaneous area sources +Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines,Annual amount of sulfur dioxide emissions from internal combustion engines +Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses,Annual amount of sulfur dioxide emissions from industrial processes +Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation,Annual amount of sulfur dioxide emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal,Annual amount of sulfur dioxide emissions from waste disposal +Annual_Amount_Emissions_SulfurDioxide_SCC_6_MACTSourceCategories,Annual amount of sulfur dioxide emissions from MACT source categories +Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion,Annual amount of toluene emissions from external combustion +Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion,Annual amount of toluene emissions from stationary source fuel combustion +Annual_Amount_Emissions_Toluene_SCC_22_MobileSources,Annual amount of toluene emissions from mobile sources +Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization,Annual amount of toluene emissions from solvent utilization +Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport,Annual amount of toluene emissions from storage and transport +Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery,"Annual amount of toluene emissions from waste disposal, treatment, and recovery" +Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources,Annual amount of toluene emissions from miscellaneous area sources +Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines,Annual amount of toluene emissions from internal combustion engines +Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses,Annual amount of toluene emissions from industrial processes +Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation,Annual amount of toluene emissions from petroleum and solvent evaporation +Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal,Annual amount of toluene emissions from waste disposal +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from transportation +Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from transportation +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion,Annual amount of volatile organic compound from external combustion +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion,Annual amount of volatile organic compound from stationary source fuel combustion +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources,Annual amount of volatile organic compound from mobile sources +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization,Annual amount of volatile organic compound from solvent utilization +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport,Annual amount of volatile organic compound from storage and transport +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery,Annual amount of volatile organic compound from waste disposal treatment and recovery +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources,Annual amount of volatile organic compound from natural sources +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources,Annual amount of volatile organic compound from miscellaneous area sources +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines,Annual amount of volatile organic compound from internal combustion engines +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses,Annual amount of volatile organic compound from industrial processes +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation,Annual amount of volatile organic compound from petroleum and solvent evaporation +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal,Annual amount of volatile organic compound from waste disposal +Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories,Annual amount of volatile organic compound from MACT source categories +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from waste disposal and recycling +Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from waste disposal and recycling +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia,Annual amount of Ammonia emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide,Annual amount of Carbon Monoxide emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen,Annual amount of Oxides Of Nitrogen emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10,Annual amount of PM10 emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5,Annual amount of PM2.5 emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide,Annual amount of Sulfur Dioxide emissions from wildfire +Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound,Annual amount of Volatile Organic Compound emissions from wildfire +Annual_Average_RetailPrice_Electricity,Annual average retail price of electricity +Annual_Average_RetailPrice_Electricity_Commercial,Annual average retail price of electricity for commercial sector +Annual_Average_RetailPrice_Electricity_Industrial,Annual average retail price of electricity for industrial sector +Annual_Average_RetailPrice_Electricity_Residential,Annual average retail price of electricity for residential sector +Annual_Capacity_Fuel_CrudeOil_Refinery,Annual capacity of crude oil refinery +Annual_Consumption_Electricity,Annual Electricity Consumption +Annual_Consumption_Electricity_Agriculture,Annual Electricity Usage in Agriculture +Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry,Annual Electricity Usage in Chemical Petrochemical Industry +Annual_Consumption_Electricity_CommerceAndPublicServices,Annual Electricity Usage in Commerce and Public Services +Annual_Consumption_Electricity_ConstructionIndustry,Annual Electricity Usage in Construction Industry +Annual_Consumption_Electricity_FoodAndTobaccoIndustry,Annual Electricity Usage in Food and Tobacco Industry +Annual_Consumption_Electricity_Households,Annual Electricity Usage in Households +Annual_Consumption_Electricity_IronSteel,Annual Electricity Usage in Iron and Steel Industry +Annual_Consumption_Electricity_MachineryIndustry,Annual Electricity Usage in Machinery Industry +Annual_Consumption_Electricity_Manufacturing,Annual Electricity Usage in Manufacturing +Annual_Consumption_Electricity_MiningAndQuarryingIndustry,Annual Electricity Usage in Mining and Quarrying Industry +Annual_Consumption_Electricity_NonFerrousMetalsIndustry,Annual Electricity Usage in Non Ferrous Metals Industry +Annual_Consumption_Electricity_NonMetallicMineralsIndustry,Annual Electricity Usage in Non Metallic Minerals Industry +Annual_Consumption_Electricity_PaperPulpPrintIndustry,"Annual Electricity Usage in Paper, Pulp and Print Industry" +Annual_Consumption_Electricity_RailTransport,Annual Electricity Usage in Rail Transport +Annual_Consumption_Electricity_TextileAndLeatherIndustry,Annual Electricity Usage in Textile and Leather Industry +Annual_Consumption_Electricity_TransportEquipmentIndustry,Annual Electricity Usage in Transport Equipment Industry +Annual_Consumption_Electricity_TransportIndustry,Annual Electricity Usage in Transport Industry +Annual_Consumption_Electricity_WoodAndWoodProductsIndustry,Annual Electricity Usage in Wood and Wood Products Industry +Annual_Consumption_Energy_Geothermal,Annual consumption of energy produced from geo thermal source +Annual_Consumption_Energy_Heat,Annual consumption of energy produced from heat source +Annual_Consumption_Energy_Households_Heat,Annual households heat consumption +Annual_Consumption_Energy_Households_SolarThermal,Annual households Solar Thermal consumption +Annual_Consumption_Energy_Manufacturing_Heat,Annual manufacturing heat consumption +Annual_Consumption_Energy_SolarThermal,Annual consumption of energy produced from solar thermal +Annual_Consumption_Fuel_Agriculture_DieselOil,Annual consumption of diesel oil by the agriculture sector +Annual_Consumption_Fuel_Agriculture_FuelOil,Annual consumption of fuel oil by the agriculture sector +Annual_Consumption_Fuel_Agriculture_Fuelwood,Annual consumption of fuel wood by the agriculture sector +Annual_Consumption_Fuel_Agriculture_Kerosene,Annual consumption of kerosene by the agriculture sector +Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas,Annual consumption of liquefied petroleum gas by the agriculture sector +Annual_Consumption_Fuel_Agriculture_MotorGasoline,Annual consumption of motor gasoline by the agriculture sector +Annual_Consumption_Fuel_Agriculture_NaturalGas,Annual consumption of natural gas by the agriculture sector +Annual_Consumption_Fuel_AnthraciteCoal,Annual consumption of Anthracite Coal +Annual_Consumption_Fuel_AviationGasoline,Annual Consumption of Aviation Gasoline +Annual_Consumption_Fuel_Bagasse,Annual Consumption of Bagasse +Annual_Consumption_Fuel_BioDiesel,Annual Consumption of Bio Diesel +Annual_Consumption_Fuel_BioGas,Annual Consumption of Bio Gas +Annual_Consumption_Fuel_BioGasoline,Annual Consumption of Bio Gasoline +Annual_Consumption_Fuel_BituminousCoal,Annual Consumption of Bituminous Coal +Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse,Annual Consumption of Bituminous Coal Used For Non Energy Use +Annual_Consumption_Fuel_BlastFurnaceGas,Annual Consumption of Blast Furnace Gas +Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation,Annual Consumption of Coke Oven Coke Used for Fuel Transformation by the Blast Furnaces Sector +Annual_Consumption_Fuel_BrownCoal,Annual Consumption of Brown Coal +Annual_Consumption_Fuel_Charcoal,Annual Consumption of Charcoal +Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation,Annual Consumption of Fuel Wood used for Fuel Transformation by Charcoal Plants +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil,Annual Consumption of Diesel Oil by the Petrochemical Industry +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil,Annual Consumption of Fuel Oil by the Petrochemical Industry +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal,Annual Consumption of Hard Coal by the Petrochemical Industry +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Petrochemical Industry +Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas,Annual Consumption of Natural Gas by the Petrochemical Industry +Annual_Consumption_Fuel_CokeOvenCoke,Annual Consumption of Coke Oven Coke +Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal,Annual Consumption of Charcoal by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil,Annual Consumption of Diesel Oil by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil,Annual Consumption of Fuel Oil by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood,Annual Consumption of Fuelwood by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal,Annual Consumption of Hard Coal by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene,Annual Consumption of Kerosene by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline,Annual Consumption of Motor Gasoline by the Commerce and Public Services sector +Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas,Annual Consumption of Natural Gas by the Commerce and Public Services sector +Annual_Consumption_Fuel_ConstructionIndustry_DieselOil,Annual Consumption of Diesel Oil by the Construction Industry +Annual_Consumption_Fuel_ConstructionIndustry_FuelOil,Annual Consumption of Fuel Oil by the Construction Industry +Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Construction Industry +Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas,Annual Consumption of Natural Gas by the Construction Industry +Annual_Consumption_Fuel_DieselOil,Annual Consumption of Diesel Oil +Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline,Annual Consumption of Aviation Gasoline by the Domestic Aviation Transport Sector +Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel by the Domestic Aviation Transport Sector +Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil,Annual Consumption of Diesel Oil by the Domestic Navigation Transport Sector +Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil,Annual Consumption of Fuel Oil by the Domestic Navigation Transport Sector +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil,Annual Consumption of Diesel Oil by the Food and Tobacco Industry +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil,Annual Consumption of Fuel Oil by the Food and Tobacco Industry +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal,Annual Consumption of Hard Coal by the Food and Tobacco Industry +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquified Petroleum Gas by the Food and Tobacco Industry +Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas,Annual Consumption of Natural Gas by the Food and Tobacco Industry +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal,Annual consumption of Coal used for Electricity Generation And Thermal Output +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas,Annual consumption of Natural Gas used for Electricity Generation And Thermal Output +Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids,Annual consumption of Petroleum Liquids used for Electricity Generation And Thermal Output +Annual_Consumption_Fuel_ForElectricityGeneration_Coal,Annual consumption of coal used for electricity generation +Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas,Annual consumption of Natural Gas used for Electricity Generation +Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids,Annual consumption of Petroleum Liquids used for Electricity Generation +Annual_Consumption_Fuel_FuelOil,Annual consumption of Fuel Oil +Annual_Consumption_Fuel_Fuelwood,Annual Fuelwood Consumption +Annual_Consumption_Fuel_HardCoal,Annual Hard Coal Consumption +Annual_Consumption_Fuel_Households_Charcoal,Annual Household Charcoal Consumption +Annual_Consumption_Fuel_Households_DieselOil,Annual Household Diesel Oil Consumption +Annual_Consumption_Fuel_Households_FuelOil,Annual Household Fuel Oil Consumption +Annual_Consumption_Fuel_Households_Fuelwood,Annual Household Fuelwood Consumption +Annual_Consumption_Fuel_Households_HardCoal,Annual Household Hard Coal Consumption +Annual_Consumption_Fuel_Households_Kerosene,Annual Household Kerosene Consumption +Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas,Annual Household Liquefied Petroleum Gas Consumption +Annual_Consumption_Fuel_Households_NaturalGas,Annual Household Natural Gas Consumption +Annual_Consumption_Fuel_Households_VegetalWaste,Annual Household Vegetal Waste Consumption +Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse,Annual Consumption of Natural Gas by the Energy Industry +Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline,Annual Consumption of Aviation Gasoline by International Aviation Bunkers +Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel by International Aviation Bunkers +Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil,Annual Consumption of Diesel Oil by International Marine Bunkers +Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil,Annual Consumption of Fuel Oil by International Marine Bunkers +Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas,Annual Consumption of Blast Furnase Gas for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_CokeOvenCoke,Annual Consumption of Coke Oven Coke for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_DieselOil,Annual Consumption of Diesel Oil for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_FuelOil,Annual Consumption of Fuel Oil for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_HardCoal,Annual Consumption of Hard Coal for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas for Iron Steel Production +Annual_Consumption_Fuel_IronSteel_NaturalGas,Annual Consumption of Natural Gas for Iron Steel Production +Annual_Consumption_Fuel_Kerosene,Annual Consumption of Kerosene +Annual_Consumption_Fuel_KeroseneJetFuel,Annual Consumption of Kerosene Jet Fuel +Annual_Consumption_Fuel_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas +Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse,Annual Consumption of Liquefied Petroleum Gas Used for Non Energy Purposes +Annual_Consumption_Fuel_Lubricants,Annual Consumption of Lubricants +Annual_Consumption_Fuel_Lubricants_NonEnergyUse,Annual Consumption of Lubricants for Non Energy Use +Annual_Consumption_Fuel_MachineryIndustry_DieselOil,Annual Consumption of Diesel Oil by the Machinery Industry +Annual_Consumption_Fuel_MachineryIndustry_FuelOil,Annual Consumption of Fuel Oil by the Machinery Industry +Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Machinery Industry +Annual_Consumption_Fuel_MachineryIndustry_NaturalGas,Annual Consumption of Natural Gas by the Machinery Industry +Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal,Annual Consumption of Anthracite Coal by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_Bagasse,Annual Consumption of Bagasse by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas,Annual Consumption of Blast Furnace Gas by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_BrownCoal,Annual Consumption of Brown Coal by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke,Annual Consumption of Coke Oven Coke by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_DieselOil,Annual Consumption of Diesel Oil by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_FuelOil,Annual Consumption of Fuel Oil by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_Fuelwood,Annual Consumption of Fuelwood by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_HardCoal,Annual Consumption of Hard Coal by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_Kerosene,Annual Consumption of Kerosene by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_MotorGasoline,Annual Consumption of Motor Gasoline by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_NaturalGas,Annual Consumption of Natural Gas by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_PetroleumCoke,Annual Consumption of Petroleum Coke by the Manufacturing Industry +Annual_Consumption_Fuel_Manufacturing_VegetalWaste,Annual Consumption of Vegetal Waste by the Manufacturing Industry +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil,Annual Consumption of Diesel Oil by the Mining and Quarrying Industry +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil,Annual Consumption of Fuel Oil by the Mining and Quarrying Industry +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Mining and Quarrying Industry +Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas,Annual Consumption of Natural Gas by the Mining and Quarrying Industry +Annual_Consumption_Fuel_MotorGasoline,Annual Consumption of Motor Gasoline +Annual_Consumption_Fuel_Naphtha,Annual Consumption of Naphtha +Annual_Consumption_Fuel_Naphtha_NonEnergyUse,Annual Consumption of Naphtha for Non Energy Use +Annual_Consumption_Fuel_NaturalGas,Annual Consumption of Natural Gas +Annual_Consumption_Fuel_NaturalGas_NonEnergyUse,Annual Consumption of Natural Gas for Non Energy Use +Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil,Annual Consumption of Diesel Oil by the Non Ferrous Metals Industry +Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas,Annual Consumption of Natural Gas by the Non Ferrous Metals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil,Annual Consumption of Diesel Oil by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil,Annual Consumption of Fuel Oil by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal,Annual Consumption of Hard Coal by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas,Annual Consumption of Liquefied Petroleum Gas by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas,Annual Consumption of Natural Gas by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke,Annual Consumption of Petroleum Coke by the Non Metallic Minerals Industry +Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil,Annual Diesel Oil consumption by Paper Pulp Print Industry +Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil,Annual Fuel Oil consumption by Paper Pulp Print Industry +Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Paper Pulp Print Industry +Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas,Annual Natural Gas consumption by Paper Pulp Print Industry +Annual_Consumption_Fuel_ParaffinWaxes,Annual Paraffin Waxes consumption by Fuel +Annual_Consumption_Fuel_ParaffinWaxes_NonEnergyUse,Annual Paraffin Waxes consumption by Fuel for Non Energy Use +Annual_Consumption_Fuel_PetroleumCoke,Annual Petroleum Coke consumption by Fuel +Annual_Consumption_Fuel_PetroleumCoke_NonEnergyUse,Annual Petroleum Coke consumption by Fuel for Non Energy Use +Annual_Consumption_Fuel_RailTransport_DieselOil,Annual Diesel Oil consumption by Rail Transport +Annual_Consumption_Fuel_RoadTransport_BioDiesel,Annual Bio Diesel consumption by Road Transport +Annual_Consumption_Fuel_RoadTransport_BioGasoline,Annual Bio Gasoline consumption by Road Transport +Annual_Consumption_Fuel_RoadTransport_DieselOil,Annual Diesel Oil consumption by Road Transport +Annual_Consumption_Fuel_RoadTransport_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Road Transport +Annual_Consumption_Fuel_RoadTransport_MotorGasoline,Annual Motor Gasoline consumption by Road Transport +Annual_Consumption_Fuel_RoadTransport_NaturalGas,Annual Natural Gas consumption by Road Transport +Annual_Consumption_Fuel_TextileAndLeatherIndustry_DieselOil,Annual Diesel Oil consumption by Textile And Leather Industry +Annual_Consumption_Fuel_TextileAndLeatherIndustry_FuelOil,Annual Fuel Oil consumption by Textile And Leather Industry +Annual_Consumption_Fuel_TextileAndLeatherIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Textile And Leather Industry +Annual_Consumption_Fuel_TextileAndLeatherIndustry_NaturalGas,Annual Natural Gas consumption by Textile And Leather Industry +Annual_Consumption_Fuel_TransportEquipmentIndustry_NaturalGas,Annual Natural Gas consumption by Transport Equipment Industry +Annual_Consumption_Fuel_TransportIndustry_AviationGasoline,Annual Aviation Gasoline consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_BioDiesel,Annual Bio Diesel consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_BioGasoline,Annual Bio Gasoline consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_DieselOil,Annual Diesel Oil consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_FuelOil,Annual Fuel Oil consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_KeroseneJetFuel,Annual Kerosene Jet Fuel consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_LiquifiedPetroleumGas,Annual Liquified Petroleum Gas consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_MotorGasoline,Annual Motor Gasoline consumption by Transport Industry +Annual_Consumption_Fuel_TransportIndustry_NaturalGas,Annual Natural Gas consumption by Transport Industry +Annual_Consumption_Fuel_VegetalWaste,Annual Vegetal Waste consumption by Fuel +Annual_Consumption_Fuel_WhiteSpirit,Annual White Spirit consumption by Fuel +Annual_Consumption_Fuel_WhiteSpirit_NonEnergyUse,Annual White Spirit consumption by Fuel for Non Energy Use +Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_DieselOil,Annual Diesel Oil consumption by Wood And Wood Products Industry +Annual_Consumption_Fuel_WoodAndWoodProductsIndustry_NaturalGas,Annual Natural Gas consumption by Wood And Wood Products Industry +Annual_Count_ElectricityConsumer,Annual number of electricity consumers +Annual_Count_ElectricityConsumer_Commercial,Annual number of electricity consumers in the commercial sector +Annual_Count_ElectricityConsumer_Industrial,Annual number of electricity consumers in the industrial sector +Annual_Count_ElectricityConsumer_Residential,Annual number of electricity consumers in the residential sector +Annual_Emissions_CarbonDioxide_Agriculture,Annual amount of carbon dioxide (CO2) emissions from agriculture source +Annual_Emissions_CarbonDioxide_AluminumProduction,Annual amount of carbon dioxide (CO2) emissions from aluminum production +Annual_Emissions_CarbonDioxide_Biogenic,Annual amount of carbon dioxide (CO2) emissions from biogenic emission sources +Annual_Emissions_CarbonDioxide_CementProduction,Annual amount of carbon dioxide (CO2) emissions from cement production +Annual_Emissions_CarbonDioxide_ChemicalPetrochemicalIndustry,Annual amount of carbon dioxide (CO2) emissions from chemical and petrochemical industry +Annual_Emissions_CarbonDioxide_CoalMining,Annual amount of carbon dioxide (CO2) emissions from coal mining +Annual_Emissions_CarbonDioxide_CopperMining,Annual amount of carbon dioxide (CO2) emissions from copper mining +Annual_Emissions_CarbonDioxide_CroplandFire,Annual amount of carbon dioxide (CO2) emissions from cropland fires +Annual_Emissions_CarbonDioxide_ElectricityGeneration,Annual amount of carbon dioxide (CO2) emissions from electricity generation +Annual_Emissions_CarbonDioxide_ForestryAndLandUse,Annual amount of carbon dioxide (CO2) emissions from forestry and land use +Annual_Emissions_CarbonDioxide_FossilFuelOperations,Annual amount of carbon dioxide (CO2) emissions from fossil fuel operations +Annual_Emissions_CarbonDioxide_FuelCombustionForDomesticAviation,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for domestic aviation +Annual_Emissions_CarbonDioxide_FuelCombustionForInternationalAviation,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for international aviation +Annual_Emissions_CarbonDioxide_FuelCombustionForRailways,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for railways +Annual_Emissions_CarbonDioxide_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for residential and commercial onsite heating +Annual_Emissions_CarbonDioxide_FuelCombustionForRoadVehicles,Annual amount of carbon dioxide (CO2) emissions from fuel combustion for road vehicles +Annual_Emissions_CarbonDioxide_FuelCombustionInBuildings,Annual amount of carbon dioxide (CO2) emissions from fuel combustion in buildings +Annual_Emissions_CarbonDioxide_IronMining,Annual amount of carbon dioxide (CO2) emissions from iron mining +Annual_Emissions_CarbonDioxide_Manufacturing,Annual amount of carbon dioxide (CO2) emissions from manufacturing +Annual_Emissions_CarbonDioxide_MaritimeShipping,Annual amount of carbon dioxide (CO2) emissions from maritime shipping +Annual_Emissions_CarbonDioxide_MineralExtraction,Annual amount of carbon dioxide (CO2) emissions from mineral extraction +Annual_Emissions_CarbonDioxide_NetForestEmissions,Annual amount of carbon dioxide (CO2) emissions from net forest emissions +Annual_Emissions_CarbonDioxide_NetGrasslandEmissions,Annual amount of carbon dioxide (CO2) emissions from net grassland emissions +Annual_Emissions_CarbonDioxide_NetWetlandEmissions,Annual Amount of Carbon Dioxide (CO2) Emissions from Net Wetlands +Annual_Emissions_CarbonDioxide_OilAndGasProduction,Annual Amount of Carbon Dioxide (CO2) Emissions from Oil and Gas Production +Annual_Emissions_CarbonDioxide_OilAndGasRefining,Annual Amount of Carbon Dioxide (CO2) Emissions from Oil and Gas Refining +Annual_Emissions_CarbonDioxide_OpenBurningWaste,Annual Amount of Carbon Dioxide (CO2) Emissions from Open Burning of Waste +Annual_Emissions_CarbonDioxide_PulpAndPaperManufacturing,Annual Amount of Carbon Dioxide (CO2) Emissions from Pulp and Paper Manufacturing +Annual_Emissions_CarbonDioxide_RockQuarry,Annual Amount of Carbon Dioxide (CO2) Emissions from Rock Quarry +Annual_Emissions_CarbonDioxide_SandQuarry,Annual Amount of Carbon Dioxide (CO2) Emissions from Sand Quarry +Annual_Emissions_CarbonDioxide_SolidFuelTransformation,Annual Amount of Carbon Dioxide (CO2) Emissions from Solid Fuel Transformation +Annual_Emissions_CarbonDioxide_SteelManufacturing,Annual Amount of Carbon Dioxide Emissions from Steel Manufacturing +Annual_Emissions_CarbonDioxide_Transportation,Annual Amount of Carbon Dioxide Emissions from Transportation +Annual_Emissions_CarbonDioxide_WasteManagement,Annual Amount of Carbon Dioxide Emissions from Waste Management +Annual_Emissions_GreenhouseGas,Annual Amount of Greenhouse Gas Emissions +Annual_Emissions_GreenhouseGas_Agriculture,Annual Amount of Greenhouse Gas Emissions from Agriculture +Annual_Emissions_GreenhouseGas_AluminumProduction,Annual Amount of Greenhouse Gas Emissions from Aluminum Production +Annual_Emissions_GreenhouseGas_AmmoniaManufacturing_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Ammonia Manufacturing +Annual_Emissions_GreenhouseGas_BauxiteMining,Annual Amount of Greenhouse Gas Emissions from Bauxite Mining +Annual_Emissions_GreenhouseGas_CementProduction,Annual Amount of Greenhouse Gas Emissions from Cement Production +Annual_Emissions_GreenhouseGas_CementProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Cement Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_CopperMining,Annual Amount of Greenhouse Gas Emissions from Copper Mining +Annual_Emissions_GreenhouseGas_CroplandFire,Annual Amount of Greenhouse Gas Emissions from Cropland Fire +Annual_Emissions_GreenhouseGas_ElectricityGeneration,Annual Amount of Greenhouse Gas Emissions from Electricity Generation +Annual_Emissions_GreenhouseGas_ElectricityGenerationFromThermalPowerPlant,Annual Amount of Greenhouse Gas Emissions from Electricity Generation from Thermal Power Plant +Annual_Emissions_GreenhouseGas_ElectricityGeneration_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Electricity Generation (Non-Biogenic) +Annual_Emissions_GreenhouseGas_ElectronicsManufacture_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Electronics Manufacture (Non-Biogenic) +Annual_Emissions_GreenhouseGas_EntericFermentation,Annual Amount of Greenhouse Gas Emissions from Enteric Fermentation +Annual_Emissions_GreenhouseGas_FluorinatedGHGProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Fluorinated GHG Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_ForestClearing,Annual Amount of Greenhouse Gas Emissions from Forest Clearing +Annual_Emissions_GreenhouseGas_ForestFire,Annual Amount of Greenhouse Gas Emissions from Forest Fire +Annual_Emissions_GreenhouseGas_ForestryAndLandUse,Annual Amount of Greenhouse Gas Emissions from Forestry and Land Use +Annual_Emissions_GreenhouseGas_FuelCombustionForAviation,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Aviation +Annual_Emissions_GreenhouseGas_FuelCombustionForCooking,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Cooking +Annual_Emissions_GreenhouseGas_FuelCombustionForRailways,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Railways +Annual_Emissions_GreenhouseGas_FuelCombustionForRefrigerationAirConditioning,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Refrigeration and Air Conditioning +Annual_Emissions_GreenhouseGas_FuelCombustionForResidentialCommercialOnsiteHeating,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Residential and Commercial Onsite Heating +Annual_Emissions_GreenhouseGas_FuelCombustionForRoadVehicles,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion for Road Vehicles +Annual_Emissions_GreenhouseGas_FuelCombustionInBuildings,Annual Amount of Greenhouse Gas Emissions from Fuel Combustion in Buildings +Annual_Emissions_GreenhouseGas_GlassProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Glass Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_HydrogenProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Hydrogen Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_IndustrialWasteLandfills_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Industrial Waste Landfills (Non-Biogenic) +Annual_Emissions_GreenhouseGas_IndustrialWastewaterTreatment_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Industrial Wastewater Treatment (Non-Biogenic) +Annual_Emissions_GreenhouseGas_IronAndSteelProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Iron and Steel Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_IronMining,Annual Amount of Greenhouse Gas Emissions from Iron Mining +Annual_Emissions_GreenhouseGas_LimeProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Lime Production (Non-Biogenic) +Annual_Emissions_GreenhouseGas_ManagedSoils,Annual Amount of Greenhouse Gas Emissions from Managed Soils +Annual_Emissions_GreenhouseGas_Manufacturing,Annual Amount of Greenhouse Gas Emissions from Manufacturing +Annual_Emissions_GreenhouseGas_ManureManagement,Annual Amount of Greenhouse Gas Emissions from Manure Management +Annual_Emissions_GreenhouseGas_MaritimeShipping,Annual Amount of Greenhouse Gas Emissions from Maritime Shipping +Annual_Emissions_GreenhouseGas_MaritimeTransport,Annual Amount of Greenhouse Gas Emissions from Maritime Transport +Annual_Emissions_GreenhouseGas_MineralExtraction,Annual Amount of Greenhouse Gas Emissions from Mineral Extraction +Annual_Emissions_GreenhouseGas_MiscellaneousUseOfCarbonates_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Miscellaneous Use Of Carbonates (Non Biogenic) +Annual_Emissions_GreenhouseGas_MunicipalLandfills_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Municipal Landfills (Non Biogenic) +Annual_Emissions_GreenhouseGas_NitricAcidProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Nitric Acid Production (Non Biogenic) +Annual_Emissions_GreenhouseGas_NonBiogenic,Annual Amount of Greenhouse Gas Emissions (Non Biogenic) +Annual_Emissions_GreenhouseGas_OilAndGas,Annual Amount of Greenhouse Gas Emissions from Oil And Gas +Annual_Emissions_GreenhouseGas_OilAndGasProduction,Annual Amount of Greenhouse Gas Emissions from Oil And Gas Production +Annual_Emissions_GreenhouseGas_OpenBurningWaste,Annual Amount of Greenhouse Gas Emissions from Open Burning Waste +Annual_Emissions_GreenhouseGas_PetrochemicalProduction,Annual Amount of Greenhouse Gas Emissions from Petrochemical Production +Annual_Emissions_GreenhouseGas_PetrochemicalProduction_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Petrochemical Production (Non Biogenic) +Annual_Emissions_GreenhouseGas_PetroleumRefining,Annual Amount of Greenhouse Gas Emissions from Petroleum Refining +Annual_Emissions_GreenhouseGas_PetroleumRefining_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Petroleum Refining (Non Biogenic) +Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing,Annual Amount of Greenhouse Gas Emissions from Pulp And Paper Manufacturing +Annual_Emissions_GreenhouseGas_PulpAndPaperManufacturing_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Pulp And Paper Manufacturing (Non Biogenic) +Annual_Emissions_GreenhouseGas_RiceCultivation,Annual Amount of Greenhouse Gas Emissions from Rice Cultivation +Annual_Emissions_GreenhouseGas_RockQuarry,Annual Amount of Greenhouse Gas Emissions from Rock Quarry +Annual_Emissions_GreenhouseGas_SandQuarry,Annual Amount of Greenhouse Gas Emissions from Sand Quarry +Annual_Emissions_GreenhouseGas_SavannaFire,Annual Amount of Greenhouse Gas Emissions from Savanna Fire +Annual_Emissions_GreenhouseGas_ShrublandFire,Annual Amount of Greenhouse Gas Emissions from Shrubland Fire +Annual_Emissions_GreenhouseGas_SolidFuelTransformation,Annual Amount of Greenhouse Gas Emissions from Solid Fuel Transformation +Annual_Emissions_GreenhouseGas_SolidWasteDisposal,Annual Amount of Greenhouse Gas Emissions from Solid Waste Disposal +Annual_Emissions_GreenhouseGas_StationaryCombustion_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Stationary Combustion (Non Biogenic) +Annual_Emissions_GreenhouseGas_SteelManufacturing,Annual Amount of Greenhouse Gas Emissions from Steel Manufacturing +Annual_Emissions_GreenhouseGas_Transportation,Annual Amount of Greenhouse Gas Emissions from Transportation +Annual_Emissions_GreenhouseGas_UndergroundCoalMines_NonBiogenic,Annual Amount of Greenhouse Gas Emissions from Underground Coal Mines (Non Biogenic) +Annual_Emissions_GreenhouseGas_WasteManagement,Annual Amount of Greenhouse Gas Emissions from Waste Management +Annual_Emissions_GreenhouseGas_WastewaterTreatmentAndDischarge,Annual Amount of Greenhouse Gas Emissions from Wastewater Treatment And Discharge +Annual_Emissions_Hydrofluorocarbon_NonBiogenic,Annual Amount of Hydrofluorocarbon Emissions (Non Biogenic) +Annual_Emissions_Hydrofluoroether_NonBiogenic,Annual Amount of Hydrofluoroether Emissions (Non Biogenic) +Annual_Emissions_Methane_Agriculture,Annual Amount of Methane Emissions from Agriculture +Annual_Emissions_Methane_BiologicalTreatmentOfSolidWasteAndBiogenic,Annual Amount of Methane Emissions from Biological Treatment Of Solid Waste And Biogenic +Annual_Emissions_Methane_CoalMining,Annual Amount of Methane Emissions from Coal Mining +Annual_Emissions_Methane_CroplandFire,Annual Amount of Methane Emissions from Cropland Fire +Annual_Emissions_Methane_EntericFermentation,Annual Amount of Methane Emissions from Enteric Fermentation +Annual_Emissions_Methane_FossilFuelOperations,Annual Amount of Methane Emissions from Fossil Fuel Operations +Annual_Emissions_Methane_FuelCombustionForDomesticAviation,Annual Amount of Methane Emissions from Fuel Combustion For Domestic Aviation +Annual_Emissions_Methane_FuelCombustionForInternationalAviation,Annual Amount of Methane Emissions from Fuel Combustion For International Aviation +Annual_Emissions_Methane_FuelCombustionForRailways,Annual amount of emission of Methane from fuel combustion for railways +Annual_Emissions_Methane_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of emission of Methane from fuel combustion for residential commercial onsite heating +Annual_Emissions_Methane_FuelCombustionForRoadVehicles,Annual amount of emission of Methane from fuel combustion for road vehicles +Annual_Emissions_Methane_FuelCombustionInBuildings,Annual amount of emission of Methane from fuel combustion in buildings +Annual_Emissions_Methane_Manufacturing,Annual amount of emission of Methane from manufacturing +Annual_Emissions_Methane_ManureManagement,Annual amount of emission of Methane from manure management +Annual_Emissions_Methane_NonBiogenic,Annual amount of emission of Methane from non biogenic emission source +Annual_Emissions_Methane_OilAndGasProduction,Annual amount of emission of Methane from oil and gas production +Annual_Emissions_Methane_OilAndGasRefining,Annual amount of emission of Methane from oil and gas refining +Annual_Emissions_Methane_OpenBurningWaste,Annual amount of emission of Methane from open burning waste +Annual_Emissions_Methane_Power,Annual amount of emission of Methane from power +Annual_Emissions_Methane_RiceCultivation,Annual amount of emission of Methane from rice cultivation +Annual_Emissions_Methane_SolidFuelTransformation,Annual amount of emission of Methane from solid fuel transformation +Annual_Emissions_Methane_SolidWasteDisposal,Annual amount of emission of Methane from solid waste disposal +Annual_Emissions_Methane_Transportation,Annual amount of emission of Methane from transportation +Annual_Emissions_Methane_WasteManagement,Annual amount of emission of Methane from waste management +Annual_Emissions_Methane_WastewaterTreatmentAndDischarge,Annual amount of emission of Methane from wastewater treatment and discharge +Annual_Emissions_NitrogenTrifluoride_NonBiogenic,Annual amount of emission of Nitrogen trifluoride from non biogenic emission source +Annual_Emissions_NitrousOxide_Agriculture,Annual amount of emission of Nitrous oxide from agriculture +Annual_Emissions_NitrousOxide_BiologicalTreatmentOfSolidWasteAndBiogenic,Annual amount of emission of Nitrous oxide from biological treatment of solid waste and biogenic +Annual_Emissions_NitrousOxide_CroplandFire,Annual amount of emission of Nitrous oxide from cropland fire +Annual_Emissions_NitrousOxide_FossilFuelOperations,Annual amount of emission of Nitrous oxide from fossil fuel operations +Annual_Emissions_NitrousOxide_FuelCombustionForDomesticAviation,Annual amount of emission of Nitrous oxide from fuel combustion for domestic aviation +Annual_Emissions_NitrousOxide_FuelCombustionForInternationalAviation,Annual amount of emission of Nitrous oxide from fuel combustion for international aviation +Annual_Emissions_NitrousOxide_FuelCombustionForRailways,Annual amount of emission of Nitrous oxide from fuel combustion for railways +Annual_Emissions_NitrousOxide_FuelCombustionForResidentialCommercialOnsiteHeating,Annual amount of emission of Nitrous oxide from fuel combustion for residential commercial onsite heating +Annual_Emissions_NitrousOxide_FuelCombustionForRoadVehicles,Annual amount of emission of Nitrous oxide from fuel combustion for road vehicles +Annual_Emissions_NitrousOxide_FuelCombustionInBuildings,Annual amount of emission of Nitrous oxide from fuel combustion in buildings +Annual_Emissions_NitrousOxide_Manufacturing,Annual amount of emission of Nitrous oxide from manufacturing +Annual_Emissions_NitrousOxide_ManureManagement,Annual amount of emission of Nitrous oxide from manure management +Annual_Emissions_NitrousOxide_NonBiogenic,Annual amount of emission of Nitrous oxide from non biogenic emission source +Annual_Emissions_NitrousOxide_OilAndGasRefining,Annual amount of emission of Nitrous oxide from oil and gas refining +Annual_Emissions_NitrousOxide_OpenBurningWaste,Annual amount of emission of Nitrous oxide from open burning waste +Annual_Emissions_NitrousOxide_Power,Annual amount of emission of Nitrous oxide from power +Annual_Emissions_NitrousOxide_SolidFuelTransformation,Annual amount of emission of Nitrous oxide from solid fuel transformation +Annual_Emissions_NitrousOxide_SyntheticFertilizerApplication,Annual amount of emission of Nitrous oxide from synthetic fertilizer application +Annual_Emissions_NitrousOxide_Transportation,Annual amount of emission of Nitrous oxide from transportation +Annual_Emissions_NitrousOxide_WasteManagement,Annual amount of emission of Nitrous oxide from waste management +Annual_Emissions_NitrousOxide_WastewaterTreatmentAndDischarge,Annual amount of emission of Nitrous oxide from wastewater treatment and discharge +Annual_Emissions_Perfluorocarbon_NonBiogenic,Annual amount of emission of Perfluoro Carbon from non biogenic emission source +Annual_Emissions_SulfurHexafluoride_NonBiogenic,Annual amount of emission of Sulfur hexafluoride from non biogenic emission source +Annual_Emissions_VeryShortLivedCompounds_NonBiogenic,Annual amount of emission of very short lived compounds from non biogenic emission source +Annual_ExpectedLoss_NaturalHazardImpact,Estimated annual loss from natural disasters +Annual_ExpectedLoss_NaturalHazardImpact_AvalancheEvent,Estimated annual loss due to avalanche +Annual_ExpectedLoss_NaturalHazardImpact_CoastalFloodEvent,Estimated annual loss due to coastal floods +Annual_ExpectedLoss_NaturalHazardImpact_ColdWaveEvent,Estimated annual loss due to cold waves +Annual_ExpectedLoss_NaturalHazardImpact_DroughtEvent,Estimated annual loss due to droughts +Annual_ExpectedLoss_NaturalHazardImpact_EarthquakeEvent,Estimated annual loss due to earthquakes +Annual_ExpectedLoss_NaturalHazardImpact_HailEvent,Estimated annual loss due to hails +Annual_ExpectedLoss_NaturalHazardImpact_HeatWaveEvent,Estimated annual loss due to heat waves +Annual_ExpectedLoss_NaturalHazardImpact_HurricaneEvent,Estimated annual loss due to hurricanes +Annual_ExpectedLoss_NaturalHazardImpact_IceStormEvent,Estimated annual loss due to ice storms +Annual_ExpectedLoss_NaturalHazardImpact_LandslideEvent,Estimated annual loss due to landslides +Annual_ExpectedLoss_NaturalHazardImpact_LightningEvent,Estimated annual loss due to lightning events +Annual_ExpectedLoss_NaturalHazardImpact_RiverineFloodingEvent,Estimated annual loss due to riverine floodings +Annual_ExpectedLoss_NaturalHazardImpact_StrongWindEvent,Estimated annual loss due to strong winds +Annual_ExpectedLoss_NaturalHazardImpact_TornadoEvent,Estimated annual loss due to tornados +Annual_ExpectedLoss_NaturalHazardImpact_TsunamiEvent,Estimated annual loss due to tsunami +Annual_ExpectedLoss_NaturalHazardImpact_VolcanicActivityEvent,Estimated annual loss due to volcanic activity +Annual_ExpectedLoss_NaturalHazardImpact_WildfireEvent,Estimated annual loss due to wildfires +Annual_ExpectedLoss_NaturalHazardImpact_WinterWeatherEvent,Estimated annual loss due to winter weather +Annual_Exports_Electricity,Amount of electricity exported in a year +Annual_Exports_Fuel_AviationGasoline,Annual Amount of exported aviation gasoline +Annual_Exports_Fuel_BituminousCoal,Annual Amount of exported bituminous coal +Annual_Exports_Fuel_BrownCoal,Annual Amount of exported brown coal +Annual_Exports_Fuel_Charcoal,Annual Amount of exported charcoal +Annual_Exports_Fuel_CokeOvenCoke,Annual Amount of exported coke oven coke +Annual_Exports_Fuel_CrudeOil,Annual Amount of exported crude oil +Annual_Exports_Fuel_DieselOil,Annual Amount of exported diesel oil +Annual_Exports_Fuel_FuelOil,Annual Amount of exported fuel oil +Annual_Exports_Fuel_Fuelwood,Annual Amount of exported fuelwood +Annual_Exports_Fuel_HardCoal,Annual Amount of exported hard coal +Annual_Exports_Fuel_Kerosene,Annual Amount of exported kerosene +Annual_Exports_Fuel_KeroseneJetFuel,Annual Amount of exported kerosene jet fuel +Annual_Exports_Fuel_LiquifiedPetroleumGas,Annual Amount of exported liquefied petroleum gas +Annual_Exports_Fuel_Lubricants,Annual Amount of exported lubricants +Annual_Exports_Fuel_MotorGasoline,Annual Amount of exported motor gasoline +Annual_Exports_Fuel_Naphtha,Annual Amount of exported naphtha +Annual_Exports_Fuel_NaturalGas,Annual Amount of exported natural gas +Annual_Exports_Fuel_NaturalGasLiquids,Annual Amount of exported natural gas liquids +Annual_Exports_Fuel_ParaffinWaxes,Annual Amount of exported paraffin waxes +Annual_Exports_Fuel_PetroleumCoke,Annual Amount of exported petroleum coke +Annual_Exports_Fuel_WhiteSpirit,Annual Amount of exported white spirit +Annual_Generation_Electricity,Annual Amount of generated electricity +Annual_Generation_Electricity_Coal,Annual amount of electricity generated from coal +Annual_Generation_Electricity_Commercial,Amount of electricity generated by commercial power plants +Annual_Generation_Electricity_Households,Annual electricity generated for residential use +Annual_Generation_Electricity_Industrial,Annual electricity generated by industries +Annual_Generation_Electricity_NaturalGas,Annual electricity generated from natural gas +Annual_Generation_Electricity_PetroleumLiquids,Annual electricity generated from petroleum liquids +Annual_Generation_Electricity_RenewableEnergy,Annual electricity generated from renewable sources +Annual_Generation_Electricity_SmallScaleSolarPhotovoltaic,Annual electricity generated from small scale solar PVs +Annual_Generation_Electricity_Solar,Annual electricity generated from solar +Annual_Generation_Electricity_Solar_Residential,Annual electricity generated from solar by the residential sector +Annual_Generation_Electricity_UtilityScaleSolar,Annual electricity generated from utility scale solar power plants +Annual_Generation_Electricity_Wind,Annual electricity generated from wind +Annual_Generation_Energy_Coal,Annual energy generation from coal +Annual_Generation_Energy_FuelOil,Annual energy generation from fuel oil +Annual_Generation_Energy_Geothermal,Annual energy generation from geothermal +Annual_Generation_Energy_NaturalGas,Annual energy generation from natural gas +Annual_Generation_Energy_Solar,Annual energy generation from solar +Annual_Generation_Energy_Water,Annual energy generation from water +Annual_Generation_Fuel_AdditivesOxygenates,Annual production of additives and oxygenates added to oil products +Annual_Generation_Fuel_AnthraciteCoal,Annual production of anthracite coal +Annual_Generation_Fuel_AviationGasoline,Annual production of gasoline for aviation engines +Annual_Generation_Fuel_Bagasse,Annual production of bagasse +Annual_Generation_Fuel_BioDiesel,Annual production of biodiesel +Annual_Generation_Fuel_BioGas,Annual production of biogas +Annual_Generation_Fuel_BioGasoline,Annual production of biogasoline +Annual_Generation_Fuel_BituminousCoal,Annual production of bituminous coal +Annual_Generation_Fuel_BlastFurnaceGas,Annual production of blast furnace gas +Annual_Generation_Fuel_BrownCoal,Annual production of brown coal +Annual_Generation_Fuel_Charcoal,Annual production of charcoal +Annual_Generation_Fuel_CokeOvenCoke,Annual production of coke oven coke +Annual_Generation_Fuel_CokeOvenGas,Annual production of coke oven gas +Annual_Generation_Fuel_CokingCoal,Annual production of coking coal +Annual_Generation_Fuel_CrudeOil,Annual production of crude oil +Annual_Generation_Fuel_DieselOil,Annual production of diesel oil +Annual_Generation_Fuel_FuelOil,Annual production of fuel oil +Annual_Generation_Fuel_Fuelwood,Annual production of fuelwood +Annual_Generation_Fuel_HardCoal,Annual production of hard coal +Annual_Generation_Fuel_Kerosene,Annual production of kerosene +Annual_Generation_Fuel_KeroseneJetFuel,Annual production of kerosene-type jet fuel +Annual_Generation_Fuel_LigniteCoal,Annual production of lignite coal +Annual_Generation_Fuel_LiquifiedPetroleumGas,Annual production of liquefied petroleum gas +Annual_Generation_Fuel_Lubricants,Annual production of lubricant oils +Annual_Generation_Fuel_MotorGasoline,Annual production of motor gasoline +Annual_Generation_Fuel_MunicipalWaste,Annual production of municipal waste +Annual_Generation_Fuel_Naphtha,Annual production of naphtha +Annual_Generation_Fuel_NaturalGas,Annual production of natural gas +Annual_Generation_Fuel_NaturalGasLiquids,Annual production of natural gas liquids +Annual_Generation_Fuel_Nuclear,Annual production of fuel from nuclear sources +Annual_Generation_Fuel_ParaffinWaxes,Annual production of paraffin waxes +Annual_Generation_Fuel_PetroleumCoke,Annual production of petroleum coke +Annual_Generation_Fuel_RefineryFeedstocks,Annual production of refinery feedstocks +Annual_Generation_Fuel_RefineryGas,Annual production of refinery gas +Annual_Generation_Fuel_VegetalWaste,Annual production of vegetal waste +Annual_Generation_Fuel_WhiteSpirit,Annual production of white spirit +Annual_Imports_Electricity,Annual amount of imported electricity +Annual_Imports_Fuel_AnthraciteCoal,Annual amount of anthracite coal imports +Annual_Imports_Fuel_AviationGasoline,Annual amount of imported gasoline for aviation use +Annual_Imports_Fuel_BituminousCoal,Annual amount of bituminous coal imports +Annual_Imports_Fuel_BrownCoal,Annual amount of brown coal imports +Annual_Imports_Fuel_Charcoal,Annual amount of charcoal imports +Annual_Imports_Fuel_CokeOvenCoke,Annual amount of coke oven coke imports +Annual_Imports_Fuel_CokingCoal,Annual amount of coking coal imports +Annual_Imports_Fuel_CrudeOil,Annual amount of crude oil imports +Annual_Imports_Fuel_DieselOil,Annual amount of diesel oil imports +Annual_Imports_Fuel_FuelOil,Annual amount of fuel oil imports +Annual_Imports_Fuel_Fuelwood,Annual amount of fuelwood imports +Annual_Imports_Fuel_HardCoal,Annual amount of hard coal imports +Annual_Imports_Fuel_Kerosene,Annual amount of kerosene imports +Annual_Imports_Fuel_KeroseneJetFuel,Annual amount of kerosene-type jet fuel imports +Annual_Imports_Fuel_LiquifiedPetroleumGas,Annual amount of liquified petroleum gas imports +Annual_Imports_Fuel_Lubricants,Annual amount of lubricant oil imports +Annual_Imports_Fuel_MotorGasoline,Annual amount of motor gasoline imports +Annual_Imports_Fuel_Naphtha,Annual amount of naphtha imports +Annual_Imports_Fuel_NaturalGas,Annual amount of natural gas imports +Annual_Imports_Fuel_ParaffinWaxes,Annual amount of paraffin wax imports +Annual_Imports_Fuel_PetroleumCoke,Annual amount of petroleum coke imports +Annual_Imports_Fuel_WhiteSpirit,Annual amount of white spirit imports +Annual_Loss_Electricity,Annual loss of electricity in transmission and distribution +Annual_Loss_Energy_Heat,Annual loss of heat due to transmission and distribution +Annual_Loss_Fuel_NaturalGas,Annual loss of natural gas during distribution and transportation +Annual_Reserves_Fuel_BrownCoal,Annual brown coal reserve +Annual_Reserves_Fuel_CrudeOil,Annual crude oil reserve +Annual_Reserves_Fuel_HardCoal,Annual hard coal reserve +Annual_Reserves_Fuel_NaturalGas,Annual natural gas reserve +Annual_RetailSales_Electricity,annual retail sales of electricity +Annual_RetailSales_Electricity_Commercial,annual retail sales of electricity consumed by commercial sector +Annual_RetailSales_Electricity_Industrial,annual retail sales of electricity consumed by industrial sector +Annual_RetailSales_Electricity_Residential,annual retail sales of electricity consumed by residential sector +Annual_SalesRevenue_Electricity,annual sales revenue of electricity +Annual_SalesRevenue_Electricity_Commercial,annual sales revenue of electricity from commercial sector +Annual_SalesRevenue_Electricity_Industrial,annual sales revenue of electricity from industrial sector +Annual_SalesRevenue_Electricity_Residential,annual sales revenue of electricity from residential sector +Annual_WithdrawalRate_Water_AsAFractionOf_Annual_Reserve_Water,Proportion of annual ground water withdrawal against net annual availability +Area_Farm,Area of farms +Area_Farm_BarleyForGrain,Area of farms growing barley for grain production +Area_Farm_CornForGrain,Area of Farms Growing Corn +Area_Farm_CornForSilageOrGreenchop,Area of Farm Growing Corn for Silage Or Greenchop +Area_Farm_Cotton,Area of Farm Growing Cotton +Area_Farm_Cropland,Area of Farm with Cropland +Area_Farm_DryEdibleBeans,Area of farms growing dry edible beans +Area_Farm_DurumWheatForGrain,Area of farms growing durum wheat for grain production +Area_Farm_Forage,Area of Farms growing Forage crop +Area_Farm_HarvestedCropland,area of farms with harvested cropland +Area_Farm_IrrigatedLand,Area of Farm Irrigated Land +Area_Farm_OatsForGrain,Area of farms growing oats for grain production +Area_Farm_Orchards,Area of farms growing orchards +Area_Farm_PeanutsForNuts,Area of farms growing peanuts +Area_Farm_PimaCotton,Area of farms growing pima cotton +Area_Farm_Potatoes,Area of Farms Growing Potatoes +Area_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,Area of farms with american indians or alaska natives farmers +Area_Farm_Producer_AsianAlone,Area of farms with asians as farmers +Area_Farm_Producer_BlackOrAfricanAmericanAlone,Area of farms with blacks or african americans farmers +Area_Farm_Producer_HispanicOrLatino,Area of farms with hispanics or latinos farmers +Area_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Area of farms with native hawaiians or other pacific islanders farmers +Area_Farm_Producer_TwoOrMoreRaces,Area of farms with two or more races farmers +Area_Farm_Producer_WhiteAlone,Area of farms with whites farmers +Area_Farm_Rice,Area of farms growing rice +Area_Farm_SorghumForGrain,Area of farms growing Sorghum For Grain +Area_Farm_SorghumForSilageOrGreenchop,Area of farms growing Sorghum For Silage Or Greenchop +Area_Farm_SugarbeetsForSugar,Area of farms growing Sugarbeets For Sugar +Area_Farm_SunflowerSeed,Area of farms growing Sunflower Seed +Area_Farm_SweetPotatoes,Area of farms growing Sweet Potatoes +Area_Farm_UplandCotton,Area of farms growing Upland Cotton +Area_Farm_VegetablesHarvestedForSale,Area of farms growing Vegetables Harvested For Sale +Area_Farm_WheatForGrain,Area of farms growing Wheat For Grain +Area_Farm_WinterWheatForGrain,Area of farms growing Winter Wheat For Grain +Area_FloodEvent,Area of flood event +Area_LandCover_Forest,Area of forest +Area_LandCover_Tree,Area of tree covered land Area_WetBulbTemperatureEvent,Area of Wet Bulb Temperature Event -Area_WildlandFireEvent,Area of Wildland Fire Event;Total Area of Wildland Fire Events;area burned by wildfire;wildfire area;wildfire-affected area;wildland fire zone -AtmosphericPressure_SurfaceLevel,Atmospheric Pressure: Surface Level;Surface Level of Atmospheric Pressure;the air pressure at sea level;the amount of air pushing down on us per square inch;the force of the air pushing down on us;the weight of the air above us -BurnedArea_FireEvent,Total Area That burned;Total area that burned (Acres);how many acres burned?;how much land burned?;what's the acreage of the burned area?;what's the total acreage of the burned area? -BurnedArea_FireEvent_Forest,Area of forest that burned (Acres);Total Area of Forest That burned;how many acres of forest burned?;what is the acreage of the burned forest?;what is the area of the burned forest?;what is the size of the burned forest? -Capacity_Electricity_Renewables_AsAFractionOf_Capacity_Electricity,Renewable share of installed generating capacity (%);electricity from renewable energy -Concentration_AirPollutant_SmokePM25,Concentration of Smoke PM2.5;Concentration of Smoke PM2.5 Pollutant;the concentration of smoke particles in the air -ConsecutiveDryDays,Consecutive Dry Days;Consecutive dry days;How many days in a row without rain;How many days in succession without precipitation;Number of Consecutive Dry Days;Number of consecutive dry days;Number of days without rain;The length of a dry spell;The number of dry days in a row;consecutive dry days;number of days with no precipitation;number of days with no rain;number of days without rain -CountOfClaims_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,"Count of Claims of Natural Hazard Insurance: Building Structure And Contents, Flood Event;Flood Event Insurance;flood coverage;flood insurance;flood policy;flood protection" -Count_BirthEvent,Birth Events;Count of Birth Event;number of births;number of births in a given time period;number of births in a given year;number of births in a particular place -Count_BirthEvent_AsAFractionOfCount_Person,Birth Event Per Capita;Count of Birth Event (Per Capita);number of babies born per capita;number of births per capita -Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,Birth rate;rate at which children are born;the rate of child birth in the united states;the rate of child-bearing in the us -Count_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Count of live births where mothers Education is 9 Th To12 Th Grade No Diploma;Live Births of Mothers With 9th to 12th Grade Education;births to mothers who have completed 9th to 12th grade;births to mothers with 9th to 12th grade education;live births to mothers with 9th to 12th grade education;mothers with 9th to 12th grade education who gave birth -Count_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Count of live births where mothers Race is American Indian Or Alaska Native Alone;Live Births Where Mothers Race is American Indian Or Alaska Native;births to american indian or alaska native mothers;live births to american indian or alaska native mothers;live births to mothers of american indian or alaska native descent;live births to mothers who identify as american indian or alaska native -Count_BirthEvent_LiveBirth_MotherAsianIndian,Count of live births where mothers Race is Asian Indian;Live Births For Asian Indian Mothers;asian indian mothers giving birth;asian indian mothers' live births;asian indian women giving birth;births to asian indian mothers -Count_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Count of live births where mothers Race is Asian Or Pacific Islander;Live Births of Asian Or Pacific Islander Mothers;births to asian or pacific islander mothers;live births to asian or pacific islander women;live births to mothers of asian or pacific islander descent;live births to mothers who are asian or pacific islander -Count_BirthEvent_LiveBirth_MotherAssociatesDegree,Count of live births where mothers Education is Associates Degree;Live Births of Mothers With Associate's Degrees;births to mothers with associate's degrees;live births to mothers who have associate's degrees;live births to mothers who have completed associate's degrees;live births to mothers with associate's degrees -Count_BirthEvent_LiveBirth_MotherBachelorsDegree,Count of live births where mothers Education is Bachelors Degree;Live Births of Mothers with a Bachelor's Degree;births to mothers with a bachelor's degree;live births of mothers who have a bachelor's degree;mothers with a bachelor's degree giving birth;mothers with a bachelor's degree having babies -Count_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,African American Mothers Live Births;Count of live births where mothers Race is Black Or African American Alone;births to african american mothers;live births among african american women;live births to african american women;live births to black women -Count_BirthEvent_LiveBirth_MotherChinese,Count of live births where mothers Race is Chinese;Live Births Among Chinese Mothers;the number of babies born to chinese women;the number of chinese mothers who have had children;the number of chinese women who have given birth;the number of live births to chinese mothers -Count_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Count of live births where mothers Education is Doctorate Degree& Professional School Degree;Live Births Among Mothers with Doctorate Degrees And Professional School Degrees;birth rates among mothers with advanced degrees;births to mothers with doctorate degrees and professional school degrees;childbirth among mothers with doctorate and professional degrees;mothers with doctorate and professional degrees giving birth -Count_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Count of live births where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;Live Births Among Mothers With Unknown Educational Attainment;births to mothers with unknown educational attainment;births to mothers with unknown schooling;live births to mothers with unknown education level;live births to mothers with unknown level of education -Count_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Count of live births where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;Live Births Among Mothers Of Unstated Ethnicity;births to mothers of unstated ethnicity;births to mothers whose ethnicity is not reported;births to mothers whose ethnicity is unknown;births to mothers with unstated ethnicity -Count_BirthEvent_LiveBirth_MotherFilipino,Births By Filipino Mothers;Count of live births where mothers Race is Filipino;how many babies were born to filipino mothers?;how many births were to filipino mothers?;how many filipino babies were born?;how many filipino women gave birth? -Count_BirthEvent_LiveBirth_MotherForeignBorn,Count of live births where mothers Nativity is USC_ Foreign Born;Live Births of Foreign-Born Mothers;births to foreign-born mothers;births to foreign-born women;births to mothers who were born outside the united states;births to mothers with a foreign nationality -Count_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Count of live births where mothers Race is Guamanian Or Chamorro;Number of Chamorro Live Births For Mothers;number of chamorro babies born;number of chamorro births;number of chamorro women who have given birth;number of live births to chamorro mothers -Count_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Count of live births where mothers Education is High School Graduate Ged Or Alternative;Live Births of Mothers with a High School Graduate Ged;births to mothers who have a high school diploma or ged;births to mothers with a high school diploma or equivalent;live births to mothers who have completed high school or obtained a ged;live births to mothers with a ged -Count_BirthEvent_LiveBirth_MotherHispanicOrLatino,Count of live births where mothers Ethnicity is Hispanic Or Latino;Live Births for Hispanic Mothers;births to hispanic mothers;hispanic births;hispanic mothers giving birth;hispanic women giving birth -Count_BirthEvent_LiveBirth_MotherJapanese,Count of live births where mothers Race is Japanese;Live Births For Japanese Mothers;japanese mothers having babies;japanese women giving birth;japanese women having children;live births to japanese mothers -Count_BirthEvent_LiveBirth_MotherKorean,Count of live births where mothers Race is Korean;Live Births of Korean Mothers;births to korean mothers;live births by korean mothers;live births from korean mothers;live births of korean women -Count_BirthEvent_LiveBirth_MotherLessThan9ThGrade,1 births to mothers with less than a 9th grade education;4 births to mothers with less than a high school equivalent;Count of live births where mothers Education is Less Than9 Th Grade;Live Births For Mothers Whose Education is Less Than 9th Grade;births to mothers with less than a high school education;births to mothers with less than a ninth-grade education -Count_BirthEvent_LiveBirth_MotherMastersDegree,Count of live births where mothers Education is Masters Degree;Live Births of Mothers with Masters Degree;births to mothers with masters degrees;live births to mothers with a masters degree;mothers with a masters degree having babies;mothers with masters degrees giving birth -Count_BirthEvent_LiveBirth_MotherNative,Count of live births where mothers Nativity is USC_ Native;Live Births For USC Mothers;live births to us citizen mothers -Count_BirthEvent_LiveBirth_MotherNativeHawaiian,Count of live births where mothers Race is Native Hawaiian;Live Births of Native Hawaiian Mothers;live births to native hawaiian mothers;native hawaiian mothers giving birth;native hawaiian mothers' live births;native hawaiian women giving birth -Count_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Births By Mothers Of Unknown Nativity;Count of live births where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;births to mothers of unknown birthplace;births to mothers of unknown origin;births to mothers of unknown place of birth;births to mothers whose birthplace is unknown -Count_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Count of live births where mothers Ethnicity is Not Hispanic Or Latino;Live Births of Non-Hispanic Mothers;births to mothers who are not of hispanic origin;births to non-hispanic mothers;live births to mothers who are not hispanic;live births to non-hispanic women -Count_BirthEvent_LiveBirth_MotherNowMarried,Count of live births where mothers Marital Status is Now Married;Live Births By Married Mothers;births to married couples;births to married mothers;births to married women;births to mothers who are married -Count_BirthEvent_LiveBirth_MotherOtherAsian,Count of live births where mothers Race is Other Asian;Live Births Among Asian Mothers;the number of asian women who have had live births;the number of births to asian mothers;the number of live births to asian mothers;the number of live births to asian women -Count_BirthEvent_LiveBirth_MotherOtherPacificIslander,Count of live births where mothers Race is Other Pacific Islander;Live Births of Other Pacific Islander Mothers;births to other pacific islander mothers;live births by other pacific islander mothers;other pacific islander mothers giving birth;other pacific islander mothers' live births -Count_BirthEvent_LiveBirth_MotherSamoan,Count of live births where mothers Race is Samoan;Live Births By Samoan Mothers;births to samoan mothers;samoan mothers having children;samoan mothers' live births;samoan women giving birth -Count_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Count of live births where mothers Education is Some College No Degree;Live Births of Mothers with Some College Education Without Degrees;births to mothers who have attended college but do not have a degree;births to mothers who have some college but no degree;births to mothers who have some college experience but do not have a degree;births to mothers with some college education but no degree -Count_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Count of live births where mothers Race is Two Or More Races;Number of Multiracial Live Births Among Multiracial Mothers;the number of live births to multiracial mothers;the number of multiracial babies born to multiracial mothers;the number of multiracial babies born to multiracial women;the number of multiracial births to multiracial women -Count_BirthEvent_LiveBirth_MotherUnmarried,Count of live births where mothers Marital Status is Unmarried;Live Births of Unmarried Mothers;number of births to unmarried mothers;number of births to unmarried women;number of live births to single mothers;number of unmarried mothers who gave birth -Count_BirthEvent_LiveBirth_MotherVietnamese,Count of live births where mothers Race is Vietnamese;Live Births By Vietnamese Mothers;births to vietnamese mothers;live births by vietnamese mothers;the number of babies born to vietnamese mothers;the number of births to vietnamese mothers -Count_BirthEvent_LiveBirth_MotherWhiteAlone,Count of live births where mothers Race is White Alone;Live Births of White Mothers;births to white mothers;live births to white mothers;white mothers' births;white mothers' live births -Count_BlizzardEvent,Blizzard Events;Count of Blizzard Event;blizzard event count;number of blizzard events -Count_CivicStructure_AgriculturalFacility,Count of Civic Structure: Agricultural Facility;number of agricultural facilities -Count_CivicStructure_EducationFacility,Count of Civic Structure: Education Facility;number of educational facilities -Count_CivicStructure_MedicalFacility,Count of Civic Structure: Medical Facility;number of medical facilities -Count_CivicStructure_TransportOrAdminFacility,Count of Civic Structure: Transport or Admin Facility;number of transport or admin facilities -Count_CoastalFloodEvent,Count of Coastal Flood Event;Number of Costal Floods;Number of coastal flood events;Number of coastal flooding incidents;Number of coastal floodings;Number of coastal inundations;Number of costal floods;Number of sea level rise events;Number of tidal surges;number of coastal areas that have been flooded;number of coastal flooding events;number of coastal flooding incidents;number of times coastal areas have flooded -Count_ColdTemperatureEvent,Cold Temperature Events;Count of Cold Temperature Event;number of cold days;number of cold nights;number of cold snaps;number of cold temperature events -Count_ColdWindChillEvent,Cold Wind Chill Events;Count of Cold Wind Chill Event;number of cold wind chill days;number of cold wind chill events;number of cold wind chill occurrences;number of days with cold wind chill -Count_CriminalActivities_AggravatedAssault,Count of Criminal Activities: Aggravated Assault;Number of Aggravated Assault Cases;Number of aggravated assault charges;Number of aggravated assault crimes;Number of aggravated assault incidents;Number of aggravated assault offenses;Number of aggravated assaults;Number of cases of aggravated assault;Number of crimes counted as Aggravated Assault;Number of incidents of aggravated assault;The number of aggravated assaults;Total number of aggravated assault cases;Total number of aggravated assault offenses;number of aggravated assault cases;number of aggravated assaults;number of cases of aggravated assault;number of incidents of aggravated assault -Count_CriminalActivities_Arson,Count of Criminal Activities: Arson;Number of Arson Cases;Number of arson charges;Number of arson crimes;Number of arson incidents;Number of crimes counted as Arson;Total number of arson cases;Total number of arson offenses;number of arson cases;number of arson incidents;number of arsons;number of cases of arson;the number of arson cases in the united states;the number of arson incidents in the united states;the number of arsons in the us;the number of arsons reported in the us -Count_CriminalActivities_Burglary,Burglary count;Burglary statistics;Count of Criminal Activities: Burglary;How many burglaries happen;How often does burglary occur;Number of Burglaries;Number of burglaries;Number of burglary charges;Number of burglary crimes;Number of burglary incidents;Number of crimes counted as Burglary;Total number of burglary cases;Total number of burglary offenses;how many homes have been burgled?;how many people have been burgled?;number of burglaries;what's the rate of burglaries? -Count_CriminalActivities_CombinedCrime,Count of Criminal Activities;Crime rate;Crime statistics;Incident rate;Number of Criminal Activities;Number of crime cases;Number of criminal activities;Number of criminal acts;Number of criminal incidents;Number of offenses;Rate of crime;crime in;how dangerous is;how much crime happens in;how safe is;how safe is it in;number of criminal offenses;number of offenses;the amount of criminal activity;the incidence of crime;the prevalence of crime;the rate of crime -Count_CriminalActivities_ForcibleRape,Count of Criminal Activities: Forcible Rape;Number of Forcible Rapes;Number of crimes counted as Forcible Rape;Number of forcible rape charges;Number of forcible rape crimes;Number of forcible rape incidents;Number of forcible rapes;Number of rapes;Number of rapes reported to law enforcement;Number of rapes reported to the police;Number of reported rapes;Total number of forcible rape cases;Total number of forcible rape offenses;how many people were raped?;how many people were sexually assaulted?;how many people were victims of sexual assault?;how many rapes were reported? -Count_CriminalActivities_LarcenyTheft,Count of Criminal Activities: Larceny Theft;Larceny theft count;Number of Larceny Theft Cases;Number of crimes counted as Larceny Theft;Number of larceny theft charges;Number of larceny theft crimes;Number of larceny theft incidents;The number of larceny theft crimes;The number of larceny thefts;Total number of larceny theft cases;Total number of larceny theft offenses;how many larceny theft cases have there been?;how many people have been victims of larceny theft?;how many times has larceny theft occurred?;what is the number of larceny theft cases? -Count_CriminalActivities_MotorVehicleTheft,Count of Criminal Activities: Motor Vehicle Theft;How many motor vehicles were stolen?;Number of Motor Vehicle Thefts;Number of automobiles stolen;Number of car thefts;Number of cars taken;Number of crimes counted as Motor Vehicle Theft;Number of motor vehicle heists;Number of motor vehicle theft charges;Number of motor vehicle theft crimes;Number of motor vehicle theft incidents;Number of motor vehicle thefts;Number of motor vehicles taken;Number of thefts of motor vehicles;Number of vehicles stolen;Total number of auto thefts;Total number of car thefts;Total number of motor vehicle theft cases;Total number of motor vehicle theft offenses;Total number of motor vehicle thefts;Total number of vehicles stolen;how many cars are stolen each year?;how many motor vehicles are stolen each year?;what is the annual number of motor vehicle thefts?;what is the number of motor vehicle thefts each year? -Count_CriminalActivities_MurderAndNonNegligentManslaughter,Count of Criminal Activities: Murder And Non Negligent Manslaughter;Number of Murder and Non Negligent Manslaughter Cases;Number of crimes counted as Murder And Non Negligent Manslaughter;Number of murder and non-negligent manslaughter charges;Number of murder and non-negligent manslaughter crimes;Number of murder and non-negligent manslaughter incidents;Number of murders and non-negligent manslaughters;Total number of murder and non-negligent manslaughter cases;Total number of murder and non-negligent manslaughter offenses;number of intentional homicides;number of murders and non-negligent manslaughter cases;number of non-negligent manslaughter cases -Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,"Count of Criminal Activities: Murder And Non Negligent Manslaughter (Per Capita);Homicide rate;Murder and non-negligent manslaughter rate per capita;Murder rate;Number of Murder and Non Negligent Manslaughter Cases Per Capita;Number of crimes counted as Murder And Non Negligent Manslaughter per capita;Number of murder and non-negligent manslaughter crimes per person;Number of murders and non-negligent manslaughters per capita;Number of murders and non-negligent manslaughters per head of population;Number of murders and non-negligent manslaughters per individual;Number of murders and non-negligent manslaughters per member of population;Number of murders and non-negligent manslaughters per person;Number of murders per capita;murder and non-negligent manslaughter rate per capita;number of murders and non-negligent manslaughters per 100,000 inhabitants;number of murders and non-negligent manslaughters per 100,000 people;rate of murder and non-negligent manslaughter per capita" -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,"Count of Criminal Activities: Murder And Non Negligent Manslaughter, Female (As Fraction of Count Person Female);Female murder and non-negligent manslaughter rate;Female murder rate;Number of Murder and Non-Negligent Manslaughter Crimes Committed Per Capita for the Female Population;Number of crimes counted as Murder And Non Negligent Manslaughter for the population identifying as Female per capita;Number of murder and non-negligent manslaughter crimes committed per capita for the female population;Number of murders and non-negligent manslaughters per capita for females;Number of murders and non-negligent manslaughters per female;Number of murders and non-negligent manslaughters per girl;Number of murders and non-negligent manslaughters per lady;Number of murders and non-negligent manslaughters per woman;The number of murders and non-negligent manslaughters committed by females per 100,000 people;The number of murders and non-negligent manslaughters committed by females per capita;The number of murders and non-negligent manslaughters committed by women per capita;the number of females who commit murders and non-negligent manslaughter crimes per 100,000 people;the number of females who commit murders and non-negligent manslaughter crimes per capita;the number of murders and non-negligent manslaughter crimes committed by females per 100,000 people;the number of murders and non-negligent manslaughter crimes committed per capita by females" -Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,"Count of Criminal Activities: Murder And Non Negligent Manslaughter, Male (As Fraction of Count Person Male);Male homicide rate;Male murder rate;Number of Murder and Non-Negligent Manslaughter Crimes Committed Per Capita for the Male Population;Number of crimes counted as Murder And Non Negligent Manslaughter for the population identifying as Male per capita;Number of homicides committed by males per capita;Number of murder and non-negligent manslaughter crimes committed by males per capita;Number of murder and non-negligent manslaughter crimes committed per capita for the male population;Number of murders and non-negligent manslaughters per boy;Number of murders and non-negligent manslaughters per capita for males;Number of murders and non-negligent manslaughters per guy;Number of murders and non-negligent manslaughters per male;Number of murders and non-negligent manslaughters per man;Number of murders committed by males per capita;the number of murders and non-negligent manslaughter crimes committed per 100,000 males;the number of murders and non-negligent manslaughter crimes committed per capita by males;the proportion of murders and non-negligent manslaughter crimes committed by males;the rate of murder and non-negligent manslaughter crimes committed by males" -Count_CriminalActivities_PropertyCrime,Count of Criminal Activities: Property;Crimes against property;Crimes involving property;Crimes that involve the theft or damage of property;Crimes that target property;Number of Property Related Crimes;Number of crimes counted as Property;Number of property cases;Number of property crimes;Number of property offenses;Property crimes;Total number of property incidents;Total number of property offenses;number of crimes against property;number of crimes that involve property;number of crimes that target property;number of property crimes -Count_CriminalActivities_Robbery,Count of Criminal Activities: Robbery;How many robberies were there?;Number of Robberies;Number of crimes counted as Robbery;Number of heists;Number of holdups;Number of muggings;Number of raids;Number of robberies;Number of robbery charges;Number of robbery crimes;Number of robbery incidents;Number of stickups;Number of thefts;Robberies;The number of robberies that were committed;Total number of robberies;Total number of robbery cases;Total number of robbery offenses;how many people were robbed;how many robberies occurred;how many robberies were there;how many times were people robbed -Count_CriminalActivities_ViolentCrime,Count of Criminal Activities: Violent;Count of violent crimes;Number of Violent Crimes;Number of crimes counted as Violent;Number of violent acts;Number of violent charges;Number of violent crimes;Number of violent incidents;Number of violent offenses;Total number of violent cases;Total number of violent offenses;number of violent crimes;number of violent crimes committed;number of violent crimes per capita;number of violent offenses -Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,"Number of Hate Crimes Motivated by Disability Status;Number of criminal incidents motivated by bias against disability status, classified as hate crimes;Number of hate crimes motivated by disability status;The number of hate crimes motivated by disability status;number of hate crimes against people with disabilities;number of hate crimes based on disability status;number of hate crimes motivated by disability status;number of hate crimes targeting people with disabilities" -Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,"How many hate crimes are motivated by ethnicity?;Number of Hate Crimes Motivated by Ethnicity;Number of criminal incidents motivated by bias against ethnicity, classified as hate crimes;Number of hate crimes motivated by ethnicity;The number of hate crimes motivated by ancestry;The number of hate crimes motivated by ethnicity;The number of hate crimes motivated by national origin;number of hate crimes against people of a particular ethnicity;number of hate crimes motivated by ancestry;number of hate crimes motivated by ethnicity;number of hate crimes motivated by national origin" -Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,"Number of Hate Crimes Motivated by Gender;Number of criminal incidents motivated by bias against gender, classified as hate crimes;Number of gender-based hate crimes;Number of hate crimes motivated by gender;Number of hate crimes motivated by gender identity;Number of sex-based hate crimes;how many hate crimes are motivated by gender?;how many people have been targeted by hate crimes motivated by gender?;how many people have been the victims of hate crimes motivated by gender?;what is the number of hate crimes motivated by gender?" -Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,"Number of Hate Crimes Motivated by Race;Number of criminal incidents motivated by bias against race, classified as hate crimes;Number of hate crimes based on race;Number of hate crimes motivated by race;Number of racially motivated hate crimes;number of hate crimes based on race;number of hate crimes motivated by race;number of race-based hate crimes;number of race-motivated hate crimes" -Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,"Number of Hate Crimes Motivated by Religion;Number of crimes motivated by religious hatred;Number of criminal incidents motivated by bias against religion, classified as hate crimes;Number of hate crimes motivated by religion;Number of religious hate crimes;Number of religious-motivated hate crimes;number of crimes motivated by religious bias;number of crimes motivated by religious prejudice;number of hate crimes motivated by religion;number of religious hate crimes" -Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,"Number of Hate Crimes Motivated by Sexual Orientation;Number of criminal incidents motivated by bias against sexual orientation, classified as hate crimes;Number of hate crimes against LGBT people;Number of hate crimes against people of diverse sexual orientations;Number of hate crimes against people of non-heterosexual orientations;Number of hate crimes against people of sexual minorities;Number of hate crimes motivated by sexual orientation;number of hate crimes against lgbtq people;number of hate crimes against people based on their sexual identity;number of hate crimes against people based on their sexual orientation;number of hate crimes motivated by sexual orientation" -Count_CriminalIncidents_IsHateCrime,Count of Hate Crime Incidents;Hate crime data;Hate crime incidents;Hate crime reports;Hate crime statistics;Number of Hate Crime Incidents;Number of bias motivated incidents;Number of discriminatory crimes;Number of hate crime incidents;Number of hate crimes;Number of hate crimes reported;Number of prejudice motivated incidents;The total number of hate crimes;hate crime statistics;how many hate crimes are committed;how many people are victims of hate crimes;number of hate crimes committed -Count_CycloneEvent,Cyclone count;How many cyclones;How many cyclones are there?;How many cyclones occur each year?;Number of Cyclones;Number of cyclone events;Number of cyclones;how many cyclones are there?;how many cyclones have occurred?;what is the number of cyclones?;what is the total number of cyclones? -Count_CycloneEvent_ExtratropicalCyclone,Count of Cyclone Event: Extratropical Cyclone;Extratropical Cyclone Events;count of extratropical cyclones;number of extratropical cyclone events;number of extratropical cyclones;total number of extratropical cyclones -Count_CycloneEvent_SubtropicalStorm,Count of Cyclone Event: Subtropical Storm;Subtropical Storm Events;number of subtropical storms;subtropical storm count;subtropical storm frequency;subtropical storm occurrences -Count_CycloneEvent_TropicalDisturbance,Count of Cyclone Event: Tropical Disturbance;Tropical Disturbance Events;the count of tropical disturbances;the number of tropical disturbances;the tally of tropical disturbances;the total number of tropical disturbances -Count_CycloneEvent_TropicalStorm,Count of Cyclone Event: Tropical Storm;Tropical Storm Events;number of tropical cyclone events;number of tropical cyclones of tropical storm intensity;number of tropical storms -Count_Death,Count of Mortality Event;Number of Deaths;Number of deaths;Number of deaths in a population;Number of deaths in the population;Number of deceases;Number of fatalities in the population;Number of mortalities in the population;Number of people dead;Number of people who have died;how many people died;the number of fatalities;the number of people who have died;the total number of deaths -Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,"Death rate of infants;Death rate of infants under one year of age;Infant Mortality Rate;Infant death rate;Infant mortality rate;Infant mortality rate (number of deaths of infants under 1 year old as a percentage of live births);Rate of infant deaths;the likelihood of an infant dying before their first birthday;the number of infant deaths per 1,000 live births;the percentage of infants who die before their first birthday;the rate of deaths among infants under 1 year of age" -Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,"1 Female infant mortality rate;Death rate of female infants;Female Infant Mortality Rate;Female infant death rate;Female infant mortality rate;Infant mortality rate for female infants (number of deaths of female infants under 1 year old as a percentage of live births of female infants);female infant death rate;female infant mortality rate;number of female infant deaths per 1,000 live births;rate of female infant deaths" -Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,"Infant mortality rate for male infants (number of deaths of male infants under 1 year old as a percentage of live births of male infants);Male Infant Mortality Rate;Male infant mortality rate;The number of male infants who die per 1,000 live births;The percentage of male infants who die before their first birthday;The rate of death among male infants;male infant mortality rate;the number of male infants who die per 1,000 live births;the percentage of male infants who die before reaching one year of age;the rate of death among male infants" -Count_Death_15To24Years_MentalBehaviouralDisorders,"Count of Mortality Event: 15 - 24 Years, F01-F99 (Mental And Behavioural Disorders)" -Count_Death_15To24Years_Neoplasms,"Count of Mortality Event: 15 - 24 Years, C00-D48 (Neoplasms)" -Count_Death_1To4Years_Neoplasms,"Count of Mortality Event: 1 - 4 Years, C00-D48 (Neoplasms);Deaths Of Population Aged 1 to 4 Years Due to Neoplasms" -Count_Death_25To34Years_MentalBehaviouralDisorders,"Count of Mortality Event: 25 - 34 Years, F01-F99 (Mental And Behavioural Disorders);Deaths in Population Aged 25 to 34 Years Caused by Mental And Behavioural Disorders" -Count_Death_25To34Years_Neoplasms,"Count of Mortality Event: 25 - 34 Years, C00-D48 (Neoplasms);Deaths of Population Aged 25 to 34 Years Caused By Neoplasms" -Count_Death_35To44Years_MentalBehaviouralDisorders,"Count of Mortality Event: 35 - 44 Years, F01-F99 (Mental And Behavioural Disorders);Deaths of Population Aged 35 to 44 Years Caused By Mental And Behavioural Disorders" -Count_Death_35To44Years_Neoplasms,"Count of Mortality Event: 35 - 44 Years, C00-D48 (Neoplasms);Deaths Of Population Aged 35 to 44 Years Due to Neoplasms" -Count_Death_45To54Years_MentalBehaviouralDisorders,"Count of Mortality Event: 45 - 54 Years, F01-F99 (Mental And Behavioural Disorders);Deaths of Population Aged 45 to 54 Years From Mental And Behavioural Disorders" -Count_Death_45To54Years_Neoplasms,"Count of Mortality Event: 45 - 54 Years, C00-D48 (Neoplasms);Deaths Of Population Aged 45 to 54 Years Caused By Neoplasms" -Count_Death_55To64Years_MentalBehaviouralDisorders,"Count of Mortality Event: 55 - 64 Years, F01-F99 (Mental And Behavioural Disorders);Deaths Of People Aged 65 to 64 Years Caused by Mental and Behavioural Disorders" -Count_Death_55To64Years_Neoplasms,"Count of Mortality Event: 55 - 64 Years, C00-D48 (Neoplasms)" -Count_Death_5To14Years_Neoplasms,"Count of Mortality Event: 5 - 14 Years, C00-D48 (Neoplasms);Deaths of Population Aged 5 to 14 Years Caused By Neoplasm" -Count_Death_65To74Years_MentalBehaviouralDisorders,"Count of Mortality Event: 65 - 74 Years, F01-F99 (Mental And Behavioural Disorders);Death Of Population Aged 65 to 74 Years Caused By The Mental And Behavioural Disorders" -Count_Death_65To74Years_Neoplasms,"Count of Mortality Event: 65 - 74 Years, C00-D48 (Neoplasms);Deaths Aged 65 to 74 Years Caused By Neoplasms" -Count_Death_75To84Years_MentalBehaviouralDisorders,"Count of Mortality Event: 75 - 84 Years, F01-F99 (Mental And Behavioural Disorders);Deaths of Population Aged 75 to 84 Caused by Mental and Behavioural Disorders" -Count_Death_75To84Years_Neoplasms,"Count of Mortality Event: 75 - 84 Years, C00-D48 (Neoplasms);Deaths Aged 75 to 84 Years Caused by Neoplasms" -Count_Death_85Years_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,"Count of Mortality Event: Years 85, D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female;Female Deaths Aged 85 Years Caused By Diseases Of The Blood And Blood-Forming Organs And Certain Disorders Involving The Immune Mechanism;deaths of women aged 85 due to blood and blood-forming organ diseases and certain immune system disorders;deaths of women aged 85 years caused by blood and blood-forming organ diseases and certain immune system disorders;female deaths at age 85 from blood and blood-forming organ diseases and certain immune system disorders;women aged 85 who died from blood and blood-forming organ diseases and certain immune system disorders" -Count_Death_85Years_DiseasesOfTheNervousSystem_AsianOrPacificIslander,"Count of Mortality Event: Years 85, G00-G98 (Diseases of The Nervous System), Asian or Pacific Islander;Deaths Of Asian or Pacific Islander Population Aged 85 Years Caused By The Nervous System Diseases;the number of deaths caused by nervous system diseases in the asian or pacific islander population aged 85 years;the number of deaths from nervous system diseases in the asian or pacific islander population aged 85 years;the number of deaths in the asian or pacific islander population aged 85 years caused by nervous system diseases;the number of deaths in the asian or pacific islander population aged 85 years from nervous system diseases" -Count_Death_85Years_DiseasesOfTheSkinSubcutaneousTissue,"Count of Mortality Event: Years 85, L00-L98 (Diseases of The Skin And Subcutaneous Tissue);Deaths Aged 85 Years Caused Skin And Subcutaneous Tissue Diseases;people aged 85 and over are more likely to die from skin diseases than any other cause;skin and subcutaneous tissue diseases are the most common cause of death in people aged 85 and over;skin diseases are a leading cause of death in people aged 85 and over;skin diseases are a major cause of death in people aged 85 and over" -Count_Death_85Years_MentalBehaviouralDisorders,"Count of Mortality Event: Years 85, F01-F99 (Mental And Behavioural Disorders);Deaths in Population Aged 85 Years Caused by Mental and Behavioural Disorders" -Count_Death_85Years_MentalBehaviouralDisorders_AsianOrPacificIslander,"Count of Mortality Event: Years 85, F01-F99 (Mental And Behavioural Disorders), Asian or Pacific Islander;Deaths in Asian or Pacific Islander Population Aged 85 Years Caused by Mental And Behavioural Disorders;number of deaths in the asian or pacific islander population aged 85 years caused by mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years due to mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years from mental and behavioral disorders;number of deaths in the asian or pacific islander population aged 85 years related to mental and behavioral disorders" -Count_Death_85Years_Neoplasms,"Count of Mortality Event: Years 85, C00-D48 (Neoplasms);Deaths For Population Aged 85 Years Old Caused by Neoplasms" -Count_Death_AbnormalNotClassfied,"Abnormal Deaths;Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified);count of deaths due to symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths caused by symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths due to symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified;number of deaths from symptoms, signs, and abnormal clinical and laboratory findings not elsewhere classified" -Count_Death_AbnormalNotClassfied_BlackOrAfricanAmerican,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Black or African American;Deaths of African American Population Caused by Symptoms, Signs, Abnormal Clinical and Laboratory Findings;underlying conditions that lead to death in african americans" -Count_Death_AbnormalNotClassfied_Female,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Female;Deaths Of Female Population Caused by Unclassified Symptoms, Signs, And Abnormal Clinical And Laboratory Findings;female deaths caused by unclassified symptoms, signs, and abnormal clinical and laboratory findings;female deaths due to unclassified symptoms, signs, and abnormal clinical and laboratory findings;female deaths from unclassified conditions;female deaths from unclassified symptoms, signs, and abnormal clinical and laboratory findings" -Count_Death_AbnormalNotClassfied_Male,"Abnormal Deaths of Male Population;Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), Male;number of deaths due to symptoms, signs, and abnormal clinical and laboratory findings, not elsewhere classified, male;number of deaths from r00-r99 in males;number of deaths from r00-r99, male;number of deaths from symptoms, signs, and abnormal clinical and laboratory findings, not elsewhere classified, male" -Count_Death_AbnormalNotClassfied_White,"Count of Mortality Event: R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified), White;Deaths of White Population Caused by Unclassified Symptoms, Signs, Abnormal Clinical and Laboratory Findings;white people dying from unclassified symptoms, signs, abnormal clinical and laboratory findings;white people dying from undiagnosed causes;white people who died from unclassified symptoms, signs, abnormal clinical and laboratory findings;white people who died from undetermined causes" -Count_Death_AgeAdjusted_AsAFractionOf_Count_Person,"Count of Mortality Event (Age Adjusted) (Per Capita);Deaths of Adjusted Age;count of deaths (age adjusted) (per capita);number of deaths per capita, adjusted for age;number of deaths per capita, age-adjusted;number of deaths per person, adjusted for age" -Count_Death_AmericanIndianAndAlaskaNativeAlone,American Indian And Alaska Native Population Deaths;Count of Mortality Event: American Indian And Alaska Native Alone;number of deaths among american indian and alaska native alone;number of deaths for american indian and alaska native alone;number of deaths in american indian and alaska native alone;number of deaths: american indian and alaska native alone -Count_Death_AsAFractionOfCount_Person,"Count of Mortality Event (Per Capita);Death rate;Mortality rate;Number of Deaths Per Capita;Number of deaths per 100,000 people;Number of deaths per person in a population;Number of deaths per person in the population;Number of fatalities per capita;The number of deaths per 100,000 people in a given population;crude death rate;death rate;deaths per 1,000 people;mortality rate;proportion of deaths in a population" -Count_Death_AsianOrPacificIslander,Asian Or Pacific Islander Population Deaths;Count of Mortality Event: Asian or Pacific Islander;number of asian or pacific islander deaths;number of asian or pacific islander people who died;number of deaths of asian or pacific islander people;number of deaths: asian or pacific islander -Count_Death_BlackOrAfricanAmerican,African American Population Deaths;Count of Mortality Event: Black or African American;number of black or african american deaths;number of deaths among black or african americans;number of deaths: black or african american;number of people who died who were black or african american -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod,Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period);Deaths Caused by Certain Conditions Originating In Perinatal Period;mortality events in the perinatal period -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Black or African American;Deaths of African Americans Caused by Certain Conditions Originating in The Perinatal Period;deaths of african american babies and mothers during pregnancy and childbirth;deaths of african americans during pregnancy and childbirth;perinatal deaths among african americans;perinatal deaths in african americans" -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Female,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Female;Deaths of Female Population Due to Certain Conditions Originating in The Perinatal Period;deaths of women due to pregnancy-related complications;deaths of women during pregnancy and childbirth;female deaths during childbirth;perinatal female mortality" -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_Male,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), Male;Deaths Of Male Population Caused By Certain Perinatal Conditions;deaths of males due to perinatal conditions;male deaths caused by perinatal conditions;perinatal deaths among males;perinatal deaths in males" -Count_Death_CertainConditionsOriginatingInThePerinatalPeriod_White,"Count of Mortality Event: P00-P96 (Certain Conditions Originating in The Perinatal Period), White;White Population Deaths Caused By Certain Conditions Originating in The Perinatal Period;deaths in the white population caused by perinatal conditions;perinatal deaths in the white population;white deaths caused by perinatal conditions;white perinatal mortality" -Count_Death_CertainInfectiousParasiticDiseases,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases);Deaths Caused by Certain Infectious Parasitic Diseases;number of deaths associated with infectious and parasitic diseases;number of deaths from certain infectious and parasitic diseases a00-b99;number of deaths from certain infectious and parasitic diseases, a00-b99;the number of deaths from certain infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_AsianOrPacificIslander,"Asian Or Pacific Islander Deaths Due To Certain Infectious And Parasitic Diseases;Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Asian or Pacific Islander;number of asian or pacific islanders who died from certain infectious and parasitic diseases;number of deaths among asian or pacific islanders due to certain infectious and parasitic diseases;number of deaths in the asian or pacific islander population due to certain infectious and parasitic diseases;number of people in the asian or pacific islander population who died from certain infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_BlackOrAfricanAmerican,"African American Deaths CAused By Certain Infectious And Parasitic Diseases;Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Black or African American;deaths of african americans caused by certain infectious and parasitic diseases;deaths of african americans due to certain infectious and parasitic diseases;deaths of african americans from certain infectious and parasitic diseases;deaths of african americans resulting from certain infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_Female,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Female;Deaths Of Female Population Caused By Certain Infectious And Parasitic Diseases;deaths of women from infectious and parasitic diseases;female deaths caused by infectious and parasitic diseases;female mortality due to infectious and parasitic diseases;women dying from infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_Male,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), Male;Male Population Deaths From Certain Infectious And Parasitic Diseases;male deaths caused by infectious and parasitic diseases;male deaths due to infectious and parasitic diseases;male deaths from infectious and parasitic diseases;male mortality from infectious and parasitic diseases" -Count_Death_CertainInfectiousParasiticDiseases_White,"Count of Mortality Event: A00-B99 (Certain Infectious And Parasitic Diseases), White;Death of White Population Caused by Certain Infectious And Parasitic Diseases;white people dying from infectious and parasitic diseases;whites dying from infectious and parasitic diseases;whites dying from infectious diseases;whites dying from parasitic diseases" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities);Deaths Caused by Congenital Malformations Deformations Chromosomal Abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Black or African American;Deaths of African American Population Caused by Congenital Malformations, Deformations and Chromosomal Abnormalities;the death rate of african americans from congenital malformations, deformations, and chromosomal abnormalities;the number of african americans who died from congenital malformations, deformations, and chromosomal abnormalities;the number of deaths in the african american population caused by congenital malformations, deformations, and chromosomal abnormalities;the percentage of african americans who died from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female;Deaths of Female Population Caused by Congenital Malformations Deformations And Chromosomal Abnormalities;deaths of female populations caused by chromosomal disorders;deaths of females due to congenital malformations;deaths of females due to congenital malformations, deformations, and chromosomal abnormalities;deaths of women caused by congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female, White;White Female Deaths Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities;white women who died from birth defects;white women who died from birth defects and genetic disorders;white women who died from chromosomal abnormalities;white women who died from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male;Deaths of Male Population Caused By Congenital Malformations, Deformations And Chromosomal Abnormalities;deaths of males caused by congenital malformations, deformations, and chromosomal abnormalities;deaths of males due to birth defects, deformities, and chromosomal abnormalities;deaths of males from congenital malformations, deformations, and chromosomal abnormalities;deaths of men caused by birth defects, deformities, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male, White;Deaths of White Male Population Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities;number of deaths of white males caused by congenital malformations, deformations, and chromosomal abnormalities;the number of white males who died from chromosomal abnormalities;the number of white males who died from congenital anomalies;the number of white males who died from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"Count of Mortality Event: Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), White;Deaths of White Population Caused By Congenital Malformations Deformations And Chromosomal Abnormalities;deaths caused by congenital malformations, deformations, and chromosomal abnormalities in the white population;the number of white people who died due to congenital malformations, deformations, and chromosomal abnormalities;white people who died from congenital malformations, deformations, and chromosomal abnormalities;whites dying from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders,Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism);Deaths Caused by Diseases Of Blood And Blood Forming Organs And Immune Disorders;mortality rate from blood and blood-forming organ diseases and certain immune system disorders;what is the mortality rate for diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism? -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_BlackOrAfricanAmerican,"African Americans Deaths Caused by Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism;Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Black or African American;the number of african americans who died from blood diseases and immune system disorders;the number of african americans who died from blood diseases and immune system disorders in the united states;the number of deaths caused by blood diseases and immune system disorders among african americans;the number of deaths caused by blood diseases and immune system disorders in african americans" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female;Deaths in Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism;Deaths of Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism;how many female deaths in the us were caused by blood and blood-forming organ diseases and certain immune system disorders;how many females in the us died from blood and blood-forming organ diseases and certain immune system disorders;how many females in the us died of blood and blood-forming organ diseases and certain immune system disorders;what was the death toll of females in the us from blood and blood-forming organ diseases and certain immune system disorders" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female_BlackOrAfricanAmerican,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Female, Black or African American;Deaths Of African American Female Population Caused By Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism;how many african american women died from blood and blood-forming organ diseases and certain immune system disorders;the death toll of african american women from blood and blood-forming organ diseases and certain immune system disorders;the number of african american women who died from blood and blood-forming organ diseases and certain immune system disorders;the number of african american women who lost their lives to blood and blood-forming organ diseases and certain immune system disorders" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Male;Deaths of Male Population Caused by Diseases of the Blood and Blood-forming Organs and Certain Disorders Involving the Immune Mechanism;death rate of males due to blood diseases and immune disorders;male deaths caused by blood and immune disorders;male mortality from blood and immune disorders;number of male deaths from blood and immune disorders" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male_White,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), Male, White;White Male Deaths Caused by Diseases of the Blood, Blood-Forming Organs, and Certain Disorders Involving The Immune Mechanism;white males dying from blood diseases, blood-forming organ diseases, and certain immune system disorders;white males dying from blood-forming organ diseases;white males dying from blood-related diseases;white males dying from immune system disorders" -Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_White,"Count of Mortality Event: D50-D89 (Diseases of The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism), White;Deaths Of White Population Caused By The Blood And Blood-forming Organs And Certain Disorders Involving The Immune Mechanism Diseases;causes of death in the white population due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;deaths in the white population due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;deaths of white people due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism;white population deaths due to blood and blood-forming organ diseases and certain disorders involving the immune mechanism" -Count_Death_DiseasesOfTheCirculatorySystem,Circulatory system diseases death toll;Number of Deaths Due to Diseases of the Circulatory System;Number of deaths caused by circulatory system diseases;Number of deaths caused by diseases of the circulatory system;Number of deaths due to diseases of the circulatory system;how many people die each year from circulatory system diseases?;how many people die from circulatory system diseases?;what is the death rate from circulatory system diseases?;what is the number of deaths caused by circulatory system diseases? -Count_Death_DiseasesOfTheCirculatorySystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), American Indian And Alaska Native Alone;Deaths Of American Indian And Alaska Native Population Due To The Circulatory System Diseases;american indian and alaska native deaths due to circulatory system diseases;circulatory system diseases as a cause of death in american indians and alaska natives;deaths of american indians and alaska natives from circulatory system diseases;the number of deaths in american indians and alaska natives caused by circulatory system diseases" -Count_Death_DiseasesOfTheCirculatorySystem_AsianOrPacificIslander,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Asian or Pacific Islander;Deaths of Asian or Pacific Islanders From Circulatory System Diseases;the number of asian or pacific islanders who died from circulatory system diseases;the number of asian or pacific islanders who died of circulatory system diseases;the number of deaths from circulatory system diseases among asian or pacific islanders;the number of deaths of asian or pacific islanders caused by circulatory system diseases" -Count_Death_DiseasesOfTheCirculatorySystem_BlackOrAfricanAmerican,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Black or African American;Deaths of African Americans Caused by Circulatory System Diseases;african americans are disproportionately affected by circulatory system diseases;african americans are more likely to die from circulatory system diseases than other racial groups;african americans have a higher death rate from circulatory system diseases than other racial groups;circulatory system diseases are a leading cause of death among african americans" -Count_Death_DiseasesOfTheCirculatorySystem_Female,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Female;Female Deaths Caused by Circulatory System Diseases;the number of women who die from circulatory system diseases;women who die from cardiovascular disease;women who die from circulatory system diseases;women who die from heart disease, stroke, and other circulatory system diseases" -Count_Death_DiseasesOfTheCirculatorySystem_Male,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), Male;Male Deaths Caused By Circulatory System Diseases;circulatory system diseases as a cause of death in males;deaths in males caused by circulatory system diseases;the number of males who died from circulatory system diseases;the percentage of male deaths caused by circulatory system diseases" -Count_Death_DiseasesOfTheCirculatorySystem_White,"Count of Mortality Event: I00-I99 (Diseases of The Circulatory System), White;Deaths of White Population Caused By Circulatory Diseases;white people who died from blood vessel disease;white people who died from cardiovascular disease;white people who died from circulatory diseases;white people who died from heart disease and stroke" -Count_Death_DiseasesOfTheDigestiveSystem,Count of Mortality Event: K00-K92 (Diseases of The Digestive System);Deaths Caused by Digestive System Diseases;number of deaths from digestive diseases;number of deaths from diseases of the gastrointestinal tract;number of deaths from gastrointestinal diseases -Count_Death_DiseasesOfTheDigestiveSystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), American Indian And Alaska Native Alone;Deaths of American Indian and Alaska Native Population Caused by Digestive Diseases;the number of american indian and alaska native people who died from digestive diseases;the number of american indian and alaska native people who died from digestive-related causes;the number of deaths among american indian and alaska native people caused by digestive diseases;the number of deaths among american indian and alaska native people caused by digestive-related causes" -Count_Death_DiseasesOfTheDigestiveSystem_AsianOrPacificIslander,"Asian or Pacific Islander Deaths Caused By Digestive System Diseases;Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Asian or Pacific Islander;how many asian or pacific islanders died from digestive system diseases;how many asian or pacific islanders died from digestive system diseases each year;what is the death rate from digestive system diseases among asian or pacific islanders;what is the number of asian or pacific islanders who died from digestive system diseases" -Count_Death_DiseasesOfTheDigestiveSystem_BlackOrAfricanAmerican,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Black or African American;Deaths Caused by Digestive System Diseases in African American" -Count_Death_DiseasesOfTheDigestiveSystem_Female,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Female;Female Deaths Caused By Diseases Of The Digestive System;digestive system diseases as a cause of death in women;female mortality rates due to digestive system diseases;females dying from digestive system diseases;the number of females who die from digestive system diseases" -Count_Death_DiseasesOfTheDigestiveSystem_Male,"Count of Mortality Event: K00-K92 (Diseases of The Digestive System), Male;Male Deaths Caused By Digestive System Diseases;deaths in men caused by digestive system diseases;digestive system diseases as a cause of death in men;male mortality rate from digestive system diseases;number of men who died from digestive system diseases" -Count_Death_DiseasesOfTheDigestiveSystem_White,"1 white people who died from digestive system diseases;2 white people who died because of digestive system diseases;3 white people who died due to digestive system diseases;4 white people who died from digestive system illnesses;Count of Mortality Event: K00-K92 (Diseases of The Digestive System), White;Deaths Of White People Caused By Digestive System Diseases" -Count_Death_DiseasesOfTheGenitourinarySystem,Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System);Deaths Caused by Genitourinary System Diseases;number of deaths from genitourinary diseases -Count_Death_DiseasesOfTheGenitourinarySystem_AsianOrPacificIslander,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Asian or Pacific Islander;Deaths Of Asians Or Pacific Islanders Caused By Diseases of The Genitourinary System;deaths of asians or pacific islanders caused by diseases of the genitourinary system;number of asians or pacific islanders who died from diseases of the genitourinary system;number of asians or pacific islanders who died from genitourinary diseases;number of deaths of asians or pacific islanders caused by diseases of the genitourinary system" -Count_Death_DiseasesOfTheGenitourinarySystem_BlackOrAfricanAmerican,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Black or African American;Deaths Of African American Population Caused by Genitourinary Diseases;african americans dying from genitourinary diseases;genitourinary diseases claiming the lives of african americans;genitourinary diseases killing african americans;genitourinary diseases taking the lives of african americans" -Count_Death_DiseasesOfTheGenitourinarySystem_Female,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Female;Deaths of Female Population Caused by Diseases of the Genitourinary System;deaths of females from genitourinary diseases;female deaths caused by genitourinary diseases;genitourinary diseases that cause female deaths;genitourinary diseases that kill females" -Count_Death_DiseasesOfTheGenitourinarySystem_Male,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), Male;Deaths of Male Population Caused by Genitourinary System Diseases;deaths from genitourinary system diseases in males;genitourinary system diseases that are fatal to males;genitourinary system diseases that cause death in males;genitourinary system diseases that lead to death in males" -Count_Death_DiseasesOfTheGenitourinarySystem_White,"Count of Mortality Event: N00-N98 (Diseases of The Genitourinary System), White;White Population Deaths Event Caused by Diseases of The Genitourinary System;genitourinary diseases as a cause of death in the white population;number of deaths of white people caused by genitourinary diseases;white population death rate due to genitourinary diseases;white population mortality from genitourinary diseases" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue);Deaths Caused by Musculoskeletal System Connective Tissue Diseases;number of deaths due to diseases of the musculoskeletal system and connective tissue;number of deaths from diseases of the bones, muscles, and joints;number of deaths from diseases of the connective tissue;number of deaths from diseases of the skeletal system" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_BlackOrAfricanAmerican,"African American Deaths Caused By Musculoskeletal System And Connective Tissue Diseases;Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Black or African American;african americans who died from diseases of the musculoskeletal system and connective tissue;african americans who died from musculoskeletal system and connective tissue diseases;african americans who died from musculoskeletal system and connective tissue disorders;deaths of african americans caused by musculoskeletal system and connective tissue diseases" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Female;Female Deaths Caused By Diseases of The Musculoskeletal System And Connective Tissue;deaths of women caused by diseases of the musculoskeletal system and connective tissue;female deaths from diseases of the musculoskeletal system and connective tissue;women who died from diseases of the musculoskeletal system and connective tissue;women who died of diseases of the musculoskeletal system and connective tissue" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female_BlackOrAfricanAmerican,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Female, Black or African American;Deaths of African American Female Population Caused by Diseases of The Musculoskeletal System and Connective Tissue;death rate of african american females from diseases of the musculoskeletal system and connective tissue;number of african american females who died from diseases of the musculoskeletal system and connective tissue;number of deaths in the african american female population caused by diseases of the musculoskeletal system and connective tissue;percentage of african american females who died from diseases of the musculoskeletal system and connective tissue" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Male;Deaths Of Males Caused By Diseases of The Musculoskeletal System And Connective Tissue;deaths caused by musculoskeletal and connective tissue diseases in males;deaths in males due to musculoskeletal and connective tissue diseases;deaths of males from musculoskeletal and connective tissue diseases;male deaths caused by musculoskeletal and connective tissue diseases" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male_White,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), Male, White;White Death Male Event Caused by Diseases of The Musculoskeletal System And Connective Tissue;a man died from diseases of the bones, muscles, and connective tissues;a man passed away from diseases of the bones, muscles, and connective tissues;a man succumbed to diseases of the bones, muscles, and connective tissues;a man's death caused by diseases of the bones, muscles, and connective tissues" -Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_White,"Count of Mortality Event: M00-M99 (Diseases of The Musculoskeletal System And Connective Tissue), White;Deaths Of White Population Caused By Diseases of The Musculoskeletal System And Connective Tissue;deaths of white people caused by musculoskeletal and connective tissue diseases;white people who died from diseases of the musculoskeletal system and connective tissue;white people who died from musculoskeletal and connective tissue diseases;white people who died from musculoskeletal diseases and connective tissue diseases" -Count_Death_DiseasesOfTheNervousSystem,How many people died from diseases of the nervous system?;Number of Deaths Due to Diseases of the Nervous System;Number of deaths caused by diseases of the nervous system;Number of deaths due to diseases of the nervous system;Number of deaths due to neurological disorders;Number of deaths from neurological diseases;Number of deaths resulting from neurological illnesses;number of deaths attributed to nervous system diseases;number of deaths caused by nervous system diseases;number of deaths from nervous system diseases;number of deaths resulting from nervous system diseases -Count_Death_DiseasesOfTheNervousSystem_AsianOrPacificIslander,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Asian or Pacific Islander;Deaths of Asian or Pacific Islanders Caused By Diseases of The Nervous System;the number of asian or pacific islanders who died from diseases of the brain and spinal cord;the number of asian or pacific islanders who died from diseases of the nervous system;the number of asian or pacific islanders who died from neurological disorders;the number of deaths of asian or pacific islanders caused by diseases of the nervous system" -Count_Death_DiseasesOfTheNervousSystem_BlackOrAfricanAmerican,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Black or African American;Death of African Americans Caused By Diseases of The Nervous System;african americans are disproportionately affected by diseases of the nervous system;african americans are more likely to die from diseases of the nervous system;african americans have a higher risk of death from diseases of the nervous system;diseases of the nervous system are a leading cause of death for african americans" -Count_Death_DiseasesOfTheNervousSystem_Female,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Female;Female Deaths Caused by Nervous System Diseases;deaths of women due to nervous system diseases;female deaths caused by neurological disorders;female mortality from neurological disorders;women who die from nervous system diseases" -Count_Death_DiseasesOfTheNervousSystem_Male,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), Male;Death of Male Population Caused by Diseases of The Nervous System;male deaths from nervous system diseases;males dying from nervous system diseases;nervous system diseases as a cause of death in males;the number of male deaths caused by nervous system diseases" -Count_Death_DiseasesOfTheNervousSystem_White,"Count of Mortality Event: G00-G98 (Diseases of The Nervous System), White;Deaths Due To Nervous System Diseases, White" -Count_Death_DiseasesOfTheRespiratorySystem,How many people died from respiratory diseases?;Number of Deaths Due to Diseases of the Respiratory System;Number of deaths caused by respiratory diseases;Number of deaths due to diseases of the respiratory system;Respiratory system diseases death toll;number of deaths attributed to respiratory diseases;number of deaths caused by respiratory diseases;number of deaths from respiratory diseases;number of deaths related to respiratory diseases -Count_Death_DiseasesOfTheRespiratorySystem_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), American Indian And Alaska Native Alone;Deaths of American Indian And Alaska Native Population Caused By Respiratory Diseases;american indian and alaska native deaths caused by respiratory diseases;respiratory disease deaths among american indians and alaska natives;the number of american indians and alaska natives who died from respiratory diseases;the rate of respiratory disease deaths among american indians and alaska natives" -Count_Death_DiseasesOfTheRespiratorySystem_AsianOrPacificIslander,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Asian or Pacific Islander;Deaths Of Asian or Pacific Islander Population Caused By Respiratory Diseases;asian or pacific islander deaths from respiratory diseases;deaths of asian or pacific islanders from respiratory diseases;number of deaths of asian or pacific islanders from respiratory diseases;respiratory disease deaths of asian or pacific islanders" -Count_Death_DiseasesOfTheRespiratorySystem_BlackOrAfricanAmerican,"African American Deaths Caused By Diseases Of The Respiratory System;Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Black or African American;african americans are at higher risk for respiratory diseases;african americans are disproportionately affected by respiratory diseases;african americans are more likely to die from respiratory diseases;respiratory diseases are a leading cause of death among african americans" -Count_Death_DiseasesOfTheRespiratorySystem_Female,"1 female deaths caused by respiratory system diseases;2 deaths of women caused by respiratory system diseases;3 female mortality due to respiratory system diseases;4 women dying from respiratory system diseases;Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Female;Deaths of Female Population Caused By Respiratory System Diseases" -Count_Death_DiseasesOfTheRespiratorySystem_Male,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), Male;Males Deaths Due to Disease of The Respiratory System;deaths from respiratory diseases in males;male respiratory disease deaths;respiratory disease deaths in males;respiratory disease-related deaths in males" -Count_Death_DiseasesOfTheRespiratorySystem_White,"Count of Mortality Event: J00-J98 (Diseases of The Respiratory System), White;Deaths Of White People Caused By Diseases of The Respiratory System;the number of white people who died from diseases of the respiratory system;the number of white people who died from respiratory diseases;the number of white people who died from respiratory system diseases;the number of white people who died from respiratory system illnesses" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue);Deaths Caused by Skin Subcutaneous Tissue Diseases;number of deaths from diseases of the skin and subcutaneous tissue, l00-l98" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Female;Deaths of Female Population Caused by Diseases of The Skin And Subcutaneous Tissue;female deaths as a result of skin and subcutaneous tissue diseases;female deaths caused by skin and subcutaneous tissue diseases;female deaths due to skin and subcutaneous tissue diseases;female deaths from skin and subcutaneous tissue diseases" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female_White,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Female, White;Deaths of White Female Population Due to Diseases of The Skin And Subcutaneous Tissue;white female deaths due to skin and subcutaneous tissue diseases;white female deaths from skin diseases;white female deaths from subcutaneous tissue diseases;white female mortality from skin and subcutaneous tissue diseases" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Male,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), Male;Deaths in Male Population Caused by Diseases of the Skin and Subcutaneous Tissue;deaths in males because of skin and subcutaneous tissue diseases;deaths in males due to skin and subcutaneous tissue diseases;male deaths caused by skin and subcutaneous tissue diseases;male deaths from skin and subcutaneous tissue diseases" -Count_Death_DiseasesOfTheSkinSubcutaneousTissue_White,"Count of Mortality Event: L00-L98 (Diseases of The Skin And Subcutaneous Tissue), White;Deaths Of White People Caused By Diseases of The Skin And Subcutaneous Tissue;deaths of white people due to skin and subcutaneous tissue diseases;number of white people who died from skin and subcutaneous tissue diseases;white people who died from diseases of the skin and subcutaneous tissue;white people who died from skin and subcutaneous tissue diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases);Deaths Caused by Endocrine Nutritional Metabolic Diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), American Indian And Alaska Native Alone;Deaths of American Indian And Alaska Natives Caused by Endocrine Nutritional And Metabolic Diseases;american indian and alaska native deaths caused by endocrine, nutritional, and metabolic diseases;american indian and alaska native mortality from endocrine, nutritional, and metabolic diseases;deaths of american indians and alaska natives due to endocrine, nutritional, and metabolic diseases;deaths of american indians and alaska natives from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_AsianOrPacificIslander,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Asian or Pacific Islander;Deaths of Asian or Pacific Islander Population Caused By Endocrine, Nutritional And Metabolic Diseases;asian or pacific islander deaths caused by endocrine, nutritional, and metabolic diseases;deaths of asian or pacific islanders due to endocrine, nutritional, and metabolic diseases;number of asian or pacific islanders who died from endocrine, nutritional, and metabolic diseases;number of deaths of asian or pacific islanders caused by endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_BlackOrAfricanAmerican,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Black or African American;Deaths Of African American Population Caused by Endocrine Nutritional And Metabolic Diseases;african americans are more likely to die from endocrine, nutritional, and metabolic diseases;african americans die from endocrine, nutritional, and metabolic diseases;deaths of african americans caused by endocrine, nutritional, and metabolic diseases;endocrine, nutritional, and metabolic diseases kill african americans" -Count_Death_EndocrineNutritionalMetabolicDiseases_Female,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Female;Deaths of Female Population Caused by Endocrine, Nutritional And Metabolic Diseases;deaths of females due to endocrine, nutritional, and metabolic diseases;deaths of women caused by endocrine, nutritional, and metabolic diseases;female deaths caused by endocrine, nutritional, and metabolic diseases;women dying of endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_Male,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), Male;Deaths of Male Population Caused by Endocrine Nutritional And Metabolic Diseases;deaths in the male population from endocrine, nutritional, and metabolic diseases;deaths of men due to endocrine, nutritional, and metabolic diseases;male deaths caused by endocrine, nutritional, and metabolic diseases;male mortality from endocrine, nutritional, and metabolic diseases" -Count_Death_EndocrineNutritionalMetabolicDiseases_White,"Count of Mortality Event: E00-E88 (Endocrine, Nutritional And Metabolic Diseases), White;Death of White Population Caused By Endocrine, Nutritional And Metabolic Diseases;the death rate of the white population is caused by endocrine, nutritional, and metabolic diseases;the white population is dying from endocrine, nutritional, and metabolic diseases;the white population is experiencing a high mortality rate due to endocrine, nutritional, and metabolic diseases;the white population is suffering from a high number of deaths caused by endocrine, nutritional, and metabolic diseases" -Count_Death_ExternalCauses,"Number of Deaths Due to External Causes;Number of deaths caused by external factors;Number of deaths due to accidents, violence, and other external causes;Number of deaths due to external causes;Number of deaths due to non-disease-related causes;Number of deaths due to non-natural causes;Number of deaths from external causes;number of deaths caused by external events;number of deaths caused by external factors;number of deaths caused by non-disease factors;number of deaths caused by non-natural causes" -Count_Death_ExternalCauses_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), American Indian And Alaska Native Alone;Deaths of American Indian And Alaska Native Population Caused by External Causes of Morbidity And Mortality;american indian and alaska native deaths caused by external causes of morbidity and mortality;american indian and alaska native people who died from external causes of morbidity and mortality;deaths of american indian and alaska native people due to external causes of morbidity and mortality;deaths of american indian and alaska native people from external causes of morbidity and mortality" -Count_Death_ExternalCauses_AsianOrPacificIslander,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Asian or Pacific Islander;Deaths of Asian or Pacific Islanders Due to External Causes of Morbidity And Mortality;mortality rate of asian or pacific islanders due to external causes;number of asian or pacific islander deaths from accidents, suicides, and homicides;number of asian or pacific islander deaths from external causes;number of asian or pacific islander deaths from preventable causes" -Count_Death_ExternalCauses_BlackOrAfricanAmerican,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Black or African American;Deaths of African American Population Caused By External Causes of Morbidity And Mortality;african americans' deaths caused by external causes of morbidity and mortality;african americans' deaths caused by external factors;african americans' deaths from external causes;african americans' deaths from external factors" -Count_Death_ExternalCauses_Female,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Female;Female Deaths Caused by External Causes of Morbidity And Mortality;deaths of women caused by external factors;deaths of women from accidents, violence, and other external causes;deaths of women from causes outside the body;female deaths from external causes" -Count_Death_ExternalCauses_Male,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Male;Male Population Deaths Caused by External Causes of Morbidity And Mortality;deaths in males caused by external factors;male deaths caused by external causes;male deaths from external factors;male mortality from external causes" -Count_Death_ExternalCauses_Male_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), Male, American Indian And Alaska Native Alone;Deaths of American Indian And Alaska Native Male Population Due to External Causes of Morbidity And Mortality;the number of american indian and alaska native men who died due to external causes of morbidity and mortality;the number of american indian and alaska native men who died from accidents, suicides, homicides, and other external causes;the number of american indian and alaska native men who died from causes outside of their bodies;the number of american indian and alaska native men who died from causes that were not diseases" -Count_Death_ExternalCauses_White,"Count of Mortality Event: V01-Y89 (External Causes of Morbidity And Mortality), White;Deaths Of White Population Caused By External Causes of Morbidity And Mortality;mortality rates among the white population due to external causes;number of white deaths caused by external causes;number of white people who died from external causes;white population mortality rates from external causes" -Count_Death_Female,Count of Mortality Event: Female;Female Population Deaths;number of deaths: female;number of female casualties;number of female deaths;number of female mortality events -Count_Death_Female_AgeAdjusted_AsAFractionOf_Count_Person_Female,"Count of Mortality Event (Age Adjusted): Female (As Fraction of Count Person Female);Female Population Deaths With Adjusted Age;the female mortality rate, age-adjusted" -Count_Death_Female_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: Female, American Indian And Alaska Native Alone;Deaths Of American Indian And Alaska Native Female Population;the mortality rate of american indian and alaska native women;the number of american indian and alaska native women who have died;the number of american indian and alaska native women who have passed away;the number of deaths of american indian and alaska native women" -Count_Death_Female_AsAFractionOf_Count_Person_Female,Count of Mortality Event: Female (As Fraction of Count Person Female);Female Deaths;female mortality as a fraction of the female population;female mortality as a percentage of the female population;female mortality as a proportion of the female population;fraction of female deaths -Count_Death_Female_AsianOrPacificIslander,"Count of Mortality Event: Female, Asian or Pacific Islander;Deaths Of Asian Or Pacific Islander Female Population;number of asian or pacific islander female deaths;number of asian or pacific islander female fatalities;number of asian or pacific islander women who have died;number of deaths among asian or pacific islander women" -Count_Death_Female_BlackOrAfricanAmerican,"Count of Mortality Event: Female, Black or African American;Deaths of African American Female Population" -Count_Death_Female_White,"Count of Mortality Event: Female, White;Death For White Female Population;death rate for white females;white female death count;white female death toll;white female mortality rate" -Count_Death_Infant,Number of infant deaths;Total number of infant deaths;deaths of infants;infant death count -Count_Death_IntentionalSelfHarm_AsFractionOf_Count_Person,"Count of Mortality Event: X60-X84 (Intentional Self-harm) (Per Capita);Deaths Caused by Intentional Self Harm;number of deaths by intentional self-harm per capita;number of deaths from intentional self-harm per capita;number of people who died from intentional self-harm per 100,000 people;number of people who died from self-inflicted injuries per 100,000 people" -Count_Death_IntentionalSelfHarm_Female_AsFractionOf_Count_Person_Female,"Count of Mortality Event: X60-X84 (Intentional Self-harm), Female (As Fraction of Count Person Female);Deaths of Female Population Caused by Intentional Self-Harm;female deaths caused by self-harm;female suicides;self-harm deaths among women;suicides among women" -Count_Death_IntentionalSelfHarm_Male_AsFractionOf_Count_Person_Male,"Count of Mortality Event: X60-X84 (Intentional Self-harm), Male (As Fraction of Count Person Male);Deaths Due to Intentional Self-Harm, Male" -Count_Death_LessThan1Year_AsAFractionOf_Count_BirthEvent,Count of Mortality Event: 1 Years or Less (As Fraction of Count Birth Event);Infant Deaths During First Year -Count_Death_LessThan1Year_Female_AsAFractionOf_Count_BirthEvent_Female,"Count of Mortality Event: 1 Years or Less, Female (As Fraction of Count Birth Event Female);Deaths Of Female Population Aged 1 Year or Less;female mortality aged 1 year or less;number of deaths of girls aged 1 year or less;number of female deaths aged 1 year or less;number of female deaths in the first year of life" -Count_Death_LessThan1Year_Male_AsAFractionOf_Count_BirthEvent_Male,"Count of Mortality Event: 1 Years or Less, Male (As Fraction of Count Birth Event Male);Infant Deaths During First Year, Male" -Count_Death_Male,Count of Mortality Event: Male;Male Deaths;male death;male mortality;number of deaths: male;number of male deaths -Count_Death_Male_AgeAdjusted_AsAFractionOf_Count_Person_Male,"1 the fraction of male deaths to male population, age-adjusted;2 the proportion of male deaths to male population, age-adjusted;5 the male mortality rate, age-adjusted;Count of Mortality Event (Age Adjusted): Male (As Fraction of Count Person Male);Male Deaths With Adjusted Age" -Count_Death_Male_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: Male, American Indian And Alaska Native Alone;Deaths of American Indian And Alaska Native Male Population;the death rate of american indian and alaska native males;the number of american indian and alaska native males who have died;the number of american indian and alaska native males who have passed away;the number of deaths in the american indian and alaska native male population" -Count_Death_Male_AsAFractionOf_Count_Person_Male,Count of Mortality Event: Male (As Fraction of Count Person Male);fraction of male deaths;male death fraction;male mortality fraction;proportion of males who died -Count_Death_Male_AsianOrPacificIslander,"Asian or Pacific Islander Male Deaths;Count of Mortality Event: Male, Asian or Pacific Islander;asian or pacific islander male mortality;deaths of asian or pacific islander males;the death rate of asian or pacific islander males;the number of deaths of asian or pacific islander males" -Count_Death_Male_BlackOrAfricanAmerican,"Count of Mortality Event: Male, Black or African American;Deaths Of African American Male Population;african american male death rate;african american male mortality;deaths among african american males;number of african american males who die" -Count_Death_Male_White,"Count of Mortality Event: Male, White;Deaths Of White Male Population" -Count_Death_MentalBehaviouralDisorders,Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders);Deaths Caused by Mental Behavioural Disorders;number of deaths from behavioral health conditions -Count_Death_MentalBehaviouralDisorders_AsianOrPacificIslander,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Asian or Pacific Islander;Deaths of Asian or Pacific Islander Population Caused by Mental And Behavioural Disorders;how many people in the asian or pacific islander population died from mental health disorders;mental health deaths in the asian or pacific islander population;the number of asian or pacific islander people who died from mental health disorders;the number of deaths caused by mental health disorders in the asian or pacific islander population" -Count_Death_MentalBehaviouralDisorders_BlackOrAfricanAmerican,"African Americans Deaths Mental And Behavioural Disorders;Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Black or African American;african americans and mental health disorders;african americans and mental illness;mental health issues among african americans;the prevalence of mental illness in the african american community" -Count_Death_MentalBehaviouralDisorders_Female,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Female;Deaths Of Female Population Due To Mental And Behavioural Disorders;female deaths caused by mental and behavioral disorders;female deaths due to mental health problems;female deaths from mental illness;female deaths related to mental health" -Count_Death_MentalBehaviouralDisorders_Male,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), Male;Deaths Of Male Population Caused By Mental And Behavioural Disorders;deaths in the male population caused by mental and behavioral disorders;deaths of men due to mental and behavioral disorders;male deaths caused by mental and behavioral disorders;men dying from mental and behavioral disorders" -Count_Death_MentalBehaviouralDisorders_White,"Count of Mortality Event: F01-F99 (Mental And Behavioural Disorders), White;Mortality Rate of White Population Due to Mental And Behavioural Disorders;death rate of white people due to mental and behavioral disorders;number of white people who die from mental and behavioral disorders;percentage of white people who die from mental and behavioral disorders;risk of death from mental and behavioral disorders for white people" -Count_Death_Neoplasms,Deaths due to cancer;Number of Deaths Due to Neoplasms (Tumors or Abnormal Growths);Number of deaths caused by tumors or abnormal growths;Number of deaths due to neoplasms (tumors or abnormal growths);The death toll from neoplasms (tumors or abnormal growths);The number of deaths caused by neoplasms (tumors or abnormal growths);The number of people who died from neoplasms (tumors or abnormal growths);how many people die from cancer?;how many people die from tumors or abnormal growths?;what is the death rate from neoplasms?;what is the number of deaths caused by neoplasms? -Count_Death_Neoplasms_AmericanIndianAndAlaskaNativeAlone,"Count of Mortality Event: C00-D48 (Neoplasms), American Indian And Alaska Native Alone;Deaths Of American Indian and Alaska Native Population Due to Neoplasms;american indian and alaska native deaths caused by neoplasms;american indian and alaska native mortality from neoplasms;american indian and alaska native neoplasm-related deaths;neoplasm-related deaths among american indians and alaska natives" -Count_Death_Neoplasms_AsianOrPacificIslander,"Count of Mortality Event: C00-D48 (Neoplasms), Asian or Pacific Islander;Death of Asian or Pacific Islander Population Caused by Neoplasms;the number of asian or pacific islander people who died due to neoplasms;the number of asian or pacific islander people who died from neoplasms;the number of deaths caused by neoplasms in the asian or pacific islander population;the number of deaths in the asian or pacific islander population caused by neoplasms" -Count_Death_Neoplasms_BlackOrAfricanAmerican,"African American Deaths Caused By Neoplasm;Count of Mortality Event: C00-D48 (Neoplasms), Black or African American;african americans who died from neoplasms;deaths from neoplasms among african americans;neoplasm-related deaths in african americans;the number of african americans who died from neoplasms" -Count_Death_Neoplasms_Female,"Count of Mortality Event: C00-D48 (Neoplasms), Female;Female Deaths Caused By Neoplasms;cancer deaths in women;female cancer deaths;women dying from cancer;women who died from cancer" -Count_Death_Neoplasms_Male,"Count of Mortality Event: C00-D48 (Neoplasms), Male;Male Deaths Caused by Neoplasms;number of males who died from cancer;the number of males who died from cancer" -Count_Death_Neoplasms_White,"Count of Mortality Event: C00-D48 (Neoplasms), White;White Population Deaths Caused By Neoplasm;deaths caused by neoplasm in the white population;neoplasm deaths in the white population;neoplasm-related deaths in the white population;white population deaths due to neoplasm" -Count_Death_PregnancyChildbirthThePuerperium,"Count of Mortality Event: O00-O99 (Pregnancy, Childbirth And The Puerperium)" -Count_Death_PregnancyChildbirthThePuerperium_Female,"Count of Mortality Event: O00-O99 (Pregnancy, Childbirth And The Puerperium), Female;Deaths Of Female Population Caused by Pregnancy, Childbirth, And The Puerperium" -Count_Death_SpecialCases,Count of Mortality Event: U00-U99 (Codes for Special Purposes) -Count_Death_SpecialCases_Female,"Count of Mortality Event: U00-U99 (Codes for Special Purposes), Female;Deaths of Female Population Caused by Codes for Special Purposes" -Count_Death_Upto14Years_AsAFractionOf_Count_Person_Upto14Years,Count of Mortality Event: 14 Years or Less (As Fraction of Count Person Upto 14 Years);Deaths of Population With Upto 14 Years;fraction of people who die before the age of 14;fraction of people who died before the age of 14;number of people who die before the age of 14 divided by the total number of people up to the age of 14;number of people who died before the age of 14 divided by the total number of people who lived up to the age of 14 -Count_Death_Upto14Years_Female_AsAFractionOf_Count_Person_Upto14Years_Female,"Count of Mortality Event: 14 Years or Less, Female (As Fraction of Count Person Upto 14 Years Female);Female Deaths Aged 14 Years Or Less;the number of female deaths in the 0-14 age group;the number of female deaths in the pre-teen and teenage age group;the number of female deaths in the under-15 age group;the number of girls who died before the age of 15" -Count_Death_Upto14Years_Male_AsAFractionOf_Count_Person_Upto14Years_Male,"Count of Mortality Event: 14 Years or Less, Male (As Fraction of Count Person Upto 14 Years Male);Deaths of Male Population Aged Below 14 Years Old;male deaths aged 0-14;male deaths under 14;male deaths under the age of 14;male mortality rate under 14" -Count_Death_Upto1Years_AbnormalNotClassfied,"Count of Mortality Event: 1 Years or Less, R00-R99 (Symptoms, Signs And Abnormal Clinical And Laboratory Findings, Not Elsewhere Classified);Deaths Of People Aged 1 Year or Less Caused by Unclassified Symptoms, Signs, And Abnormal Clinical And Laboratory Findings" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period);Deaths of Population Aged 1 Year or Less Caused by Certain Perinatal Conditions;deaths of children under 1 year old from perinatal causes;deaths of infants under 1 year old due to perinatal conditions;deaths of infants under 1 year old from conditions that occur before, during, or shortly after birth;perinatal deaths in children under 1 year old" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_BlackOrAfricanAmerican,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Black or African American;Deaths Of African American Population Aged 1 Year or Less;number of african american deaths aged 1 year or less;number of african american deaths in the first year of life;number of african american infant deaths;number of african american infants who die before their first birthday" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Female,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Female;Deaths of Female Population Aged 1 Year or Less Caused By Certain Conditions Originating in The Perinatal Period;deaths of girls under 1 year old due to conditions that began during pregnancy or childbirth;female deaths in the first year of life due to conditions that began before or during birth;female deaths in the first year of life due to conditions that began during pregnancy or childbirth;female deaths in the first year of life due to perinatal conditions" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Male,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), Male;Male Population Below 1-Year-Old Deaths Caused by Certain Conditions Originating in The Perinatal Period;deaths of male infants under 1 year of age due to conditions originating in the perinatal period;deaths of male infants under 1 year of age due to perinatal conditions;perinatal deaths in male infants under 1 year of age;perinatal mortality in males under 1 year of age" -Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_White,"Count of Mortality Event: 1 Years or Less, P00-P96 (Certain Conditions Originating in The Perinatal Period), White;Deaths of White Population Aged 1 Year Or Less Caused By Certain Conditions Originating in The Perinatal Period);deaths of white infants in the first year of life;deaths of white infants under 1 year old due to perinatal conditions;percentage of white infants who die before their first birthday;proportion of white infants who die before their first birthday" -Count_Death_Upto1Years_CertainInfectiousParasiticDiseases,"Count of Mortality Event: 1 Years or Less, A00-B99 (Certain Infectious And Parasitic Diseases);Deaths of Population Aged 1 Year or Less Caused By Certain Infectious And Parasitic Diseases" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities);Deaths Of People Aged 1 Year Or Less Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities;deaths of infants caused by congenital malformations;deaths of newborns caused by congenital malformations" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_BlackOrAfricanAmerican,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Black or African American;Deaths Of African Americans Aged 1 Year And Below Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities;the number of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities;the percentage of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities;the proportion of african americans aged 1 year and below who died from congenital malformations, deformations, and chromosomal abnormalities;the rate of death among african americans aged 1 year and below from congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Female;Deaths of Female Population Aged 1 Year or Less Caused by Congenital Malformations, Deformations And Chromosomal Abnormalities;female deaths under 1 year old due to chromosomal abnormalities;female deaths under 1 year old due to congenital anomalies;female deaths under 1 year old due to genetic disorders;number of female deaths under 1 year old due to congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), Male;Deaths Of Male Population Aged 1 Year or Less Caused By Congenital Malformations Deformations And Chromosomal Abnormalities;male deaths aged 1 year or less due to congenital malformations, deformations, and chromosomal abnormalities;number of deaths in males aged 1 year or less due to congenital malformations, deformations, and chromosomal abnormalities" -Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_White,"Count of Mortality Event: 1 Years or Less, Q00-Q99 (Congenital Malformations, Deformations And Chromosomal Abnormalities), White;White Population Below 1 Year Deaths Are Caused By Congenital Malformations, Deformations, And Chromosomal Abnormalities;congenital malformations, deformations, and chromosomal abnormalities are the leading causes of death in the white population under one year of age" -Count_Death_Upto1Years_DiseasesOfTheCirculatorySystem,"Count of Mortality Event: 1 Years or Less, I00-I99 (Diseases of The Circulatory System);Deaths of Population Aged 1 Year Old or Less Caused by Circulatory System Diseases;Deaths of Population Aged 1 Year Old or Less Caused by Diseases of the Circulatory System" -Count_Death_Upto1Years_DiseasesOfTheDigestiveSystem,"Count of Mortality Event: 1 Years or Less, K00-K92 (Diseases of The Digestive System);Deaths of Population Aged 1 Year or Less Caused by Diseases of The Digestive System" -Count_Death_Upto1Years_DiseasesOfTheGenitourinarySystem,"Count of Mortality Event: 1 Years or Less, N00-N98 (Diseases of The Genitourinary System);Deaths of Population Aged 1 Year or Less Caused By Diseases of The Genitourinary System" -Count_Death_Upto1Years_DiseasesOfTheNervousSystem,"Count of Mortality Event: 1 Years or Less, G00-G98 (Diseases of The Nervous System);Deaths of Population Aged 1 Year or Less Caused By Diseases of The Nervous System" -Count_Death_Upto1Years_DiseasesOfTheRespiratorySystem,"Count of Mortality Event: 1 Years or Less, J00-J98 (Diseases of The Respiratory System);Deaths Aged 1 Year or Less Caused by Diseases Of The Respiratory System" -Count_Death_Upto1Years_EndocrineNutritionalMetabolicDiseases,"Count of Mortality Event: 1 Years or Less, E00-E88 (Endocrine, Nutritional And Metabolic Diseases);Deaths Of People Aged 1 Year Or Less Caused By Endocrine, Nutritional And Metabolic Diseases" -Count_Death_Upto1Years_ExternalCauses,"Count of Mortality Event: 1 Years or Less, V01-Y89 (External Causes of Morbidity And Mortality);Deaths Of People Aged 1 Year or Less Caused By External Causes of Morbidity And Mortality" -Count_Death_Upto1Years_Neoplasms,"Count of Mortality Event: 1 Years or Less, C00-D48 (Neoplasms);Deaths of Population Aged 1 Year or Less Caused by Neoplasms" -Count_Death_White,Count of Mortality Event: White;Deaths of White Population;white death count;white death toll;white fatality rate;white mortality rate -Count_DebrisFlowEvent,Count of Debris Flow Event;Debris Flow Events;debris flow count;debris flow frequency;debris flow incidence;number of debris flow events -Count_DeliveryEvent_Safe_AsFractionOf_Count_DeliveryEvent,Percentage of safe deliveries to total reported deliveries;percentage of safe child deliveries -Count_DenseFogEvent,1 number of dense fog events;2 frequency of dense fog events;3 how often does dense fog occur?;4 how many times has dense fog occurred?;Count of Dense Fog Event;Dense Fog Events -Count_DroughtEvent,Count of Drought Event;Number of Droughts;Number of drought events;Number of drought incidents;Number of droughts;Number of dry spells;Number of water crises;Number of water deficiencies;Number of water shortages;drought count;drought frequency;drought incidence;drought occurrence;number of droughts -Count_DustDevilEvent,Count of Dust Devil Event;Dust Devil Events;frequency of dust devil events;incidence of dust devil events;number of dust devil events;rate of dust devil events -Count_DustStormEvent,Count of Dust Storm Event -Count_EarthquakeEvent,1 how many earthquakes have there been?;2 what is the number of earthquakes?;3 what is the total number of earthquakes?;4 how many times has the earth shaken?;Count of Earthquake Event;Earthquake count;Earthquake frequency;Earthquake occurrence;How many earthquakes have there been?;Number of Earthquakes;Number of earthquake events;Number of earthquakes;Number of quakes;Number of seismic events;Number of temblors;Number of tremors +Area_WildlandFireEvent,Area of Wildland Fires +AtmosphericPressure_SurfaceLevel,Atmospheric pressure at Surface Level +BurnedArea_FireEvent,Burned Area of Fire Event +BurnedArea_FireEvent_Forest,Burned Area of Fire Event in Forest +Capacity_Electricity_Renewables_AsAFractionOf_Capacity_Electricity,Percentage of renewable electricity capacity +Concentration_AirPollutant_SmokePM25,Concentration of Smoke PM2.5 +ConsecutiveDryDays,Maximum number of consecutive dry days +CountOfClaims_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,Number of Flood Insurance Claims for Building Structures and Contents +Count_BirthEvent,number of births +Count_BirthEvent_AsAFractionOfCount_Person,birth rate +Count_BirthEvent_LiveBirth_AsFractionOf_Count_Person,live birth rate +Count_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Count of live births where mothers Education is high school without Diploma +Count_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Count of live births where mothers Race is American Indian or Alaska Native +Count_BirthEvent_LiveBirth_MotherAsianIndian,Count of live births where mothers Race is Asian Indian +Count_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Count of live births where mothers Race is Asian or Pacific Islander +Count_BirthEvent_LiveBirth_MotherAssociatesDegree,Count of live births where mothers Education is Associates Degree +Count_BirthEvent_LiveBirth_MotherBachelorsDegree,Count of live births where mothers Education is Bachelors Degree +Count_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Count of live births where mothers Race is Black or African American +Count_BirthEvent_LiveBirth_MotherChinese,Count of live births where mothers Race is Chinese +Count_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Count of live births where mothers have Doctorate Degree or Professional School Degree +Count_BirthEvent_LiveBirth_MotherFilipino,Count of live births where mothers Race is Filipino +Count_BirthEvent_LiveBirth_MotherForeignBorn,Count of live births where mothers Nativity is Foreign Born +Count_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Count of live births where mothers Race is Guamanian or Chamorro +Count_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Count of live births where mothers Education is High School +Count_BirthEvent_LiveBirth_MotherHispanicOrLatino,Count of live births where mothers Ethnicity is Hispanic or Latino +Count_BirthEvent_LiveBirth_MotherJapanese,Count of live births where mothers Race is Japanese +Count_BirthEvent_LiveBirth_MotherKorean,Count of live births where mothers Race is Korean +Count_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Count of live births where mothers Education is Less Than 9th Grade +Count_BirthEvent_LiveBirth_MotherMastersDegree,Count of live births where mothers Education is Masters Degree +Count_BirthEvent_LiveBirth_MotherNative,Count of live births where mothers Nativity is Native +Count_BirthEvent_LiveBirth_MotherNativeHawaiian,Count of live births where mothers Race is Native Hawaiian +Count_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Count of live births where mothers Ethnicity is Not Hispanic or Latino +Count_BirthEvent_LiveBirth_MotherNowMarried,Count of live births of married mothers +Count_BirthEvent_LiveBirth_MotherSamoan,Count of live births where mothers Race is Samoan +Count_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Count of live births where mothers are multi-race +Count_BirthEvent_LiveBirth_MotherUnmarried,Count of live births where mothers are Unmarried +Count_BirthEvent_LiveBirth_MotherVietnamese,Count of live births where mothers Race is Vietnamese +Count_BirthEvent_LiveBirth_MotherWhiteAlone,Count of live births where mothers are White +Count_BlizzardEvent,Count of Blizzard Event +Count_CivicStructure_AgriculturalFacility,Number of Agricultural Facility +Count_CivicStructure_EducationFacility,Number of Education Facility +Count_CivicStructure_MedicalFacility,Number of Medical Facility +Count_CivicStructure_TransportOrAdminFacility,Number of Transport or Admin Facility +Count_CoastalFloodEvent,Number of coastal floods +Count_ColdTemperatureEvent,Count of Cold Temperature Event +Count_ColdWindChillEvent,Count of Cold Wind Chill Event +Count_CriminalActivities_AggravatedAssault,Number of Aggravated Assaults +Count_CriminalActivities_Arson,Number of Arson crimes +Count_CriminalActivities_Burglary,Number of burglaries +Count_CriminalActivities_CombinedCrime,Number of crimes +Count_CriminalActivities_ForcibleRape,Number of Rapes +Count_CriminalActivities_LarcenyTheft,Count of criminal activities involving larceny theft +Count_CriminalActivities_MotorVehicleTheft,Number of car thefts +Count_CriminalActivities_MurderAndNonNegligentManslaughter,Number of murders and non-negligent manslaughters +Count_CriminalActivities_MurderAndNonNegligentManslaughter_AsFractionOf_Count_Person,Number of Murder and Non Negligent Manslaughter per capita +Count_CriminalActivities_MurderAndNonNegligentManslaughter_Female_AsFractionOf_Count_Person_Female,Percent of females commiting intentional homicide +Count_CriminalActivities_MurderAndNonNegligentManslaughter_Male_AsFractionOf_Count_Person_Male,Percent of males commiting intentional homicide +Count_CriminalActivities_PropertyCrime,Number of property crime incidents +Count_CriminalActivities_Robbery,Number of robberies +Count_CriminalActivities_ViolentCrime,Count of criminal activities involving a violent crime +Count_CriminalIncidents_BiasMotivationDisabilityStatus_IsHateCrime,Number of Hate Crimes Motivated by Disability Status +Count_CriminalIncidents_BiasMotivationEthnicity_IsHateCrime,Number of Hate Crimes Motivated by Ethnicity +Count_CriminalIncidents_BiasMotivationGender_IsHateCrime,Number of Hate Crimes Motivated by Gender +Count_CriminalIncidents_BiasMotivationRace_IsHateCrime,Number of Hate Crimes Motivated by Race +Count_CriminalIncidents_BiasMotivationReligion_IsHateCrime,Number of Hate Crimes Motivated by Religion +Count_CriminalIncidents_BiasMotivationSexualOrientation_IsHateCrime,Number of Hate Crimes Motivated by Sexual Orientation +Count_CriminalIncidents_IsHateCrime,Number of hate crime incidents +Count_CycloneEvent,Number of cyclones +Count_CycloneEvent_ExtratropicalCyclone,Number of Extratropical Cyclone +Count_CycloneEvent_SubtropicalStorm,Number of Subtropical Storm +Count_CycloneEvent_TropicalDisturbance,Number of Tropical Disturbance +Count_CycloneEvent_TropicalStorm,Number of Tropical Storm +Count_Death,Number of deaths +Count_Death_0Years_AsFractionOf_Count_BirthEvent_LiveBirth,mortality rate of infants +Count_Death_0Years_Female_AsFractionOf_Count_BirthEvent_LiveBirth_Female,mortality rate of female infants +Count_Death_0Years_Male_AsFractionOf_Count_BirthEvent_LiveBirth_Male,mortality rate of male infants +Count_Death_AgeAdjusted_AsAFractionOf_Count_Person,Age adjusted death rate +Count_Death_AmericanIndianAndAlaskaNativeAlone,Number of deaths Among American Indians and Alaska Natives +Count_Death_AsAFractionOfCount_Person,Death rate +Count_Death_AsianOrPacificIslander,Number of deaths Among Asian or Pacific Islanders +Count_Death_BlackOrAfricanAmerican,Number of deaths Among Black or African Americans +Count_Death_CertainConditionsOriginatingInThePerinatalPeriod,Number of Deaths Due to Certain Conditions Originating In The Perinatal Period +Count_Death_CertainInfectiousParasiticDiseases,Number of Deaths Due to Certain Infectious and Parasitic Diseases +Count_Death_CertainInfectiousParasiticDiseases_Female,Number of Deaths Among Females Due to Certain Infectious and Parasitic Diseases +Count_Death_CertainInfectiousParasiticDiseases_Male,Number of Deaths Among Males Due to Certain Infectious and Parasitic Diseases +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Number of Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities" +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Number of Deaths Among Females Due to Congenital Malformations, Deformations and Chromosomal Abnormalities" +Count_Death_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Number of Deaths Among Males Due to Congenital Malformations, Deformations and Chromosomal Abnormalities" +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders,Number of Deaths Due to Diseases of Blood and Blood Forming Organs and Immune Disorders +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Female,Number of Deaths Among Females Due to Diseases of Blood and Blood-Forming Organs and Immune Disorders +Count_Death_DiseasesOfBloodAndBloodFormingOrgansAndImmuneDisorders_Male,Number of Deaths Among Males Due to Diseases of Blood and Blood-Forming Organs and Immune Disorders +Count_Death_DiseasesOfTheCirculatorySystem,Number of Deaths Due to Diseases of the Circulatory System +Count_Death_DiseasesOfTheCirculatorySystem_Female,Number of Deaths Among Females Due to Diseases of the Circulatory System +Count_Death_DiseasesOfTheCirculatorySystem_Male,Number of Deaths Among Males Due to Diseases of the Circulatory System +Count_Death_DiseasesOfTheDigestiveSystem,Number of Deaths Due to Diseases of the Digestive System +Count_Death_DiseasesOfTheDigestiveSystem_Female,Number of Deaths Among Females Due to Diseases of the Digestive System +Count_Death_DiseasesOfTheDigestiveSystem_Male,Number of Deaths Among Males Due to Diseases of the Digestive System +Count_Death_DiseasesOfTheGenitourinarySystem,Number of Deaths Due to Diseases of the Genitourinary System +Count_Death_DiseasesOfTheGenitourinarySystem_Female,Number of Deaths Among Females Due to Diseases of the Genitourinary System +Count_Death_DiseasesOfTheGenitourinarySystem_Male,Number of Deaths Among Males Due to Diseases of the Genitourinary System +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue,Number of Deaths Due to Diseases of the Musculoskeletal System and Connective Tissue +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Female,Number of Deaths Among Females Due to Diseases of the Musculoskeletal System and Connective Tissue +Count_Death_DiseasesOfTheMusculoskeletalSystemConnectiveTissue_Male,Number of Deaths Among Males Due to Diseases of the Musculoskeletal System and Connective Tissue +Count_Death_DiseasesOfTheNervousSystem,Number of Deaths Due to Diseases of the Nervous System +Count_Death_DiseasesOfTheNervousSystem_Female,Number of Deaths Among Females Due to Diseases of the Nervous System +Count_Death_DiseasesOfTheNervousSystem_Male,Number of Deaths Among Males Due to Diseases of the Nervous System +Count_Death_DiseasesOfTheRespiratorySystem,Number of Deaths Due to Diseases of the Respiratory System +Count_Death_DiseasesOfTheRespiratorySystem_Female,Number of Deaths Among Females Due to Diseases of the Respiratory System +Count_Death_DiseasesOfTheRespiratorySystem_Male,Number of Deaths Among Males Due to Diseases of the Respiratory System +Count_Death_DiseasesOfTheSkinSubcutaneousTissue,Number of Deaths Due to Diseases of the Skin and Subcutaneous Tissue +Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Female,Number of Deaths Among Females Due to Diseases of the Skin and Subcutaneous Tissue +Count_Death_DiseasesOfTheSkinSubcutaneousTissue_Male,Number of Deaths Among Males Due to Diseases of the Skin and Subcutaneous Tissue +Count_Death_EndocrineNutritionalMetabolicDiseases,"Number of Deaths Due to Endocrine, Nutritional and Metabolic Diseases" +Count_Death_EndocrineNutritionalMetabolicDiseases_Female,"Number of Deaths Among Females Due to Endocrine, Nutritional and Metabolic Diseases" +Count_Death_EndocrineNutritionalMetabolicDiseases_Male,"Number of Deaths Among Males Due to Endocrine, Nutritional and Metabolic Diseases" +Count_Death_ExternalCauses,Number of Deaths Due to External Causes +Count_Death_ExternalCauses_Female,Number of Deaths Among Females Due to External Causes +Count_Death_ExternalCauses_Male,Number of Deaths Among Males Due to External Causes +Count_Death_Female,Number of Deaths Among Females +Count_Death_Female_AgeAdjusted_AsAFractionOf_Count_Person_Female,Age adjusted female death rate +Count_Death_Female_AmericanIndianAndAlaskaNativeAlone,Number of Deaths Among American Indian and Alaska Native Females +Count_Death_Female_AsAFractionOf_Count_Person_Female,Female death rate +Count_Death_Female_AsianOrPacificIslander,Number of Deaths Among Asian or Pacific Islander Females +Count_Death_Female_BlackOrAfricanAmerican,Number of Deaths Among Black or African American Females +Count_Death_Female_White,Number of Deaths Among White Females +Count_Death_Infant,Number of Deaths Among Infants +Count_Death_IntentionalSelfHarm_AsFractionOf_Count_Person,Rate of deaths due to Intentional Self Harm +Count_Death_IntentionalSelfHarm_Female_AsFractionOf_Count_Person_Female,Rate of female deaths due to Intentional Self Harm +Count_Death_IntentionalSelfHarm_Male_AsFractionOf_Count_Person_Male,Rate of male deaths due to Intentional Self Harm +Count_Death_LessThan1Year_AsAFractionOf_Count_BirthEvent,Infant mortality rate +Count_Death_LessThan1Year_Female_AsAFractionOf_Count_BirthEvent_Female,Infant mortality rate for females +Count_Death_LessThan1Year_Male_AsAFractionOf_Count_BirthEvent_Male,Infant mortality rate for males +Count_Death_Male,Number of deaths among males +Count_Death_Male_AgeAdjusted_AsAFractionOf_Count_Person_Male,Age adjusted male death rate +Count_Death_Male_AmericanIndianAndAlaskaNativeAlone,Number of deaths among American Indian and Alaska Native males +Count_Death_Male_AsAFractionOf_Count_Person_Male,male death rate +Count_Death_Male_AsianOrPacificIslander,Number of Deaths Among Asian or Pacific Islander Males +Count_Death_Male_BlackOrAfricanAmerican,Number of Deaths Among Black or African American Males +Count_Death_Male_White,Number of Deaths Among White Males +Count_Death_MentalBehaviouralDisorders,Number of Deaths Due to Mental and Behavioral Disorders +Count_Death_MentalBehaviouralDisorders_Female,Number of Deaths Among Females Due to Mental and Behavioral Disorders +Count_Death_MentalBehaviouralDisorders_Male,Number of Deaths Among Males Due to Mental and Behavioral Disorders +Count_Death_Neoplasms,Number of Deaths Due to Neoplasms +Count_Death_Neoplasms_Female,Number of Deaths Among Females Due to Neoplasms +Count_Death_Neoplasms_Male,Number of Deaths Among Males Due to Neoplasms +Count_Death_PregnancyChildbirthThePuerperium,"Number of Deaths Due to Pregnancy, Childbirth, and the Puerperium" +Count_Death_PregnancyChildbirthThePuerperium_Female,"Number of Deaths Among Females Due to Pregnancy, Childbirth, and the Puerperium" +Count_Death_SpecialCases,Number of Deaths Due to Special Cases +Count_Death_SpecialCases_Female,Number of Deaths Among Females Due to Special Cases +Count_Death_Upto14Years_AsAFractionOf_Count_Person_Upto14Years,Child Mortality Rate for Ages Up to 14 Years +Count_Death_Upto14Years_Female_AsAFractionOf_Count_Person_Upto14Years_Female,Female Child Mortality Rate for Ages Up to 14 Years +Count_Death_Upto14Years_Male_AsAFractionOf_Count_Person_Upto14Years_Male,Male Child Mortality Rate for Ages Up to 14 Years +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod,Number of infant deaths from certain conditions originating in the perinatal period +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Female,Number of infant deaths among females due to certain conditions originating in the perinatal period +Count_Death_Upto1Years_CertainConditionsOriginatingInThePerinatalPeriod_Male,Number of infant deaths among males due to certain conditions originating in the perinatal period +Count_Death_Upto1Years_CertainInfectiousParasiticDiseases,Number of infant deaths from certain infectious and parasitic diseases +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities,"Number of infant deaths from congenital malformations, deformations and chromosomal abnormalities" +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Female,"Number of Female Infant Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities" +Count_Death_Upto1Years_CongenitalMalformationsDeformationsChromosomalAbnormalities_Male,"Number of Male Infant Deaths Due to Congenital Malformations, Deformations and Chromosomal Abnormalities" +Count_Death_Upto1Years_DiseasesOfTheCirculatorySystem,Number of Infant Deaths Due to Diseases Of The Circulatory System +Count_Death_Upto1Years_DiseasesOfTheDigestiveSystem,Number of Infant Deaths Due to Diseases Of The Digestive System +Count_Death_Upto1Years_DiseasesOfTheGenitourinarySystem,Number of Infant Deaths Due to Diseases Of The Genitourinary System +Count_Death_Upto1Years_DiseasesOfTheNervousSystem,Number of Infant Deaths Due to Diseases Of The Nervous System +Count_Death_Upto1Years_DiseasesOfTheRespiratorySystem,Number of Infant Deaths Due to Diseases Of The Respiratory System +Count_Death_Upto1Years_EndocrineNutritionalMetabolicDiseases,Number of Infant Deaths Due to Endocrine Nutritional Metabolic Diseases +Count_Death_Upto1Years_ExternalCauses,Number of Infant Deaths Due to External Causes +Count_Death_Upto1Years_Neoplasms,Number of Infant Deaths Due to Neoplasms +Count_Death_White,Number of Deaths Among White Persons +Count_DebrisFlowEvent,Number of landslides +Count_DeliveryEvent_Safe_AsFractionOf_Count_DeliveryEvent,Percentage of Safe Child births +Count_DenseFogEvent,Number of Dense Fogs +Count_DroughtEvent,number of droughts +Count_DustDevilEvent,number of dust devils +Count_DustStormEvent,number of dust storms +Count_EarthquakeEvent,Number of Earthquakes Count_EarthquakeEvent_M5To6,Count of Earthquake Event: 5 - 6 Magnitude Count_EarthquakeEvent_M6To7,Count of Earthquake Event: 6 - 7 Magnitude Count_EarthquakeEvent_M7To8,Count of Earthquake Event: 7 - 8 Magnitude Count_EarthquakeEvent_M8To9,Count of Earthquake Event: 8 - 9 Magnitude Count_EarthquakeEvent_M9Onwards,Count of Earthquake Event: 9 Magnitude or More -Count_Establishment,Count of Establishment;Number of Establishments (Organizations);count of organizations;number of establishments;number of organizations;total number of organizations -Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: Federal Government Owned, Total, All Industries (NAICS/10);Federal Government Owned Total All Industries Establishments;number of establishments owned by the federal government in all industries (naics/10);number of federal government-owned establishments in all industries (naics/10);total number of establishments owned by the federal government in all industries (naics/10);total number of federal government-owned establishments in all industries (naics/10)" -Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"Count of Establishment: Local Government Owned, Total, All Industries (NAICS/10);Local Government Owned Total All Industries Establishments;number of local government-owned businesses in all industries (naics/10);number of local government-owned companies in all industries (naics/10);number of local government-owned establishments in all industries (naics/10);number of local government-owned organizations in all industries (naics/10)" -Count_Establishment_NAICSAccommodationFoodServices,Count of Establishment: Accommodation And Food Services (NAICS/72) -Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,Administrative Support and Waste Management Services Establishments;Count of Establishment: Administrative And Support And Waste Management Services (NAICS/56);businesses that offer administrative support and waste management services;establishments that provide administrative and waste management assistance;firms that offer administrative and waste management solutions;firms that offer administrative support and waste management services -Count_Establishment_NAICSAgricultureForestryFishingHunting,"Agriculture, Forestry, Fishing, And Hunting Industries;Count of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11);agriculture, forestry, fishing, and hunting industries;the agricultural, forestry, fishing, and hunting industries;the industries of agriculture, forestry, fishing, and hunting;the sectors of agriculture, forestry, fishing, and hunting" -Count_Establishment_NAICSArtsEntertainmentRecreation,"Arts, Entertainment, And Recreation Establishments;Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71)" -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,"Arts, Entertainment, and Recreation Establishments;Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Exempt From Federal Income Tax;places to be entertained" -Count_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"Arts, Entertainment, and Recreation Establishments, Subject to Federal Income Tax;Count of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Subject To Federal Income Tax;businesses in the arts, entertainment, and recreation industries that are required to pay federal income tax;businesses, companies, and organizations in the arts, entertainment, and recreation industries that are required to pay federal income tax;establishments in the arts, entertainment, and recreation industries that are subject to federal income tax;organizations in the arts, entertainment, and recreation industries that are subject to federal income tax" -Count_Establishment_NAICSConstruction,Construction Establishments;Count of Establishment: Construction (NAICS/23) -Count_Establishment_NAICSEducationalServices,Count of Establishment: Educational Services (NAICS/61);Educational Services -Count_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Educational Services (NAICS/61), Exempt From Federal Income Tax;Educational Services Establishments Exempt From Federal Income Taxes;educational establishments are not liable for federal income tax;educational institutions are not subject to federal income tax;schools are not taxed by the federal government;the federal government does not tax educational institutions" -Count_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Educational Services (NAICS/61), Subject To Federal Income Tax;Educational Services Establishments Subject To Federal Income Taxes;educational establishments that are liable for federal income tax;educational institutions that pay federal income taxes;educational organizations that are required to pay federal income tax;schools that are subject to federal income tax" -Count_Establishment_NAICSFinanceInsurance,Count of Establishment: Finance And Insurance (NAICS/52);Finance And Insurance Establishments -Count_Establishment_NAICSGoodsProducing,Count of Establishment: Goods-producing (NAICS/101);Goods-Producing Industries;industries that create physical products;industries that make things;industries that manufacture products;industries that produce goods -Count_Establishment_NAICSHealthCareSocialAssistance,Count of Establishment: Health Care And Social Assistance (NAICS/62);Health Care and Social Assistance Sector;the health and social services sector;the health care and social assistance sector;the healthcare and social assistance sector;the social services sector -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Health Care And Social Assistance (NAICS/62), Exempt From Federal Income Tax;Health Care And Social Assistance are Exempted From Federal Income Tax;health care and social assistance are exempt from federal income tax;health care and social assistance are not taxed by the federal government;health care and social assistance are tax-free;you don't have to pay federal income tax on health care and social assistance" -Count_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Health Care And Social Assistance (NAICS/62), Subject To Federal Income Tax;Health Care And Social Assistance Industries, Subject To Federal Income Tax;businesses in the health care and social assistance sectors must pay federal income tax;industries in the health care and social assistance sectors are subject to federal income tax;the federal government levies income tax on businesses in the health care and social assistance sectors;the federal government taxes businesses in the health care and social assistance industries" -Count_Establishment_NAICSInformation,Count of Establishment: Information (NAICS/51);Information And Cultural Industries;creative industries;knowledge economy;the creative industries;the cultural sector -Count_Establishment_NAICSManagementOfCompaniesEnterprises,Count of Establishment: Management of Companies And Enterprises (NAICS/55);Management of Companies And Enterprises Industries;corporate management;industrial management;managing a company -Count_Establishment_NAICSManufacturing,Animal Food Manufacturing Industries;Count of Establishment: Manufacturing (NAICS/31);animal feed industry;animal nutrition industry;livestock feed industry;pet food industry -Count_Establishment_NAICSMiningQuarryingOilGasExtraction,"Count of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Mining, Quarrying, And Oil And Gas Extraction;extracting minerals, rocks, and fossil fuels from the earth;extracting minerals, rocks, and oil and gas from the earth;mining for minerals and rocks;removing materials from the earth's surface" -Count_Establishment_NAICSNonclassifiable,Count of Establishment: Unclassified (NAICS/99);Nonclassifiable Establishments;establishment count for naics/99;naics/99 establishment count;number of naics/99 establishments;unclassified establishment count -Count_Establishment_NAICSOtherServices,"Count of Establishment: Other Services, Except Public Administration (NAICS/81);Other Services, Except Public Administration Industries;industries other than public administration;industries other than the government sector;industries other than the public sector;industries that are not public administration" -Count_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Other Services, Except Public Administration (NAICS/81), Exempt From Federal Income Tax;Other Services, Except Public Administration Industries Exempted From Federal Income Tax;industries that are exempt from federal income tax, except public administration;industries that are not liable for federal income tax, except public administration;industries that are not required to pay federal income tax, except public administration;industries that are not subject to federal income tax, except public administration" -Count_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Other Services, Except Public Administration (NAICS/81), Subject To Federal Income Tax;Other Services, Except Public Administration Establishments Subject To Federal Income Tax;non-public administration services, excluding establishments subject to federal income tax;private sector services, excluding public administration establishments subject to federal income tax;services provided by the private sector, excluding establishments subject to federal income tax in the public sector;services provided by the private sector, excluding public administration establishments subject to federal income tax" -Count_Establishment_NAICSProfessionalScientificTechnicalServices,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54);Professional, Scientific, and Technical Services Establishments;establishments providing professional, scientific, and technical consulting services;establishments providing professional, scientific, and technical services;establishments providing professional, scientific, and technical support services;professional, scientific, and technical services establishments" -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Exempt From Federal Income Tax;Professional, Scientific, and Technical Service Industries, Exempt From Federal Income Tax;federal income tax does not apply to professional, scientific, and technical services;federal income tax is not levied on professional, scientific, and technical services;professional, scientific, and technical service industries are exempt from federal income tax;professional, scientific, and technical services are exempt from federal income tax" -Count_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"Count of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Subject To Federal Income Tax;Professional, Scientific, And Technical Services, Subject To Federal Income Tax;services provided by professionals, scientists, and technicians that are subject to federal income tax;services that are provided by professionals, scientists, and technicians and that are subject to federal income tax;services that are provided by professionals, scientists, and technicians and that are subject to the federal income tax code;services that are provided by professionals, scientists, and technicians and that are taxable by the federal government" -Count_Establishment_NAICSPublicAdministration,Count of Establishment: Public Administration (NAICS/92);Public Administration And Government;the administration of public affairs;the management of public resources;the running of the country;the way the government works -Count_Establishment_NAICSRealEstateRentalLeasing,"Count of Establishment: Real Estate And Rental And Leasing (NAICS/53);Real Estate And Rental And Leasing;real estate and leasing;real estate and property management;real estate and rentals;real estate, rentals, and leasing" -Count_Establishment_NAICSRetailTrade,Count of Establishment: Retail Trade (NAICS/44);Retail Trade Industries;retail;retail businesses;retail sector;retail trade -Count_Establishment_NAICSServiceProviding,Count of Establishment: Service-providing (NAICS/102);Service Providing Establishments;number of establishments providing services;number of service providers;number of service-providing establishments -Count_Establishment_NAICSTotalAllIndustries,"All Industries;Count of Establishment: Total, All Industries (NAICS/10);all professions;all sectors;all trades;all types of businesses" -Count_Establishment_NAICSTransportationWarehousing,Count of Establishment: Transportation And Warehousing (NAICS/48);Transportation And Warehousing Establishments;businesses that transport and store goods;transportation and storage;transportation and warehousing;transportation and warehousing companies -Count_Establishment_NAICSUtilities,Count of Establishment: Utilities (NAICS/22);Utility Establishments;amenities -Count_Establishment_NAICSWholesaleTrade,"Count of Establishment: Wholesale Trade (NAICS/42);Wholesale Trade;the business of buying and selling goods in large quantities, usually for resale;the buying and selling of goods in bulk;the buying and selling of goods in large quantities, typically for resale;the trade in goods in large quantities, typically for resale" -Count_Establishment_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,"All Privately Owned Industries;Count of Establishment: Privately Owned, Total, All Industries (NAICS/10);companies that are not publicly traded;industries that are in the private sector;industries that are owned by individuals or private companies;non-publicly traded companies" -Count_Establishment_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,"All State Government-Owned Industries;Count of Establishment: State Government Owned, Total, All Industries (NAICS/10);government-owned companies;state-owned companies;state-owned corporations;state-run companies" -Count_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Count of Establishment: Merchant Wholesalers, Wholesale Trade (NAICS/42);Trade Merchant Wholesalers;distributors;merchants who sell goods to other businesses" -Count_ExcessiveHeatEvent,Count of Excessive Heat Event;Excessive Heat Events;count of excessive heat events;number of excessive heat episodes;number of excessive heat events;number of times excessive heat has occurred -Count_ExtremeColdWindChillEvent,Count of Extreme Cold Wind Chill Event;Extreme Cold Wind Chill Events;frequency of extreme cold wind chill events;how many extreme cold wind chill events have there been?;how often do extreme cold wind chill events happen?;number of extreme cold wind chill events -Count_Faculty_ElementarySchoolCounselor,Count of Faculty: Elementary School Counselor;Number Of Elementary School Counselors -Count_Faculty_LEAAdministrativeSupportStaff,Count of Faculty: LEAAdministrative Support Staff;LEA Administrative Support Staff -Count_Faculty_LEAAdministrator,Count of Faculty in LEA Administrator;Count of Faculty: LEAAdministrator -Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,Count of Faculty: Para Professionals Aides or Instructional Aide;Para Professionals Aides Faculties -Count_Faculty_SchoolAdministrativeSupportStaff,Count of Faculty: School Administrative Support Staff;School Administrative Support Staff -Count_Faculty_SchoolAdministrator,Count of Faculty: School Administrator;School Administrators -Count_Faculty_SchoolOtherGuidanceCounselor,Count of Faculty: School Other Guidance Counselor;School Other Guidance Counselor Faculties -Count_Faculty_SchoolPsychologist,Count of Faculty: School Psychologist;School Psychologists -Count_Faculty_SecondarySchoolCounselor,Count of Faculty: Secondary School Counselor;Secondary School Counselor Faculties -Count_Faculty_TotalGuidanceCounselor,Count of Faculty: Total Guidance Counselor -Count_Farm,Count of Farm;Number of Farms;Number of agricultural businesses;Number of agricultural lands;Number of agricultural properties;Number of farm properties;Number of farming operations;Number of farms;Number of farms in the region;Total number of agricultural businesses;Total number of agricultural properties;Total number of agricultural properties in the area;Total number of farms;Total number of farms in the region;how many agricultural establishments are there?;how many farms are there?;total number of farms;what is the number of farms?;what is the total number of farms? -Count_FarmInventory_BeefCows,1 how many beef cows are on the farm?;Count of Farm Inventory: Beef Cows;Number of Beef Cows in farm inventory;Number of Beef Cows on a Farm;Number of beef cattle in inventory;Number of beef cattle on farms;Number of beef cows in inventory;Number of beef cows on a farm;Number of beef cows on farms;Number of beef cows on hand;Number of cows for beef on a farm;Number of cows raised for beef on a farm;Number of cows reared for beef on a farm;Number of cows used for beef production on a farm;how many beef cows are on the farm?;how many head of beef cattle are on the farm?;what is the number of beef cows on the farm? -Count_FarmInventory_Broilers,1 Chicken count on the farm;Count of Farm Inventory: Broilers;Number of Broiler Chickens on a Farm;Number of Broilers in farm inventory;Number of broiler chickens on a farm;Number of broilers on a farm;Number of chickens for meat on a farm;Number of chickens raised for meat on a farm;Number of chickens reared for meat on a farm;Number of chickens used for meat production on a farm;how many broiler chickens are on a farm?;how many broiler chickens does a farm have?;what is the number of broiler chickens on a farm?;what is the population of broiler chickens on a farm? -Count_FarmInventory_CattleAndCalves,Cattle and calf count;Count of Farm Inventory: Cattle And Calves;How many cattle and calves are on the farm?;Number of Cattle And Calves in farm inventory;Number of Cattle and Calves on a Farm;Number of cattle and calves in the herd;Number of cattle and calves on a farm;Number of cattle and calves on hand;Number of cattle and young on a farm;Number of cows and calves on a farm;Number of cows and heifers on a farm;Number of cows and young on a farm;how many cattle and calves are on the farm?;how many cattle and calves does the farm have?;what is the cattle and calf population on the farm?;what is the total number of cattle and calves on the farm? -Count_FarmInventory_HogsAndPigs,Count of Farm Inventory: Hogs And Pigs;Number of Hogs And Pigs in farm inventory;Number of Hogs and Pigs on a Farm;Number of hogs and pigs on a farm;Number of hogs and young on a farm;Number of pigs and hogs kept on farms;Number of pigs and hogs on a farm;Number of pigs and piglets on a farm;Number of pigs and young on a farm;how many hogs and pigs are on the farm?;how many hogs and pigs does the farm have?;what is the hog and pig count on the farm?;what is the number of hogs and pigs on the farm? -Count_FarmInventory_Layers,Count of Farm Inventory: Layers;Number of Layers in farm inventory;Number of Laying Hens on a Farm;Number of egg-laying hens on a farm;Number of hens for egg production on a farm;Number of hens raised for eggs on a farm;Number of hens reared for egg production on a farm;Number of hens used for laying eggs on a farm;Number of laying hens on a farm;how many laying hens are on a farm;the count of laying hens on a farm;the number of chickens on a farm that lay eggs;the number of laying hens on a farm -Count_FarmInventory_MilkCows,Count of Farm Inventory: Milk Cows;How many dairy cows are on the farm?;How many milk cows are on the farm?;Number of Milk Cows in farm inventory;Number of Milk Cows on a Farm;Number of cows for milk on a farm;Number of cows raised for milk on a farm;Number of cows reared for milk production on a farm;Number of cows used for milk production on a farm;Number of dairy cows on a farm;Number of milk cows on a farm;how many milk cows are on the farm?;how many milk cows does the farm have?;what is the herd size of the farm's milk cows?;what is the number of milk cows on the farm? -Count_FarmInventory_SheepAndLambs,Count of Farm Inventory: Sheep And Lambs;How many sheep and lambs are on the farm?;How many sheep and lambs are there on the farm?;Number of Sheep And Lambs in farm inventory;Number of Sheep and Lambs on a Farm;Number of lambs and sheep on a farm;Number of sheep and ewes on a farm;Number of sheep and lambs on a farm;Number of sheep and rams on a farm;Number of sheep and young on a farm;how many sheep and lambs are on the farm?;how many sheep and lambs are there on the farm?;how many sheep and lambs does the farm have?;what is the total number of sheep and lambs on the farm? -Count_Farm_BarleyForGrain,Count of Farm: Barley for Grain;Number of Barley Farms;Number of farms growing barley for grain;how many barley farms are there?;how many farms grow barley?;number of barley farms;number of barley-growing farms;number of farms that cultivate barley;number of farms that grow barley;number of farms that produce barley;what is the number of barley farms?;what is the total number of barley farms? -Count_Farm_BeefCows,Count of Farm: Beef Cows;Number of Farms With Beef Cows;Number of beef cattle farms;Number of farms that raise beef cattle;The number of farms with beef cattle;how many beef cattle farms are there?;how many farms have beef cows?;how many farms raise beef cattle?;number of beef cattle farms;number of farms raising beef cattle;number of farms with beef cows;what is the number of farms with beef cows? -Count_Farm_Broilers,Count of Farm: Broilers;How many farms raise broilers?;Number of Farms With Broilers (Young Chickens);Number of broiler farms;number of broiler farms;number of farms growing broilers;number of farms raising broilers;number of farms that grow broilers;number of farms that raise broiler chickens;number of farms with young chickens -Count_Farm_CattleAndCalves,Count of Farm: Cattle And Calves;Farms with cattle and calves;Number of Cattle Farms;Number of cattle operations;Number of cattle-producing facilities;Number of cattle-raising operations;number of cattle farms;number of cattle operations;the amount of cattle farms;the cattle farm count;the cattle farm total;the number of cattle farms -Count_Farm_CornForGrain,Count of Farm: Corn for Grain;How many corn farms are there;How many farms are dedicated to corn;How many farms grow corn;How many farms produce corn;Number of Farms Growing Corn;Number of corn farms;Number of farms growing corn for grain;how many corn farms are there;how many farms grow corn;how many farms produce corn;number of farms growing corn;what is the number of corn farms -Count_Farm_CornForSilageOrGreenchop,1 how many farms produce silage?;2 what is the number of farms that produce silage?;3 what is the number of farms that use silage as a crop?;4 how many farms grow silage?;Count of Farm: Corn for Silage or Greenchop;How many farms produce silage?;Number of Farms for Silage;Number of farms growing corn for silage or greenchop;Number of farms producing silage;Number of farms that produce silage;Number of silage farms;number of farms for silage;number of silage farms -Count_Farm_Cotton,Count of Farm: Cotton;How many farms grow cotton?;Number of Farms Growing Cotton;Number of cotton farms;Number of farms growing cotton;Number of farms that cultivate cotton;Number of farms that grow cotton;Number of farms that produce cotton;how many cotton farms are there;how many farms grow cotton;how many farms produce cotton;number of farms growing cotton;what is the number of cotton farms -Count_Farm_Cropland,Count of Farm: Cropland;Number of Farms With Crop Cultivation;Number of farms that cultivate crops;Number of farms with cropland;number of crop-cultivating farms;number of farms that cultivate crops;number of farms that grow crops;number of farms that produce crops;number of farms that raise crops;number of farms with crop cultivation -Count_Farm_DryEdibleBeans,Count of Farm: Dry Edible Beans;How many farms grow beans;How many farms grow beans?;Number of Farms Growing Beans;Number of farms growing dry edible beans;Number of farms that grow beans;The number of farms growing beans;The total number of farms that grow beans;number of bean farms;number of bean-producing farms;number of farms growing beans;number of farms that grow beans;number of farms that produce beans -Count_Farm_DurumWheatForGrain,Count of Farm: Durum Wheat for Grain;How many farms grow durum wheat?;Number of Farms Growing Durum Wheat;Number of durum wheat farms;Number of farms growing durum wheat for grain;The number of farms that grow durum wheat;how many durum wheat farms are there?;how many farms grow durum wheat?;number of farms growing durum wheat;what is the number of durum wheat-growing farms?;what is the number of farms that grow durum wheat? -Count_Farm_Forage,3 let animals eat plants growing in a field;Count of Farm: Forage;Farm Forage -Count_Farm_HarvestedCropland,Count of Farm: Harvested Cropland;Number of Farms With Harvested Cropland;Number of farms with harvested cropland;number of farms with harvested agricultural fields;number of farms with harvested agricultural land;number of farms with harvested cropland;number of farms with harvested crops;number of farms with harvested land;the number of farms that have harvested cropland -Count_Farm_HogsAndPigs,Count of Farm: Hogs And Pigs;Farms with hogs and pigs;Number of Farms With Hogs and Pigs;Number of farms that raise hogs or pigs;Number of farms with hogs;Number of farms with pigs;Number of hog farms;Number of pig farms;how many farms have hogs and pigs?;how many farms raise hogs and pigs?;number of farms with hogs and pigs;what is the number of farms that raise hogs and pigs?;what is the number of farms with hogs and pigs? -Count_Farm_InventorySold_CattleAndCalves,"Count of Farm: Inventory Sold, Cattle And Calves;Number of Farms That Sell Cattle and Calves;Number of cattle and calf businesses;Number of farms that sell cattle and calves;Number of farms with inventory sold of cattle and calves;number of cattle and calf businesses;number of farms that breed cattle and calves;number of farms that produce cattle and calves;number of farms that sell cattle and calves" -Count_Farm_InventorySold_HogsAndPigs,"Count of Farm: Inventory Sold, Hogs And Pigs;Number of Farms That Sold Hogs and Pigs;Number of farms that sold hogs;Number of farms that sold pigs;Number of farms that sold pigs and hogs;Number of farms that sold swine;Number of farms with hogs and pigs;number of farms that sold hogs;number of farms that sold hogs and pigs;number of farms that sold pigs;number of farms that sold pigs and hogs;number of farms that sold pigs and/or hogs" -Count_Farm_IrrigatedLand,Count of Farm: Irrigated Land;Number of Farms With Irrigated Lands;Number of farms with irrigated areas;Number of farms with irrigated fields;Number of farms with irrigated land;Number of farms with irrigated plots;number of farms that have irrigated land;number of farms that irrigate their land;number of farms that use water to irrigate their land;number of farms with irrigated land;number of farms with irrigated lands -Count_Farm_Layers,Count of Farm: Layers;Number of Farms With Layers (Chickens Used for Egg Production);The number of layer-producing farms;number of farms growing layers;number of farms that produce layers;number of farms that raise layers;number of farms with chickens used for egg production;number of farms with layer hens;number of farms with layers;number of layer farms;number of layer-producing farms -Count_Farm_MilkCows,Count of Farm: Milk Cows;Number of Farms With Milk Cows;how many farms are there with milk cows?;how many farms have milk cows?;number of dairy farms;number of farms that milk cows;number of farms that produce milk;number of farms that raise dairy cows;number of farms with dairy cows;number of farms with milk cows;what is the number of farms with milk cows?;what is the total number of farms with milk cows? -Count_Farm_OatsForGrain,Count of Farm: Oats for Grain;Number of Farms Grawing Oats;Number of farms grawing oats;Number of farms growing oats for grain;number of oat farms;number of oat-producing farms -Count_Farm_Orchards,Count of Farm: Orchards;Number of Farms With Orchards;Number of farms with orchards;number of farms that grow fruit;number of farms that grow fruit trees;number of farms that have orchards;number of farms with orchards;number of orchards on farms -Count_Farm_OtherSpringWheatForGrain,Count of Farm: Other Spring Wheat for Grain;Other Spring Wheat for Grain Farms;spring wheat for grain cultivation;spring wheat for grain farms;spring wheat for grain production;spring wheat for growing grain -Count_Farm_PeanutsForNuts,Count of Farm: Peanuts for Nuts;Number of Farms Growing Peantuts;Number of farms growing peanuts for nuts;number of farms growing peantuts;number of peanut farms;what is the number of peanut farms?;what is the total number of peanut farms? -Count_Farm_PimaCotton,Count of Farm: Pima Cotton;How many farms cultivate pima cotton;How many farms grow pima cotton;How many farms produce pima cotton;How many pima cotton farms are there;Number of Farms Growing Pima Cotton;Number of farms growing Pima cotton;What is the number of farms that grow pima cotton;how many farms grow pima cotton?;how many pima cotton farms are there?;number of farms growing pima cotton;what is the number of farms that grow pima cotton?;what is the total number of farms that grow pima cotton? -Count_Farm_Potatoes,Count of Farm: Potatoes;Number of Farms Growing Potatoes;Number of farms growing potatoes;Number of farms that cultivate potatoes;Number of farms that grow potatoes;Number of farms that produce potatoes;Number of potato farms;number of farms growing potatoes;number of farms that grow potatoes;number of farms that produce potatoes;number of potato farms;number of potato-growing farms;the number of farms that grow potatoes -Count_Farm_PrimaryProducer_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Primary Producer;Count of Farm: Primary Producer, American Indian or Alaska Native Alone;american indian or alaska native person who is a primary producer;american indian or alaska native person who is involved in primary production;american indian or alaska native who is a primary producer;american indian or alaska native who is self-employed in a primary industry" -Count_Farm_PrimaryProducer_AsianAlone,"Asians Primary Farm Producers;Count of Farm: Primary Producer, Asian Alone;asians are the main agricultural producers;asians are the main agriculturalists;asians are the primary growers of crops;asians are the primary producers of farm products" -Count_Farm_PrimaryProducer_BlackOrAfricanAmericanAlone,"African American Primary Producer Farms;Count of Farm: Primary Producer, Black or African American Alone;african american-owned farms;farms operated by african americans;farms owned and operated by african americans;farms owned by african americans" -Count_Farm_PrimaryProducer_HispanicOrLatino,"Count of Farm: Primary Producer, Hispanic or Latino;Hispanic Primary Producers;hispanic food producers" -Count_Farm_PrimaryProducer_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Farm: Primary Producer, Native Hawaiian or Other Pacific Islander Alone;Farms For Native Hawaiian or other Pacific Islanders;farms for native hawaiian and pacific islander communities;farms for native hawaiians and other pacific islanders;farms that are owned and operated by native hawaiians and pacific islanders;farms that support native hawaiian and pacific islander culture" -Count_Farm_PrimaryProducer_TwoOrMoreRaces,"Count of Farm: Primary Producer, Two or More Races;Multiracial Primary Producers;people of diverse backgrounds who engage in primary production;people of mixed race who are involved in primary industries" -Count_Farm_PrimaryProducer_WhiteAlone,"Count of Farm: Primary Producer, White Alone;White Population Farms;farms that are predominantly white;farms where the majority of the population is white;farms with a majority white population;white-owned farms" -Count_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Population Farm Producers;Count of Farm: Producer, American Indian or Alaska Native Alone;american indian or alaska native agricultural producers;american indian or alaska native people who are involved in agriculture;american indian or alaska native people who grow and raise crops and livestock;american indian or alaska native people who own and operate farms" -Count_Farm_Producer_AsianAlone,"Count of Farm: Producer, Asian Alone;Producer Asian Farms;asian farms, the one who produces;asian farms, the producer;the one who produces asian farms;the producer of asian farms" -Count_Farm_Producer_BlackOrAfricanAmericanAlone,"Count of Farm: Producer, Black or African American Alone" -Count_Farm_Producer_HispanicOrLatino,"Count of Farm: Producer, Hispanic or Latino;Farms with Hispanic Producers;farms operated by hispanic people;farms owned by hispanic people;farms that employ hispanic people;farms that produce hispanic-grown products" -Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"4 people who are of native hawaiian or other pacific islander descent who own or operate farms;Count of Farm: Producer, Native Hawaiian or Other Pacific Islander Alone" -Count_Farm_Producer_TwoOrMoreRaces,"Count of Farm: Producer, Two or More Races" -Count_Farm_Producer_WhiteAlone,"Count of Farm: Producer, White Alone;White Population Producer Farms;farms that produce food for white people" -Count_Farm_ReceivedGovernmentPayment,Count of Farm: Government Payment;Number of Farms Receiving Government Payments;Number of farms receiving government payments;Number of farms that receive government payments;The number of farms receiving government payments;The number of farms that receive government payments;number of agricultural operations receiving government assistance;number of farmers receiving government subsidies;number of farms receiving government payments;number of farms receiving government support -Count_Farm_ReportedIncome,Count of Farm: Reported Income;Reported Farm Income;farm income as reported;farm income as reported to the government;farm income reported to the government -Count_Farm_ReportedNetIncome,Count of Farm: Reported Net Income;Reported Net Income of Farms;farms' net income;reported net farm income -Count_Farm_Rice,Count of Farm: Rice;Number of Farms Growing Rice;Number of farms growing rice;how many farms grow rice?;how many rice farms are there?;number of farms growing rice;number of farms that grow rice;number of rice farms;number of rice-growing farms;number of rice-producing farms;what is the number of farms that grow rice?;what is the total number of rice farms? -Count_Farm_SheepAndLambs,Count of Farm: Sheep And Lambs;How many farms have sheep and lambs?;Number of Farms With Sheep and Lambs;Number of farms with sheep and lambs;how many farms are there that raise sheep and lambs?;how many farms have sheep and lambs?;number of farms that raise sheep;number of farms with sheep;number of farms with sheep and lambs;number of sheep farms;what is the number of farms that have sheep and lambs on them?;what is the number of farms that raise sheep and lambs? -Count_Farm_SorghumForGrain,Count of Farm: Sorghum for Grain;How many farms grow sorghum?;Number of Farms Growing Sorghum;Number of farms growing sorghum for grain;The number of farms growing sorghum;The number of farms that grow sorghum;The number of farms that produce sorghum;The number of sorghum farms;how many farms grow sorghum?;how many sorghum farms are there?;number of farms growing sorghum;what is the number of farms that grow sorghum?;what is the number of sorghum-growing farms? -Count_Farm_SorghumForSilageOrGreenchop,Count of Farm: Sorghum for Silage or Greenchop;Sorghum for Silage or Greenchop Population;sorghum for silage or greenchop density;sorghum for silage or greenchop number of plants per acre;sorghum for silage or greenchop population;sorghum for silage or greenchop stand -Count_Farm_SugarbeetsForSugar,Count of Farm: Sugarbeets for Sugar;How many farms grow sugarbeets for sugar production?;Number of Farms Growing Sugarbeets for Sugar Production;Number of farms growing sugarbeets for sugar;The number of farms that grow sugarbeets for sugar production;The number of farms that produce sugar from sugarbeets;The number of sugarbeet farms;number of farms growing sugarbeets for sugar production;the number of farms that grow sugarbeets for commercial purposes;the number of farms that grow sugarbeets for sugar production;the number of farms that produce sugar from sugarbeets;the number of sugarbeet farms -Count_Farm_SunflowerSeed,Count of Farm: Sunflower Seed;Number of Farms Growing Sunflower Seeds;Number of farms growing sunflower seed;how many farms are there that grow sunflower seeds?;how many farms grow sunflower seeds?;number of farms growing sunflower seeds;number of farms producing sunflower seeds;number of farms that cultivate sunflower seeds;number of farms that grow sunflower seeds;number of sunflower seed farms;what is the number of farms that grow sunflower seeds?;what is the total number of farms that grow sunflower seeds? -Count_Farm_SweetPotatoes,Count of Farm: Sweet Potatoes;Count of sweet potato farms;How many farms grow sweet potatoes;How many sweet potato farms are there;Number of Farms Growing Sweet Potatoes;Number of farms growing sweet potatoes;Number of farms that grow sweet potatoes;Total number of sweet potato farms;how many farms grow sweet potatoes?;how many farms produce sweet potatoes?;how many sweet potato farms are there?;number of farms growing sweet potatoes;what is the number of farms that grow sweet potatoes? -Count_Farm_UplandCotton,Count of Farm: Upland Cotton;How many farms grow upland cotton?;Number of Farms Growing Upland Cotton;Number of farms growing upland cotton;Number of upland cotton farms;how many farms grow upland cotton?;how many upland cotton farms are there?;number of farms growing upland cotton;what is the number of farms that grow upland cotton?;what is the number of upland cotton farms? -Count_Farm_VegetablesHarvestedForSale,1 how many farms grow vegetables for sale?;2 what is the number of farms that grow vegetables for sale?;3 what is the total number of farms that grow vegetables for sale?;4 how many farms are there that grow vegetables for sale?;Count of Farm: Vegetables Harvested for Sale;How many farms grow vegetables for sale?;Number of Farms Growing Vegetables for Sale;Number of farms growing vegetables for sale;The number of farms that grow vegetables to sell;number of farms growing vegetables for sale;number of vegetable farms;the number of farms that grow vegetables to sell -Count_Farm_WheatForGrain,Count of Farm: Wheat for Grain;Number of Farms Growing Wheat;Number of farms growing wheat for grain;The number of farms that grow wheat;how many farms grow wheat?;how many wheat farms are there?;number of farms growing wheat;number of farms that grow wheat;number of farms that produce wheat;number of wheat farms;what is the number of wheat farms?;what is the total number of farms that grow wheat? -Count_Farm_WinterWheatForGrain,Count of Farm: Winter Wheat for Grain;How many farms grow winter wheat?;Number of Farms Growing Winter Wheat;Number of farms growing winter wheat for grain;how many farms are there that grow winter wheat?;how many farms grow winter wheat?;number of farms growing winter wheat;number of farms that cultivate winter wheat;number of farms that grow winter wheat;number of winter wheat farms;what is the number of farms that grow winter wheat?;what is the total number of farms that grow winter wheat? -Count_FireEvent,Count of Fire Event;Fire Events;blazes;fire incidents;fire outbreaks;fires -Count_FireIncidentComplex,Count of Fire Incident Complex Event;Fire Incident Complex;number of complex fire events;number of complex fire incidents;number of fire incidents;number of fire-related incidents -Count_FlashFloodEvent,Count of Flash Flood Event;Flash Flood Events;number of flash flood events -Count_FloodEvent,Count of Flood Event;How many flood events have there been;How many floods have occurred;How many floods have there been;How many times has there been a flood;How often do floods happen;Number of Floods;Number of flash floods;Number of flood events;Number of flooding incidents;Number of floods;Number of inundations;Number of water inundations;number of flood events;number of flood occurrences;number of floods;number of times it has flooded -Count_FreezingFogEvent,Count of Freezing Fog Event -Count_FrostFreezeEvent,Count of Frost Freeze Event;Frost Freeze Events;frequency of frost freeze events;how many frost freeze events have there been;how often do frost freeze events occur;number of frost freeze events -Count_FunnelCloudEvent,Count of Funnel Cloud Event;Funnel Cloud Events;number of funnel cloud events;number of funnel cloud reports;number of funnel cloud sightings;number of times a funnel cloud has appeared -Count_HailEvent,Count of Hail Event;Hail Events;number of hail events;number of hail incidents;number of hail occurrences;number of times hail has fallen -Count_HeatEvent,Count of Heat Event;Frequency of heat waves;How many heat waves have occurred;How many heat waves have there been;How often do heat waves occur;Number of Heat Waves;Number of extreme heat events;Number of heat crises;Number of heat emergencies;Number of heat events;Number of heat surges;Number of heat waves;Number of heat waves experienced;how many heat waves have occurred?;how many heat waves have there been?;how many times has there been a heat wave?;what is the number of heat waves? -Count_HeatTemperatureEvent,Count of Heat Temperature Event;Heat Temperature Events;heat temperature event count -Count_HeatWaveEvent,Count of Heat Wave Event;Heat Wave Events;heat wave event count;heat wave event occurrence;heat wave occurrences;number of heat wave events -Count_HeavyRainEvent,Amount of heavy rains;Count of Heavy Rain Event;Frequency of heavy rains;Number of Heavy Rains;Number of deluges;Number of extreme rainfall events;Number of heavy precipitation events;Number of heavy rain events;Number of heavy rain incidents;Number of heavy rains;Number of torrential rain events;frequency of heavy rains;how many heavy rains are there;how often do heavy rains occur;how often it rains heavily;number of heavy downpours;number of heavy rain events -Count_HeavySnowEvent,1 How many heavy snows have there been?;Count of Heavy Snow Event;Frequency of heavy snowfall;Number of Heavy Snows;Number of blizzards;Number of extreme snow events;Number of heavy snow days;Number of heavy snow events;Number of heavy snow incidents;Number of heavy snowfall events;Number of heavy snows;Number of snowfalls that are heavy;Number of snowstorms;number of heavy snow days;number of heavy snow events;number of heavy snow storms;number of heavy snowfalls -Count_HighWindEvent,Count of High Wind Event;High Wind Events;frequency of high wind events;how many high wind events have there been;how often do high wind events occur;number of high wind events -Count_Household,Count of Household;Number of Households;Number of family units;Number of households;Number of households with housing;Number of residential units;Total number of families;Total number of homes;Total number of households;number of families;number of homes;number of households;number of living units;number of units;the number of households -Count_Household_AsianAndPacificIslandLanguagesSpokenAtHome,Asian And Pacific Island Languages Households;Count of Household: Asian And Pacific Island Languages;number of households that speak asian and pacific island languages;number of households where asian and pacific island languages are spoken -Count_Household_FamilyHousehold,Count of Household: Family Household;Family Households;household composition: family;household structure: family;household type: family;number of families in the household: 1 -Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Below Poverty Level in The Past 12 Months;Number of Family Households Below the Poverty Level in the Past 12 Months;Number of Family Households who were Below Poverty Level over the last year;Number of families in poverty in the past year;Number of families with low income in the past year;Number of family households below poverty level in the past year;Number of family households below the poverty level in the past 12 months;Number of households below poverty line in the past year;Number of households with low income in the past year;The number of family households below the poverty line in the last year;The number of family households living below the poverty line in the past year;The number of family households living in poverty in the last year;The number of family households with a low income in the last year;The number of family households with an income below the poverty line in the last year;the number of family households that had an income below the poverty line in the past 12 months;the number of family households that were below the poverty level in the past 12 months;the number of family households that were considered poor in the past 12 months;the number of family households that were struggling to make ends meet in the past 12 months" -Count_Household_FamilyHousehold_OwnerOccupied,"Count of Household: Family Household, Owner Occupied;Family Households Occupied By The Owner;households owned by the family;households where the head of household owns the home;households where the owner lives there;owner-occupied family households" -Count_Household_FamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months;Occupied Family Households Below Poverty Level in The Past 12 Months;the percentage of occupied family households that were below the poverty level in the past 12 months;the percentage of occupied family households that were experiencing economic hardship in the past 12 months;the percentage of occupied family households that were living in poverty in the past 12 months;the percentage of occupied family households that were struggling to make ends meet in the past 12 months" -Count_Household_FamilyHousehold_RenterOccupied,"Count of Household: Family Household, Renter Occupied;Renter Occupied Family Households;households that lease their homes;households where the occupants rent their home;households where the occupants rent their homes;households where the people living there pay rent to a landlord" -Count_Household_FamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months;Family Households Occupied by Renters Below Poverty Level in The Past 12 Months;the number of family households occupied by renters that were below the poverty level in the past 12 months;the percentage of family households occupied by renters that were below the poverty level in the past 12 months;the proportion of family households occupied by renters that were below the poverty level in the past 12 months;the share of family households occupied by renters that were below the poverty level in the past 12 months" -Count_Household_FamilyHousehold_With0Worker,"Count of Household: Family Household, Worker 0;Family Households with 0 Workers;households with no employed adults;households with no income from employment;households with no wage earners;households with no working adults" -Count_Household_FamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Worker 0, Below Poverty Level in The Past 12 Months;Family Households Workers Below Poverty Level in The Past 12 Months;the number of family households with workers who were below the poverty threshold in the past 12 months;the percentage of family households with workers who were below the poverty level in the past 12 months;the proportion of family households with workers who were below the poverty line in the past 12 months;the share of family households with workers who were below the poverty line in the past 12 months" -Count_Household_FamilyHousehold_With1Worker,"Count of Household: Family Household, Worker 1;Family Households With 1 Worker;households with one employed person;households with one income;households with one wage earner;households with only one employed adult" -Count_Household_FamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"1 households with one worker who earned less than the poverty line in the past year;4 families with one employed member who earned less than the poverty threshold in the last 12 months;5 households with one worker who earned less than the poverty level as defined by the us government in the past year;Count of Household: Family Household, Worker 1, Below Poverty Level in The Past 12 Months;Family Households with 1 Worker Below Poverty Level in The Past 12 Months;households with one worker below the poverty line in the past 12 months" -Count_Household_FamilyHousehold_With2Worker,"Count of Household: Family Household, Worker 2;Family Households With 2 Workers;households with two breadwinners;households with two incomes;households with two wage earners;households with two working adults" -Count_Household_FamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Worker 2, Below Poverty Level in The Past 12 Months;Family Households With 2 Workers Below Poverty Level in The Past 12 Months;families with two workers who were living in poverty in the past year;families with two working adults who earned less than the poverty line in the past year;households with two earners who were below the poverty line in the past year;households with two employed adults who were living in poverty in the past year" -Count_Household_FamilyHousehold_With3OrMoreWorker,"Count of Household: Family Household, 3 Worker or More;Family Households With 3 or More Workers;households with three or more employed people;households with three or more people who are employed;households with three or more people who work;households with three or more workers" -Count_Household_FamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months;Family Households with 3 Workers or More Below Poverty Level in The Past 12 Months;the number of family households with three or more workers who were living in poverty in the past 12 months;the percentage of family households with three or more workers who were below the poverty level in the past 12 months;the proportion of family households with three or more workers who were poor in the past 12 months;the share of family households with three or more workers who were low-income in the past 12 months" -Count_Household_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: Foreign Born, Africa;Foreign-Born In Africa Households;households in africa with at least one foreign-born member;households with foreign-born members in africa" -Count_Household_ForeignBorn_PlaceOfBirthAsia,"Count of Household: Foreign Born, Asia;Foreign Born Asian Householders;Foreign Born Population In Asia Households;asian householders born outside of the united states" -Count_Household_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: Foreign Born, Caribbean;Householders Foreign-Born In The Caribbean;caribbean-born householders;foreign-born caribbean householders;householders born in the caribbean;householders who were born in the caribbean" -Count_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: Foreign Born, Central America Except Mexico;Households Foreign Born in Central America Except Mexico;households with central american immigrants;households with central american-born residents;households with foreign-born members from central america, excluding mexico;households with members who were born in central america but not mexico" -Count_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: Foreign Born, Eastern Asia;Households of Foreign-Born Population in Eastern Asia" -Count_Household_ForeignBorn_PlaceOfBirthEurope,"Count of Household: Foreign Born, Europe;Foreign Born in Europe Households;households in europe that are made up of foreign-born people;households in europe that include foreign-born people;households in europe with at least one foreign-born member;households with foreign-born members in europe" -Count_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: Foreign Born, Latin America;Foreign-Born Households in Latin America;households in latin america that are headed by an immigrant;households in latin america that are made up of immigrants;households in latin america that include at least one immigrant;households in latin america with at least one foreign-born member" -Count_Household_ForeignBorn_PlaceOfBirthMexico,"Count of Household: Foreign Born, Country/MEX;Households of Foreign-Born Population;households with at least one foreign-born member;households with at least one person who was born in another country;households with foreign-born members;households with people who were born in another country" -Count_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: Foreign Born, Northamerica;North American Foreign-Born Households;households in north america that include foreign-born people;households in north america where at least one member was born outside of the country;households in north america with at least one immigrant member;households with foreign-born members in north america" -Count_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: Foreign Born, Northern Western Europe;Foreign Born Population in Northern Western Europe Households;count of households with foreign-born residents from northern western europe;number of households in northern western europe with residents who were not born in the country;the number of households in northern western europe with residents who were born outside of the country;the number of households with residents who were born in northern western europe but now live in the united states" -Count_Household_ForeignBorn_PlaceOfBirthOceania,"Count of Household: Foreign Born, Oceania;Households of Foreign Borns in Oceania;households with at least one foreign-born member in oceania;households with foreign-born members in oceania;households with members who are not native-born to oceania;households with members who were born outside of oceania" -Count_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: Foreign Born, South Central Asia;Households Owned By Foreign-Born Population In South Central Asia;households in south central asia owned by people who were born in another country;households in south central asia that are owned by people who are not citizens of south central asia;households in south central asia that are owned by people who have immigrated to south central asia;households owned by foreign-born people in south central asia" -Count_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: Foreign Born, South Eastern Asia;Foreign-Born Population in South Eastern Asia Households;the number of foreign-born people living in south east asian households;the number of people born outside of south east asia who live in south east asian households;the percentage of south east asian households that contain at least one person who was born outside of south east asia;the percentage of south east asian households with at least one foreign-born member" -Count_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: Foreign Born, Southamerica;Households With Foreign Born South Americans;households with south american immigrants;households with south american-born citizens;households with south american-born people;households with south american-born residents" -Count_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: Foreign Born, Southern Eastern Europe;Foreign Born In South Eastern Europe Households;households with foreign-born members from south eastern europe;households with members who are naturalized citizens of the united states but were born in south eastern europe;households with members who are not native-born americans but were born in south eastern europe;households with members who were born in south eastern europe but now live in the united states" -Count_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: Foreign Born, Western Asia;Foreign-Born Population in Western Asia;people born in other countries who live in western asia;the number of immigrants in western asia;the number of people who were born in another country and now live in western asia;the percentage of the population of western asia that was born in another country" -Count_Household_FullTimeYearRoundWorker_FamilyHousehold,"Count of Household: Family Household, Full Time Year Round Worker;Family Households Full Time Year Round Workers;families with at least one full-time, year-round worker;families with full-time, year-round workers;households with at least one full-time, year-round worker;households with full-time, year-round workers" -Count_Household_FullTimeYearRoundWorker_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months;Full-Time Year-Round Worker Family Households Below Poverty Level in The Past 12 Months;families with full-time, year-round workers who were below the poverty level in the past 12 months;families with full-time, year-round workers who were living in poverty in the past 12 months;families with full-time, year-round workers who were poor in the past 12 months;families with full-time, year-round workers who were struggling financially in the past 12 months" -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Full Time Year Round Worker;Married Couple Family Households Who are Full Time Year Round Worker;families with two parents who both work full-time, year-round;households with a married couple and children where both parents are employed full-time, year-round;households with a married couple and children where both parents work full-time, year-round;married couples who work full-time, year-round" -Count_Household_FullTimeYearRoundWorker_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months;Married Couple Family Household Full Time Year Round Worker Below Poverty Level In The Past 12 Months;number of households with a married couple, both of whom work full-time, and who had an income below the poverty line in the past 12 months;number of households with a married couple, both of whom work full-time, and who were living in poverty in the past 12 months;number of households with a married couple, both of whom work full-time, and who were poor in the past 12 months;number of households with a married couple, both of whom work full-time, and who were struggling financially in the past 12 months" -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Full Time Year Round Worker;Households Of Full Time Working Single Mothers;households headed by full-time working single mothers;households where the mother is the only parent working full-time;households where the mother is the sole provider;households with full-time working single mothers" -Count_Household_FullTimeYearRoundWorker_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Full Time Year Round Worker, Below Poverty Level in The Past 12 Months;Single Mother Family Households Full Time Year Round Worker Below Poverty Level In The Past 12 Months;number of families headed by a single mother who worked full-time year-round and had an income below the poverty level in the past 12 months;number of households headed by a single mother who worked full-time year-round and were below the poverty level in the past 12 months;number of households with a single mother who worked full-time year-round and had an income below the poverty level in the past 12 months;number of single mother families with a full-time year-round worker who were below the poverty level in the past 12 months" -Count_Household_HasComputer,1 households that have computers;2 households that own computers;3 households that are equipped with computers;4 households that have access to computers;Count of Household: Has Computer;Households with Computers -Count_Household_HasComputer_NoInternetAccess,"Count of Household: Has Computer, No Internet Access;Households With Computers and Without Internet Access;households with computers but not connected to the internet;households with computers but not connected to the world wide web;households with computers but not online;households with computers but without internet access" -Count_Household_HasComputer_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,"Count of Household: Has Computer, With Internet Subscription, Broadband Internet Such as Cable Fiber Optic or Dsl;Households With a Computer, Internet Subscription, and Broadband internets Such as Cable Fiber Optic or Dsl;households with a computer, internet access, and high-speed internet such as cable, fiber optic, or dsl;households with a computer, internet connection, and high-speed internet such as cable, fiber optic, or dsl;households with a computer, internet service, and high-speed internet such as cable, fiber optic, or dsl;households with a computer, internet subscription, and broadband internet such as cable, fiber optic, or dsl" -Count_Household_HasComputer_WithInternetSubscription_DialUpInternetOnly,"Count of Household: Has Computer, With Internet Subscription, Dial Up Internet Only;Households With Computers And Dial-Up Internet Subscriptions;households that are subscribed to dial-up internet and have computers;households that have computers and are subscribed to dial-up internet;households that have computers and dial-up internet subscriptions;households with computers and dial-up internet subscriptions" -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold,"Count of Household: Family Household, 65 Years or More;Family Households Aged 65 Years or More;households headed by someone aged 65 or more;households with at least one member aged 65 or more;households with at least one person aged 65 or more;households with at least one senior citizen" -Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months;Family Households Aged 65 Years or More Below Poverty Level in The Past 12 Months;the number of family households aged 65 years or more that were living in financial hardship in the past 12 months;the number of family households aged 65 years or more that were living in poverty in the past 12 months;the percentage of family households aged 65 years or more that were below the poverty level in the past 12 months;the proportion of family households aged 65 years or more that were poor in the past 12 months" -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, 65 Years or More;Married Couple Family Households For Population Aged 65 Years or More;households headed by a married couple aged 65 years or more;households with married couples aged 65 years or more;households with married couples in the 65+ age group;households with married couples who are 65 years or older" -Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months;Married Couple Family Households Above 65 Years Old Below Poverty Level in the Past 12 Months;households with married couples over 65 living below the poverty line in the past 12 months;households with married couples over 65 who were experiencing economic hardship in the past 12 months;households with married couples over 65 who were living in poverty in the past 12 months;households with married couples over 65 who were poor in the past 12 months" -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, 65 Years or More;Household Of Population Aged 65 Years Or More With Single Mother Family Household;household of people aged 65 years or older with a female head of household;household of people aged 65 years or older with a mother as head of household;household of people aged 65 years or older with a single mother as head of household;household of people aged 65 years or older with a single parent as head of household" -Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, 65 Years or More, Below Poverty Level in The Past 12 Months;Single Mother Family Households of Population Aged 50 Years or More Below Poverty Level in The Past 12 Months;households headed by single mothers with at least one child aged 50 or older who were below the poverty level in the past 12 months;households headed by single mothers with at least one child aged 50 or older who were living in economic distress in the past 12 months;households headed by single mothers with at least one child aged 50 or older who were living in poverty in the past 12 months;households with single mothers and at least one child aged 50 or older who were poor in the past year" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold,"Count of Household: Family Household, Bachelors Degree or Higher;Family Households With a Bachelor's Degree or Higher;households with a family member who has a bachelor's degree or higher;households with at least one member who has a bachelor's degree or higher;households with at least one parent who has a bachelor's degree or higher;households with at least one person who has completed a four-year degree" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months;Family Household With Bachelor's Degree or Higher Below Poverty Level in The Past 12 Months;households with a bachelor's degree or higher that were below the poverty line in the past 12 months;households with a bachelor's degree or higher that were living in poverty in the past 12 months;households with a bachelor's degree or higher that were poor in the past 12 months;households with a bachelor's degree or higher that were struggling financially in the past 12 months" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Bachelors Degree or Higher;Married Couple Family Household With Bachelor's Degree or Higher;household with a married couple and at least one person who has earned a bachelor's degree;household with a married couple and at least one person with a bachelor's degree;household with a married couple and at least one person with a bachelor's degree or higher;household with a married couple and at least one person with a four-year degree" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months;Married Couple Family Household With Educational Attainment Bachelor's Degree Below Poverty Level In The Past 12 Months;number of households with a married couple, at least one of whom has a bachelor's degree, and whose income was below the poverty line in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were living in poverty in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were low-income in the past 12 months;number of households with a married couple, at least one of whom has a bachelor's degree, who were poor in the past 12 months" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Bachelors Degree or Higher;Single Mother Family Householders With Bachelor's Degrees or Higher Education;single mothers who have a bachelor's degree or higher level of education;single mothers who have completed a bachelor's degree or higher;single mothers with bachelor's degrees or higher education;single mothers with post-secondary education" -Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Bachelors Degree or Higher, Below Poverty Level in The Past 12 Months;Single Mother Family Householders With Bachelor's Degree or Higher, Below Poverty Level in The Past 12 Months;single mothers with a bachelor's degree or higher who live below the poverty line;single mothers with a bachelor's degree or higher who were below the poverty line in the past 12 months;single mothers with a college degree who are living in poverty;single mothers with a college degree who were poor in the past year" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold,"Count of Household: Family Household, High School Graduate Includes Equivalency;Family Households Of High School Graduates Or Equivalent;families headed by a high school graduate or equivalent;families with at least one high school graduate or equivalent;households with at least one person who has completed high school or equivalent;households with at least one person who has graduated from high school or equivalent" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months;Family Household With Educational Attainment High School Graduate Below Poverty Level In The Past 12 Months;number of family households with at least one high school graduate or equivalency degree who were below the poverty level in the past 12 months;number of family households with at least one high school graduate or equivalency degree who were living in poverty in the past 12 months;number of households that are families with at least one high school graduate or equivalency degree who were living in poverty in the past 12 months" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, High School Graduate Includes Equivalency;Married Couple Family Households with High School Graduates Includes Equivalency;families headed by married couples with high school diplomas or equivalent;households headed by married couples with high school diplomas or equivalent;married couples with high school diplomas or equivalent;married-couple families with high school graduates or equivalent" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months;Married Couple Family Households With High School Graduate Below Poverty Level in The Past 12 Months;households with married couples and high school graduates who had low income in the past 12 months;households with married couples and high school graduates who were below the poverty line in the past 12 months;households with married couples and high school graduates who were poor in the past 12 months;households with married couples and high school graduates who were struggling financially in the past 12 months" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, High School Graduate Includes Equivalency;Single Mother Family Households with High School Graduates Includes Equivalency;families with single mothers who are high school graduates or the equivalent;households headed by single mothers who have graduated from high school or obtained an equivalent credential;households where the head of household is a single mother who has a high school diploma or equivalent;households where the head of household is a single mother who has completed high school or obtained a ged" -Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, High School Graduate Includes Equivalency, Below Poverty Level in The Past 12 Months;Single Mother Family Household With Educational Attainment High School Graduate Below Poverty Level In The Past 12 Months;the number of single-mother households with at least one high school graduate (including equivalency) who were living in economic distress in the past 12 months" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold,"Count of Household: Family Household, Less Than High School Graduate;Family Households With Less Than High School Graduate Education;households headed by someone who has not graduated from high school;households with a head of household who has not completed high school;households with a head of household who has not graduated from high school;households with a less-than-high-school-educated head of household" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months;Family Households with Population with Less Than High School Graduate Below Poverty In The Past 12 Months;families with members who have not graduated from high school and are living in poverty in the last 12 months;families with members who have not graduated from high school and are struggling financially in the last 12 months;households with people who have not graduated from high school and are below the poverty line in the last 12 months;households with people who have not graduated from high school and are experiencing poverty in the last 12 months" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Less Than High School Graduate;Married Couple Family Households With Less Than High School Graduate;households with married couples and at least one parent who has less than a high school diploma;households with married couples and at least one parent who has not attained a high school diploma;households with married couples and at least one parent who has not earned a high school diploma;households with married couples and at least one parent who has not graduated from high school" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months;Married Couple Family Households Less Than High School Graduates Below Poverty Level In The Past 12 Months;number of households headed by a married couple with less than a high school diploma and with income below the poverty line in the past 12 months;number of married couples with less than a high school diploma and with income below the poverty line in the past year;number of married-couple families with less than a high school diploma and with income below the poverty line in the past 12 months;number of married-couple families with less than a high school diploma and with income below the poverty line in the past year" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Less Than High School Graduate;Single Mother Family Households With Less Than High School Graduate Education;households headed by single mothers with less than a high school diploma;households headed by single mothers with low educational attainment;households with single mothers who have not completed high school;households with single mothers who have not graduated from high school" -Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Less Than High School Graduate, Below Poverty Level in The Past 12 Months;Single Mother Family Household Less Than High School Graduates Below Poverty Level in The Past 12 Months;families with a single mother who has not graduated from high school and who are living in poverty;households headed by a single mother with less than a high school diploma and with an income below the poverty line;single mothers with less than a high school diploma who live below the poverty line;single-parent households headed by a woman with less than a high school diploma and living below the poverty line" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold,"Count of Household: Family Household, Some College or Associates Degree;Family Households with Some College or Associate's Degrees;households with at least one college-educated member;households with at least one family member who has some college or an associate's degree;households with at least one member who has some college or an associate's degree;households with at least one member who has some postsecondary training" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months;Family Households With Some College Or Associate's Degree With Below Poverty Level In The Past 12 Months;households with at least one member who has some college or an associate's degree and who were considered poor in the past 12 months;households with at least one member who has some college or an associate's degree and who were living in poverty in the past 12 months;households with at least one member who has some college or an associate's degree and whose income was below the poverty line in the past 12 months;households with at least one member who has some college or an associate's degree and whose income was insufficient to meet their basic needs in the past 12 months" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold,"1 households with married couples and at least one person with some college or an associate's degree;Count of Household: Married Couple Family Household, Some College or Associates Degree;Married Couple Family Households With Some College or Associate's Degrees;households with married couples and at least one person who has an associate's degree;households with married couples and at least one person who has some college or an associate's degree, but not a bachelor's degree;households with married couples and at least one person with some college or an associate's degree" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months;Married Couple Family Household With Some College or Associate's Degree Below Poverty Level in The Past 12 Months;a married couple with some college or an associate's degree who lived below the poverty line in the past 12 months;a married couple with some college or an associate's degree who were impoverished in the past 12 months;a married couple with some college or an associate's degree who were low-income in the past 12 months;a married couple with some college or an associate's degree who were struggling financially in the past 12 months" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Some College or Associates Degree;Single Mother Family Household With Some College or Associate's Degree;a family unit where the mother is the only parent and she has some college or an associate's degree;a family with a single mother who has some college or an associate's degree;a home where the head of the household is a single mother who has some college or an associate's degree;a household headed by a single mother who has some college or an associate's degree" -Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Some College or Associates Degree, Below Poverty Level in The Past 12 Months;Single Mother Family Households With Associate Degree Below Poverty Level In The Past 12 Months;the number of single-mother family households with an associate degree who were below the poverty line in the past 12 months;the percentage of single-mother family households with an associate degree who were below the poverty level in the past 12 months;the proportion of single-mother family households with an associate degree who were living in poverty in the past 12 months;the share of single-mother family households with an associate degree who were poor in the past 12 months" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Count of Household: American Indian or Alaska Native Alone;Households of American Indians or Alaska Natives;households headed by american indians or alaska natives;households of people who identify as american indian or alaska native;households that include american indians or alaska natives;households with american indian or alaska native members -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold,"American Indian or Alaska Native Family Households;Count of Household: Family Household, American Indian or Alaska Native Alone;american indian or alaska native families;american indian or alaska native-headed households;families headed by an american indian or alaska native;households with an american indian or alaska native as the householder" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"American Indians or Alaska Natives Family Households Below Poverty Level in The Past 12 Months;Count of Household: Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months;what percentage of american indian or alaska native family households lived below the poverty level in the past 12 months?;what percentage of american indian or alaska native family households were below the poverty level in the past 12 months?;what proportion of american indian or alaska native family households were below the poverty level in the past 12 months?;what was the poverty rate among american indian or alaska native family households in the past 12 months?" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold,"American Indian or Alaska Native Married Couple Family Households;Count of Household: Married Couple Family Household, American Indian or Alaska Native Alone;american indian or alaska native households headed by a married couple;american indian or alaska native married couples with children;american indian or alaska native married-couple families;households with american indian or alaska native married couples" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"American Indian Or Alaska Native Married Couple Households Living Below Poverty Level In The Past 12 Months;Count of Household: Married Couple Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months;what is the percentage of american indian or alaska native married couple households with incomes below the poverty line?;what is the poverty rate for american indian or alaska native married couple households?;what percentage of american indian or alaska native married couple households lived below the poverty level in the past 12 months?;what percentage of american indian or alaska native married couple households were poor in the past 12 months?" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold,"American Indian or Alaska Native Single Mother Family Households;Count of Household: Single Mother Family Household, American Indian or Alaska Native Alone;american indian or alaska native single-mother households;households headed by an american indian or alaska native single mother;households led by an american indian or alaska native single mother;households with an american indian or alaska native single mother" -Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"American Indian or Alaska Native Single Mother Family Households Below Poverty Level in The Past 12 Months;Count of Household: Single Mother Family Household, American Indian or Alaska Native Alone, Below Poverty Level in The Past 12 Months;what is the poverty rate for american indian or alaska native single mother family households in the past 12 months?;what percentage of american indian or alaska native single mother families lived in poverty in the past 12 months?;what percentage of american indian or alaska native single mother family households were below the poverty level in the past 12 months?;what proportion of american indian or alaska native single mother family households were below the poverty line in the past 12 months?" -Count_Household_HouseholderRaceAsianAlone,Asian Households;Count of Household: Asian Alone;asian-led households;households that are predominantly asian;households that have at least one asian member;households with asian members -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold,"Asian Family Households;Count of Household: Family Household, Asian Alone;asian families;asian-american families;families of asian descent;families with asian heritage" -Count_Household_HouseholderRaceAsianAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Asian Alone, Below Poverty Level in The Past 12 Months;Family Households of Asians Below Poverty Level in The Past 12 Months;the number of asian families living in poverty in the past 12 months;the percentage of asian families living below the poverty line in the past 12 months;the proportion of asian families living in poverty in the past 12 months;the rate of poverty among asian families in the past 12 months" -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Asian Alone;Family Households of Asian Married Couple;asian households with married parents;asian households with married parents and children;asian married couples with children;households of asian married couples" -Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Asian Married Couple Family Households Below Poverty Level in The Past 12 Months;Count of Household: Married Couple Family Household, Asian Alone, Below Poverty Level in The Past 12 Months;asian married couples living below the poverty line in the past 12 months;asian married couples who were experiencing financial hardship in the past 12 months;asian married couples who were living in poverty in the past 12 months;asian married couples who were poor in the past 12 months" -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold,"Asian Single Mother Family Households;Count of Household: Single Mother Family Household, Asian Alone;asian households with single mothers;families with single asian mothers;households headed by single asian mothers;single asian mothers and their families" -Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Asian Single Mother Family Households Below Poverty Level in The Past 12 Months;Count of Household: Single Mother Family Household, Asian Alone, Below Poverty Level in The Past 12 Months;how many asian single-mother households were below the poverty line in the past 12 months?;what percentage of asian single-mother households were below the poverty line in the past 12 months?;what proportion of asian single-mother households lived in poverty in the past year?;what was the percentage of asian single-mother households living in poverty in the past year?" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone,African American Population Households;Count of Household: Black or African American Alone;african american households;households of african americans;the number of african american households;the number of households headed by african americans -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,"African American Family Households;Count of Household: Family Household, Black or African American Alone;african american families;black family households;families of african descent;families with african american parents" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"African American Family Households Below Poverty Level in The Past 12 Months;Count of Household: Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months;how many african american family households were living below the poverty line in the past 12 months?;what percentage of african american family households were below the poverty line in the past 12 months?;what proportion of african american family households were living in poverty in the past 12 months?;what was the poverty rate among african american family households in the past 12 months?" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold,"African Americans Married Couple Family Households;Count of Household: Married Couple Family Household, Black or African American Alone;african american married-couple households;households headed by african american married couples;households with african american married couples;households with african american married couples as heads of household" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months;Family Households of African American Married Couples Below Poverty Level in the Past 12 Months;the number of african american married couples living below the poverty line in the past 12 months;the percentage of african american married couples living below the poverty line in the past 12 months;the proportion of african american married couples living below the poverty line in the past 12 months;the share of african american married couples living below the poverty line in the past 12 months" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold,"African American Single Mother Households;Count of Household: Single Mother Family Household, Black or African American Alone;african american families headed by single mothers;african american households headed by single mothers;households in the african american community headed by single mothers;single mothers in african american households" -Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"African American Single Mother Households Below Poverty Level in The Past 12 Months;Count of Household: Single Mother Family Household, Black or African American Alone, Below Poverty Level in The Past 12 Months;how many african american single mother households were living in poverty in the past 12 months?;what percentage of african american single mother households were below the poverty line in the past 12 months?;what proportion of african american single mother households were living in poverty in the past 12 months?;what was the percentage of african american single mother households living in poverty in the past 12 months?" -Count_Household_HouseholderRaceHispanicOrLatino,Count of Household: Hispanic or Latino;Hispanic Households;hispanic-headed households;households of hispanic origin;households that are hispanic;households with hispanic members -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold,"Count of Household: Family Household, Hispanic or Latino;Hispanic Family Households;families with hispanic heritage;families with hispanic roots;hispanic families;households with hispanic ancestry" -Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months;Hispanic Family Households Below Poverty Level in The Past 12 Months;the number of hispanic family households living below the poverty line in the past 12 months;the number of hispanic family households living in poverty in the past 12 months;the percentage of hispanic family households living below the poverty level in the past 12 months;the proportion of hispanic family households living in poverty in the past 12 months" -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Hispanic or Latino;Hispanic Married Couple Family Households;hispanic families headed by a married couple;hispanic families with married parents;hispanic households headed by a married couple;hispanic married couples living together with their children" -Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months;Hispanic with Married Couple Family Households Below Poverty Level in The Past 12 Months;the number of hispanic married-couple families living below the poverty line in the past 12 months;the percentage of hispanic married-couple families living below the poverty line in the past 12 months;the proportion of hispanic married-couple families living below the poverty line in the past 12 months;the share of hispanic married-couple families living below the poverty line in the past 12 months" -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Hispanic or Latino;Single Mother Family Households Of Hispanic Population;hispanic families with single mothers;hispanic households with single parents;hispanic single-mother households;households headed by hispanic single mothers" -Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Hispanic or Latino, Below Poverty Level in The Past 12 Months;Single Mother Family Households of Hispanic Population Below Poverty Level in The Past 12 Months;the number of hispanic single-mother households with incomes below the poverty line in the past 12 months;the percentage of hispanic single-mother households living below the poverty line in the past 12 months;the proportion of hispanic single-mother families living in poverty in the past year;the share of hispanic single-mother families with incomes below the poverty line in the past year" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Count of Household: Native Hawaiian or Other Pacific Islander Alone;Native Hawaiian or Other Pacific Islander Households;households of native hawaiian or other pacific islander descent;households that are made up of native hawaiian or other pacific islander people;households that are native hawaiian or other pacific islander;households that identify as native hawaiian or other pacific islander -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold,"Count of Household: Family Household, Native Hawaiian or Other Pacific Islander Alone;Native Hawaiian or Other Pacific Islander Family Households;families or households of native hawaiian or other pacific islander descent;families with a native hawaiian or other pacific islander as the head of household;families with native hawaiian or other pacific islander members;native hawaiian or other pacific islander families" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months;Family Households of Native Hawaiian or Other Pacific Islander Population Below Poverty Level in The Past 12 Months;the number of native hawaiian or other pacific islander family households living below the poverty line in the past 12 months;the number of native hawaiian or other pacific islander family households living in poverty in the past 12 months;the percentage of native hawaiian or other pacific islander family households living below the poverty level in the past 12 months;the proportion of native hawaiian or other pacific islander family households living in poverty in the past 12 months" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Native Hawaiian or Other Pacific Islander Alone;Native Hawaiian or Other Pacific Islander Married Couple Family Households;households headed by a married couple of native hawaiian or other pacific islander origin;households with a married couple of native hawaiian or other pacific islander origin as the head of household;households with a native hawaiian or other pacific islander husband and wife as the head of household;households with a native hawaiian or other pacific islander married couple as the head of household" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months;Native Hawaiian or Other Pacific Islanders Married Couple Family Households Below Poverty Level in The Past 12 Months;what is the percentage of native hawaiian or other pacific islander married couple family households with incomes below the poverty line in the past 12 months?;what is the poverty rate for native hawaiian or other pacific islander married couple family households in the past 12 months?;what percentage of native hawaiian or other pacific islander married couple family households lived in poverty in the past 12 months?;what percentage of native hawaiian or other pacific islander married couple family households were below the poverty level in the past 12 months?" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Native Hawaiian or Other Pacific Islander Alone;Native Hawaiian Or Other Pacific Islander Single Mother Households;households headed by single native hawaiian or other pacific islander mothers;households with a single mother who is native hawaiian or other pacific islander;households with a single native hawaiian or other pacific islander mother;native hawaiian or other pacific islander single-mother households" -Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Native Hawaiian or Other Pacific Islander Alone, Below Poverty Level in The Past 12 Months;Native Hawaiian or Other Pacific Islander Single Mother Family Households Below Poverty Level in The Past 12 Months;the number of native hawaiian or other pacific islander single mother family households that were below the poverty line in the past 12 months;the percentage of native hawaiian or other pacific islander single mother family households that were below the poverty level in the past 12 months;the proportion of native hawaiian or other pacific islander single mother family households that were living in poverty in the past 12 months;the share of native hawaiian or other pacific islander single mother family households that were poor in the past 12 months" -Count_Household_HouseholderRaceSomeOtherRaceAlone,"Count of Household: Some Other Race Alone;Households With Some Other Race Population;households with a population of a race other than the three major races;households with a population of a race other than the three most common races;households with a population of a race other than white, black, or asian;households with a population of some other race" -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold,"Count of Household: Family Household, Some Other Race Alone;Some Other Race Family Households;families of mixed race;families with members of more than one race;households with a mixed-race family;households with a primary caregiver who identifies as ""some other race""" -Count_Household_HouseholderRaceSomeOtherRaceAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months;Some Other Race Family Households With Below Poverty Level in The Past 12 Months;the number of family households of some other race with income below the poverty level in the past 12 months;the percentage of family households of some other race with income below the poverty level in the past 12 months;the proportion of family households of some other race with income below the poverty level in the past 12 months;the share of family households of some other race with income below the poverty level in the past 12 months" -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Some Other Race Alone;Some Other Race Married Couple Family Households;households of married couples of some other race;households of married couples who identify as some other race;households with married couples of some other race;households with married couples who are of some other race" -Count_Household_HouseholderRaceSomeOtherRaceAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months;Some Other Race Married Couple Family Households Below Poverty Level in The Past 12 Months;the number of married-couple families of some other race that had incomes below the poverty line in the past 12 months;the number of married-couple families of some other race that were living in poverty in the past 12 months;the percentage of married-couple families of some other race that were below the poverty level in the past 12 months;the proportion of married-couple families of some other race that were poor in the past 12 months" -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Some Other Race Alone;Single Mother Family Households of Some Other Race Population;families with single mothers of other races;families with single mothers who are not caucasian;households headed by single mothers of other races;single-mother households of other races" -Count_Household_HouseholderRaceSomeOtherRaceAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Some Other Race Alone, Below Poverty Level in The Past 12 Months;Some Other Race Households of Single Mothers Below Poverty Level in The Past 12 Months;households of single mothers of other races who were below the poverty level in the past 12 months;households of single mothers of other races who were living in poverty in the past 12 months;households of single mothers of other races who were not able to meet their basic needs in the past 12 months;households of single mothers of other races who were struggling financially in the past 12 months" -Count_Household_HouseholderRaceTwoOrMoreRaces,Count of Household: Two or More Races;Multiracial Householders -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold,"Count of Household: Family Household, Two or More Races;Multiracial Family Households;households with interracial families" -Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, Two or More Races, Below Poverty Level in The Past 12 Months;Multiracial Family Households Below Poverty Level in The Past 12 Months;what is the poverty rate for multiracial family households?;what is the poverty rate for multiracial households with children?;what percentage of multiracial families live in poverty?;what percentage of multiracial family households were below the poverty level in the past 12 months?" -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, Two or More Races;Multiracial Married Couple Family Households;families with interracial married parents;households with biracial married couples;households with interracial married couples" -Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Two or More Races, Below Poverty Level in The Past 12 Months;Multiracial Married Couple Family Households Below Poverty Level in the Past 12 Months;the number of multiracial married couple families with incomes below the poverty line in the past 12 months;the percentage of multiracial married couple families living below the poverty line in the past 12 months;the proportion of multiracial married couple families with incomes below the poverty line in the past 12 months;the share of multiracial married couple families living in poverty in the past 12 months" -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, Two or More Races;Households Of Multiracial Single Mother Families;families with multiracial single mothers;families with single mothers who are multiracial;households of multiracial single parents;households with multiracial single parents" -Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Two or More Races, Below Poverty Level in The Past 12 Months;Multiracial Households With Single Mothers Below Poverty Level in The Past 12 Months;the number of multiracial households with single mothers who were living below the poverty line in the past 12 months;the number of multiracial households with single mothers who were poor in the past 12 months;the percentage of multiracial households with single mothers who were below the poverty level in the past 12 months;the proportion of multiracial households with single mothers who were living in poverty in the past 12 months" -Count_Household_HouseholderRaceWhiteAlone,Count of Household: White Alone;Households of White Population;households of white people;households with white residents;white households;white-occupied households -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,"Count of Household: White Alone Not Hispanic or Latino;White Non-Hispanic Households;households headed by a white person who is not hispanic;households where the householder is white and not hispanic;households with a white, non-hispanic head of household;households with a white, non-hispanic householder" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold,"Count of Household: Family Household, White Alone Not Hispanic or Latino;Households of White And Non-Hispanic People With Families;families of white and non-hispanic people;households of white and non-hispanic people with families;white and non-hispanic families;white and non-hispanic households with families" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months;Family Households of White Non-Hispanic Population Below Poverty Level in The Past 12 Months;the number of white non-hispanic families living in poverty in the past 12 months;the percentage of white non-hispanic families living below the poverty line in the past 12 months;the percentage of white non-hispanic families that were poor in the past 12 months;the proportion of white non-hispanic households with incomes below the poverty line in the past year" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, White Alone Not Hispanic or Latino;Married Couple Family Households of White Non-Hispanic Population;households headed by married white non-hispanic couples;households of married couples with white non-hispanic heads of household;households with married white non-hispanic couples as heads of household;households with white non-hispanic married couples as householders" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months;White Non-Hispanic Married Couple Family Households Below Poverty Level in The Past 12 Months;white, non-hispanic married couples living in poverty in the past 12 months;white, non-hispanic married couples who were poor in the past 12 months;white, non-hispanic married couples who were struggling financially in the past 12 months;white, non-hispanic married couples with incomes below the poverty line in the past 12 months" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, White Alone Not Hispanic or Latino;White Non Hispanic Single Mother Family Households;the number of households headed by a single mother who is white and not hispanic or latino;the number of households with a mother who is white and not hispanic or latino as the head of household;the number of households with a single mother who is white and not hispanic or latino;the number of households with a single parent who is white and not hispanic or latino as the head of household" -Count_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, White Alone Not Hispanic or Latino, Below Poverty Level in The Past 12 Months;Households of White Non-Hispanic Single Mothers Below Poverty Level in The Past 12 Months;households headed by white non-hispanic single mothers living below the poverty line in the past 12 months;white non-hispanic single mothers living below the poverty line in the past 12 months;white non-hispanic single mothers with households below the poverty line in the past 12 months;white non-hispanic single-mother households living below the poverty line in the past 12 months" -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold,"Count of Household: Family Household, White Alone;Family Households of White Population;families of white people;families with white people as the head of household;white family households" -Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Family Household, White Alone, Below Poverty Level in The Past 12 Months;White Population Family Households Below Poverty Level in The Past 12 Month;how many white households were below the poverty line in the past year?;what percentage of white households were below the poverty line in the past 12 months?;what proportion of white families lived in poverty in the past year?;what was the poverty rate for white households in the past year?" -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold,"Count of Household: Married Couple Family Household, White Alone;White Households Married Couple Family;a married white couple and their children;a white family with two parents;a white household with a husband and wife;a white nuclear family" -Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, White Alone, Below Poverty Level in The Past 12 Months;Married White Couple Family Households Below Poverty Level in The Past 12 Months;the number of married white couple family households living below the poverty line in the past 12 months;the number of married white couple family households living in poverty in the past 12 months;the percentage of married white couple family households living below the poverty level in the past 12 months;the proportion of married white couple family households living in poverty in the past 12 months" -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold,"Count of Household: Single Mother Family Household, White Alone;Single Mother Family Households of White Population;households headed by white single mothers;white families headed by single mothers;white single-mother households;white single-parent households" -Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, White Alone, Below Poverty Level in The Past 12 Months;Single Mother Family Households For White Population Below Poverty Level in The Past 12 Months;what percentage of white single-mother households were below the poverty line in the past 12 months?;what proportion of white single-mother households in the us were living in poverty in the past 12 months?;what was the percentage of white single-mother households living below the poverty line in the past 12 months?;what was the poverty rate for white single-mother households in the us in the past 12 months?" -Count_Household_Houseless,Count of Household: Houseless;Houseless -Count_Household_Houseless_Rural,"Count of Household: Houseless, Rural;Houseless in Rural;number of households with no permanent address in rural areas;number of rural households with no home" -Count_Household_Houseless_Urban,"Count of Household: Houseless, Urban;Houseless in Urban;number of houseless households in cities;number of people living in houseless households in cities" -Count_Household_InternetWithoutSubscription,1 Number of households without internet access;Count of Household: Internet Without Subscription;How many households don't have internet;Number of Households Without Internet;Number of households without an internet subscription;Number of households without broadband internet;Number of households without home internet;Number of households without internet;Number of households without internet access;The number of families without internet service;The number of homes without internet access;The percentage of homes without internet;how many households are without internet?;how many households do not have internet access?;how many households don't have internet?;what's the number of households without internet? -Count_Household_LimitedEnglishSpeakingHousehold,Count of Household: Limited English Speaking Household;Limited English Speaking Households;households where english is not the home language;households where english is not the primary language spoken;households where some or all members do not speak english well;households with limited english proficiency -Count_Household_LimitedEnglishSpeakingHousehold_AsianAndPacificIslandLanguagesSpokenAtHome,"Asians And Pacific Islanders With Limited English Speaking Household;Count of Household: Limited English Speaking Household, Asian And Pacific Island Languages;asian and pacific islander households with limited english proficiency;households of asians and pacific islanders with limited english proficiency;households with limited english-speaking asian americans and pacific islanders;households with limited english-speaking asian and pacific islanders" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Asia;Households of Foreign-Born Population in Asia Moderately Fluent in English;english proficiency of foreign-born households in asia;extent of english fluency among foreign-born households in asia;how well foreign-born households in asia speak english;level of english proficiency among foreign-born households in asia" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: Limited English Speaking Household, Foreign Born, Caribbean;Households of Foreign-Born-Population In the Caribbean Moderately Fluent in English;caribbean households with foreign-born residents who are moderately fluent in english;households in the caribbean with foreign-born residents who are somewhat fluent in english;households in the caribbean with foreign-born residents who have a moderate level of english proficiency;households in the caribbean with foreign-born residents who speak english moderately well" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: Limited English Speaking Household, Foreign Born, Central America Except Mexico;Households of Foreign-Born-Population In Central America Moderately Fluent in English;central american households with foreign-born members who are moderately fluent in english;households in central america with foreign-born members who are somewhat fluent in english;households in central america with foreign-born members who have a moderate command of english;households in central america with foreign-born members who speak english moderately well" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthCountry/MEX,"Count of Household: Limited English Speaking Household, Foreign Born, Country/MEX;Foreign-Born Households in Mexico Moderately Fluent in English;households in mexico with foreign-born members who are moderately fluent in english;households in mexico with members who are not native speakers of english but can speak it fairly well;households in mexico with members who have a moderate level of english proficiency;households in mexico with members who were born in another country and are moderately fluent in english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Eastern Asia;Foreign-Born in Eastern Asia Limited English Speaking Households;households in eastern asia where english is not the primary language spoken;households in eastern asia where residents are not native english speakers;households in eastern asia where residents have a limited understanding of english;households in eastern asia with limited english proficiency" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Europe;Foreign-Born Population Household In Europe Speaking Limited English;households in europe with foreign-born members who have a limited command of english;households in europe with foreign-born members who have difficulty speaking english;households in europe with foreign-born members who have limited english proficiency;households in europe with foreign-born members who speak limited english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: Limited English Speaking Household, Foreign Born, Latin America;Foreign-Born in Latin America Limited English Speaking Households;households in latin america where english is not spoken by most residents;households in latin america where english is not the primary language spoken;households in latin america where the majority of residents do not speak english;households in latin america where the primary language spoken is not english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Northern Western Europe;Foreign Born Northern Western European Households Speaking Limited English;households of people from northern western europe who are not native english speakers;households of people from northern western europe who have a limited command of english;households of people from northern western europe who speak english as a second language;households of people from northern western europe who were born in another country and speak limited english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: Limited English Speaking Household, Foreign Born, South Central Asia;Households of Foreign-Born Population in South Central Asia Moderately Fluent in English;households in south central asia with foreign-born residents who are able to communicate in english at a moderate level;households in south central asia with foreign-born residents who have a moderate level of english proficiency;households in south central asia with foreign-born residents who speak english moderately well;south central asian households with foreign-born residents who are moderately fluent in english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, South Eastern Asia;Limited English Speaking of Foreign Borns in South Eastern Asia Households;foreign-borns in southeast asian households who speak little or no english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: Limited English Speaking Household, Foreign Born, Southamerica;Households With Foreign Born in South America Owners Who Speak Limited English;households with owners who were born in south america and are not fluent in english;households with owners who were born in south america and have limited english proficiency;households with owners who were born in south america and speak english as a second language;households with owners who were born in south america and speak limited english" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: Limited English Speaking Household, Foreign Born, Southern Eastern Europe;Households of Foreign-Born Population in Southern Eastern Europe Moderately Fluent in English;households with foreign-born residents in southern eastern europe who are able to speak english at a moderate level;households with foreign-born residents in southern eastern europe who are moderately fluent in english;households with foreign-born residents in southern eastern europe who have a moderate level of english proficiency;households with foreign-born residents in southern eastern europe who speak english moderately well" -Count_Household_LimitedEnglishSpeakingHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: Limited English Speaking Household, Foreign Born, Western Asia;Households of Foreign-Born Population in Western Asia Moderately Fluent in English;english proficiency among foreign-born households in western asia;how well foreign-born households in western asia speak english;the english skills of foreign-born households in western asia;the level of english fluency among foreign-born households in western asia" -Count_Household_LimitedEnglishSpeakingHousehold_OtherIndoEuropeanLanguagesSpokenAtHome,"Count of Household: Limited English Speaking Household, Other Indo European Languages;Other Indo-European Languages Speaking Households with Limited English Speaking;households that speak indo-european languages other than english and have difficulty speaking english;households that speak indo-european languages other than english and have difficulty understanding english;households that speak indo-european languages other than english and have limited english skills;households that speak other indo-european languages and have limited english proficiency" -Count_Household_LimitedEnglishSpeakingHousehold_OtherLanguagesSpokenAtHome,"Count of Household: Limited English Speaking Household, Other Languages;Households Speaking Limited English and Other Languages;households speaking limited english or other languages;households with limited english speakers and speakers of other languages;households with people who speak english as a second language" -Count_Household_LimitedEnglishSpeakingHousehold_SpanishSpokenAtHome,"Count of Household: Limited English Speaking Household, Spanish;Spanish Household Limited English Speakers;homes where spanish is the first language and english is not well-mastered;homes where spanish is the main language and english is not well-known;households where spanish is the dominant language and english is not fluent;spanish-speaking households with limited english proficiency" -Count_Household_MarriedCoupleFamilyHousehold,Count of Household: Married Couple Family Household;Number of Households Containing a Married Couple;Number of families with married couples;Number of homes with married couples;Number of households that are married;Number of households with married couples;Number of households with two partners;Number of married couple family households;Number of married couples households;Number of married households;The percentage of households that are married;households with married couples as householders;number of households headed by married couples;number of households with married couples;number of married-couple households;the number of married households -Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Below Poverty Level in The Past 12 Months;How many married-couple families were living below the poverty line in the last year?;Number of Married Couple Family Households Below Poverty Level in the Past 12 Months;Number of Married Couple Family Households who were Below Poverty Level over the last year;Number of married couple family households below poverty level in the past 12 months;Number of married-couple families living in poverty over the last year;Number of married-couple households with incomes below the poverty line in the past year;The number of married couple family households that were below the poverty level last year;The number of married-couple families living below the poverty line in the last year;how many married couples are living in poverty?;how many married couples live below the poverty line?;what is the number of married couple households below the poverty line?;what is the percentage of married couple households below the poverty line?" -Count_Household_MarriedCoupleFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Married Couple Family Household, Mobile Homes And All Other Types of Units;Married Couple Family Households With Mobile Homes And All Other Types Of Units;number of households with married couples, mobile homes, and all other types of units;number of households with married couples, mobile homes, and other housing units;number of households with married couples, mobile homes, and other living arrangements;number of households with married couples, mobile homes, and other types of units" -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied,"Count of Household: Married Couple Family Household, Owner Occupied;Occupied Married Couple Family Households;households with a husband and wife living together;households with a married couple and other relatives living together;households with a married couple and their children living together;married-couple families" -Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months;Married Couple Family Household Owner Occupied Below Poverty Level in The Past 12 Months;Owner Occupied Married Couple Family Households Below Poverty Level in The Past 12 Months;households of married couples living in owner-occupied homes below the poverty line in the past 12 months;married couples living in owner-occupied households below the poverty line in the past 12 months;owner-occupied households of married couples below the poverty line in the past 12 months;the number of married-couple family households that were owner-occupied and below the poverty level in the past 12 months" -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied,"Count of Household: Married Couple Family Household, Renter Occupied;Married Couple Family Households Occupied Renter;number of households with a married couple and children who are living in a rented property;number of households with a married couple and children who are renters;number of households with a married couple and children who are renting their home;the number of households that are occupied by married couples and their children who are renters" -Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months;Married Couple Family Households Occupied Renter Living Below Poverty Level in The Past 12 Months;renters in married couple family households who had low income in the past 12 months;renters in married couple family households who lived below the poverty level in the past 12 months;renters in married couple family households who were poor in the past 12 months;renters in married couple family households who were struggling financially in the past 12 months" -Count_Household_MarriedCoupleFamilyHousehold_SingleUnit,"Count of Household: Married Couple Family Household, Single Unit;Married Couple Family Households in Single Unit;married couple family household, single unit;number of households: married couple family households and single units" -Count_Household_MarriedCoupleFamilyHousehold_TwoOrMoreUnits,"Count of Household: Married Couple Family Household, Two or More Units;Married Couple Family Households in Two Or More Units;the number of households headed by a married couple with two or more units;the number of households that are headed by a married couple and have two or more units;the number of households that are married couple families with two or more units;the number of married couple family households with two or more units" -Count_Household_MarriedCoupleFamilyHousehold_With0Worker,"Count of Household: Married Couple Family Household, Worker 0;Married Couple Family Household 0 Workers;a married couple living together with no children" -Count_Household_MarriedCoupleFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 0, Below Poverty Level in The Past 12 Months;Married Couple Family Households with 0 Workers Below Poverty Level in The Past 12 Months;households with a married couple and no earned income below the poverty line in the past 12 months;households with a married couple and no employed members with income below the poverty line in the past 12 months;households with a married couple and no income from employment below the poverty line in the past 12 months;households with a married couple and no workers with income below the poverty line in the past 12 months" -Count_Household_MarriedCoupleFamilyHousehold_With1Worker,"Count of Household: Married Couple Family Household, Worker 1;Married Couple Family Households With 1 Worker;households with a married couple and one employed person;households with a married couple and one income earner;households with a married couple and one wage earner;households with a married couple and one worker" -Count_Household_MarriedCoupleFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 1, Below Poverty Level in The Past 12 Months;Married Couple Family Households With One Worker Below Poverty Level in The Past 12 Months;the number of households with a married couple and a worker who was living in poverty in the past 12 months;the number of married couple families with a worker who was low-income in the past 12 months;the number of married couple families with a worker who was poor in the past 12 months" -Count_Household_MarriedCoupleFamilyHousehold_With2Worker,"Count of Household: Married Couple Family Household, Worker 2;Married Couple Family Households with 2 Workers;couples with two jobs;dual-income married couples;households with two working spouses;two-earner married couples" -Count_Household_MarriedCoupleFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, Worker 2, Below Poverty Level in The Past 12 Months;Married Couple Family Households with 2 Workers Below Poverty Level in The Past 12 Months;couples with two working partners who were earning less than the poverty line in the past year;households with two working spouses who fell below the poverty line in the past year;households with two working spouses who were below the poverty line in the past 12 months;households with two working spouses who were below the poverty line in the past year" -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker,"Count of Household: Married Couple Family Household, 3 Worker or More;Married Couple Family Households With 3 Workers or More;households with married couples and 3 or more workers;households with married couples and multiple earners;households with married couples and multiple income earners;households with married couples and multiple wage earners" -Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"Count of Household: Married Couple Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months;Married Couple Family Household With 3 Workers or More Below Poverty Level in The Past 12 Months;a household with a married couple and three or more workers who earned less than the poverty line in the past 12 months;a household with a married couple and three or more workers who were below the poverty line in the past 12 months;a household with a married couple and three or more workers who were living in poverty in the past 12 months;a household with a married couple and three or more workers who were struggling to make ends meet in the past 12 months" -Count_Household_NoComputer,Count of Household: Has Computer is False;Households With Computer False;a number of households do not have a computer -Count_Household_NoHealthInsurance,Count of Household: No Health Insurance;How many households don't have health coverage;How many households don't have health insurance;How many households lack health insurance;Number of Households Without Health Insurance;Number of families with no insurance;Number of families without insurance;Number of homes without coverage;Number of households with no health insurance;Number of households without coverage;Number of households without health insurance;What's the number of households without health care;What's the number of households without health insurance;how many households are uninsured?;how many households do not have health insurance?;how many people live in households without health insurance?;what is the number of households without health insurance? -Count_Household_NoInternetAccess,Count of Household: No Internet Access;Households With No Internet Access;households that are not connected to the internet;households that are offline;households that don't have internet access;households without internet access -Count_Household_NonfamilyHousehold,Count_Household_NonfamilyHousehold;Number of Households Where a Person Lives Alone or Where the Householder Shares the Home Exclusively With People to Whom They Are Not Related;Number of homes where the person lives alone;Number of homes with only one person living;Number of households where a person lives alone or where the householder shares the home exclusively with people to whom they are not related;Number of households where the person shares the home only with non-relatives;Number of households with one person;Number of households with one person living alone or with unrelated people;Number of households with only unrelated people;Number of nonfamily households;Number of one-person households;Number of people living in households with unrelated people;Number of people living in single-person households;number of households with a person living alone or with roommates;number of households with a person living alone or with unrelated people;number of households with one person living alone;number of households with unrelated people living together -Count_Household_NonfamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Nonfamily Household, Mobile Homes And All Other Types of Units;Nonfamily Households With Mobile Homes And All Other Types Of Units;number of households that are not families, including mobile homes and all other types of units;number of households that are not families, mobile homes, and all other types of units;number of households that are not families, mobile homes, or any other type of living arrangement;number of households that are not families, mobile homes, or any other type of unit" -Count_Household_NonfamilyHousehold_SingleUnit,"Count of Household: Nonfamily Household, Single Unit;Nonfamily Households in Single Unit" -Count_Household_NonfamilyHousehold_TwoOrMoreUnits,"Count of Household: Nonfamily Household, Two or More Units;Non family Households Two Or More Units;number of nonfamily households with two or more units" -Count_Household_OtherFamilyHousehold,Count of Household: Other Family Household;Other Family Households;household with extended family;household with non-family members;household with non-relatives;household with other relatives -Count_Household_OtherIndoEuropeanLanguagesSpokenAtHome,Count of Household: Other Indo European Languages;Other Indo European Languages Spoken At Home;number of homes where other indo-european languages are spoken;number of households where other indo-european languages are spoken;number of households where other indo-european languages are the primary language;number of households with other indo-european languages as the primary language -Count_Household_OtherLanguagesSpokenAtHome,Count of Household: Other Languages;Other Languages Speaking Households;households that are linguistically diverse;households that are multilingual;households that speak other languages;households where people speak languages other than english -Count_Household_Rural,Count of Household: Rural;Rural Households;households in farming communities;households in remote areas;households in rural areas;households in the countryside -Count_Household_ScheduledCaste,Count of Household: Scheduled Caste;Scheduled Caste Households;households of people from scheduled castes;households of people who are discriminated against because of their caste;households of the scheduled castes;scheduled caste families -Count_Household_ScheduledCaste_Rural,"Count of Household: Rural, Scheduled Caste;Scheduled Caste Population in Rural;number of households in rural areas where the head of household is from a scheduled caste;number of households in rural areas with people from lower castes;number of households in rural areas with people from scheduled castes;number of households in rural areas with scheduled caste members" -Count_Household_ScheduledCaste_Urban,"Count of Household: Urban, Scheduled Caste;Urban Scheduled Castes;scheduled castes in urban areas;scheduled castes in urban settings;scheduled castes living in cities;urban people from scheduled castes" -Count_Household_ScheduledTribe,Count of Household: Scheduled Tribe;Scheduled Tribe Households;households belonging to scheduled tribes;households of scheduled tribe people;households of scheduled tribes -Count_Household_ScheduledTribe_Rural,"Count of Household: Rural, Scheduled Tribe;Household With Scheduled Tribe In Rural;household with a member of a scheduled tribe in a rural area;household with a member of a tribal group in a rural area;household with a member of an indigenous group in a rural area;rural household with a scheduled tribe member" -Count_Household_ScheduledTribe_Urban,"Count of Household: Urban, Scheduled Tribe;Scheduled Tribe Households in Urban Areas;scheduled tribe households in cities and towns;scheduled tribe households living in urban areas;urban households belonging to scheduled tribes;urban scheduled tribe households" -Count_Household_SingleFatherFamilyHousehold,Count of Household: Single Father Family Household;Single Father Family Households;household consisting of a single father and his children;household where the father is the only parent;household with a single father;number of households headed by a single father -Count_Household_SingleFatherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Single Father Family Household, Mobile Homes And All Other Types of Units;Single Father Family Households With Mobile Homes And All Other Types Of Units;number of households that are single father families, mobile homes, and other types of units;number of households with single fathers, mobile homes, and other types of units;number of single father families, mobile homes, and other types of units;number of single father households, mobile homes, and other types of units" -Count_Household_SingleFatherFamilyHousehold_SingleUnit,"Count of Household: Single Father Family Household, Single Unit;Single Father Family Households in Single Unit;number of households: single father family household, single unit" -Count_Household_SingleFatherFamilyHousehold_TwoOrMoreUnits,"Count of Household: Single Father Family Household, Two or More Units;Single Father Family Households in Two Or More Units;number of households headed by a single father with two or more units;number of households with a single father and two or more children;number of households with a single father and two or more units;number of single father households with two or more units" -Count_Household_SingleMotherFamilyHousehold,Count of Household: Single Mother Family Household;Single Mother Family Households;number of households headed by single mothers;number of households with a mother as the head of household;number of households with a single mother as the head of household;number of single-mother households -Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household with an income of Below Poverty Level in The Past 12 Months;Count of Household: Single Mother Family Household, Below Poverty Level in The Past 12 Months;Number of Single Mother Family Households Below Poverty Level in the Past 12 Months;Number of households headed by single mothers living in poverty in the past 12 months;Number of single mother family households below poverty level in the past 12 months;Number of single-mother families living in poverty in the past 12 months;Number of single-mother households living below the poverty line in the past 12 months;Number of single-mother households with incomes below the poverty line in the past 12 months;Single Mother Family Household with an income of Below Poverty Level in The Past 12 Months"" in a colloquial way;how many single-mother families were living below the poverty line in the past 12 months?;how many single-mother families were poor in the past 12 months?;what is the number of single-mother families living in poverty in the past 12 months?;what is the percentage of single-mother families living below the poverty line in the past 12 months?" -Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,"Count of Household: Single Mother Family Household, Mobile Homes And All Other Types of Units;number of households by family structure: single mother families, mobile homes, and all other types of units;number of households by housing type: single mother families, mobile homes, and all other types of units;number of households by type: single mother families, mobile homes, and all other types of units;number of households: single mother families, mobile homes, and all other types of units" -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied,"Count of Household: Single Mother Family Household, Owner Occupied;Single Mother Family Household With Owner Occupied;a family home owned by a single mother;a home owned by a single mother and her children;a household consisting of a single mother and her children, who own their home;a single mother and her children living in a home they own" -Count_Household_SingleMotherFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Owner Occupied, Below Poverty Level in The Past 12 Months" -Count_Household_SingleMotherFamilyHousehold_RenterOccupied,"Count of Household: Single Mother Family Household, Renter Occupied;Single Mother Family Occupied Households;households headed by single mothers;households where the mother is the only parent;households where the mother is the primary caregiver;households with single mothers as the primary caregiver" -Count_Household_SingleMotherFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Renter Occupied, Below Poverty Level in The Past 12 Months;Single Mother Family Households with Renter Occupied Below Poverty Level in The Past 12 Months;households headed by single mothers who rented and had incomes below the poverty line in the past 12 months;households headed by single mothers who rented and were below the poverty line in the past 12 months;households with a single mother and children who rent and are considered to be in poverty in the past 12 months;single-mother households with children who rent and live below the poverty line in the past 12 months" -Count_Household_SingleMotherFamilyHousehold_SingleUnit,"Count of Household: Single Mother Family Household, Single Unit;Single Mother Family Households With Mobile Homes And All Other Types Of Units;number of households: single mother and child household, single unit;number of households: single mother and children household, single unit;number of households: single mother family household, single unit;number of households: single mother family, single unit" -Count_Household_SingleMotherFamilyHousehold_TwoOrMoreUnits,"Count of Household: Single Mother Family Household, Two or More Units;Single Mother Family Households in Two Or More Units;household count: single mother family with two or more units;number of households with a single mother and two or more units;number of households: single mother family with two or more units;number of single mother families with two or more units" -Count_Household_SingleMotherFamilyHousehold_With0Worker,"Count of Household: Single Mother Family Household, Worker 0;Single Mother Family Household With 0 Workers;a family with a single mother and no working adults;a household headed by a single mother with no employed children;a household with a single mother and no employed members;a single mother with no working children" -Count_Household_SingleMotherFamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 0, Below Poverty Level in The Past 12 Months;Single Mother Family Households With 0 Workers Below Poverty Level In The Past 12 Months;the number of single-mother households with no income in the past 12 months;the number of single-mother households with no jobs in the past 12 months" -Count_Household_SingleMotherFamilyHousehold_With1Worker,"Count of Household: Single Mother Family Household, Worker 1;Single Mother Family Households With One Worker;households headed by a single mother with one working adult;households headed by single mothers with one employed adult;households with a single mother and one working adult;single-parent households with one working adult" -Count_Household_SingleMotherFamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 1, Below Poverty Level in The Past 12 Months;Single Mother Family Households Below Poverty Level in The Past 12 Months" -Count_Household_SingleMotherFamilyHousehold_With2Worker,"Count of Household: Single Mother Family Household, Worker 2;Single Mother Family Households with 2 Workers;households with a single mother and two breadwinners;households with a single mother and two employed adults;households with a single mother and two wage earners;households with a single mother and two working adults" -Count_Household_SingleMotherFamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,"Count of Household: Single Mother Family Household, Worker 2, Below Poverty Level in The Past 12 Months;Single Mother Family Households With 2 Workers Below Poverty Level in The Past 12 Months;households with single mothers and two workers who earned less than the poverty line in the past 12 months;households with single mothers and two workers who were below the poverty line in the past 12 months;households with single mothers and two workers who were living in poverty in the past 12 months;households with single mothers and two workers who were struggling to make ends meet in the past 12 months" -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker,"Count of Household: Single Mother Family Household, 3 Worker or More;Single Mother Family Households with 3 Workers or More;households headed by a single mother with three or more workers;households with a single female parent and three or more workers;households with a single mother and three or more employed adults;households with a single mother and three or more workers" -Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,"1 households with a single mother and at least 3 working adults who were below the poverty line in the past 12 months;3 households with a single mother and at least 3 working adults who were struggling financially in the past year;Count of Household: Single Mother Family Household, 3 Worker or More, Below Poverty Level in The Past 12 Months;Single Mother Family Households with 3 Worker or More, Below Poverty Level in The Past 12 Months;the number of single-mother households with three or more workers who were living below the poverty line in the past 12 months;the percentage of single-mother households with three or more workers who had incomes below the poverty line in the past 12 months" -Count_Household_SpanishSpokenAtHome,Count of Household: Spanish;Spanish Speaking Households;households that speak spanish;households that use spanish as their primary language;households where spanish is spoken;households with spanish speakers -Count_Household_Urban,Count of Household: Urban;Urban Households;city dwellings;households in cities;urban families;urban homes -Count_Household_With0AvailableVehicles,Count of Household: 0 Available Vehicles;Households With 0 Available Vehicles;there are 0 available vehicles in this household;there are no available vehicles in this household;this household does not have any available vehicles;this household has 0 available vehicles -Count_Household_With1AvailableVehicles,Count of Household: 1 Available Vehicles;Households With 1 Available Vehicles;one vehicle is available in this household;there is one vehicle available in this household;this household has one vehicle available;this household has one vehicle that is available -Count_Household_With2AvailableVehicles,2 vehicles are available for use in the household;Count of Household: 2 Available Vehicles;Households With 2 Available Vehicles;the household has 2 vehicles available;the household has the use of 2 vehicles;there are 2 vehicles available in the household -Count_Household_With3AvailableVehicles,Count of Household: 3 Available Vehicles;Households With 3 Available Vehicles;there are 3 vehicles available in this household;there are 3 vehicles that are available to this household;this household has 3 vehicles available;this household has access to 3 vehicles -Count_Household_With4OrMoreAvailableVehicles,Count of Household: 4 Available Vehicles or More;Households With 4 Or More Available Vehicles;more than 4 vehicles are available in the household;the household has 4 or more available vehicles;the household has access to 4 or more vehicles;there are 4 or more available vehicles in the household -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Africa;Foreign Born Households in Africa With Cash Assistance In The Past 12 Months;number of households in africa that received cash assistance in the last 12 months, foreign born;number of households in africa that received cash assistance in the last year, foreign born;number of households in africa that received cash assistance in the past 12 months;number of households that received cash assistance in the past 12 months and were foreign-born from africa" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Asia;Foreign Born Households in Asia With Cash Assistance In The Past 12 Months;number of households in asia that received cash assistance in the last 12-month period;number of households in asia that received cash assistance in the past 12 months;number of households with foreign-born residents from asia who received cash assistance in the past 12 months;number of households with foreign-born residents from asia who received cash benefits in the past 12 months" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Caribbean;number of households that received cash assistance in the past 12 months and were born in the caribbean;number of households that received cash assistance in the past 12 months and were born outside of the united states and came from the caribbean;number of households that received cash assistance in the past 12 months and were foreign-born from the caribbean;number of households that received cash assistance in the past 12 months and were of caribbean descent" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Central America Except Mexico;Foreign Born Households in Central America Except Mexico With Cash Assistance In The Past 12 Months;number of households with foreign-born central americans who received cash aid in the past 12 months;number of households with foreign-born central americans who received cash assistance in the past 12 months;number of households with foreign-born central americans who received cash benefits in the past 12 months;number of households with foreign-born central americans who received cash support in the past 12 months" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Eastern Asia;Foreign Born Households in Eastern Asia With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months and are foreign born from east asia;number of households that received cash assistance in the past 12 months and are foreign born from eastern asia;number of households that received cash assistance in the past 12 months and are of eastern asian descent;number of households that received cash assistance in the past 12 months and were foreign born from eastern asia" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Europe;Foreign Born Households in Europe With Cash Assistance In The Past 12 Months;number of households in europe where at least one member was born outside of europe and received cash assistance in the past 12 months;number of households in europe where at least one member was born outside of europe and received cash assistance in the past year;number of households in europe with foreign-born members who received cash assistance in the past year;number of households with foreign-born members who received cash assistance in the past 12 months in europe" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"1 number of households that received cash assistance in the past 12 months, and whose members were foreign-born from latin america;2 number of households that received cash assistance in the past 12 months, and whose members were born in latin america but are not us citizens;3 number of households that received cash assistance in the past 12 months, and whose members are not us citizens but were born in latin america;4 number of households that received cash assistance in the past 12 months, and whose members are immigrants from latin america;Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Latin America;Foreign Born Households in America With Cash Assistance In The Past 12 Months" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Country/MEX;Foreign Born Households in Mexico With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months, born outside of the us, country/mex;number of households that received cash assistance in the past 12 months, foreign born, country/mex;number of households that received cash assistance in the past 12 months, foreign nationals, country/mex;number of households that received cash assistance in the past 12 months, not us citizens, country/mex" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Northamerica;Foreign Born Households With Cash Assistance In The Past 12 Months _PlaceOfBirthNorthamerica;number of households in north america that received cash assistance in the past 12 months and are foreign-born;the number of households in north america that received cash assistance in the past 12 months and are not native-born us citizens;the number of households in north america that received cash assistance in the past 12 months and are not us citizens;the number of households in north america that received cash assistance in the past 12 months and were born outside of the us" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Northern Western Europe;Foreign Born Households in Northern Western Europe With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months and were born outside of the united states and in northern western europe;number of households that received cash assistance in the past 12 months and were foreign-born from northern western europe;number of households that received cash assistance in the past year and were born outside of the united states and in northern western europe;number of households that received cash assistance in the past year and were foreign-born from northern western europe" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Oceania;Foreign Born Households in Oceania With Cash Assistance In The Past 12 Months;number of households in oceania that received cash assistance in the past 12 months and were born outside of oceania;number of households in oceania that received cash assistance in the past 12 months and were foreign-born;number of households in oceania that received cash assistance in the past 12 months and were immigrants;number of households in oceania that received cash assistance in the past 12 months and were not born in oceania" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, South Central Asia;Foreign Born Households in South Central Asia With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the last 12 months, foreign born, south central asia;number of households that received cash assistance in the last year, foreign born, south central asia;number of households that received cash assistance in the past 12 months, foreign born, south central asia;number of households that received cash assistance in the past year, foreign born, south central asia" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, South Eastern Asia;Foreign Born Households in South Eastern Asia With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months, and whose members were born in southeast asia" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Southamerica;Foreign Born Households in South America With Cash Assistance In The Past 12 Months;number of households in south america that received cash assistance in the past 12 months;number of households in south america that received cash assistance in the past year;number of south american households that received cash assistance in the past 12 months;number of south american households that received cash assistance in the past 365 days" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Southern Eastern Europe;Foreign Born Households in Southern Eastern Europe With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months and are foreign nationals from southern eastern europe;number of households that received cash assistance in the past 12 months and were born in southern eastern europe but are not us citizens;number of households that received cash assistance in the past 12 months and were born outside of the united states in southern eastern europe;number of households that received cash assistance in the past 12 months and were foreign-born from southern eastern europe" -Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Cash Assistance in The Past 12 Months, Foreign Born, Western Asia;Foreign Born Households in Western Asia With Cash Assistance In The Past 12 Months;number of households that received cash assistance in the past 12 months and were born outside of the united states in western asia;number of households that received cash assistance in the past 12 months and were foreign-born from countries in western asia;number of households that received cash assistance in the past 12 months and were foreign-born from western asia;number of households that received cash assistance in the past year and were born outside of the united states in western asia" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Earnings, Foreign Born, Africa;Foreign Born Households in Africa With Earnings;number of households with earnings from africa;number of households with earnings from foreign-born africans;number of households with earnings from foreign-born people from africa;number of households with earnings from people from africa" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Earnings, Foreign Born, Asia;Foreign Born Households in Asia With Earnings;number of households with asian earners who were born outside the us;number of households with earners who were born in asia and are now living in the us;number of households with foreign-born asian earners;number of households with foreign-born asian residents who have earnings" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Earnings, Foreign Born, Caribbean;Foreign Born Households in Caribbean With Earnings;number of households with caribbean immigrants who have earnings;number of households with earnings from the caribbean;number of households with earnings, foreign born, and caribbean;number of households with earnings, foreign born, caribbean" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Earnings, Foreign Born, Central America Except Mexico;Foreign Born Households in Central America Except Mexico With Earnings;number of households with earnings from central american immigrants except mexicans;number of households with earnings from central american immigrants except mexico;number of households with earnings from foreign-born central americans except mexicans;number of households with earnings from people born in central america but not mexico" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Earnings, Foreign Born, Eastern Asia;Foreign Born Households in Eastern Asia With Earnings;number of households in eastern asia with earnings from people who were born in another country;number of households with eastern asian immigrants who have earnings;number of households with eastern asian residents who were born outside the united states and have earnings;number of households with foreign-born eastern asian residents who have earnings" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Earnings, Foreign Born, Europe;Foreign Born Households in Europe With Earnings;number of households in europe with earnings from people who are immigrants;number of households in europe with earnings from people who are not citizens of europe;number of households with earnings from foreign-born europeans;number of households with earnings from people who were born in europe but now live in the united states" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Earnings, Foreign Born, Latin America;Foreign Born Households in Latin America With Earnings;number of households with earners from latin america who were born abroad;number of households with foreign-born earners from latin america;number of households with foreign-born latin american earners;number of households with latin american-born earners" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Earnings, Foreign Born, Country/MEX;Foreign Born Households in Mexico With Earnings;number of households with earnings, foreign born, country/mex" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Earnings, Foreign Born, Northamerica;Foreign Born Households in North america With Earnings;number of households with earnings in north america;number of households with earnings in north america, foreign born;number of households with earnings, foreign born, north america;number of households with foreign born earnings, north america" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Earnings, Foreign Born, Northern Western Europe;Foreign Born Households in Northern Western Europe With Earnings;number of households in northern western europe with earnings from people who were not born in northern western europe;number of households with earnings from northern western europe, foreign-born;number of households with earnings from people who were born in northern western europe;number of households with earnings, foreign-born, northern western europe" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Earnings, Foreign Born, Oceania;Foreign Born Households in Oceania With Earnings;number of households in oceania where at least one person has earnings and is foreign-born;number of households in oceania with at least one person who is foreign-born and has earnings;number of households in oceania with earnings from people who are not citizens of oceania;number of households in oceania with earnings from people who are not native-born citizens of oceania" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Earnings, Foreign Born, South Central Asia;Foreign Born Households in South Central Asia With Earnings;number of households with at least one foreign-born member and earnings from south central asia;number of households with earnings and at least one member from south central asia;number of households with earnings and foreign-born members from south central asia;number of households with earnings from south central asia" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Earnings, Foreign Born, South Eastern Asia;Foreign Born Households in South Eastern Asia With Earnings;number of households with earnings from people who were born in southeast asia but now live in the united states" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Earnings, Foreign Born, Southamerica;Foreign Born Households in South America With Earnings;number of households with earnings from south american immigrants;number of households with foreign-born south american members who have earnings;number of households with south american immigrants who have earnings;number of households with south american-born people who have earnings" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Earnings, Foreign Born, Southern Eastern Europe;Foreign Born Households in Southern Eastern Europe With Earnings;number of households with earnings from people who are citizens of southern eastern european countries;number of households with earnings from people who are ethnically southern eastern european;number of households with earnings from people who were born in southern eastern europe but now live in the united states;number of households with earnings from southern eastern european immigrants" -Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Earnings, Foreign Born, Western Asia;Foreign Born Households in Western Asia With Earnings;number of households with foreign-born western asian residents who have earnings;number of households with western asian residents who are foreign-born and have earnings;number of households with western asian residents who are immigrants and have earnings;number of households with western asian residents who were born outside the united states and have earnings" -Count_Household_WithFoodStampsInThePast12Months,Count of Household: With Food Stamps in The Past 12 Months;How many households have received food stamps in the last 12 months?;How many households received food stamps in the past 12 months?;Number of Households Receiving Food Stamps in the Past 12 Months;Number of households receiving Food Stamps in The Past 12 Months;Number of households receiving SNAP benefits in The Past 12 Months;Number of households receiving SNAP benefits in the past 12 months;Number of households receiving Supplemental Nutrition Assistance Program (SNAP) benefits in the past 12 months;Number of households receiving food stamps in the past 12 months;Number of households with food stamps in the past 12 months;families receiving SNAP benefits;families receiving food stamps;households on SNAP benefits;households on food stamps;households receiving SNAP benefits;households receiving food stamps;the number of households that received food assistance in the past 12 months;the number of households that received food stamps in the past 12 months;the number of households that received snap benefits in the past 12 months;the number of households that received supplemental nutrition assistance program benefits in the past 12 months -Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Above Poverty Level in The Past 12 Months;How many households received Food Stamps over the last year and were above the poverty level in the past 12 months?;Number of Households With Food Stamps in the Past 12 Months and Above Poverty Level in the Past 12 Months;Number of households receiving Food Stamps over the last year who are Above Poverty Level in The Past 12 Months;Number of households receiving SNAP benefits over the last year who are Above Poverty Level in The Past 12 Months;Number of households with food stamps in the past 12 months and above poverty level in the past 12 months;how many households received food stamps in the past 12 months and were above the poverty level in the past 12 months?;number of households that received food stamps in the past 12 months and had an income above the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were above the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were not poor in the past 12 months" -Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Count of Household: With Food Stamps in The Past 12 Months, American Indian or Alaska Native Alone;How many households of American Indian or Alaska Native Alone ethnicity received Food Stamps in the last year;Number of American Indian or Alaska Native Alone households receiving Food Stamps over the last year;Number of Households With Food Stamps in the Past 12 Months and American Indian or Alaska Native Alone as the Race of the Household Members;Number of households headed by American Indian or Alaska Native Alone individuals receiving Food Stamps over the last year;Number of households receiving Food Stamps over the last year who are American Indian or Alaska Native Alone;Number of households receiving SNAP benefits over the last year who are American Indian or Alaska Native Alone;Number of households with American Indian or Alaska Native Alone as the primary race receiving Food Stamps over the last year;Number of households with American Indian or Alaska Native Alone members receiving Food Stamps over the last year;Number of households with food stamps in the past 12 months and American Indian or Alaska Native Alone as the race of the household member;american indian or alaska households on SNAP benefits;american indian or alaska households on food stamps;number of households with american indian or alaska native as the race of the household members who received food assistance in the past 12 months;number of households with american indian or alaska native as the race of the household members who received food stamps in the past 12 months;number of households with american indian or alaska native as the race of the household members who received supplemental nutrition assistance program (snap) benefits in the past 12 months;number of households with food stamps in the past 12 months with american indian or alaska native as the race of the household members" -Count_Household_WithFoodStampsInThePast12Months_AsianAlone,"Count of Household: With Food Stamps in The Past 12 Months, Asian Alone;Number of Households With Food Stamps in the Past 12 Months and Asian Alone as the Race of the Household Members;Number of households receiving Food Stamps over the last year who are Asian Alone;Number of households receiving SNAP benefits over the last year who are Asian Alone;Number of households with food stamps in the past 12 months and Asian Alone as the race of the household member;The number of Asian-alone households that received SNAP benefits in the last year;asian households on SNAP benefits;asian households on food stamps;number of households with asian race members who received food stamps in the past 12 months;number of households with asian race members who used food stamps in the past 12 months;number of households with asian race members who were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months;number of households with asian race members who were food stamp recipients in the past 12 months" -Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Below Poverty Level in The Past 12 Months;How many households received food stamps in the last year and were below the poverty line in the past 12 months?;Number of Households With Food Stamps in the Past 12 Months and Below Poverty Level in the Past 12 Months;Number of households receiving Food Stamps over the last year who are Below Poverty Level in The Past 12 Months;Number of households receiving SNAP benefits over the last year who are Below Poverty Level in The Past 12 Months;Number of households with food stamps in the past 12 months and below poverty level in the past 12 months;families below poverty line receiving SNAP benefits;families below poverty line receiving food stamps;households in poverty receiving SNAP benefits;households in poverty receiving food stamps;number of households that received food stamps and were below the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and had incomes below the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were at or below the poverty level in the past 12 months;number of households that received food stamps in the past 12 months and were below the poverty level in the past 12 months;poor households on SNAP benefits;poor households on food stamps" -Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,"Count of Household: With Food Stamps in The Past 12 Months, Black or African American Alone;Number of Black or African American households who received SNAP benefits in the last year;Number of Households With Food Stamps in the Past 12 Months and Black or African American Alone as the Race of the Household Members;Number of households receiving Food Stamps over the last year who are Black or African American Alone;Number of households receiving SNAP benefits over the last year who are Black or African American Alone;Number of households with food stamps in the past 12 months and Black or African American Alone as the race of the household member;The number of Black or African American Alone households receiving Food Stamps in the last year;The number of Black or African American Alone households that have received Food Stamps in the last year;The number of Black or African American Alone households that received Food Stamps in the last year;The number of Black or African American Alone households that were receiving Food Stamps in the last year;african american households on SNAP benefits;african american households on food stamps;black households on SNAP benefits;black households on food stamps;number of households that received food stamps in the past 12 months where the race of the household members is black or african american alone;number of households that were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months where the race of the household members is black or african american alone;number of households that were receiving food stamps in the past 12 months where the race of the household members is black or african american alone;number of households with food stamps in the past 12 months where the race of the household members is black or african american alone" -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Family Household;Number of Family Households With Food Stamps in the Past 12 Months;Number of household with food stamps in the past 12 months and a family household structure;Number of households receiving Food Stamps over the last year who are in a family household;Number of households receiving SNAP benefits over the last year who are in a family household;how many family households received food stamps in the past 12 months?;how many family households used food stamps in the past 12 months?;how many family households were enrolled in the supplemental nutrition assistance program (snap) in the past 12 months?;how many family households were food stamp recipients in the past 12 months?" -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, No Workers in The Past 12 Months;Households With Food Stamps And Without Workers In The Past 12 Months;number of households that received food stamps in the past 12 months and have no one who had a job in the past 12 months" -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, One Worker in The Past 12 Months;Family Households With Food Stamps And One Worker In The Past 12 Months" -Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,"Count of Household: With Food Stamps in The Past 12 Months, Family Household, Two or More Workers in The Past 12 Months;Family Households With Food Stamps And Two Or More Workers In The Past 12 Months" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Africa;Foreign Born Households in Africa With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born in africa;number of households that received food stamps in the past 12 months and were foreign-born from africa;number of households that received food stamps in the past 12 months and were from africa or of african descent;number of households that received food stamps in the past 12 months and were of african descent" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Asia;Foreign Born Households in Asia With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born in asia;number of households that received food stamps in the past 12 months and were foreign-born from asia;number of households that received food stamps in the past 12 months and whose members were born in asia;number of households that received food stamps in the past 12 months and whose members were foreign-born and from asia" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Caribbean;Foreign Born Households in Caribbean With Food Stamps In The Past 12 Months;the number of households that received food stamps in the past 12 months and were born in the caribbean;the number of households that received food stamps in the past 12 months and were born outside of the united states in the caribbean region;the number of households that received food stamps in the past 12 months and were foreign-born from the caribbean;the number of households that received food stamps in the past 12 months and were of caribbean descent" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Central America Except Mexico;Foreign Born Households in Central America Except Mexico With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born in central america, excluding mexico;number of households that received food stamps in the past 12 months and were born outside of the united states, but in central america, excluding mexico;number of households that received food stamps in the past 12 months and were foreign-born from central america, excluding mexico;number of households that received food stamps in the past 12 months and were foreign-born, but from central america, excluding mexico" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Eastern Asia;Foreign Born Households in Eastern Asia With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and are immigrants from eastern asia;number of households that received food stamps in the past 12 months and were born in eastern asia;number of households that received food stamps in the past 12 months and were foreign born from eastern asia;number of households that received food stamps in the past 12 months and were foreign-born from eastern asia" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Europe;Foreign Born Households in Europe With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and are foreign-born europeans;number of households that received food stamps in the past 12 months and are not us citizens but were born in europe;number of households that received food stamps in the past 12 months and were born in europe but are not us citizens;number of households that received food stamps in the past 12 months and were foreign-born in europe" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Latin America;Foreign Born Households in Latin America With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and are foreign-born from latin america;number of households that received food stamps in the past 12 months and were born in latin america but are now living in the united states;number of households that received food stamps in the past 12 months and were foreign-born from latin america;number of households that received food stamps in the past year and are foreign-born from latin america" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Country/MEX;Foreign Born Households in Mexico With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months, where the head of household is foreign-born;number of households that received food stamps in the past 12 months, where the head of household was born outside of the united states" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Northamerica;Foreign Born Households in North America With Food Stamps In The Past 12 Months;number of households in north america that have received food stamps in the past 12 months and are not native-born us citizens;number of households in north america that have received food stamps in the past 12 months and have at least one foreign-born member;number of households in north america that have received food stamps in the past 12 months and were born outside of the us;number of households in north america that received food stamps in the past 12 months and are foreign-born" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Northern Western Europe;Foreign Born Households in Northern Western Europe With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born outside of the united states and came from northern western europe;number of households that received food stamps in the past 12 months and were foreign-born from northern western europe;number of households that received food stamps in the past year and were born outside of the united states and came from northern western europe;number of households that received food stamps in the past year and were foreign-born from northern western europe" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Oceania;Foreign Born Households in Oceania With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and are foreign-born in oceania;number of households that received food stamps in the past 12 months and are from oceania;number of households that received food stamps in the past 12 months and are immigrants in oceania;number of households that received food stamps in the past 12 months and are not native-born in oceania" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, South Central Asia;Foreign Born Households in South Central Asia With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born outside of the united states in south central asia;number of households that received food stamps in the past 12 months and were foreign born and from south central asia;number of households that received food stamps in the past 12 months and were foreign born from south central asia;number of households that received food stamps in the past 12 months and were from south central asia but not born in the united states" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, South Eastern Asia;Foreign Born Households in South Eastern Asia With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and are not us citizens but were born in south eastern asia;number of households that received food stamps in the past 12 months and were born in south eastern asia but are not us citizens;number of households that received food stamps in the past 12 months and were born outside of the united states in south eastern asia;number of households that received food stamps in the past 12 months and were foreign born from south eastern asia" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Southamerica;Foreign Born Households in South America With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and whose members are south american-born immigrants;number of households that received food stamps in the past 12 months and whose members were born in south america;number of households that received food stamps in the past 12 months and whose members were born in south america and are not us citizens;number of households that received food stamps in the past 12 months and whose members were foreign-born south americans" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Southern Eastern Europe;Foreign Born Households in Southern Eastern Europe With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months and were born outside of the united states in southern eastern europe;number of households that received food stamps in the past 12 months and were foreign-born from countries in southern eastern europe;number of households that received food stamps in the past 12 months and were foreign-born from southern eastern europe;number of households that received food stamps in the past 12 months and were not born in the united states but were born in southern eastern europe" -Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Food Stamps in The Past 12 Months, Foreign Born, Western Asia;Foreign Born Households in Western Asia With Food Stamps In The Past 12 Months;number of households that received food stamps in the past 12 months, foreign born, western asia;number of households that were on food stamps in the past 12 months, foreign born, western asia;number of households that were receiving food stamps in the past 12 months, foreign born, western asia;number of households with food stamps in the past 12 months, foreign born, western asia" -Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,"Count of Household: With Food Stamps in The Past 12 Months, Hispanic or Latino;How many Hispanic or Latino households received Food Stamps in the last year;How many Hispanic or Latino households received Food Stamps in the last year?;How many households that received Food Stamps in the last year were Hispanic or Latino;Number of Hispanic or Latino Households Receiving Food Stamps in the Past 12 Months;Number of households receiving Food Stamps over the last year who are Hispanic or Latino;Number of households receiving SNAP benefits over the last year who are Hispanic or Latino;Number of households that received food stamps in the past 12 months and are Hispanic or Latino;What is the number of Hispanic or Latino households that received Food Stamps in the last year;What percentage of households that received Food Stamps in the last year were Hispanic or Latino;hispanic latino households on SNAP benefits;hispanic latino households on food stamps;how many hispanic or latino households received food stamps in the past 12 months?;what is the number of hispanic or latino households that received food stamps in the past 12 months?;what is the percentage of hispanic or latino households that received food stamps in the past 12 months?;what is the proportion of hispanic or latino households that received food stamps in the past 12 months?" -Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household;How many married couples received food stamps in the last year?;Number of Married Family Households Receiving Food Stamps in the Past 12 Months;Number of households receiving Food Stamps over the last year who are a Married Couple in a family household;Number of households receiving SNAP benefits over the last year who are a Married Couple in a family household;Number of households that received food stamps in the past 12 months, are married couples, and are family households;Number of married couples receiving food stamps over the last year;Number of married couples who received food stamps over the last year;The number of married couples receiving food stamps in the last year;how many married couples received food stamps in the last year?;how many married households have received food stamps in the last year?;married couple households on SNAP benefits;married couple households on food stamps;what is the number of married couples who received food stamps in the past 12 months?;what is the number of married families who have received food stamps in the past 12 months?" -Count_Household_WithFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Household: With Food Stamps in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;How many Native Hawaiian or Other Pacific Islander Alone households received Food Stamps in the last year?;How many Native Hawaiian or Other Pacific Islander Alone households received Food Stamps over the last year?;How many Native Hawaiian or Other Pacific Islander Alone households received SNAP benefits over the last year;How many Native Hawaiian or Other Pacific Islander Alone households received Supplemental Nutrition Assistance Program benefits over the last year;Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as Native Hawaiian or Other Pacific Islander Alone;Number of households receiving Food Stamps over the last year who are Native Hawaiian or Other Pacific Islander Alone;Number of households receiving SNAP benefits over the last year who are Native Hawaiian or Other Pacific Islander Alone;Number of households that received food stamps in the past 12 months, are native Hawaiian or other Pacific Islander alone;hawaiian pacific islander households on SNAP benefits;hawaiian pacific islander households on food stamps;how many native hawaiian or other pacific islander households received food stamps in the last year?;how many native hawaiian or other pacific islander households received food stamps in the past year?;what is the number of native hawaiian or other pacific islander households that received food stamps in the last year?;what is the number of native hawaiian or other pacific islander households that received food stamps in the past year?" -Count_Household_WithFoodStampsInThePast12Months_NoDisability,"Count of Household: With Food Stamps in The Past 12 Months, No Disability;How many households without disabilities received Food Stamps last year?;Number of Non-Disabled Households Receiving Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who have no disabilities;Number of households receiving Food Stamps with no disabilities in the last year;Number of households receiving SNAP benefits over the last year who have no disabilities;Number of households that received food stamps in the past 12 months and do not have any disability;The number of households receiving Food Stamps over the last year who have no disabilities;The number of households receiving SNAP benefits over the last year who have no disabilities;The number of households receiving food stamps over the last year who do not have disabilities;households with people who have no disabilities on SNAP benefits;households with people who have no disabilities on food stamps;how many non-disabled households received food stamps last year?;how many non-disabled households received snap benefits last year?;how many non-disabled households received supplemental nutrition assistance program (snap) benefits last year?;what is the number of non-disabled households that received food stamps last year?" -Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,"1 Number of nonfamily households receiving Food Stamps in the last year;Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household;How many non-family households received food stamps in the past year?;How many non-family households received food stamps last year?;Number of Nonfamily Households Receiving Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who are a Nonfamily Household;Number of households receiving SNAP benefits over the last year who are a Nonfamily Household;Number of households that received food stamps in the past 12 months and are nonfamily households;Number of non-family households receiving food stamps over the last year;Number of nonfamily households receiving Food Stamps in the last year;how many non-family households received food stamps in the last year?;how many non-family households were receiving food stamps in the last year?;how many people living alone or with non-relatives received food stamps in the last year?;nonfamily households on SNAP benefits;nonfamily households on food stamps;what is the number of non-family households that received food stamps in the last year?" -Count_Household_WithFoodStampsInThePast12Months_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household;How many Other Family Households received Food Stamps last year?;How many households received Food Stamps in the last year that were not a nuclear family?;Number of Other Family Households Receiving Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who are a Other Family Household;Number of households receiving SNAP benefits over the last year who are a Other Family Household;Number of households that received food stamps in the past 12 months and are other family households;The number of households receiving food stamps over the last year who are other family households;The number of households receiving food stamps who are not nuclear families over the last year;The number of other family households receiving food stamps over the last year;how many other family households are currently receiving food stamps?;how many other family households have been receiving food stamps for the past year?;how many other family households have received food stamps at any point in the last year?;how many other family households received food stamps in the last year?;one familyhouseholds on SNAP benefits;one familyhouseholds on food stamps" -Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household;Number of Single Father Family Households Receiving Food Stamps Over the Last Year;Number of households headed by a single father receiving food stamps in the past year;Number of households receiving Food Stamps over the last year who are a Single Father Family Household;Number of households receiving SNAP benefits over the last year who are a Single Father Family Household;Number of households that received food stamps in the past 12 months, are single fathers, and are family households;Number of single father households receiving Food Stamps in the last year;Number of single-father families receiving food stamps in the past year;Number of single-father households receiving food stamps in the past year;The number of single father households receiving food stamps in the last year;how many single father families received food stamps last year?;how many single father family households received food stamps last year;how many single father households received food stamps in the last 12 months?;how many single father households were receiving food stamps in the last year?;single father households on SNAP benefits;single father households on food stamps" -Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household;Number of Single Mother Family Households Receiving Food Stamps Over the Last Year;Number of food stamp-receiving single-mother households in the past year;Number of food stamp-receiving single-mother households last year;Number of households receiving Food Stamps over the last year who are a Single Mother Family Household;Number of households receiving SNAP benefits over the last year who are a Single Mother Family Household;Number of households that received food stamps in the past 12 months, are single mothers, and are family households;Number of single-mother households receiving food stamps in the past year;Number of single-mother households receiving food stamps last year;The number of single-mother households receiving food stamps in the last year;single mother households on SNAP benefits;single mother households on food stamps;the number of households headed by single mothers receiving food stamps in the last year;the number of households with single mothers receiving food stamps in the last year;the number of single mothers receiving food stamps in the last year;the number of single-mother households receiving food stamps in the last year" -Count_Household_WithFoodStampsInThePast12Months_SomeOtherRaceAlone,"Count of Household: With Food Stamps in The Past 12 Months, Some Other Race Alone;How many households that identify as Some Other Race Alone received Food Stamps in the last year?;How many households that identify as Some Other Race Alone received Food Stamps over the last year?;Number of Households Receiving Food Stamps Over the Last Year Who Identify as Some Other Race Alone;Number of households receiving Food Stamps in the last year who identify as ""Some Other Race Alone"";Number of households receiving Food Stamps over the last year who identify as Some Other Race Alone;Number of households receiving SNAP benefits over the last year who identify as Some Other Race Alone;Number of households that identify as Some Other Race Alone and received Food Stamps in the last year;Number of households that received Food Stamps in the last year and identify as Some Other Race Alone;Number of households that received food stamps in the past 12 months and are some other race alone;number of households who identify as some other race alone who received food assistance over the last year;number of households who identify as some other race alone who received food stamps over the last year;number of households who identify as some other race alone who received snap benefits over the last year;number of households who identify as some other race alone who received supplemental nutrition assistance program benefits over the last year;other race households on SNAP benefits;other race households on food stamps" -Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,"Count of Household: With Food Stamps in The Past 12 Months, Two or More Races;How many households receiving Food Stamps in the last year identify as more than one race;How many households receiving Food Stamps last year identified as Two or More Races?;How many households receiving Food Stamps over the last year identify as Two or More Races;Number of Households Receiving Food Stamps Over the Last Year Who Identify as Two or More Races;Number of households receiving Food Stamps over the last year who identify as Two or More Races;Number of households receiving SNAP benefits over the last year who identify as Two or More Races;Number of households that received food stamps in the past 12 months and are two or more races;The number of households that identify as two or more races who received food stamps in the last year;The number of households that received food stamps in the last year and identify as two or more races;how many households that identify as two or more races received food stamps in the last year?;the number of households receiving food stamps in the last year who identify as mixed race;the number of households receiving food stamps over the last year who identify as two or more races;two ore more race households on SNAP benefits;two ore more race households on food stamps;what is the number of households receiving food stamps in the last year who identify as two or more races?" -Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,"Count of Household: With Food Stamps in The Past 12 Months, White Alone;How many households receiving Food Stamps in the last year identified as White Alone?;Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as White Alone;Number of White Alone households receiving Food Stamps in the last year;Number of White Alone households receiving Food Stamps in the past year;Number of households receiving Food Stamps over the last year who identify as White Alone;Number of households receiving Food Stamps who identify as White Alone in the last year;Number of households receiving Food Stamps who identify as White Alone in the past year;Number of households receiving SNAP benefits over the last year who identify as White Alone;Number of households that received food stamps in the past 12 months and are white alone;what is the prevalence of food stamp receipt among white households?;what is the prevalence of food stamp use among white households?;what is the rate of food stamp participation among white households?;what is the rate of food stamp receipt among white households?;white households on SNAP benefits;white households on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"- How many households receiving Food Stamps over the last year identify as White Alone Not Hispanic or Latino?;Count of Household: With Food Stamps in The Past 12 Months, White Alone Not Hispanic or Latino;How many White Alone Not Hispanic or Latino households received Food Stamps over the last year;How many households identifying as White Alone Not Hispanic or Latino received Food Stamps over the last year;Number of Households Receiving Food Stamps Over the Last Year Who Racially Identify as White Alone Not Hispanic or Latino;Number of households receiving Food Stamps in the last year who identify as White Alone Not Hispanic or Latino;Number of households receiving Food Stamps over the last year who identify as White Alone Not Hispanic or Latino;Number of households receiving SNAP benefits over the last year who identify as White Alone Not Hispanic or Latino;Number of households that received food stamps in the past 12 months, are white alone, and are not Hispanic or Latino;Number of households who identify as White Alone Not Hispanic or Latino who received Food Stamps over the last year;how many households received food stamps in the last year that identify as white alone, not hispanic or latino?;how many households that identify as white alone, not hispanic or latino received food stamps in the last year?;what is the number of households that identify as white alone, not hispanic or latino that received food stamps in the last year?;what is the number of households that received food stamps in the last year that identify as white alone, not hispanic or latino?;white but not hispanic households on SNAP benefits;white but not hispanic households on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,"Count of Household: With Food Stamps in The Past 12 Months, With Children Under 18;How many households with children under 18 received food stamps in the last year?;Number of Households With Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who identify as With Children Under 18;Number of households receiving SNAP benefits over the last year who identify as With Children Under 18;Number of households that received food stamps in the past 12 months and have children under 18;Number of households who have children under 18 and received food stamps in the last year;Number of households who received food stamps in the last year and have children under 18;Number of households with children under 18 receiving food stamps in the last year;Number of households with children under 18 who received food stamps in the last year;households with children on SNAP benefits;households with children on food stamps;how many households with children received food stamps in the past year?;how many households with children received food stamps last year?;what was the number of households with children who received food stamps in the past year?;what was the number of households with children who received food stamps last year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household, With Children Under 18;How many married couples with children under 18 received Food Stamps in the last year?;How many married couples with children under 18 received food stamps in the last year?;How many married couples with children under 18 received food stamps last year?;Number of Married Family Households With Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps last year that were married couples with children under 18;Number of households receiving Food Stamps over the last year who identify as a married couple in a family household with Children Under 18;Number of households receiving SNAP benefits over the last year who identify as a married couple in a family household with Children Under 18;Number of households that received food stamps in the past 12 months, are married couples, are family households, and have children under 18;how many married couples with children received food stamps last year?;how many married households with children received food stamps in the last year?;married couple households with children on SNAP benefits;married couple households with children on food stamps;what is the number of married families with children who received food stamps in the past 12 months?;what is the number of married families with children who received food stamps in the past year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household, With Children Under 18;How many non-family households with children under 18 received food stamps in the last year?;How many non-family households with children under 18 received food stamps in the past year?;How many nonfamily households with children under 18 received Food Stamps in the last year?;Number of Nonfamily Households With Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who identify as Nonfamily Household, With Children Under 18;Number of households receiving SNAP benefits over the last year who identify as Nonfamily Household, With Children Under 18;Number of households that received food stamps in the past 12 months, are nonfamily households, and have children under 18;how many non-family households with children received food stamps in the last year?;how many non-family households with children were food stamp recipients in the last year?;nonfamily households with children on SNAP benefits;nonfamily households with children on food stamps;what is the number of non-family households with children who received food stamps in the last year?;what is the number of non-family households with children who were food stamp recipients in the last year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household, With Children Under 18;How many families receiving food stamps over the last year identify as ""Other"" with children under 18;How many families with children under 18 received food stamps over the last year and identify as ""Other"";How many families with children under 18 who identify as ""Other"" received food stamps over the last year;How many households receiving food stamps over the last year identify as ""Other"" in a family household with children under 18;How many households with children under 18 who identify as ""Other"" received food stamps over the last year;Number of Other Family Households With Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who identify as Other in a family household with Children Under 18;Number of households receiving SNAP benefits over the last year who identify as Other in a family household with Children Under 18;Number of households that received food stamps in the past 12 months, are other family households, and have children under 18;households of type other with children on SNAP benefits;households of type other with children on food stamps;how many family households with children received food stamps in the past year?;how many other family households with children received food stamps in the past year?;how many other family households with children received food stamps over the last year?;what is the number of other family households with children who received food stamps in the past year?" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household, With Children Under 18;How many households headed by a single father with children under 18 received food stamps in the last year;How many households with children under 18 headed by a single father received food stamps in the last year;How many single-father households with children under 18 received food stamps in the last year;Number of Single Father Family Households With Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who identify as Single Father in a family household with Children Under 18;Number of households receiving SNAP benefits over the last year who identify as Single Father in a family household with Children Under 18;Number of households that received food stamps in the past 12 months, are single fathers, are family households, and have children under 18;number of single father families with children who received food stamps last year;number of single father families with children who received snap benefits last year;number of single father households with children who received food stamps last year;number of single father households with children who received snap benefits last year;single father households with children on SNAP benefits;single father households with children on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household, With Children Under 18;Number of Single Mother Family Households With Children Which Received Food Stamps Over the Last Year;Number of households headed by single mothers with children under 18 who received SNAP benefits in the last year;Number of households headed by single mothers with children under 18 who received food assistance in the last year;Number of households headed by single mothers with children under 18 who received food stamps in the last year;Number of households receiving Food Stamps over the last year who identify as Single Mother in a family household with Children Under 18;Number of households receiving SNAP benefits over the last year who identify as Single Mother in a family household with Children Under 18;Number of households that received food stamps in the past 12 months, are single mothers, are family households, and have children under 18;Number of single mothers with children under 18 who received SNAP benefits in the last year;Number of single mothers with children under 18 who received food stamps in the last year;number of families headed by single mothers with children who received food stamps last year;number of households headed by single mothers with children who received food stamps last year;number of single mothers with children who received food stamps last year;number of single-mother households with children who received food stamps last year;single mother households with children on SNAP benefits;single mother households with children on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WithDisability,"Count of Household: With Food Stamps in The Past 12 Months, With Disability;Number of Disabled Households Receiving Food Stamps Over the Last Year;Number of SNAP households with disabilities;Number of food stamp households with disabilities;Number of households receiving Food Stamps over the last year who are With Disability;Number of households receiving SNAP benefits over the last year who are With Disability;Number of households with disabilities receiving SNAP;Number of households with disabilities receiving Supplemental Nutrition Assistance Program benefits;Number of households with disabilities receiving food stamps;households with disabilities on SNAP benefits;households with disabilities on food stamps;households with disabled people on SNAP benefits;households with disabled people on food stamps;how many disabled households received food stamps in the last 12 months?;how many disabled households received food stamps in the past year?;how many households with disabled members received food stamps in the 12 months ending in the current month?;how many households with disabled members received food stamps in the last year?" -Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,"Count of Household: With Food Stamps in The Past 12 Months, With People Over 60;Number of Households With People Over 60 Who Recieved Food Stamps Over the Last Year.;Number of households receiving Food Stamps over the last year who are With People Over 60;Number of households receiving Food Stamps over the last year with people over 60 years old;Number of households receiving SNAP benefits over the last year who are With People Over 60;Number of households with people over 60 receiving Food Stamps in the last year;The number of households that received food stamps in the last year and have members over 60;The number of households that received food stamps in the last year and have people over 60;The number of households that received food stamps in the last year and have people over the age of 60;households with people above 60 on SNAP benefits;households with people above 60 on food stamps;number of households with people over 60 who received food stamps last year;number of households with people over 60 who received government assistance for food last year;number of households with people over 60 who received snap benefits last year;number of households with people over 60 who received supplemental nutrition assistance program benefits last year" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,"1 How many households without children received food stamps last year?;1 Number of households without children receiving Food Stamps in the last year;Count of Household: With Food Stamps in The Past 12 Months, Without Children Under 18;Number of Households Without Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who are Without Children;Number of households receiving Food Stamps without children in the last year;Number of households receiving SNAP benefits over the last year who are Without Children;Number of households without children who received Food Stamps in the last year;households without children on SNAP benefits;households without children on food stamps;how many households without children received food stamp benefits in the last year?;how many households without children received food stamps in the last year?;what is the number of households without children that received food stamp benefits in the last year?;what is the number of households without children that received food stamps in the last year?" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Married Couple Family Household, Without Children Under 18;How many married couples without children under 18 received Food Stamps in the last year?;Number of Married Couple Households Without Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who are a Married Couple Family Household, Without Children Under 18;Number of households receiving SNAP benefits over the last year who are a Married Couple Family Household, Without Children Under 18;Number of married couples receiving Food Stamps over the last year without children under 18;Number of married couples without children under 18 who received food stamps last year;married couple households without children on SNAP benefits;married couple households without children on food stamps;the number of married couples with no children under 18 who received food stamps in the last year;the number of married couples with no kids who received food stamps in the last year;the number of married couples without children who received food stamps in the last year;the number of married couples without dependents who received food stamps in the last year" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Nonfamily Household, Without Children Under 18;Number of Nonfamily Households Without Children Which Received Food Stamps Over the Last Year;Number of households receiving Food Stamps over the last year who are a Nonfamily Household, Without Children Under 18;Number of households receiving SNAP benefits over the last year who are a Nonfamily Household, Without Children Under 18;Number of non-family households without children under 18 who received food stamps in the last year;Number of non-family households without children under 18 who received food stamps in the past year;nonfamily households without children on SNAP benefits;nonfamily households without children on food stamps;what is the number of non-family households without children who received food stamp benefits in the last year?;what is the number of non-family households without children who received food stamps in the last year?;what is the number of non-family households without children who were food stamp recipients in the last year?;what was the number of non-family households without children who received food stamps in the past year?" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Other Family Household, Without Children Under 18;Number of Other Family Households Without Children Which Received Food Stamps Over the Last Year;Number of Other Family Households, Without Children Under 18 who received Food Stamps in the last year;Number of households receiving Food Stamps over the last year who are a Other Family Household, Without Children Under 18;Number of households receiving SNAP benefits over the last year who are a Other Family Household, Without Children Under 18;households of type other without children on SNAP benefits;households of type other without children on food stamps;how many other family households without children received food stamps in the last year?;how many other family households without children received government assistance in the last year?;how many other family households without children received snap benefits in the last year?;how many other family households without children received supplemental nutrition assistance program benefits in the last year?" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Father Family Household, Without Children Under 18;Number of Single Father Family Households Without Children Which Received Over the Last Year;Number of households receiving Food Stamps over the last year who are a Single Father Family Household, Without Children Under 18;Number of households receiving SNAP benefits over the last year who are a Single Father Family Household, Without Children Under 18;number of single-father households without children who received aid in the past year;number of single-father households without children who received assistance in the past year;number of single-father households without children who received help in the past year;number of single-father households without children who received support in the past year;single father households without children on SNAP benefits;single father households without children on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: With Food Stamps in The Past 12 Months, Single Mother Family Household, Without Children Under 18;Number of Single Mother Family Households Without Children Which Received Over the Last Year;Number of households receiving Food Stamps over the last year who are a Single Mother Family Household, Without Children Under 18;Number of households receiving SNAP benefits over the last year who are a Single Mother Family Household, Without Children Under 18;number of single-mother families without children who received government benefits in the past year;number of single-mother families without children who received government support in the past year;number of single-mother households without children who received government aid in the past year;number of single-mother households without children who received government assistance in the past year;single mother households without children on SNAP benefits;single mother households without children on food stamps" -Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,"Count of Household: With Food Stamps in The Past 12 Months, Without People Over 60;How many households received food stamps in the last year that didn't have anyone over 60?;Number of Households Without People Over 60 Who Received Food Stamps Over the Last Year;Number of households receiving Food Stamps in the last year that do not have any members over 60 years old;Number of households receiving Food Stamps in the last year that do not have any members over the age of 60;Number of households receiving Food Stamps over the last year who are Without People Over 60;Number of households receiving SNAP benefits over the last year who are Without People Over 60;Number of households receiving food stamps in the last year that do not have any people over 60;Number of households receiving food stamps in the last year without people over 60;households without people over 60 on SNAP benefits;households without people over 60 on food stamps;number of households that received food stamps in the last year with no one over 60;number of households that received food stamps in the last year with no one over the age of 60;number of households that received food stamps in the last year with no senior citizens;number of households that received food stamps in the last year without any members over 60" -Count_Household_WithInternetSubscription,Count of Household: With Internet Subscription;Households With Internet Subscriptions;households with internet subscriptions;how many households have internet subscriptions?;number of households with internet subscriptions;percentage of households with internet subscriptions -Count_Household_WithInternetSubscription_BroadbandInternetOfAnyType,Count of Household: Broadband Internet of Any Type;Households with Broadband Internet of Any Type;households with broadband internet;households with broadband internet access;households with high-speed home internet;households with high-speed internet access -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDsl,"Count of Household: Broadband Internet Such as Cable Fiber Optic or Dsl;Households With Broadband Internet Such as Cable Fiber Optic or Dsl;households with cable internet access;households with cable, fiber optic, or dsl internet;households with fiber optic internet access;households with high-speed internet, such as cable, fiber optic, or dsl" -Count_Household_WithInternetSubscription_BroadbandInternetSuchAsCableFiberOpticOrDslOnly,Count of Household: Broadband Internet Such as Cable Fiber Optic or Dsl Only;Households with Broadband Internet Such as Cable Fiber Optic or Dsl Only -Count_Household_WithInternetSubscription_CellularData,Count of Household: Cellular Data;Households With Cellular Data;households with access to cellular data;households with cellular data access;households with cellular data plans;households with cellular internet -Count_Household_WithInternetSubscription_CellularDataOnly,"Count of Household: Cellular Data Only;Households With Cellular Data Only;households that are ""cellular-only"";households that only have cellular data;households that rely solely on cellular data;households that use cellular data as their only internet connection" -Count_Household_WithInternetSubscription_DialUpInternetOnly,Count of Household: Dial Up Internet Only;Households With Dial Up Internet Only;households that are only connected to the internet via dial-up;households that only have dial-up internet;households that use dial-up internet exclusively;households with dial-up internet only -Count_Household_WithInternetSubscription_OtherInternetServiceOnly,Count of Household: Other Internet Service Only;Households With Other Internet Services;households with additional internet services;households with more than one internet service;households with multiple internet providers;households with multiple internet services -Count_Household_WithInternetSubscription_SatelliteInternetService,Count of Household: Satellite Internet Service;Satellite Internet Service Households;households that have satellite internet;households that subscribe to satellite internet;households that use satellite internet;households with satellite internet service -Count_Household_WithInternetSubscription_SatelliteInternetServiceWithNoOtherTypeOfInternetSubscription,Count of Household: Satellite Internet Service With No Other Type of Internet Subscription;Satellite Internet Service With No Other Type of Internet Subscription Households;households that do not have any other type of internet service besides satellite internet;households that have satellite internet as their only internet subscription;households that only subscribe to satellite internet;households that only subscribe to satellite internet service -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Africa;Foreign Born Households in Africa With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside of africa;number of households with retirement income in the past 12 months, foreign born, africa;number of households with retirement income in the past year, born outside of africa;number of households with retirement income in the past year, foreign born, africa" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Asia;Foreign Born Households in Asia With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside the us, asia;number of households with retirement income in the past 12 months, foreign born, asia;number of households with retirement income in the past year, born outside the us, asia;number of households with retirement income in the past year, foreign born, asia" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Caribbean;Foreign Born Households in Caribbean With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside the united states, caribbean;number of households with retirement income in the past 12 months, foreign born, caribbean;number of households with retirement income in the past year, born outside the united states, caribbean;number of households with retirement income in the past year, foreign born, caribbean" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Central America Except Mexico;Foreign Born Households in Central America Except Mexico With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, foreign born, central america except mexico;number of households with retirement income in the past 12 months, foreign born, central america excluding mexico;number of households with retirement income in the past year, foreign born, central america except mexico;number of households with retirement income in the past year, foreign born, central america excluding mexico" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Eastern Asia;Foreign Born Households in Eastern Asia With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside the united states, eastern asia;number of households with retirement income in the past 12 months, foreign born, eastern asia;number of households with retirement income in the past year, born outside the united states, eastern asia;number of households with retirement income in the past year, foreign born, eastern asia" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Europe;Foreign Born Households in Europe With Retirement Income In The Past 12 Months;number of european households with foreign-born residents who received retirement income in the past 12 months;number of households in europe with foreign-born residents who received retirement income in the past 12 months;number of households in europe with foreign-born residents who received retirement income in the past year;number of households with foreign-born residents who received retirement income in the past 12 months in europe" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Latin America;Foreign Born Households in Latin America With Retirement Income In ThePast12Months__PlaceOfBirth;number of households with latin american foreign-born residents who received retirement income in the last 12 months;number of households with latin american foreign-born residents who received retirement income in the past 12 months;number of households with latin american foreign-born residents who received retirement income in the past year;number of households with retirement income in the past 12 months, foreign born, latin america" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Country/MEX;Foreign Born Households in Mexico With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, foreign born, country/mex" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Northamerica;Foreign Born Households in North America With Retirement Income In The Past 12 Months;number of households with foreign-born members who received retirement income in the last 12 months, north america;number of households with foreign-born members who received retirement income in the past 12 months, north america;number of households with retirement income in the past 12 months, foreign born, north america;number of households with retirement income in the past 12 months, foreign-born, north america" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Northern Western Europe;Foreign Born Households in Northern Western Europe With Retirement Income In The Past 12 Months;number of households in northern western europe with foreign-born residents who received income from a retirement plan in the past 12 months;number of households in northern western europe with foreign-born residents who received pension income in the past 12 months;number of households in northern western europe with foreign-born residents who received retirement benefits in the past 12 months;number of households with foreign-born residents in northern western europe who received retirement income in the past 12 months" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Oceania;Foreign Born Households in Oceania With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside of the united states, oceania;number of households with retirement income in the past 12 months, foreign born, oceania;number of households with retirement income in the past year, born outside of the united states, oceania;number of households with retirement income in the past year, foreign born, oceania" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, South Central Asia;Foreign Born Households in South Central Asia With Retirement Income In The Past 12 Months;number of households with foreign-born residents from south central asia who received a pension in the past 12 months;number of households with foreign-born residents from south central asia who received income from a retirement account in the past 12 months;number of households with foreign-born residents from south central asia who received retirement benefits in the past 12 months;number of households with foreign-born residents from south central asia who received retirement income in the past 12 months" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, South Eastern Asia;Foreign Born Households in South Eastern Asia With Retirement Income In The Past 12 Months;number of households in south east asia with foreign-born residents who received retirement income in the past 12 months;number of households in south east asia with foreign-born residents who received retirement income in the past year;number of households with foreign-born residents who received retirement income in the past 12 months in south east asia;number of households with retirement income in the past 12 months, foreign born, south east asia" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Southamerica;Foreign Born Households in South America With Retirement Income In The Past 12 Months;number of households that received retirement income in the past 12 months, with south american foreign-born residents;number of households with retirement income in the past 12 months, foreign born, south america;number of households with south american foreign-born residents who received retirement income in the 12 months prior to the current date;number of households with south american foreign-born residents who received retirement income in the past year, as of the current date" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Southern Eastern Europe;Foreign Born Households in Southern Eastern Europe With Retirement Income In The Past 12 Months;number of households with foreign-born residents from southern eastern europe who are no longer working and are living off of government or private retirement benefits;number of households with foreign-born residents from southern eastern europe who have retired;number of households with foreign-born residents from southern eastern europe who received retirement income in the past 12 months;number of households with retirement income in the past 12 months, foreign born, southern eastern europe" -Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Retirement Income in The Past 12 Months, Foreign Born, Western Asia;Foreign Born Households in Western Asia With Retirement Income In The Past 12 Months;number of households with retirement income in the past 12 months, born outside the united states, western asia;number of households with retirement income in the past 12 months, foreign born, western asia;number of households with retirement income in the past year, born outside the united states, western asia;number of households with retirement income in the past year, foreign born, western asia" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Family Household;Number of Family Households Who Received Supplemental Security Income or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are in a family household;how many family households received supplemental security income or cash assistance in the 12 months prior to the current date;how many family households received supplemental security income or cash assistance in the last year;how many family households received supplemental security income or cash assistance in the past year;how many family households received supplemental security income or cash assistance over the last year" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Family Household, Below Poverty Level in The Past 12 Months;How many households received SSI and/or cash assistance in the last year and were below the poverty line in the past 12 months?;How many households received SSI and/or cash assistance in the last year while living below the poverty line?;How many households received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months?;How many households received SSI and/or cash assistance in the past year that were below the poverty line in the past 12 months?;How many households received SSI and/or cash assistance in the past year while living below the poverty line?;Number of Family Households Which Are Below Poverty Line and Received Supplemental Security Income or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are in a family household with Below Poverty Level Status in The Past 12 Months;number of family households below poverty line who received supplemental security income or cash assistance in the 12 months prior to the current date;number of family households below poverty line who received supplemental security income or cash assistance in the last year;number of family households below poverty line who received supplemental security income or cash assistance in the past year;number of family households below poverty line who received supplemental security income or cash assistance over the last year" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Married Couple Family Household;Number of Married Family Households Who Received Supplemental Security Income or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are a Married Couple in a family household;how many married family households received supplemental security income or cash assistance in the past year?;how many married family households received supplemental security income or cash assistance over the last year?;what is the number of married family households that received supplemental security income or cash assistance in the past year?;what is the number of married family households that received supplemental security income or cash assistance over the last year?" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Married Couple Family Household, Below Poverty Level in The Past 12 Months;How many married couples living in poverty received SSI or cash assistance in the past year?;How many married couples received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months?;How many married couples received SSI and/or cash assistance in the past year while living in a household with below poverty level status?;Number of Married Family Households Below the Poverty Line Which Received Supplemental Security Income or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are a Married Couple in a family household with Below Poverty Level Status in The Past 12 Months;The number of married couples who received SSI and/or cash assistance in the past year and were below the poverty line in the past 12 months;number of married couples living below the poverty line who received supplemental security income (ssi) or cash assistance over the last year;number of married couples living in poverty who received ssi or cash assistance in the last year;number of married couples with incomes below the poverty line who received ssi or cash assistance in the last year;number of married-couple families living in poverty who received supplemental security income or cash assistance in the past year" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Single Mother Family Household;Number of Single Mother Family Households Receiving SSI and or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are a Single Mother in a family household;Number of single mothers receiving SSI and/or Cash Assistance in the last year;The number of households headed by single mothers who received SSI and/or cash assistance in the last year;The number of households with a single mother as head of household who received SSI and/or cash assistance in the last year;The number of single mothers who received SSI and/or cash assistance in the last year;The number of single-mother households receiving SSI and/or cash assistance in the last year;how many single mothers received ssi or cash assistance in the last year?;how many single-mother families received ssi or cash assistance in the last year?;how many single-mother households received ssi or cash assistance in the last 12 months?;how many single-mother households received ssi or cash assistance in the last year?" -Count_Household_WithSSIAndOrCashAssistanceInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With SSIAnd or Cash Assistance in The Past 12 Months, Single Mother Family Household, Below Poverty Level in The Past 12 Months;How many households with a single mother below the poverty line received SSI or cash assistance in the last year?;How many single mothers living below the poverty line received SSI or cash assistance in the past year?;How many single mothers with below poverty level status received SSI and/or cash assistance in the last 12 months?;How many single mothers with below poverty level status received SSI and/or cash assistance in the past year?;Number of Single Mother Family Households Which Are Below the Poverty Line and Receiving SSI and or Cash Assistance Over the Last Year;Number of households receiving SSI and or Cash Assistance over the last year who are a Single Mother in a family household with Below Poverty Level Status in The Past 12 Months;how many single-mother families are below the poverty line and receiving ssi or cash assistance in the last year?;how many single-mother families were living in poverty and receiving government assistance in the last year?;how many single-mother households are living in poverty and receiving government assistance?;how many single-mother households were below the poverty line and received ssi or cash assistance in the last year?" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Africa;Foreign Born Households in Africa With SSI In The Past 12 Months;number of households with ssi in the past 12 months, born outside the united states, africa;number of households with ssi in the past 12 months, foreign born, africa;number of households with ssi in the past 12 months, foreign-born, africa;number of households with ssi in the past year, foreign-born, africa" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Asia;Foreign Born Households in Asia With SSI In The Past 12 Months;number of households with ssi in the past 12 months, asia, foreign born;number of households with ssi in the past 12 months, born in asia;number of households with ssi in the past 12 months, born outside the united states, asia;number of households with ssi in the past 12 months, foreign born, asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Caribbean;Foreign Born Households in Caribbean With SSI In The Past 12 Months;number of households that received ssi in the past 12 months and are foreign born from the caribbean;number of households with ssi in the past 12 months, born in the caribbean, foreign born;number of households with ssi in the past 12 months, born outside the united states, caribbean;number of households with ssi in the past 12 months, foreign born, caribbean" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Central America Except Mexico;Foreign Born Households in With SSI In Central America Except Mexico The Past 12 Months;number of households with ssi in the past 12 months, born outside of the united states, central america except mexico;number of households with ssi in the past 12 months, born outside the united states, central america except mexico;number of households with ssi in the past 12 months, foreign born, central america except mexico;number of households with ssi in the past 12 months, foreign-born, central america except mexico" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Eastern Asia;Foreign Born Households in Eastern Asia With SSI In The Past 12 Months;number of households with ssi in the past 12 months, born outside the united states, eastern asia;number of households with ssi in the past 12 months, foreign born, eastern asia;the number of households that received ssi in the past 12 months and are foreign-born from eastern asia;the number of households with ssi in the past 12 months that are foreign-born and from eastern asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Europe;Foreign Born Households in Europe With SSI In The Past 12 Months;number of households with ssi in the past 12 months, europe, foreign-born;number of households with ssi in the past 12 months, foreign-born, european countries;number of households with ssi in the past 12 months, foreign-born, european union;the number of households that received ssi in the past 12 months and whose members were born in europe or another country" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Latin America;Foreign Born Households in Latin America With SSI In The Past 12 Months;number of households with ssi in the past 12 months, born outside the united states, latin america;number of households with ssi in the past 12 months, foreign born, latin america;number of households with ssi in the past 12 months, latin america, foreign born;number of households with ssi in the past 12 months, latin american, foreign born" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Country/MEX;Foreign Born Households in Mexico With SSI In The Past 12 Months;number of households with ssi in the past 12 months, foreign born, country/mex" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Northamerica;Foreign Born Households in North America With SSI In The Past 12 Months;number of households in north america with ssi in the past 12 months, foreign-born" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Northern Western Europe;Foreign Born Households in Northern Western Europe With SSI In The Past 12 Months;number of households that received ssi in the past 12 months and are foreign born from northern western europe;number of households that received ssi in the past 12 months and were foreign born in northern western europe;number of households that received ssi in the past 12 months and were foreign-born residents of northern western europe;number of households with ssi in the past 12 months, foreign born, northern western europe" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Oceania;Foreign Born Households in Oceania With SSI In The Past 12 Months;number of households with foreign-born residents who received ssi in the past 12 months in oceania;number of households with ssi in the past 12 months, foreign born, oceania;number of households with ssi in the past 12 months, foreign-born, oceania;number of households with ssi in the past year, foreign born, oceania" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, South Central Asia;Foreign Born Households in South Central Asia With SSI In The Past 12 Months;number of households with ssi in the past 12 months, foreign born, south central asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, South Eastern Asia;Foreign Born Households in South Eastern Asia With SSI In The Past 12 Months;number of households that received ssi in the past 12 months and were foreign born from southeast asia;number of households with ssi in the past 12 months, foreign born, south eastern asia;number of households with ssi in the past 12 months, not native-born, south eastern asia" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Southamerica;Foreign Born Households in South America With SSI In The Past 12 Months" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Southern Eastern Europe;Foreign Born Households in Southern Eastern Europe With SSI In The Past 12 Months;number of households that received ssi in the past 12 months and were foreign born in southern eastern europe;number of households with ssi in the past 12 months, born outside the us, southern eastern europe;number of households with ssi in the past 12 months, foreign born, southern eastern europe;number of households with ssi in the past 12 months, southern eastern europe, foreign born" -Count_Household_WithSSIInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With SSIIn The Past 12 Months, Foreign Born, Western Asia;Foreign Born Households in Western Asia With SSI In The Past 12 Months;number of households with ssi in the past 12 months, foreign born, western asia;number of households with ssi in the past 12 months, foreign-born, western asia" -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Family Household;How many family households received Social Security Income over the last year?;How many households received Social Security Income over the last year that were family households?;Number of Family Households Which Received Social Security Income in the Last Year;Number of households receiving Social Security Income over the last year who are in a family household;Number of households that received Social Security Income in the last year and are family households;The number of households that received Social Security Income in the last year and are family households;how many family households received social security benefits in the last year?;how many family households received social security income in the last year?;what is the number of family households that received social security income in the last year?;what is the total number of family households that received social security income in the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Family Household, Below Poverty Level in The Past 12 Months;How many households received Social Security Income in the last year and were below the poverty line in the past 12 months?;How many households received Social Security Income last year and were below the poverty line in the past 12 months;Number of Family Households Whose Income Is Below the Poverty Line and Which Received Social Security Income Over the Last Year;Number of households receiving Social Security Income over the last year who are in a family household with Below Poverty Level Status in The Past 12 Months;The number of households that received Social Security Income in the past year and were below the poverty line in the past 12 months;how many family households lived below the poverty line and received social security income last year?;how many family households lived below the poverty line in the last year and received social security income?;how many family households received social security income last year while living below the poverty line?;how many family households received social security income while living below the poverty line in the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Africa;How many African-born people received Social Security Income in the US in the last year;How many households in the US received Social Security Income in the last year that were headed by someone born in Africa;How many households in the US received Social Security Income in the last year whose members were born in Africa;How many households received Social Security Income over the last year whose members were born in Africa?;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Africa;Number of households receiving Social Security Income over the last year who are born in Africa;What is the number of households in the US that received Social Security Income in the last year and whose members were born in Africa;number of households receiving social security income in the last year whose members were born in africa;number of households receiving social security income in the last year with at least one member born in africa;number of households receiving social security income in the last year with at least one member who was born in africa;number of households receiving social security income over the last year who were born in africa" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,"1 How many households received Social Security Income in the last year that were headed by someone born in Asia?;Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Asia;How many Asian-born households received Social Security Income last year?;How many households that are Asian-born received Social Security Income in the last year;Number of Asian-born households receiving Social Security Income over the last year;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Asia;Number of households receiving Social Security Income over the last year who are born in Asia;The number of households receiving Social Security Income in the last year that are Asian-born;how many households headed by someone born in asia received social security income in the last year?;how many households received social security income in the last year that were headed by someone born in asia?;what is the number of households that received social security income in the last year and were headed by someone born in asia?;what is the total number of households that received social security income in the last year and were headed by someone born in asia?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Caribbean;Number of Caribbean-born households receiving Social Security Income over the last year;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in a Caribbean Country;Number of households born in the Caribbean receiving Social Security Income over the last year;Number of households receiving Social Security Income over the last year who are born in Caribbean;Number of households with Caribbean-born members receiving Social Security Income over the last year;Number of households with at least one Caribbean-born member receiving Social Security Income over the last year;Number of households with at least one member born in the Caribbean receiving Social Security Income over the last year;how many caribbean-born households in the us received social security income last year?;how many households in the us received social security income last year and were born in a caribbean country?;how many households in the us received social security income last year whose members were born in a caribbean country?;what is the number of households in the us that received social security income last year and were born in a caribbean country?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Central America Except Mexico;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Central American Country Other Than Mexico;Number of households receiving Social Security Income in the last year whose heads of household were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose primary earners were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose primary income earners were born in Central America but not Mexico;Number of households receiving Social Security Income in the last year whose residents were born in Central America but not Mexico;Number of households receiving Social Security Income over the last year who are born in Central America Except Mexico;Number of households receiving Social Security Income over the last year who were born in Central America but not Mexico;how many households in the us received social security income over the last year and were born in a central american country other than mexico?;how many households in the us received social security income over the last year who were born in a central american country other than mexico?;what is the number of households in the us that received social security income over the last year and were born in a central american country other than mexico?;what is the number of households in the us that received social security income over the last year who were born in a central american country other than mexico?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Eastern Asia;How many households in Eastern Asia received Social Security Income last year?;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Eastern Asia;Number of households receiving Social Security Income in the last year where at least one member of the household was born in Eastern Asia;Number of households receiving Social Security Income in the last year where the head of household was born in Eastern Asia;Number of households receiving Social Security Income in the last year where the majority of the household was born in Eastern Asia;Number of households receiving Social Security Income over the last year who are born in Eastern Asia;Number of households receiving Social Security Income over the last year who were born in Eastern Asia;how many households born in eastern asia received social security income over the last year?;how many households received social security income over the last year and were born in eastern asia?;how many households received social security income over the last year if they were born in eastern asia?;how many households who were born in eastern asia received social security income over the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Europe;How many European-born households received Social Security Income last year;How many households born in Europe received Social Security Income in the last year;How many households born in Europe received Social Security Income in the past year;Number of European-born households receiving Social Security Income in the last year;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Europe;Number of households receiving Social Security Income over the last year who are born in Europe;What is the number of households born in Europe that received Social Security Income last year;how many european-born households received social security income last year?;how many households that were born in europe received social security income last year?;what is the number of households born in europe that received social security income last year?;what is the number of households that were born in europe that received social security income last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Latin America;How many households received Social Security Income last year that were headed by someone born in Latin America?;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Latin America;Number of households receiving Social Security Income in the last year that had at least one member born in Latin America;Number of households receiving Social Security Income in the last year that were headed by someone born in Latin America;Number of households receiving Social Security Income in the last year whose members were born in Latin America;Number of households receiving Social Security Income over the last year who are born in Latin America;Number of households receiving Social Security Income who were born in Latin America in the last year;how many households received social security income in the last year that had members born in latin america?;how many households received social security income over the last year whose members were born in latin america?;what is the number of households that received social security income in the last year and had members born in latin america?;what is the number of households that received social security income over the last year and whose members were born in latin america?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Country/MEX;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in Mexico;Number of Mexican households receiving Social Security Income in the last year;Number of Mexican-born households receiving Social Security Income in the last year;Number of households receiving Social Security Income in the last year who were born in Mexico;Number of households receiving Social Security Income in the last year whose head of household was born in Mexico;Number of households receiving Social Security Income in the last year whose head of household was born in Mexico and is currently living in the United States;Number of households receiving Social Security Income over the last year who are born in Country/ MEX;how many households born in mexico received social security income in the last year?;how many mexican-born households received social security income in the last year?;what is the number of households born in mexico that received social security income in the last year?;what is the number of households that received social security income in the last year and were born in mexico?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Northamerica;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in North America;Number of North American households receiving Social Security Income in the last year;Number of households receiving Social Security Income over the last year who are born in Northamerica;Number of households receiving Social Security Income over the last year who were born in North America;Number of households receiving Social Security Income over the last year with North American-born members;Number of households receiving Social Security Income over the last year with North American-born residents;Number of households receiving Social Security Income over the last year with at least one North American-born member;how many households received social security income over the last year and were born in north america?;how many north american-born households received social security income over the last year?;what is the number of households that received social security income over the last year and were born in north america?;what is the number of north american-born households that received social security income over the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"1 how many households in northern western europe received social security income in the last year?;2 what is the number of households in northern western europe that received social security income in the last year?;3 what percentage of households in northern western europe received social security income in the last year?;4 what is the rate of social security income receipt among households in northern western europe in the last year?;Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Northern Western Europe;How many households in Northern Western Europe received Social Security Income in the last year?;How many households in Northern Western Europe received Social Security Income last year?;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Northern Western Europe;Number of households receiving Social Security Income over the last year who are born in Northern Western Europe;Number of households receiving Social Security Income over the last year who were born in Northern Western Europe;Number of households receiving Social Security Income over the last year who were born in Scandinavia" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Oceania;How many households in Oceania received Social Security Income in the past year;How many households in Oceania received Social Security Income last year;How many households in Oceania received Social Security Income last year?;How many households received Social Security Income in the last year and were born in Oceania?;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in Oceania;Number of households receiving Social Security Income over the last year who are born in Oceania;What is the number of households in Oceania that received Social Security Income in the last year;how many households in oceania received social security income in the past year;how many households in oceania received social security income last year;what is the number of households in oceania that received social security income in the past year;what is the number of households in oceania that received social security income last year" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, South Central Asia;Number of Households Receiving Social Security Income Over the Last Year Who Are Born in a South Central Asian Country;Number of households receiving Social Security Income in the last year whose members were born in South Central Asia;Number of households receiving Social Security Income in the last year with at least one member born in South Central Asia;Number of households receiving Social Security Income in the last year with at least one member who was born in South Central Asia;Number of households receiving Social Security Income in the last year with members born in South Central Asia;Number of households receiving Social Security Income over the last year who are born in South Central Asia;Number of households receiving Social Security Income who were born in South Central Asia in the last year;number of households born in south central asia receiving social security income in the last year;number of households receiving social security income in the last year who were born in south central asia;number of households who were born in south central asia and received social security income in the last year;number of south central asian households receiving social security income in the last year" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, South Eastern Asia;How many Southeast Asian households received Social Security income last year;How many households in South East Asia received Social Security Income last year?;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a South Eastern Asian Country;Number of households receiving Social Security Income over the last year who are born in South Eastern Asia;The number of households receiving Social Security Income in the last year that had at least one member who was born in one of the countries of South East Asia;The number of households receiving Social Security Income in the last year who were born in South East Asia;The number of households receiving Social Security Income in the last year whose members were born in South East Asia;how many households received social security income in the past year if the head of household was born in a southeast asian country?;how many households received social security income over the last year if the head of household was born in a southeast asian country?;what is the number of households that received social security income in the past year if the head of household was born in a southeast asian country?;what is the number of households that received social security income over the last year if the head of household was born in a southeast asian country?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Southamerica;How many households in the US received Social Security Income last year and were born in South America?;How many households in the last year received Social Security Income from members born in South America;How many households received Social Security Income in the last year whose members were born in South America;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in South America;Number of households in the last year with members born in South America who received Social Security Income;Number of households receiving Social Security Income over the last year who are born in Southamerica;South American recipients of Social Security Income in the last year;how many households received social security income in the last year that had members born in south america;how many households received social security income last year whose members were born in south america;how many households with members born in south america received social security income last year;how many south american-born households received social security income in the last year" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"1 Number of households receiving Social Security Income over the last year who were born in Southern Eastern Europe;Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Southern Eastern Europe;How many households in Southern Eastern Europe received Social Security Income in the last year?;How many households in Southern Eastern Europe received Social Security Income last year?;How many households received Social Security Income in the last year if their head of household was born in Southern Eastern Europe?;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Southern Eastern European Country;Number of households receiving Social Security Income over the last year who are born in Southern Eastern Europe;how many households in the us received social security income over the last year whose members were born in a country in southern eastern europe?;how many households in the us received social security income over the last year whose members were born in a country in the balkans?;how many households in the us received social security income over the last year whose members were born in a southern eastern european country?;how many households received social security income over the last year whose members were born in a southern eastern european country?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,"Count of Household: With Social Security Income in The Past 12 Months, Foreign Born, Western Asia;How many Western Asian households received Social Security Income in the 12 months to last year;How many Western Asian households received Social Security Income in the past year;How many Western Asian households received Social Security Income over the last year;How many households in Western Asia received Social Security Income in the last year;How many households in Western Asia received Social Security Income over the last year;Number of Households Receiving Social Security Income Over the Last Year Who Were Born in a Western Asian Country;Number of households receiving Social Security Income over the last year who are born in Western Asia;how many households in the us received social security income over the last year whose members were born in a western asian country?;how many households received social security income over the last year whose members were born in a western asian country?;what is the number of households in the us that received social security income over the last year whose members were born in a western asian country?;what is the number of households in the us whose members were born in a western asian country that received social security income over the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Married Couple Family Household;How many married couples received Social Security Income in the last year?;How many married couples received Social Security Income over the last year?;Number of Family Households Receiving Social Security Income Which Have a Married Couple;Number of Married Couples in family households receiving Social Security Income over the last year;Number of households receiving Social Security Income over the last year who are a Married Couple in a family household;The number of married couples who received Social Security Income last year;The number of married couples who received Social Security Income over the last year;number of family households with married couples receiving social security income;number of family households with married couples who are social security recipients;number of married couples receiving social security income;number of social security recipients who are married couples" -Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Married Couple Family Household, Below Poverty Level in The Past 12 Months;How many married couples living below the poverty line received Social Security Income in the past year?;Number of Family Households Receiving Social Security Income Over the Last Year Who Are a Married Couple and Are Below the Poverty Status for the Last Year;Number of households receiving Social Security Income over the last year who are a Married Couple in a family household with Below Poverty Level Status in The Past 12 Months;how many married couples received social security income and were below the poverty line last year?;the number of married couples who received social security income last year and were below the poverty line last year;the number of married couples who received social security income last year and were considered low-income last year;the number of married couples who received social security income last year and were living in poverty last year" -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: With Social Security Income in The Past 12 Months, Single Mother Family Household;Number of Single Mother Family Households Receiving Social Security Income Over the Last Year;Number of families headed by single mothers receiving Social Security Income over the last year;Number of households headed by single mothers receiving Social Security Income over the last year;Number of households receiving Social Security Income over the last year who are a Single Mother in a family household;Number of households with social security income in the past 12 months where the household is a single mother family household;Number of single mothers and their children receiving Social Security Income over the last year;Number of single mothers receiving Social Security Income over the last year;Number of single-mother households receiving Social Security Income over the last year;how many single mothers received social security income in the last year?;how many single-mother households received social security income in the last year?;what is the number of single mothers that received social security income in the last year?;what is the number of single-mother households that received social security income in the last year?" -Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,"Count of Household: With Social Security Income in The Past 12 Months, Single Mother Family Household, Below Poverty Level in The Past 12 Months;How many single mothers have received Social Security Income in the past year and are living below the poverty line?;How many single mothers in family households with below poverty level status received Social Security Income in the past year?;How many single mothers living below the poverty line received Social Security Income in the past year?;How many single mothers living in poverty received Social Security Income in the past year?;Number of Single Mother Family Households Which Are Below the Poverty Line and Receiving Social Security Income Over the Last Year;Number of households receiving Social Security Income over the last year who are a Single Mother in a family household with Below Poverty Level Status in The Past 12 Months;Number of households with social security income in the past 12 months where the household is a single mother family household and also below poverty level in the past 12 months.;how many single-mother families received social security income last year while living below the poverty line?;how many single-mother families were below the poverty line and received social security income last year?;what is the number of single-mother families who received social security income last year while living below the poverty line?;what is the number of single-mother families who were below the poverty line and received social security income last year?" -Count_Household_WithoutFoodStampsInThePast12Months,Count of Household: Without Food Stamps in The Past 12 Months;Number of Households Which Have Not Received Food Stamps in the Last Year;Number of households not receiving Food Stamps in The Past 12 Months;Number of households not receiving SNAP benefits in The Past 12 Months;Number of households not receiving food stamps in the past 365 days;Number of households not receiving food stamps in the past year;The number of households that did not receive food stamps in the past 12 months;number of households that did not receive food stamps in the last year;number of households that have not been on food stamps in the last year;number of households that have not received food stamps in the last year;number of households that have not used food stamps in the last year -Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Above Poverty Level in The Past 12 Months;How many households were above the poverty line in the past 12 months and did not receive food stamps?;Number of Households Above Poverty Level and Have Not Received Food Stamps in the Last Year;Number of households not receiving Food Stamps over the last year who are Above Poverty Level Status in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are Above Poverty Level Status in The Past 12 Months;The number of households who were above the poverty line in the past 12 months and did not receive food stamps;The number of households who were not below the poverty line in the past 12 months and did not receive food stamps;The number of households who were not food stamp recipients in the past 12 months and were above the poverty line;The number of households who were not food stamp recipients in the past 12 months and were not below the poverty line;number of households above the poverty line who have not received food stamps in the last year;the number of households that were above the poverty level and did not receive food stamps in the last year;the number of households that were not below the poverty level and did not receive food stamps in the last year;the number of households that were not food stamp recipients and were above the poverty level in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Count of Household: Without Food Stamps in The Past 12 Months, American Indian or Alaska Native Alone;How many households headed by American Indian or Alaska Native Alone did not receive Food Stamps in the last year?;Number of American Indian or Alaska Native Alone households not receiving Food Stamps in the last year;Number of Households Not Receiving Food Stamps Over the Last Year Who Are American Indian or Alaska Native;Number of households not receiving Food Stamps over the last year who are American Indian or Alaska Native Alone;Number of households not receiving SNAP benefits over the last year who are American Indian or Alaska Native Alone;Number of households who are American Indian or Alaska Native Alone and did not receive Food Stamps in the last year;The number of American Indian or Alaska Native Alone households that did not receive Food Stamps in the last year;The number of American Indian or Alaska Native Alone households that did not receive Food Stamps in the past year;the number of american indian or alaska native households not receiving food stamps over the last year;the number of american indian or alaska native households that did not receive food stamps over the last year;the number of american indian or alaska native households that have not received food stamps over the last year;the number of american indian or alaska native households that were not receiving food stamps over the last year" -Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Asian Alone;Number of Asian-alone households not receiving Food Stamps over the last year;Number of Asian-alone households that did not receive Food Stamps over the last year;Number of Asian-alone households that were not on Food Stamps over the last year;Number of Asian-alone households that were not receiving Food Stamps over the last year;Number of Asian-alone households who did not receive Food Stamps over the last year;Number of Households Not Receiving Food Stamps Over the Last Year Who Are Asian Alone;Number of households not receiving Food Stamps over the last year who are Asian Alone;Number of households not receiving SNAP benefits over the last year who are Asian Alone;the number of asian households that did not receive food stamps in the last year;the number of asian households that did not use food stamps in the last year;the number of asian households that were not food stamp recipients in the last year;the number of asian households that were not on food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Below Poverty Level in The Past 12 Months;Number of Households Not Receiving Food Stamps Whose Income Is Below Poverty Level Status in the Last Year;Number of households not receiving Food Stamps over the last year who are Below Poverty Level Status in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are Below Poverty Level Status in The Past 12 Months;number of households not receiving food stamps whose incomes were below the poverty line in the last year;number of households not receiving food stamps with incomes below the poverty line in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Black or African American Alone;How many Black or African American households did not receive SNAP benefits in the past year;How many Black or African American households did not receive food assistance in the past year;How many Black or African American households did not receive food stamps in the past year;Number of African American Households Which Haven't Received Food Stamps in the Last Year;Number of households not receiving Food Stamps over the last year who are Black or African American Alone;Number of households not receiving SNAP benefits over the last year who are Black or African American Alone;What is the number of Black or African American households that did not receive SNAP benefits in the past year;What is the number of Black or African American households that did not receive food stamps in the past year;how many african american households have not received food stamps in the last year?;what number of african american households have not received food stamps in the last year?;what percentage of african american households have not received food stamps in the last year?;what proportion of african american households have not received food stamps in the last year?" -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household;Number of Family Households Which Haven't Received Food Stamps in the Last Year;Number of households not receiving Food Stamps over the last year who are in a family household;Number of households not receiving SNAP benefits over the last year who are in a family household;The number of households that were not receiving Food Stamps in the last year and are family households;the number of family households that did not receive food stamps in the last year;the number of family households that did not use food stamps in the last year;the number of family households that were not enrolled in the supplemental nutrition assistance program (snap) in the last year;the number of family households that were not food stamp recipients in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, No Workers in The Past 12 Months;Number of Family Households Who Had No Workers and Which Haven't Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps in the past year that have no workers;Number of households not receiving Food Stamps over the last year who are in a family household with No Workers in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with No Workers in The Past 12 Months;number of family households with no employed members who did not receive food stamps in the last year;number of family households with no income from employment who did not receive food stamps in the last year;number of family households with no workers who did not receive food stamps in the last year;number of family households without workers who did not receive food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, One Worker in The Past 12 Months;Number of Family Households Who Had One Workers and Which Haven't Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are in a family household with One Worker in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with One Worker in The Past 12 Months;Number of households with one worker who did not receive food stamps in the past year;number of families with one employed member who did not receive food stamps in the past year;number of families with one income earner who did not receive food stamps in the past year;number of households with one worker who did not receive food stamps in the past year;number of one-worker family households that have not received food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,"Count of Household: Without Food Stamps in The Past 12 Months, Family Household, Two or More Workers in The Past 12 Months;How many households with two or more workers in the past 12 months did not receive Food Stamps over the last year?;Number of Family Households Who Had Two or More Workers and Which Haven't Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps in the past year that have two or more workers;Number of households not receiving Food Stamps over the last year who are in a family household with Two or More Workers in The Past 12 Months;Number of households not receiving SNAP benefits over the last year who are in a family household with Two or More Workers in The Past 12 Months;Number of households with two or more workers who did not receive food stamps in the past year;The number of households with two or more workers who did not receive food stamps in the past year;number of family households with two or more workers who did not receive food stamps in the last year;number of family households with two or more workers who did not receive government assistance in the form of food stamps in the last year;number of family households with two or more workers who did not use food stamps in the last year;number of family households with two or more workers who were not food stamp recipients in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,"Count of Household: Without Food Stamps in The Past 12 Months, Hispanic or Latino;Number of Hispanic Households Not Receiving Food Stamps Over the Last Year;Number of Hispanic or Latino households not receiving Food Stamps in the last year;Number of Hispanic or Latino households not receiving Food Stamps over the last year;Number of Hispanic or Latino households that did not receive Food Stamps in the last year;Number of Hispanic or Latino households that have not received Food Stamps in the last year;Number of Hispanic or Latino households that were not receiving Food Stamps in the last year;Number of households not receiving Food Stamps over the last year who are Hispanic or Latino;Number of households not receiving SNAP benefits over the last year who are Hispanic or Latino;how many hispanic households didn't receive food stamps last year?;how many hispanic households didn't receive government assistance for food last year?;what's the number of hispanic households that didn't get food stamps last year?;what's the number of hispanic households that didn't get government assistance for food last year?" -Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household;Number of Households Not Receiving Food Stamps Over the Last Year Who Are a Married Couple in a Family Household;Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household;Number of married couples in family households not receiving Food Stamps in the last year;Number of married couples in family households who did not receive Food Stamps in the last year;Number of married couples in family households who did not receive food stamps in the last year;Number of married couples in family households who did not use Food Stamps in the last year;Number of married couples in family households who were not food stamp recipients in the last year;number of married couples in family households who did not receive food stamps in the last year;the number of married couples in family households who did not receive food stamps in the last year;the number of married couples in family households who did not use food stamps in the last year;the number of married couples in family households who were not on food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;Number of Households Not Receiving Food Stamps Over the Last Year Who Are Native Hawaiian or Other Pacific Islander Alone;Number of Native Hawaiian or Other Pacific Islander Alone households not receiving Food Stamps in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that did not receive Food Stamps in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that did not receive SNAP benefits in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that were not SNAP recipients in the last year;Number of Native Hawaiian or Other Pacific Islander Alone households that were not food stamp recipients in the last year;Number of households not receiving Food Stamps over the last year who are Native Hawaiian or Other Pacific Islander Alone;Number of households not receiving SNAP benefits over the last year who are Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander households that did not receive food stamps in the last year;the number of native hawaiian or other pacific islander households that did not use food stamps in the last year;the number of native hawaiian or other pacific islander households that were not enrolled in food stamps in the last year;the number of native hawaiian or other pacific islander households that were not food stamp recipients in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,"Count of Household: Without Food Stamps in The Past 12 Months, No Disability;Number of Households Not Receiving Food Stamps Over the Last Year Where No Member Has a Disability;Number of households not receiving Food Stamps over the last year who are No Disability;Number of households not receiving SNAP benefits over the last year who are No Disability;Number of households who did not receive Food Stamps in the last 12 months and do not have a disability;Number of households who did not receive Food Stamps in the last year and do not have a disability;Number of households who did not receive Food Stamps in the last year and have no disability;Number of households who have no disability and did not receive Food Stamps in the last 12 months;Number of households who have no disability and did not receive Food Stamps in the last year;number of households not receiving food stamps in the last year where no member has a disability;number of households that did not receive food stamps in the last year where no member has a disability;number of households that did not receive food stamps in the last year where no one has a disability;number of households that did not receive food stamps in the last year where no one is disabled or has a disability" -Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household;Number of Nonfamily Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Nonfamily Household;Number of households not receiving SNAP benefits over the last year who are Nonfamily Household;Number of non-family households not receiving Food Stamps in the last year;Number of nonfamily households not receiving Food Stamps over the last year;The number of nonfamily households that did not receive Food Stamps in the last year;how many non-family households did not receive government assistance for food in the last year?;number of non-family households not receiving food stamps in the past year;number of non-family households not receiving government assistance for food in the past year;number of non-family households not receiving government food assistance in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household;Number of Other Family Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps in the last year who are Other in a family household;Number of households not receiving Food Stamps over the last year who are Other in a family household;Number of households not receiving SNAP benefits over the last year who are Other in a family household;number of family households not receiving food stamps in the last 365 days;number of family households not receiving food stamps in the last year;number of family households not receiving food stamps in the last year, as of today;number of family households not receiving food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,"1 Number of single fathers who did not receive food stamps in the past year;Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household;Number of Single Father Family Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Single Father in a family household;Number of households not receiving SNAP benefits over the last year who are a Single Father in a family household;Number of single fathers in family households who did not receive Food Stamps in the last year;Number of single fathers not receiving food stamps in the last year;how many single father households did not receive food stamps in the last year;number of single-father households not receiving food stamps in the last year;the number of single father families not receiving food stamps in the last year;the number of single father households not receiving food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household;Number of Single Mother Family Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Single Mother in a family household;Number of households not receiving SNAP benefits over the last year who are a Single Mother in a family household;Number of single-mother households not receiving Food Stamps in the last year;number of households headed by single mothers not receiving food stamps in the last year;number of households headed by single parents not receiving food stamps in the last year;number of single-mother households not receiving food stamps in the last year;number of single-parent households not receiving food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_SomeOtherRaceAlone,"Count of Household: Without Food Stamps in The Past 12 Months, Some Other Race Alone;Number of Solely Other Race Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Some Other Race Alone;Number of households not receiving SNAP benefits over the last year who are Some Other Race Alone;the number of households of solely other race that did not receive food stamp benefits in the last year;the number of households of solely other race that did not receive food stamps in the last year;the number of households of solely other race that did not use food stamps in the last year;the number of households of solely other race that were not food stamp recipients in the last year;the number of households of solely other races that did not receive food stamp benefits in the last year;the number of households of solely other races that did not receive food stamps in the last year;the number of households of solely other races that were not receiving food stamp assistance in the last year;the number of households of solely other races that were not receiving food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces,"Count of Household: Without Food Stamps in The Past 12 Months, Two or More Races;Number of Multi Racial Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Two or More Races;Number of households not receiving SNAP benefits over the last year who are Two or More Races;the number of multi-racial households that did not receive food stamps in the past year;the number of multi-racial households that did not use food stamps in the past year;the number of multi-racial households that were not food stamp recipients in the past year;the number of multi-racial households that were not on food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,"Count of Household: Without Food Stamps in The Past 12 Months, White Alone;Number of White Alone households not receiving Food Stamps in the last 12 months;Number of White Alone households not receiving Food Stamps in the last year;Number of White Alone households that were not receiving Food Stamps in the last year;Number of White Households Not Receiving Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are White Alone;Number of households not receiving SNAP benefits over the last year who are White Alone;The number of white households that did not receive food stamps in the last year;The number of white-only households that did not receive food stamps in the last year;the number of white households that did not receive food stamps in the past year;the number of white households that were not food stamp recipients in the past year;the percentage of white households that did not receive food stamps in the past year;the proportion of white households that did not receive food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WhiteAloneNotHispanicOrLatino,"Count of Household: Without Food Stamps in The Past 12 Months, White Alone Not Hispanic or Latino;Number of Non Hispanic White Households Not Receiving Food Stamps Over the Last Year;Number of White Alone Not Hispanic or Latino households not receiving Food Stamps over the last year;Number of White Alone Not Hispanic or Latino households that did not receive Food Stamps in the last 12 months;Number of households not receiving Food Stamps over the last year who are White Alone Not Hispanic or Latino;Number of households not receiving SNAP benefits over the last year who are White Alone Not Hispanic or Latino;how many non-hispanic white households didn't receive food stamps last year?;how many non-hispanic white households were not on food stamps last year?;what is the number of non-hispanic white households that did not receive food stamps last year?;what is the number of non-hispanic white households that were not receiving food stamps last year?" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,"Count of Household: Without Food Stamps in The Past 12 Months, With Children Under 18;Number of Households With Children Who Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are With Children;Number of households not receiving SNAP benefits over the last year who are With Children;Number of households with children who did not receive Food Stamps in the last year;Number of households with children who did not receive any food stamps in the last year;Number of households with children who did not receive food stamps in the last year;Number of households with children who did not use food stamps in the last year;Number of households with children who were not on food stamps in the last year;the number of households with children who have not been on food stamps in the past year;the number of households with children who have not received food stamps in the past year;the number of households with children who have not received government assistance in the form of food stamps in the past year;the number of households with children who have not used food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household, With Children Under 18;Number of Married Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household with Children;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household with Children;Number of households with children headed by a married couple who did not receive food stamps in the past year;Number of households with children headed by a married couple who did not receive food stamps last year;Number of households with children headed by a married couple who were not food stamp recipients last year;Number of married couples with children who did not receive food stamps last year;Number of married couples with children who were not food stamp recipients last year;the number of married households with children who have not been on food stamps in the past year;the number of married households with children who have not received food stamps in the past year;the number of married households with children who have not received government assistance in the form of food stamps in the past year;the number of married households with children who have not used food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household, With Children Under 18;How many non-family households with children did not receive food stamps in the last year;Number of Nonfamily Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Nonfamily Household, With Children;Number of households not receiving SNAP benefits over the last year who are Nonfamily Household, With Children;Number of non-family households with children who did not receive Food Stamps last year;The number of nonfamily households with children who did not receive food stamps in the last year;What is the number of non-family households with children who did not receive food stamps in the last year;What is the number of non-family households with children who were not receiving food stamps in the last year;number of non-family households with children who did not receive food stamps in the last year;number of non-family households with children who did not receive government assistance in the last year;number of non-family households with children who did not receive supplemental nutrition assistance program benefits in the last year;number of non-family households with children who were not food insecure in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household, With Children Under 18;Number of Other Family Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Other in a family household with Children;Number of households not receiving SNAP benefits over the last year who are Other in a family household with Children;number of families with children who did not receive food stamps in the last year;number of families with children who were not food stamp recipients in the last year;number of family households with children who did not receive food stamps in the last year;number of family households with children who have not received food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household, With Children Under 18;How many single-father households with children did not receive food stamps in the last year?;Number of Single Father Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Single Father family household with Children;Number of households not receiving SNAP benefits over the last year who are a Single Father family household with Children;Number of single fathers with children who did not receive food stamps in the last year;number of households headed by single fathers with children who have not received food stamps in the past year;number of households with children headed by single fathers who have not received food stamps in the past year;number of single father households with children who did not receive food stamps in the last year;number of single father households with children who did not use food stamps in the last year;number of single father households with children who were not food stamp recipients in the last year;number of single fathers with children who have not received food stamps in the past year;number of single-father households with children who have not received food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household, With Children Under 18;Number of Single Mother Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households headed by a single mother with children who did not receive food stamps in the last year;Number of households not receiving Food Stamps over the last year who are a Single Mother family household with Children;Number of households not receiving SNAP benefits over the last year who are a Single Mother family household with Children;Number of households with children headed by a single mother who did not receive food stamps in the last year;Number of single mother households with children who did not receive food stamps in the last year;Number of single-mother households with children who did not receive food stamps in the last year;The number of single-mother households with children who did not receive food stamps in the last year;number of households headed by single mothers with children who did not receive food stamps in the last year;number of households headed by single parents with children who did not receive food stamps in the last year;number of single-mother households with children who did not receive food stamps in the last year;number of single-parent households with children who did not receive food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_WithDisability,"Count of Household: Without Food Stamps in The Past 12 Months, With Disability;Number of Disabled Households With Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are With Disability;Number of households not receiving SNAP benefits over the last year who are With Disability;the number of households with children and disabled members who have not received food stamps in the past year;the number of households with children who have disabled members and have not received food stamps in the past year;the number of households with disabled children who have not received food stamps in the past year;the number of households with disabled members and children who have not received food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60,"Count of Household: Without Food Stamps in The Past 12 Months, With People Over 60;Number of Households With People Over 60 Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are With People Over 60;Number of households not receiving SNAP benefits over the last year who are With People Over 60;number of households with people over 60 who have not been on food stamps in the past year;number of households with people over 60 who have not received food stamps in the past year;number of households with people over 60 who have not received government assistance for food in the past year;number of households with people over 60 who have not used food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,"Count of Household: Without Food Stamps in The Past 12 Months, Without Children Under 18;Number of Households Without Children Who Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Without Children;Number of households not receiving SNAP benefits over the last year who are Without Children;Number of households who do not receive Food Stamps and do not have children;Number of households without children who did not receive Food Stamps in the last year;Number of households without children who did not receive food stamps last year;The number of households that did not receive Food Stamps in the last year and do not have children;number of households without children who did not receive snap benefits in the past year;the number of households without children who have not been on food stamps in the past year;the number of households without children who have not received food stamps in the past year;the number of households without children who have not received government assistance in the form of food stamps in the past 12 months" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Married Couple Family Household, Without Children Under 18;Number of Married Households Without Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Married Couple in a family household without Children;Number of households not receiving SNAP benefits over the last year who are a Married Couple in a family household without Children;Number of households with no children and a married couple as the head of household that did not receive food stamps in the last 12 months;Number of households with no children and a married couple as the head of household that did not receive food stamps in the last year;number of married households with no children who did not receive government assistance in the past year;number of married households with no dependents who did not receive food stamps in the past year;number of married households without children who did not receive food stamps in the past year;the number of married households without children who have not received food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Nonfamily Household, Without Children Under 18;Number of Nonfamily Households Without Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Nonfamily Household, Without Children;Number of households not receiving SNAP benefits over the last year who are a Nonfamily Household, Without Children;Number of nonfamily households without children who did not receive food stamps in the last year;how many non-family households without children have not received food stamps in the last 12 months?;how many non-family households without children have not received food stamps in the past year?;what is the number of non-family households without children who have not received food stamps in the last year?;what is the number of non-family households without children who have not received food stamps in the past year?" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_OtherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Other Family Household, Without Children Under 18;Number of Other Family Households Without Children Which Have Not Received Food Stamps Over the Last Year;Number of households in Other family households without Children who did not receive Food Stamps in the last year;Number of households in Other family households without Children who did not receive Food Stamps over the last year;Number of households in an Other family household without Children who did not receive Food Stamps in the last year;Number of households not receiving Food Stamps in the last year who are Other family households without Children;Number of households not receiving Food Stamps over the last year who are in an Other family household without Children;Number of households not receiving SNAP benefits over the last year who are in an Other family household without Children;number of family households without children who did not receive food stamps in the last year;number of other family households without children who have not received food stamps in the last 12 months;number of other family households without children who have not received food stamps in the last year period;number of other family households without children who have not received food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleFatherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Father Family Household, Without Children Under 18;Number of Single Father Households Without Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Single Father family household without Children;Number of households not receiving SNAP benefits over the last year who are a Single Father family household without Children;Number of single-father households without children who did not receive food stamps in the last year;Number of single-father households without children who did not use food stamps in the last year;Number of single-father households without children who were not food stamp recipients in the last year;Number of single-father households without children who were not on food stamps in the last year;Number of single-father households without children who were not receiving food stamps in the last year;number of single father households without children who did not receive food stamps in the past year;number of single father households without children who did not use food stamps in the past year;number of single father households without children who were not food stamp recipients in the past year;number of single father households without children who were not on food stamps in the past year" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18_SingleMotherFamilyHousehold,"Count of Household: Without Food Stamps in The Past 12 Months, Single Mother Family Household, Without Children Under 18;Number of Single Mother Households Without Children Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are a Single Mother family household without Children;Number of households not receiving SNAP benefits over the last year who are a Single Mother family household without Children;Number of single-mother households without children who did not receive food stamps in the last year;Number of single-mother households without children who did not use food stamps in the last year;Number of single-mother households without children who were not food stamp recipients in the last year;Number of single-mother households without children who were not on food stamps in the last year;Number of single-mother households without children who were not receiving food stamps in the last year;number of single-mother households without children who have not been on food stamps in the last year;number of single-mother households without children who have not received food stamps in the last year;number of single-mother households without children who have not received government assistance in the form of food stamps in the last year;number of single-mother households without children who have not used food stamps in the last year" -Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,"1 the number of households in the united states that do not have any people over the age of 60 and have not received food stamps in the last year;2 the number of households in the us that do not have any people over the age of 60 and have not used food stamps in the last year;3 the number of households in the us that do not have any people over the age of 60 and have not been on food stamps in the last year;4 the number of households in the us that do not have any people over the age of 60 and have not received government assistance in the form of food stamps in the last year;Count of Household: Without Food Stamps in The Past 12 Months, Without People Over 60;Number of Households Without People Over 60 Which Have Not Received Food Stamps Over the Last Year;Number of households not receiving Food Stamps over the last year who are Without People Over 60;Number of households not receiving SNAP benefits over the last year who are Without People Over 60;how many households in the united states did not receive food stamps over the last year and do not have any members over 60;how many households in the us did not receive food stamps over the last year and do not have any members who are 60 years old or older;how many households in the us did not receive food stamps over the last year and do not have any members who are elderly;how many households in the us did not receive food stamps over the last year and do not have any members who are senior citizens" -Count_HousingUnit,Count of Housing Unit;Number of Housing Units;Number of housing units;Total number of homes in the area;Total number of houses in the area;Total number of housing units;Total number of housing units in the area;Total number of living spaces in the area;Total number of properties in the area;number of housing stock;number of housing units;number of living quarters;number of living spaces -Count_HousingUnit_1940To1949DateBuilt,Housing Units Built Between 1940 and 1949;Housing Units Built Between 1940 to 1949 -Count_HousingUnit_1950To1959DateBuilt,Housing Units Built Between 1950 and 1959;Housing Units Built Between 1950 to 1959 -Count_HousingUnit_1960To1969DateBuilt,Housing Units Built Between 1960 and 1969;Housing Units Built Between 1960 to 1969 -Count_HousingUnit_1970To1979DateBuilt,Housing Units Built Between 1970 and 1979;Housing Units Built Between 1970 to 1979 -Count_HousingUnit_1980To1989DateBuilt,Housing Units Built Between 1980 and 1989;Housing Units Built Between 1980 to 1989 -Count_HousingUnit_1990To1999DateBuilt,Housing Units Built Between 1990 and 1999;Housing Units Built Between 1990 to 1999 -Count_HousingUnit_2000To2004DateBuilt,Count of Housing Unit: Built Between 2000 And 2004;Housing Units Built Between 2000 and 2004 -Count_HousingUnit_2000To2009DateBuilt,Housing Units Built Between 2000 and 2009;Housing Units Built Between 2000 to 2009 -Count_HousingUnit_2005OrLaterDateBuilt,Count of Housing Unit: Built After 2005;Housing Units Built After 2005 -Count_HousingUnit_2010OrLaterDateBuilt,Housing Units Built in 2010 or Later -Count_HousingUnit_2010To2013DateBuilt,Count of Housing Unit Built Between 2010 And 2013;Count of Housing Unit: Built Between 2010 And 2013 -Count_HousingUnit_2014OrLaterDateBuilt,Count of Housing Unit: Built After 2014;Housing Units Built After 2014 -Count_HousingUnit_Before1939DateBuilt,Housing Units Built Before 1939 -Count_HousingUnit_CompleteKitchenFacilities_OccupiedHousingUnit,Count of Housing Unit: Complete Kitchen Facilities;Housing Units With Complete Kitchen Facilities;housing units with fully equipped kitchens;housing units with kitchens that are fully functional;housing units with kitchens that are ready to cook in;housing units with kitchens that have all the necessary appliances and utensils -Count_HousingUnit_CompletePlumbingFacilities_OccupiedHousingUnit,1 plumbing services that are comprehensive;2 plumbing services that are full-service;3 plumbing services that are all-inclusive;4 plumbing services that are one-stop shopping;Complete Plumbing Facilities;Count of Housing Unit: Complete Plumbing Facilities -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Asia;Housing Units Occupied By Population Foreign Born In Asia;housing units occupied by people who are not us citizens but were born in asia" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Caribbean;Housing Units Occupied by Foreign-Born Population In The Caribbean;foreign-born people living in the caribbean and their housing units;housing units occupied by people born outside of the caribbean;the number of housing units occupied by people born outside of the caribbean;the percentage of housing units occupied by people born outside of the caribbean" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Central America Except Mexico;Housing Units Occupied By Population Foreign Born in Central America, Except Mexico;central american foreign-born population living in housing units;housing units occupied by people born in central america but not mexico;number of homes occupied by people who immigrated to the united states from central america but not mexico;number of housing units occupied by central american immigrants, excluding mexico" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCountry/MEX,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Country/MEX;Housing Units Occupied by Foreign-Born Population in Mexico;foreign-born population in mexico living in housing units;housing units in mexico occupied by people who were not born there;housing units occupied by people born outside of mexico;people born outside of mexico living in housing units in mexico" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Eastern Asia;Housing Units Occupied By Population Foreign-Born In Eastern Asia;housing units occupied by foreign-born population in eastern asia;the number of apartments that people who were born in eastern asia live in;the number of dwellings that people who were born in eastern asia live in;the number of housing units occupied by people who were born in eastern asia" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Europe;Foreign-Born Population in Europe Occupying Housing Units;foreign-born people living in europe and their housing situation;number of foreign-born people living in europe who own or rent housing units;the distribution of foreign-born people in europe by housing type;the percentage of the foreign-born population in europe who own or rent housing" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Latin America;Housing Units Occupied By People Foreign Born In Latin America;homes of latin american immigrants;housing for latin american immigrants;housing occupied by latin american immigrants;latin american immigrants' homes" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Northern Western Europe;Foreign-Born Population in Northern Western Europe Occupying Housing Units;the number of foreign-born people in northern western europe who live in housing units as a percentage of the total population;the number of foreign-born people living in northern western europe who own or rent housing units;the percentage of the population in northern western europe that is foreign-born and lives in housing units;the proportion of foreign-born people in northern western europe who live in housing units" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, South Central Asia;Foreign-Born Population in South Central Asia Occupied Housing Unit;foreign-born population from south central asia in occupied housing units;number of south central asian foreign nationals living in occupied housing units;number of south central asian people living in occupied housing units who were not born in the united states;south central asian population in occupied housing units that were born outside the united states" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, South Eastern Asia;Occupied Housing Unit By Foreign-Born Population In South-Eastern Asia;proportion of foreign-born people living in occupied housing units in south-east asia;share of foreign-born people living in occupied housing units in south-east asia" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Southamerica;Occupied Housing Units of Foreign-Born Population in South America;housing occupied by foreign-born people in south america;housing units in south america occupied by people who are not citizens of south america;housing units in south america occupied by people who are not native-born south americans;housing units in south america occupied by people who were born in other countries" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Southern Eastern Europe;Foreign-Born in Southern Eastern Europe With Occupied Housing Unit;person born in southern eastern europe living in an occupied housing unit;person born in southern eastern europe who lives in an occupied housing unit;person who was born in southern eastern europe and currently lives in a home that is occupied;person who was born in southern eastern europe and currently resides in a housing unit that is occupied" -Count_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,"Count of Housing Unit: Foreign Born, Occupied Housing Unit, Western Asia;Housing Units Occupied By Tenants Foreign Born In Western Asia;number of households occupied by foreign-born tenants from western asia;number of households occupied by tenants born in western asia;number of housing units occupied by foreign-born tenants from western asia;number of housing units occupied by tenants born in western asia" -Count_HousingUnit_HomeValue1000000OrMoreUSDollar,"Housing Units Value with 1,000,000 UDS or More;Housing Units Valued at $1,000,000 or More" -Count_HousingUnit_HomeValue1000000To1499999USDollar,"Homes Valued Between $1,000,000 And $1,499,999;Homes Valued Between $1,000,000 and $1,499,999" -Count_HousingUnit_HomeValue100000To124999USDollar,"Homes Valued Between $100,000 And $124,999;Homes Valued Between $100,000 and $124,999" -Count_HousingUnit_HomeValue100000To199999USDollar,"Count of Housing Unit: 100,000 - 199,999 USD" -Count_HousingUnit_HomeValue10000To14999USDollar,"Homes Valued Between $10,000 And $14,999;Homes Valued Between $10,000 and $14,999" -Count_HousingUnit_HomeValue125000To149999USDollar,"Homes Valued Between $125,000 And $149,999;Homes Valued Between $125,000 and $149,999" -Count_HousingUnit_HomeValue1500000To1999999USDollar,"Homes Valued Between $1,500,000 And $1,999,999;Homes Valued Between $1,500,000 and $1,999,999" -Count_HousingUnit_HomeValue150000To174999USDollar,"Homes Valued Between $150,000 And $174,999;Homes Valued Between $150,000 and $174,999" -Count_HousingUnit_HomeValue15000To19999USDollar,"Homes Valued Between $15,000 to $19,999" -Count_HousingUnit_HomeValue175000To199999USDollar,"Homes Valued Between $175,000 to $199,999" -Count_HousingUnit_HomeValue2000000OrMoreUSDollar,"Homes Valued at $2,000,000 or More" -Count_HousingUnit_HomeValue200000To249999USDollar,"Homes Valued Between $200,000 to $249,999" -Count_HousingUnit_HomeValue200000To299999USDollar,"Count of Housing Unit: 200,000 - 299,999 USD" -Count_HousingUnit_HomeValue20000To24999USDollar,"Homes Valued Between $20,000 to $24,999" -Count_HousingUnit_HomeValue250000To299999USDollar,"Homes Valued Between $250,000 to $299,999" -Count_HousingUnit_HomeValue25000To29999USDollar,"Homes Valued Between $25,000 to $29,999" -Count_HousingUnit_HomeValue300000To399999USDollar,"Housing Units Value with 300,000 to 399,999 USD;Housing Units Valued at $300,000-$399,999" -Count_HousingUnit_HomeValue300000To499999USDollar,"Count of Housing Unit: 300,000 - 499,999 USD" -Count_HousingUnit_HomeValue30000To34999USDollar,"Homes Valued Between $30,000 to $34,999" -Count_HousingUnit_HomeValue35000To39999USDollar,"Homes Valued Between $35,000 to $39,999" -Count_HousingUnit_HomeValue400000To499999USDollar,"Housing Units Value with 400,000 to 499,999 USD;Housing Units Valued at $400,000-$499,999" -Count_HousingUnit_HomeValue40000To49999USDollar,"Homes Valued Between $40,000 to $49,999" -Count_HousingUnit_HomeValue500000To749999USDollar,"Housing Units Value with 500,000 to 749,999 USD;Housing Units Valued at $500,000-$749,999" -Count_HousingUnit_HomeValue500000To999999USDollar,"Count of Housing Unit: 500,000 - 999,999 USD" -Count_HousingUnit_HomeValue50000To59999USDollar,"Homes Valued Between $50,000 to $59,999" -Count_HousingUnit_HomeValue50000To99999USDollar,"Count of Housing Unit: 50,000 - 99,999 USD" -Count_HousingUnit_HomeValue60000To69999USDollar,"Homes Valued Between $60,000 to $69,999" -Count_HousingUnit_HomeValue70000To79999USDollar,"Homes Valued Between $70,000 to $79,999" -Count_HousingUnit_HomeValue750000To999999USDollar,"Housing Units Value with 750,000 to 999,999 USD;Housing Units Valued at $750,000-$999,999" -Count_HousingUnit_HomeValue80000To89999USDollar,"Homes Valued Between $80,000 to $89,999" -Count_HousingUnit_HomeValue90000To99999USDollar,"Homes Valued Between $90,000 to $99,999" -Count_HousingUnit_HomeValueUpto10000USDollar,"Homes Valued at $10,000 or Less" -Count_HousingUnit_HomeValueUpto49999USDollar,"Count of Housing Unit: 49,999 USD or Less" -Count_HousingUnit_HouseholderAge35OrLessYears_OccupiedHousingUnit,"Count of Housing Unit: 35 Years or Less, Occupied Housing Unit;Housing Units with Household Age 35 Years or Less" -Count_HousingUnit_HouseholderAge35To44Years_OccupiedHousingUnit,"Count of Housing Unit: 35 - 44 Years, Occupied Housing Unit;Occupied Housing Units Aged 35 to 44 Years" -Count_HousingUnit_HouseholderAge45To54Years_OccupiedHousingUnit,"Count of Housing Unit: 45 - 54 Years, Occupied Housing Unit;Population Age 45 to 54 Years With Occupied Housing Units" -Count_HousingUnit_HouseholderAge55To64Years_OccupiedHousingUnit,"Count of Housing Unit: 55 - 64 Years, Occupied Housing Unit;Population Aged 55 to 64 Years Occupying Housing Units" -Count_HousingUnit_HouseholderAge65To74Years_OccupiedHousingUnit,"Count of Housing Unit: 65 - 74 Years, Occupied Housing Unit;Occupied Housing Units by Population Aged 65 to 74 Years" -Count_HousingUnit_HouseholderAge75To84Years_OccupiedHousingUnit,"Count of Housing Unit: 75 - 84 Years, Occupied Housing Unit;Occupied Housing Unit With Householders Aged 75 to 84 Years" -Count_HousingUnit_HouseholderAge85OrMoreYears_OccupiedHousingUnit,"Count of Housing Unit: 85 Years or More, Occupied Housing Unit;Population Aged 85 Years or More With Occupied Housing Unit" -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit;number of people with bachelor's degrees or higher living in housing units divided by the total number of people living in housing units" -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OwnerOccupied,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit, Owner Occupied;Owner Occupied Housing Units With Bachelor's Degrees Or Higher;homes owned by people with bachelor's degrees or higher;housing units occupied by owners with at least a bachelor's degree;housing units occupied by owners with bachelor's degrees or higher;residential properties owned by people with bachelor's degrees or higher" -Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied,"Count of Housing Unit: Bachelors Degree or Higher, Occupied Housing Unit, Renter Occupied;Population With Bachelor's Degree or Higher Occupying Housing Units" -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OccupiedHousingUnit,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit;High School Graduates Includes Equivalency Occupied Housing Unit;high school graduates and equivalency holders living in occupied housing units;people who have completed high school or have an equivalent qualification live in occupied homes;people who have finished high school or have an equivalent qualification live in occupied residences;people who have graduated from high school or have an equivalency degree live in occupied housing units" -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OwnerOccupied,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit, Owner Occupied;Housing Units Occupied by High School Graduates Includes Equivalency;housing units are occupied by people who have graduated from high school or have an equivalency degree;housing units occupied by high school graduates include those occupied by people who have equivalent qualifications;housing units occupied by high school graduates includes equivalency;housing units occupied by high school graduates includes other high school diploma equivalents" -Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_RenterOccupied,"Count of Housing Unit: High School Graduate Includes Equivalency, Occupied Housing Unit, Renter Occupied;Housing Units Occupied By Tenants Who Are Highschool Graduates or Equivalent;housing units occupied by tenants who are high school graduates;housing units occupied by tenants who have a high school diploma or ged;housing units occupied by tenants who have a high school education;housing units occupied by tenants who have completed high school or equivalent" -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OccupiedHousingUnit,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit;Housing Units Occupied By Less Than High School Graduates;homes occupied by people who did not graduate from high school;housing units occupied by people with less than a high school diploma;housing units occupied by people with no high school diploma;housing units occupied by people with some high school education but no diploma" -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OwnerOccupied,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit, Owner Occupied;Less Than High School Graduates Owning Housing Units;a small number of people with less than a high school diploma own homes;a small portion of people who have not graduated from high school own real estate;home ownership is low among people with less than a high school diploma;not many people who have not graduated from high school own property" -Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_RenterOccupied,"Count of Housing Unit: Less Than High School Graduate, Occupied Housing Unit, Renter Occupied;Houses Of Less Than High School Graduate Tenants;dwellings of tenants with less than a high school diploma;homes of people who did not graduate from high school;homes of renters who did not complete high school;residences of less-than-high-school-educated renters" -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OccupiedHousingUnit,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit;Occupied Housing Units With Some College or Associate's Degrees;housing units occupied by people who have some college education;housing units occupied by people who have some college experience;housing units occupied by people who have some college or associate's degrees;housing units occupied by people with some college or associate's degrees" -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OwnerOccupied,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit, Owner Occupied;Owners of Housing Units With Some College or Associate's Degrees;homeowners with some college or an associate's degree;people who own homes and have some college or an associate's degree;people who own houses and have some college or an associate's degree;people who own housing units and have some college or an associate's degree" -Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_RenterOccupied,"Count of Housing Unit: Some College or Associates Degree, Occupied Housing Unit, Renter Occupied;Housing Units Occupied by Renters With Some College or Associate's Degree" -Count_HousingUnit_HouseholderRaceAmericanIndianAndAlaskaNativeAlone,American Indian or Alaska Native Housing Units;Count of Housing Unit: American Indian or Alaska Native Alone;accommodations for american indians or alaska natives;dwellings for american indians or alaska natives;homes for american indians or alaska natives;housing for american indians or alaska natives -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of Homes Where the Householder Identifies as American Indian or Alaska Native Alone;Number of homes where the head of household identifies as American Indian or Alaska Native alone;Number of homes where the head of household is American Indian or Alaska Native;Number of homes where the householder identifies as American Indian or Alaska Native alone;Number of homes with an American Indian or Alaska Native householder;Number of households where the householder identifies as American Indian or Alaska Native alone;Number of households with an American Indian or Alaska Native householder;number of homes where the head of household identifies as american indian or alaska native only;number of homes with an american indian or alaska native as the householder;number of homes with an american indian or alaska native head of household;number of homes with an american indian or alaska native householder -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_OwnerOccupied,"Count of Housing Unit: American Indian or Alaska Native Alone, Owner Occupied;Housing Units Occupied by American Indian Or Alaska Native Population;housing units occupied by alaska natives;housing units occupied by american indians or alaska natives;housing units occupied by indigenous peoples of the united states;housing units occupied by native americans" -Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_RenterOccupied,"American Indian or Alaska Native Population Occupying Housing Units;Count of Housing Unit: American Indian or Alaska Native Alone, Renter Occupied;the american indian or alaska native population living in housing units;the number of american indian or alaska native people living in housing units;the percentage of american indian or alaska native people living in housing units;the proportion of american indian or alaska native people living in housing units" -Count_HousingUnit_HouseholderRaceAsianAlone,Number of Homes Where the Householder Identifies as Asian Alone;Number of homes where the householder identifies as Asian alone;Number of homes with an Asian householder;Number of households with an Asian householder;number of homes where the householder identifies as asian alone;number of homes with an asian head of household;number of households where the householder is asian;number of households with an asian householder -Count_HousingUnit_HouseholderRaceAsianAlone_OwnerOccupied,"Count of Housing Unit: Asian Alone, Owner Occupied;Housing Units Occupied by Asian Population;number of houses occupied by people of asian descent;the number of dwellings that are occupied by people of asian descent;the number of housing units occupied by people of asian descent;the number of properties that are occupied by people of asian descent" -Count_HousingUnit_HouseholderRaceAsianAlone_RenterOccupied,"Asian Housing Units Occupied;Count of Housing Unit: Asian Alone, Renter Occupied;asian housing units with people living in them" -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,Number of Homes Where the Householder Identifies as Black or African American Alone;Number of homes where the head of household identifies as Black or African American;Number of homes where the householder identifies as Black or African American alone;Number of homes with Black or African American householders;Number of homes with a Black or African American householder;The number of households with a Black or African American householder;number of homes with a black or african american head of household;number of homes with a black or african american householder;number of households where the householder is black or african american;number of households with a black or african american householder -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_OwnerOccupied,"Count of Housing Unit: Black or African American Alone, Owner Occupied;Housing Units Occupied By African Americans;african american-occupied housing units;housing units occupied by african americans;housing units where the majority of occupants are african american;housing units where the occupants are african american" -Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_RenterOccupied,"African American Population With Rented Occupied Housing Units;Count of Housing Unit: Black or African American Alone, Renter Occupied;african american population living in rented housing units;number of african americans living in rented housing units;percentage of african americans living in rented housing units;share of african americans living in rented housing units" -Count_HousingUnit_HouseholderRaceHispanicOrLatino,Number of Homes Where the Householder Identifies as Hispanic or Latino;Number of homes where the householder identifies as Hispanic or Latino;Number of homes with Hispanic or Latino householders;Number of households with Hispanic or Latino householders;The number of homes with a Hispanic or Latino head of household;The number of households with a Hispanic or Latino householder;The number of residences where the householder is Hispanic or Latino;number of homes where the householder is hispanic or latino;number of homes with hispanic or latino heads of household;number of homes with hispanic or latino householders;number of households with a hispanic or latino householder -Count_HousingUnit_HouseholderRaceHispanicOrLatino_OwnerOccupied,"Count of Housing Unit: Hispanic or Latino, Owner Occupied;Hispanic Owner Occupants;hispanic home owners;hispanic homeowners;hispanic people who are homeowners;hispanic people who own property" -Count_HousingUnit_HouseholderRaceHispanicOrLatino_RenterOccupied,"Count of Housing Unit: Hispanic or Latino, Renter Occupied;Hispanic Renter Occupied Housing Units;dwellings rented by hispanic people;homes rented by hispanic people;housing units occupied by hispanic renters;places of residence rented by hispanic people" -Count_HousingUnit_HouseholderRaceNativeHawaiianAndOtherPacificIslanderAlone,Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone;Native Hawaiians or Other Pacific Islanders With Housing Units;native hawaiians or other pacific islanders who have a place to call home;native hawaiians or other pacific islanders who have a roof over their heads;native hawaiians or other pacific islanders who own or rent a home;native hawaiians or other pacific islanders who own or rent homes -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,3 number of residences with a native hawaiian or other pacific islander as the main resident;4 number of dwellings with a native hawaiian or other pacific islander as the primary resident;5 number of households where the householder identifies as native hawaiian or other pacific islander only;Number of Homes Where the Householder Identifies as Native Hawaiian or Other Pacific Islander Alone;Number of homes where the householder identifies as Native Hawaiian or Other Pacific Islander alone;Number of homes with a Native Hawaiian or Other Pacific Islander householder;Number of households where the head of household identifies as Native Hawaiian or Other Pacific Islander alone;Number of households where the householder identifies as Native Hawaiian or Other Pacific Islander alone;Number of households with a Native Hawaiian or Other Pacific Islander householder;number of residences with a native hawaiian or other pacific islander as the primary resident -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_OwnerOccupied,"Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone, Owner Occupied;Housing Units Occupied by Native Hawaiian Or Other Pacific Islander Population;number of housing units occupied by native hawaiian or other pacific islander population;number of housing units that are occupied by native hawaiian or other pacific islanders;number of housing units with native hawaiian or other pacific islander occupants;number of native hawaiian or other pacific islander occupied housing units" -Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_RenterOccupied,"Count of Housing Unit: Native Hawaiian or Other Pacific Islander Alone, Renter Occupied;Native Hawaiian Or Other Pacific Islander Population Rented Housing Units;native hawaiian or other pacific islander population in rented housing units;number of native hawaiian or other pacific islander people living in rented housing units;percentage of native hawaiian or other pacific islander people living in rented housing units;share of native hawaiian or other pacific islander people living in rented housing units" -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone,Number of Homes Where the Householder Identifies as Some Other Race Alone;Number of homes where the householder identifies as some other race alone;Number of homes with a householder who identifies as some other race alone;Number of homes with a householder who identifies as some other race and no other race;Number of homes with a householder who identifies as some other race exclusively;Number of households where the householder identifies as some other race only;Number of households where the householder identifies as some other race solely;number of homes where the householder identifies as some other race alone;number of homes where the householder identifies as some other race exclusively;number of households where the householder identifies as some other race only;number of households where the householder identifies as some other race solely -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_OwnerOccupied,"1 housing unit occupied by an owner of some other race;2 housing unit owned by someone of some other race;3 housing unit occupied by an owner who is not white;Count of Housing Unit: Some Other Race Alone, Owner Occupied;Housing Unit of Some Other Race Owner Occupied;home owned by someone of a different race" -Count_HousingUnit_HouseholderRaceSomeOtherRaceAlone_RenterOccupied,"Count of Housing Unit: Some Other Race Alone, Renter Occupied;Other Race Occupying Housing Units;housing units occupied by people of other races;housing units occupied by people who are not of the majority race;people of other races living in housing units" -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,"Homes with a householder who identifies as two or more races;Homes with mixed-race householders;Number of Homes Where the Householder Identifies as Two or More Races;Number of homes where the householder identifies as biracial, multiracial, or multiethnic;Number of homes where the householder identifies as two or more races;Number of homes with multiracial householders;Number of households with multiracial householders;homes with householders identifying as two or more races;number of homes with householders of multiple races;number of homes with householders who identify as two or more races;number of homes with mixed-race householders" -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied,"Count of Housing Unit: Two or More Races, Owner Occupied;Housing Units Occupied by Multiracial Population" -Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied,"Count of Housing Unit: Two or More Races, Renter Occupied" -Count_HousingUnit_HouseholderRaceWhiteAlone,5 the number of places of residence with a white occupant;Number of Homes Where the Householder Identifies as White Alone;Number of homes where the head of household identifies as white;Number of homes where the head of household identifies as white alone;Number of homes where the householder identifies as White alone;Number of homes where the householder is white;Number of homes with a white householder;Number of households where the householder is white alone;homes where the householder identifies as white;homes where the householder is white;homes with a white householder -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino,"Count of Housing Unit: White Alone Not Hispanic or Latino;White Non-Hispanic with Housing Units;people who are white, not hispanic, and live in a house or apartment;white people who are not hispanic and have housing units;white, non-hispanic people living in housing units;white, non-hispanic people who live in dwellings" -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_OwnerOccupied,"Count of Housing Unit: White Alone Not Hispanic or Latino, Owner Occupied;Housing Units Occupied By Non-Hispanic And White Population;housing units occupied by white and non-hispanic people" -Count_HousingUnit_HouseholderRaceWhiteAloneNotHispanicOrLatino_RenterOccupied,"Count of Housing Unit: White Alone Not Hispanic or Latino, Renter Occupied;Housing Units Occupied by White Non-Hispanic Population;the number of housing units occupied by white non-hispanics;the percentage of housing units occupied by white non-hispanics;the proportion of housing units occupied by white non-hispanics;the share of housing units occupied by white non-hispanics" -Count_HousingUnit_HouseholderRaceWhiteAlone_OwnerOccupied,"1 housing units occupied by white people;2 housing units with a white majority;3 housing units with a white population of at least 50%;4 housing units where the majority of residents are white;Count of Housing Unit: White Alone, Owner Occupied;Housing Units With White Population" -Count_HousingUnit_HouseholderRaceWhiteAlone_RenterOccupied,"Count of Housing Unit: White Alone, Renter Occupied;Rental Housing Units Occupied by White Population;white people living in rental housing;white population in rental housing units;whites as tenants;whites renting housing units" -Count_HousingUnit_IncompleteKitchenFacilities_OccupiedHousingUnit,Count of Housing Unit: Incomplete Kitchen Facilities;Housing Units With Incomplete Kitchen Facilities;housing units with kitchens that are missing some basic appliances;housing units with kitchens that are not fit for human habitation;housing units with kitchens that are not fully equipped;housing units with kitchens that are not up to code -Count_HousingUnit_IncompletePlumbingFacilities_OccupiedHousingUnit,Count of Housing Unit: Incomplete Plumbing Facilities;Housing Units with Incomplete Plumbing;apartments with deficient or faulty plumbing;dwellings with incomplete or faulty plumbing;homes with missing or broken plumbing;houses with inadequate or damaged plumbing -Count_HousingUnit_NoCashRent,Count of Housing Unit: No Cash Rent;Housing Unit No Cash Rent;housing that doesn't charge rent;housing that doesn't require cash rent;no-rent housing -Count_HousingUnit_OccupiedHousingUnit,Count of Housing Unit: Occupied Housing Unit;Occupied Housing Units;dwellings that are inhabited;dwellings that are occupied;housing that is occupied by people;residential properties that are being used -Count_HousingUnit_OwnerOccupied,Number of Owner-Occupied Homes;Number of homes owned by their occupants;Number of homes that are owned by the people who live in them;Number of homes that are owned by their occupants;Number of homes that people own;Number of owner-occupied homes;number of homes that are occupied by their owners;number of homes that are owned by the people who live in them;number of homes that are owned by their occupants;number of homes that are owner-occupied -Count_HousingUnit_RenterOccupied,Number of Renter-Occupied Homes;Number of homes occupied by renters;Number of homes rented by tenants;Number of homes that are rented;Number of renter-occupied homes;number of homes occupied by renters;number of homes rented;number of homes rented by tenants;number of homes that are rented out -Count_HousingUnit_VacantHousingUnit,1 Number of vacant houses;Count of Housing Unit: Vacant Housing Unit;Number of Vacant Housing Units;Number of empty dwellings;Number of empty houses;Number of empty properties;Number of unoccupied housing units;Number of unused living spaces;Number of vacant homes;Number of vacant housing units;Vacant homes;number of empty homes;number of empty houses;number of unsold houses;number of vacant properties;the number of vacant homes -Count_HousingUnit_WithCashRent,Count of Housing Unit: With Cash Rent;Housing Unit With Cash Rent;housing unit with cash payment;housing unit with cash rent;housing unit with cash-based rent;housing unit with rent paid in cash -Count_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied,Count of Housing Unit: With Mortgage;Housing Units With Mortgage;homes with mortgages;houses with mortgages;mortgaged homes;residential properties with mortgages -Count_HousingUnit_WithRent_1000To1249USDollar,"1,000 to 1,249 USD Rental Housing Units;Count of Housing Unit: 1,000 - 1,249 USD" -Count_HousingUnit_WithRent_100To149USDollar,Count of Housing Unit: 100 - 149 USD;Housing Units of 100 to 149 USD -Count_HousingUnit_WithRent_1250To1499USDollar,"Count of Housing Unit: 1,250 - 1,499 USD;Housing Units with 1,250 to 1,499 USD" -Count_HousingUnit_WithRent_1500To1999USDollar,"Count of Housing Unit: 1,500 - 1,999 USD;Rental Housing Units Costing 1,500 to 1,999 USD" -Count_HousingUnit_WithRent_150To199USDollar,Count of Housing Unit: 150 - 199 USD;Housing Units With An Income of 150 to 199 USD -Count_HousingUnit_WithRent_2000OrMoreUSDollar,"Housing Units Value with 2,000 USD or More;Housing Units Valued at $2,000 or More" -Count_HousingUnit_WithRent_2000To2499USDollar,"Count of Housing Unit: 2,000 - 2,499 USD;Housing Unit Of 200 To 2499 USD" -Count_HousingUnit_WithRent_200To249USDollar,Count of Housing Unit: 200 - 249 USD;Housing Units Costing 200 to 249 USD -Count_HousingUnit_WithRent_2500To2999USDollar,"2500 to 2999 USD Rental Housing Units;Count of Housing Unit: 2,500 - 2,999 USD;Rental Housing Units Costing 2,500 to 2,999 USD" -Count_HousingUnit_WithRent_250To299USDollar,Count of Housing Unit: 250 - 299 USD;Housing Units Earning 250 to 299 USD -Count_HousingUnit_WithRent_3000To3499USDollar,"Count of Housing Unit: 3,000 - 3,499 USD;Housing Unit Earning 3,000 to 3,499 USD" -Count_HousingUnit_WithRent_300To349USDollar,Count of Housing Unit: 300 - 349 USD;Housing Units Costing 300 to 349 USD -Count_HousingUnit_WithRent_3500OrMoreUSDollar,"Count of Housing Unit: 3,500 USD or More;Housing Units Earning 3,500 USD or More" -Count_HousingUnit_WithRent_350To399USDollar,Count of Housing Unit: 350 - 399 USD;Housing Units with 350 to 399 USD -Count_HousingUnit_WithRent_400To449USDollar,Count of Housing Unit: 400 - 449 USD;Housing Units Earning 400 to 449 USD -Count_HousingUnit_WithRent_450To499USDollar,Count of Housing Unit: 450 - 499 USD;Rental Housing Units Costing 450 To 499 USD -Count_HousingUnit_WithRent_500To549USDollar,Count of Housing Unit: 500 - 549 USD;Housing Units Earning 500 to 549 USD -Count_HousingUnit_WithRent_550To599USDollar,Count of Housing Unit: 550 - 599 USD;Housing Units Earning 550 to 599 USD -Count_HousingUnit_WithRent_600To649USDollar,Count of Housing Unit: 600 - 649 USD;Housing Units Earning 600 to 649 USD -Count_HousingUnit_WithRent_650To699USDollar,Count of Housing Unit: 650 - 699 USD -Count_HousingUnit_WithRent_700To749USDollar,Count of Housing Unit: 700 - 749 USD;Housing Units Earning 700 to 749 USD -Count_HousingUnit_WithRent_750To799USDollar,750 to 799 USD Renal Housing Units;Count of Housing Unit: 750 - 799 USD -Count_HousingUnit_WithRent_800To899USDollar,Count of Housing Unit: 800 - 899 USD;Housing Units of 800 to 899 USD -Count_HousingUnit_WithRent_900To999USDollar,Count of Housing Unit: 900 - 999 USD -Count_HousingUnit_WithRent_Upto100USDollar,Count of Housing Unit: 100 USD or Less -Count_HousingUnit_WithTotal1Rooms,Count of Housing Unit: Rooms 1 -Count_HousingUnit_WithTotal2Rooms,Count of Housing Unit: Rooms 2;Room 2 Housing Units -Count_HousingUnit_WithTotal3Rooms,Count of Housing Unit: Rooms 3 -Count_HousingUnit_WithTotal4Rooms,Count of Housing Unit: Rooms 4;Housing Units With 4 Rooms -Count_HousingUnit_WithTotal5Rooms,Count of Housing Unit: Rooms 5;Housing Units With 5 Rooms -Count_HousingUnit_WithTotal6Rooms,Count of Housing Unit: Rooms 6;Housing Units With 6 Rooms -Count_HousingUnit_WithTotal7Rooms,Count of Housing Unit: Rooms 7;Housing Units With Rooms 7 -Count_HousingUnit_WithTotal8Rooms,Count of Housing Unit: Rooms 8;Housing Units With 8 Rooms -Count_HousingUnit_WithTotal9OrMoreRooms,9 Rooms or More Housing Units;Count of Housing Unit: 9 Rooms or More -Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,Count of Housing Unit: Without Mortgage;Housing Units Without Mortgage;homes that are not mortgaged;homes without a mortgage;housing units free and clear of debt;housing units without a mortgage -Count_IceStormEvent,Count of Ice Storm Event;Ice Storm Events;number of ice storm events;number of ice storm occurrences;number of ice storms;number of ice storms that have occurred -Count_LightningEvent,Count of Lightning Event;Lightning Events;lightning strike count;lightning strike frequency;lightning strike rate;number of lightning strikes -Count_MarineHailEvent,Count of Marine Hail Event;Marine Hail Events;number of marine hail events;number of marine hailstorms;number of times hail has fallen on the ocean;number of times it has hailed at sea -Count_MarineHighWindEvent,Count of Marine High Wind Event;Marine High Wind Events;frequency of marine high wind events;number of high wind events at sea;number of marine high wind events;rate of marine high wind events -Count_MarineStrongWindEvent,Count of Marine Strong Wind Event;Marine Strong Wind Events;marine strong wind event count;number of marine strong wind events;number of marine strong wind events recorded;number of strong wind events in the marine environment -Count_MarineThunderstormWindEvent,Count of Marine Thunderstorm Wind Event;Marine Thunderstorm Wind Events;marine thunderstorm wind event count;marine thunderstorm wind event frequency;marine thunderstorm wind event occurrence;number of marine thunderstorm wind events -Count_MarineTropicalStormEvent,Count of Marine Tropical Storm Event -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_NonSerotypeB,"Count of Haemophilus influenzae, invasive, Non-B Serotype incidents, age 5 or less years;Invasive Non-Serotype B Haemophilus Influenzae Incidents in Population Aged 5 Years or Less;hib infections in children under 5;invasive hib infections in children under 5;non-b hib infections in children under 5;non-b hib invasive disease in children under 5" -Count_MedicalConditionIncident_5_LessYears_ConditionHaemophilusInfluenzae_InvasiveDisease_UnknownSerotype,"Count of Haemophilus influenzae, invasive, Unknown Serotype incidents, age 5 or less years;Haemophilus Influenzae Invasive Unknown Serotype Incidents Age 5 or Less Years;cases of haemophilus influenzae invasive unknown serotype in children under 5 years old;haemophilus influenzae invasive unknown serotype incidents in children under 5 years old;number of children under 5 years old with haemophilus influenzae invasive unknown serotype;number of haemophilus influenzae invasive unknown serotype cases in children under 5 years old" -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_ConfirmedCase,"Confirmed Pneumococcal Incidents of Population Aged 5 or Less Years;Count of Invasive pneumococcal, Confirmed incidents, age 5 or less years;confirmed cases of pneumococcal disease in children under 5;pneumococcal illnesses in children under 5;pneumonia cases in children under 5;pneumonia infections in children under 5" -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease,"Count of Invasive pneumococcal disease incidents, age 5 or less years;Invasive Pneumococcal Disease Incidents In People Aged 5 Years Or Less;cases of invasive pneumococcal disease in children under 5;pneumococcal disease cases in children under 5;pneumococcal disease in children under 5;pneumococcal disease in kids under 5" -Count_MedicalConditionIncident_5_LessYears_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,"Confirmed Pneumococcal Disease Incidents for People Below 5 Years;Count of Invasive, Confirmed pneumococcal disease incidents, age 5 or less years;number of people under 5 years old diagnosed with pneumococcal disease" -Count_MedicalConditionIncident_COVID_19_PatientInICU,"Count of Medical Condition Incident: COVID-19, Patient in ICU;How many COVID patients are in the ICU?;Number of COVID-19 Patients in the Intensive Care Unit;Number of COVID-19 patients in critical condition;Number of COVID-19 patients in the intensive care unit;Number of COVID-19 patients on ventilators;Number of covid patients in ICU;Number of critically ill COVID-19 patients;Number of severe COVID-19 cases;The number of COVID-19 patients in intensive care units;The number of COVID-19 patients in the ICU;The number of people with COVID-19 who are in intensive care;The number of people with COVID-19 who are in the ICU;how many covid-19 patients are in the icu?;how many people with covid-19 are in the icu?;what is the number of covid-19 patients in the icu?;what is the number of people with covid-19 who are in the icu?" -Count_MedicalConditionIncident_ConditionAIDS,AIDS Medical Incidents;Count of Acquired Immune Deficiency Syndrome incidents -Count_MedicalConditionIncident_ConditionBotulism,Botulism Incidents;Count of Botulism incidents;number of botulism cases;number of botulism incidents;number of botulism outbreaks;number of botulism poisonings -Count_MedicalConditionIncident_ConditionBrucellosis,Brucellosis Incidents;Count of Brucellosis incidents;brucellosis cases;brucellosis cases reported;brucellosis incidents reported;number of brucellosis cases -Count_MedicalConditionIncident_ConditionCampylobacteriosis,Campylobacteriosis Incidents;Count of Campylobacteriosis incidents;campylobacteriosis cases;incidence of campylobacteriosis;number of campylobacteriosis cases;number of people with campylobacteriosis -Count_MedicalConditionIncident_ConditionChickenpox,Chickenpox Incidents;Count of Chickenpox incidents;chickenpox cases;chickenpox incidents;chickenpox occurrences;number of chickenpox cases -Count_MedicalConditionIncident_ConditionChikungunya,Chikungunya Incidents;Count of Chikungunya virus disease incidents;number of chikungunya cases;number of chikungunya cases reported;number of chikungunya infections;number of people infected with chikungunya -Count_MedicalConditionIncident_ConditionChlamydia,Chlamydia Incidents;Count of Chlamydia trachomatis infection incidents;chlamydia trachomatis infection cases;chlamydia trachomatis infection incidents reported;chlamydia trachomatis infections recorded;number of chlamydia trachomatis infections -Count_MedicalConditionIncident_ConditionCongenitalSyphilis,Congenital Syphilis Incidents;Count of Congenital Syphilis incidents;number of congenital syphilis cases;number of congenital syphilis cases reported;number of congenital syphilis diagnoses;number of congenital syphilis infections -Count_MedicalConditionIncident_ConditionCryptosporidiosis,Count of Cryptosporidiosis incidents;Cryptosporidiosis Incidents;number of cryptosporidiosis incidents reported -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ConfirmedCase,"Confirmed cases of Cryptosporidiosis Incidents;Count of Cryptosporidiosis, Confirmed incidents;cryptosporidiosis cases;cryptosporidiosis cases reported;cryptosporidiosis infections;cryptosporidiosis outbreaks" -Count_MedicalConditionIncident_ConditionCryptosporidiosis_ProbableCase,"Count of Cryptosporidiosis, Probable incidents;Probable Cryptosporidiosis Incidents;cryptosporidiosis events;cryptosporidiosis incidents that are likely;potential cryptosporidiosis outbreaks;probable cryptosporidiosis infections" -Count_MedicalConditionIncident_ConditionCyclosporiasis,Count of Cyclosporiasis incidents;Cyclosporiasis Incidents;cyclosporiasis cases;cyclosporiasis infections;number of cyclosporiasis cases;number of people with cyclosporiasis -Count_MedicalConditionIncident_ConditionDengueDisease,Count of Dengue incidents;Dengue Disease Incidents;dengue cases;dengue cases recorded;dengue cases reported;number of dengue cases -Count_MedicalConditionIncident_ConditionGiardiasis,Count of Giardiasis incidents;Giardiasis Incidents;giardia cases reported;giardiasis cases;number of giardia infections;number of people infected with giardia -Count_MedicalConditionIncident_ConditionGonorrhea,Count of Gonorrhea incidents;Gonorrhea Incidents;gonorrhea cases;gonorrhea diagnoses;gonorrhea infections;number of gonorrhea cases -Count_MedicalConditionIncident_ConditionHIVAIDS,Count of HIV/Acquired Immune Deficiency Syndrome incidents;HIV AIDS Incidents;hiv/aids cases;hiv/aids incidence;number of hiv/aids cases;number of people with hiv/aids -Count_MedicalConditionIncident_ConditionHaemophilusInfluenzae_InvasiveDisease,"Count of Haemophilus influenzae, invasive, All ages, all Serotypes incidents;Haemophilus Influenzae Invasive Disease Incidents;number of haemophilus influenzae invasive episodes, all ages, all serotypes;number of haemophilus influenzae invasive infections, all ages, all serotypes;number of invasive haemophilus influenzae illnesses, all ages, all serotypes;number of invasive haemophilus influenzae infections, all ages, all serotypes" -Count_MedicalConditionIncident_ConditionHemolyticUremicSyndrome_PostDiarrheal,"Count of Hemolytic uremic syndrome, post-diarrheal incidents;Hemolytic Uremic Syndrome Post Diarrheal Incidents;hemolytic uremic syndrome (hus) cases after diarrhea;hus cases associated with diarrhea;hus cases due to diarrhea;hus cases following diarrhea" -Count_MedicalConditionIncident_ConditionHepatitisA_AcuteCondition,Count of Acute Hepatitis A incidents;Hepatitis A Acute Incidents;number of acute hepatitis a cases;number of acute hepatitis a diagnoses;number of acute hepatitis a infections;number of people with acute hepatitis a -Count_MedicalConditionIncident_ConditionHepatitisB_AcuteCondition,Count of Acute Hepatitis B incidents;Hepatitis B Acute Condition Incidents;number of acute hepatitis b cases;number of acute hepatitis b illnesses;number of acute hepatitis b infections;number of acute hepatitis b occurrences -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ConfirmedCase,"Acute Hepatitis C incidents;Count of Acute, Confirmed Hepatitis C incidents;hepatitis c flare-ups;hepatitis c illnesses;hepatitis c infections;hepatitis c outbreaks" -Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ProbableCase,"Count of Acute, Probable Hepatitis C incidents;Probable Cases Of Acute Hepatitis C Incidents;possible cases of acute hepatitis c;potential cases of acute hepatitis c;probable cases of acute hepatitis c infection;suspected cases of acute hepatitis c" -Count_MedicalConditionIncident_ConditionHumanGranulocyticAnaplasmosis,Count of Anaplasma phagocytophilum infection incidents;Human Granulocytic Anaplasmosis Incidents;frequency of anaplasma phagocytophilum infection;incidence of anaplasma phagocytophilum infection;number of anaplasma phagocytophilum infection cases;total number of anaplasma phagocytophilum infections -Count_MedicalConditionIncident_ConditionHumanMonocyticEhrlichiosis,Count of Ehrlichia chaffeensis incidents;Human Monocytic Ehrlichiosis Medical Incidents -Count_MedicalConditionIncident_ConditionInfantBotulism,Count of Infant Botulism incidents;Infant Botulism Incidents;number of infant botulism cases;number of infant botulism cases diagnosed;number of infant botulism cases reported;number of infant botulism illnesses -Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,"Count of Influenza, pediatric mortality incidents;Pediatric Mortality Incidents;child deaths;deaths among children;mortality in children;pediatric deaths" -Count_MedicalConditionIncident_ConditionLegionnairesDisease,Count of Legionellosis incidents;Legionnaires Disease Incidents;number of legionella infections;number of legionella pneumonia cases;number of legionellosis cases;number of legionnaires' disease cases -Count_MedicalConditionIncident_ConditionListeriosis,Count of Listeriosis incidents;Listeriosis Incidents;number of listeriosis cases;number of listeriosis incidents reported;number of listeriosis infections;number of people with listeriosis -Count_MedicalConditionIncident_ConditionListeriosis_ConfirmedCase,Confirmed Listeriosis incidents;Count of Confirmed Listeriosis incidents;listeriosis cases;listeriosis cases reported;listeriosis infections;listeriosis outbreaks -Count_MedicalConditionIncident_ConditionLymeDisease,Count of Lyme disease incidents;Lyme Disease Incidents;number of lyme disease cases;number of lyme disease cases reported;number of lyme disease diagnoses;number of lyme disease infections -Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,"Confirmed Incidents of Lyme Disease;Count of Lyme, Confirmed incidents;lyme disease cases;lyme disease diagnoses;lyme disease reports" -Count_MedicalConditionIncident_ConditionLymeDisease_ProbableCase,"Count of Lyme, Probable incidents;Probable Lyme Incidents;likely lyme cases;probable lyme infections" -Count_MedicalConditionIncident_ConditionMalaria,Count of Malaria incidents;Malaria Incidents;number of malaria cases;number of malaria cases reported;number of malaria infections;number of people with malaria -Count_MedicalConditionIncident_ConditionMeasles,Count of Measles incidents;Measles Incidents;measles cases;measles cases reported;measles incidents;number of measles cases -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis,"Count of Meningococcal, All serogroups incidents;Meningococcal Meningitis Incidents;number of meningococcal cases;number of meningococcal cases, all serogroups;number of meningococcal illnesses;number of meningococcal infections" -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease,"Count of invasive, all groups Meningococcal disease incidents;Meningococcal Meningitis Invasive Disease Incidents;number of invasive meningococcal disease cases;number of invasive meningococcal disease cases reported;number of invasive meningococcal disease illnesses;number of invasive meningococcal disease infections" -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease_UnknownSerogroups,"Count of invasive, Unknown serogroup Meningococcal disease incidents;Unknown Serogroup Invasive Meningococcal Disease Incidents;outbreaks of meningitis caused by an unknown strain" -Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_UnknownSerogroups,"Count of Meningococcal, Unknown serogroup incidents;Unknown Meningococcal Serogroup Incidents;cases of meningitis caused by an unknown strain of the meningococcal bacteria;meningitis cases caused by an unknown serogroup;meningitis cases of unknown origin;meningitis cases of unknown type" -Count_MedicalConditionIncident_ConditionMumps,Count of Mumps incidents;Mumps Incidents;number of mumps cases;number of mumps cases reported;number of mumps infections;number of people who have mumps -Count_MedicalConditionIncident_ConditionPertussis,Count of Pertussis incidents;Pertussis Incidents;number of pertussis cases;number of pertussis cases reported;number of pertussis illnesses;number of pertussis infections -Count_MedicalConditionIncident_ConditionQFever,Count of Q fever incidents;Q fever Incidents;number of people with q fever;number of q fever cases;number of q fever illnesses;number of q fever infections -Count_MedicalConditionIncident_ConditionQFever_AcuteCondition,"Count of Q fever, Acute incidents;Q fever Acute Incidents;acute cases of q fever;acute q fever cases;acute q fever incidents;number of acute q fever cases" -Count_MedicalConditionIncident_ConditionRabiesinhuman,Count of Rabies incidents;Rabies Incidents;number of rabies cases;rabies cases;rabies cases reported;rabies incidents -Count_MedicalConditionIncident_ConditionSalmonellosisExceptTyphiAndParatyphi,Count of Salmonellosis incidents;Salmonellosis Incidents;number of people who have been diagnosed with salmonellosis;number of people who have been sick with salmonellosis;number of people who have contracted salmonellosis;number of salmonellosis cases -Count_MedicalConditionIncident_ConditionShigaToxinEColi,Count of Shiga toxin-producing Escherichia Coli incidents;Shiga Toxin-producing Escherichia Coli Incidents;number of shiga toxin-producing escherichia coli cases;shiga toxin-producing escherichia coli cases reported;shiga toxin-producing escherichia coli incidence statistics;shiga toxin-producing escherichia coli outbreak data -Count_MedicalConditionIncident_ConditionShigellosis,Count of Shigellosis incidents;Shigellosis Incidents;number of shigellosis cases;shigellosis cases;shigellosis cases reported;shigellosis incidents -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis,Count of Spotted fever rickettsiosis incidents;Spotted Fever Rickettsiosis Incidents;number of people with spotted fever rickettsiosis;number of spotted fever rickettsiosis cases;number of spotted fever rickettsiosis illnesses;number of spotted fever rickettsiosis infections -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosisIncludingRockyMountainSpottedFever,Count of Pobable spotted fever rickettsiosis including RMSF incidents;Probable Spotted Fever Rickettsiosis Including RMSF Incidents;count of probable spotted fever rickettsiosis including rmsf incidents;number of cases of probable spotted fever rickettsiosis including rmsf;number of people with probable spotted fever rickettsiosis including rmsf;number of probable spotted fever rickettsiosis including rmsf incidents -Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis_ProbableCase,Count of Probable Spotted fever rickettsiosis incidents;Probable Spotted Fever Rickettsiosis Incidents;confirmed cases of spotted fever rickettsiosis;potential cases of spotted fever rickettsiosis;probable cases of spotted fever rickettsiosis;suspected cases of spotted fever rickettsiosis -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_ConfirmedCase,"Count of Invasive pneumococcal, All ages, Confirmed incidents;Pneumococcal All Ages Confirmed Incidents;confirmed cases of pneumococcal disease in all age groups;pneumococcal cases in all age groups that have been confirmed;pneumococcal infections that have been confirmed in all age groups;pneumococcal infections that have been diagnosed in all age groups" -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease,Count of Invasive pneumococcal disease incidents;Invasive Pneumococcal Disease Incidents;number of invasive pneumococcal disease cases;number of invasive pneumococcal disease events;number of invasive pneumococcal disease occurrences -Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,"Count of Invasive, Confirmed pneumococcal disease incidents;Invasive Pneumococcal Diseases;diseases caused by pneumococcus;diseases caused by streptococcus pneumoniae;invasive pneumococcal diseases;pneumococcal infections" -Count_MedicalConditionIncident_ConditionSyphilis,Count of Syphilis incidents;Syphilis Incidents;number of people with syphilis;number of syphilis cases;number of syphilis diagnoses;number of syphilis infections -Count_MedicalConditionIncident_ConditionSyphilisPrimaryAndSecondary,Count of Syphilis primary and secondary incidents;Syphilis Primary and Secondary Incidents;number of syphilis primary and secondary cases;number of syphilis primary and secondary cases reported;number of syphilis primary and secondary diagnoses;number of syphilis primary and secondary infections -Count_MedicalConditionIncident_ConditionTetanus,Count of Tetanus incidents;Tetanus Incidents;number of tetanus cases;number of tetanus cases reported;number of tetanus illnesses;number of tetanus infections -Count_MedicalConditionIncident_ConditionTuberculosis,Count of Tuberculosis incidents;Tuberculosis Incidents;number of people with tuberculosis;number of tuberculosis cases;number of tuberculosis cases reported;number of tuberculosis diagnoses -Count_MedicalConditionIncident_ConditionTularemia,Count of Tularemia incidents;Tularemia Incidents;number of tularemia cases;tularemia cases recorded;tularemia cases reported;tularemia incidents reported -Count_MedicalConditionIncident_ConditionTyphoidFever,Count of Typhoid fever incidents;Typhoid Fever Incidents;incidence of typhoid fever;number of people with typhoid fever;number of typhoid fever cases;number of typhoid fever infections -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera,Count of Vibriosis incidents;Vibriosis Incidents;number of people who have gotten vibriosis;number of vibriosis cases;number of vibriosis infections;vibriosis cases -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ConfirmedCase,"Confirmed Vibriosis, Except Cholera Incidents;Count of Confirmed Vibriosis except cholera incidents;vibriosis cases, not cholera" -Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ProbableCase,"Count of Probable Vibriosis except cholera incidents;Probable Vibriosis, Except Cholera Incidents;cases of vibriosis, not cholera;cases of vibriosis, not including cholera;vibriosis cases, excluding cholera;vibriosis cases, other than cholera" -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NeuroinvasiveDisease,"Count of Neuroinvasive West Nile virus disease incidents;Neuroinvasive West Nile Virus Disease Incidents;number of cases of west nile virus disease that affect the nervous system;number of people who have been diagnosed with west nile virus encephalitis, meningitis, or meningoencephalitis;number of people who have been diagnosed with west nile virus meningitis, encephalitis, or meningoencephalitis;number of west nile virus disease incidents that affect the nervous system" -Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NonNeuroinvasiveDisease,"Count of West Nile virus, Non-neuroinvasive incidents;West Nile Virus Non-neuroinvasive Incidents;number of west nile virus non-neuroinvasive cases;west nile virus cases that are not neuroinvasive;west nile virus cases that do not affect the nervous system;west nile virus non-neuroinvasive cases" -Count_MedicalConditionIncident_ConditionZikaVirusDisease_NonCongenitalDisease,"Count of Zika fever, non-congenital incidents;Zika Fever Non-congenital Incidents;number of cases of zika fever, not including congenital cases;number of people who have contracted zika fever, excluding those who have given birth to babies with zika-related birth defects;number of zika cases, excluding congenital cases;number of zika fever cases, excluding congenital cases" -Count_MedicalConditionIncident_ConditionZikaVirusInfection_NonCongenitalDisease,"Count of Zika virus infection, non-congenital incidents;Zika Virus Infection Non-congenital Incidents;number of people infected with zika virus, not including pregnant women and their babies;number of zika virus cases in people who were not pregnant;number of zika virus cases, not including cases in babies born to infected mothers;number of zika virus infections, not including congenital cases" -Count_MedicalConditionIncident_PatientDeceased_AnimalContactTransmission,"Count of Medical Condition Incident: Patient Deceased, Animal Contact Transmission;Medical Incidents With Animal Contact Transmission in Deceased Patients;animals can be a source of infection for humans, even after they have died;animals can transmit diseases to humans, even after the animal has died;disease can be spread from animals to humans through contact with dead animals;people can get sick from contact with animals, even if the animal is dead" -Count_MedicalConditionIncident_PatientDeceased_FoodborneTransmission,"Count of Medical Condition Incident: Patient Deceased, Foodborne Transmission;Medical Incidents with Foodborne Transmission in Deceased Patients;food poisoning in dead people;foodborne disease in dead people;foodborne illness in dead people;illness from food in dead people" -Count_MedicalConditionIncident_PatientDeceased_Indeterminate_Other_UnknownTramissionMode,"Count of Medical Condition Incident: Patient Deceased, Indeterminate or Other or Unknown Tramission Mode;Medical Condition Incidents with Unknown Transmission Mode in Deceased Patients;deaths from medical conditions with unknown transmission;medical conditions in dead patients with unknown transmission;medical conditions in deceased patients with unknown cause;unexplained medical conditions in dead patients" -Count_MedicalConditionIncident_PatientDeceased_PersonToPersonTransmission,"Count of Medical Condition Incident: Patient Deceased, Person To Person Transmission;Medical Conditions Incidents With Inter-Person Transmission in Deceased Patients;medical conditions that can be caught from a deceased person;medical conditions that can be contracted from a dead person;medical conditions that can be passed on from a corpse to a person;medical conditions that can be transmitted from a deceased person to another person" -Count_MedicalConditionIncident_PatientDeceased_WaterborneTransmission,"Count of Medical Condition Incident: Patient Deceased, Waterborne Transmission;Medical Condition Incidents With Waterborne Transmission in Deceased Patients;illnesses spread by water that can be fatal;waterborne diseases that kill people;waterborne illnesses that can cause death;waterborne infections that can be deadly" -Count_MortalityEvent_Assault(Homicide),Count of Mortality Event: Assault(Homicide) -Count_MortalityEvent_Assault(Homicide)_Female,"Count of Mortality Event: Assault(Homicide), Female" -Count_MortalityEvent_Diabetes,Count of Mortality Event: Diabetes -Count_MortalityEvent_Diabetes_Female,"Count of Mortality Event: Diabetes, Female" -Count_MortalityEvent_HeartDiseaseExcludingHypertension,Count of Mortality Event: Heart Disease Excluding Hypertension -Count_MortalityEvent_IntentionalSelf-Harm(Suicide),Count of Mortality Event: Intentional Self-Harm(Suicide) -Count_MortalityEvent_IntentionalSelf-Harm(Suicide)_Female,"Count of Mortality Event: Intentional Self-Harm(Suicide), Female" -Count_MortalityEvent_Suicide,Count of Mortality Event: Suicide -Count_Person,Number of People in a Population;Number of inhabitants;Number of residents;Population count;Size of the population;The number of inhabitants of a place;The number of people in a place;The total number of people living in a particular area;Total Number of People in a Population;Total number of people in a population;Total number of people in the population;number of people;number of people in a population;population count;population size;total number of inhabitants;total population -Count_Person_0To4Years_Female,"Population: 0 - 4 Years, Female" -Count_Person_0To4Years_Male,"Males Aged 0 to 4 Years;Population: 0 - 4 Years, Male" -Count_Person_10OrMoreYears_Literate_AsAFractionOf_Count_Person_10OrMoreYears,"Population: 10 Years or More, Literate (As Fraction of Count Person 10 or More Years)" -Count_Person_10To14Years_Literate_AsAFractionOf_Count_Person_10To14Years,"Population: 10 - 14 Years, Literate (As Fraction of Count Person 10 To 14 Years)" -Count_Person_15OrMoreYears_Divorced_AmericanIndianAndAlaskaNativeAlone,"Divorced American Indian or Alaska Native Population Aged 15 Years Or More;Population: 15 Years or More, Divorced, American Indian or Alaska Native Alone;the number of american indian or alaska native people aged 15 years or more who are divorced;the percentage of american indian or alaska native people aged 15 years or more who are divorced;the proportion of american indian or alaska native people aged 15 years or more who are divorced;the rate of divorce among american indian or alaska native people aged 15 years or more" -Count_Person_15OrMoreYears_Divorced_AsianAlone,"Asians Divorced For 15 Years Or More;Population: 15 Years or More, Divorced, Asian Alone" -Count_Person_15OrMoreYears_Divorced_BlackOrAfricanAmericanAlone,"Divorced African American Population Aged 15 Years Or More;Population: 15 Years or More, Divorced, Black or African American Alone;the number of african americans aged 15 or older who are divorced;the percentage of african americans aged 15 or older who are divorced;the proportion of african americans aged 15 or older who are divorced;the rate of divorce among african americans aged 15 or older" -Count_Person_15OrMoreYears_Divorced_ForeignBorn,"Foreign Born Divorced Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Foreign Born;number of divorced foreign-born people aged 15 years or older;people who were born in another country and are now divorced and are 15 years old or older;people who were born in another country and are now divorced and are at least 15 years old;population of divorced foreign-born people aged 15 years or older" -Count_Person_15OrMoreYears_Divorced_HispanicOrLatino,"Divorced Hispanic Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Hispanic or Latino;the number of hispanic people who have been divorced and are 15 years of age or older;the percentage of hispanic people who have been divorced and are 15 years of age or older;the prevalence of divorce among hispanic people aged 15 years or older;the proportion of hispanic people who have been divorced and are 15 years of age or older" -Count_Person_15OrMoreYears_Divorced_Native,"Divorced Native Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Native;the number of native americans aged 15 or older who are divorced;the number of native americans who have been divorced at least once and are currently aged 15 or older;the percentage of native americans aged 15 or older who are divorced;the proportion of native americans aged 15 or older who are divorced" -Count_Person_15OrMoreYears_Divorced_NativeHawaiianAndOtherPacificIslanderAlone,"Divorced Native Hawaiian or Other Pacific Islander Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the percentage of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the proportion of native hawaiian or other pacific islander people aged 15 years or more who are divorced;the rate of divorce among native hawaiian or other pacific islander people aged 15 years or more" -Count_Person_15OrMoreYears_Divorced_OneRace,"Divorced One Race Population Aged 15 Years Or More;Population: 15 Years or More, Divorced, One Race;number of divorced people who are one race and aged 15 years or more;people of one race who are divorced and are aged 15 or older;population of divorced people who are one race and aged 15 years or more;population of people who are divorced and are one race, aged 15 years or more" -Count_Person_15OrMoreYears_Divorced_SomeOtherRaceAlone,"Divorced Other Race Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Some Other Race Alone;number of divorced people of other races aged 15 years or more;percentage of divorced people of other races aged 15 years or more;population of divorced people of other races aged 15 years or more;proportion of divorced people of other races aged 15 years or more" -Count_Person_15OrMoreYears_Divorced_TwoOrMoreRaces,"Divorced Multiracial Population Aged 15 Years or More;Population: 15 Years or More, Divorced, Two or More Races;multiracial people who are divorced and 15 years of age or older;people who are 15 years of age or older, identify as multiracial, and are divorced;people who are divorced and identify as multiracial and are 15 years of age or older;people who are divorced, multiracial, and 15 years of age or older" -Count_Person_15OrMoreYears_Divorced_WhiteAlone,"Population: 15 Years or More, Divorced, White Alone;White Population Above 15 Years Old Is Divorced;a large percentage of white people over 15 are divorced;a lot of white people over 15 are divorced;divorce is common among white people over 15;the divorce rate among white people over 15 is high" -Count_Person_15OrMoreYears_Divorced_WhiteAloneNotHispanicOrLatino,"Divorced White And Non-Hispanic Population Aged 15 Years or More;Population: 15 Years or More, Divorced, White Alone Not Hispanic or Latino;white and non-hispanic people who are divorced and are aged 15 and up;white and non-hispanic people who are divorced and are at least 15 years old;white and non-hispanic people who have been divorced and are 15 years of age or older;white and non-hispanic people who have been divorced and are aged 15 or more" -Count_Person_15OrMoreYears_Female_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Female,"Female Population Aged 15 Years or More Smoking;Population: 15 Years or More, Female, Smoking (As Fraction of Count Person 15 or More Years Female);the number of females aged 15 or older who smoke as a fraction of the total number of females aged 15 or older;the number of females aged 15 or older who smoke divided by the total number of females aged 15 or older;the proportion of females aged 15 years or older who smoke;the proportion of women aged 15 or older who smoke" -Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,"Female Population Aged 15 Years or More in Labor Force;Population: 15 Years or More, in Labor Force, Female (As Fraction of Count Person in Labor Force);female labor force participation rate, aged 15 years or older" -Count_Person_15OrMoreYears_Male_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Male,"Percentage of Male Population Smoking;Smoking prevalence, males (% of adults);how many adult males smoke?;what is the percentage of adult males who smoke?;what is the rate of smoking among adult males?;what percentage of adult males smoke?" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AmericanIndianAndAlaskaNativeAlone,"American Indians or Alaska Natives Aged 15 Years And Above are Married;Population: 15 Years or More, Married And Not Separated, American Indian or Alaska Native Alone;american indians or alaska natives aged 15 and above are in a committed relationship;american indians or alaska natives aged 15 and above are in a marital relationship;american indians or alaska natives aged 15 and above are living together as husband and wife;american indians or alaska natives aged 15 and above are married" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_AsianAlone,"Married And Un-Separated Asian Population Aged 15 Years Or More;Population: 15 Years or More, Married And Not Separated, Asian Alone;the number of asian people aged 15 years or more who are in a marital union and not separated;the number of asian people aged 15 years or more who are married and not separated;the percentage of the asian population aged 15 years or more who are married and not separated;the proportion of the asian population aged 15 years or more who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_BlackOrAfricanAmericanAlone,"African Americans Above 15 Years Old Married and Not Separated;Population: 15 Years or More, Married And Not Separated, Black or African American Alone;african americans over 15 who are married and not divorced;black people over 15 who are married and not living apart;black people over 15 who are married and not living apart from their spouse;black people over 15 who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_ForeignBorn,"Foreign Born Population Aged 15 Years or More Married And Not Separated;Population: 15 Years or More, Married And Not Separated, Foreign Born;people who are 15 years old or older, married and not separated, and foreign-born;people who are 15 years or older and married but not separated, who were born in another country;people who are 15 years or older, married but not separated, and foreign nationals;people who are 15 years or older, married but not separated, and foreign-born" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_HispanicOrLatino,"Hispanic Population Aged 15 Years or More Who are Married;Population: 15 Years or More, Married And Not Separated, Hispanic or Latino;the number of hispanic people aged 15 years or more who are married;the percentage of hispanic people aged 15 years or more who are married;the proportion of hispanic people aged 15 years or more who are married;the share of hispanic people aged 15 years or more who are married" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_Native,"Married Native Population Above 15 Years Old;Population: 15 Years or More, Married And Not Separated, Native;population of native americans who are married and over the age of 15;the number of native people over 15 years old who are married;the percentage of native people over 15 years old who are married;the proportion of native people over 15 years old who are married" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_NativeHawaiianAndOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Population Above 15 Years Married And Unseparated;Population: 15 Years or More, Married And Not Separated, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander population above 15 years old who are married and not separated;number of native hawaiian or other pacific islander people above 15 years old who are married and not separated;percentage of native hawaiian or other pacific islander people above 15 years old who are married and not separated;share of native hawaiian or other pacific islander people above 15 years old who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_OneRace,"One Race Population Aged 15 Years Or More Married And Not Separated;Population: 15 Years or More, Married And Not Separated, One Race;married people of one race aged 15 years or older;people of one race aged 15 years or older who are married and not separated;the number of people who are married and not separated, who are 15 years old or older, and who are of one race;the population of one race aged 15 years or older who are married and not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_SomeOtherRaceAlone,"Population: 15 Years or More, Married And Not Separated, Some Other Race Alone;Some Other Race Population Aged 15 Years or More Married And Not Separated;the number of people of some other race who are 15 years or older and married but not separated, expressed as a percentage of the total population of that race;the number of people of some other race who are 15 years or older and married but not separated, expressed as a proportion of the total population of that race;the percentage of people of some other race who are 15 years or older and married but not separated;the proportion of people of some other race who are 15 years or older and married but not separated" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_TwoOrMoreRaces,"Multiracial Population Aged 15 Years or More Married And Not Separated;Population: 15 Years or More, Married And Not Separated, Two or More Races;the number of people who are multiracial and aged 15 years or more who are married and not separated;the number of people who are multiracial and married, but not separated, who are 15 years old or older;the number of people who are multiracial and married, but not separated, who are in the age group of 15 years or older;the number of people who are multiracial and married, but not separated, who are in the age group of 15+" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAlone,"Married and Not Separated White People Aged 15 Years Old and Above;Population: 15 Years or More, Married And Not Separated, White Alone;white people who are married and not separated and are 15 years old or older;white people who are married and not separated and are adults;white people who are married and not separated and are grown-ups;white people who are married and not separated and are of legal age" -Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAloneNotHispanicOrLatino,"Married and Not Separated White and Non-Hispanics Aged 15 Years Old and Above;Population: 15 Years or More, Married And Not Separated, White Alone Not Hispanic or Latino;married white and non-hispanic people aged 15 and older;white and non-hispanic people who are married and not separated and are aged 15 and older;white and non-hispanic people who are married and not separated and are at least 15 years old;white and non-hispanic people who are married and not separated and are older than 14 years old" -Count_Person_15OrMoreYears_NeverMarried_AmericanIndianAndAlaskaNativeAlone,"Population: 15 Years or More, Never Married, American Indian or Alaska Native Alone;Unmarried American Indian or Alaska Native Population Aged 15 Years or More;the number of american indian or alaska native people who are not married and aged 15 years or older;the number of american indian or alaska native people who are unmarried and 15 years of age or older;the number of american indian or alaska native people who are unmarried and aged 15 years or older;the number of unmarried american indian or alaska native people aged 15 and over" -Count_Person_15OrMoreYears_NeverMarried_AsianAlone,"Never Married Asian Population Aged 15 Years or More;Population: 15 Years or More, Never Married, Asian Alone;the number of never-married asians aged 15 years or older;the percentage of asians aged 15 years or older who have never been married;the proportion of asians aged 15 years or older who have never married;the share of asians aged 15 years or older who have never been married" -Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,"African Americans Aged 15 Years And Above Who Have Never Been Married;Population: 15 Years or More, Never Married, Black or African American Alone;african americans aged 15 and above who are unmarried;african americans aged 15 and above who have never tied the knot;african americans who have never been married, aged 15 and above;unmarried african americans aged 15 and above" -Count_Person_15OrMoreYears_NeverMarried_ForeignBorn,"Population: 15 Years or More, Never Married, Foreign Born;Unmarried Foreign-Born Population Aged 15 Years or More;the number of foreign-born people who are not married, aged 15 years or more;the number of people who were born in another country and are not currently married, aged 15 years or more;the number of people who were born in another country and are not married, aged 15 years or more;the number of unmarried people who were born in another country, aged 15 years or more" -Count_Person_15OrMoreYears_NeverMarried_HispanicOrLatino,"Hispanic Population Aged 15 Years or More Never Married;Population: 15 Years or More, Never Married, Hispanic or Latino" -Count_Person_15OrMoreYears_NeverMarried_Native,"Native Population Aged 15 Years or More Who Are Never Married;Population: 15 Years or More, Never Married, Native;natives aged 15 years or more who are not married;natives aged 15 years or more who have never been married;percentage of the native population aged 15 years or more who have never married;share of the native population aged 15 years or more who are unmarried" -Count_Person_15OrMoreYears_NeverMarried_NativeHawaiianAndOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islanders Unmarried Population Aged 15 Years or More;Population: 15 Years or More, Never Married, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander people who are unmarried and are 15 years old or older;native hawaiian or other pacific islander people who are unmarried and are at least 15 years old;native hawaiian or other pacific islander unmarried people aged 15 years or more;native hawaiian or other pacific islander unmarried population aged 15 years or more" -Count_Person_15OrMoreYears_NeverMarried_OneRace,"Population: 15 Years or More, Never Married, One Race;Unmarried Monoracial Population Aged 15 Years or More;people who are unmarried, monoracial, and at least 15 years old;people who are unmarried, monoracial, and over the age of 15;the number of unmarried monoracial people aged 15 years or more;the unmarried monoracial population aged 15 years or more" -Count_Person_15OrMoreYears_NeverMarried_SomeOtherRaceAlone,"Population: 15 Years or More, Never Married, Some Other Race Alone;Some Other Race Unmarried Population Aged 15 Years or More;people of other races who are unmarried and 15 years of age or older;people of some other race who are unmarried and 15 years of age or older;people of some other race who are unmarried and 15 years old or older;people of some other race who are unmarried and are at least 15 years old" -Count_Person_15OrMoreYears_NeverMarried_TwoOrMoreRaces,"Multiracial Population Above 15 Year Who are Unmarried;Population: 15 Years or More, Never Married, Two or More Races;the number of unmarried multiracial people over 15;the percentage of unmarried multiracial people over 15;the percentage of unmarried multiracial people over the age of 15;unmarried multiracial people over 15" -Count_Person_15OrMoreYears_NeverMarried_WhiteAlone,"Never Married White Population Aged 15 Years or More;Population: 15 Years or More, Never Married, White Alone;the number of white people who have never been married and are 15 years old or older;the percentage of white people who have never been married and are 15 years old or older;the proportion of white people who have never been married and are 15 years old or older;white people who have never been married and are 15 years old or older" -Count_Person_15OrMoreYears_NeverMarried_WhiteAloneNotHispanicOrLatino,"Non Married White Hispanic Population Aged 15 Years Or More;Population: 15 Years or More, Never Married, White Alone Not Hispanic or Latino;Unmarried White Non-Hispanic Population Aged 15 Years or More;the number of unmarried white hispanic people aged 15 years or older;the number of unmarried white non-hispanic people aged 15 years or older;the population of unmarried white hispanic people aged 15 years or older;the population of unmarried white non-hispanic people aged 15 years or older" -Count_Person_15OrMoreYears_NoIncome,"Number of People of Working Age With No Income;Number of individuals without income;Number of people aged 15 or older with no income;Number of people with no income;Number of people with no income during working years;Number of people without a job;Number of people without income;Number of unemployed individuals;Percentage of unemployed population;Population: 15 Years or More, No Income;The number of people who do not have an income;number of people of working age who are not earning money;number of people who are of working age and not employed;number of people who are of working age and not working;number of working-age people with no income;the number of people who are not earning an income;the number of people who are not working" -Count_Person_15OrMoreYears_Separated_AmericanIndianAndAlaskaNativeAlone,"American Indian or Alaska Native Population Aged 15 Years or More Who are Separated;Population: 15 Years or More, Separated, American Indian or Alaska Native Alone;american indian or alaska native people aged 15 or older who are not living with their parents;american indian or alaska native people aged 15 years or older who are not living with their families;american indian or alaska native people aged 15 years or older who are not living with their legal guardians;american indian or alaska native people aged 15 years or older who are separated from their families" -Count_Person_15OrMoreYears_Separated_AsianAlone,"Population: 15 Years or More, Separated, Asian Alone" -Count_Person_15OrMoreYears_Separated_BlackOrAfricanAmericanAlone,"African American Population Aged 15 Years or More Separated;Population: 15 Years or More, Separated, Black or African American Alone;black or african american population aged 15 and over, separated" -Count_Person_15OrMoreYears_Separated_ForeignBorn,"Population: 15 Years or More, Separated, Foreign Born;Separated Foreign-Born Population For 15 Years or More" -Count_Person_15OrMoreYears_Separated_HispanicOrLatino,"Hispanic Separated Population Aged 15 Years or More;Population: 15 Years or More, Separated, Hispanic or Latino;hispanic population 15 years and up;hispanic population aged 15 years or older who are separated from their families;hispanics aged 15 years and older" -Count_Person_15OrMoreYears_Separated_Native,"Native Population Aged 15 Years or More Separated;Population: 15 Years or More, Separated, Native;native population aged 15 and older;native population aged 15 years and older;native population aged 15 years or older;population of native americans 15 years of age or older, separated by race" -Count_Person_15OrMoreYears_Separated_NativeHawaiianAndOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Population Aged 15 Years or More Separated;Population: 15 Years or More, Separated, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander population aged 15 and older;native hawaiian or other pacific islander population aged 15 years and up;native hawaiian or other pacific islander population aged 15 years or more;native hawaiian or other pacific islander population aged 15+" -Count_Person_15OrMoreYears_Separated_OneRace,"Population: 15 Years or More, Separated, One Race;Single Race Separated Population Aged 15 Years or More;population by race, 15+;population of people who are 15 years old or older and identify as a single race;population of people who are 15 years old or older and who identify as a single race;population of people who are 15 years old or older and who identify with a single racial group" -Count_Person_15OrMoreYears_Separated_SomeOtherRaceAlone,"Population: 15 Years or More, Separated, Some Other Race Alone;Some Other Race Population Aged 15 Years or More Separated;population of people of some other race aged 15 years or more, by race;population of people of some other race aged 15 years or more, categorized by race;population of people of some other race aged 15 years or more, classified by race;population of people of some other race aged 15 years or more, separated by race" -Count_Person_15OrMoreYears_Separated_TwoOrMoreRaces,"Population: 15 Years or More, Separated, Two or More Races;Separated Multiracial Population Aged 15 Years or More;multiracial people aged 15 and older;multiracial people aged 15 years or more;people who are multiracial aged 15 and older;people who are multiracial aged 15 years or more" -Count_Person_15OrMoreYears_Separated_WhiteAlone,"Population: 15 Years or More, Separated, White Alone;Separated White Population Aged 15 Years or More;the white population aged 15 and over;the white population aged 15 or older;the white population over the age of 15;white people aged 15 or older" -Count_Person_15OrMoreYears_Separated_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Separated, White Alone Not Hispanic or Latino;Separated White People and Non-Hispanics Aged 15 Years Old and Above;white people and non-hispanics aged 15 and older" -Count_Person_15OrMoreYears_Smoking_AsFractionOf_Count_Person_15OrMoreYears,"Population Aged 15 Years or More Smoking;Population: 15 Years or More, Smoking (As Fraction of Count Person 15 or More Years);fraction of people who smoke, aged 15 years or older;number of people aged 15 and over who smoke, as a fraction of the total number of people aged 15 and over;number of people who smoke, aged 15 years or older, as a percentage of the total population;share of people aged 15 and over who smoke" -Count_Person_15OrMoreYears_Widowed_AmericanIndianAndAlaskaNativeAlone,"American Indian or Alaska Native Widows Aged 15 Years or More;Population: 15 Years or More, Widowed, American Indian or Alaska Native Alone;american indian or alaska native widows aged 15 years or older;american indian or alaska native widows who are 15 years old or older;american indian or alaska native women who are widowed;widows of american indian or alaska native descent who are 15 years of age or older" -Count_Person_15OrMoreYears_Widowed_AsianAlone,"Asian Population Aged 15 Years or More Who are Widowed;Population: 15 Years or More, Widowed, Asian Alone;the number of asian people aged 15 years or more who are widowed;the percentage of asian people aged 15 years or more who are widowed;the proportion of asian people aged 15 years or more who are widowed;the share of asian people aged 15 years or more who are widowed" -Count_Person_15OrMoreYears_Widowed_BlackOrAfricanAmericanAlone,"Population: 15 Years or More, Widowed, Black or African American Alone;Widowed African American Population Aged 15 Years or More;african americans who are widowed and 15 years of age or older;the number of african americans who are widowed and 15 years of age or older;the percentage of african americans who are widowed and 15 years of age or older;the proportion of african americans who are widowed and 15 years of age or older" -Count_Person_15OrMoreYears_Widowed_ForeignBorn,"Foreign-Born Population Aged 15 Years or More Who are Widowed;Population: 15 Years or More, Widowed, Foreign Born;foreign-born people aged 15 years or more who are widowed;foreign-born widowed people;the number of foreign-born people aged 15 or more who are widowed;widowed foreign-born people aged 15 years or more" -Count_Person_15OrMoreYears_Widowed_HispanicOrLatino,"Population: 15 Years or More, Widowed, Hispanic or Latino;Widowed Hispanics Aged 15 Years or More;hispanic widows;hispanic women who are no longer married;hispanic women who are widowed;hispanic women who have lost their husbands" -Count_Person_15OrMoreYears_Widowed_Native,"Native Population Aged 15 Years or More Widowed;Population: 15 Years or More, Widowed, Native;native people aged 15 and over who are widowed;native people aged 15 and over who have lost their spouse;native widowed people aged 15 and over;native widowed people aged 15 years and older" -Count_Person_15OrMoreYears_Widowed_NativeHawaiianAndOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Widowed Population Aged 15 Years or More;Population: 15 Years or More, Widowed, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander widows aged 15 years or more;the number of native hawaiian or other pacific islander women who are widowed and aged 15 years or more;the percentage of native hawaiian or other pacific islander women who are widowed;the proportion of native hawaiian or other pacific islander women who are widowed" -Count_Person_15OrMoreYears_Widowed_OneRace,"Population: 15 Years or More, Widowed, One Race;Widowed Monracial Population Aged 15 Years or More;people who are widowed and have one race, aged 15 years or older" -Count_Person_15OrMoreYears_Widowed_SomeOtherRaceAlone,"Population: 15 Years or More, Widowed, Some Other Race Alone;Widowed Population of Some Other Race Aged 15 Years or More;the number of people of some other race who are widowed and 15 years of age or older;the number of people of some other race who are widowed and at least 15 years old;the number of people of some other race who are widowed and have reached the age of 15;the number of people of some other race who are widowed and older than 14" -Count_Person_15OrMoreYears_Widowed_TwoOrMoreRaces,"Multiracial Widowed Population Aged 15 Years or More;Population: 15 Years or More, Widowed, Two or More Races;multiracial people who are widowed, aged 15 years or more;multiracial people who are widowed, aged 15 years or older;people who are widowed and multiracial, aged 15 years or older;population of people who are widowed and multiracial, aged 15 years or more" -Count_Person_15OrMoreYears_Widowed_WhiteAlone,"Population: 15 Years or More, Widowed, White Alone;Widowed Whites Above 15 Years;white people who are no longer married and have been widowed for more than 15 years;white people who are widowed and have been widowed for 15 years or more;white people who are widowed and have been widowed for more than 15 years;white people who have been widowed for more than 15 years" -Count_Person_15OrMoreYears_Widowed_WhiteAloneNotHispanicOrLatino,"Population: 15 Years or More, Widowed, White Alone Not Hispanic or Latino;Widowed White Non-Hispanic Population Aged 15 Years or More;the number of white non-hispanic people aged 15 years or more who are widowed;the number of white non-hispanic people aged 15 years or more who have lost their spouse;the percentage of white non-hispanic people aged 15 years or more who are widowed;the proportion of white non-hispanic people aged 15 years or more who are widowed" -Count_Person_15OrMoreYears_WithIncome,"Population Above 15 Years Old with an Income;Population: 15 Years or More, With Income;number of people over 15 with income;percentage of people over 15 with income;proportion of people over 15 with income;share of people over 15 with income" -Count_Person_15To19Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To19Years_Female,"Female Population Aged 15 to 19 Years Who Gave Birth in The Past 12 Months;Population: 15 - 19 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 15 To 19 Years Female);girls aged 15 to 19 who gave birth in the past year;number of teenage girls who gave birth in the past year;the number of girls aged 15 to 19 who have had a baby in the past year;the number of teenage girls who gave birth in the past year" -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPrivateSchool,"African American Population Aged 15 to 19 Years in Private Schools;Population: 15 - 19 Years, Black or African American Alone, Private School;the african american student body in private schools;the number of african americans aged 15 to 19 years enrolled in private schools;the percentage of african americans aged 15 to 19 years enrolled in private schools;the proportion of african americans aged 15 to 19 years enrolled in private schools" -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_EnrolledInPublicSchool,"African American Population Aged 15 to 19 Years In Public Schools;Population: 15 - 19 Years, Black or African American Alone, Public School;the number of african americans aged 15 to 19 years in public schools;the percentage of african americans aged 15 to 19 years in public schools;the proportion of african americans aged 15 to 19 years in public schools;the share of african americans aged 15 to 19 years in public schools" -Count_Person_15To19Years_BlackOrAfricanAmericanAlone_ResidesInHousehold,"African American Household Population Aged 15 to 19 Years;Population: 15 - 19 Years, Black or African American Alone, Household;the number of african american households with members aged 15 to 19 years;the number of african american households with teenagers;the number of african americans living in households with children aged 15 to 19 years;the number of african americans living in households with people aged 15 to 19 years" -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPrivateSchool,"Hispanic Population Aged 15 to 19 Years in Private Schools;Population: 15 - 19 Years, Hispanic or Latino, Private School;how many hispanic people aged 15 to 19 are in private schools?;what is the hispanic population aged 15 to 19 in private schools?;what is the number of hispanic people aged 15 to 19 in private schools as a percentage of the total hispanic population aged 15 to 19?;what percentage of hispanic people aged 15 to 19 are in private schools?" -Count_Person_15To19Years_HispanicOrLatino_EnrolledInPublicSchool,"Hispanic Population Aged 15 to 19 Years in Public School;Population: 15 - 19 Years, Hispanic or Latino, Public School;hispanic or latino public school students aged 15-19;hispanic or latino students in the public school system aged 15-19;public school students aged 15-19 who are hispanic or latino;students aged 15-19 who are hispanic or latino and attend public schools" -Count_Person_15To19Years_HispanicOrLatino_ResidesInHousehold,"Hispanic Households Aged 15 to 19 Years;Population: 15 - 19 Years, Hispanic or Latino, Household;households headed by a hispanic person aged 15 to 19 years;households with hispanic children aged 15 to 19 years;households with hispanic members aged 15 to 19 years;households with hispanic teenagers" -Count_Person_15To19Years_Literate_AsAFractionOf_Count_Person_15To19Years,"Population: 15 - 19 Years, Literate (As Fraction of Count Person 15 To 19 Years)" -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPrivateSchool,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Private School;White Non-Hispanic Population Aged 15 to 19 Years Enrolled in Private Schools;the number of white non-hispanic people aged 15 to 19 years enrolled in private schools;the percentage of white non-hispanic people aged 15 to 19 years enrolled in private schools;the proportion of white non-hispanic people aged 15 to 19 years enrolled in private schools;the share of white non-hispanic people aged 15 to 19 years enrolled in private schools" -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_EnrolledInPublicSchool,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Public School;White and Non-Hispanic Population Aged 15 to 19 Years in Public Schools;the number of white and non-hispanic people aged 15 to 19 years in public schools;the percentage of white and non-hispanic people aged 15 to 19 years in public schools;the proportion of white and non-hispanic people aged 15 to 19 years in public schools;the share of white and non-hispanic people aged 15 to 19 years in public schools" -Count_Person_15To19Years_WhiteAloneNotHispanicOrLatino_ResidesInHousehold,"Population: 15 - 19 Years, White Alone Not Hispanic or Latino, Household;White Non Hispanic Population Household Aged 15 to 19 Years;the number of people who are aged 15 to 19 years, and who live in households headed by someone who is white alone and not hispanic or latino;the population of white alone not hispanic or latino people aged 15 to 19 who live in a household" -Count_Person_15To24Years_Illiterate_AsAFractionOf_Count_Person_15To24Years,"Population: 15 - 24 Years, Illiterate (As Fraction of Count Person 15 To 24 Years)" -Count_Person_15To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To50Years_Female,"Female Population Aged 15 to 50 Years Who Birthed in The Past 12 Months;Population: 15 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 15 To 50 Years Female)" -Count_Person_15To50Years_EducationalAttainmentLessThanHighSchoolGraduate_Female,"Female Population Aged 15 to 50 Years Who Are Less Than High School Graduates;Population: 15 - 50 Years, Less Than High School Graduate, Female;females aged 15 to 50 who are not high school graduates;females aged 15 to 50 with less than a high school diploma;women aged 15 to 50 who have not completed high school;women aged 15 to 50 who have not graduated from high school" -Count_Person_15To50Years_EducationalAttainmentSomeCollegeOrAssociatesDegree_Female,"Number of Females Age 15-50 With a College Degree or Associates Degree;Number of Females With a College Degree or Associates Degree;Population: 15 - 50 Years, Some College or Associates Degree, Female;female population with college or associates degree;females who have college degrees;number of females with associated degrees;number of women with college degrees;population of women with college degrees;the number of females aged 15-50 who are college-educated;the number of females aged 15-50 who have a college degree or associate degree;the number of females aged 15-50 who have a college degree or associate's degree;the number of females aged 15-50 who have completed college or an associate degree program;the number of females aged 15-50 who have completed college or an associate's degree program;the number of females aged 15-50 with a college degree or associate degree;the number of females aged 15-50 with a college degree or associate's degree" -Count_Person_15To50Years_Female_1.0OrLessRatioToPovertyLine,"Female Population Aged 15 to 50 Years With a 1 Ratio to Poverty Line or Less;Population: 15 - 50 Years, Female, 1 Ratio To Poverty Line or Less;the number of women aged 15 to 50 years with a poverty ratio of 1 or less;the number of women aged 15 to 50 years with a ratio of 1 to the poverty line or less;the percentage of women aged 15 to 50 who live below the poverty line;the proportion of women aged 15 to 50 who live below the poverty line" -Count_Person_15To50Years_Female_1To1.99RatioToPovertyLine,"Female Population Aged 15 to 50 Years With a 1 to 2.0 Ratio To Poverty Line;Population: 15 - 50 Years, Female, 1 - 2.0 Ratio To Poverty Line" -Count_Person_15To50Years_Female_2OrMoreRatioToPovertyLine,"Female Population Aged 15 to 50 Years with a 2 Ratio to Poverty Line or More;Population: 15 - 50 Years, Female, 2 Ratio To Poverty Line or More;the number of females aged 15 to 50 years with a poverty ratio of 2 or more;the number of females aged 15 to 50 years with a ratio to poverty line of 2 or more;women aged 15 to 50 living below the poverty line by a factor of 2 or more;women aged 15 to 50 with a poverty ratio of 2 or more" -Count_Person_15To50Years_Female_ForeignBorn,"Foreign Born Female Population Aged 15 to 50 Years;Population: 15 - 50 Years, Female, Foreign Born;female foreign-born population aged 15 to 50 years;foreign-born women aged 15 to 50;population of foreign-born females aged 15 to 50 years;women who were born in another country and are currently aged 15 to 50 years" -Count_Person_15To50Years_Female_Native,"Native Female Population Aged 15 to 50 Years;Population: 15 - 50 Years, Female, Native;female population of native origin aged 15 to 50 years;native female population aged 15 to 50;native female population between the ages of 15 and 50;native women aged 15 to 50" -Count_Person_15To50Years_Female_OneRace,"Monoracial Female Population Aged 15 to 50 Years;Population: 15 - 50 Years, Female, One Race;female population aged 15 to 50 who are of one race;female population of one race aged 15 to 50;population of women aged 15 to 50 who are of one race;population of women of one race aged 15 to 50" -Count_Person_15To50Years_Female_PovertyStatusDetermined,"Female Population Aged 15 to 50 Years With Poverty Status Determined;Population: 15 - 50 Years, Female, Poverty Status Determined;the number of females aged 15 to 50 years who have been determined to be in poverty;the number of females aged 15 to 50 years who have been determined to be living in poverty;the number of females aged 15 to 50 years who have been determined to have a low income;the number of females aged 15 to 50 years with determined poverty status" -Count_Person_15To64Years_Female_InLaborForce_AsFractionOf_Count_Person_15To64Years_Female,"3 the number of women aged 15 to 64 who are working or looking for work, divided by the total number of women aged 15 to 64;Female Population Aged 15 to 64 Years in Labor Force;Population: 15 - 64 Years, in Labor Force, Female (As Fraction of Count Person 15 To 64 Years Female);female labor force as a percentage of the female population aged 15-64;fraction of females aged 15-64 who are in the labor force;fraction of females in the labor force aged 15-64" -Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,Labor force participation rate;Number of people in the labor force (ages 15 to 64) as a fraction of the total number of people (ages 15 to 64);Percent of Working Age People in the Labor Force;Percentage of people of working age who are employed or actively looking for work;number of people of working age in the labor force as a percentage of the total population;percentage of people of working age in the workforce;proportion of people of working age in the labor force;share of people of working age in the labor force -Count_Person_15To64Years_Male_InLaborForce_AsFractionOf_Count_Person_15To64Years_Male,"Males Aged 15 to 64 Years in The Labor Force;Population: 15 - 64 Years, in Labor Force, Male (As Fraction of Count Person 15 To 64 Years Male);men aged 15 to 64 who are in the labor market;men aged 15 to 64 who are part of the labor force;men in the labor force aged 15 to 64" -Count_Person_16OrMoreYears_EmployedAndWorking_InLaborForce,"Population Aged 16 Years or More Employed And Working in Labor Force;Population: 16 Years or More, Employed And Working, in Labor Force" -Count_Person_16OrMoreYears_Female_WithEarnings,"Female Population Aged 16 Years Old or More With Earnings;Population: 16 Years or More, Female, With Earnings;number of female earners aged 16 or older;number of women aged 16 or older with earnings;number of women who earn money aged 16 or older;women who are 16 years old or older and have earnings" -Count_Person_16OrMoreYears_Male_WithEarnings,"3 number of males aged 16 years or older with jobs;Male Population Aged 16 Years or More With Earnings;Population: 16 Years or More, Male, With Earnings;men aged 16 or older who earn money;number of males aged 16 or over with earnings;number of males aged 16 or over with income" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf15000To24999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 15,000 - 24,999 USD, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf25000To34999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 25,000 - 34,999 USD, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf35000To49999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 35,000 - 49,999 USD, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf4999OrLessUSDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 4,999 USD or Less, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf50000To74999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 50,000 - 74,999 USD, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf5000To14999USDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 5,000 - 14,999 USD, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf75000OrMoreUSDollar_WithEarnings,"Population: 16 Years or More, Civilian, No Health Insurance, 75,000 USD or More, With Earnings, Non Institutionalized" -Count_Person_16OrMoreYears_WithEarnings,"Population Aged 16 Years or More With Earnings;Population: 16 Years or More, With Earnings;people aged 16 or older who are earning an income;people aged 16 or older who are earning money;people aged 16 or older who have earnings;people aged 16 years or older with earnings" -Count_Person_16To19Years_InLaborForce_BlackOrAfricanAmericanAlone,"African American Population Aged 16 to 19 Years in Labor Force;Population: 16 - 19 Years, in Labor Force, Black or African American Alone;african americans aged 16 to 19 in the workforce;the labor force participation rate of african americans aged 16 to 19;the number of african americans aged 16 to 19 who are employed;the percentage of african americans aged 16 to 19 who are employed" -Count_Person_16To19Years_InLaborForce_HispanicOrLatino,"Hispanic Population Aged 16 to 19 Years In Labor Force;Population: 16 - 19 Years, in Labor Force, Hispanic or Latino;hispanic 16-19 year olds in the workforce;hispanic 16-19 year olds who are employed or looking for work;hispanic labor force participation rate of 16-19 year olds;percentage of hispanic 16-19 year olds in the labor force" -Count_Person_16To19Years_InLaborForce_WhiteAloneNotHispanicOrLatino,"Population: 16 - 19 Years, in Labor Force, White Alone Not Hispanic or Latino;White Non Hispanic Population Aged 16 to 19 Years in Labor Force;the number of white people in the us who are between the ages of 16 and 19 and are employed or unemployed;the number of white people in the us who are between the ages of 16 and 19 and are part of the workforce;the number of white people in the us who are between the ages of 16 and 19 and are working or looking for work;the percentage of people aged 16 to 19 who are in the labor force and identify as white alone, not hispanic or latino" -Count_Person_16To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_16To50Years_Female,"Births in The Past 12 Months of Females Aged 16 to 50 Years;Population: 16 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 16 To 50 Years Female);number of babies born to women aged 16 to 50 in the past year;number of births to females aged 16 to 50 in the past 12 months;number of births to females aged 16 to 50 in the past 12 months, by age;number of live births to women aged 16 to 50 in the past year" -Count_Person_18OrLessYears_Female_ResidesInCollegeOrUniversityStudentHousing,"Female College or University Student Housing Ages 18 Years or Less;Population: 18 Years or Less, Female, College or University Student Housing;dormitories for female college students under 18;housing for female college students under 18;on-campus housing for female college students under 18;student housing for female college students under 18" -Count_Person_18OrLessYears_Male_ResidesInCollegeOrUniversityStudentHousing,"Male Population Aged 18 Years or Less Residing In University Student Housing;Population: 18 Years or Less, Male, College or University Student Housing;number of male college students aged 18 or less living in university residence halls;number of male students aged 18 or less living in university-owned or -operated housing;number of male undergraduates aged 18 or less living in university housing;number of male university students aged 18 or less living in campus housing" -Count_Person_18OrMoreYears_Civilian,"Civilians Aged 18 Years or More;Population: 18 Years or More, Civilian;folks aged 18 and above;people aged 18 and over;people aged 18 or older;people who are at least 18 years old" -Count_Person_18OrMoreYears_Civilian_ResidesInAdultCorrectionalFacilities,"Population of Civilian Aged 18 Years or More in Adult Correctional Facilities;Population: 18 Years or More, Civilian, Adult Correctional Facilities;number of adults aged 18 or older in adult correctional facilities;the number of people aged 18 or older in adult correctional facilities;the number of people in correctional facilities who are 18 years or older" -Count_Person_18OrMoreYears_Civilian_ResidesInCollegeOrUniversityStudentHousing,"Civilians Aged 18 Years or More Who are in College or University Student Housing;Population: 18 Years or More, Civilian, College or University Student Housing;adults aged 18 or older who are enrolled in college or university;college students aged 18 or older;individuals aged 18 or older who are living in student housing;people aged 18 or older who are attending college or university" -Count_Person_18OrMoreYears_Civilian_ResidesInGroupQuarters,"Civilians Aged 18 Years or More Group Quarters;Population: 18 Years or More, Civilian, Group Quarters;group quarters residents aged 18 years or older;people 18 years of age or older living in group quarters;people aged 18 years or older living in group quarters" -Count_Person_18OrMoreYears_Civilian_ResidesInInstitutionalizedGroupQuarters,"Civilian Population Aged 18 Years or More in Institutionalized Group Quarters;Population: 18 Years or More, Civilian, Institutionalized Group Quarters;people 18+ in institutions;people aged 18 or older in institutional settings;the civilian population aged 18 or older living in group quarters" -Count_Person_18OrMoreYears_Civilian_ResidesInNoninstitutionalizedGroupQuarters,"Civilians Aged 18 Years and Above Residing in Non-Institutionalized Group Quarters;Population: 18 Years or More, Civilian, Noninstitutionalized Group Quarters;adults aged 18 and over living in group quarters other than institutions;adults aged 18 and over living in non-institutional group quarters;adults aged 18 and over who are not institutionalized and live in group quarters" -Count_Person_18OrMoreYears_Civilian_ResidesInNursingFacilities,"Civilian Population Aged 18 Years or More in Nursing Facilities;Population: 18 Years or More, Civilian, Nursing Facilities;adults aged 18 or older in nursing homes;adults aged 18 or older who live in nursing homes;people aged 18 or older living in nursing homes;people aged 18 or older who are residents of nursing homes" -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine,"Population Aged 1 Year or More With a 1.5 Ratio To Poverty Line or More;Population: 1 Years or More, 1.5 Ratio To Poverty Line or More;the number of people aged 1 year or more who have an income that is 15 times the poverty line or more;the percentage of people aged 1 year or more with a ratio of income to poverty line of 15 or more;the proportion of people aged 1 year or more with an income that is 15 times the poverty line or more;the share of people aged 1 year or more with an income that is 15 times the poverty line or more" -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseAbroad,"Population Aged 1 Year or More with a 1.5 Ratio To the Poverty Line or More in Different Houses Abroad;Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House Abroad;the number of people aged 1 year or more living in households with an income that is 15 times or more the poverty line in different countries;the number of people aged 1 year or more living in households with an income that is 150% or more the poverty line in different countries;the number of people aged 1 year or more living in households with an income-to-poverty ratio of 15 or more in different countries;the proportion of people aged 1 year or more living in households with an income-to-poverty ratio of 15 or more in different countries" -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More Living in Different Houses in Different Counties in Different States With A 1.5 Ratio To Poverty Line or More;Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Different County Different State;the number of people aged 1 year or more living in different households in different counties in different states with a 15 ratio to the poverty line or more;the number of people aged 1 year or more living in different houses in different counties in different states with a 15 ratio to the poverty line or more;the population of people aged 1 year or more living in different households in different counties in different states with a 15 ratio to the poverty line or more;the population of people aged 1 year or more living in different houses in different counties in different states with a 15 ratio to the poverty line or more" -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More Above To Poverty Line or More in a Different House in Different County and Different State;Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Different County Same State;number of people aged 1 year or more living above the poverty line in a different house in a different county and a different state;number of people aged 1 year or more living in a different house in a different county and a different state with an income above the poverty line;number of people aged 1 year or more living in a different house in a different county and a different state with an income that is greater than the poverty line;number of people aged 1 year or more living in a different house in a different county and a different state with an income that is higher than the poverty line" -Count_Person_1OrMoreYears_1.5OrMoreRatioToPovertyLine_DifferentHouseInSameCounty,"Population Aged 1 Year or More With a 1.5 Ratio To Poverty Line or More in Different Houses in The Same County;Population: 1 Years or More, 1.5 Ratio To Poverty Line or More, Different House in Same County;number of people aged 1 year or more living in different households in the same county with a ratio of income to poverty line of 15 or more;number of people aged 1 year or more living in different households in the same county with an income that is 15 times the poverty line or more;number of people aged 1 year or more living in different households in the same county with an income that is 150% of the poverty line or more;number of people aged 1 year or more living in different households in the same county with an income that is 150% or more of the poverty line" -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine,"Population Above 1 Year with a 1 Ratio to Poverty Line or Less;Population: 1 Years or More, 1 Ratio To Poverty Line or Less" -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseAbroad,"Population Aged 1 Year or More with a 1 Ratio to Poverty Line or Less in Different Houses Abroad;Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House Abroad" -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More With a 1 Ratio To Poverty Line or Less in Different Houses in Different County Different State;Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Different County Different State;number of people aged 1 year or more living below the poverty line in different counties in different states;number of people aged 1 year or older living below the poverty line in different counties in different states;number of people aged 1 year or older with a poverty ratio of 1 or less in different counties in different states;proportion of people aged 1 year or more living below the poverty line in different counties in different states" -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInDifferentCountySameState,"2 number of people aged 1 year or older living in households with a ratio of income to poverty line of 1 or less in different counties in the same state;Population Aged 1 Year or More With 1 Ratio To Poverty Line or Less in Different Houses in Different County Same State;Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Different County Same State;number of people aged 1 year or more with a household income that is 100% or less of the poverty line in different houses in the same county in the same state;number of people aged 1 year or more with a poverty rate of 100% or less in different houses in the same county in the same state;number of people aged 1 year or more with a ratio of 1 to the poverty line or less in different houses in the same county in the same state" -Count_Person_1OrMoreYears_1OrLessRatioToPovertyLine_DifferentHouseInSameCounty,"Population With 1 Ratio To Poverty Line or Less With Different Houses in The Same County For 1 Year or More;Population: 1 Years or More, 1 Ratio To Poverty Line or Less, Different House in Same County;number of people living in poverty in the same county for 1 year or more;people who have lived in the same county for 1 year or more and have a ratio of income to poverty line of 1 or less;percentage of people living in poverty in the same county for 1 year or more;proportion of people living in poverty in the same county for 1 year or more" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine,"Population Above 1 Year Old With a 1 to 1.5 Ratio to Poverty Line;Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line;percentage of people over 1 year old living in poverty;population over 1 year old living below the poverty line;poverty rate for people over 1 year old;proportion of people over 1 year old living in poverty" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseAbroad,"1 year or above, 15 times the poverty line, and living in a different house overseas;Population Aged 1 Years or More With a 1 to 1.5 Ratio To Poverty Line, Different House Abroad;Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House Abroad" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More With a 1 to 1.5 Ratio To Poverty Line in Different Houses in Different County And State;Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Different County Different State;the number of people aged 1 year or more living in households with a 1 to 15 ratio to the poverty line, by county and state;the number of people aged 1 year or more living in households with a ratio of income to poverty line of 1 to 15, by county and state;the number of people aged 1 year or more living in households with income below the poverty line, by county and state;the percentage of people aged 1 year or more living in households with income below the poverty line, by county and state" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInDifferentCountySameState,"Population Aged 1 Years or More With a 1 to 1.5 Ratio To Poverty Line in Different House in Different County Same State;Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Different County Same State;population: 1 years or more, 1 - 15 ratio to poverty line, different house in different county same state" -Count_Person_1OrMoreYears_1To1.49RatioToPovertyLine_DifferentHouseInSameCounty,"Population Aged 1 Year or More with a 1 to 1.5 Ratio to Poverty Line in Different Houses and The Same County;Population: 1 Years or More, 1 - 1.5 Ratio To Poverty Line, Different House in Same County;number of people aged 1 year or more living in households with an income between 1 and 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is 1 to 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is at or below 15 times the poverty line in the same county;number of people aged 1 year or more living in households with an income that is at or below 150% of the poverty line in the same county" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseAbroad,"American Indians Or Alaska Natives In Different Houses Abroad Aged 1 Year And Above;Population: 1 Years or More, American Indian or Alaska Native Alone, Different House Abroad;american indians or alaska natives living in foreign countries who are 1 year old or older;american indians or alaska natives living in international locations who are 1 year old or older;american indians or alaska natives living in other countries who are 1 year old or older;american indians or alaska natives living outside the united states who are 1 year old or older" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountyDifferentState,"American Indian Or Alaska Native In Different Houses Counties And States;Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Different County Different State;american indian or alaska native demographics in different households, counties, and states;american indian or alaska native population by county;american indian or alaska native populations by household, county, and state;american indian or alaska native populations in different households, counties, and states" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInDifferentCountySameState,"American Indian or Alaska Native Population Aged 1 Year Old or More in Different Houses in Different Counties in the Same States;Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Different County Same State;american indian or alaska native population in different houses in different counties in the same states, aged 1 year or older;american indian or alaska native population in different houses in different counties in the same states, aged 1 year or older, by state;number of american indians or alaska natives aged 1 year or older in different houses in different counties in the same states;population of american indians or alaska natives aged 1 year or older in different houses in different counties in the same states" -Count_Person_1OrMoreYears_AmericanIndianOrAlaskaNativeAlone_DifferentHouseInSameCounty,"American Indian or Alaska Native Aged 1 Year or More in Different House in Same County;Population: 1 Years or More, American Indian or Alaska Native Alone, Different House in Same County;american indian or alaska native living in a different house in the same county at age 1 or older;american indian or alaska native living in a different household in the same county at age 1 or older;american indian or alaska native who lived in a different house in the same county at least once in the past 12 months;american indian or alaska native who moved to a different house in the same county at least once in the past 12 months" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseAbroad,"Asian Population Aged 1 Year or More Living in Different Houses Abroad;Population: 1 Years or More, Asian Alone, Different House Abroad;number of asian people living outside their home country who are 1 year old or older;number of asians living outside their home countries" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountyDifferentState,"Asian Population Aged 1 Year or More Living in Different Houses, Counties and States;Population: 1 Years or More, Asian Alone, Different House in Different County Different State;the number of asian people aged 1 year or more living in different houses, counties, and states;the number of asian people living in different houses, counties, and states in the united states;the number of asian people living in each house, county, and state in the united states;the percentage of asian people living in different houses, counties, and states in the united states" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInDifferentCountySameState,"Asian Population Aged 1 Years or More in Different House in Different County Same State;Population: 1 Years or More, Asian Alone, Different House in Different County Same State;the number of people who are asian and live in a different house in a different county in the same state, who are 1 year old or older;the number of people who are asian and live in a different house in a different county in the same state, who are at least 1 year old;the number of people who are asian and live in a different house in a different county in the same state, who are at least one year old;the population of asian people who live in a different house in a different county in the same state, who are at least 1 year old" -Count_Person_1OrMoreYears_AsianAlone_DifferentHouseInSameCounty,"Asians in Different Houses in The Same County Aged I Years And Above;Population: 1 Years or More, Asian Alone, Different House in Same County;asians in different houses in the same county aged 1 year and above;asians living in different households in the same county who are at least 1 year old;people of asian descent living in different houses in the same county who are 1 year old or older;people of asian origin living in different residences in the same county who are at least 1 year old" -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseAbroad,"African American Population Aged 1 Year or More Living in Different Houses Abroad;Population: 1 Years or More, Black or African American Alone, Different House Abroad;number of african americans living in foreign countries who are 1 year of age or older;number of african americans living in other countries who are 1 year of age or older;number of african americans living outside the us who are at least 1 year old;number of african americans living outside their home country" -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountyDifferentState,"African American Population Aged 1 Year or More Living in Different Houses, Different Counties and Different States;Population: 1 Years or More, Black or African American Alone, Different House in Different County Different State;the number of african americans aged 1 year or more living in different houses, counties, and states;the number of african americans aged 1 year or more who live in different households, counties, and states;the number of african americans aged 1 year or more who live in different places;the total number of african americans aged 1 year or more living in different places" -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInDifferentCountySameState,"African Americans Above 1 Year Old in Different Houses, County but Same State;Population: 1 Years or More, Black or African American Alone, Different House in Different County Same State;african americans living in different dwellings in the same county but in the same state who are over the age of one;african americans living in different households in the same county but in the same state who are over the age of one;african americans living in different houses in the same county but in the same state who are over the age of one;african americans living in different residences in the same county but in the same state who are over the age of one" -Count_Person_1OrMoreYears_BlackOrAfricanAmericanAlone_DifferentHouseInSameCounty,"African American Population Aged 1 Year or More in Different Houses and Same County;Population: 1 Years or More, Black or African American Alone, Different House in Same County;number of african americans aged 1 year or older in different households in the same county;number of african americans aged 1 year or older in the same county, by household;number of african americans aged 1 year or older in the same county, by household size;number of african americans aged 1 year or older in the same county, by household type" -Count_Person_1OrMoreYears_DifferentHouse1YearAgo,"Population Aged 1 Years or More in Different House 1 Year Ago;Population: 1 Years or More, Different House 1 Year Ago;people who have moved house in the past year;people who lived in a different house a year ago;people who were 1 year old or older and living in a different house 1 year ago;people who were living in a different house 1 year ago than they were when they were 1 year old" -Count_Person_1OrMoreYears_DifferentHouseInDifferentCounty,"Population Aged 1 Year or More in Different Houses in Different County;Population: 1 Years or More, Different House in Different County;number of people aged 1 year or older in different homes in different counties;number of people aged 1 year or older in different households in different counties;population of people aged 1 year or older in different households in different counties;population of people aged 1 year or older in different residences in different counties" -Count_Person_1OrMoreYears_DifferentHouseInTheUS,"Population Aged 1 Years or More Different House in The US;Population: 1 Years or More, Different House in The US;number of people in the us who have moved to a new house in the past year;number of people living in the us who are 1 year old or older and living in a different house than they did a year ago;the number of people in the us who are 1 year old or older and live in a different house than they did a year ago;the number of people in the us who have moved to a new house in the past year" -Count_Person_1OrMoreYears_Female_DifferentHouseAbroad,"Female Population Aged 1 Year Or More With Different House Abroad;Population: 1 Years or More, Female, Different House Abroad;number of females aged 1 year or older living in a different household outside of the country;number of women aged 1 year or older living in a different household abroad;number of women living abroad who are 1 year old or older;number of women living outside their home country" -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountyDifferentState,"Female Population Aged 1 Year or More Living in Different Houses in Different County Different State;Population: 1 Years or More, Female, Different House in Different County Different State;number of female citizens aged 1 year or older living in different houses in different counties in different states;number of female residents aged 1 year or older living in different houses in different counties in different states;number of females aged 1 year or older living in different houses in different counties in different states;number of women aged 1 year or older living in different houses in different counties in different states" -Count_Person_1OrMoreYears_Female_DifferentHouseInDifferentCountySameState,"Female Population Aged 1 Year or More Residing in A Different House in a Different County in the Same State;Population: 1 Years or More, Female, Different House in Different County Same State;females aged 1 year or older who live in a different domicile in a different county in the same state;females who are 1 year old or older and live in a different home in a different county in the same state;girls who are 1 year old or older and live in a different residence in a different county in the same state;women who are 1 year old or older and live in a different house in a different county in the same state" -Count_Person_1OrMoreYears_Female_DifferentHouseInSameCounty,"Female Population Aged 1 Year or More in Different Houses in The Same County;Population: 1 Years or More, Female, Different House in Same County;female population aged 1 or more in different dwellings in the same county;female population aged 1 or more in different households in the same county;number of females aged 1 or more in different households in the same county;number of women aged 1 or more in different houses in the same county" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseAbroad,"Foreign-Born Population Aged 1 Year or More in Different Houses Abroad;Population: 1 Years or More, Foreign Born, Different House Abroad;number of foreign-born people aged 1 year or more living in different households outside of their home country;number of foreign-born people who are 1 year old or older living in different households outside of their home country;population of foreign-born people aged 1 year or more living in different households abroad;population of foreign-born people who are 1 year old or older living in different households abroad" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountyDifferentState,"Foreign-Born Population Age 1 Year or More Residing in a Different House in Different County and Different State;Population: 1 Years or More, Foreign Born, Different House in Different County Different State;foreign nationals who have lived in a different house in a different county and a different state for at least one year;foreign-born residents who are at least 1 year old and live in a different house, county, and state than they did when they were 1 year old;people who were born in another country and have lived in a different house in a different county and a different state for at least one year;the number of foreign-born people who are at least 1 year old and live in a different house in a different county and a different state" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInDifferentCountySameState,"Foreign-Born Population Aged 1 Year or More Residing in a Different House in Different County and Same State;Population: 1 Years or More, Foreign Born, Different House in Different County Same State;foreign-born people who are 1 year old or older and have moved to a different house in a different county in the same state;foreign-born people who are 1 year old or older and live in a different house in a different county in the same state;people who were born in another country and are at least 1 year old who live in a different house in a different county but the same state;people who were born in another country and are now living in the united states, aged 1 year or older, who have changed their residence to a different house in a different county in the same state" -Count_Person_1OrMoreYears_ForeignBorn_DifferentHouseInSameCounty,"Foreign-Born Population Above 1 Year in Different Houses in Same County;Population: 1 Years or More, Foreign Born, Different House in Same County;count of foreign-born people over 1 year old living in different homes in the same county;number of people born outside of the country who are over 1 year old and live in different households in the same county;population of foreign-born people over 1 year old living in different households in the same county;total of foreign-born people over 1 year old living in different residences in the same county" -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseAbroad,"Hispanic Population Aged 1 Year or More in Different Houses Abroad;Population: 1 Years or More, Hispanic or Latino, Different House Abroad;hispanic population living in different houses abroad;number of hispanic people aged 1 year or more living in different households abroad;number of hispanic people living abroad in different households;number of hispanics living in different households abroad" -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,"Hispanic Population Aged 1 Year Or More In Different Houses in the Same County State;Population: 1 Years or More, Hispanic or Latino, Different House in Different County Different State;number of hispanic people aged 1 year or more living in different houses in the same county and state;number of hispanic people aged 1 year or more living in different residences in the same county and state;number of hispanic people aged 1 year or more living in multiple homes in the same county and state;number of hispanic people aged 1 year or more living in multiple households in the same county and state" -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInDifferentCountySameState,"Hispanic Population Aged 1 Year or More in Different Houses in Different County Same State;Population: 1 Years or More, Hispanic or Latino, Different House in Different County Same State;hispanic population in different counties in the same state, aged 1 year or more, by house and county;hispanic population in different houses in different counties in the same state aged 1 year or more;hispanic population in different houses in different counties in the same state, aged 1 year or more, by county;number of hispanic people living in different houses in the same county in the same state aged 1 year or more" -Count_Person_1OrMoreYears_HispanicOrLatino_DifferentHouseInSameCounty,"Hispanics In Different Houses In the Same County Aged 1 Year Or More;Population: 1 Years or More, Hispanic or Latino, Different House in Same County;hispanics living in different households in the same county who are 1 year old or older;hispanics who live in different homes in the same county and are 1 year old or older;hispanics who reside in different dwellings in the same county and are 1 year old or older;number of hispanics living in different houses in the same county, aged 1 year or more" -Count_Person_1OrMoreYears_Male_DifferentHouseAbroad,"Male Population Aged 1 Year or More in Different Houses Abroad;Population: 1 Years or More, Male, Different House Abroad;number of male citizens aged 1 year or more living in foreign households;number of male individuals aged 1 year or more living in households in other countries;number of male people aged 1 year or more living in households outside their home country;number of male residents aged 1 year or more in different households outside of the country" -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountyDifferentState,"Male Population Above 1 Year Old in Different House, County and State;Population: 1 Years or More, Male, Different House in Different County Different State;male population over 1 year old by house, county, and state;male population over 1 year old by jurisdiction;male population over 1 year old by location;number of males over 1 year old in each house, county, and state" -Count_Person_1OrMoreYears_Male_DifferentHouseInDifferentCountySameState,"Male Population Aged 1 Year or More Living in Different Houses in Different County Same State;Population: 1 Years or More, Male, Different House in Different County Same State;number of males aged 1 year or older living in different houses in the same county in a certain state;number of males living in different houses in the same county in a certain state who are 1 year old or older;number of males living in different houses in the same county in a certain state who are at least 1 year old;number of males living in different houses in the same county in a certain state who are older than 1 year" -Count_Person_1OrMoreYears_Male_DifferentHouseInSameCounty,"2 population of males over 1 year old living in different households in the same county;Male Population Above 1 Year In Different House But Same County;Population: 1 Years or More, Male, Different House in Same County;number of males over 1 year old living in different households in the same county;number of males over 1 year old living in the same county but in different households;population of males over 1 year old living in the same county but in different houses" -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseAbroad,"Native Hawaiian Or Other Pacific Islanders Population Aged 1 Year Or More In Different Houses Abroad;Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House Abroad;number of native hawaiian or other pacific islanders aged 1 year or more living in different houses abroad;number of native hawaiian or other pacific islanders aged 1 year or more living in foreign countries;number of native hawaiian or other pacific islanders aged 1 year or more living in non-us households;number of native hawaiian or other pacific islanders aged 1 year or more living outside the united states" -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountyDifferentState,"Natives Hawaiians or Other Pacific Islanders Above 1 Year Old Living In House In Different County or State;Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Different County Different State" -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInDifferentCountySameState,"Native Hawaiian or Other Pacific Islander Population Aged 1 Year Old or More in Different Houses in Different Counties, Same State;Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Different County Same State;number of native hawaiian or other pacific islander people aged 1 year old or more in different dwellings in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different households in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different houses in different counties in the same state;number of native hawaiian or other pacific islander people aged 1 year old or more in different residences in different counties in the same state" -Count_Person_1OrMoreYears_NativeHawaiianOrOtherPacificIslanderAlone_DifferentHouseInSameCounty,"Native Hawaiians or Other Pacific Islanders Aged 1 Years Or More Residing in Different Houses in Same County;Population: 1 Years or More, Native Hawaiian or Other Pacific Islander Alone, Different House in Same County;native hawaiians or other pacific islanders who are 1 year old or older and live in different dwellings in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in different houses in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in multiple households in the same county;native hawaiians or other pacific islanders who are 1 year old or older and live in separate homes in the same county" -Count_Person_1OrMoreYears_OneRace_DifferentHouseAbroad,"One Race Population Aged 1 Year Old or More Residing in a Different House Abroad;Population: 1 Years or More, One Race, Different House Abroad;people of one race aged 1 year or older living in a different house abroad;population of one race aged 1 year or older living in a different house abroad" -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountyDifferentState,"One Race Population Aged 1 Year Old or More in Different Houses in Different County and Different State;Population: 1 Years or More, One Race, Different House in Different County Different State;people of one race aged 1 year or older in different houses in different counties and different states;persons of one race aged 1 year or older in different homes in different counties and different states" -Count_Person_1OrMoreYears_OneRace_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More with One Race in Different House, Different County and Same State;Population: 1 Years or More, One Race, Different House in Different County Same State;count of people aged 1 year or older with one race living in different houses in different counties in the same state;number of people aged 1 year or older with one race living in different houses in different counties in the same state;population of people aged 1 year or older with one race living in different houses in different counties in the same state;total number of people aged 1 year or older with one race living in different houses in different counties in the same state" -Count_Person_1OrMoreYears_OneRace_DifferentHouseInSameCounty,"Population: 1 Years or More, One Race, Different House in Same County;Uniracial Above 1 Year Old With Another House In Same County" -Count_Person_1OrMoreYears_OwnerOccupied_ResidesInHousingUnit,"Population Occupying Housing Units For 1 Year or More;Population: 1 Years or More, Owner Occupied, Housing Unit;occupants of dwellings for at least a year;residents of homes for at least 12 months;residents of homes for more than 12 months;residents who have been living in their homes for at least a year" -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseAbroad,"Population Aged 1 Year or More with Determined Poverty Status in Different Houses Abroad;Population: 1 Years or More, Poverty Status Determined, Different House Abroad;number of people aged 1 year or more living in poverty in different countries;percentage of people aged 1 year or more living in poverty in different countries;prevalence of poverty among people aged 1 year or more in different countries;proportion of people aged 1 year or more living in poverty in different countries" -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More in Different Houses in Different County Different State With Determined Poverty Status;Population: 1 Years or More, Poverty Status Determined, Different House in Different County Different State;number of people aged 1 year or more in different dwellings in different counties in different states with determined poverty status;number of people aged 1 year or more in different households in different counties in different states with determined poverty status;number of people aged 1 year or more in different houses in different counties in different states with determined poverty status;number of people aged 1 year or more in different residences in different counties in different states with determined poverty status" -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More in Different Houses in Different County Same State and Determined Poverty Status;Population: 1 Years or More, Poverty Status Determined, Different House in Different County Same State;number of people aged 1 year or older in different households in the same county and state, categorized by poverty status;number of people aged 1 year or older in different households in the same county and state, categorized by whether they are living in poverty;number of people aged 1 year or older in different households in the same county and state, categorized by whether they are poor;number of people aged 1 year or older living in different households in the same county in the same state, categorized by poverty status" -Count_Person_1OrMoreYears_PovertyStatusDetermined_DifferentHouseInSameCounty,"Population Aged 1 Year or More Residing in Different Houses in the Same County with Determined Poverty Status;Population: 1 Years or More, Poverty Status Determined, Different House in Same County;number of people aged 1 year or older living in different dwellings in the same county with determined poverty status;number of people aged 1 year or older living in different houses in the same county with determined poverty status;number of people aged 1 year or older living in different residences in the same county with determined poverty status;number of people aged 1 year or older living in multiple households in the same county with determined poverty status" -Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit,"Population Aged 1 Year or More With Rented Occupied Housing Units;Population: 1 Years or More, Renter Occupied, Housing Unit;number of people aged 1 year or older living in rented housing units;number of people aged 1 year or older who are tenants;number of people aged 1 year or older who live in rental properties;number of people aged 1 year or older who rent their homes" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseAbroad,"Population Aged 1 Year or More With Different House Abroad in Adult Correctional Facilities;Population: 1 Years or More, Adult Correctional Facilities, Different House Abroad;number of people aged 1 year or more living in adult correctional facilities abroad;number of people aged 1 year or more living in adult correctional facilities overseas" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCounty,"Population Aged 1 Year or More Residing in Adult Correctional Facilities in a Different House in Different County;Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County;number of people aged 1 year or older living in adult correctional facilities in a different home in a different county;number of people aged 1 year or older living in adult correctional facilities in a different house in a different county;number of people aged 1 year or older living in adult correctional facilities in a different household in a different county;number of people aged 1 year or older living in adult correctional facilities in a different residence in a different county" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More in Adult Correctional Facilities in Different House, Different County and Different State;Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County Different State;adult correctional population aged 1 year or more in different houses, counties, and states;number of adults aged 1 year or more in correctional facilities in different houses, counties, and states;number of people aged 1 year or more in adult correctional facilities in different houses, counties, and states;number of people aged 1 year or older in adult correctional facilities in different houses, counties, and states" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInDifferentCountySameState,"Population Living in Different Houses in Different Counties in Different States in Adult Correctional Facilities For 1 Year or More;Population: 1 Years or More, Adult Correctional Facilities, Different House in Different County Same State;number of people who have lived in different houses in different counties in different states in adult correctional facilities for 1 year or more;number of people who have lived in different residences in different counties in different states in adult correctional facilities for 1 year or more;number of people who have lived in multiple houses in multiple counties in multiple states in adult correctional facilities for 1 year or more;number of people who have lived in multiple residences in multiple counties in multiple states in adult correctional facilities for 1 year or more" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInSameCounty,"Population Aged 1 Year or More in Adult Correctional Facilities in Different Houses in The Same Country;Population: 1 Years or More, Adult Correctional Facilities, Different House in Same County;number of adults aged 1 year or older in correctional facilities in different parts of the country;number of adults aged 1 year or older in jails and prisons in different parts of the country;number of people aged 1 year or more in adult correctional facilities in different states in the same country;the number of people aged 1 year or more in adult correctional facilities in different states in the same country" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_DifferentHouseInTheUS,"Population Aged 1 Year or More Living in Adult Correctional Facilities From Different Houses in The United States;Population: 1 Years or More, Adult Correctional Facilities, Different House in The US;number of people aged 1 year or more in the united states who are living in adult correctional facilities;number of people aged 1 year or more living in adult correctional facilities in the united states;number of people living in adult correctional facilities in the united states who are 1 year of age or older;number of people living in adult correctional facilities in the united states who are aged 1 year or more" -Count_Person_1OrMoreYears_ResidesInAdultCorrectionalFacilities_SameHouse1YearAgo,"Population Aged 1 Year or More in Adults Correctional Facilities;Population: 1 Years or More, Adult Correctional Facilities, Same House 1 Year Ago;number of adults aged 1 year or older who are in prison or jail;number of adults aged 1 year or older who are incarcerated;number of adults in correctional facilities who are 1 year of age or older;number of people aged 1 year or older in adult correctional facilities" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseAbroad,"Population Aged 1 Year or More Residing in Different House Abroad in College or University Student Housing;Population: 1 Years or More, College or University Student Housing, Different House Abroad;number of people aged 1 or older living in a different house abroad in college or university student housing;number of people aged 1 year or older living in college or university student housing outside of their home country;number of students aged 1 year or older living in college or university student housing abroad;number of students aged 1 year or older living in college or university student housing outside of their home country" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCounty,"Population Living in College or University Student Housing in Different Houses in Different Counties For 1 Year or More;Population: 1 Years or More, College or University Student Housing, Different House in Different County;number of people living in college or university student housing in different counties for a year or more;number of people living in college or university student housing in different counties for at least one year;number of people living in college or university student housing in different counties for more than one year;number of people living in college or university student housing in different houses in different counties for one year or more" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More In University Student Housing In Different Houses in Different Counties And States;Population: 1 Years or More, College or University Student Housing, Different House in Different County Different State;count of people aged 1 year or more living in university student housing in different houses in different counties and states;number of people aged 1 year or more living in university student housing in different houses in different counties and states;sum of the number of people aged 1 year or more living in university student housing in different houses in different counties and states;total number of people aged 1 year or more living in university student housing in different houses in different counties and states" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInDifferentCountySameState,"College or University Student Housing in Different Houses in Different Counties in The Same State for 1 Year or More;Population: 1 Years or More, College or University Student Housing, Different House in Different County Same State;college housing in different houses in different counties in the same state for 1 year or more;dormitory housing in different houses in different counties in the same state for 1 year or more;on-campus housing in different houses in different counties in the same state for 1 year or more;student housing in different houses in different counties in the same state for 1 year or more" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInSameCounty,"Population: 1 Years or More, College or University Student Housing, Different House in Same County;University Students With Different Houses in The Same County For 1 Year or More;students who have had at least one address change in the same county in the past year;students who have lived in different houses in the same county for 1 year or more;students who have lived in the same county for at least 1 year but have lived in different houses during that time;students who have moved houses in the same county at least once in the past year" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_DifferentHouseInTheUS,"Population Living in Different Houses in The US in College or University Student Housing For 1 Year or More;Population: 1 Years or More, College or University Student Housing, Different House in The US;number of people in the us who have lived in college or university student housing for 1 year or more;number of people living in college or university student housing in the us for 1 year or more;number of people who have lived in college or university student housing in the us for at least 1 year;number of people who have lived in college or university student housing in the us for more than 1 year" -Count_Person_1OrMoreYears_ResidesInCollegeOrUniversityStudentHousing_SameHouse1YearAgo,"Population Aged 1 Years or More in College or University Student Housing Same House 1 Year Ago;Population: 1 Years or More, College or University Student Housing, Same House 1 Year Ago;the number of people who have lived in the same college or university student housing for 1 year or more is the same as it was 1 year ago;the number of people who have lived in the same college or university student housing for 1 year or more is the same as the number of people who lived in the same housing 1 year ago;the population of college or university student housing that has been occupied for 1 year or more has not changed in the past year;the population of college or university student housing that has been occupied for 1 year or more is unchanged from 1 year ago" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseAbroad,"Population Aged 1 Year or More in Group Quarters in Different Houses Abroad;Population: 1 Years or More, Group Quarters, Different House Abroad;number of people aged 1 year or more living in group quarters in different houses abroad;number of people aged 1 year or more living in group quarters in foreign countries;number of people aged 1 year or more living in group quarters in other countries;number of people aged 1 year or more living in group quarters outside the country" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCounty,"Population Aged 1 Year or More In Group Quarters in Different Houses in Different County;Population: 1 Years or More, Group Quarters, Different House in Different County;number of people aged 1 year or more in group quarters in different houses in different counties;number of people aged 1 year or more living in group quarters in different dwellings in different counties;number of people aged 1 year or more living in group quarters in different homes in different counties;number of people aged 1 year or more living in group quarters in different houses in different counties" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year Or More In Group Quarters With A Different House in A Different County And State;Population: 1 Years or More, Group Quarters, Different House in Different County Different State;people aged 1 year or older living in group quarters with a different address in a different county and state;people aged 1 year or older living in group quarters with a different home in a different county and state;people aged 1 year or older living in group quarters with a different house in a different county and state;people aged 1 year or older living in group quarters with a different residence in a different county and state" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More With Different Houses in Different County Same State In Group Quarters;Population: 1 Years or More, Group Quarters, Different House in Different County Same State;number of people aged 1 year or more living in different houses in the same county in the same state in group quarters;number of people aged 1 year or more who live in different houses in the same county in the same state in group quarters;number of people aged 1 year or more who live in group quarters in the same county in the same state but have different addresses;the population of people aged 1 year or older living in group quarters in different counties in the same state with different houses" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInSameCounty,"Population Aged More Than 1 Year Living In Different Houses in The Same County;Population: 1 Years or More, Group Quarters, Different House in Same County;number of people aged at least 1 year who live in different houses in the same county;number of people aged more than 1 year who live in different houses in the same county;number of people in the same county who are older than 1 year and live in different houses;number of people living in different houses in the same county who are older than 1 year" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_DifferentHouseInTheUS,"Population Aged 1 Years or More Group Quarters in Different House in The US;Population: 1 Years or More, Group Quarters, Different House in The US;the number of people in the us who are 1 year old or older and living in group quarters in a house other than their own;the number of people in the us who are 1 year old or older and living in group quarters in a house that is not their home;the number of people in the us who are 1 year old or older and living in group quarters in a house that is not their primary residence;the number of people living in the us who are 1 year old or older and living in group quarters in a different house" -Count_Person_1OrMoreYears_ResidesInGroupQuarters_SameHouse1YearAgo,"Population Aged 1 Year or More in Group Quarters and Same Houses 1 Year Ago;Population: 1 Years or More, Group Quarters, Same House 1 Year Ago;number of people aged 1 year or older living in group quarters and the same house 1 year ago;number of people aged 1 year or older living in group quarters and the same house in the previous year;number of people aged 1 year or older living in group quarters and the same house last year;number of people aged 1 year or older living in group quarters and the same house the year before" -Count_Person_1OrMoreYears_ResidesInHousingUnit,"Population Aged 1 Year or More in Housing Unit;Population: 1 Years or More, Housing Unit;number of occupants aged 1 year or more in a housing unit;number of people aged 1 year or more in a housing unit;number of residents aged 1 year or more in a housing unit;total number of people in a dwelling unit who are 1 year old or older" -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseAbroad,"Housing Units of Population Aged 1 Year or More in Different Houses Abroad;Population: 1 Years or More, Housing Unit, Different House Abroad;number of housing units occupied by people aged 1 year or more in foreign countries;number of housing units occupied by people aged 1 year or more outside of their home country;number of people aged 1 year or more living in housing units outside of their home country" -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More Residing in Different Houses in Different County Different States;Population: 1 Years or More, Housing Unit, Different House in Different County Different State;number of people aged 1 year or more living in different domiciles in different counties in different states;number of people aged 1 year or more living in different households in different counties in different states;number of people aged 1 year or more living in different houses in different counties in different states;number of people aged 1 year or more living in different residences in different counties in different states" -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More in Housing Units of Different House in Different County Same State;Population: 1 Years or More, Housing Unit, Different House in Different County Same State;population of people aged 1 year or older living in different housing units in different counties in the same state" -Count_Person_1OrMoreYears_ResidesInHousingUnit_DifferentHouseInSameCounty,"Population Aged 1 Year or More Living in Different Houses in The Same County;Population: 1 Years or More, Housing Unit, Different House in Same County;number of people aged 1 year or more living in different houses in the same county;number of people aged 1 year or more living in more than one house in the same county;number of people aged 1 year or more living in multiple houses in the same county;number of people aged 1 year or more living in separate houses in the same county" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseAbroad,"Population Living in Different Houses Abroad in Institutionalized Group Quarters For 1 Year or More;Population: 1 Years or More, Institutionalized Group Quarters, Different House Abroad;people living in group quarters abroad for one year or more;people living in group quarters outside of their home country for one year or more;people living in institutional group quarters abroad for one year or more;people living in institutional group quarters outside of their home country for one year or more" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,"Population Aged 1 Year or More Residing in Different Houses in Different County in Institutionalized Group Quarters;Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County;individuals aged 1 year or older living in different houses in different counties in institutionalized group quarters;number of people aged 1 year or older living in different houses in different counties in institutionalized group quarters;people aged 1 year or older living in different houses in different counties in institutionalized group quarters;population of people aged 1 year or older living in different houses in different counties in institutionalized group quarters" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More in Institutionalized Group Quarters of Different Houses in Different County Different State;Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County Different State;count of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states;number of people aged 1 or more institutionalized in group quarters in different houses in different counties in different states;number of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states;population of people aged 1 year or more in institutionalized group quarters in different houses in different counties in different states" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,"Population Living in Different Houses in Different Counties in Different States in Institutionalized Group Quarters For 1 Year or More;Population: 1 Years or More, Institutionalized Group Quarters, Different House in Different County Same State;the number of people who have lived in different houses in different counties in different states in institutionalized group quarters for 1 year or more;the number of people who have lived in institutionalized group quarters for 1 year or more in multiple states in multiple counties;the number of people who have lived in multiple houses in multiple counties in institutionalized group quarters for 1 year or more;the number of people who have lived in multiple places in multiple states in institutionalized group quarters for 1 year or more" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInSameCounty,"Population Aged 1 Years or More Institutionalized Group Quarters in Different House in Same County;Population: 1 Years or More, Institutionalized Group Quarters, Different House in Same County" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_DifferentHouseInTheUS,"Population Living in Different Houses in The US in Institutionalized Group Quarters For 1 Year or More;Population: 1 Years or More, Institutionalized Group Quarters, Different House in The US;number of people in the us living in institutional group quarters for 1 year or more;number of people in the us living in institutional group quarters for at least 1 year;number of people living in group quarters in the us for 1 year or more;number of people living in the us in group quarters for 1 year or more" -Count_Person_1OrMoreYears_ResidesInInstitutionalizedGroupQuarters_SameHouse1YearAgo,"Population Aged 1 Year or More in Institutionalized Group Quarters and Same House 1 Year Ago;Population: 1 Years or More, Institutionalized Group Quarters, Same House 1 Year Ago;number of people aged 1 year or more living in institutional group quarters and in the same house 1 year ago;number of people aged 1 year or more living in institutional group quarters and in the same house the previous year;people 1 year or older living in group quarters and same domicile 1 year ago;people 1 year or older living in group quarters and same residence 1 year ago" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseAbroad,"Population Living in Different Houses Abroad in Non-Institutionalized Group Quarters For 1 Year or More;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House Abroad;number of people living in different houses abroad in non-institutional group quarters for 1 year or more;number of people living in different houses in foreign countries in non-institutional group quarters for 1 year or more;number of people living in different houses in other countries in non-institutional group quarters for 1 year or more;number of people living in different houses outside of their home country in non-institutional group quarters for 1 year or more" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCounty,"Population With Different Houses in The Same County in Non-institutionalized Group Quarters For 1 Year or More;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County;people who have lived in a non-institutionalized group quarters in the same county for at least 1 year and have moved at least once during that time;people who have lived in different houses in the same county for 1 year or more in non-institutionalized group quarters;people who have lived in the same county for at least 1 year but have lived in different houses during that time and are living in a non-institutionalized group quarters;people who have moved at least once in the past year and are living in a non-institutionalized group quarters in the same county" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountyDifferentState,"Population Aged 1 Year or More Living in Different Houses, Counties and States in Non-Institutionalized Group Quarters;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County Different State;number of people aged 1 year or more living in different houses, counties, and states in non-institutionalized group quarters;number of people aged 1 year or older living in different houses, counties, and states in non-institutionalized group quarters;number of people aged 1 year or older living in group quarters, not institutionalized, by state;number of people aged 1 year or older living in non-institutional group quarters, by state" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More In Non-Institutionalized Group Quarters With A Different House In a Different County In The Same State;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Different County Same State;number of people aged 1 year or more living in non-institutional group quarters with a different address in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different home in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different house in a different county in the same state;number of people aged 1 year or more living in non-institutional group quarters with a different residence in a different county in the same state" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInSameCounty,"Population Aged 1 Year or More in Non-Institutionalized Group Quarters and Different Houses in the Same County;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in Same County;people aged 1 year or older living in non-institutional group quarters and different houses in the same county;the number of people aged 1 year or older living in non-institutional group quarters and different houses in the same county;the number of people in non-institutional group quarters and different houses in the same county who are aged 1 year or older;the population of people aged 1 year or older living in non-institutional group quarters and different houses in the same county" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_DifferentHouseInTheUS,"Population Aged 1 year Or More Residing In Us Non-Institutionalized Group Quarters;Population: 1 Years or More, Noninstitutionalized Group Quarters, Different House in The US;number of people aged 1 year or more living in us group quarters that are not hospitals, prisons, or nursing homes;number of people aged 1 year or more living in us group quarters that are not institutions;number of people aged 1 year or more living in us group quarters that are not places where people are required to live;number of people aged 1 year or more living in us non-institutional group quarters" -Count_Person_1OrMoreYears_ResidesInNoninstitutionalizedGroupQuarters_SameHouse1YearAgo,"Population Aged 1 Year or More in Non-Institutionalized Group Quarters;Population: 1 Years or More, Noninstitutionalized Group Quarters, Same House 1 Year Ago;people aged 1 year or older living in non-institutional group quarters;people who are 1 year old or older living in group quarters that are not hospitals, prisons, or other types of institutions;people who are 1 year old or older living in group quarters that are not institutions;people who are 1 year old or older living in non-institutional group quarters" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseAbroad,"Different Household Aged 18 Years or Less Abroad With Nursing Facilities;Population: 1 Years or More, Nursing Facilities, Different House Abroad;households with people aged 18 or less living abroad in nursing facilities;households with people aged 18 or less living in nursing facilities in other countries;households with people aged 18 or less living in nursing facilities outside of the united states;households with people aged 18 or less living in nursing homes outside of the united states" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCounty,"Population Aged 1 Year or More in Nursing Facilities and Different Houses in Different County;Population: 1 Years or More, Nursing Facilities, Different House in Different County;number of people aged 1 year or older in nursing homes and other types of housing in different counties;number of people aged 1 year or older living in nursing homes and other residential care facilities in different counties;number of people aged 1 year or older living in nursing homes and other types of housing by county;number of people aged 1 year or older living in nursing homes and other types of housing in different counties" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountyDifferentState,"1 number of people living in nursing homes for 1 year or more in different states and counties;Population Living in Living in Different Houses in Different Counties in Different States in Nursing Facilities For 1 Year or More;Population: 1 Years or More, Nursing Facilities, Different House in Different County Different State;number of people living in nursing homes across different states and counties;number of people living in nursing homes for a year or more;number of people living in nursing homes in different parts of the country" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInDifferentCountySameState,"Population Aged 1 Year or More Residing in Nursing Facilities From Different Houses in Different County Same State;Population: 1 Years or More, Nursing Facilities, Different House in Different County Same State;number of people aged 1 year or older living in nursing homes in different counties in the same state;number of people aged 1 year or older residing in nursing homes in different counties in the same state;number of residents aged 1 year or older in nursing homes in different counties in the same state;population of nursing home residents aged 1 year or older in different counties in the same state" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInSameCounty,"Population Aged 1 Year or More in Nursing Facilities and Different Houses in Same County;Population: 1 Years or More, Nursing Facilities, Different House in Same County;number of people aged 1 year or more in nursing facilities and other houses in the same county;number of people aged 1 year or more in nursing facilities and private homes in the same county;number of people aged 1 year or more in nursing homes and other houses in the same county;number of people aged 1 year or more in nursing homes and private homes in the same county" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_DifferentHouseInTheUS,"Population Above 1 Year Old Living in Nursing Facilities with Different Houses in the US;Population: 1 Years or More, Nursing Facilities, Different House in The US;number of people above 1 year old living in nursing facilities in the us;number of people above 1 year old living in nursing homes and other long-term care facilities in the us;number of people above 1 year old living in nursing homes and other residential care facilities in the us;number of people above 1 year old living in nursing homes in the us" -Count_Person_1OrMoreYears_ResidesInNursingFacilities_SameHouse1YearAgo,"Population Aged 1 Year or More in Nursing Facilities in the Same House 1 Year Ago;Population: 1 Years or More, Nursing Facilities, Same House 1 Year Ago;number of people aged 1 year or older living in nursing homes in the same house 1 year ago;number of people aged 1 year or older living in nursing homes in the same house last year;number of people aged 1 year or older living in nursing homes in the same house the previous year;number of people aged 1 year or older living in nursing homes in the same house the year before" -Count_Person_1OrMoreYears_SameHouse1YearAgo,"Population Living in The Same House 1 Year Ago For I Year or More;Population: 1 Years or More, Same House 1 Year Ago;population living in the same house for 1 year or more 1 year ago;population living in the same house for 12 months or more 1 year ago;population living in the same house for at least 1 year 1 year ago;population living in the same house for more than 1 year 1 year ago" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseAbroad,"Population Aged 1 Year or More of Some Other Race in Different House Abroad;Population: 1 Years or More, Some Other Race Alone, Different House Abroad;people aged 1 year or older of a different race in a different household abroad;people aged 1 year or older of a different race living in a different household abroad;people aged 1 year or older of a different race living in a household outside the united states;people aged 1 year or older of a different race living in a household outside their home country" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, Some Other Race Alone, Different House in Different County Different State;Some Other Races Above 1 Year Old with Different House, Counties and States;characteristics of people of other races over 1 year old by house, county, and state;distribution of people of other races over 1 year old by house, county, and state;other races over 1 year old in different houses, counties, and states;people of other races over 1 year old in different households, counties, and states" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInDifferentCountySameState,"Population In Different House In Different County But Same State Aged 1 Year or More;Population: 1 Years or More, Some Other Race Alone, Different House in Different County Same State;number of people living in different houses in different counties but the same state who are 1 year old or older;number of people living in different houses in different counties but the same state who are at least 1 year old, counted together;total number of people living in different houses in different counties but the same state who are at least 1 year old;total number of people living in different houses in different counties but the same state who are at least 1 year old, counted as a whole" -Count_Person_1OrMoreYears_SomeOtherRaceAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, Some Other Race Alone, Different House in Same County;Some Other Race Population Aged 1 Years or More in Different House in Same County;number of people who are 1 year or older and identify as some other race alone living in a different house in the same county;people who are 1 year or older and identify as some other race alone living in a different house in the same county;people who are 1 year or older living in a different house in the same county and identify as some other race alone;population of people who are 1 year or older and identify as some other race alone living in a different house in the same county" -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseAbroad,"Multiracial Population Aged 1 Year and Above Living in Different Houses Abroad;Population: 1 Years or More, Two or More Races, Different House Abroad;multiracial individuals living in different houses in foreign lands;people who are multiracial and are 1 year old or older and live in different homes outside of their home country" -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountyDifferentState,"Multiracial Population Living in Different Houses in Different Counties in Different States for 1 Year or More;Population: 1 Years or More, Two or More Races, Different House in Different County Different State;people of mixed ethnicities living in different houses in different counties in different states for a year or more;people of mixed race living in different houses in different counties in different states for a year or more;people of multiple ethnicities living in different homes in different counties in different states for at least 1 year;people of multiple races living in different homes in different counties in different states for at least 12 months" -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInDifferentCountySameState,"Multiracial Population Above 1 Year Old with Different House in Different County Same State;Population: 1 Years or More, Two or More Races, Different House in Different County Same State;multiracial people living in different counties in the same state who are over 1 year old;people who are multiracial and live in different counties in the same state who are over 1 year old;people who are over 1 year old and are multiracial and live in different houses in the same county;people who are over 1 year old and live in different houses in the same county and are multiracial" -Count_Person_1OrMoreYears_TwoOrMoreRaces_DifferentHouseInSameCounty,"Multiracial in Different Houses in The Same County Aged 1 Year or More;Population: 1 Years or More, Two or More Races, Different House in Same County;people who are multiracial and live in different dwellings in the same county and are 12 months of age or older;people who are multiracial and live in different houses in the same county and are 1 year old or older" -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseAbroad,"Non-Hispanic and White Population Aged 1 Year and Above Living in Different Houses Abroad;Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House Abroad;the number of non-hispanic white people aged 1 year and above living in different houses abroad;the number of non-hispanic white people aged 1 year and above living in foreign countries;the number of non-hispanic white people aged 1 year and above living in international locations;the number of non-hispanic white people aged 1 year and above living in other countries" -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Different County Different State;White Non-Hispanic Population Above 1 Year Old in Different Houses in Different Counties and States;number of white non-hispanic people over the age of 1 in different households in different counties and states;percentage of white non-hispanic people over the age of 1 in different households in different counties and states;white non-hispanic population over 1 year old in different households in different counties and states;white non-hispanic population over the age of 1 in different households in different counties and states" -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Different County Same State;White Non-Hispanics Aged 1 Year or More in Different Houses in Different County Same State;white non-hispanics aged 1 year or older living in different domiciles in the same county in the same state;white non-hispanics aged 1 year or older living in different households in the same county in the same state;white people who are not hispanic and are 1 year old or older living in different houses in the same county in the same state;white people who are not hispanic and are 1 year old or older living in separate homes in the same county in the same state" -Count_Person_1OrMoreYears_WhiteAloneNotHispanicOrLatino_DifferentHouseInSameCounty,"Population: 1 Years or More, White Alone Not Hispanic or Latino, Different House in Same County;White Non Hispanic Population Aged 1 Years or More in Different House in Same County;the number of white people who are not hispanic or latino and who are 1 year old or older who have changed their residence to a different house in the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have moved house within the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have moved to a different house in the same county;the number of white people who are not hispanic or latino and who are 1 year old or older who have relocated to a different house in the same county" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseAbroad,"Population: 1 Years or More, White Alone, Different House Abroad;White Population Aged 1 Year or More With Different Houses Abroad;number of white people aged 1 year or more with different houses abroad;number of white people aged 1 year or more with foreign properties;number of white people aged 1 year or more with homes in more than one country;number of white people aged 1 year or more with multiple homes abroad" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountyDifferentState,"Population: 1 Years or More, White Alone, Different House in Different County Different State;White People Above 1 Year Old in Different Houses, Counties and States;the number of white people above 1 year old in different houses, counties, and states;the percentage of white people above 1 year old in different houses, counties, and states;the proportion of white people above 1 year old in different houses, counties, and states;the share of white people above 1 year old in different houses, counties, and states" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInDifferentCountySameState,"Population: 1 Years or More, White Alone, Different House in Different County Same State;White Population Aged 1 Year or More in Different Houses In The Same State;number of white people aged 1 year or older in different households in the same state;white people aged 1 year or older in different households in the same state, counted;white population in different households in the same state, aged 1 year or older;white population in different households in the same state, aged 1 year or older, counted" -Count_Person_1OrMoreYears_WhiteAlone_DifferentHouseInSameCounty,"Population: 1 Years or More, White Alone, Different House in Same County;White Population Aged 1 Year Or More In Different Houses In the Same County;the number of white people aged 1 year or more living in different dwellings in the same county;the number of white people aged 1 year or more living in different houses in the same county;the number of white people aged 1 year or more living in multiple households in the same county;the number of white people aged 1 year or more living in separate homes in the same county" -Count_Person_20OrMoreYears_Literate_AsAFractionOf_Count_Person_20OrMoreYears,"Population: 20 Years or More, Literate (As Fraction of Count Person 20 or More Years)" -Count_Person_20To34Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_20To34Years_Female,"Population of Females Aged 20 to 34 Years Who Gave Birth In The Past 12 Months;Population: 20 - 34 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 20 To 34 Years Female);number of births to women aged 20 to 34 in the past 12 months;number of women aged 20 to 34 who became mothers in the past 12 months;number of women aged 20 to 34 who gave birth in the past 12 months;number of women aged 20 to 34 who had children in the past 12 months" -Count_Person_20To79Years_Diabetes_AsFractionOf_Count_Person_20To79Years,"Population Aged 20 to 79 Years With Diabetes;Population: 20 - 79 Years, Diabetes (As Fraction of Count Person 20 To 79 Years);the fraction of people aged 20-79 with diabetes;the number of people aged 20-79 with diabetes divided by the total number of people aged 20-79;the percentage of people aged 20-79 with diabetes;the proportion of people aged 20-79 with diabetes" -Count_Person_25OrMoreYears_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Population Aged 25 Years or More With Bachelor's Degree Or Higher;Population: Bachelors Degree or Higher (As Fraction of Count Person 25 or More Years);people aged 25 or older who have a bachelor's degree or higher;people aged 25 or older who have completed a bachelor's degree;people aged 25 or older with a bachelor's degree or higher;the percentage of people aged 25 or older with a bachelor's degree or higher -Count_Person_25OrMoreYears_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears,Population Aged Above 25 Years With Doctorate Degree;Population: Doctorate Degree (As Fraction of Count Person 25 or More Years);number of people aged 25 and older with a doctorate degree;percentage of people aged 25 and older with a doctorate degree;prevalence of people aged 25 and older with a doctorate degree;share of people aged 25 and older with a doctorate degree -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Female,"Female Population in 10th Grade;Population: 10th Grade, Female;the female population of 10th graders;the female student body in 10th grade;the number of girls in 10th grade;the proportion of girls in 10th grade" -Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Male,"Population of Male 10th Graders;Population: 10th Grade, Male;how many 10th grade boys are there?;how many male 10th graders are there?;what is the number of male 10th graders?;what is the population of male 10th graders?" -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Female,"Female Population in 11th Grade;Population: 11th Grade, Female;female population of 11th grade students;female population of 11th graders;female students in 11th grade;number of girls in 11th grade" -Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Male,"Male Population in 11th Grades;Population: 11th Grade, Male;male students in 11th grade;number of 11th grade males;number of boys in 11th grade;number of males in 11th grade" -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Female,"12th Grade Female Population Without Diplomas;Population: 12th Grade No Diploma, Female;female students who have not graduated from high school;females who did not graduate from 12th grade;the female population without a high school diploma;the number of girls who have not completed 12th grade" -Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Male,"Male Population in 12th Grade With No Diplomas;Population: 12th Grade No Diploma, Male;male students in 12th grade who do not have a diploma;number of male students in 12th grade who do not have a diploma;number of male students in 12th grade without a diploma;number of males in 12th grade without a diploma" -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Female,"Female Population In 5th And 6th Grade;Population: 5th And 6th Grade, Female;female population in grades 5 and 6;female students in 5th and 6th grade;girls in 5th and 6th grade;number of girls in 5th and 6th grade" -Count_Person_25OrMoreYears_EducationalAttainment5ThAnd6ThGrade_Male,"Male Population in 5th And 6th Grade;Population: 5th And 6th Grade, Male;male population in 5th grade and 6th grade;male population in grades 5 and 6;male students in 5th and 6th grade;number of boys in 5th and 6th grade" -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Female,"Female Population in 7th And 8th Grade;Population: 7th And 8th Grade, Female;female population in grades 7 and 8;female students in 7th and 8th grade;number of girls in 7th and 8th grade;the number of girls in 7th and 8th grade" -Count_Person_25OrMoreYears_EducationalAttainment7ThAnd8ThGrade_Male,"Male Population in 7th And 8th Grades;Population: 7th And 8th Grade, Male;male student body in 7th and 8th grade;male student population in 7th and 8th grade;number of boys in 7th and 8th grade;number of male students in 7th and 8th grade" -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Female,"1 number of girls in 9th grade;2 female students in 9th grade;3 girls in 9th grade;4 female population of 9th grade students;Female Population in 9th Grade;Population: 9th Grade, Female" -Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Male,"Male Population in 9th Grade;Population: 9th Grade, Male;male 9th grade population;number of boys in 9th grade;number of male 9th graders;number of male students in 9th grade" -Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Female,"Female Population with Associate's Degree;Population: Associates Degree, Female" -Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Male,"Male Population With Associate's Degrees;Population: Associates Degree, Male" -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,"How many women have a bachelor's degree or higher;Number of Females With a Bachelors Degree or Higher;Percentage of females with a bachelor's degree or higher;Population: Bachelors Degree or Higher, Female;The number of women with a bachelor's degree or higher;What is the number of females with a bachelor's degree or higher;What is the percentage of women with a bachelor's degree or higher?;female population with at least bachelors degrees;number of females with bachelors degrees or higher;population of women with bachelors degrees or more" -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,"Number of Males With a Bachelors Degree or Higher;Population: Bachelors Degree or Higher, Male;The number of male college graduates;The number of males who have graduated from college;The number of males with a bachelor's degree or above;The number of men with a bachelor's degree or higher;male population with at least bachelors degrees;men with a bachelor's degree or higher;number of males with bachelors degrees or higher;population of men with bachelors degrees or more;the male population with a bachelor's degree or higher;the number of men with a bachelor's degree or higher;the percentage of men with a bachelor's degree or higher" -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,"Female bachelor's degree holders;How many women have a bachelor's degree?;Number of Females With a Bachelors Degree;Number of women with a bachelor's degree;Population: Bachelors Degree, Female;The number of women with a bachelor's degree;girls with bachelors degrees;number of females with bachelors degrees;population of women with bachelors degrees;the female population with bachelor's degrees;the number of women who have bachelor's degrees;the number of women with bachelor's degrees;the share of women with bachelor's degrees" -Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,"Number of Males With a Bachelors Degree;Population: Bachelors Degree, Male;The number of male bachelor's degree holders;The number of men who have a bachelor's degree;The number of men who have graduated from college with a bachelor's degree;The number of men with a bachelor's degree;boys with bachelors degrees;male bachelor's degree holders;men who have a bachelor's degree;number of males with bachelors degrees;number of men with a bachelor's degree;population of males with a bachelor's degree;population of men with bachelors degrees" -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,"Number of Females With a PhD;Number of PhDs held by women;Number of female PhD holders;Number of women with a PhD;Population: Doctorate Degree, Female;The number of women with a PhD;female doctorate holders;female population with PhD;girls with PhDs;number of females with doctoral degrees;number of women with doctorates;number of women with phds;people women are PhDs;percentage of women with phds;population female with phd;women who are doctors of philosophy;women who have earned doctorates" -Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,"1 Number of men with a PhD;How many men have PhDs?;Number of Males With a PhD;Number of male PhD holders;Number of males with a PhD;Population: Doctorate Degree, Male;The number of men with a PhD;boys with PhDs;male population with PhD;men who are doctors of philosophy;number of males with doctoral degrees;number of men with doctorates;people men are PhDs;population male with phd;the number of men who have completed a doctoral degree;the number of men with phds;the percentage of men who have completed a doctoral program;the percentage of men who have phds" -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Female,"Female Population With Master's Degree;Population: Masters Degree, Female;the number of women with a master's degree;the percentage of women with a master's degree;the proportion of women with a master's degree;the share of women with a master's degree" -Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Male,"Male Population With Master's Degree;Population: Masters Degree, Male;the male population with a master's degree;the percentage of men who have a master's degree;the percentage of men with a master's degree;the proportion of men with a master's degree" -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Female,"Female Population With Uncompleted Schooling;Population: No Schooling Completed, Female;the number of women who have dropped out of school;the number of women who have not completed their education;women who have dropped out of school;women who have not completed their education" -Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Male,"Male Population Who Did Not Complete Schooling;Population: No Schooling Completed, Male;male population who did not complete their education;male population who did not finish school;male population who did not graduate from school;male population who dropped out of school" -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Female,"Female Population in Nursery To 4th Grade;Population: Nursery To 4th Grade, Female;female population in nursery to 4th grade;female students in nursery to 4th grade;girls in nursery to 4th grade;number of females in nursery to 4th grade" -Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Male,"Male Population in Nursery to 4th Grades;Population: Nursery To 4th Grade, Male;number of males in kindergarten through fourth grade;total number of male students in kindergarten through fourth grade" -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Female,"Female Population With Professional School Degrees Education;Population: Professional School Degree, Female;the number of women with professional school degrees;the percentage of women with professional school degrees;the proportion of women with professional school degrees;the share of women with professional school degrees" -Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Male,"Male Population With Professional School Degrees;Population: Professional School Degree, Male;the number of men who have completed professional school;the number of men with professional school degrees;the percentage of men who have professional school degrees;the proportion of men with professional school degrees" -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Female,"Female Population In College for 1 or More Years Without Degrees;Population: Some College 1 or More Years No Degree, Female;number of female college students who have not graduated;number of women in college for one or more years without degrees;the number of women who have been enrolled in college for at least one year but have not graduated;the percentage of women who have been in college for at least one year but do not have a degree" -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Male,"Male Population with Some College Education For 1 Or More Years Without a Degree;Population: Some College 1 or More Years No Degree, Male;men who have attended college for at least one year but do not have a degree;men who have some college credits but no degree;men who have some college education but no degree;men who have some college experience but no degree" -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Female,"Female Population With Less Than 1 Year Of College Education;Population: Some College Less Than 1 Year, Female;the female population with less than one year of college education;the number of women with less than a year of college education;the number of women with less than one year of college education;women with less than one year of college education" -Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Male,"Male Population With Less Than 1 Year of College;Population: Some College Less Than 1 Year, Male;the male population with less than one year of college;the number of males who have less than one year of college education;the percentage of males who have less than one year of college education;the proportion of males who have less than one year of college education" -Count_Person_25OrMoreYears_Female_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,"Female Population Aged 25 Years or More With Bachelor's Degree or Higher;Population: Bachelors Degree or Higher, Female (As Fraction of Count Person 25 or More Years Female);the number of women aged 25 or older who have completed a bachelor's degree or higher;the number of women aged 25 or older with a bachelor's degree or higher;the percentage of women aged 25 or older with a bachelor's degree or higher;the proportion of women aged 25 or older with a bachelor's degree or higher" -Count_Person_25OrMoreYears_Female_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Female,"Female Population Aged 25 or More With a Doctorate Degree;Population: Doctorate Degree, Female (As Fraction of Count Person 25 or More Years Female);female doctoral degree holders aged 25 and up;female doctorate holders over 25;women aged 25 or older with phds;women with doctorate degrees who are 25 years old or older" -Count_Person_25OrMoreYears_Female_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,"Female Population With Master's Degree or Higher;Population: Masters Degree or Higher, Female (As Fraction of Count Person 25 or More Years Female);number of females aged 25 or older with a master's degree divided by the total number of females aged 25 or older;the number of women over 25 with a master's degree divided by the total number of women over 25" -Count_Person_25OrMoreYears_Female_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Female,"Female Population Aged 25 or More Years with Tertiary Education;Population: Tertiary Education, Female (As Fraction of Count Person 25 or More Years Female);females with a tertiary education who are 25 years old or older;the female population with tertiary education;the number of women aged 25 or older who have completed tertiary education;the percentage of women aged 25 or older who have completed tertiary education" -Count_Person_25OrMoreYears_Male_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,"Male Population Aged 25 or More With Bachelor's Degrees or Higher;Population: Bachelors Degree or Higher, Male (As Fraction of Count Person 25 or More Years Male);the number of males aged 25 or older in the united states with bachelor's degrees or higher as a percentage of the total male population aged 25 or older;the percentage of males aged 25 or older in the united states with bachelor's degrees or higher;the proportion of males aged 25 or older in the united states with bachelor's degrees or higher;the proportion of males aged 25 or older in the united states with bachelor's degrees or higher as a percentage of the total male population aged 25 or older" -Count_Person_25OrMoreYears_Male_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Male,"Fraction of Male Population Aged 25 Years Or More With Doctorate Degree;Population: Doctorate Degree, Male (As Fraction of Count Person 25 or More Years Male);number of men aged 25 or older with a doctorate degree, divided by the total number of men aged 25 or older;percentage of men aged 25 or older with a doctorate degree;proportion of men aged 25 or older with a doctorate degree;share of men aged 25 or older with a doctorate degree" -Count_Person_25OrMoreYears_Male_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,"Males Aged 25 or More Year With Masters Degree or Higher;Population: Masters Degree or Higher, Male (As Fraction of Count Person 25 or More Years Male);males 25 and older with a master's degree or higher;men aged 25 and above with a master's degree;men aged 25 or older with a master's degree or higher;men over 25 with a master's degree" -Count_Person_25OrMoreYears_Male_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Male,"Male Population Aged 25 Years or More in Tertiary Education;Population: Tertiary Education, Male (As Fraction of Count Person 25 or More Years Male);men aged 25 or older in tertiary education;number of men aged 25 or older enrolled in college or university;the number of men aged 25 or older in tertiary education;the percentage of men aged 25 or older in tertiary education" -Count_Person_25OrMoreYears_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,"Population Aged 25 Years or More With Masters Degree or Higher;Population: Masters Degree or Higher (As Fraction of Count Person 25 or More Years);number of people aged 25 years or more with a master's degree or higher, expressed as a percentage of the total population;percentage of population aged 25 years or more with a master's degree or higher;proportion of population aged 25 years or more with a master's degree or higher;share of population aged 25 years or more with a master's degree or higher" -Count_Person_25OrMoreYears_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears,Population Aged 25 Years or More in Tertiary Education;Population: Tertiary Education (As Fraction of Count Person 25 or More Years);people aged 25 or older in tertiary education;people aged 25 years or older enrolled in tertiary education;people aged 25 years or older who are pursuing tertiary education;people aged 25 years or older who are tertiary students -Count_Person_25To59Years_Illiterate_AsAFractionOf_Count_Person_25To59Years,"Population: 25 - 59 Years, Illiterate (As Fraction of Count Person 25 To 59 Years)" -Count_Person_25To64Years_EnrolledInEducationOrTraining_AsAFractionOfCount_Person_25To64Years,"Population Aged 25 to 64 Years Enrolled in Education or Training;Population: 25 - 64 Years, Enrolled in Education or Training (As Fraction of Count Person 25 To 64 Years);number of people aged 25 to 64 enrolled in education or training;number of people aged 25 to 64 who are in school or taking classes;number of people aged 25 to 64 who are learning new skills;number of people aged 25 to 64 who are students or trainees" -Count_Person_25To64Years_EnrolledInEducationOrTraining_Female_AsAFractionOfCount_Person_25To64Years_Female,"Female Population Aged 25 to 64 Years Enrolled in Education or Training;Population: 25 - 64 Years, Enrolled in Education or Training, Female (As Fraction of Count Person 25 To 64 Years Female);the number of women aged 25 to 64 who are enrolled in education or training;the percentage of women aged 25 to 64 who are enrolled in education or training;the proportion of women aged 25 to 64 who are enrolled in education or training;the share of women aged 25 to 64 who are enrolled in education or training" -Count_Person_25To64Years_EnrolledInEducationOrTraining_Male_AsAFractionOfCount_Person_25To64Years_Male,"Male Population Aged 25 to 64 Years Enrolled in Education or Training;Population: 25 - 64 Years, Enrolled in Education or Training, Male (As Fraction of Count Person 25 To 64 Years Male);the number of men aged 25 to 64 who are enrolled in education or training;the number of men aged 25 to 64 who are in school or taking classes;the percentage of men aged 25 to 64 who are enrolled in education or training;the proportion of men aged 25 to 64 who are enrolled in education or training" -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_AsAFractionOfCount_Person_25To64Years,"Population Aged 25 to 64 Years With Less Than Primary Education;Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education (As Fraction of Count Person 25 To 64 Years);fraction of people aged 25-64 with less than primary education or primary education and lower secondary education;the number of people aged 25 to 64 who have not completed primary school or have only completed primary school and lower secondary school, expressed as a fraction of the total number of people aged 25 to 64;the percentage of people aged 25 to 64 who have less than a primary education or a primary education and lower secondary education;the proportion of people aged 25 to 64 who have not completed primary school or have only completed primary school and lower secondary school" -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education, Female (As Fraction of Count Person 25 To 64 Years Female);fraction of females aged 25 to 64 with less than primary education or primary and lower secondary education;fraction of females aged 25-64 with less than primary education or primary and lower secondary education;the fraction of females aged 25 to 64 with less than primary education or primary education and lower secondary education, out of all females aged 25 to 64" -Count_Person_25To64Years_LessThanPrimaryEducationOrPrimaryEducationOrLowerSecondaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Male Population Aged 25 to 64 Years With Primary Education;Population: 25 - 64 Years, Less Than Primary Education & Primary Education & Lower Secondary Education, Male (As Fraction of Count Person 25 To 64 Years Male);the number of male adults aged 25 to 64 with a primary education;the number of male adults aged 25 to 64 with a primary school diploma;the number of men aged 25 to 64 who have completed primary education or less;the number of men aged 25 to 64 who have completed primary school" -Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years,"Population Aged 25 to 64 Years Old With Tertiary Education;Population: 25 - 64 Years, Tertiary Education (As Fraction of Count Person 25 To 64 Years);people aged 25 to 64 with a college degree;people aged 25 to 64 with a tertiary education;people aged 25 to 64 with tertiary education;the number of people aged 25 to 64 with tertiary education" -Count_Person_25To64Years_TertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Female Population Aged 25 to 64 Years With Tertiary Education;Population: 25 - 64 Years, Tertiary Education, Female (As Fraction of Count Person 25 To 64 Years Female);females aged 25 to 64 with a university degree;the number of women aged 25 to 64 who have completed tertiary education;women aged 25 to 64 with a college degree;women aged 25 to 64 with a higher education" -Count_Person_25To64Years_TertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Fraction of Male Population Aged 25 to 64 Years Pursuing Tertiary Education;Population: 25 - 64 Years, Tertiary Education, Male (As Fraction of Count Person 25 To 64 Years Male);men aged 25 to 64 enrolled in tertiary education as a percentage of the total male population aged 25 to 64;number of men aged 25 to 64 enrolled in tertiary education divided by the total number of men aged 25 to 64;percentage of men aged 25 to 64 who are enrolled in tertiary education;proportion of men aged 25 to 64 who are pursuing tertiary education" -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_AsAFractionOfCount_Person_25To64Years,"Population Aged 25 to 64 Years With Upper Secondary Education or Higher;Population: 25 - 64 Years, Upper Secondary Education or Higher (As Fraction of Count Person 25 To 64 Years);people aged 25 to 64 with at least upper secondary education;the number of people aged 25 to 64 with at least upper secondary education;the percentage of people aged 25 to 64 with at least upper secondary education;the proportion of people aged 25 to 64 with at least upper secondary education" -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Female_AsAFractionOfCount_Person_25To64Years_Female,"Female Population Aged 25 to 64 Years With Upper Secondary Education or Higher;Population: 25 - 64 Years, Upper Secondary Education or Higher, Female (As Fraction of Count Person 25 To 64 Years Female)" -Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Male_AsAFractionOfCount_Person_25To64Years_Male,"Male Population Aged 25 to 64 Years in Upper Secondary Education or Higher;Population: 25 - 64 Years, Upper Secondary Education or Higher, Male (As Fraction of Count Person 25 To 64 Years Male);the number of men aged 25 to 64 with upper secondary education or higher as a percentage of the total male population in that age group;the percentage of men aged 25 to 64 who have completed at least upper secondary education;the percentage of men aged 25 to 64 who have completed upper secondary education or higher;the proportion of males aged 25 to 64 with upper secondary education or higher" -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_AsAFractionOfCount_Person_25To64Years,"Population Aged 25 to 64 Years With Upper Secondary Education and Post Secondary Non-Tertiary Education;Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education (As Fraction of Count Person 25 To 64 Years);number of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education per 100 people aged 25 to 64 years;percentage of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education;proportion of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education;share of people aged 25 to 64 years with upper secondary education and post-secondary non-tertiary education" -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,"Female Population Aged 25 to 64 Years in Upper Secondary Education and Post Secondary Non-Tertiary Education;Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education, Female (As Fraction of Count Person 25 To 64 Years Female);female participation in upper secondary and post-secondary non-tertiary education;number of women aged 25 to 64 years in upper secondary and post-secondary non-tertiary education;percentage of women aged 25 to 64 years in upper secondary and post-secondary non-tertiary education;women's enrollment in upper secondary and post-secondary non-tertiary education" -Count_Person_25To64Years_UpperSecondaryEducationOrPostSecondaryNonTertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,"Male Population Aged 25 to 64 Years in Upper Secondary Education And Post Secondary Non-Tertiary Education;Population: 25 - 64 Years, Upper Secondary Education & Post Secondary Non Tertiary Education, Male (As Fraction of Count Person 25 To 64 Years Male);men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the number of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the percentage of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education;the proportion of men aged 25 to 64 in upper secondary and post-secondary non-tertiary education" -Count_Person_35To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_35To50Years_Female,"Female Population Aged 35 to 50 Years Births in The Past 12 Months;Population: 35 - 50 Years, Birth in The Past 12 Months, Female (As Fraction of Count Person 35 To 50 Years Female);birth rate among women aged 35 to 50 in the past 12 months;number of babies born to women aged 35 to 50 in the past 12 months;number of births to women aged 35 to 50 in the past 12 months;percentage of women aged 35 to 50 who gave birth in the past 12 months" -Count_Person_3OrMoreYears_Female_EnrolledInSchool,"Female Population Enrolled in School;Population: Female, Enrolled in School;female school enrollment;female student enrollment;number of female students;number of girls enrolled in school" -Count_Person_3OrMoreYears_Male_EnrolledInSchool,"Males Enrolled in School;Population: Male, Enrolled in School;boys in school;guys in class;male students;young men in education" -Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,African Languages Speakers;Population Age 5 or More Speaking African Languages At Home;Population: African Languages;number of people age 5 or older who speak a language from africa at home;number of people age 5 or older who speak a language native to africa at home;number of people age 5 or older who speak african languages at home;number of people age 5 or older who speak an african language at home -Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"Amharic Somali Or Other Afro Asiatic Languages Speakers;Population Age 5 or More Speaking Amharic Somali or Other Afro-Asiatic Languages At Home;Population: Amharic Somali or Other Afro Asiatic Languages;number of people age 5 or older speaking amharic, somali, or other afro-asiatic languages at home;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages as their first language;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages as their primary language;number of people age 5 or older who speak amharic, somali, or other afro-asiatic languages at home" -Count_Person_5OrMoreYears_ArabicSpokenAtHome,Arabic Speakers;Population Age 5 or More Speaking Arabic At Home;Population: Arabic;number of arabic speakers aged 5 or over;number of people aged 5 or over speaking arabic at home;number of people aged 5 or over who speak arabic as their main language;number of people who speak arabic at home aged 5 or over -Count_Person_5OrMoreYears_ArmenianSpokenAtHome,Armenian Speakers;Population Age 5 or More Speaking Armenian At Home;Population: Armenian;number of armenian speakers aged 5 or older;number of people aged 5 or older who speak armenian at home;number of people who speak armenian as their first language at home;number of people who speak armenian as their primary language at home -Count_Person_5OrMoreYears_BengaliSpokenAtHome,Bengali Speakers;Population Age 5 or More Speaking Bengali At Home;Population: Bengali;number of bengali speakers aged 5 or older;number of people aged 5 or older who speak bengali at home;number of people who speak bengali as their first language at home;number of people who speak bengali as their primary language at home -Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,Chinese Incl Mandarin Cantonese Speakers;Population Age 5 or More Speaking Chinese Including Mandarin Cantonese At Home;Population: Chinese Incl Mandarin Cantonese;number of chinese speakers (including mandarin and cantonese) age 5 or older;number of people age 5 or older who speak chinese (including mandarin and cantonese) at home;number of people aged 5 or more who speak chinese (including mandarin and cantonese) at home;number of people who speak chinese (including mandarin and cantonese) at home as their first language -Count_Person_5OrMoreYears_ChineseSpokenAtHome,Chinese Speakers;Population Age 5 or More Speaking Chinese At Home;Population: Chinese;number of chinese speakers age 5 or older;number of people age 5 or older who speak chinese at home;number of people who speak chinese as their first language at home;number of people who speak chinese as their primary language at home -Count_Person_5OrMoreYears_ForeignBorn,Foreign Borns;Population: Foreign Born;immigrants;people who were born in another country;people who were born in another country and now live in the united states;people who were born in other countries -Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,French Creole Speakers;Population Age 5 or More Speaking French Creole At Home;Population: French Creole;the number of people aged 5 or older who speak french creole at home in place name as a percentage of the total population;the percentage of people aged 5 or older who speak french creole at home in place name;the proportion of people aged 5 or older who speak french creole at home in place name;the share of people aged 5 or older who speak french creole at home in place name -Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome,French Incl Cajun Speakers;French Incl Cajuns;Population: French Incl Cajun -Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"French Incl Patois Cajun Speakers;Population Age 5 or More Speaking French Including Patois Cajun At Home;Population: French Incl Patois Cajun;number of people aged 5 or older speaking french, including patois and cajun, at home;number of people aged 5 or older who speak french, including patois and cajun, as their first language at home;number of people aged 5 or older who speak french, including patois and cajun, as their main language at home;number of people aged 5 or older who speak french, including patois and cajun, as their only language at home" -Count_Person_5OrMoreYears_GermanSpokenAtHome,German Speakers;Population Age 5 or More Speaking German At Home;Population: German;the number of people aged 5 or older who speak german at home;the percentage of people aged 5 or older who speak german at home;the proportion of people aged 5 or older who speak german at home;the share of people aged 5 or older who speak german at home -Count_Person_5OrMoreYears_GreekSpokenAtHome,Greek Population;Greek Speakers;Population: Greek;how many people live in greece;the number of people in greece;the number of people living in greece;the population of greece -Count_Person_5OrMoreYears_GujaratiSpokenAtHome,Gujarati Speakers;Population Age 5 or More Speaking Gujarati At Home;Population: Gujarati;number of gujarati speakers age 5 or older;number of people age 5 or older speaking gujarati at home;number of people age 5 or older who speak gujarati as their primary language;number of people who speak gujarati at home and are age 5 or older -Count_Person_5OrMoreYears_HaitianSpokenAtHome,Haitian Speakers;Population Age 5 or More Speaking Haitian At Home;Population: Haitian;number of people aged 5 or older who speak haitian as their first language;number of people aged 5 or older who speak haitian as their primary language;number of people aged 5 or older who speak haitian at home;number of people aged 5 or older who speak haitian creole at home -Count_Person_5OrMoreYears_HebrewSpokenAtHome,Hebrew Speakers;Population Age 5 or More Speaking Hebrew At Home;Population: Hebrew;the number of people age 5 or older who speak hebrew at home in israel;the percentage of people age 5 or older who speak hebrew at home in israel;the proportion of people age 5 or older who speak hebrew at home in israel;the share of people age 5 or older who speak hebrew at home in israel -Count_Person_5OrMoreYears_HindiSpokenAtHome,Hindi Speakers;Population Age 5 or More Speaking Hindu At Home;Population: Hindi;number of hindu speakers age 5 or older;number of people age 5 or older who speak hindu as their first language;number of people age 5 or older who speak hindu at home;population of hindu speakers age 5 or older -Count_Person_5OrMoreYears_HmongSpokenAtHome,"Hmong Speakers;Population Age 5 or More Speaking Hmong At Home;Population: Hmong;hmong speakers at home, 5 and older;hmong speakers at home, 5 years of age and older;hmong speakers at home, age 5 and over;hmong speakers at home, ages 5 and up" -Count_Person_5OrMoreYears_HungarianSpokenAtHome,Hungarian Speakers;Population Age 5 or More Speaking Hungarian At Home;Population: Hungarian;number of hungarian speakers age 5 or older;number of people age 5 or older who speak hungarian at home;number of people in hungary who speak hungarian at home;number of people who speak hungarian as their first language at home -Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"Ilocano Samoan Hawaiian Or Other Austronesian Languages Speakers;Population Age 5 or More Speaking Ilocano Samoan Hawaiian or Other Austronesian Languages At Home;Population: Ilocano Samoan Hawaiian or Other Austronesian Languages;number of people aged 5 or older who speak an austronesian language at home;number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages as their only language;number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages as their primary language;number of people aged 5 or older who speak ilocano, samoan, hawaiian, or other austronesian languages at home" -Count_Person_5OrMoreYears_ItalianSpokenAtHome,Italian Speakers;Population Age 5 or More Speaking Italian At Home;Population: Italian;number of italian speakers in italy;number of people in italy who speak italian at home;percentage of italians who speak italian at home;percentage of the italian population who speak italian at home -Count_Person_5OrMoreYears_JapaneseSpokenAtHome,Japanese Population;Japanese Speakers;Population: Japanese;the japanese population;the number of japanese people;the number of people in japan;the population of japan -Count_Person_5OrMoreYears_KhmerSpokenAtHome,Khmer Speakers;Population Age 5 or More Speaking Khmer At Home;Population: Khmer;khmer as a home language for people age 5 or older;khmer speakers age 5 or older;number of people age 5 or older who speak khmer at home;proportion of people age 5 or older who speak khmer at home -Count_Person_5OrMoreYears_KoreanSpokenAtHome,Korean Speakers;Population Age 5 or More Speaking Korean At Home;Population: Korean;number of korean speakers aged 5 or older in the united states;number of people aged 5 or older in the united states who speak korean as their primary language;number of people aged 5 or older speaking korean at home in the united states;number of people in the united states who speak korean at home and are aged 5 or older -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Language Other Than English Speakers;Population Speaking Language Other Than English;Population: Language Other Than English -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population Aged 5 Years Or More Above the Poverty Level In The Past 12 Months Who Speak Other Languages;Population: 5 Years or More, Language Other Than English, Above Poverty Level in The Past 12 Months;number of people aged 5 years or older who speak a language other than english as their primary language and are above the poverty level in the past 12 months;number of people aged 5 years or older who speak languages other than english and are above the poverty level in the past 12 months;number of people aged 5 years or older who speak other languages and are above the poverty level in the past 12 months;people aged 5 years or older who speak other languages and were above the poverty level in the past 12 months" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,"English Population Aged 5 Years Or More Below Poverty Level In The Past 12 Months;Population: 5 Years or More, Language Other Than English, Below Poverty Level in The Past 12 Months;how many people in england aged 5 years or more lived below the poverty line in the past 12 months?;what percentage of the english population aged 5 years or more lived below the poverty level in the past 12 months?;what proportion of the english population aged 5 years or more lived in poverty in the past 12 months?;what was the poverty rate for the english population aged 5 years or more in the past 12 months?" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ForeignBorn,"Foreign-Born Population Fluent in Other Languages Other Than English;Population: Language Other Than English, Foreign Born;people born in other countries who speak languages other than english;people who were not born in the united states and speak languages other than english" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_Native,"Natives Who Speak Other Languages Other Than English;Population: Language Other Than English, Native;people who are bilingual or multilingual;people who are fluent in languages other than english;people who speak languages other than english as their native language;people who speak more than one language" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_PovertyStatusDetermined,"English Speaking Multilingual Households Aged 5 Years Or More With Determined Poverty Status;Population: 5 Years or More, Language Other Than English, Poverty Status Determined;households that speak english and another language and are 5 years old or older and have been determined to be poor;households that speak english and another language and are 5 years old or older and have been determined to have a low socioeconomic status;households that speak english and another language and are at least 5 years old and have been determined to be in poverty;households that speak english and another language and are at least 5 years old and have been determined to have low income" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,"Population Fluent in Other Languages Other Than English in Adult Correctional Facilities;Population: Language Other Than English, Adult Correctional Facilities;number of adult prisoners who are fluent in languages other than english;number of people in adult correctional facilities who are fluent in languages other than english;number of people in adult correctional facilities who are not fluent in english;number of people who speak languages other than english in adult prisons" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,"College or University Students Speaking Languages Other Than English;Population: Language Other Than English, College or University Student Housing;students who are bilingual;students who are multilingual;students who speak languages other than english;students who speak other languages" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInGroupQuarters,"Natives Who Speak Other Language Other Than English in Group Quarters;Population: Language Other Than English, Group Quarters;people who are not native english speakers living in group quarters;people who speak a language other than english as their first language in group quarters;people who speak a language other than english as their native language in group quarters;people who speak a language other than english as their primary language in group quarters" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,"Population Speaking Languages Other Than English in Institutionalized Group Quarters;Population: Language Other Than English, Institutionalized Group Quarters;number of people speaking languages other than english in group homes;number of people speaking languages other than english in institutional settings;number of people speaking languages other than english in residential facilities;what is the distribution of languages spoken by people in group quarters other than english?" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,"1 number of people speaking languages other than english in non-institutional group quarters;Population Speaking Other languages Other Than English In Non-Institutionalized Group Quarters;Population: Language Other Than English, Noninstitutionalized Group Quarters;number of people speaking languages other than english in non-institutional group quarters;number of people speaking languages other than english in non-institutional housing;number of people speaking languages other than english in non-institutional living arrangements" -Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome_ResidesInNursingFacilities,"Population In Nursing Facilities Fluent in Other Languages Other Than English;Population: Language Other Than English, Nursing Facilities;number of nursing home residents who are not native english speakers;number of people in nursing homes who speak languages other than english;percentage of nursing home residents who are bilingual or multilingual;share of nursing home residents who speak a language other than english as their primary language" -Count_Person_5OrMoreYears_LaotianSpokenAtHome,Laotian Speakers;Population Age 5 or More Speaking Laotian At Home;Population: Laotian;laotian people;laotian population;people living in laos;people of laos -Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"Malayalam Kannada Or Other Dravidian Languages Speakers;Population Age 5 or More Speaking Malayalam Kannada or Other Dravidian Languages At Home;Population: Malayalam Kannada or Other Dravidian Languages;how many people speak malayalam, kannada, or other dravidian languages;number of people speaking malayalam, kannada, or other dravidian languages;number of people who speak malayalam, kannada, or other dravidian languages;population of malayalam, kannada, or other dravidian language speakers" -Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,Mon Khmer Cambodian Speakers;Population Age 5 or More Speaking Mon Khmer Cambodian At Home;Population: Mon Khmer Cambodian;cambodians;people of cambodia;the people of cambodia;the population of cambodia -Count_Person_5OrMoreYears_NavajoSpokenAtHome,Navajo Speakers;Population Age 5 or More Speaking Navajo At Home;Population: Navajo;the number of navajo people;the number of people who are navajo;the number of people who identify as navajo;the population of navajo people -Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"Nepali Marathi Or Other Indic Languages Speakers;Population Age 5 or More Speaking Nepali Marathi or Other Indic Languages At Home;Population: Nepali Marathi or Other Indic Languages;number of people who speak nepali, marathi, or other indic languages;people who speak nepali, marathi, or other indic languages;population of nepali, marathi, or other indic languages;speakers of nepali, marathi, or other indic languages" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome,English Population;English Speakers;Population: Only English -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_AbovePovertyLevelInThePast12Months,"English Speakers Above Poverty Line;Population Aged 5 Years or More Speaking English Only Above Poverty Level in The Past 12 Months;Population: 5 Years or More, Only English, Above Poverty Level in The Past 12 Months;population: 5 years or older, only speaks english, and had an income above the poverty line in the past 12 months" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_BelowPovertyLevelInThePast12Months,"Only English Speakers Below Poverty Line;Population Aged 5 Years or More Speaking Only English and Living Below Poverty Level in The Past 12 Months;Population: 5 Years or More, Only English, Below Poverty Level in The Past 12 Months;number of people aged 5 years or more who speak only english and are living in poverty in the past 12 months;number of people aged 5 years or more who speak only english and are struggling to make ends meet in the past 12 months;number of people aged 5 years or more who speak only english and have a low income in the past 12 months;number of people aged 5 years or more who speak only english and live below the poverty line in the past 12 months" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ForeignBorn,"Foreign-Born Population Fluent in English;Only English Speakers Foreign Born;Population: Only English, Foreign Born;english-speaking foreign-born population;foreign-born population who are fluent in english;foreign-born population who speak english fluently;foreign-born population with english fluency" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_Native,"Native Population That Speaks Only English;Only Native English Speakers;Population: Only English, Native;english-speaking native population;people who only speak english;population that speaks only english as their native language;those who only speak english" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_PovertyStatusDetermined,"Only English Spakers Poverty Status Determined;Population Aged 5 Years or More Speaking Only English With Poverty Status Determined;Population: 5 Years or More, Only English, Poverty Status Determined;number of english-only speakers aged 5 or older with known poverty status;number of english-only speakers aged 5 or older with poverty status determined;number of people aged 5 or older who speak only english and have their poverty status determined;number of people aged 5 or older who speak only english and have their poverty status known" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInAdultCorrectionalFacilities,"Only English Speakers Resides In Adult Correctional Facilities;Population Speaking English in Adult Correctional Facilities;Population: Only English, Adult Correctional Facilities;number of english speakers in adult jails;percentage of english speakers in adult prisons;proportion of english speakers in adult correctional facilities;share of english speakers in adult detention centers" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInCollegeOrUniversityStudentHousing,"Only English Speakers Resides In College Or University Student Housing;Only English Speaking Population In University Student Housing;Population: Only English, College or University Student Housing;english-only population in university student housing;housing for english speakers only in university;only english speakers in university student housing;university student housing for english speakers only" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInGroupQuarters,"Only English Speakers Resides In Group Quarters;Population That Speaks Only English in Group Quarters;Population: Only English, Group Quarters;number of people in group quarters who are english-only speakers;number of people in group quarters who do not speak any other language;number of people in group quarters who speak only english;number of people who speak only english in group quarters" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInInstitutionalizedGroupQuarters,"Institutionalized Group Quarters Speaking Only English;Only English Speakers Resides In Institutionalized Group Quarters;Population: Only English, Institutionalized Group Quarters;english-only institutional group quarters;english-only speakers in group quarters;group quarters where only english is spoken;institutional group quarters where only english is spoken" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNoninstitutionalizedGroupQuarters,"Monolingual English Speaking People Aged 5 Or More Living In Non-institutionalized Group Quarters;Only English Speakers Resides In Noninstitutionalized Group Quarters;Population: Only English, Noninstitutionalized Group Quarters" -Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome_ResidesInNursingFacilities,"Only English Speakers Resides In Nursing Facilities;Population: Only English, Nursing Facilities;Workers in Nursing Facilities Who Only Speak English;english-only nursing home workers;nursing home staff who only speak english;nursing home workers who only speak english;workers in nursing homes who only speak english" -Count_Person_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,Other And Unspecified Languages Population;Population: Other And Unspecified Languages;Unspecified Languages Speakers;languages not categorized;languages not included elsewhere;languages not otherwise specified;languages not specified -Count_Person_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,Other Asian Languages Speakers;Population Age 5 or More Speaking Other Asian Languages At Home;Population: Other Asian Languages;number of people who speak other asian languages;number of speakers of other asian languages;people who speak other asian languages;population of other asian languages -Count_Person_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,Other Indic Languages Speakers;Population Age 5 or More Speaking Other Indic Language At Home;Population: Other Indic Languages;number of people age 5 or older speaking an indic language at home;number of people age 5 or older speaking an indic language at home in the united states;number of people in the united states who speak an indic language at home who are age 5 or older;number of people in the us age 5 or older who speak an indic language at home -Count_Person_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,Other Languages Of Asia Speakers;Population Age 5 or More Speaking Other Languages of Asia At Home;Population: Other Languages of Asia;number of people age 5 or older who speak a language from asia at home;number of people age 5 or older who speak a language of asia at home -Count_Person_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,Other Native Languages Of North America Speakers;Population Age 5 or More Speaking Other Native Languages of North America At Home;Population: Other Native Languages of North America;number of people age 5 or older speaking other native languages of north america at home;number of people age 5 or older who speak languages other than english at home that are native to north america;number of people age 5 or older who speak native languages of north america at home other than english;number of people age 5 or older who speak other native languages of north america at home -Count_Person_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,Other Native North American Languages Speakers;Population Age 5 or More Speaking Other Native North American Languages At Home;Population: Other Native North American Languages;the number of people age 5 or older who speak native north american languages at home in the united states;the number of people who speak native north american languages at home in the united states;the percentage of people age 5 or older who speak native north american languages at home in the united states;the percentage of people who speak native north american languages at home in the united states -Count_Person_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,Other Pacific Island Languages Speakers;Population Age 5 or More Speaking Other Pacific Island Languages At Home;Population: Other Pacific Island Languages;how many people age 5 or older speak other pacific island languages at home?;what is the number of people age 5 or older who speak other pacific island languages at home?;what is the proportion of people age 5 or older who speak other pacific island languages at home?;what percentage of people age 5 or older speak other pacific island languages at home? -Count_Person_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,Other Slavic Language Speakers Aged 50 Years Or More;Other Slavic Languages Speakers;Population: Other Slavic Languages;people who speak a slavic language and are at least 50 years old;people who speak slavic languages and are 50 years old or older;slavic speakers aged 50 and above;slavic speakers who are 50+ -Count_Person_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,Number Of People Speaking Other West Germanic Languages;Other West Germanic Languages Speakers;Population: Other West Germanic Languages;how many people speak languages that are part of the west germanic language family?;how many people speak other west germanic languages?;what is the number of speakers of west germanic languages?;what is the total number of people who speak west germanic languages? -Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,Persian Incl Farsi Dari Speakers;Population Age 5 or More Speaking Persian Including Farsi Dari At Home;Population: Persian Incl Farsi Dari;number of people aged 5 or older speaking persian (farsi and dari) at home;number of people aged 5 or older who speak persian (farsi and dari) as their main language at home;number of people aged 5 or older who speak persian (farsi and dari) as their only language at home;number of people aged 5 or older who speak persian (farsi and dari) at home as a first language -Count_Person_5OrMoreYears_PersianSpokenAtHome,Persian Speakers;Population Age 5 or More Speaking Persian At Home;Population: Persian;number of people aged 5 or older who speak persian at home;number of persian speakers aged 5 or older;percentage of the population aged 5 or older who speak persian;proportion of the population aged 5 or older who speak persian -Count_Person_5OrMoreYears_PolishSpokenAtHome,Polish Speakers;Population Age 5 or More Speaking Polish At Home;Population: Polish;number of people aged 5 or older who speak polish at home;number of people who speak polish as their first language at home;number of people who speak polish as their primary language at home;number of polish speakers aged 5 or older -Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,Population Age 5 or More Speaking Portuguese or Portuguese Creole At Home;Population: Portuguese or Portuguese Creole;Portuguese Or Portuguese Creole Speakers;how many people age 5 or older speak portuguese or portuguese creole at home?;what is the number of people age 5 or older who speak portuguese or portuguese creole at home?;what is the proportion of people age 5 or older who speak portuguese or portuguese creole at home?;what percentage of people age 5 or older speak portuguese or portuguese creole at home? -Count_Person_5OrMoreYears_PortugueseSpokenAtHome,Population Age 5 or More Speaking Portuguese At Home;Population: Portuguese;Portuguese Speakers;number of people age 5 or older who speak portuguese at home;number of people who speak portuguese as their first language at home;number of people who speak portuguese as their primary language at home;number of portuguese speakers age 5 or older -Count_Person_5OrMoreYears_PunjabiSpokenAtHome,Population Age 5 or More Speaking Punjabi At Home;Population: Punjabi;Punjabi Speakers;the number of people aged 5 or older who speak punjabi at home;the percentage of people aged 5 or older who speak punjabi at home;the proportion of people aged 5 or older who speak punjabi at home;the share of people aged 5 or older who speak punjabi at home -Count_Person_5OrMoreYears_ResidesInHousehold,"Population Aged 5 Years or More Households;Population: 5 Years or More, Household;Resides In HouseholdSpeakers;household population, 5 years and older;household size, 5 years and older;household size, including people 5 years of age and older;number of people living in a household, including those 5 years of age and older" -Count_Person_5OrMoreYears_RussianSpokenAtHome,Population Age 5 or More Speaking Russian At Home;Population: Russian;Russian Speakers;number of people aged 5 or older who speak russian at home;number of russian speakers aged 5 or older;percentage of the population aged 5 or older who speak russian at home;proportion of the population aged 5 or older who speak russian at home -Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,Population Age 5 or More Speaking Scandinavian Languages At Home;Population: Scandinavian Languages;Scandinavian Languages Speakers;number of people age 5 or older speaking scandinavian languages as their first language at home;number of people age 5 or older speaking scandinavian languages as their main language at home;number of people age 5 or older speaking scandinavian languages as their native language at home;number of people age 5 or older speaking scandinavian languages at home -Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,Population Age 5 or More Speaking Serbo Croatian At Home;Population: Serbo Croatian;Serbo Croatian Speakers;number of people aged 5 or older who speak serbo-croatian as their first language;number of people aged 5 or older who speak serbo-croatian as their main language;number of people aged 5 or older who speak serbo-croatian as their native language;number of people aged 5 or older who speak serbo-croatian at home -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish or Spanish Creole, Above Poverty Level in The Past 12 Months;Spanish Creole Speakers Aged 5 Years Or more Above Poverty Level in The Past 12 Months;Spanish Or Spanish Creole Speakers Above Poverty Line;the number of spanish creole speakers aged 5 years or more who were not poor in the past 12 months;the percentage of spanish creole speakers aged 5 years or more who were above the poverty level in the past 12 months;the percentage of spanish creole speakers aged 5 years or more who were not living in poverty in the past 12 months;the proportion of spanish creole speakers aged 5 years or more who were not below the poverty level in the past 12 months" -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish or Spanish Creole, Below Poverty Level in The Past 12 Months;Spanish Or Spanish Creole Speakers Below Poverty Line;Spanish or Spanish Creole Speaking Population Aged 5 Years or More Below Poverty Level in The Past 12 Months;the number of spanish or spanish creole speaking people aged 5 years or more who were poor in the past 12 months;the percentage of spanish or spanish creole speaking people aged 5 years or more who were below the poverty level in the past 12 months;the proportion of spanish or spanish creole speaking people aged 5 years or more who were living in poverty in the past 12 months;what percentage of spanish or spanish creole speakers aged 5 years or more were below the poverty level in the past 12 months?" -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_ForeignBorn,"Foreign Born Population Age 5 or More Speaking Spanish or Spanish Creole At Home;Population: Spanish or Spanish Creole, Foreign Born;Spanish Or Spanish Creole Speakers Foreign Born;the number of foreign-born people age 5 or older who speak spanish or spanish creole at home in the us;the number of foreign-born people age 5 or older who speak spanish or spanish creole at home in the usa;the number of people born in another country who are 5 years old or older and speak spanish or spanish creole at home in the united states;the number of people who were born in another country and are 5 years old or older and speak spanish or spanish creole at home in america" -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_Native,"Native Population Age 5 or More Speaking Spanish or Spanish Creole At Home;Population: Spanish or Spanish Creole, Native;Spanish Or Spanish Creole Speakers Native;the number of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older, expressed as a percentage of the total population;the number of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older, expressed as a proportion of the total population;the percentage of people in the united states who speak spanish or spanish creole at home, who are 5 years of age or older;the proportion of the population of the united states who speak spanish or spanish creole at home, who are 5 years of age or older" -Count_Person_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome_PovertyStatusDetermined,"Population Age 5 Years Or More With Determined Poverty Status Speaking Spanish At Home;Population: 5 Years or More, Spanish or Spanish Creole, Poverty Status Determined;Spanish Or Spanish Creole Speakers Poverty Status Determined;the number of people aged 5 and older who speak spanish at home and have been designated as low-income;the number of people aged 5 and older who speak spanish at home and have been determined to be in poverty;the number of people aged 5 or older who speak spanish at home and have been determined to be in poverty;the number of people aged 5 or older who speak spanish at home and have low income" -Count_Person_5OrMoreYears_SpanishSpokenAtHome,Population: Spanish;Spanish Population;Spanish Speakers -Count_Person_5OrMoreYears_SpanishSpokenAtHome_AbovePovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish, Above Poverty Level in The Past 12 Months;Spanish Speakers Above Poverty Line;Spanish Speaking Population Aged 5 Years And Above Living Above Poverty Level in The Past 12 Months;the number of spanish-speaking people aged 5 and older who were not experiencing economic hardship in the past 12 months;the number of spanish-speaking people aged 5 and older who were not struggling to make ends meet in the past 12 months;the percentage of spanish speakers aged 5 years and above living above the poverty level in the past 12 months;what percentage of spanish-speaking people aged 5 and above lived above the poverty level in the past 12 months?" -Count_Person_5OrMoreYears_SpanishSpokenAtHome_BelowPovertyLevelInThePast12Months,"Population: 5 Years or More, Spanish, Below Poverty Level in The Past 12 Months;Spanish Speakers Below Poverty Line;Spanish Speaking Population Aged 5 Years or More Below Poverty Level in The Past 12 Months;what percentage of spanish-speaking people aged 5 or older had an income below the poverty line in the past 12 months;what percentage of spanish-speaking people aged 5 or older lived below the poverty line in the past 12 months;what percentage of spanish-speaking people aged 5 or older were living in poverty in the past 12 months;what percentage of spanish-speaking people aged 5 or older were poor in the past 12 months" -Count_Person_5OrMoreYears_SpanishSpokenAtHome_ForeignBorn,"Foreign Born Population Age 5 or More Speaking Spanish At Home;Population: Spanish, Foreign Born;Spanish Speakers Foreign Born;what percent of foreign-born people in the united states speak spanish at home;what percent of the foreign-born population in the united states speaks spanish at home;what percentage of foreign-born people in the united states speak spanish at home;what percentage of the foreign-born population in the united states speaks spanish at home" -Count_Person_5OrMoreYears_SpanishSpokenAtHome_Native,"Native Spanish Speakers;Population: Spanish, Native;Spanish Speakers Native;hablantes nativos de español" -Count_Person_5OrMoreYears_SpanishSpokenAtHome_PovertyStatusDetermined,"Population: 5 Years or More, Spanish, Poverty Status Determined;Spanish Speakers Poverty Status Determined;Spanish Speaking Population Aged 5 Years And Above with Determined Poverty Status;spanish-speaking people aged 5 and older who are considered to be living in poverty;spanish-speaking people aged 5 and older who are considered to be low-income;spanish-speaking people aged 5 and older who are living below the poverty line;spanish-speaking people aged 5 and older who are struggling to make ends meet" -Count_Person_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,Population Age 5 or More Speaking Swahili or Other Languages of Central Eastern And Southern Africa At Home;Population: Swahili or Other Languages of Central Eastern And Southern Africa;Swahili Or Other Languages Speakers Of Central Eastern And Southern Africa;the number of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home;the percentage of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home;the prevalence of swahili or other languages of central eastern and southern africa as a home language among people aged 5 or more;the proportion of people aged 5 or more who speak swahili or other languages of central eastern and southern africa at home -Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,Population Age 5 or More Speaking Tagalog And Filipino At Home;Population: Tagalog Incl Filipino;Tagalog Incl Filipino Speakers;number of people aged 5 or older who speak tagalog and filipino as their first language at home;number of people aged 5 or older who speak tagalog and filipino as their main language at home;number of people aged 5 or older who speak tagalog and filipino as their native language at home;number of people aged 5 or older who speak tagalog and filipino at home -Count_Person_5OrMoreYears_TagalogSpokenAtHome,Population Age 5 or More Speaking Tagalog Speaking At Home;Population: Tagalog;Tagalog Speakers;how many people age 5 or older speak tagalog as their primary language?;how many people age 5 or older speak tagalog at home?;what is the number of people age 5 or older who speak tagalog as their primary language?;what is the number of people age 5 or older who speak tagalog at home? -Count_Person_5OrMoreYears_TamilSpokenAtHome,Population Age 5 or More Speaking Tamil At Home;Population: Tamil;Tamil Speakers;number of people age 5 or older speaking tamil at home in the united states;number of people in the united states aged 5 or older who speak tamil at home;number of people in the united states who speak tamil at home and are aged 5 or older;number of speakers of tamil at home in the united states aged 5 or older -Count_Person_5OrMoreYears_TeluguSpokenAtHome,Population Age 5 or More Speaking Telugu At Home;Population: Telugu;Telugu Speakers;number of people age 5 or older in the us who speak telugu at home;number of people age 5 or older speaking telugu at home in the united states;number of people in the us who speak telugu at home and are age 5 or older;number of telugu speakers age 5 or older in the us -Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,Population Age 5 or More Speaking Other Tai Kadai Languages At Home;Population: Thai Lao or Other Tai Kadai Languages;Thai Lao Or Other Tai Kadai Languages Speakers;number of people age 5 or older speaking tai kadai languages at home;number of people age 5 or older who speak tai kadai languages as their primary language at home;number of people age 5 or older who speak tai kadai languages at home;number of people age 5 or older who use tai kadai languages at home -Count_Person_5OrMoreYears_ThaiSpokenAtHome,Population Age 5 or More Speaking Thai At Home;Population: Thai;Thai Speakers;number of people in the united states age 5 or older who speak thai at home;number of people in the us who speak thai as their first language at home;number of thai speakers in the united states age 5 or older;number of thai-speaking people in the us age 5 or older -Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,Population Age 5 or More Speaking Ukrainian or Other Slavic Languages At Home;Population: Ukrainian or Other Slavic Languages;Ukrainian Or Other Slavic Languages Speakers;the number of people aged 5 or older who speak ukrainian or other slavic languages at home;the percentage of people aged 5 or older who speak ukrainian or other slavic languages at home;the proportion of people aged 5 or older who speak ukrainian or other slavic languages at home;the share of people aged 5 or older who speak ukrainian or other slavic languages at home -Count_Person_5OrMoreYears_UrduSpokenAtHome,Population Age 5 or More Speaking Urdu At Home;Population: Urdu;Urdu Speakers;number of people age 5 or over speaking urdu at home in the united states;number of people in the united states who speak urdu at home and are 5 years of age or older;number of people in the us who speak urdu at home and are at least 5 years old;number of people who speak urdu at home in the us who are 5 years old or older -Count_Person_5OrMoreYears_VietnameseSpokenAtHome,Population Age 5 or More Speaking Vietnamese At Home;Population: Vietnamese;Vietnamese Speakers;number of people aged 5 or older who speak vietnamese at home;number of people in the united states 5 years of age or older who speak vietnamese at home;number of people in the us who speak vietnamese at home as their first language;number of vietnamese speakers in the united states who are 5 years of age or older -Count_Person_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,Population Age 5 or More Speaking ther West Germanic Languages At Home;Population: Yiddish Pennsylvania Dutch or Other West Germanic Languages;Yiddish Pennsylvania Dutch Or Other West Germanic Languages Speakers;number of people aged 5 or older who speak a west germanic language as their first language;number of people aged 5 or older who speak a west germanic language as their main language;number of people aged 5 or older who speak a west germanic language at home;number of people aged 5 or older who speak west germanic languages at home -Count_Person_5OrMoreYears_YiddishSpokenAtHome,"Population Age 5 or More Speaking Yiddish At Home;Population: Yiddish;Yiddish Speakers;yiddish speakers at home, 5 years of age and older;yiddish speakers at home, age 5 and over;yiddish-speaking population, 5 years of age and older;yiddish-speaking population, age 5 and over" -Count_Person_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"Population: Yoruba Twi Igbo or Other Languages of Western Africa;Yoruba Twi Igbo Or Other Languages Of Western Africa Speakers;Yoruba Twi Igbo or Other Languages of Western Africa At Home;yoruba, twi, igbo, or other languages of west africa spoken at home;yoruba, twi, igbo, or other west african languages spoken at home;yoruba, twi, igbo, or other west african languages spoken in the home;yoruba, twi, igbo, or other west african languages spoken in the household" -Count_Person_60OrMoreYears_Illiterate_AsAFractionOf_Count_Person_60OrMoreYears,"Population: 60 Years or More, Illiterate (As Fraction of Count Person 60 or More Years)" -Count_Person_65OrMoreYears_Female_ResidesInNursingFacilities,"Female Population Aged 65 Years Or More In Nursing Facilities;Population: 65 Years or More, Female, Nursing Facilities;female nursing home population aged 65+;female residents of nursing homes aged 65+;number of women aged 65 or older in nursing homes;women aged 65+ in nursing homes" -Count_Person_65OrMoreYears_Male_ResidesInNursingFacilities,"Males Aged 65 Years or More in Nursing Facilities;Population: 65 Years or More, Male, Nursing Facilities;elderly men in nursing homes;male nursing home residents aged 65 and older;men aged 65 and older in nursing homes;older men in nursing homes" -Count_Person_7To14Years_Employed_AsFractionOf_Count_Person_7To14Years,"Employed Population Aged 7 to 14 Years;Population: 7 - 14 Years, Employed (As Fraction of Count Person 7 To 14 Years);number of children aged 7 to 14 who have jobs;number of kids aged 7 to 14 who are working;number of people aged 7 to 14 who are employed;number of youngsters aged 7 to 14 who are in the workforce" -Count_Person_7To14Years_Female_Employed_AsFractionOf_Count_Person_7To14Years_Female,"Employed Female Population Aged 7 to 14 Years;Population: 7 - 14 Years, Employed, Female (As Fraction of Count Person 7 To 14 Years Female);number of employed females aged 7 to 14;number of employed girls aged 7 to 14;number of female employees aged 7 to 14;number of female workers aged 7 to 14" -Count_Person_7To14Years_Male_Employed_AsFractionOf_Count_Person_7To14Years_Male,"Male Population Aged 7 to 14 Years Who are Employed;Population: 7 - 14 Years, Employed, Male (As Fraction of Count Person 7 To 14 Years Male);employed males aged 7 to 14;male employees aged 7 to 14;males aged 7 to 14 who are employed;number of employed males aged 7 to 14" -Count_Person_85OrMoreYears_Female,"Female Population Above 85 Years;Population: 85 Years or More, Female" -Count_Person_85OrMoreYears_Male,"Males Aged 85 Years Or More;Population: 85 Years or More, Male" -Count_Person_Aadhaar_Enrolled,Total population enrolled for Aadhaar;aadhaar enrollment -Count_Person_AbovePovertyLevelInThePast12Months,How many people were above the poverty line in the past 12 months;How many residents were above the poverty line in the last 12 months;Number of People Who Are Above Poverty Level Status in the Past 12 Months;Number of people who are Above Poverty Level Status in The Past 12 Months;Number of people who haven't been living in poverty in the past year;People who have been financially stable in the past year;Population: Above Poverty Level in The Past 12 Months;Quantity of individuals who were not living in poverty;The number of people who have been able to meet their basic needs in the past year;The number of people who were not poor in the past 12 months;the number of people who are not considered poor in the past 12 months;the number of people who are not living in poverty in the past 12 months;the number of people who were not living in a state of poverty in the past 12 months;the number of people who were not living in poverty in the past 12 months -Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Amount of American Indian or Alaska Native individuals who were not living in poverty in the past year;How many American Indian or Alaska Native individuals were not living in poverty in the past year;Number of Native American People Who Are Above Poverty Level Status in the Past Year;Number of individuals who were above poverty line in last 12 months and are American Indian or Alaska Native;Number of people who are Above Poverty Level Status in The Past 12 Months and who are American Indian or Alaska Native Alone;People who were financially stable and are American Indian or Alaska Native in the past year;Population: Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native individuals who have been able to meet their basic needs in the past year;what percentage of native americans had an income above the poverty line in the past year?;what percentage of native americans were not considered poor in the past year?;what percentage of native americans were not living in poverty in the past year?;what percentage of native americans were not low-income in the past year?" -Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,"Amount of Asian individuals who were above poverty line in last 12 months;How many Asian individuals were not living in poverty in the past year;Number of Asian individuals who were not living in poverty in the past year;Number of Asians Who Are Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Asian Alone;People who were financially stable and are Asian in the past year;Population: Above Poverty Level in The Past 12 Months, Asian Alone;The number of Asian individuals who have been able to meet their basic needs in the past year;The number of Asian people who were above the poverty level in the past 12 months;how many asians were not living in poverty last year?;what is the percentage of asians who were not poor last year?;what is the poverty rate for asians last year?;what percentage of asians were not living in poverty last year?" -Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Amount of Black or African American individuals who were above poverty line in last 12 months;How many Black or African American individuals were not living in poverty in the past year;Number of African Americans Who Are Above Poverty Level Status in the Past Year;Number of Black or African American individuals who were not living in poverty in the past year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Black or African American Alone;People who were financially stable and are Black or African American in the past year;Population: Above Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American individuals who have been able to meet their basic needs in the past year;The number of Black or African Americans who were above the poverty line in the past 12 months;The number of Black or African Americans who were not experiencing financial hardship in the past 12 months;The number of Black or African Americans who were not poor in the past 12 months;The number of Black or African Americans who were not struggling to make ends meet in the past 12 months;how many african americans were not living in poverty last year?;what percentage of african americans were above the poverty line last year?;what percentage of african americans were not poor last year?;what was the poverty rate for african americans last year?" -Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"Amount of Hispanic or Latino individuals who were above poverty line in last 12 months;How many Hispanic or Latino individuals were not living in poverty in the past year.;Number of Hispanic or Latino individuals who were not living in poverty in the past year;Number of Hispanics Who Are Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Hispanic or Latino;People who were financially stable and are Hispanic or Latino in the past year;Population: Above Poverty Level in The Past 12 Months, Hispanic or Latino;The number of Hispanic or Latino individuals who have been able to meet their basic needs in the past year;how many hispanics were above the poverty line last year?;how many hispanics were not in poverty last year?;how many hispanics were not living in poverty last year?;what is the poverty rate for hispanics last year?;what percentage of hispanics were not in poverty last year?;what percentage of hispanics were not living in poverty last year?;what was the poverty rate for hispanics last year?" -Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Amount of Native Hawaiian or Other Pacific Islander individuals who were above poverty line in last 12 months;How many Native Hawaiian or Other Pacific Islander individuals were not living in poverty in the past year.;Number of Native Hawaiian or Other Pacific Islander individuals who were not living in poverty in the past year;Number of People Who Are Above Poverty Level Status in the Last Year Who Are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone;People who were financially stable and are Native Hawaiian or Other Pacific Islander in the past year;Population: Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;The number of Native Hawaiian or Other Pacific Islander Alone people who were above poverty level status in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were above the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not below the poverty level in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not living in poverty in the past 12 months;The number of Native Hawaiian or Other Pacific Islander Alone people who were not poor in the past 12 months;The number of Native Hawaiian or Other Pacific Islander individuals who have been able to meet their basic needs in the past year;the number of native hawaiian or other pacific islander alone people who were above the poverty line in the last year;the number of native hawaiian or other pacific islander alone people who were not living in low-income households in the last year;the number of native hawaiian or other pacific islander alone people who were not living in poverty in the last year;the number of native hawaiian or other pacific islander alone people who were not poor in the last year" -Count_Person_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of People Who Are Some Other Race Alone and Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Some Other Race Alone;Population: Above Poverty Level in The Past 12 Months, Some Other Race Alone;how many people of other races were not poor in the past year?;number of people who identify as a race other than white and are not in poverty in the past year;what is the number of people of other races who were not below the poverty line in the past year?;what is the number of people of other races who were not impoverished in the past year?" -Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"How many people are above the poverty line and are multiracial;How many people are above the poverty line and identify as two or more races;Number of Multi Racial People Who Are Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are Two or More Races;Number of people who are above the poverty level in the past year and who are of multiple races;Population: Above Poverty Level in The Past 12 Months, Two or More Races;The number of people who are above the poverty level and are multiracial in the past 12 months;What is the number of people who are above the poverty line and identify as more than one race;the number of multi-racial people who were not below the poverty level in the past year;what percentage of multi-racial people had an income above the poverty level in the past year?;what percentage of multi-racial people were above the poverty line in the past year?;what percentage of multi-racial people were not poor in the past year?" -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,"Number of White People Who Are Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are White Alone;Number of white people above poverty level in the past 12 months;Population: Above Poverty Level in The Past 12 Months, White Alone;The number of people who are white and not poor in the past 12 months;The number of white people who are above the poverty level in the past 12 months;The number of white people who are not below the poverty level in the past 12 months;The number of white people who are not poor in the past 12 months;how many white people were not below the poverty line in the past year?;what percentage of white people were not below the poverty line in the past year?;what was the number of white people who were not below the poverty line in the past year?;what was the percentage of white people who were not below the poverty line in the past year?" -Count_Person_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of Non Hispanic White People Who Are Above Poverty Level Status in the Past Year;Number of people who are Above Poverty Level Status in The Past 12 Months and who are White Alone Not Hispanic or Latino;Population: Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of white people who are not Hispanic or Latino and who were above the poverty level in the past 12 months;The number of white people who are not Hispanic or Latino and who were not below the poverty line in the past 12 months;The number of white people who are not Hispanic or Latino and who were not poor in the past 12 months;how many non-hispanic white people were not poor in the past year?;what percentage of non-hispanic white people were above the poverty line in the past year?;what proportion of non-hispanic white people were not living in poverty in the past year?;what was the percentage of non-hispanic white people who were not poor in the past year?" -Count_Person_AmbulatoryDifficulty,Number of People Who Have Ambulatory Difficulty;Number of people who have Ambulatory Difficulty;Number of people who have difficulty getting around;Number of people who have trouble walking;Number of people with difficulty walking;Population: Ambulatory Difficulty;The number of people who have difficulty walking;the number of people who have difficulty getting around;the number of people who have difficulty walking;the number of people who have difficulty with their mobility;the number of people who have mobility issues -Count_Person_AmericanIndianAndAlaskaNativeAlone,Number of People Who Are American Indian and Alaska Native Alone;Number of people who are American Indian and Alaska Native Alone;Population: American Indian and Alaska Native Alone;number of american indian and alaska native people;number of people who are american indian and alaska native only;population of american indian and alaska native people;population of american indians and alaska natives -Count_Person_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,American Indian and Alaska Native population;Number of People Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of people who are American Indian And Alaska Native Alone or In Combination With One or More Other Races;Number of people who are American Indian or Alaska Native alone or in combination with one or more other races;Population: American Indian And Alaska Native Alone or In Combination With One or More Other Races;The number of American Indians and Alaska Natives;The number of people who are American Indian and Alaska Native alone or in combination with one or more other races;The number of people who are American Indian or Alaska Native;american indian and alaska native demographics;american indian and alaska native population;how many people are american indian or alaska native?;what is the number of people who are american indian or alaska native -Count_Person_AmericanIndianOrAlaskaNativeAlone,Number of People Who Are American Indian or Alaska Native Alone;Number of people who are American Indian or Alaska Native Alone;Population: American Indian or Alaska Native Alone;number of people who are american indian or alaska native alone;the number of people who are american indian or alaska native only;the number of people who are exclusively american indian or alaska native;the number of people who are solely american indian or alaska native -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,"How many American Indian or Alaska Native people are in adult correctional facilities?;Number of American Indian or Alaska Native Alone people in adult correctional facilities;Number of American Indian or Alaska Native Alone people incarcerated;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Adult Correctional Facilities;Number of people who are American Indian or Alaska Native Alone and who are in Adult Correctional Facilities;Population: American Indian or Alaska Native Alone, Adult Correctional Facilities;The number of American Indian and Alaska Native people in adult correctional facilities;The number of American Indian or Alaska Native people in adult correctional facilities;how many american indian or alaska native people are incarcerated?;how many american indian or alaska native people live in adult correctional facilities?;what is the number of american indian or alaska native people in adult correctional facilities?;what is the population of american indian or alaska native people in adult correctional facilities?" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of American Indian or Alaska Native students in college or university dorms;Number of American Indian or Alaska Native students in college or university residence halls;Number of American Indian or Alaska Native students living in college or university student housing;Number of American Indian or Alaska Native students living on campus;Number of People Who Are American Indian or Alaska Native Alone and Who Live in College or University Student Housing;Number of people who are American Indian or Alaska Native Alone and who are in College or University Student Housing;Population: American Indian or Alaska Native Alone, College or University Student Housing;number of american indian or alaska native students living in college or university student housing;number of american indian or alaska native students living in dormitories;number of american indian or alaska native students living in residence halls;number of american indian or alaska native students living on campus" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,"How many American Indians or Alaska Natives are living in group quarters?;Number of American Indians and Alaska Natives in group quarters;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Group Quarters;Number of people who are American Indian or Alaska Native Alone and who are in Group Quarters;Population: American Indian or Alaska Native Alone, Group Quarters;The number of American Indian or Alaska Native people living in group quarters;number of american indian or alaska native people living in group quarters;number of american indian or alaska native people living in group quarters, excluding those living in households;the number of american indians or alaska natives living in group quarters;the number of american indians or alaska natives living in group quarters, excluding those living in nursing homes, hospitals, or other long-term care facilities" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,"Number of American Indian or Alaska Native Alone people in Institutionalized Group Quarters;Number of American Indian or Alaska Native Alone people in group quarters who are institutionalized;Number of American Indian or Alaska Native Alone people institutionalized in group quarters;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Institutionalized in Group Quarters;Number of people who are American Indian or Alaska Native Alone and who are in Institutionalized in Group Quarters;Population: American Indian or Alaska Native Alone, Institutionalized Group Quarters;The number of American Indian or Alaska Native Alone people who are institutionalized in group quarters;number of american indian or alaska native people living in group care settings;number of american indian or alaska native people living in group living arrangements;number of american indian or alaska native people living in group quarters or institutionalized;number of american indian or alaska native people living in institutional settings" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,"Number of American Indian or Alaska Native youth in juvenile detention centers;Number of American Indian or Alaska Native youth in juvenile facilities;Number of American Indian or Alaska Natives in juvenile facilities;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Juvenile Facilities;Number of people who are American Indian or Alaska Native Alone and who are Juvenile Facilities;Population: American Indian or Alaska Native Alone, Juvenile Facilities;The number of American Indian or Alaska Natives in juvenile facilities;the number of american indian or alaska native juveniles in juvenile facilities;the number of american indian or alaska native youth in juvenile facilities;the number of american indian or alaska native youth who are in detention centers;the number of american indian or alaska native youth who are in the juvenile justice system" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,"How many American Indian or Alaska Natives are living in military barracks;How many American Indian or Alaska Natives are living in military dormitories;How many American Indian or Alaska Natives are living in military housing;How many American Indian or Alaska Natives are living in military vessels;How many American Indians or Alaska Natives are living in military quarters or on military ships;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Military Quarters or Military Ships;Number of people who are American Indian or Alaska Native Alone and who are in Military Quarters or Military Ships;Population: American Indian or Alaska Native Alone, Military Quarters or Military Ships;how many american indian or alaska natives live in military quarters or military ships?;number of american indian or alaska natives living in military quarters or military ships;the number of american indian or alaska natives living in military quarters or military ships;what is the number of american indian or alaska natives living in military quarters or military ships?" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of American Indians or Alaska Natives living in group quarters that are not correctional facilities;Number of American Indians or Alaska Natives living in group quarters that are not nursing homes, hospitals, or prisons;Number of American Indians or Alaska Natives living in group quarters that are not residential treatment centers;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Noninstitutionalized Group Quarters;Number of people who are American Indian or Alaska Native Alone and who are in Noninstitutionalized in Group Quarters;Population: American Indian or Alaska Native Alone, Noninstitutionalized Group Quarters;number of american indian or alaska native people living in group quarters other than nursing homes, hospitals, or correctional facilities;number of american indian or alaska native people living in group quarters that are not government-run facilities;number of american indian or alaska native people living in group quarters that are not hospitals, prisons, or nursing homes;number of american indian or alaska native people living in group quarters that are not run by the government" -Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,"How many American Indian or Alaska Native Alone people are in Nursing Facilities?;How many American Indian or Alaska Native people are in nursing facilities?;Number of People Who Are American Indian or Alaska Native Alone and Who Live in Nursing Facilities;Number of people who are American Indian or Alaska Native Alone and who are in Nursing Facilities;Population: American Indian or Alaska Native Alone, Nursing Facilities;The number of American Indian or Alaska Native Alone people in nursing facilities;how many american indian or alaska native people are in nursing facilities?;how many american indian or alaska native people live in nursing facilities?;what is the number of american indian or alaska native people who are in nursing facilities?;what is the number of american indian or alaska native people who live in nursing facilities?" -Count_Person_AsianAlone,Asian alone population;Asian population;Number of People Who Are Asian Alone;Number of people who are Asian Alone;Population of people who are Asian alone;Population: Asian Alone;The number of Asian-alone people in the United States;the population of people who identify as asian alone -Count_Person_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people identify as Asian alone or in combination with one or more other races?;How many people in the United States identify as Asian, alone or in combination with one or more other races?;Number of People Who Are Asian Alone or in Combination With One or More Other Races;Number of people who are Asian Alone or In Combination With One or More Other Races;Population: Asian Alone or In Combination With One or More Other Races;The number of people who are Asian alone or in combination with one or more other races;The total number of people who are Asian;how many people in the united states are of asian descent?;number of people who identify as asian in combination with one or more other races;the number of people who are of asian descent;the number of people who identify as asian alone, or in combination with one or more other races" -Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,"Number of Asian people in adult correctional facilities;Number of People Who Are Asian Alone and Who Live in Adult Correctional Facilities;Number of people who are Asian Alone and who are in Adult Correctional Facilities;Population: Asian Alone, Adult Correctional Facilities;The number of Asian Americans in adult correctional facilities;The number of Asian Americans in jail;The number of Asian Americans in prison;The number of Asian Americans incarcerated in the United States;the number of asian americans in adult correctional facilities;the number of asian americans in jails and prisons;the number of asian people in jails and prisons;the number of asian people living in adult correctional facilities" -Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of Asian college students living in dorms;Number of Asian students living in college or university housing;Number of Asian students living in on-campus housing;Number of Asian students living in university housing;Number of People Who Are Asian Alone and Who Live in College or University Student Housing;Number of people who are Asian Alone and who are in College or University Student Housing;Population: Asian Alone, College or University Student Housing;The number of Asian students living in college or university student housing;the number of asian people living in college or university student housing;the number of asian students living in college or university dormitories;the number of asian students living in college or university housing;the number of asian students living in college or university residence halls" -Count_Person_AsianAlone_ResidesInGroupQuarters,"Number of Asian people in group housing;Number of Asian people living in group quarters;Number of Asians in group quarters;Number of People Who Are Asian Alone and Who Live in Group Quarters;Number of people who are Asian Alone and who are in Group Quarters;Number of people who are Asian and in group quarters;Number of people who are Asian and living in group quarters;Population: Asian Alone, Group Quarters;how many asian people live in group quarters?;number of asian people living in group homes;number of asian people living in group quarters;what is the number of asian people who live in group quarters?" -Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,"Number of Asian Alone people in Institutionalized Group Quarters;Number of Asian Alone people institutionalized;Number of Asian Alone people institutionalized in group quarters;Number of People Who Are Asian Alone and Who Live in Institutionalized in Group Quarters;Number of people who are Asian Alone and who are in Institutionalized in Group Quarters;Population: Asian Alone, Institutionalized Group Quarters;The number of Asian Alone people institutionalized in group quarters;number of asian people living in group quarters or institutions;number of asian people living in institutions;the number of asian people who live in group quarters, such as nursing homes, prisons, and mental hospitals;the number of asian people who live in institutional settings" -Count_Person_AsianAlone_ResidesInJuvenileFacilities,"Number of Asian American and Pacific Islander youth in juvenile detention centers;Number of Asian American youth in detention centers;Number of Asian American youth in juvenile detention centers;Number of Asian youth in juvenile detention;Number of Asian youth in juvenile facilities;Number of People Who Are Asian Alone and Who Live in Juvenile Facilities;Number of people who are Asian Alone and who are Juvenile Facilities;Population: Asian Alone, Juvenile Facilities;the number of asian children in juvenile facilities;the number of asian juveniles in detention;the number of asian people living in juvenile facilities;the number of asian youth in juvenile detention" -Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Asian people in military housing;Number of Asian people in military quarters or military ships;Number of Asian people in the armed forces;Number of Asian people in the military;Number of Asian people on military bases;Number of People Who Are Asian Alone and Who Live in Military Quarters or on Military Ships;Number of people who are Asian Alone and who are in Military Quarters or Military Ships;Population: Asian Alone, Military Quarters or Military Ships;number of people who are asian and live in military bases;number of people who are asian and live in military housing;number of people who are asian and live in military quarters or on military ships;number of people who are asian and live on military vessels" -Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,"1 Number of Asian Alone people in Noninstitutionalized Group Quarters;Number of Asian Alone people in noninstitutionalized group quarters;Number of Asian people in noninstitutionalized group quarters;Number of Asian-alone people in noninstitutionalized group quarters;Number of Asians living in group quarters who are not in nursing homes, hospitals, or correctional facilities;Number of People Who Are Asian Alone and Who Live in Noninstitutionalized Group Quarters;Number of people who are Asian Alone and who are in Noninstitutionalized in Group Quarters;Population: Asian Alone, Noninstitutionalized Group Quarters;how many people who are asian alone live in noninstitutionalized group quarters;the number of people who are asian alone and live in group quarters that are not hospitals, prisons, or nursing homes;the number of people who are asian alone and live in noninstitutionalized group quarters;the population of people who are asian alone and live in noninstitutionalized group quarters" -Count_Person_AsianAlone_ResidesInNursingFacilities,"Number of People Who Are Asian Alone and Who Live in Nursing Facilities;Number of people who are Asian Alone and who are in Nursing Facilities;Population: Asian Alone, Nursing Facilities;The number of Asian Americans in nursing homes;The number of Asian Americans who are in long-term care facilities;The number of Asian Americans who are institutionalized in nursing homes;The number of Asian Americans who are residents of nursing homes;The number of Asian Americans who live in nursing homes;number of asian people living in nursing facilities;number of asian people who are in nursing homes;number of asian people who live in nursing homes;number of asian people who reside in nursing facilities" -Count_Person_AsianOrPacificIslander,How many people are Asian or Pacific Islander;Number of People Who Are Asian or Pacific Islander;Number of people who are Asian or Pacific Islander;Population: Asian or Pacific Islander;The number of Asian or Pacific Islander people;The number of people who are of Asian or Pacific Islander descent;The number of people who identify as Asian or Pacific Islander;The population of Asian or Pacific Islanders;how many people are asian or pacific islander;the number of asian or pacific islanders;the number of people who identify as asian or pacific islander;the population of asian or pacific islanders -Count_Person_BachelorOfArtsHumanitiesAndOtherMajor,Population in Arts Humanities And Other Major;Population: Arts Humanities And Other Major -Count_Person_BachelorOfBusinessMajor,Population With a Bachelor's Degree in Business Major;Population: Business Major -Count_Person_BachelorOfEducationMajor,Population With Education Majors;Population: Education Major -Count_Person_BachelorOfScienceAndEngineeringMajor,Population in Science And Engineering Major;Population: Science And Engineering Major -Count_Person_BachelorOfScienceAndEngineeringRelatedMajor,Population With Bachelor Degrees In Science And Engineering Related;Population: Science And Engineering Related Major -Count_Person_BelowPovertyLevelInThePast12Months,2 the number of people who were below the poverty line in the past 12 months;5 the number of people who were experiencing financial hardship in the past 12 months;Number of People Who Are Below Poverty Level Status in the Past 12 Months;Number of people who are Below Poverty Level Status in The Past 12 Months;Population confirmed to be Living in Poverty in the past year\;Population who are in poverty;Population: Below Poverty Level in The Past 12 Months;The number of people living below the poverty line in the past year;The number of people who are below the poverty line;The number of people who are poor;The population living in poverty;The population of people living in poverty in the past year;how many people are determined to be living in poverty;the number of people living below the poverty line in the past 12 months;the number of people who were below the poverty line in the past 12 months -Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are American Indian or Alaska Native Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are American Indian or Alaska Native Alone;Population: Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native people living below the poverty line in the past 12 months;The number of American Indian or Alaska Native people who were living in poverty in the past 12 months;The number of American Indian or Alaska Native people who were poor in the past 12 months;The number of American Indian or Alaska Native people with incomes below the poverty line in the past 12 months;The number of American Indian or Alaska Natives living below the poverty line in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person,People Per Capita Who Are Below Poverty Level Status in the Past 12 Months;Per Capita People who are Below Poverty Level in The Past 12 Months;Per Capita Population who are in poverty;Population: Below Poverty Level in The Past 12 Months Per Capita;how many people are determined to be living in poverty per capita;poverty level per capita;poverty per capita -Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone,"Number of Asian Alone people who were below the poverty level in the past 12 months;Number of Asian Alone people who were below the poverty line in the past 12 months;Number of Asian Alone people who were living in poverty in the past 12 months;Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Asian Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Asian Alone;Population: Below Poverty Level in The Past 12 Months, Asian Alone;The number of Asian people who are struggling financially in the past 12 months;The number of people who are Asian and below the poverty line in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Black or African American Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Black or African American Alone;Population: Below Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American people who were below the poverty line in the past 12 months;The number of Black or African Americans living in poverty in the past 12 months;The number of Black or African Americans who were living in low-income households in the past 12 months;The number of black or African Americans living below the poverty line in the last 12 months;The number of black or African Americans who are living in poverty in the last 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Hispanic or Latino;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Hispanic or Latino;Population: Below Poverty Level in The Past 12 Months, Hispanic or Latino;The number of Hispanic or Latino people who were below the poverty line in the past 12 months;The number of Hispanic or Latino people who were experiencing economic hardship in the past 12 months;The number of Hispanic or Latino people who were living in poverty in the past 12 months;The number of Hispanic or Latino people who were poor in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone;Population: Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;The number of Native Hawaiian or Other Pacific Islanders Alone who were living in poverty in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders living below the poverty line in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders who were experiencing economic hardship in the past 12 months;The number of Native Hawaiians and Other Pacific Islanders who were living in poverty in the past 12 months;the number of native hawaiian or other pacific islander alone people who were below the poverty level in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Some Other Race Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Some Other Race Alone;Population: Below Poverty Level in The Past 12 Months, Some Other Race Alone;The number of people who are below the poverty level and who are of some other race alone in the past 12 months;The number of people who are below the poverty level in the past 12 months and who identify as some other race alone;The number of people who are below the poverty line in the past 12 months and who identify as some other race alone;number of people below the poverty line in the past 12 months who are some other race alone;the number of people who are below the poverty level and are of some other race alone in the past 12 months;the number of people who were below the poverty level in the past 12 months and who identified as some other race alone" -Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"How many people are below the poverty line and are of two or more races?;Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are Two or More Races;Number of people who are Below Poverty Level Status in The Past 12 Months and who are Two or More Races;Number of people who are below the poverty level and are two or more races;Number of people who are below the poverty line in the past 12 months and who identify as two or more races;Population: Below Poverty Level in The Past 12 Months, Two or More Races;The number of people who are below the poverty line in the past 12 months and who identify as two or more races;how many people are below the poverty line and are two or more races;how many people are below the poverty line and identify as two or more races;number of people who are below the poverty line and identify as two or more races in the past 12 months;number of people who are below the poverty line and identify with multiple races in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are White Alone;Number of people who are Below Poverty Level Status in The Past 12 Months and who are White Alone;Number of people who are below the poverty level in the past 12 months and who are white alone;Number of people who are white and below the poverty level in the past 12 months;Number of people who are white and living in poverty in the past 12 months;Population: Below Poverty Level in The Past 12 Months, White Alone;The number of White Alone people living below the poverty line in the past 12 months;number of white people with a household income below the poverty line in the past 12 months;number of white people with a household income below the poverty threshold in the past 12 months" -Count_Person_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of People Who Are Below Poverty Level Status in the Past 12 Months and Who Are White Alone Not Hispanic or Latino;Number of White Alone Not Hispanic or Latino people below poverty level in the past 12 months;Number of White Alone Not Hispanic or Latino people living below the poverty line in the past 12 months;Number of White Alone Not Hispanic or Latino people living in poverty in the past 12 months;Number of people who are Below Poverty Level Status in The Past 12 Months and who are White Alone Not Hispanic or Latino;Population: Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of White Alone Not Hispanic or Latino people who were below the poverty level in the past 12 months;The number of White Alone Not Hispanic or Latino people who were living in poverty in the past 12 months;number of white alone not hispanic or latino people living below the poverty line in the past 12 months;number of white alone not hispanic or latino people with a below poverty level income in the past 12 months;the number of people who are white and not hispanic or latino and who had an income below the poverty line in the past 12 months;the number of people who are white and not hispanic or latino and who were below the poverty level in the past 12 months" -Count_Person_BlackOrAfricanAmericanAlone,"Black Population Alone,Population who are Black or African American Alone;Monoracial black population;Number of People Who Are Black or African American Alone;Number of people who are Black or African American Alone;Population who are Black or African American only;Population: Black or African American Alone;The number of people who are Black or African American alone;african american population in;black and african american demographic;black people;count of black people in population;how much of the population is black;number of people who are black;number of people who are black or african american alone;the number of black or african american residents" -Count_Person_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,Black or African American population;Number of People Who Are Black or African American Alone or in Combination With One or More Other Races;Number of people who are Black or African American Alone or In Combination With One or More Other Races;Number of people who are Black or African American alone or in combination with one or more other races;Population: Black or African American Alone or In Combination With One or More Other Races;black or african american population;how many people are black or african american?;number of people who are black or african american;population of black or african americans -Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,"Number of Black or African American people in adult correctional facilities;Number of Black or African Americans in adult jails;Number of Black or African Americans in adult prisons;Number of People Who Are Black or African American Alone and Who Are in Adult Correctional Facilities;Number of people who are Black or African American Alone and who are in Adult Correctional Facilities;Population: Black or African American Alone, Adult Correctional Facilities;The number of Black or African American people in adult correctional facilities;the number of black or african american people in adult correctional facilities;the number of black or african american people incarcerated in adult correctional facilities;the number of black or african american people who are in prison or jail;the number of black or african american people who are incarcerated" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of Black or African American students in college housing;Number of Black or African American students living in college or university dormitories;Number of People Who Are Black or African American Alone and Who Are in College or University Student Housing;Number of people who are Black or African American Alone and who are in College or University Student Housing;Population: Black or African American Alone, College or University Student Housing;The number of Black or African American students living in college or university dormitories;The number of Black or African American students living in college or university housing;The number of Black or African American students living in college or university student housing;number of black or african american college students living in student housing;number of black or african american students living in college dormitories;number of black or african american students living in college housing;number of black or african american students living in college residence halls" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,"Number of Black or African American people in group quarters;Number of Black or African American people living in group quarters;Number of People Who Are Black or African American Alone and Who Are in Group Quarters;Number of people who are Black or African American Alone and who are in Group Quarters;Population: Black or African American Alone, Group Quarters;The number of Black or African American people living in group quarters;The number of Black or African American people who are in group quarters;The number of Black or African Americans living in group quarters;number of black or african american people in group quarters;number of black or african american people living in group quarters;number of black or african american people living in group quarters, not in families;number of black or african american people residing in group quarters" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,"Number of Black or African American people institutionalized;Number of Black or African American people institutionalized in group quarters;Number of People Who Are Black or African American Alone and Who Are Institutionalized in Group Quarters;Number of people who are Black or African American Alone and who are in Institutionalized in Group Quarters;Population: Black or African American Alone, Institutionalized Group Quarters;The number of Black or African American people who are institutionalized in group quarters;number of black or african american people in group quarters or institutions;number of black or african american people institutionalized;number of black or african americans institutionalized;number of black or african americans institutionalized in group quarters" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,"Number of Black or African American children in juvenile detention;Number of Black or African American juveniles in detention centers;Number of Black or African American kids in juvenile correctional facilities;Number of Black or African American minors in juvenile justice facilities;Number of Black or African American youth in juvenile facilities;Number of People Who Are Black or African American Alone and Who Live in Juvenile Facilities;Number of people who are Black or African American Alone and who are Juvenile Facilities;Population: Black or African American Alone, Juvenile Facilities;the number of black or african american juveniles in detention centers;the number of black or african american minors in juvenile detention;the number of black or african american people living in juvenile facilities;the number of black or african american youths in juvenile corrections" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,"How many Black or African American people are in military quarters or military ships?;Number of Black or African American Alone people in Military Quarters or Military Ships;Number of Black or African American people in military quarters or on military ships;Number of Black or African American people living in military quarters or on military ships;Number of Black or African Americans in Military Quarters or Military Ships;Number of People Who Are Black or African American Alone and Who Live in Military Quarters or on Military Ships;Number of people who are Black or African American Alone and who are in Military Quarters or Military Ships;Population: Black or African American Alone, Military Quarters or Military Ships;how many black or african american people live in military housing?;how many black or african american people live in military quarters or on military ships?;what is the number of black or african american people living in military housing?;what is the population of black or african american people living in military quarters or on military ships?" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of Black or African American people living in group quarters that are not hospitals, nursing homes, or prisons;Number of Black or African American people living in group quarters that are not institutions;Number of Black or African American people living in group quarters that are not jails, prisons, or other correctional facilities;Number of Black or African American people living in group quarters that are not mental health facilities, substance abuse treatment facilities, or other residential treatment facilities;Number of Black or African American people living in non-institutional group quarters;Number of People Who Are Black or African American Alone and Who Live in Non-Institutionalized Group Quarters;Number of people who are Black or African American Alone and who are in Noninstitutionalized in Group Quarters;Population: Black or African American Alone, Noninstitutionalized Group Quarters;number of black or african americans living in group quarters that are not government-run facilities;number of black or african americans living in group quarters that are not hospitals, prisons, or nursing homes;number of black or african americans living in group quarters that are not institutions;number of black or african americans living in non-institutional group quarters" -Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,"Number of People Who Are Black or African American Alone and Who Live in Nursing Facilities;Number of people who are Black or African American Alone and who are in Nursing Facilities;Population: Black or African American Alone, Nursing Facilities;The number of Black or African American nursing home residents;The number of Black or African American people in nursing facilities;The number of Black or African American people living in nursing homes;The number of Black or African American people who are institutionalized in nursing homes;The number of Black or African American people who are receiving long-term care in nursing homes;how many black or african american people are in nursing homes?;how many black or african american people live in nursing homes?;what is the number of black or african american people living in nursing homes?;what is the population of black or african american people living in nursing homes?" -Count_Person_BornInOtherStateInTheUnitedStates,Population That is Born in Other States in The United States;Population: Born in Other State in The United States;number of people born in other states in the united states;people born in other states in the us;people born in the us but not in the state they currently live in;people born outside of their home state in the us -Count_Person_BornInStateOfResidence,Population Born in State Residence;Population: Born in State of Residence;number of people born in a state who live in that state;number of people who live in the state where they were born;number of people who were born in a state and still live there;number of residents of a state who were born in that state -Count_Person_Civilian_Employed,"Civilians Aged 16 Years or More Employed;Population: 16 Years or More, Civilian, Employed;the employment rate of civilians aged 16 years or more;the number of civilians aged 16 years or more who are employed, as a percentage of the total number of civilians aged 16 years or more;the percentage of civilians aged 16 years or more who are employed;the proportion of civilians aged 16 years or more who are employed" -Count_Person_Civilian_FamilyHousehold_NonInstitutionalized,"Non-Institutionalized Civilian Family Households;Population: Civilian, Family Household, Non Institutionalized;civilian households that are not institutionalized and are made up of family members;civilian households that are not institutionalized and are made up of people who are related to each other;households that are not institutionalized and are made up of family members;households that are not institutionalized and are made up of people who are living together as a family" -Count_Person_Civilian_Female_NonInstitutionalized,"Number of Female Civilians Who Are Non Institutionalized;Number of civilians who are female and not institutionalized;Number of female non-institutionalized civilians;Number of females who are civilians and not institutionalized;Number of non-institutionalized civilians who are female;Number of people who are Civilian and who are Female and who are Non Institutionalized;Population: Civilian, Female, Non Institutionalized;The number of civilians who are female and not institutionalized;number of civilian females who are not institutionalized;number of females who are not institutionalized and are civilians;number of non-institutionalized civilians who are female;number of non-institutionalized females" -Count_Person_Civilian_InLaborForce,"Civilians Aged 16 Years or More in The Labor Force;Population: 16 Years or More, Civilian, in Labor Force;people aged 16 or older who are in the labor force;people aged 16 or over who are in the labor force" -Count_Person_Civilian_Male_NonInstitutionalized,"Number of Male Civilians Who Are Not Institutionalized;Number of civilian males;Number of civilian males who are not institutionalized;Number of males who are not institutionalized;Number of males who are not institutionalized and are civilians;Number of non-institutionalized males;Number of people who are Civilian and who are Male and who are Non Institutionalized;Population: Civilian, Male, Non Institutionalized;number of civilian men who are not institutionalized;number of male civilians who are not institutionalized or in jail;number of male civilians who are not institutionalized or incarcerated;number of non-institutionalized male civilians" -Count_Person_Civilian_MarriedCoupleFamilyHousehold_NonInstitutionalized,"Civilian Married Couple Family Households Non-Institutionalized;Population: Civilian, Married Couple Family Household, Non Institutionalized;households with married couples who are not in the military;households with married couples who are not institutionalized;households with married couples who are not living in institutions;non-institutionalized civilian married-couple family households" -Count_Person_Civilian_NoDisability_NonInstitutionalized,"Number of Civilians With No Disabilities Who Are Non Institutionalized;Number of civilians without disabilities who are not institutionalized;Number of non-institutionalized civilians without disabilities;Number of non-institutionalized people without disabilities who are civilians;Number of people who are Civilian and who are No Disability and who are Non Institutionalized;Number of people without disabilities who are civilians and are not institutionalized;Population: Civilian, No Disability, Non Institutionalized;number of able-bodied civilians who are not institutionalized;number of civilians who are not disabled and not institutionalized;number of civilians with no disabilities who are not institutionalized;number of non-disabled civilians who are not institutionalized" -Count_Person_Civilian_NonInstitutionalized,"Non-Institutionalized Civilians;Population: Civilian, Non Institutionalized;civilians who are not institutionalized;civilians who are not living in an institution;people who are not institutionalized;people who are not institutionalized or incarcerated" -Count_Person_Civilian_NonInstitutionalized_1.00OrLessRatioToPovertyLine,"Non-Institutionalized Civilians With a 1 or Less Ratio To Poverty Line;Population: Civilian, Non Institutionalized, 1 Ratio To Poverty Line or Less;people who are not institutionalized and whose income is 1 or less times the poverty line;people who are not institutionalized and whose income is equal to or less than the poverty line;people who are not institutionalized and whose income is less than the poverty line;people who are not institutionalized and whose income is not more than the poverty line" -Count_Person_Civilian_NonInstitutionalized_1.38OrLessRatioToPovertyLine,"Non Institutionalized Civilians With A 1.4 Ratio To The Poverty Line or Less;Population: Civilian, Non Institutionalized, 1.4 Ratio To Poverty Line or Less" -Count_Person_Civilian_NonInstitutionalized_1.38OrMoreRatioToPovertyLine,"Non-Institutionalized Civilian Population With a 1.4 Ratio To Poverty Line or More;Population: Civilian, Non Institutionalized, 1.4 Ratio To Poverty Line or More" -Count_Person_Civilian_NonInstitutionalized_1.38To1.99RatioToPovertyLine,"Non-Institutionalized Civilian Population With A 1.4 to 2.0 Ratio To Poverty Line;Population: Civilian, Non Institutionalized, 1.4 - 2.0 Ratio To Poverty Line" -Count_Person_Civilian_NonInstitutionalized_1.38To3.99RatioToPovertyLine,"Civilian Population in Non Institutionalized With a 1.4 to 4.0 Ratio To Poverty Line;Population: Civilian, Non Institutionalized, 1.4 - 4.0 Ratio To Poverty Line" -Count_Person_Civilian_NonInstitutionalized_2.00OrMoreRatioToPovertyLine,"Non-Institutionalized Civilians With 2 Ratio To Poverty Line;Population: Civilian, Non Institutionalized, 2 Ratio To Poverty Line or More;civilians not institutionalized with a poverty line of 2;civilians not institutionalized with a poverty line ratio of 2;civilians not living in institutions with a ratio of 2 to the poverty line;non-institutionalized civilians with a poverty line ratio of 2" -Count_Person_Civilian_NonInstitutionalized_2.00To3.99RatioToPovertyLine,"Non-Institutionalized Civilians With A Ratio 2 to 4.0 To Poverty Line;Population: Civilian, Non Institutionalized, 2 - 4.0 Ratio To Poverty Line;people who are not institutionalized and have a ratio of 2 to 40 times the poverty level;people who are not institutionalized and have a ratio of 2 to 40 times the poverty line;people who are not institutionalized and have a ratio of 2 to 40 times the poverty threshold;people who are not institutionalized and have a ratio of 2 to 40 to the poverty line" -Count_Person_Civilian_NonInstitutionalized_4.00OrMoreRatioToPovertyLine,"Non-Institutionalized Civilians with a 4 Ratio to Poverty Line or More;Population: Civilian, Non Institutionalized, 4 Ratio To Poverty Line or More;civilians who are not institutionalized and have an income that is 4 times the poverty line or more;people who are not institutionalized and have a ratio of 4 or more to the poverty line;people who are not institutionalized and have a ratio of income to poverty line of 4 or more" -Count_Person_Civilian_NonInstitutionalized_AmericanIndianOrAlaskaNativeAlone,"Non-Institutionalized American Indian or Alaska Native Civilian Population;Population: Civilian, Non Institutionalized, American Indian or Alaska Native Alone;american indian or alaska native civilian population not living in institutions;american indian or alaska native population living in the community;american indian or alaska native population living outside of institutions;american indian or alaska native population not institutionalized" -Count_Person_Civilian_NonInstitutionalized_AsianAlone,"Asian Non Institutionalized Civilians;Population: Civilian, Non Institutionalized, Asian Alone;asian civilians who are not institutionalized;civilians of asian descent who are not institutionalized;non-institutionalized asian civilians;people of asian descent who are not institutionalized" -Count_Person_Civilian_NonInstitutionalized_BlackOrAfricanAmericanAlone,"Non Institutionalized African American Civilians;Population: Civilian, Non Institutionalized, Black or African American Alone;african american civilians who are living in the community;african american civilians who are not in hospitals, prisons, or other institutions;african american civilians who are not institutionalized;non-institutionalized african american civilians" -Count_Person_Civilian_NonInstitutionalized_ForeignBorn,"Non Institutionalized Foreign Born Civilians;Population: Civilian, Non Institutionalized, Foreign Born;civilians who were born in another country and are not in a hospital or other medical facility;civilians who were born in another country and are not living in a nursing home, prison, or other institution;civilians who were born outside of the united states and are not institutionalized;foreign-born civilians who are not institutionalized" -Count_Person_Civilian_NonInstitutionalized_HispanicOrLatino,"Hispanic Civilians Non-Institutionalized;Population: Civilian, Non Institutionalized, Hispanic or Latino;hispanic civilians who are not institutionalized;hispanic non-institutionalized civilians;hispanic people who are not in a mental institution;hispanic people who are not institutionalized" -Count_Person_Civilian_NonInstitutionalized_Native,"Non-Institutionalized Native Civilians;Population: Civilian, Non Institutionalized, Native;civilians who are native and not institutionalized;native civilians who are not institutionalized;native people who are not institutionalized;non-institutionalized native people" -Count_Person_Civilian_NonInstitutionalized_NativeHawaiianOrOtherPacificIslanderAlone,"Non-Institutionalized Native Hawaiian or Other Pacific Islander Population;Population: Civilian, Non Institutionalized, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander people who are not institutionalized;people who are native hawaiian or other pacific islander and not institutionalized;people who are native hawaiian or other pacific islander and not living in an institution;the native hawaiian or other pacific islander population that is not institutionalized" -Count_Person_Civilian_NonInstitutionalized_OneRace,"Non-Institutionalized Uniracial Civilians;Population: Civilian, Non Institutionalized, One Race;civilians who are not institutionalized and who are of one race;non-institutionalized uniracial civilians" -Count_Person_Civilian_NonInstitutionalized_PovertyStatusDetermined,"Civilians in Non-Institutionalized with Poverty Status Determined;Population: Civilian, Non Institutionalized, Poverty Status Determined;civilians who are not institutionalized and have their poverty status identified;non-institutionalized civilians with determined poverty status;people who are not institutionalized and have had their income and assets assessed;people who are not institutionalized and have their poverty status determined" -Count_Person_Civilian_NonInstitutionalized_ResidesInHousehold,"Households of Non-Institutionalized Civilians;Population: Civilian, Non Institutionalized, Household;civilian households that are not institutionalized;households of civilians who are not institutionalized;households of non-institutionalized civilians;households of non-institutionalized people" -Count_Person_Civilian_NonInstitutionalized_SomeOtherRaceAlone,"Non-Institutionalized Other Race Population;Population: Civilian, Non Institutionalized, Some Other Race Alone;other race population not institutionalized;population of non-institutionalized people of other races;population of people of other races who are not institutionalized;population of people of other races who are not institutionalized in any way" -Count_Person_Civilian_NonInstitutionalized_TwoOrMoreRaces,"Non-Institutionalized Civilian Multiracial Population;Population: Civilian, Non Institutionalized, Two or More Races;civilians who are not institutionalized and are multiracial;people who are not institutionalized and are multiracial;people who are not institutionalized and identify as multiracial" -Count_Person_Civilian_NonInstitutionalized_WhiteAlone,"Population: Civilian, Non Institutionalized, White Alone;Whites Non Institutionalized Civilians;civilians of the white race who are not institutionalized;civilians who are white and not institutionalized;non-institutionalized white civilians;white people who are not institutionalized" -Count_Person_Civilian_NonInstitutionalized_WhiteAloneNotHispanicOrLatino,"Non-Institutionalized White And Non-Hispanic Civilians;Population: Civilian, Non Institutionalized, White Alone Not Hispanic or Latino;civilians who are white and not hispanic;non-hispanic white civilians;non-hispanic, white civilians;white non-hispanic civilians" -Count_Person_Civilian_NonfamilyHouseholdAndOtherLivingArrangements_NonInstitutionalized,"Non-Institutionalized Nonfamily Civilian Households and Other Arrangements;Population: Civilian, Nonfamily Household And Other Living Arrangements, Non Institutionalized;people living in non-traditional living arrangements" -Count_Person_Civilian_OtherFamilyHousehold_NonInstitutionalized,"Non-Institutionalized Civilians In Other Family Households;Population: Civilian, Other Family Household, Non Institutionalized;civilians who are not institutionalized and live in family households;civilians who are not institutionalized and live with their families;people who are not institutionalized and live in family households;people who are not institutionalized and live with their families" -Count_Person_Civilian_ResidesInHousehold,"Household Civilians;Population: Civilian, Household;civilians" -Count_Person_Civilian_SingleFatherFamilyHousehold_NonInstitutionalized,"Non Institutionalized Civilian Single Father Family Households;Population: Civilian, Single Father Family Household, Non Institutionalized;families with a single father;families with a single father as the head of the family;households with a single father and no other adults;households with a single father as the head of household" -Count_Person_Civilian_SingleMotherFamilyHousehold_NonInstitutionalized,"Non-Institutionalized Civilian Single Mother Family Household;Population: Civilian, Single Mother Family Household, Non Institutionalized;a household consisting of a single mother and her children who are not institutionalized;a household where the mother is the only parent and the children are not institutionalized;a single mother and her children living in a non-institutional setting;a single mother living with her children in a non-institutional setting" -Count_Person_Civilian_WithDisability_NonInstitutionalized,"Number of Civilians With Disabilities Who Are Non Institutionalized;Number of civilians with disabilities who are not institutionalized;Number of non-institutionalized civilians with disabilities;Number of non-institutionalized people with disabilities who are civilians;Number of people who are Civilian and who are With Disability and who are Non Institutionalized;Number of people with disabilities who are civilians and not institutionalized;Population: Civilian, With Disability, Non Institutionalized;number of civilians with disabilities who are not in nursing homes or other institutions;number of civilians with disabilities who are not institutionalized;number of civilians with disabilities who live in the community;number of non-institutionalized civilians with disabilities" -Count_Person_CognitiveDifficulty,How many people have cognitive difficulties;How many people have cognitive difficulties?;How many people have trouble thinking or remembering things;Number of People Who Have Cognitive Difficulty;Number of people who have Cognitive Difficulty;Population: Cognitive Difficulty;What is the number of people with cognitive impairment;What is the prevalence of cognitive impairment;how many people experience cognitive difficulty?;how many people have cognitive difficulty?;how many people suffer from cognitive difficulty?;what is the number of people with cognitive difficulty? -Count_Person_CorrectionalFacilityLocation_OutOfState,"Out-of-State Incarcerated Population;Population (Measured Based on Jurisdiction): Out-of-State, Incarcerated;number of people who are incarcerated and who are not from the state they are currently living in;number of people who are not from the state they are currently living in and who are in prison or jail;population of people who are not from the state they are currently living in and who are incarcerated;total number of people who are incarcerated and who are not from the state they are currently living in" -Count_Person_DateOfEntry1990OrEarlier,"Foreign-Born Population Who Immigrated Before 1990;Population: Before 1990, Foreign Born" -Count_Person_DateOfEntry1990To1999,"Foreign-Born Population Immigration Between 1990 And 1999;Population: Between 1990 And 1999, Foreign Born" -Count_Person_DateOfEntry2000To2009,"Foreign-Born Population Between 2000 and 2009;Population: Between 2000 And 2009, Foreign Born" -Count_Person_DateOfEntry2010OrLater,"Population Foreign Born After 2010;Population: After 2010, Foreign Born" -Count_Person_DetailedEnrolledInCollegeUndergraduateYears,number of people enrolled in college undergraduate programs;number of students enrolled in undergraduate studies at colleges and universities;sum of all students currently enrolled in undergraduate programs at colleges and universities;total number of people who are currently enrolled in undergraduate programs at colleges and universities -Count_Person_DetailedEnrolledInGrade1,1 students in the first grade;Enrolled First Graders;Population: Enrolled in Grade 1;children in first grade;first grade students;students in first grade -Count_Person_DetailedEnrolledInGrade10,Population Enrolled in Grade 10;Population: Enrolled in Grade 10;enrollment in grade 10;grade 10 student population;number of students in grade 10;total number of students enrolled in grade 10 -Count_Person_DetailedEnrolledInGrade11,1 number of students enrolled in grade 11;Population Enrolled in Grade 11;Population: Enrolled in Grade 11;grade 11 enrollment;number of students in grade 11;total number of students in grade 11 -Count_Person_DetailedEnrolledInGrade12,Population Enrolled in Grade 12;Population: Enrolled in Grade 12;enrollment in grade 12;number of students enrolled in grade 12;student population in grade 12;total number of students in grade 12 -Count_Person_DetailedEnrolledInGrade2,2nd Graders;Population: Enrolled in Grade 2 -Count_Person_DetailedEnrolledInGrade3,Population Enrolled in Grade 3;Population: Enrolled in Grade 3;number of people enrolled in grade 3;number of people in grade 3;number of students in grade 3;third grade enrollment -Count_Person_DetailedEnrolledInGrade4,Population Enrolled in Grade 4;Population: Enrolled in Grade 4;number of kids enrolled in grade 4;number of pupils in grade 4;number of students enrolled in the fourth grade;number of students in grade 4 -Count_Person_DetailedEnrolledInGrade5,Population Enrolled in Grade 5;Population: Enrolled in Grade 5;fifth grade enrollment;fifth-grade enrollment;number of people enrolled in grade 5;number of people in grade 5 -Count_Person_DetailedEnrolledInGrade6,Population Enrolled in Grade 6;Population: Enrolled in Grade 6;number of people enrolled in grade 6;number of people enrolled in the sixth grade;number of people in grade 6;number of students in grade 6 -Count_Person_DetailedEnrolledInGrade7,Population Enrolled in Grade 7;Population: Enrolled in Grade 7;number of students enrolled in grade 7;number of students in grade 7;total number of students enrolled in grade 7;total number of students in grade 7 -Count_Person_DetailedEnrolledInGrade8,8th Graders;Population: Enrolled in Grade 8;eighth graders;eighth-grade students;eighth-year-olds;students in the eighth grade -Count_Person_DetailedEnrolledInGrade9,3 ninth grade enrollment;Population Enrolled In Grade 9;Population: Enrolled in Grade 9;ninth grade enrollment;number of students enrolled in grade 9;number of students in grade 9 -Count_Person_DetailedEnrolledInKindergarten,number of children attending kindergarten;number of children enrolled in kindergarten;number of kindergarten students;total number of kindergarten students -Count_Person_DetailedEnrolledInNurserySchoolPreschool,Population Enrolled in Nursery School;Population: Enrolled in Nursery School Preschool;number of children attending nursery school;number of children enrolled in nursery school;number of nursery school students;nursery school enrollment -Count_Person_DetailedGraduateOrProfessionalSchool,1 number of people enrolled in graduate or professional schools;2 total number of students in graduate or professional programs;3 size of the graduate or professional school population;Population in Graduate or Professional Schools;Population: Graduate or Professional School;number of people enrolled in graduate or professional schools -Count_Person_DetailedHighSchool,High School Students;High schoolers;Teenagers;high school enrollment;high school students;high schoolers;highest number children in high school;number of people enrolled in high school;population of kids enrolled in high school;students in high school;teenagers;the headcount of high school students;the student population of high school -Count_Person_DetailedMiddleSchool,Kids in middle school;Middle School Students;Middle schoolers;Students in middle school;kids in middle school;middle school students;population of kids enrolled in middle school;students in middle school;the number of people who are in middle school;the number of people who are in the middle school age group;the number of students in middle school;the number of students who attend middle school -Count_Person_DetailedPrimarySchool,Elementary School Students;Kids in elementary school;School kids;counties with highest number children in elementary school;grade-schoolers;kids in elementary school;number of children in elementary school;population of kids enrolled in primary school;primary school students;students in elementary school -Count_Person_DidNotWork,"Population Aged 16 to 64 Years Who Did Not Work;Population: 16 - 64 Years, Did Not Work;people aged 16 to 64 who did not work;people aged 16 to 64 who were not employed;people aged 16 to 64 who were not in the labor force;people aged 16 to 64 who were unemployed" -Count_Person_Divorced,Divorce rate;Divorced population count;Number of Divorced People in a Population;Number of divorced individuals in the population;Number of divorced people;Number of divorced people in a population;Number of divorced people in the population;Percentage of divorced people in the population;Population: Divorced;The number of people who are divorced;number of people who are divorced;number of people who have been divorced;number of people who have gotten a divorce;the number of people in a population who are currently divorced;the number of people in a population who have been divorced at least once;the number of people in a population who have ever been divorced;the number of people who are divorced;the percentage of people in a population who are divorced -Count_Person_DivorcedOrSeparated,Divorced Or Separated Population;Population: Divorced or Separated;people who are not married and have been divorced or separated;population of divorced or separated people in the united states;population of people who are divorced or separated;share of divorced or separated people in the united states -Count_Person_DivorcedOrSeparated_DifferentHouseAbroad,"Population Aged 15 Years or More Who Were Separated in Different Houses Abroad;Population: 15 Years or More, Divorced or Separated, Different House Abroad;people aged 15 or older who were separated in different dwellings outside of their home country;people aged 15 or older who were separated in different households outside of their home country;people aged 15 or older who were separated in different houses in other countries;people aged 15 years or older who were separated in different houses abroad" -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountyDifferentState,"Divorced Or Separated Population Aged 15 Years Or More Living In Different Houses In Different States And Counties;Population: 15 Years or More, Divorced or Separated, Different House in Different County Different State;people who are divorced or separated and are 15 years of age or older and live apart in different states and counties;people who are divorced or separated and are 15 years of age or older and live in different domiciles in different states and counties;people who are divorced or separated and are 15 years of age or older and live in different houses in different states and counties;people who are divorced or separated and are 15 years of age or older and reside in different households in different states and counties" -Count_Person_DivorcedOrSeparated_DifferentHouseInDifferentCountySameState,"Divorced Population Aged 15 Years or More Living in a Different House in a Different County and Same State;Population: 15 Years or More, Divorced or Separated, Different House in Different County Same State;people who are divorced and live in a different county and house than their ex-spouse in the same state;people who are divorced and live in a different county in the same state than their ex-spouse;people who are divorced and live in a different house in a different county in the same state;people who are divorced and live in a different house than their ex-spouse in the same state" -Count_Person_DivorcedOrSeparated_DifferentHouseInSameCounty,"Population Aged 15 Years or More Divorced or Separated in Different Houses in the Same County;Population: 15 Years or More, Divorced or Separated, Different House in Same County;number of people aged 15 years or more who are divorced or separated and living apart in the same county;number of people aged 15 years or more who are divorced or separated and living in different homes in the same county;number of people aged 15 years or more who are divorced or separated and living in different households in the same county;number of people aged 15 years or more who are divorced or separated and living in different houses in the same county" -Count_Person_Divorced_ResidesInAdultCorrectionalFacilities,"Divorced Population Aged 15 Years or More in Adult Correctional Facilities;Population: 15 Years or More, Divorced, Adult Correctional Facilities;people who are divorced and are 15 years old or older in adult correctional facilities;the number of divorced people aged 15 years or older in adult correctional facilities;the percentage of divorced people aged 15 years or older in adult correctional facilities;the proportion of divorced people aged 15 years or older in adult correctional facilities" -Count_Person_Divorced_ResidesInCollegeOrUniversityStudentHousing,"Divorced Population Aged 15 Years or More in College or University Student Housing;Population: 15 Years or More, Divorced, College or University Student Housing;college or university student housing residents aged 15 years or more who are divorced;college or university student housing residents who are divorced and aged 15 years or more;divorced college or university student housing residents aged 15 years or more;people who are divorced and aged 15 years or more living in college or university student housing" -Count_Person_Divorced_ResidesInGroupQuarters,"Divorced Population Aged 15 Years or More in Group Quarters;Population: 15 Years or More, Divorced, Group Quarters;number of divorced people aged 15 or older living in group quarters;the number of people aged 15 or older who are divorced and living in group facilities;the number of people aged 15 or older who are divorced and living in group quarters;the number of people aged 15 or older who are divorced and living in group settings" -Count_Person_Divorced_ResidesInInstitutionalizedGroupQuarters,"Divorced Population Aged 15 Years or More in Institutionalized Group Quarters;Population: 15 Years or More, Divorced, Institutionalized Group Quarters;people who are divorced and aged 15 or older living in group quarters;people who are divorced and aged 15 or older living in group quarters, such as prisons, nursing homes, and hospitals;people who are divorced and aged 15 or older who are living in group quarters;people who are divorced and aged 15 or older who live in group quarters" -Count_Person_Divorced_ResidesInNoninstitutionalizedGroupQuarters,"Divorced Population Aged 15 Years Or More In Non-Institutionalized Group Quarters;Population: 15 Years or More, Divorced, Noninstitutionalized Group Quarters;people who are divorced and are 15 years old or older and are living in a group home, halfway house, or other type of non-institutional setting;people who are divorced and are 15 years old or older and are living in a group setting that is not an institution;the number of divorced people aged 15 or older who are living in group homes, shelters, or other non-institutional settings;the number of divorced people aged 15 or older who are not living in institutions" -Count_Person_Divorced_ResidesInNursingFacilities,"Divorced Population Aged 15 Years or More in Nursing Facilities;Population: 15 Years or More, Divorced, Nursing Facilities;people who are divorced and over 15 years old in nursing homes;the number of people who are divorced and over 15 years old in nursing homes;the percentage of people who are divorced and over 15 years old in nursing homes;the proportion of people who are divorced and over 15 years old in nursing homes" -Count_Person_EducationalAttainment10ThGrade,Population With 10th Grade Education;Population: 10th Grade;number of people with a 10th grade education;percentage of people with a 10th grade education;proportion of people with a 10th grade education;share of people with a 10th grade education -Count_Person_EducationalAttainment11ThGrade,11th Graders;11th and 12th graders;11th graders;12th graders;Population: 11th Grade;students in the 11th grade -Count_Person_EducationalAttainment12ThGradeNoDiploma,12th Graders Without Diploma;12th graders who did not earn a diploma;Population: 12th Grade No Diploma -Count_Person_EducationalAttainment1StGrade,1 the number of students in grade 1;4 the student population in grade 1;Population in Grade 1;Population: 1st Grade;first grade population;number of first-grade students -Count_Person_EducationalAttainment2NdGrade,2nd Grade Population;Population: 2nd Grade;the number of people in the second grade;the second grade cohort;the second grade population;the second grade school population -Count_Person_EducationalAttainment3RdGrade,Population of 3rd Graders;Population: 3rd Grade;how many children are in third grade;how many third graders are there;number of third graders;third grade population -Count_Person_EducationalAttainment4ThGrade,4th graders;Fourth Graders;Population: 4th Grade;children in the fourth grade;fourth graders;students in the fourth grade -Count_Person_EducationalAttainment5ThGrade,Population: 5th Grade;Student Population In 5th Grade;how many students are in the fifth grade?;the number of students in 5th grade;what is the number of students in the fifth grade?;what is the student body size for fifth grade? -Count_Person_EducationalAttainment6ThGrade,6th grade headcount;6th grade population;Population in 6th Grade;Population: 6th Grade;number of 6th graders;number of students in 6th grade -Count_Person_EducationalAttainment7ThGrade,7th grade population;Population of 7th Graders;Population: 7th Grade;number of 7th graders;total number of 7th graders;what is the number of 7th grade students? -Count_Person_EducationalAttainment8ThGrade,8th grade population;Population in 8th Grade;Population: 8th Grade;eighth grade population;number of students in 8th grade;number of students in the 8th grade -Count_Person_EducationalAttainment9ThGrade,9th grade population;9th grade school population;Population of 9th Graders;Population: 9th Grade;how many 9th graders are there;number of 9th graders -Count_Person_EducationalAttainmentAssociatesDegree,Population With Associate's Degree Education;Population: Associates Degree;prevalence of people with an associate's degree;proportion of people with an associate's degree -Count_Person_EducationalAttainmentBachelorsDegree,Number of People With a Bachelors Degree;Number of people with a bachelor's degree as a percentage of the total population;Percentage of people with a bachelor's degree;Population: Bachelors Degree;Proportion of the population with a bachelor's degree;Share of population with a bachelor's degree;how many people have a bachelor's degree?;how many people have completed a bachelor's degree?;number of people with bachelors degrees;population with bachelors degrees;what is the number of people with a bachelor's degree?;what is the percentage of people with a bachelor's degree? -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,"Number of People With a Bachelors Degree or Higher;Number of people with a bachelor's degree or higher, as a percentage of the total population;Number of people with a bachelor's degree or higher, as a proportion of the total population;Percentage of people with a bachelor's degree or higher;Population: Bachelors Degree or Higher;Proportion of people with a bachelor's degree or higher;Share of people with a bachelor's degree or higher;number of people with bachelors degrees or higher;percentage of the population with a bachelor's degree;population with at least bachelors degrees;population with bachelors degrees or more;proportion of population with a bachelor's degree;share of population with a bachelor's degree;share of the population with a bachelor's degree" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,"Number of Females With a Bachelors Degree or Higher Who Divorced in the Past Year;Number of people who are Bachelors Degree or Higher and who are Female and who are Divorced in The Past 12 Months;Population: Bachelors Degree or Higher, Female, Divorced in The Past 12 Months;The number of divorced women with a bachelor's degree or higher in the past 12 months;The number of divorced women with a bachelor's degree or higher in the past year;The number of women who have been divorced in the past 12 months and have a bachelor's degree or higher;The number of women with a bachelor's degree or higher who have been divorced in the past 12 months;The number of women with a bachelor's degree or higher who have been divorced in the past year;number of female college graduates who divorced in the past year;number of female college-educated women who divorced in the past year;number of women with a bachelor's degree or higher who divorced in the past year;number of women with a post-secondary education who divorced in the past year" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,"Number of Females With a Bachelors Degree or Higher Who Married in the Past Year;Number of people who are Bachelors Degree or Higher and who are Female and who are Married in The Past 12 Months;Population: Bachelors Degree or Higher, Female, Married in The Past 12 Months;The number of females with a bachelor's degree who have been married in the past 12 months;The number of females with a bachelor's degree who were married in the past 12 months;The number of people who are female, have a bachelor's degree, and have been married in the last 12 months;The number of people who are female, have a bachelor's degree, and have been married in the past 12 months;The number of people who are female, have a bachelor's degree, and were married in the past 12 months;how many women with a bachelor's degree or higher got married in the past year?;how many women with a college degree got married in the past year?;what is the number of female college graduates who got married in the past year?;what is the number of female college graduates who tied the knot in the past year?" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_LanguageOtherThanEnglishSpokenAtHome,"Population Aged 25 Years or More with Bachelor's Degree or Higher Language Other Than English;Population: 25 Years or More, Bachelors Degree or Higher, Language Other Than English;percentage of people aged 25 years or more with a bachelor's degree or higher who speak a language other than english;proportion of people aged 25 years or more with a bachelor's degree or higher who are multilingual;share of people aged 25 or older with a bachelor's degree or higher who are bilingual or multilingual;share of people aged 25 years or more with a bachelor's degree or higher who are bilingual" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,"How many men with a bachelor's degree or higher got divorced in the past 12 months?;Number of Males With a Bachelors Degree or Higher Who Divorced in the Past Year;Number of people who are Bachelors Degree or Higher and who are Male and who are Divorced in The Past 12 Months;Population: Bachelors Degree or Higher, Male, Divorced in The Past 12 Months;The number of people who are male, have a bachelor's degree or higher, and have been divorced in the past 12 months;The number of people who are male, have a bachelor's degree or higher, and have been divorced in the past year;The number of people who are male, have a bachelor's degree or higher, and have gone through a divorce in the past 12 months;The number of people who are male, have a bachelor's degree or higher, and were divorced in the past 12 months;the number of male college graduates who divorced in the past year;the number of men with a bachelor's degree or higher who divorced in the past year;the number of men with a college degree who divorced in the past year;the number of men with a post-secondary education who divorced in the past year" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,"How many people have a Bachelor's degree or higher, are male, and got married in the past 12 months?;Number of Males With Bachelors Degree or Higher Who Married in the Past 12 Months;Number of married men with a bachelor's degree in the past 12 months;Number of men with a bachelor's degree who are married in the past 12 months;Number of people who are Bachelors Degree or Higher and who are Male and who are Married in The Past 12 Months;Number of people who are married and have a bachelor's degree and are male in the past 12 months;Number of people who have a Bachelor's degree or higher and are male and have been married in the past 12 months;Population: Bachelors Degree or Higher, Male, Married in The Past 12 Months;number of male college graduates who got married in the past 12 months;number of male college-educated men who got married in the past 12 months;number of men with bachelor's degrees or higher who got married in the past 12 months;number of men with post-secondary education who got married in the past 12 months" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_OnlyEnglishSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Only English;Pure English Speakers Aged 25 Years Or More With Bachelor Degree Or Higher;english-speaking adults 25 and older with a bachelor's degree or higher;english-speaking adults aged 25 and older with a bachelor's degree or higher;native english speakers 25 and older with a bachelor's degree or higher;native english speakers aged 25 and older with a bachelor's degree or higher" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInAdultCorrectionalFacilities,"Population Aged 25 Years or More with a Bachelor's Degree or Higher in Adult Correctional Facilities;Population: 25 Years or More, Bachelors Degree or Higher, Adult Correctional Facilities;the number of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities;the number of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities, as a percentage of the total population;the percentage of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities;the proportion of people aged 25 years or more with a bachelor's degree or higher in adult correctional facilities" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInCollegeOrUniversityStudentHousing,"Population Aged 25 Years or More with Bachelor's Degree or Higher and College or University Student Housing;Population: 25 Years or More, Bachelors Degree or Higher, College or University Student Housing;people aged 25 or older who have a bachelor's degree or higher and live in college or university dorms;people aged 25 or older who have a bachelor's degree or higher and live in college or university housing;people aged 25 or older who have a bachelor's degree or higher and live in college or university residence halls;people aged 25 or older with a bachelor's degree or higher who live in college or university student housing" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInGroupQuarters,"Population With Bachelor's Degree or Higher Aged 25 Years or More In Group Quarters;Population: 25 Years or More, Bachelors Degree or Higher, Group Quarters;number of people with a bachelor's degree or higher aged 25 years or older living in group quarters;percentage of people with a bachelor's degree or higher aged 25 years or older living in group quarters;proportion of people with a bachelor's degree or higher aged 25 years or older living in group quarters;share of people with a bachelor's degree or higher aged 25 years or older living in group quarters" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInInstitutionalizedGroupQuarters,"Population Aged 25 Years or More With Bachelor's Degree or Higher in Institutionalized Group Quarters;Population: 25 Years or More, Bachelors Degree or Higher, Institutionalized Group Quarters;the number of people aged 25 years or older with a bachelor's degree or higher who are living in group quarters, such as prisons, nursing homes, and mental hospitals;the number of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters;the percentage of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters;the proportion of people aged 25 years or older with a bachelor's degree or higher who are living in institutionalized group quarters" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNoninstitutionalizedGroupQuarters,"Population Aged 25 Years or More with a Bachelor's Degree or Higher in Non-Institutionalized Group Quarters;Population: 25 Years or More, Bachelors Degree or Higher, Noninstitutionalized Group Quarters;percentage of people aged 25 or older with a bachelor's degree or higher living in non-institutional group quarters;the number of people aged 25 years or more with a bachelor's degree or higher who are living in non-institutional group quarters;the number of people aged 25 years or more with a bachelor's degree or higher who are not living in nursing homes, prisons, or other group quarters that are not considered to be permanent residences;the number of people aged 25 years or more with a bachelor's degree or higher who are not living institutionalized group quarters" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNursingFacilities,"Nursing Facilities Residents Aged 25 Years or More With Bachelor's Degree or Higher;Population: 25 Years or More, Bachelors Degree or Higher, Nursing Facilities;nursing home residents aged 25 and over who are college graduates;nursing home residents aged 25 and over who have a bachelor's degree or higher;nursing home residents aged 25 and over with a bachelor's degree or higher;people aged 25 and over living in nursing homes with a bachelor's degree or higher" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishOrSpanishCreoleSpokenAtHome,"Population Aged 25 Years or More With Bachelor' Degrees or Higher In Spanish Creole;Population: 25 Years or More, Bachelors Degree or Higher, Spanish or Spanish Creole" -Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_SpanishSpokenAtHome,"Population: 25 Years or More, Bachelors Degree or Higher, Spanish;Spanish Speaking Population Aged 25 Years or More With Bachelor's Degrees or Higher;people who speak spanish and are 25 years old or older with bachelor's degrees or higher;spanish-speaking population aged 25 years or older with bachelor's degrees or higher;the number of spanish-speaking people aged 25 years or older with bachelor's degrees or higher;the percentage of spanish-speaking people aged 25 years or older with bachelor's degrees or higher" -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseAbroad,"Population Aged 25 Years or More in Different House Abroad With Bachelor's Degree;Population: 25 Years or More, Bachelors Degree, Different House Abroad;number of people aged 25 or older living abroad with a bachelor's degree;number of people aged 25 or older who have a bachelor's degree and are living in a foreign country;number of people aged 25 or older who have a bachelor's degree and are not living in their home country;number of people aged 25 or older with a bachelor's degree living outside their home country" -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountyDifferentState,"Population Aged 25 Years Or More In Different Houses, in Different Counties, and in Different States With Bachelor Degree;Population: 25 Years or More, Bachelors Degree, Different House in Different County Different State;prevalence of people aged 25 years or more with a bachelor's degree, by household, county, and state;the prevalence of people aged 25 years or more with a bachelor's degree, by household, county, and state" -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInDifferentCountySameState,"Population Aged 25 Years or More With Bachelor's Degree Living in Different Houses In Different Counties in The Same State;Population: 25 Years or More, Bachelors Degree, Different House in Different County Same State;number of people aged 25 or older with a bachelor's degree living in different houses in different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different houses and different counties in the same state;number of people aged 25 or older with a bachelor's degree who live in different houses in different counties in the same state" -Count_Person_EducationalAttainmentBachelorsDegree_DifferentHouseInSameCounty,"Population Aged 25 Years or More With Bachelor's Degree In Different House in Same County;Population: 25 Years or More, Bachelors Degree, Different House in Same County;number of people aged 25 or older with a bachelor's degree living in a different house in the same county;number of people aged 25 or older with a bachelor's degree who live in a different home in the same county;number of people aged 25 or older with a bachelor's degree who live in a different house in the same county;number of people aged 25 or older with a bachelor's degree who live in a different household in the same county" -Count_Person_EducationalAttainmentDoctorateDegree,How many people have a PhD?;Number of People With a PhD;Number of people with a PhD;Number of people with a doctoral degree;Population: Doctorate Degree;number of people with doctoral degrees;number of people with doctorates;people who are PhDs;people who are doctors of philosophy;population with PhD;population with phd;the number of people who have a doctoral degree;the number of people who have a doctorate;the number of people who have a phd;the number of people who have earned a phd -Count_Person_EducationalAttainmentGedOrAlternativeCredential,Alternative Credential Population;Population: Ged or Alternative Credential;people with alternative credentials;people with non-traditional credentials -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree,Population With Graduate or Professional Degrees;Population: Graduate or Professional Degree;number of people with graduate or professional degrees;number of people with graduate or professional degrees as a percentage of the total population;percentage of population with graduate or professional degrees;share of population with graduate or professional degrees -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseAbroad,"Population Aged 25 Years or More With a Graduate Degree Residing in Different Houses Abroad;Population: 25 Years or More, Graduate or Professional Degree, Different House Abroad;number of people aged 25 or older with a graduate degree living abroad;number of people aged 25 or older with a graduate degree living in different countries;number of people aged 25 or older with a graduate degree living in foreign countries;number of people aged 25 or older with a graduate degree living outside of their home country" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountyDifferentState,"Population Aged 25 Years or More With Graduate or Professional Degrees in Different Houses in Different Counties and Different States;Population: 25 Years or More, Graduate or Professional Degree, Different House in Different County Different State;number of people aged 25 years or more with graduate or professional degrees, by domicile, county, and state;number of people aged 25 years or more with graduate or professional degrees, by house, county, and state;number of people aged 25 years or more with graduate or professional degrees, by household, county, and state;number of people aged 25 years or more with graduate or professional degrees, by residence, county, and state" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInDifferentCountySameState,"Population Aged 25 Years or More In Different House And Different States With Graduate Or Professional Degrees;Population: 25 Years or More, Graduate or Professional Degree, Different House in Different County Same State;number of people aged 25 and older in different states who have graduate or professional degrees;number of people aged 25 and older with graduate or professional degrees in different states;number of people with graduate or professional degrees aged 25 and older in different states;number of people with graduate or professional degrees in different states aged 25 and older" -Count_Person_EducationalAttainmentGraduateOrProfessionalDegree_DifferentHouseInSameCounty,"1 people who are 25 years old or older, have a graduate or professional degree, and live in a different house in the same county;Population Aged 25 Years or More With Graduate or Professional Degree in Different House in Same County;Population: 25 Years or More, Graduate or Professional Degree, Different House in Same County;people who are 25 years or older and have a graduate or professional degree and live in a different house in the same county;people who are 25 years or older, have a graduate or professional degree, and have moved to a different house in the same county;people who are 25 years or older, have a graduate or professional degree, and have moved to a new house in the same county" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency,"High School Graduates Including Equivalency;Population: High School Graduate Includes Equivalency;people who have completed high school, or have passed an equivalency exam;people who have graduated from high school, or have earned an equivalent credential;people who have graduated from high school, or have obtained an equivalent credential;people who have graduated from high school, or have passed an equivalency exam" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseAbroad,"Foreign-Born Population Aged 25 Years or More With High School Graduates Including Equivalency in Different Houses Abroad;Population: 25 Years or More, High School Graduate Includes Equivalency, Different House Abroad;the number of people who were born in a different country and are 25 years old or older who have completed high school or have an equivalent qualification, living in different countries" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountyDifferentState,"High School Graduates Aged 25 Years Or More In Differents Houses And Counties;Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Different County Different State;people who are 25 years old or older and have a high school diploma, living in different households and counties;people who graduated from high school and are 25 years old or older, living in different households and counties;people who have graduated from high school and are at least 25 years old, living in different households and counties;share of people aged 25 or older who have graduated from high school, by county" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInDifferentCountySameState,"Population of High School Graduates Aged 25 Years and Above In Different Houses and County In the Same States;Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Different County Same State;number of people who graduated from high school and are 25 years old or older in different households and counties in the same state;number of people who have a high school certificate and are 25 years old or older in different houses and counties in the same state;number of people who have a high school degree and are 25 years old or older in different residences and counties in the same state;number of people who have completed high school and are 25 years old or older in different dwellings and counties in the same state" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_DifferentHouseInSameCounty,"Population Aged 25 Years or More High School Graduates Including Equivalency Different House in Same County;Population: 25 Years or More, High School Graduate Includes Equivalency, Different House in Same County" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_LanguageOtherThanEnglishSpokenAtHome,"Population Aged 25 Years or More High School Graduates Including Equivalency in English Language;Population: 25 Years or More, High School Graduate Includes Equivalency, Language Other Than English" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_OnlyEnglishSpokenAtHome,"Population Aged 25 Years or More with High School Graduates Includes Equivalency Fluent Only English;Population: 25 Years or More, High School Graduate Includes Equivalency, Only English;number of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;percentage of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;proportion of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english;share of people aged 25 or older who have graduated from high school or obtained an equivalency degree and are fluent in english" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, High School Graduate Includes Equivalency, Spanish or Spanish Creole;Spanish Creole Speaking High School Graduates Or Equivalent Aged 25 Years or More;people who speak spanish creole and are 25 years of age or older and have graduated from high school or equivalent;people who speak spanish creole and have graduated from high school or equivalent, aged 25 years or more;spanish creole speakers who are 25 years of age or older and have completed high school or equivalent;spanish creole speakers who have completed high school or equivalent, aged 25 years or more" -Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_SpanishSpokenAtHome,"Population Aged 25 Years or More High School Graduates Including Equivalency in Spanish;Population: 25 Years or More, High School Graduate Includes Equivalency, Spanish;people 25 and older who have completed high school or obtained an equivalency degree, speaking spanish;people 25 and older who have graduated from high school or obtained an equivalency degree, spanish" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher,Population of High School Graduates or Higher;Population: High School Graduate or Higher;number of people who have completed high school;number of people who have finished high school -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInAdultCorrectionalFacilities,"High School Graduates Aged 25 Years Or More In Adult Correctional Facilities;Population: 25 Years or More, High School Graduate or Higher, Adult Correctional Facilities;the percentage of people aged 25 or older who have a high school diploma and are in a correctional facility;the percentage of people aged 25 or older who have a high school diploma and are incarcerated in adult correctional facilities;the proportion of people aged 25 or older who have a high school diploma and are in prison;the rate of incarceration for people aged 25 or older who have a high school diploma" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInCollegeOrUniversityStudentHousing,"Population Aged 25 Years or More with High School Graduates or Higher in College or University Student Housing;Population: 25 Years or More, High School Graduate or Higher, College or University Student Housing;number of people aged 25 years or more with high school diplomas or higher living in college or university residence halls;number of people aged 25 years or more with high school diplomas or higher living in college or university student housing;number of people aged 25 years or older with high school diplomas or higher living in college or university dormitories;number of people aged 25 years or older with high school diplomas or higher living in college or university housing" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInGroupQuarters,"High School Graduates Population Above 25 Years Old in Group Quarters;Population: 25 Years or More, High School Graduate or Higher, Group Quarters;the number of people above 25 years old who are high school graduates and live in group quarters;the number of people above 25 years old who have a high school diploma and live in group quarters;the number of people above 25 years old who have completed high school and live in group quarters;the number of people above 25 years old who have graduated from high school and live in group quarters" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInInstitutionalizedGroupQuarters,"High School Graduates Aged 25 Years or More in Institutionalized Group Quarters;Population: 25 Years or More, High School Graduate or Higher, Institutionalized Group Quarters;people who are 25 years old or older and have a high school diploma living in group quarters;people who graduated from high school and are 25 years old or older living in group quarters;people who have completed high school and are 25 years old or older living in group settings;people who have graduated from high school and are 25 years old or older living in group quarters, such as prisons, nursing homes, or mental hospitals" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNoninstitutionalizedGroupQuarters,"Population Aged 25 Years or More High School Graduates or Higher in Non-institutionalized Group Quarters;Population: 25 Years or More, High School Graduate or Higher, Noninstitutionalized Group Quarters" -Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNursingFacilities,"Population Aged 25 Years And Above In Nursing Facilities With High School Graduate;Population: 25 Years or More, High School Graduate or Higher, Nursing Facilities;the number of people aged 25 and above in nursing facilities who have completed high school;the percentage of people aged 25 and above in nursing facilities who have a high school diploma;the proportion of people aged 25 and above in nursing facilities who have graduated from high school;the share of people aged 25 and above in nursing facilities who have a high school degree" -Count_Person_EducationalAttainmentKindergarten,Population in Kindergarten;Population: Kindergarten;kids in kindergarten;kindergarten population;number of kids in kindergarten;number of kindergarteners -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,Number of People Without a High School Degree;Population: Less Than High School Graduate;number of people with lower than high school graduation;people who have completed high school;people who have finished high school;people who have graduated from high school;people who have passed high school;population with education level less than high school;population with less than high school graduation -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseAbroad,"Population Aged 25 Years or More with Less Than High School Graduates in Different Houses Abroad;Population: 25 Years or More, Less Than High School Graduate, Different House Abroad;number of people aged 25 or older who have not completed high school and live in different households in other countries;number of people aged 25 or older who have not graduated from high school living in different countries;number of people aged 25 or older who have not graduated from high school living in international locations;number of people aged 25 or older who have not graduated from high school living in other countries" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountyDifferentState,"Population Aged 25 Years or More with Less Than High School Graduates in Different Houses, County, and State;Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Different State;number of people aged 25 or older with less than a high school diploma in different households, counties, and states;percentage of people aged 25 or older with less than a high school diploma in different households, counties, and states;proportion of people aged 25 or older with less than a high school diploma in different households, counties, and states;share of people aged 25 or older with less than a high school diploma in different households, counties, and states" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInDifferentCountySameState,"Population Above 25 Years Old Less Than High School Graduates in Different House, Counties and Same State;Population: 25 Years or More, Less Than High School Graduate, Different House in Different County Same State;people over 25 without a high school diploma in different counties in the same state;percentage of adults over 25 without a high school diploma in different counties in the same state" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_DifferentHouseInSameCounty,"Population Aged 25 Years or More Less Than High School Graduates in Different House in Same County;Population: 25 Years or More, Less Than High School Graduate, Different House in Same County;adults over 25 who are not high school graduates and live in a different house in the same county;people aged 25 or older who have not graduated from high school and have changed their residence within the same county;people aged 25 or older who have not graduated from high school and have moved to a different house in the same county;people aged 25 or older who have not graduated from high school and live in a different house in the same county" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_LanguageOtherThanEnglishSpokenAtHome,"Non-English Speaking Population Aged 25 Years or More Who are Less Than High School Graduates;Population: 25 Years or More, Less Than High School Graduate, Language Other Than English;people who are over 25 and have not completed high school, and who are not english-speaking;people who are over 25 and have not completed high school, and who are not native english speakers;people who are over 25 and have not graduated from high school, and who are not fluent in english;people who are over 25 and have not graduated from high school, and who are not native speakers of english" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_OnlyEnglishSpokenAtHome,"Population Aged 25 Years Or More Who Are Less Than High School Graduates And Only Speak English;Population: 25 Years or More, Less Than High School Graduate, Only English;the number of people in the united states who are 25 years or older, have not completed high school, and only speak english;the number of people in the united states who are 25 years or older, have not graduated from high school, and only speak english;the number of people in the us who are 25 years or older, are high school dropouts, and only speak english;the number of people in the us who are 25 years or older, are less than high school graduates, and only speak english" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishOrSpanishCreoleSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Spanish or Spanish Creole;Spanish or Spanish Creole High School Graduates Aged 25 Years or More;people who graduated from high school in spanish or spanish creole and are 25 years old or older;people who graduated from high school in spanish or spanish creole and are at least 25 years old;spanish-speaking high school graduates who are 25 years old or older;spanish-speaking high school graduates who are at least 25 years old" -Count_Person_EducationalAttainmentLessThanHighSchoolGraduate_SpanishSpokenAtHome,"Population: 25 Years or More, Less Than High School Graduate, Spanish;Spanish Population Aged 25 Years or More with Less Than High School Graduates;the number of spanish people aged 25 or older who are high school dropouts;the number of spanish people aged 25 or older who have not completed high school;the percentage of spanish people aged 25 or older who have not graduated from high school;the proportion of spanish people aged 25 or older who are not high school graduates" -Count_Person_EducationalAttainmentMastersDegree,Master's degree holders;Number of People With a Master's Degree;Number of people with a master's degree;People with a master's degree;People with master's degrees;Population with a master's degree;how many people have a master's degree?;how many people have completed a master's degree?;what is the number of people with a master's degree?;what percentage of people have a master's degree? -Count_Person_EducationalAttainmentNoSchoolingCompleted,Number of People Who Completed No Schooling;Number of people who completed no schooling;Number of people with no formal education;People who have not completed schooling;People who have not finished school;People who have not graduated from school;Percentage of people with no formal education;Population with no completed schooling;number of people who did not complete any schooling;number of people who have never attended school;number of people who have not completed any level of schooling;number of people who have not received any formal education -Count_Person_EducationalAttainmentNurserySchool,Population in Nursery Schools;Population: Nursery School;number of children in nursery schools;number of kids in nursery schools;number of pupils in nursery schools;number of students in nursery schools -Count_Person_EducationalAttainmentPrimarySchool,Population: Primary School;Primary School Population;the number of children attending primary school;the number of kids in primary school;the number of pupils in primary school;the number of students in primary school -Count_Person_EducationalAttainmentProfessionalSchoolDegree,Population With Professional School Degrees;Population: Professional School Degree;number of people with professional school degrees;percentage of the population with professional school degrees;proportion of the population with professional school degrees;share of the population with professional school degrees -Count_Person_EducationalAttainmentRegularHighSchoolDiploma,High school diploma holders;Number of People With a Regular High School Diploma;Number of people with a regular high school diploma;People who have a high school diploma;People with a high school diploma;Population with a high school diploma;number of people who have a high school education;number of people with a high school diploma;number of people with a regular high school diploma -Count_Person_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree,Population Aged 1 or More Years From Some Colleges With No Degrees;Population: Some College 1 or More Years No Degree -Count_Person_EducationalAttainmentSomeCollegeLessThan1Year,Population Who Attended Some College For Less Than 1 Year;Population: Some College Less Than 1 Year;people who attended college for less than a year -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,Number of People With a College Degree or Associates Degree;Number of people with a college degree or higher;Number of people with a postsecondary degree;Number of people with an associate's degree or higher;Percentage of people with a college degree;Percentage of people with an associate's degree;Population: Some College or Associates Degree;number of people with associated degrees;number of people with college degrees;people who have attended college or earned an associate's degree;people who have college degrees;people who have some college or associate's degrees;people who have some post-secondary education;people with some college or associate's degrees;population with college degrees;population with college or associates degree -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseAbroad,"25 years old or older, some college or associate's degree, living in a country other than one's home country;25 years or older, some college or an associate's degree, and living outside of their home country;Population Aged 25 Years or More With Some College or Associate's Degree in Different House Abroad;Population: 25 Years or More, Some College or Associates Degree, Different House Abroad" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountyDifferentState,"Population Aged 25 Years or More With Some College or Associate's Degree Living in Different Houses in Different Counties And Different States;Population: 25 Years or More, Some College or Associates Degree, Different House in Different County Different State;the number of people aged 25 or older who have some college or an associate's degree and live in different households in different counties and different states;the number of people aged 25 or older who have some college or an associate's degree and live in different houses in different counties and different states;the population of people aged 25 or older who have some college or an associate's degree and live in different locations;the population of people aged 25 or older who have some college or an associate's degree and live in different places" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInDifferentCountySameState,"Population Aged 25 Years or More With Some College or Associate's Degree Different House in Different County Same State;Population: 25 Years or More, Some College or Associates Degree, Different House in Different County Same State;people aged 25 or older with some college or an associate's degree who have changed their address to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have moved house to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have moved to a different house in a different county in the same state;people aged 25 or older with some college or an associate's degree who have relocated to a different house in a different county in the same state" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_DifferentHouseInSameCounty,"Population Aged 25 Years or More With Some College or Associate's Degrees in Different Houses in The Same County;Population: 25 Years or More, Some College or Associates Degree, Different House in Same County;number of people aged 25 years or more with some college or associate's degrees living in different dwellings in the same county;number of people aged 25 years or more with some college or associate's degrees living in different homes in the same county;number of people aged 25 years or more with some college or associate's degrees living in different households in the same county;number of people aged 25 years or more with some college or associate's degrees living in separate houses in the same county" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_LanguageOtherThanEnglishSpokenAtHome,"Population Aged 25 Years or More Speaking Languages Other Than English;Population: 25 Years or More, Some College or Associates Degree, Language Other Than English;people aged 25 or older who speak languages other than english;the number of people aged 25 or older who speak languages other than english;the percentage of people aged 25 or older who speak languages other than english;the proportion of people aged 25 or older who speak languages other than english" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_OnlyEnglishSpokenAtHome,"Population Aged 25 Years or More Who Speaks Only English with Some College or Associate's Degrees;Population: 25 Years or More, Some College or Associates Degree, Only English;the number of people aged 25 or older who speak only english and have some college or associate's degree;the percentage of people aged 25 or older who speak only english and have some college or associate's degree;the proportion of people aged 25 or older who speak only english and have some college or associate's degree;the share of people aged 25 or older who speak only english and have some college or associate's degree" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishOrSpanishCreoleSpokenAtHome,"25 years or older, some college or an associate's degree, and spanish or spanish creole speakers;Population: 25 Years or More, Some College or Associates Degree, Spanish or Spanish Creole;Spanish or Spanish Creole Population Aged 25 Years or More Some College or Associate's Degree;individuals who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole;people who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole;those who are 25 years or older, have some college or an associate's degree, and speak spanish or spanish creole" -Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree_SpanishSpokenAtHome,"Population: 25 Years or More, Some College or Associates Degree, Spanish;Spanish Population Aged 25 Years or More With Some College or Associate's Degrees;the number of spanish people aged 25 years or more with some college or associate's degrees, expressed as a percentage of the total spanish population;the number of spanish people aged 25 years or more with some college or associate's degrees, expressed as a proportion of the total spanish population;the percentage of the spanish population aged 25 years or more with some college or associate's degrees;the proportion of the spanish population aged 25 years or more with some college or associate's degrees" -Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma,Number of People Who Completed Between 9th to 12th Grade With No Diploma;Number of people who are 9th To 12th Grade No Diploma;Population: 9th To 12th Grade No Diploma;number of people who completed 9th to 12th grade but did not earn a diploma;the number of people who completed 9th to 12th grade but did not receive a diploma -Count_Person_EducationalAttainment_LessThan9ThGrade,Number of People Who Completed Less Than 9th Grade;Number of people who are Less Than 9th Grade;Population: Less Than 9th Grade;The number of people who are in kindergarten through 8th grade;The number of people who are not in 9th grade or higher;The number of people who are younger than 9th grade;the number of people who did not complete 9th grade;the number of people who have not completed 9th grade -Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,Number of People Who Did Not Receive a High School Diploma;Number of people who are Less Than High School Diploma;Number of people who did not complete high school;Number of people who have not earned a high school diploma;Number of people who have not graduated from high school;Population: Less Than High School Diploma;the number of people who did not complete high school;the number of people who did not earn a high school diploma;the number of people who did not graduate from high school;the number of people who do not have a high school diploma -Count_Person_EducationalAttainment_SomeCollegeNoDegree,Number of People Who Went to College but Did Not Receive a Degree;Number of people who are Some College No Degree;Number of people who have attended college but have not completed a degree;Number of people who have some college but no degree;Number of people who have some college education but no degree;Number of people who have some college experience but no degree;Number of people who have taken some college courses but do not have a degree;Population: Some College No Degree;the number of college dropouts;the number of people who attended college but did not earn a degree;the number of people who left college without graduating;the number of people who started college but never finished -Count_Person_Employed,1 People who are currently employed;Number of employed people;Number of people who are currently employed;Population With Current Employment;Population with current employment;current workforce;number of people currently employed;number of people who are currently employed;number of people with current employment -Count_Person_Employed_NACE/A,"Population Employed in Agriculture Forestry And Fishing;Population: Agriculture, Forestry And Fishing;agriculture, forestry, and fishing population" -Count_Person_Employed_NACE/B-E,Population Employed in Industry Except Construction;Population: Industry (except Construction);the workforce in industries other than construction -Count_Person_Employed_NACE/C,Population Employed in Manufacturing;Population: Manufacturing;the manufacturing workforce;the number of people who make things;the number of people who work in manufacturing;the workforce in manufacturing -Count_Person_Employed_NACE/F,Population Employed in Construction;Population: Construction -Count_Person_Employed_NACE/G-I,"Population Employed in Wholesale And Retail Trade Transport Accommodation And Food Service;Population: Wholesale And Retail Trade, Transport, Accommodation And Food Service;the number of people employed in wholesale and retail trade, transport, accommodation, and food service;the number of people who have jobs in wholesale and retail trade, transport, accommodation, and food service;the number of people working in wholesale and retail trade, transport, accommodation, and food service;the workforce in wholesale and retail trade, transport, accommodation, and food service" -Count_Person_Employed_NACE/G-J,"Population Employed in Wholesale And Retail Trade Transport Accommodation And Food Service Activities Information And Communication;Population: Wholesale And Retail Trade, Transport, Accommodation And Food Service Activities, Information And Communication;the four largest sources of revenue in the us are wholesale and retail trade, transport, accommodation and food service activities, and information and communication" -Count_Person_Employed_NACE/J,Population Employed in Information And Communication;Population: Information And Communication;information and communication technologies and the population;the population that uses information and communication technologies -Count_Person_Employed_NACE/K,Population Employed in Financial And Insurance Activities;Population: Financial And Insurance Activities -Count_Person_Employed_NACE/K-N,"Population Employed in Financial Real Estate Professional Scientific Technical Administrative And Support Activities;Population: Financial, Real Estate, Professional, Scientific, Technical, Administrative, And Support Activities;financial, real estate, professional, scientific, technical, administrative, and support activities;financial, real estate, professional, scientific, technical, administrative, and support activities are the most common occupations;people who work in financial, real estate, professional, scientific, technical, administrative, and support activities make up the majority of the population;the population of the united states is made up of people who work in financial, real estate, professional, scientific, technical, administrative, and support activities" -Count_Person_Employed_NACE/L,Population Employed in Real Estate Activities;Population: Real Estate Activities;population and real estate activities;real estate activities and population;real estate activities in relation to population;the relationship between population and real estate activities -Count_Person_Employed_NACE/M-N,"Population Employed in Professional Scientific And Technical Activities Administrative And Support Service Activities;Population: Professional, Scientific And Technical Activities, Administrative And Support Service Activities;population: professional, scientific and technical activities, administrative and support service activities" -Count_Person_Employed_NACE/O-Q,"Population Employed in Public Administration Defence Education Human Health And Social Work Activities;Population: Public Administration, Defence, Education, Human Health And Social Work Activities;administration, defense, education, healthcare, and social welfare;government, armed forces, schools, hospitals, and social services;public administration, defence, education, human health and social work activities;public sector, military, education, healthcare, and social work" -Count_Person_Employed_NACE/O-U,"Population Employed in Public Administration And Defence Compulsory Social Security Education Human Health And Social Work Activities Arts Entertainment And Recreation;Population: Public Administration And Defence, Compulsory Social Security, Education, Human Health And Social Work Activities, Arts, Entertainment And Recreation;government, social security, schools, hospitals, museums, movies and sports;public administration and defense, compulsory social security, education, human health and social work activities, arts, entertainment and recreation;the government, social security, schools, hospitals, museums, movies and sports;the public sector, social security, education, health care, culture and recreation" -Count_Person_Employed_NACE/R-U,"Population Employed in Arts Entertainment Recreation Other Service Household And Extra-territorial Organizations And Bodies Activities;Population: Arts, Entertainment, Recreation, Other Service, Household, And Extra-territorial Organizations And Bodies Activities;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies fields;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies industries;activities in the arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies sectors;activities related to arts, entertainment, recreation, other services, households, and extra-territorial organizations and bodies" -Count_Person_EnrolledInCollegeOrGraduateSchool,"Population Aged 3 Years or More Enrolled in Colleges;Population: 3 Years or More, Enrolled in College or Graduate School;number of college students aged 3 or older;number of people aged 3 or older enrolled in higher education;number of people aged 3 or older enrolled in post-secondary education;number of people enrolled in colleges aged 3 or older" -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInAdultCorrectionalFacilities,"Males In Adult Correctional Facilities For 3 Years Or More Enrolled In College Or Graduate School;Population: 3 Years or More, Enrolled in College or Graduate School, Adult Correctional Facilities;male inmates who have been incarcerated for three years or more who are taking college or graduate courses;male prisoners who have been locked up for three years or more who are studying at a university or college;men who have been in jail for three years or more who are pursuing higher education;men who have been in prison for three years or more who are enrolled in college or graduate school" -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInCollegeOrUniversityStudentHousing,"Population Aged 3 Years or More Enrolled in College or Graduate School With College or University Student Housing;Population: 3 Years or More, Enrolled in College or Graduate School, College or University Student Housing;number of people aged 3 years or more enrolled in college or graduate school who are living in college or university student housing;number of people aged 3 years or more enrolled in college or graduate school who have college or university student housing;number of people aged 3 years or more enrolled in college or graduate school who live in college or university student housing;number of people aged 3 years or more enrolled in college or graduate school with college or university student housing" -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInGroupQuarters,"Population Aged 3 Years or More Enrolled in College or Graduate School in Group Quarters;Population: 3 Years or More, Enrolled in College or Graduate School, Group Quarters;number of people aged 3 years or more enrolled in college or graduate school in group quarters;number of people aged 3 years or more enrolled in college or graduate school who are living in boarding houses, hotels, or other types of group quarters;number of people aged 3 years or more enrolled in college or graduate school who live in group quarters;number of people aged 3 years or older enrolled in college or graduate school living in group quarters" -Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNursingFacilities,"Population Aged 3 Years or More Enrolled in Public College or Graduate School in Nursing Facilities;Population: 3 Years or More, Enrolled in College or Graduate School, Nursing Facilities;number of people aged 3 years or more enrolled in public college or graduate school in nursing facilities;number of people aged 3 years or older enrolled in public college or graduate school in nursing facilities;number of people enrolled in public college or graduate school in nursing facilities who are 3 years of age or older;number of people enrolled in public college or graduate school in nursing facilities who are aged 3 years or more" -Count_Person_EnrolledInCollegeUndergraduateYears,Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years -Count_Person_EnrolledInKindergarten,Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten -Count_Person_EnrolledInSchool,How many people are in school?;Number of People Currently Enrolled in School;Number of children in school;Number of people currently enrolled in school;Number of people enrolled in school;Number of people in education;Number of people in higher education;Number of people in school;Number of students in school;Population: Enrolled in School;The number of people enrolled in school;The number of students in school;The school population;how many people are currently enrolled in school?;how many people are enrolled in school right now?;what is the current enrollment in school?;what is the total number of people enrolled in school? -Count_Person_Female,Female population;Number of Females;Number of people who are Female;Population: Female;The female population;The number of females;The number of people who identify as female;The number of women;count of females;count of women and girls;female headcount;female population;how many women are there;number of women -Count_Person_Female_AbovePovertyLevelInThePast12Months,"Number of Females Who Are Above Poverty Level in the Past Year;Number of people who are Female and who are Above Poverty Level in The Past 12 Months;Population: Female, Above Poverty Level in The Past 12 Months;The number of females who were above the poverty line in the past 12 months;The number of people who were female and above the poverty line in the past 12 months;The number of people who were female and not in poverty in the past 12 months;The number of women who were above the poverty line in the past 12 months;number of women who had an income above the poverty line in the past year;number of women who were not experiencing economic hardship in the past year;number of women who were not living in poverty in the past year;number of women who were not poor in the past year" -Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are American Indian or Alaska Native Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are American Indian or Alaska Native Alone;Population: Female, Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native females who were above the poverty level in the past 12 months;The number of American Indian or Alaska Native females who were not experiencing financial hardship in the past 12 months;The number of American Indian or Alaska Native females who were not poor in the past 12 months;The number of American Indian or Alaska Native women who were above the poverty level in the past 12 months;The number of American Indian or Alaska Native women who were not living in poverty in the past 12 months;number of american indian or alaska native women who had a household income above the poverty line in the past 12 months;number of american indian or alaska native women who had an income above the poverty line in the past 12 months;number of american indian or alaska native women who were above the poverty level in the past 12 months;number of american indian or alaska native women who were not poor in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,"Number of Asian women who were above the poverty level in the past 12 months;Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Asian Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Asian Alone;Population: Female, Above Poverty Level in The Past 12 Months, Asian Alone;The number of Asian females who were above the poverty level in the past 12 months;The number of Asian women who were above the poverty level in the past 12 months;the number of asian women who were above the poverty line in the past 12 months;the number of asian women who were not experiencing financial hardship in the past 12 months;the number of asian women who were not living in poverty in the past 12 months;the number of asian women who were not poor in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are African American Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Black or African American Alone;Population: Female, Above Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American females who were not below the poverty level in the past 12 months;The number of Black or African American females who were not living in poverty in the past 12 months;The number of Black or African American women who are above the poverty level in the past 12 months;The number of Black or African American women who were above the poverty level in the past 12 months;The number of Black or African American women who were not poor in the past 12 months;number of african american women above poverty level in the past 12 months;number of african american women not living in poverty in the past 12 months;number of african american women with an income that is not below the poverty line in the past 12 months;number of african american women with income above the poverty line in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"How many Hispanic or Latino women were above the poverty level in the past 12 months?;Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Hispanic Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Hispanic or Latino;Population: Female, Above Poverty Level in The Past 12 Months, Hispanic or Latino;The number of Hispanic or Latino females who were above the poverty level in the past 12 months;the number of hispanic women who were above the poverty level in the past 12 months;the number of hispanic women who were not experiencing financial hardship in the past 12 months;the number of hispanic women who were not living in poverty in the past 12 months;the number of hispanic women who were not poor in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are Native Hawaiian or Other Pacific Islanders Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone;Population: Female, Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;The number of Native Hawaiian or Other Pacific Islander Alone females who were above the poverty level in the past 12 months;number of native hawaiian or other pacific islander women who were above the poverty level in the past 12 months;the number of native hawaiian or other pacific islander women who were above the poverty line in the past 12 months;the number of native hawaiian or other pacific islander women who were not experiencing economic hardship in the past 12 months;the number of native hawaiian or other pacific islander women who were not poor in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of People Who Are Female and Who Are Above Poverty Level in the Past 12 Months and Who Are From an Unclassified Race Alone;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Some Other Race Alone;Population: Female, Above Poverty Level in The Past 12 Months, Some Other Race Alone;the number of females who are above the poverty level in the past 12 months and who are from an unclassified race alone;the number of people who are female, above the poverty level in the past 12 months, and from an unclassified race alone;the number of people who are women, above the poverty level in the past 12 months, and from an unclassified race alone;the number of women who are above the poverty level in the past 12 months and who are from an unclassified race alone" -Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"Number of People Females Who Are Above Poverty Level in the Past 12 Months and Who Are Multi Racial;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are Two or More Races;Population: Female, Above Poverty Level in The Past 12 Months, Two or More Races;number of female multi-racial americans who were above the poverty level in the past 12 months;number of female multi-racial people who were above the poverty level in the past 12 months;number of multi-racial females who were above the poverty level in the past 12 months;number of multi-racial women who were above the poverty level in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,"Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are White Alone;Number of White Alone females above poverty level in the past 12 months;Number of White Alone females not in poverty in the past 12 months;Number of White Alone women above poverty level in the past 12 months;Number of White Alone women not in poverty in the past 12 months;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are White Alone;Population: Female, Above Poverty Level in The Past 12 Months, White Alone;number of white females above the poverty line in the past 12 months;number of white females with an income above the poverty line in the past 12 months;number of white women above poverty level in the past 12 months;number of white women with an income above the poverty line in the past 12 months" -Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of Females Who Are Above Poverty Level in the Past 12 Months and Who Are White Alone Not Hispanic or Latino;Number of White Alone Non-Hispanic or Latino females who are above poverty level in the past 12 months;Number of White Alone Non-Hispanic or Latino females who are not poor in the past 12 months;Number of White Alone Non-Hispanic or Latino females who have an income above the poverty line in the past 12 months;Number of people who are Female and who are Above Poverty Level in The Past 12 Months and who are White Alone Not Hispanic or Latino;Population: Female, Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of White Alone Not Hispanic or Latino females who were above the poverty level in the past 12 months;The number of White Alone, Not Hispanic or Latino females who were above the poverty level in the past 12 months;number of white women who are not hispanic or latino and who are above the poverty level in the past 12 months;number of white women who are not hispanic or latino and who are not experiencing financial hardship in the past 12 months;number of white women who are not hispanic or latino and who are not poor in the past 12 months;number of white women who are not hispanic or latino and who have an income above the poverty level in the past 12 months" -Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of American Indian and Alaska Native females;Number of American Indian and Alaska Native women;Number of Female American Indian and Alaska Natives;Number of Females Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of people who are Female and who are American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Female, American Indian And Alaska Native Alone or In Combination With One or More Other Races;The number of American Indian and Alaska Native women;The number of females who are American Indian and Alaska Native alone or in combination with one or more other races;number of american indian and alaska native females;number of american indian and alaska native women;number of females who are american indian or alaska native alone or in combination with one or more other races;number of females who identify as american indian and alaska native" -Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,"Number of American Indian or Alaska Native females;Number of Female American Indian or Alaska Natives;Number of Female American Indians or Alaska Natives;Number of Females Who Are American Indian or Alaska Native Alone;Number of people who are Female and who are American Indian or Alaska Native Alone;Population: Female, American Indian or Alaska Native Alone;The number of females who are American Indian or Alaska Native Alone;number of american indian or alaska native females;number of females who are american indian or alaska native;number of females who are american indian or alaska native only" -Count_Person_Female_AsianAlone,"Female Asian Alone population;Number of Females Who Are Asian Alone;Number of people who are Female and who are Asian Alone;Population: Female, Asian Alone;the number of females who are asian alone" -Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Asian women;Number of Females Who Are Asian Alone or in Combination With One or More Other Races;Number of females who are Asian;Number of females who are Asian alone or in combination with one or more other races;Number of people who are Female and who are Asian Alone or In Combination With One or More Other Races;Number of women who are Asian alone or in combination with one or more other races;Population: Female, Asian Alone or In Combination With One or More Other Races;The number of Asian women in the United States;the number of females who are asian alone or in combination with one or more other races;the number of females who are asian american;the number of females who are of asian descent;the number of females who identify as asian" -Count_Person_Female_AsianOrPacificIslander,"Number of Females Who Are Asian or Pacific Islander;Number of people who are Female and who are Asian or Pacific Islander;Population: Female, Asian or Pacific Islander;The number of Asian or Pacific Islander females;The number of females who are Asian or Pacific Islander;The number of people who are both Asian or Pacific Islander and female;The number of people who are female and Asian or Pacific Islander;the number of asian or pacific islander females;the number of asian or pacific islander women;the number of females identifying as asian or pacific islander;the number of females who are asian or pacific islander" -Count_Person_Female_BelowPovertyLevelInThePast12Months,"Number of Females Who Are Below Poverty Level in the Last Year;Number of females below the poverty line in the past 12 months;Number of people who are Female and who are Below Poverty Level in The Past 12 Months;Population: Female, Below Poverty Level in The Past 12 Months;how many women were living below the poverty line in the last year?;the number of females living below the poverty line in the last year;the number of females with an income below the poverty line in the last year;what was the percentage of women living below the poverty line in the last year?" -Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Number of American Indian or Alaska Native Alone females below the poverty level in the past 12 months;Number of American Indian or Alaska Native Alone females with incomes below the poverty line in the past 12 months;Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are American Indian or Alaska Native Alone;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are American Indian or Alaska Native Alone;Population: Female, Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native Alone females living below the poverty level in the past 12 months;The number of American Indian or Alaska Native women living below the poverty line in the past 12 months;number of american indian or alaska native females living below the poverty line in the past 12 months;number of american indian or alaska native women living below the poverty line in the past 12 months;number of american indian or alaska native women with incomes below the poverty line in the past 12 months;the number of american indian or alaska native women living below the poverty line in the past 12 months" -Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,"Number of Asian females below the poverty line in the past 12 months;Number of Females Who Are Below Poverty Level in the Past Year and Who Are Asian Alone;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Asian Alone;Population: Female, Below Poverty Level in The Past 12 Months, Asian Alone;the number of asian women living below the poverty line in the past year;the number of asian women living in poverty in the past year;the number of asian women who are low-income in the past year;the number of asian women who are poor in the past year" -Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Number of Females Who Are Below Poverty Level in the Last Year and Who Are African American Alone;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Black or African American Alone;Population: Female, Below Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American women who are living in poverty;The number of Black or African American women who are poor;the number of african american females living in poverty in the last year;the number of african american women living below the poverty line in the last year;the number of african american women living in economic hardship in the last year;the number of african american women with an income below the poverty line in the last year" -Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Number of Females Who Are Below Poverty Level in the Last Year and Who Are Hispanic;Number of Hispanic or Latino women who are living in poverty;Number of Hispanic or Latino women who are poor;Number of Hispanic or Latino women with low income;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Hispanic or Latino;Population: Female, Below Poverty Level in The Past 12 Months, Hispanic or Latino;how many hispanic females were below the poverty level last year?;the number of hispanic females below the poverty line in the last year;the number of hispanic females with an income below the poverty line in the last year;the number of hispanic women living in poverty in the last year" -Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Females Who Are Below Poverty Level in the Last Year and Who Are Native Hawaiian or Other Pacific Islander Alone;Number of Native Hawaiian or Other Pacific Islander Alone women who are experiencing economic hardship;Number of Native Hawaiian or Other Pacific Islander Alone women who are living in poverty;Number of Native Hawaiian or Other Pacific Islander Alone women who are poor;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Native Hawaiian or Other Pacific Islander Alone;Population: Female, Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;number of native hawaiian or other pacific islander alone females living below the poverty level in the last year;number of native hawaiian or other pacific islander alone females with an income below the poverty line in the last year;the number of native hawaiian or other pacific islander women living below the poverty line in the last year;the number of native hawaiian or other pacific islander women who are living in poverty" -Count_Person_Female_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are Some Other Race Alone;Number of females below the poverty line in the past 12 months who are of some other race alone;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Some Other Race Alone;Population: Female, Below Poverty Level in The Past 12 Months, Some Other Race Alone;The number of females below the poverty level in the past 12 months who are some other race alone;The number of females who are below the poverty level in the past 12 months and who are some other race alone;The number of females who were below the poverty line in the past 12 months and who are some other race alone;number of females below poverty level in the past 12 months who are some other race alone;number of females living below the poverty line in the past 12 months who are of some other race alone;number of females living in poverty in the past 12 months who are of some other race alone;number of females who are below the poverty level in the past 12 months and who are of some other race alone" -Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are Two or More Races;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are Two or More Races;Population: Female, Below Poverty Level in The Past 12 Months, Two or More Races;The number of people who are female, below the poverty level in the past 12 months, and identify as two or more races;The number of people who are female, below the poverty line in the past 12 months, and identify as two or more races;The number of people who are female, below the poverty line in the past 12 months, and who identify as two or more races;The number of people who are female, identify as two or more races, and were below the poverty level in the past 12 months;The number of people who were below the poverty level in the past 12 months, identify as two or more races, and are female;number of females who are below the poverty line in the past 12 months and who identify as two or more races;number of females who are below the poverty line in the past 12 months and who identify with more than one ethnicity;number of females who are below the poverty line in the past 12 months and who identify with more than one race;the number of women who are below the poverty line and are two or more races in the past 12 months" -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,"Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are White Alone;Number of White Alone females below the poverty level in the past 12 months;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are White Alone;Population: Female, Below Poverty Level in The Past 12 Months, White Alone;The number of White Alone females who were below the poverty level in the past 12 months;The number of white females living below the poverty line in the past 12 months;The number of white women living below the poverty line in the past 12 months;number of white females below the poverty line in the past 12 months;number of white females with an income below the poverty line in the past 12 months;number of white females with an income insufficient to meet basic needs in the past 12 months;number of white females with an income that is below the federal poverty level in the past 12 months" -Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of Females Who Are Below Poverty Level in the Past 12 Months and Who Are White Alone Not Hispanic or Latino;Number of people who are Female and who are Below Poverty Level in The Past 12 Months and who are White Alone Not Hispanic or Latino;Population: Female, Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of White Alone, Not Hispanic or Latino females living below the poverty level in the past 12 months;The number of White Alone, Not Hispanic or Latino women living below the poverty level in the past 12 months;The number of female White Alone Not Hispanic or Latino people who lived in poverty in the past 12 months;The number of female White Alone Not Hispanic or Latino people who were below the poverty level in the past 12 months;The number of females who were below the poverty level in the past 12 months and who are white alone, not Hispanic or Latino;number of white alone, not hispanic or latino females below the poverty level in the past 12 months;number of white alone, not hispanic or latino females living in poverty in the past 12 months;number of white alone, not hispanic or latino females with an income below the poverty line in the past 12 months" -Count_Person_Female_BlackOrAfricanAmericanAlone,"Number of Females Who Are Black or African American Alone;Number of people who are Female and who are Black or African American Alone;Population: Female, Black or African American Alone;number of black or african american females living in the united states;the number of females who are black or african american alone" -Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"How many Black or African American women are there in the United States?;Number of Females Who Are Black or African American Alone or in Combination With One or More Other Races;Number of people who are Female and who are Black or African American Alone or In Combination With One or More Other Races;Population: Female, Black or African American Alone or In Combination With One or More Other Races;The number of Black or African American females;The number of Black or African American women;The number of Black or African American women in the US;number of black or african american females;number of black or african american women;number of females who are black or african american, alone or in combination with one or more other races;number of females who are of black or african american descent" -Count_Person_Female_ConditionArthritis,"Population: Female, Arthritis" -Count_Person_Female_ConditionDiseasesOfHeart,"Population: Female, Diseases of Heart" -Count_Person_Female_DidNotWork,"Non-Working Female Population Aged 16 to 64 Years;Population: 16 - 64 Years, Female, Did Not Work;female non-working population aged 16 to 64;female population not in the workforce aged 16 to 64;females who are not in the workforce and are aged 16 to 64;women who are not working and are aged 16 to 64" -Count_Person_Female_Divorced,"Divorced Female Population;Population: Female, Divorced" -Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,"Number of Females Who Are Divorced in the Past 12 Months and Who Are Below Poverty Level in the Past 12 Months;Number of female divorcees below poverty level in the past 12 months;Number of people who are Female and who are Divorced in The Past 12 Months and who are Below Poverty Level in The Past 12 Months;Number of women who have been divorced in the past 12 months and are below the poverty line;Population: Female, Divorced in The Past 12 Months, Below Poverty Level in The Past 12 Months;The number of women who have been divorced in the past 12 months and are below the poverty line;number of divorced females living below the poverty line in the past 12 months;number of females who have been divorced in the past 12 months and are currently experiencing poverty;number of females who have been divorced in the past 12 months and are currently living below the poverty line;number of females who have been divorced in the past 12 months and are currently living in poverty" -Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,"Number of Females Who Are Divorced in the Past 12 Months and Who Are Poverty Status Determined;Number of female divorcees in the past 12 months who have been determined to be in poverty;Number of female divorcees who have been determined to be in poverty in the past 12 months;Number of female divorcees who have been determined to be living in poverty in the past 12 months;Number of people who are Female and who are Divorced in The Past 12 Months and who are Poverty Status Determined;Number of women who have been divorced in the past 12 months and have been determined to be in poverty;Number of women who have been divorced in the past 12 months and have been determined to be living in poverty;Population: Female, Divorced in The Past 12 Months, Poverty Status Determined;number of females who have been divorced in the past 12 months and have been determined to be in poverty;number of females who have been divorced in the past 12 months and have been determined to be living in poverty;the number of divorced women in the past 12 months who are living in poverty;the number of women who have been divorced in the past year and are living in poverty" -Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,"Number of Females Who Are Divorced in the Past 12 Months and Who Are Household;Number of people who are Female and who are Divorced in The Past 12 Months and who are Household;Population: Female, Divorced in The Past 12 Months, Household;The number of female heads of household who have been divorced in the past 12 months;The number of female heads of household who have been divorced in the past year;The number of women who are divorced and who are heads of household in the past 12 months;The number of women who are divorced and who are heads of household in the past year;The number of women who have been divorced in the past 12 months and who are heads of household;number of female heads of household who have been divorced in the past 12 months;number of female household heads who have been divorced in the past 12 months;number of females who are the head of their household and have been divorced in the past 12 months;number of females who have been divorced in the past 12 months and are the head of household" -Count_Person_Female_ForeignBorn,"Female foreign-born population;Number of Foreign Born Females;Number of females who are foreign-born;Number of foreign-born females;Number of foreign-born women;Number of people who are Female and who are Foreign Born;Population: Female, Foreign Born;number of females who are foreign-born;number of females who were born in another country;the number of females who are foreign-born;the number of women who were born in another country" -Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,"Number of Females Born in Africa;Number of African female immigrants;Number of African-born female immigrants;Number of female foreign-born Africans;Number of female immigrants from Africa;Number of foreign-born African women;Number of people who are Female and who are Foreign Born and who are Africa;Population: Female, Foreign Born, Africa;number of baby girls born in africa;number of female births in africa;number of females born in africa;number of girls born in africa" -Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,"Number of Asian foreign-born females;Number of Female foreign-born Asian people;Number of Females Born in Asia;Number of female foreign-born Asians;Number of females who are Asian and foreign-born;Number of foreign-born Asian females;Number of people who are Female and who are Foreign Born and who are Asia;Population: Female, Foreign Born, Asia;number of baby girls born in asia;number of female babies born in asia;number of females born in asia;number of girls born in asia" -Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean,"Number of Females Born in the Carribean;Number of people who are Female and who are Foreign Born and who are Caribbean;Population: Female, Foreign Born, Caribbean;number of females born in the caribbean;the number of females born in the caribbean" -Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Number of Females Born in Central American Countries Other Than Mexico;Number of Central American women who are foreign born;Number of Central American women who are not from Mexico;Number of foreign-born Central American women;Number of people who are Female and who are Foreign Born and who are Central America Except Mexico;Number of women who are foreign born from Central America;Population: Female, Foreign Born, Central America Except Mexico;The number of Central American women who were born outside of the United States;how many females were born in central american countries other than mexico?;what is the female population of central american countries other than mexico?;what is the number of females born in central america excluding mexico?;what is the number of females born in central american countries other than mexico?" -Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,"Number of Females Born in Eastern Asia;Number of people who are Female and who are Foreign Born and who are Eastern Asia;Population: Female, Foreign Born, Eastern Asia;The number of Eastern Asian female foreign-born people;The number of Eastern Asian female immigrants;The number of female foreign-born people from Eastern Asia;The number of female immigrants from Eastern Asia;The number of foreign-born Eastern Asian women;female births in eastern asia;the number of female babies born in eastern asia;the number of female births in eastern asia;the number of girls born in eastern asia" -Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,"Number of European female foreign-born residents;Number of European females who were born outside the US;Number of Females Born in Europe;Number of females who are European and were born outside the US;Number of foreign-born European females;Number of foreign-born females who are from Europe;Number of people who are Female and who are Foreign Born and who are Europe;Population: Female, Foreign Born, Europe;number of female babies born in europe;number of female births in europe;number of females born in europe;number of girls born in europe" -Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,"Number of Females Born in Latin America;Number of Latin American female immigrants;Number of Latin American women who are foreign-born;Number of female Latin American immigrants;Number of female foreign-born Latin Americans;Number of foreign-born Latin American women;Number of people who are Female and who are Foreign Born and who are Latin America;Population: Female, Foreign Born, Latin America;number of female births in latin america;number of female births in latin america and the caribbean;number of females born in the latin american region;number of girls born in latin america" -Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,"Number of Females Born in Mexico;Number of Mexican female immigrants;Number of Mexican-born females;Number of Mexican-born females living in the US;Number of females born in Mexico who are living in the US;Number of foreign-born women from Mexico;Number of people who are Female and who are Foreign Born and who are Country/ MEX;Population: Female, Foreign Born, Country/MEX;number of baby girls born in mexico;number of female births in mexico;number of females born in mexico;number of girls born in mexico" -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,"Number of Females Born in North America;Number of female foreign-born people in North America;Number of people who are Female and who are Foreign Born and who are Northamerica;Population: Female, Foreign Born, Northamerica;The number of North American women who were born outside of North America;The number of female North Americans who were born outside of North America;The number of female foreign-born North Americans;The number of foreign-born North American women;number of baby girls born in north america;number of female babies born in north america;number of female births in north america;number of females born in north america" -Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"How many people are female, foreign-born, and from Northern Western Europe?;Number of Females Born in North Western Europe;Number of female foreign nationals from Northern Western Europe;Number of female foreign-born people from Northern Western Europe;Number of female immigrants from Northern Western Europe;Number of people who are Female and who are Foreign Born and who are Northern Western Europe;Number of women who were born in Northern Western Europe and who now live in the United States;Population: Female, Foreign Born, Northern Western Europe;number of female births in northwestern europe;number of female children born in northwestern europe;number of females born in northwestern europe;number of girls born in northwestern europe" -Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,"Number of Females Born in Oceania;Number of Oceanian female immigrants;Number of female Oceanian immigrants;Number of female foreign-born people from Oceania;Number of female immigrants from Oceania;Number of foreign-born women from Oceania;Number of people who are Female and who are Foreign Born and who are Oceania;Population: Female, Foreign Born, Oceania;female births in oceania;number of female babies born in oceania;number of female births in the pacific ocean region;number of girls born in oceania" -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,"1 Number of South Central Asian female foreign-born people;How many South Central Asian women are foreign-born?;Number of Females Born in South Central Asia;Number of people who are Female and who are Foreign Born and who are South Central Asia;Population: Female, Foreign Born, South Central Asia;The number of South Central Asian foreign-born females;the female birth rate in south central asia;the number of female births in south central asia;the number of females born in south central asia;the number of girls born in south central asia" -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Number of Females Born in South Eastern Asia;Number of South East Asian foreign-born females;Number of South East Asian foreign-born women;Number of females born outside the US who are from South East Asia;Number of females who are foreign-born and South East Asian;Number of foreign-born females from South East Asia;Number of people who are Female and who are Foreign Born and who are South Eastern Asia;Population: Female, Foreign Born, South Eastern Asia;female births in southeast asia;number of baby girls born in southeast asia;number of females born in the southeast asian region;number of girls born in southeast asia" -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,"Number of Females Born in South America;Number of South American female foreign born people;Number of South American females who are foreign-born;Number of South American foreign born women;Number of female foreign born people from South America;Number of people who are Female and who are Foreign Born and who are Southamerica;Number of women from South America who are foreign born;Population: Female, Foreign Born, Southamerica;how many female births were there in south america?;how many females were born in south america?;what is the number of females born in south america?;what is the total number of female births in south america?" -Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Number of Females Born in Southern Eastern Europe;Number of Southern Eastern European female foreign-born people;Number of Southern Eastern European foreign-born females;Number of female foreign-born people from Southern Eastern Europe;Number of foreign-born females from Southern Eastern Europe;Number of people who are Female and who are Foreign Born and who are Southern Eastern Europe;Population: Female, Foreign Born, Southern Eastern Europe;how many female births were registered in southern eastern europe;how many girls were born in southern eastern europe;number of female births in southern eastern europe;number of girls born in southern eastern europe" -Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,"Number of Females Born in Western Asia;Number of Western Asian females who are foreign born;Number of Western Asian foreign born females;Number of females who are foreign born and Western Asian;Number of females who are foreign born and from Western Asia;Number of foreign born Western Asian females;Number of people who are Female and who are Foreign Born and who are Western Asia;Population: Female, Foreign Born, Western Asia;how many females are born in western asia?;how many girls are born in western asia?;what is the number of female babies born in western asia?;what is the number of female births in western asia?" -Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,"1 Number of female foreign-born prisoners;Number of Foreign Born Females in Adult Correctional Facilities;Number of female foreign-born prisoners;Number of people who are Female and who are Foreign Born and who are in Adult Correctional Facilities;Population: Female, Foreign Born, Adult Correctional Facilities;The number of female foreign-born people in adult correctional facilities;The number of females in adult correctional facilities who are foreign-born;number of female inmates born outside the united states;number of foreign-born female prisoners;number of foreign-born women in adult prisons;number of women in adult correctional facilities who were born in other countries" -Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"Number of Foreign Born Females in College or University Student Housing;Number of female college or university student housing residents who are foreign-born;Number of female foreign-born students living in college or university student housing;Number of foreign-born female students living in college or university student housing;Number of foreign-born students living in college or university student housing who are female;Number of people who are Female and who are Foreign Born and who are in College or University Student Housing;Population: Female, Foreign Born, College or University Student Housing;The number of female foreign-born college students living in student housing;number of female students in college or university student housing who were born outside of the united states;the number of female students in college or university student housing who were born in other countries;the number of female students in college or university student housing who were born outside of the united states;the number of foreign-born female students living in college or university student housing" -Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,"1 The number of female foreign-born people living in group quarters;Number of Foreign Born Females Staying in Group Quarters;Number of females who are foreign born and live in group quarters;Number of foreign-born females living in group quarters;Number of foreign-born people who are female and live in group quarters;Number of people who are Female and who are Foreign Born and who are in Group Quarters;Number of people who are foreign born, female, and live in group quarters;Population: Female, Foreign Born, Group Quarters;number of female international residents living in group quarters;number of foreign-born women living in group quarters;number of foreign-born women living in group quarters, such as dormitories, shelters, or other group living arrangements;number of women born outside the united states living in group quarters" -Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Number of Foreign Born Females Institutionalized in Group Quarters;Number of females institutionalized in group quarters who are foreign-born;Number of females who are foreign-born and institutionalized in group quarters;Number of foreign-born females institutionalized in group quarters;Number of foreign-born females who are institutionalized in group quarters;Number of institutionalized foreign-born females in group quarters;Number of people who are Female and who are Foreign Born and who are in Institutionalized in Group Quarters;Population: Female, Foreign Born, Institutionalized Group Quarters;number of female immigrants institutionalized;number of foreign-born women in group quarters who are institutionalized;number of foreign-born women institutionalized;number of foreign-born women institutionalized in group quarters" -Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,"Number of Foreign Born Females in Juvenile Facilities;Number of female foreign-born children in juvenile detention;Number of female foreign-born juveniles in facilities;Number of female foreign-born kids in juvenile correctional facilities;Number of people who are Female and who are Foreign Born and who are Juvenile Facilities;Population: Female, Foreign Born, Juvenile Facilities;The number of female foreign-born juveniles in facilities;The number of females in juvenile facilities who are foreign-born;number of foreign-born girls in juvenile detention centers;the number of female juvenile offenders who were born outside the united states;the number of foreign-born girls in juvenile detention centers;the number of girls in juvenile detention centers who were born in other countries" -Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Foreign Born Females Staying in Military Quarters or on Military Sheeps;Number of people who are Female and who are Foreign Born and who are in Military Quarters or Military Ships;Population: Female, Foreign Born, Military Quarters or Military Ships;how many foreign-born females are living in military quarters or on military ships?;number of foreign-born women living in military housing or on military ships;number of foreign-born women residing in military housing or on military ships;what is the population of foreign-born females staying in military quarters or on military ships?" -Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Number of Foreign Born Females in Non-Institutionalized Group Quarters;Number of female foreign-born people in noninstitutionalized group quarters;Number of female foreign-born residents of noninstitutionalized group quarters;Number of foreign-born females in noninstitutionalized group quarters;Number of foreign-born women in noninstitutionalized group quarters;Number of people who are Female and who are Foreign Born and who are in Noninstitutionalized in Group Quarters;Number of women who are foreign-born and in noninstitutionalized group quarters;Population: Female, Foreign Born, Noninstitutionalized Group Quarters;number of females born outside the united states living in non-institutional group quarters;number of foreign-born females living in non-institutional group quarters;number of women born outside the united states living in non-institutional group quarters;the number of foreign-born females living in non-institutional group quarters" -Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,"Number of Foreign Born Females in Nursing Facilities;Number of female foreign-born nursing home residents;Number of female nursing home residents who are foreign-born;Number of female nursing home residents who were born outside the United States;Number of foreign-born nursing home residents who are female;Number of foreign-born nursing home residents who are women;Number of people who are Female and who are Foreign Born and who are in Nursing Facilities;Population: Female, Foreign Born, Nursing Facilities;how many female nursing home residents were born outside of the united states?;how many foreign-born women live in nursing homes?;what is the number of foreign-born female nursing home residents?;what percentage of nursing home residents are foreign-born women?" -Count_Person_Female_FullTimeYearRoundWorker,"Female Population Aged 16 to 64 Years Who Worked Full Time Year Round;Population: 16 - 64 Years, Female, Full Time Year Round Worker;the number of female full-time workers aged 16 to 64;the number of female full-time, year-round workers aged 16 to 64;the number of women aged 16 to 64 who worked full time for the entire year;the number of women aged 16 to 64 who worked full-time, year-round" -Count_Person_Female_HispanicOrLatino,"Number of Hispanic Females;Number of people who are Female and who are Hispanic or Latino;Population: Female, Hispanic or Latino;The number of Hispanic or Latino females;The number of Hispanic or Latino women;The number of female Hispanic or Latinos;The number of females who are Hispanic or Latino;The number of people who are Hispanic or Latino and female;hispanic women;number of hispanic females in the united states;number of hispanic women;number of hispanic women in the united states" -Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic Females Who Identify as American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of people who are Female and who are Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Female, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;The number of females who are Hispanic or Latino and American Indian or Alaska Native;how many hispanic females identify as american indian and alaska native alone or in combination with one or more other races?;how many hispanic women identify as american indian or alaska native alone or in combination with one or more other races?;what is the number of hispanic women who identify as american indian or alaska native alone or in combination with one or more other races?;what is the percentage of hispanic women who identify as american indian or alaska native alone or in combination with one or more other races?" -Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Number of Hispanic Females Who Identify as American Indian or Alaska Native Alone;Number of females who identify as Hispanic or Latino & American Indian or Alaska Native Alone;Number of people who are Female and who are Hispanic or Latino & American Indian or Alaska Native Alone;Population: Female, Hispanic or Latino & American Indian or Alaska Native Alone;number of hispanic females who identify as american indian or alaska native exclusively;number of hispanic females who identify as american indian or alaska native only;number of hispanic women who identify as american indian or alaska native only;number of hispanic women who identify as american indian or alaska native solely" -Count_Person_Female_HispanicOrLatino_AsianAlone,"Number of Hispanic Females Who Identify as Asian Alone;Number of females who identify as Hispanic or Latino & Asian Alone;Number of people who are Female and who are Hispanic or Latino & Asian Alone;Population: Female, Hispanic or Latino & Asian Alone;number of hispanic females who identify as asian exclusively;number of hispanic females who identify as asian only;number of hispanic females who identify as only asian;number of hispanic women who identify as asian only" -Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Asian women who are also Hispanic or Latino;Number of Hispanic Females Who Identify as Asian Alone or in Combination With One or More Other Races;Number of Hispanic or Latino women who are also Asian;Number of people who are Female and who are Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Number of women who are Hispanic or Latino and Asian;Population: Female, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;The number of females who are of Hispanic or Latino and Asian descent;The number of women who are Hispanic or Latino and Asian;how many hispanic females identify as asian alone or in combination with one or more other races?;what is the number of hispanic females who identify as asian alone or in combination with one or more other races?;what is the percentage of hispanic females who identify as asian alone or in combination with one or more other races?;what is the proportion of hispanic females who identify as asian alone or in combination with one or more other races?" -Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,"Number of Hispanic Females Who Identify as Asian or Pacific Islander;Number of people who are Female and who are Hispanic or Latino & Asian or Pacific Islander;Population: Female, Hispanic or Latino & Asian or Pacific Islander;The number of Hispanic or Latino and Asian or Pacific Islander females;The number of females who are Hispanic or Latino and Asian or Pacific Islander;The number of females who are Hispanic or Latino and Asian or Pacific Islander by ethnicity;The number of females who are of Hispanic or Latino and Asian or Pacific Islander descent;The number of females who identify as Hispanic or Latino and Asian or Pacific Islander;number of hispanic females who are asian or pacific islander;number of hispanic females who identify as asian or pacific islander;number of hispanic women who identify as asian or pacific islander;number of hispanic women who identify with asian or pacific islander heritage" -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,"Number of Hispanic Females Who Identify as Black or African American Alone;Number of people who are Female and who are Hispanic or Latino & Black or African American Alone;Population: Female, Hispanic or Latino & Black or African American Alone;number of hispanic females who identify as black or african american alone;the number of hispanic females who identify as black or african american alone" -Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic Females Who Identify as Black or African American Alone or in Combination With One or More Other Races;Number of females who are Hispanic or Latino & Black or African American;Number of people who are Female and who are Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Number of women who are Hispanic or Latino & Black or African American;Number of women who identify as Hispanic or Latino and Black or African American;Population: Female, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;how many hispanic women identify as black or african american?;number of hispanic females who identify as black or african american;number of hispanic women who identify as black or african american;what is the number of hispanic women who identify as black or african american?" -Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic Females Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races;Number of people who are Female and who are Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Female, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;The number of Native Hawaiian and Other Pacific Islander women who are also Hispanic or Latino;The number of women who identify as Hispanic or Latino and Native Hawaiian and Other Pacific Islander;how many hispanic women identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the number of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the percentage of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races?;what is the proportion of hispanic women who identify as native hawaiian or other pacific islander alone or in combination with one or more other races?" -Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Hispanic Females Who Identify as Native Hawaiian or Other Pacific Islander Alone;Number of females who identify as Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Number of people who are Female and who are Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Population: Female, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;number of hispanic females who identify as native hawaiian or other pacific islander alone;number of hispanic females who identify as native hawaiian or other pacific islander exclusively;number of hispanic females who identify as native hawaiian or other pacific islander only;number of native hawaiian or other pacific islander hispanic females" -Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,"Number of Hispanic Females Who Identify as Multiracial;Number of people who are Female and who are Hispanic or Latino & Two or More Races;Population: Female, Hispanic or Latino & Two or More Races;The number of Hispanic or Latino women who are multiracial;how many hispanic females identify as multiracial?;number of hispanic females who identify as biracial;number of hispanic women who identify as multiethnic;number of hispanic women who identify as multiracial" -Count_Person_Female_HispanicOrLatino_WhiteAlone,"Number of Hispanic Females Who Identify as White Alone;Number of people who are Female and who are Hispanic or Latino & White Alone;Population: Female, Hispanic or Latino & White Alone;number of hispanic females who identify as solely white;number of hispanic females who identify as white only;number of hispanic women who identify as white exclusively" -Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic Females Who Identify as White Alone or in Combination With One or More Other Races;Number of Hispanic or Latino females who are White or White in combination with one or more other races;Number of people who are Female and who are Hispanic or Latino & White Alone or In Combination With One or More Other Races;Population: Female, Hispanic or Latino & White Alone or In Combination With One or More Other Races;number of hispanic females who identify as white alone or in combination with another race;number of hispanic females who identify as white and another race;number of hispanic females who identify as white and any other race;number of hispanic females who identify as white or more than one race" -Count_Person_Female_MarriedAndNotSeparated,"Married And Not Separated Female Population;Population: Female, Married And Not Separated" -Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,"Number of Females Married in the Past 12 Months and Who Are Below Poverty Level in the Past 12 Months;Number of female married people living below the poverty line in the past 12 months;Number of female married people who are below poverty level in the past 12 months;Number of female married people who have lived below the poverty line in the past 12 months;Number of married female people living below the poverty line in the past 12 months;Number of married women living below the poverty line in the past 12 months;Number of people who are Female and who are Married in The Past 12 Months and who are Below Poverty Level in The Past 12 Months;Population: Female, Married in The Past 12 Months, Below Poverty Level in The Past 12 Months;the number of females who got married in the past 12 months and are living in poverty in the past 12 months;the number of females who got married in the past 12 months and are struggling financially in the past 12 months;the number of women who got married in the past 12 months and are below the poverty line in the past 12 months;the number of women who got married in the past 12 months and are considered poor in the past 12 months" -Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,"1 number of females who were married in the past 12 months and have a poverty status;2 number of females who were married in the past 12 months and are considered to be in poverty;4 number of females who were married in the past 12 months and are living in poverty;Number of Females Married in the Past 12 Months and Who Are Poverty Status Determined;Number of females who are married and have had their poverty status determined in the last 12 months;Number of females who are married and have had their poverty status determined in the last 365 days;Number of females who are married and have had their poverty status determined in the last year;Number of females who are married and have had their poverty status determined in the past 12 months;Number of married females in the past 12 months with poverty status determined;Number of people who are Female and who are Married in The Past 12 Months and who are Poverty Status Determined;Population: Female, Married in The Past 12 Months, Poverty Status Determined;number of females who got married in the past 12 months and their poverty status" -Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,"Number of Females Married in the Past 12 Months and Who Are Household;Number of female household members who were married in the last 12 months;Number of female household members who were married in the past 12 months;Number of females who are household members and were married in the last 12 months;Number of married female household members in the last 12 months;Number of people who are Female and who are Married in The Past 12 Months and who are Household;Population: Female, Married in The Past 12 Months, Household;The number of female households who have been married in the past 12 months;how many females got married in the past 12 months and are now heads of household?;how many females were married in the past 12 months and are now the head of their household?;what is the number of females who got married in the past 12 months and are now heads of household?;what is the number of females who were married in the past 12 months and are now the head of their household?" -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone,"Number of Females Who Identify as Native Hawaiian and Other Pacific Islander Alone;Number of people who are Female and who are Native Hawaiian and Other Pacific Islander Alone;Population: Female, Native Hawaiian and Other Pacific Islander Alone;how many females identify as native hawaiian and other pacific islander alone?;how many native hawaiian and other pacific islander females are there?;what is the number of females who identify as native hawaiian and other pacific islander alone?;what is the population of females who identify as native hawaiian and other pacific islander alone?" -Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Females Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races;Number of people who are Female, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Number of women who are Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races;Number of women who identify as Native Hawaiian and Other Pacific Islander;Number of women who identify as Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races;Population: Female, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;how many women are native hawaiian and other pacific islander alone or in combination with one or more other races?;how many women identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the number of women who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the percentage of women who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?" -Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Females Who Identify as Native Hawaiian or Other Pacific Islander Alone;Number of people who are Female, Native Hawaiian or Other Pacific Islander Alone;Population: Female, Native Hawaiian or Other Pacific Islander Alone;how many females identify as native hawaiian or other pacific islander alone;how many native hawaiian or other pacific islander females are there;the number of females who identify as native hawaiian or other pacific islander only;what is the number of native hawaiian or other pacific islander females" -Count_Person_Female_NeverMarried,"Population: Female, Never Married;Unmarried Female Population" -Count_Person_Female_NoHealthInsurance,"Female Population Without Health Insurance;Population: Female, No Health Insurance;female with no health insurance;female, no health insurance;female, without health care coverage;female, without health insurance" -Count_Person_Female_NonWhite,"Number of Non-White Females;Number of females who are not white;Number of non-white females;Number of non-white people who are female;Number of people who are Female, Non White;Number of people who are female and non-white;Number of people who are not white and female;Population: Female, Non White;female population that is not white;females of color;females who are not white;number of women who are not white" -Count_Person_Female_NotHispanicOrLatino,"Female, Not Hispanic or Latino population;Number of Non Hispanic Females;Number of females who are not Hispanic or Latino;Number of people who are Female, Not Hispanic or Latino;Number of people who are female and not of Hispanic or Latino descent;Number of people who are female and not of Hispanic or Latino origin;Number of people who identify as female and not Hispanic or Latino;Population: Female, Not Hispanic or Latino;the number of females who are not hispanic;the number of females who are not of hispanic origin;the number of non-hispanic women;the number of women who are not hispanic" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are female, not Hispanic or Latino, and American Indian or Alaska Native alone or in combination with one or more other races?;Number of American Indian and Alaska Native women who are not Hispanic or Latino;Number of Non Hispanic Females Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of people who are Female, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Female, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;The number of American Indian and Alaska Native women who are not Hispanic or Latino;how many non-hispanic american indian and alaska native females are there?;number of american indian and alaska native females who are not hispanic;number of american indian and alaska native females who are not hispanic or latino;number of american indian and alaska native women who are not hispanic" -Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Number of Non Hispanic Females Who Are American Indian or Alaska Native Alone;Number of females who are not Hispanic or Latino and American Indian or Alaska Native alone;Number of people who are Female, Not Hispanic or Latino & American Indian or Alaska Native Alone;Population: Female, Not Hispanic or Latino & American Indian or Alaska Native Alone;The number of people who are female, not Hispanic or Latino, and American Indian or Alaska Native alone;number of american indian or alaska native females who are not of hispanic descent;number of american indian or alaska native women who are not of hispanic origin" -Count_Person_Female_NotHispanicOrLatino_AsianAlone,"Female, Not Hispanic or Latino & Asian Alone population;Number of Non Hispanic Females Who Are Asian Alone;Number of people who are Female, Not Hispanic or Latino & Asian Alone;Population: Female, Not Hispanic or Latino & Asian Alone;number of asian-alone, non-hispanic females" -Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Asian women who are not Hispanic or Latino;Number of Non Hispanic Females Who Are Asian Alone or in Combination With One or More Other Races;Number of females who are Asian or Asian-American, not Hispanic or Latino;Number of females who are Asian or Asian-American, not of Hispanic, Latino, or Spanish origin, alone or in combination with one or more other races;Number of people who are Female, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Number of women who are Asian and not Hispanic or Latino;Number of women who are not Hispanic or Latino and Asian alone or in combination with one or more other races;Population: Female, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;the number of asian females who are not hispanic;the number of asian females who are not of hispanic descent;the number of asian females who are not of hispanic ethnicity;the number of non-hispanic females who are asian alone or in combination with one or more other races" -Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,"Number of Non Hispanic Females Who Are Asian or Pacific Islander;Number of females who are not Hispanic or Latino and Asian or Pacific Islander;Number of people who are Female, Not Hispanic or Latino & Asian or Pacific Islander;Number of people who are female, not Hispanic or Latino, and Asian or Pacific Islander;Population: Female, Not Hispanic or Latino & Asian or Pacific Islander;The number of Asian or Pacific Islander females who are not Hispanic or Latino;The number of Asian or Pacific Islander females who are not of Hispanic descent;The number of Asian or Pacific Islander women who are not Hispanic or Latino;the number of asian or pacific islander females who are not hispanic;the number of asian or pacific islander females who are not of hispanic origin;the number of asian or pacific islander females who are not of hispanic origin by gender;the number of non-hispanic asian or pacific islander females" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Female, Not Hispanic or Latino & Black or African American Alone population;Number of Non Hispanic Females Who Are Black or African American Alone;Number of people who are Female, Not Hispanic or Latino & Black or African American Alone;Population: Female, Not Hispanic or Latino & Black or African American Alone;black or african american female population without hispanic origin" -Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Black or African American females who are not Hispanic or Latino;Number of Black or African American females who are not Hispanic or Latino and who are Black or African American alone or in combination with one or more other races;Number of Black or African American women who are not Hispanic or Latino;Number of Non Hispanic Females Who Are Black or African American Alone or in Combination With One or More Other Races;Number of people who are Female, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Population: Female, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;number of black or african american females who are not hispanic;number of black or african american females who are not of hispanic origin;number of black or african american women who are not hispanic;number of black or african american women who are not of hispanic origin" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"How many females are not Hispanic or Latino and are Native Hawaiian or other Pacific Islander alone or in combination with one or more other races?;How many people are female, not Hispanic or Latino, and Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races?;Number of Non Hispanic Females Who Are Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races;Number of people who are Female, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Number of people who are female, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;Population: Female, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;The number of people who are female, not Hispanic or Latino, and Native Hawaiian and Other Pacific Islander alone or in combination with one or more other races;the number of native hawaiian and other pacific islander females who are not hispanic;the number of native hawaiian and other pacific islander females who are not hispanic or latina;the number of native hawaiian and other pacific islander women who are not hispanic or latino;the number of native hawaiian and other pacific islander women who are not hispanic, alone or in combination with one or more other races" -Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"How many people are Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone?;Number of Non Hispanic Females Who Are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Population: Female, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;The number of people who are female and not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who are female, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;number of native hawaiian or other pacific islander alone females who are not hispanic;number of native hawaiian or other pacific islander alone females who are not hispanic or latino;number of native hawaiian or other pacific islander alone females who are not of hispanic origin;number of native hawaiian or other pacific islander alone women who are not hispanic" -Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,"Number of Non Hispanic Females Who Are Multiracial;Number of non hispanic females who are multiracial;Number of people who are Female, Not Hispanic or Latino & Two or More Races;Population: Female, Not Hispanic or Latino & Two or More Races;The number of people who are female, not Hispanic or Latino, and are multiracial;the number of females who are both non-hispanic and multiracial;the number of females who are not hispanic and who identify with more than one race;the number of females who are not hispanic and who identify with two or more races;the number of multiracial non-hispanic females" -Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic Females Who Are White Alone or in Combination With One or More Other Races;Number of females who are not Hispanic or Latino and white alone or in combination with one or more other races;Number of people who are Female, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;Population: Female, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;number of non-hispanic females who are white;number of white females who are not hispanic;number of white females who are not of hispanic or latino origin;number of white females who are not of hispanic origin" -Count_Person_Female_ResidesInAdultCorrectionalFacilities,"Number of Females in Adult Correctional Facilities;Number of female prisoners;Number of females in adult correctional facilities;Number of incarcerated females;Number of incarcerated women;Number of people who are Female, in Adult Correctional Facilities;Number of women in adult correctional facilities;Population: Female, Adult Correctional Facilities;the number of female inmates in adult correctional facilities;the number of female prisoners in adult correctional facilities;the number of women in adult correctional facilities;the number of women incarcerated in adult correctional facilities" -Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Number of Females in College or University Student Housing;Number of female college students living in dorms;Number of female college students living in on-campus housing;Number of female college students living in residence halls;Number of female college students living in student housing;Number of female college students living in university housing;Number of people who are Female, in College or University Student Housing;Population: Female, College or University Student Housing;the number of female students living in college or university dormitories;the number of female students living in college or university dorms;the number of female students living in college or university housing;the number of female students living in college or university residence halls" -Count_Person_Female_ResidesInGroupQuarters,"Number of Females Staying in Group Quarters;Number of females in group quarters;Number of people who are Female, in Group Quarters;Population: Female, Group Quarters;number of females living in group quarters;number of females residing in group quarters;number of females staying in group homes;number of women living in group quarters" -Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Number of Females Who Are Institutionalized in Group Quarters;Number of female institutionalized group quarters residents;Number of females institutionalized in group quarters;Number of people who are Female, in Institutionalized in Group Quarters;Number of women institutionalized in group quarters;Population: Female, Institutionalized Group Quarters;number of females institutionalized in group quarters;number of institutionalized women;number of women institutionalized in group quarters;number of women living in institutions" -Count_Person_Female_ResidesInJuvenileFacilities,"Number of Females in Juvenile Facilities;Number of female juvenile offenders;Number of females in juvenile facilities;Number of girls in juvenile detention centers;Number of people who are Female, in Juvenile Facilities;Population: Female, Juvenile Facilities;The number of females in juvenile facilities;number of female juvenile offenders;number of girls in juvenile detention centers;number of girls in juvenile facilities;number of girls in juvenile justice facilities" -Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Females Staying in Military Quarters or on Military Ships;Number of female personnel in military quarters or military ships;Number of female service members in military quarters or military ships;Number of female soldiers in military quarters or military ships;Number of females in military quarters or military ships;Number of people who are Female, in Military Quarters or Military Ships;Number of women in military quarters or military ships;Population: Female, Military Quarters or Military Ships;number of female military personnel living in military housing or on military ships;number of female service members living in military housing or on military ships;number of women in the military living in military housing or on military ships;number of women living in military housing or on military ships" -Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Number of Females in Non-Institutionalized Group Quarters;Number of females in non-institutional group quarters;Number of females in non-institutionalized group quarters;Number of people who are Female, in Noninstitutionalized in Group Quarters;Number of women in non-institutionalized group quarters;Population: Female, Noninstitutionalized Group Quarters;number of females in group quarters not institutionalized;number of females in non-institutional settings;number of females living in non-institutional group quarters;number of women living in non-institutional group quarters" -Count_Person_Female_ResidesInNursingFacilities,"Number of Females in Nursing Facilities;Number of people who are Female, in Nursing Facilities;Population: Female, Nursing Facilities;how many women are in nursing homes?;what is the number of female residents in nursing homes?;what is the percentage of women in nursing homes?;what is the proportion of women in nursing homes?" -Count_Person_Female_SomeOtherRaceAlone,"Female population of Some Other Race Alone;Female, Some Other Race Alone population;Number of Females Who Are Some Other Race Alone;Number of females who are some other race alone;Number of females who identify as some other race only;Number of people who are Female, Some Other Race Alone;Population: Female, Some Other Race Alone;The number of people who identify as female and some other race alone;number of females who are some other race alone;number of females who do not identify as any of the listed races;number of females who identify as a race that is not included in the list;number of females who identify as a race that is not listed" -Count_Person_Female_TwoOrMoreRaces,"Number of Females Who Are Multiracial;Number of people who are Female, Two or More Races;Number of people who are female and biracial;Number of people who are female and multiethnic;Number of people who are female and multiracial;Population: Female, Two or More Races;The number of people who are female and multiracial;how many women identify as multiracial?;what is the number of women who identify with more than one race?;what is the percentage of women who are multiracial?;what is the proportion of women who are multiracial?" -Count_Person_Female_WhiteAlone,"Count of people who are Female, White Alone;Female White Alone population;Number of Females Who Are White Alone;Number of White-alone females;Number of females who are white alone;Number of people who are Female, White Alone;Population: Female, White Alone;the number of females who are white;the number of females who identify as white;the number of white females;the number of white women" -Count_Person_Female_WhiteAloneNotHispanicOrLatino,"Number of Females Who Are White Alone and Not Hispanic or Latino;Number of White females who are not Hispanic or Latino;Number of females who are white alone and not Hispanic or Latino;Number of females who are white and not Hispanic;Number of females who are white and not Hispanic or Latino;Number of people who are Female, White Alone Not Hispanic or Latino;Number of women who are white and not Hispanic or Latino;Population: Female, White Alone Not Hispanic or Latino;number of white females who are not hispanic or latino;the number of females who are of white race and not hispanic or latino;the number of females who are white alone and not hispanic or latino;the number of women who are white alone and not hispanic or latino" -Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of People Who Are Female, White Alone or in Combination With One or More Other Races;Number of females who are white alone or in combination with one or more other races;Number of people who are Female, White Alone or In Combination With One or More Other Races;Number of people who are female and white alone or in combination with one or more other races;Number of white females alone or in combination with one or more other races;Number of white women alone or in combination with one or more other races;Number of women who are white alone or in combination with one or more other races;Population: Female, White Alone or In Combination With One or More Other Races;how many people are female and white, or white and another race?;number of people who identify as female and white alone or in combination with one or more other races;number of people who identify as white and female in combination with one or more other races;what is the number of people who are female and white, or white and another race?" -Count_Person_Female_Widowed,"Population: Female, Widowed;Widowed Female Population" -Count_Person_Female_WithEarnings,"Number of Earning Females;Number of female earners;Number of females who make money;Number of females with earnings;Number of people who are Female, With Earnings;Number of women who earn money;Number of women with earnings;Population: Female, With Earnings;the number of women who are employed;the number of women who are gainfully employed;the number of women who earn a living;the number of women who have jobs" -Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,"Number of Earning Females in Adult Correctional Facilities;Number of female inmates with earnings;Number of female inmates with earnings in adult correctional facilities;Number of females in adult correctional facilities with earnings;Number of people who are Female, With Earnings, in Adult Correctional Facilities;Population: Female, With Earnings, Adult Correctional Facilities;The number of females with earnings in adult correctional facilities;number of female inmates who have jobs;number of female prisoners who are employed;number of incarcerated women who are paid workers;number of women who are employed in adult correctional facilities" -Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,"Number of Earning Females in College or University Student Housing;Number of female students in college or university student housing who have earnings;Number of female students with earnings living in college or university student housing;Number of female students with earnings who live in college or university student housing;Number of females with earnings living in college or university student housing;Number of people who are Female, With Earnings, in College or University Student Housing;Population: Female, With Earnings, College or University Student Housing;The number of females with earnings who live in college or university student housing;number of female students who are earning money while living in college or university apartments;number of female students who are employed while living in college or university student housing;number of female students who are making money while living in college or university housing;number of female students who have jobs while living in college or university dormitories" -Count_Person_Female_WithEarnings_ResidesInGroupQuarters,"Count of females in group quarters with earnings;Count of females with earnings in group quarters;Number of Earning Females Staying in Group Quarters;Number of females in group quarters with earnings;Number of females with earnings in group quarters;Number of people who are Female, With Earnings, in Group Quarters;Population: Female, With Earnings, Group Quarters;The number of women who are employed and live in group quarters;number of females earning money while staying in group quarters;number of females who are employed and living in group quarters;number of women who earn money and live in group quarters;the number of females who are earning money and staying in group quarters" -Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,"Number of Earning Females Institutionalized in Group Quarters;Number of female people who are institutionalized in group quarters and have earnings;Number of females with earnings in institutionalized group quarters;Number of females with earnings institutionalized in group quarters;Number of females with earnings who are institutionalized in group quarters;Number of people who are Female, With Earnings, in Institutionalized in Group Quarters;Number of women with earnings who are institutionalized in group quarters;Population: Female, With Earnings, Institutionalized Group Quarters;number of earning females institutionalized in group quarters;number of women who are earning an income and living in a group setting;number of women who are earning an income and living in group facilities" -Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,"Number of Earning Females in Juvenile Facilities;Number of female juvenile inmates who are earning money;Number of female juvenile inmates who have earnings;Number of female juvenile inmates with earnings;Number of female juvenile offenders with earnings;Number of people who are Female, With Earnings, in Juvenile Facilities;Population: Female, With Earnings, Juvenile Facilities;number of female juvenile offenders who are employed;number of juvenile girls who are employed;number of juvenile girls who are working while incarcerated;number of juvenile girls who have jobs" -Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Earning Females Staying in Military Quarters or on Military Ships;Number of female earners in military quarters or military ships;Number of female military personnel who are paid;Number of female military personnel who earn money;Number of female military personnel with earnings;Number of people who are Female, With Earnings, in Military Quarters or Military Ships;Population: Female, With Earnings, Military Quarters or Military Ships" -Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,"Number of Earning Females Staying in Non-Institutionalized Group Quarters;Number of females with earnings in non-institutional group quarters who are not living in private households;Number of people who are Female, With Earnings, in Noninstitutionalized in Group Quarters;Number of women with earnings in non-institutional group quarters;Population: Female, With Earnings, Noninstitutionalized Group Quarters;number of earning females living in non-institutional group quarters;number of females who are earning money and living in non-institutional group quarters" -Count_Person_Female_WithEarnings_ResidesInNursingFacilities,"3 the number of women who are paid to work in nursing facilities;Number of Earning Females in Nursing Facilities;Number of people who are Female, With Earnings, in Nursing Facilities;Population: Female, With Earnings, Nursing Facilities;how many females are employed in nursing facilities?;the number of women who are paid to work in nursing facilities;the number of women who earn a living working in nursing facilities" -Count_Person_Female_WithHealthInsurance,"Female Population With Health Insurance;Population: Female, With Health Insurance;female health insurance holders;female population with health insurance;population of women with health insurance;women with health insurance" -Count_Person_ForeignBorn_PlaceOfBirthAfrica,"Foreign-Born Population In Africa;Population: Foreign Born, Africa;the number of immigrants living in africa;the number of people born outside of africa who are currently living in africa;the number of people who are foreign nationals in africa;the number of people who have moved to africa from other countries" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1OrLessRatioToPovertyLine,"1 population of foreign-born people in africa living below the poverty line;2 number of foreign-born people in africa with a poverty rate of 1 or more;4 proportion of foreign-born people in africa with a household income below the poverty line;5 share of foreign-born people in africa with a per capita income below the poverty line;Foreign-Born Population in Africa With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Africa, 1 Ratio To Poverty Line or Less" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_1To1.99RatioToPovertyLine,"Foreign-Born Population In Africa With A1 to 2.0 Ration To Poverty Line;Population: Foreign Born, Africa, 1 - 2.0 Ratio To Poverty Line;the number of people born outside of africa who live in africa and have an income that is greater than or equal to 1 times the poverty line and less than or equal to 2 times the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_2OrMoreRatioToPovertyLine,"Foreign Borns In Africa With A 2 Ratio To Poverty Line or More;Population: Foreign Born, Africa, 2 Ratio To Poverty Line or More;people born in africa who earn less than twice the poverty line;people born outside of africa who live in africa and are below the poverty line;people born outside of africa who live in africa and are struggling to make ends meet;people born outside of africa who live in africa and have a low income" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign-Born Population in Africa;Population: Foreign Born, Africa, American Indian or Alaska Native Alone;the number of american indian or alaska native people born outside of africa;the number of american indian or alaska native people who are immigrants to africa;the number of american indian or alaska native people who are not native to africa;the number of american indian or alaska native people who live in africa but were born elsewhere" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_AsianAlone,"Foreign-Born Asian Population in Africa;Population: Foreign Born, Africa, Asian Alone;the number of asians living in africa;the number of people born in asia who live in africa;the number of people of asian descent living in africa;the population of africa that was born in asia" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in Africa;Population: Foreign Born, Africa, Black or African American Alone;african americans living in africa;african americans who live in africa;the african american population in africa;the number of african americans living in africa" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_HispanicOrLatino,"Hispanic Foreign-Born Population in Africa;Population: Foreign Born, Africa, Hispanic or Latino;the number of hispanic immigrants in africa;the number of hispanic people who are not citizens of africa;the number of hispanic people who were born in another country and now live in africa;the number of hispanic people who were born outside of africa and now live there" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiians or Other Pacific Islanders Foreign Born in Africa;Population: Foreign Born, Africa, Native Hawaiian or Other Pacific Islander Alone;native hawaiians and other pacific islanders born in africa;native hawaiians or other pacific islanders born in africa;people born in africa who are native hawaiian or other pacific islander;people who are native hawaiian or other pacific islander and were born in africa" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_OneRace,"Population: Foreign Born, Africa, One Race;Uniracial Foreign Born in Africa Population;number of people born outside of africa who are uniracial and currently living in africa;population of foreign-born people in africa who are uniracial;population of people born in africa who are of one race;total number of people in africa who are foreign-born and uniracial" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_PovertyStatusDetermined,"Population Foreign Born In Africa With Determined Poverty Status;Population: Foreign Born, Africa, Poverty Status Determined;Poverty Status Determined Of Foreign Born Population In Africa;poverty status of foreign-born people in africa;poverty status of foreign-born population in africa;poverty status of immigrants in africa;poverty status of people born outside of africa who live in africa" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_SomeOtherRaceAlone,"Population: Foreign Born, Africa, Some Other Race Alone;Some Other Race Foreign-Born Population in Africa;foreign-born people of some other race who live in africa;number of people born outside of africa who identify as some other race;people of some other race who were born in another country and now live in africa;population of foreign-born people of some other race in africa" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_TwoOrMoreRaces,"Multiracial Foreign-Born Population in Africa;Population: Foreign Born, Africa, Two or More Races;the number of people in africa who were born in another country and identify as multiracial;the number of people in africa who were born in another country and identify as multiracial, as a percentage of the total population;the percentage of the population of africa that was born outside of the continent and identifies as multiracial;the population of africa that was born outside of the continent and identifies as multiracial" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAlone,"Population of White Foreign Borns in Africa;Population: Foreign Born, Africa, White Alone;number of white immigrants in africa;number of white people born outside of africa who now live in africa;number of white people who are not native to africa;number of white people who have moved to africa from other countries" -Count_Person_ForeignBorn_PlaceOfBirthAfrica_WhiteAloneNotHispanicOrLatino,"Foreign-Born White Non-Hispanic Population in Africa;Population: Foreign Born, Africa, White Alone Not Hispanic or Latino;the number of white non-hispanic immigrants in africa;the number of white non-hispanic people born outside of africa who live in africa;the number of white non-hispanic people who are not native to africa;the number of white non-hispanic people who have moved to africa from other countries" -Count_Person_ForeignBorn_PlaceOfBirthAsia_1OrLessRatioToPovertyLine,"Foreign Born Population in Asia With a 1 Ratio To Poverty Line or Less;Foreign-Born Population in Asia With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Asia, 1 Ratio To Poverty Line or Less;the number of people born in another country who live in asia and have a ratio of income to poverty line of 1 or less;the number of people who are foreign-born and live in asia and have a ratio of income to poverty line of 1 or less;the number of people who are not native-born and live in asia and have a ratio of income to poverty line of 1 or less;the number of people who were not born in asia but live there and have a ratio of income to poverty line of 1 or less" -Count_Person_ForeignBorn_PlaceOfBirthAsia_1To1.99RatioToPovertyLine,"Asia Foreign Borns With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Asia, 1 - 2.0 Ratio To Poverty Line;foreign-born people in asia with a 1 to 20 ratio to the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthAsia_2OrMoreRatioToPovertyLine,"Foreign Born Population in Asia With a 2 Ratio To Poverty Line or More;Population: Foreign Born, Asia, 2 Ratio To Poverty Line or More" -Count_Person_ForeignBorn_PlaceOfBirthAsia_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Asian Foreign-Born Population;Population: Foreign Born, Asia, American Indian or Alaska Native Alone;american indian or alaska native foreign-born population;foreign-born population of american indians or alaska natives" -Count_Person_ForeignBorn_PlaceOfBirthAsia_AsianAlone,"Asian Foreign-Born Population in Asia;Population: Foreign Born, Asia, Asian Alone;the number of asian immigrants in asia;the number of asian-born people living in asia;the number of people born in asia who live in other countries in asia;the number of people who were born in asia and now live in other asian countries" -Count_Person_ForeignBorn_PlaceOfBirthAsia_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in Asia;Population: Foreign Born, Asia, Black or African American Alone;number of african american immigrants in asia;number of african americans born outside of the united states who are currently living in asia;number of african americans living in asia;number of african americans who have moved to asia from the united states" -Count_Person_ForeignBorn_PlaceOfBirthAsia_HispanicOrLatino,"Hispanic Foreign-Born Population In Asia;Population: Foreign Born, Asia, Hispanic or Latino;the hispanic population of asia;the number of hispanic immigrants living in asia;the number of hispanic people born outside of the united states who live in asia;the number of hispanics in asia" -Count_Person_ForeignBorn_PlaceOfBirthAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Foreign-Born Population in Asia;Population: Foreign Born, Asia, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander people who are living in asia as immigrants;the number of native hawaiian or other pacific islander people who are living in asia but were not born there;the number of native hawaiian or other pacific islander people who have moved to asia from other parts of the world;the number of native hawaiian or other pacific islander people who were born in asia and now live in other parts of the world" -Count_Person_ForeignBorn_PlaceOfBirthAsia_OneRace,"One Race Foreign-Born Population in Asia;Population: Foreign Born, Asia, One Race;distribution of the foreign-born population of asia by race;foreign-born population of asia by race" -Count_Person_ForeignBorn_PlaceOfBirthAsia_PovertyStatusDetermined,"Population Foreign Born In Asia With a Determined Poverty Status;Population: Foreign Born, Asia, Poverty Status Determined;number of foreign-born people in asia living in poverty;number of people born in asia who are living in a state of poverty;the number of people who were born in asia and are currently living in a state of poverty;the number of people who were born in asia and are currently living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthAsia_SomeOtherRaceAlone,"Population: Foreign Born, Asia, Some Other Race Alone;Some Other Foreign Born Race Asian Population;asian immigrants;number of asians who are immigrants" -Count_Person_ForeignBorn_PlaceOfBirthAsia_TwoOrMoreRaces,"Foreign Born Multiracial Asians;Population: Foreign Born, Asia, Two or More Races;asians who come from a mixed ethnic background;asians who come from multiple ethnic backgrounds;multiracial people who are of asian descent;people born in the united states who identify as asian and more than one other race" -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAlone,"Population: Foreign Born, Asia, White Alone;White Foreign-Born Population in Asia;foreign-born white people in asia;number of white immigrants in asia;white people who live in asia but were not born there;white population born outside of asia" -Count_Person_ForeignBorn_PlaceOfBirthAsia_WhiteAloneNotHispanicOrLatino,"Foreign-Born Non-Hispanic White Population in Asia;Population: Foreign Born, Asia, White Alone Not Hispanic or Latino;the number of non-hispanic white people born outside of asia who live in asia;the number of non-hispanic white people who are not citizens of asia but live there;the number of non-hispanic white people who have immigrated to asia;the population of non-hispanic white people who were born in another country and now live in asia" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Population In the Caribbean;Population: Foreign Born, Caribbean;the number of immigrants in the caribbean;the number of people born outside of the caribbean who live in the caribbean;the number of people who are foreign nationals in the caribbean;the number of people who have moved to the caribbean from other countries" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1OrLessRatioToPovertyLine,"Foreign Borns in The Caribbean With A1 Ratio To Poverty Line or Less;Population: Foreign Born, Caribbean, 1 Ratio To Poverty Line or Less" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_1To1.99RatioToPovertyLine,"Foreign-Born Population in the Caribbean with a 1 To 2.0 Ratio To Poverty Line;Population: Foreign Born, Caribbean, 1 - 2.0 Ratio To Poverty Line;the number of people born in the caribbean who live below the poverty line;the number of people born outside of the caribbean who live below the poverty line;the percentage of foreign-born people in the caribbean who live below the poverty line;the percentage of people born in the caribbean who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_2OrMoreRatioToPovertyLine,"Foreign Born Population in Caribbean With a 2 Ratio To Poverty Line or More;Population: Foreign Born, Caribbean, 2 Ratio To Poverty Line or More" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AmericanIndianOrAlaskaNativeAlone,"Foreign-Born American Indian or Alaska Native Population In The Caribbean;Population: Foreign Born, Caribbean, American Indian or Alaska Native Alone;the number of american indian or alaska native people who are immigrants to the caribbean;the number of american indian or alaska native people who are not native to the caribbean but have moved there;the number of american indian or alaska native people who were born outside of the caribbean but now live there;the population of american indian or alaska native people who were born in another country and are now living in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_AsianAlone,"Asian Foreign-Born Population in the Caribbean;Population: Foreign Born, Caribbean, Asian Alone;the number of asian immigrants in the caribbean;the number of people born in asia who live in the caribbean;the number of people of asian descent in the caribbean;the population of the caribbean that was born in asia" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_BlackOrAfricanAmericanAlone,"African Americans Foreign Born in The Caribbean;Population: Foreign Born, Caribbean, Black or African American Alone;african americans born in the caribbean;african americans who are from the caribbean;african americans who were born in the caribbean;caribbean-born african americans" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_HispanicOrLatino,"Hispanic Caribbean Foreign Born Population;Population: Foreign Born, Caribbean, Hispanic or Latino;the number of hispanic people in the united states who are foreign-born and come from the caribbean;the number of people born in the caribbean who have immigrated to the united states and identify as hispanic;the number of people born in the caribbean who now live in the united states and identify as hispanic;the population of hispanic people in the united states who were born in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_NativeHawaiianOrOtherPacificIslanderAlone,"Hawaiian Or Other Pacific Islander Foreign-Born Population In the Caribbean;Population: Foreign Born, Caribbean, Native Hawaiian or Other Pacific Islander Alone;number of hawaiian or other pacific islander immigrants in the caribbean;number of hawaiian or other pacific islanders who were born outside of the caribbean but now live there;number of people born in hawaii or other pacific islands who live in the caribbean;population of hawaiian or other pacific islanders in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_OneRace,"Population: Foreign Born, Caribbean, One Race;Uniracial Population Foreign Born in The Caribbean;foreign-born uniracial population in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_PovertyStatusDetermined,"Foreign Born in Caribbean Population With Poverty Status Determined;Population: Foreign Born, Caribbean, Poverty Status Determined;the number of people born in the caribbean who live in poverty;the percentage of people born in the caribbean who live in poverty;the proportion of people born in the caribbean who live in poverty;the share of people born in the caribbean who live in poverty" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_SomeOtherRaceAlone,"Population: Foreign Born, Caribbean, Some Other Race Alone;Some Other Race Foreign-Born Population in the Caribbean;number of people born outside of the caribbean who identify as some other race;number of people born outside of the caribbean who identify as some other race, as a percentage of the total population of the caribbean;percentage of the caribbean population who are foreign-born and identify as some other race;population of foreign-born people of some other race in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_TwoOrMoreRaces,"1 the number of people who were born outside of the caribbean and identify as multiracial;2 the number of people who were born outside of the caribbean and identify with more than one race;Multiracial Foreign-Born Population In the Caribbean;Population: Foreign Born, Caribbean, Two or More Races;the caribbean's multiracial foreign-born population;the caribbean's population of people who were born outside the country and identify as multiracial" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAlone,"Population: Foreign Born, Caribbean, White Alone;White Foreign-Born Population in the Caribbean;foreign-born white people in the caribbean;white people who are immigrants to the caribbean;white people who are not native to the caribbean;white people who were born in other countries and now live in the caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCaribbean_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Caribbean, White Alone Not Hispanic or Latino;White Non Hispanic Foreign Born Population in Caribbean" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Foreign-Born Population in Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico;number of people born in central america who live outside of mexico;population of central america excluding mexico;the number of central american immigrants in the united states, not including those from mexico;the number of people who were born in central america and now live in the united states, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1OrLessRatioToPovertyLine,"Population Foreign Born In Central America Except Mexico With A 1 Ratio To Poverty Line or Less;Population: Foreign Born, Central America Except Mexico, 1 Ratio To Poverty Line or Less;the percentage of people born in central america (excluding mexico) with a poverty rate of 1 or less" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_1To1.99RatioToPovertyLine,"Foreign-Born Population in Central America Except Mexico With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Central America Except Mexico, 1 - 2.0 Ratio To Poverty Line;the percentage of central americans living below the poverty line is 1 to 2 times higher than the percentage of mexicans living below the poverty line;the percentage of people born in central america who live in the united states and have a household income below the poverty line is 1 to 20;the poverty rate among foreign-born central americans is 1 to 2 times higher than the poverty rate among foreign-born mexicans;the proportion of central american immigrants living in the united states with a household income below the poverty line is 1 to 20" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_2OrMoreRatioToPovertyLine,"Foreign-Born Population in Central America Except, Mexico With 2 Ratio to Poverty Line or More;Population: Foreign Born, Central America Except Mexico, 2 Ratio To Poverty Line or More;the number of people born in central america (excluding mexico) who live below the poverty line as a percentage of the total population;the percentage of people born in central america (excluding mexico) who live below the poverty line, expressed as a ratio;the percentage of people in central america (excluding mexico) who were born in another country and live below the poverty line;the proportion of people born in central america (excluding mexico) who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign Born Population in Central America Except Mexico;American Indian or Alaska Native Foreign-Born Population in Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico, American Indian or Alaska Native Alone;the number of american indian or alaska native immigrants from central america who live in the united states;the number of american indian or alaska native people who are foreign-born and live in the united states, but not mexico, and who were born in central america;the number of american indian or alaska native people who were born in central america and now live in the united states, but not mexico;the number of american indian or alaska native people who were born in central america but live in the united states, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_AsianAlone,"Foreign Born In Central America Except Mexico, Asian;Population: Foreign Born, Central America Except Mexico, Asian Alone" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico, Black or African American Alone;african american immigrants in central america, excluding mexico;african american population in central america, excluding mexico;number of african americans living in central america, excluding mexico;percentage of african americans in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_HispanicOrLatino,"Hispanic Foreign Borns In Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico, Hispanic or Latino;central american immigrants;foreign-born hispanics from central america;hispanic immigrants from central america, excluding mexico;hispanics born in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_NativeHawaiianOrOtherPacificIslanderAlone,"Foreign-Born Population In Central America Native Hawaiian Or Other Pacific Islanders;Population: Foreign Born, Central America Except Mexico, Native Hawaiian or Other Pacific Islander Alone;people who are not originally from the united states but are now living there and were born in central america or hawaii or other pacific islands;people who have moved to the united states from central america or hawaii or other pacific islands;people who were born in central america or hawaii or other pacific islands and are now living in the united states" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_OneRace,"Population: Foreign Born, Central America Except Mexico, One Race;Uniracial Central America, Except Mexico Foreign-Born Population;the foreign-born population of uniracial central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_PovertyStatusDetermined,"Foreign-Born Population With Poverty Status Determined in Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico, Poverty Status Determined;the incidence of poverty among foreign-born people in central america, excluding mexico;the number of foreign-born people in central america, excluding mexico, who are living in poverty;the percentage of foreign-born people in central america, excluding mexico, who are living in poverty;the proportion of foreign-born people in central america, excluding mexico, who are living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_SomeOtherRaceAlone,"Foreign-Born Population of Some Other Race in Central America, Except Mexico;Population: Foreign Born, Central America Except Mexico, Some Other Race Alone;population of central america, except mexico, that is of a different race than mexican" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_TwoOrMoreRaces,"Multiracial Foreign Born Population in Central America Except Mexico;Population: Foreign Born, Central America Except Mexico, Two or More Races;the number of people born in central america but not mexico who identify as two or more races;the number of people who were born in another country and now live in the united states, who are from central america but not mexico, and who identify as more than one race;the number of people who were born in another country and now live in the united states, who are from central america but not mexico, and who identify as two or more races" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAlone,"Foreign Born In Central America Except For Mexico White Population;Population: Foreign Born, Central America Except Mexico, White Alone;white central americans;white people born in central america but not mexico;white people who were born in central america but are not mexican;white people who were born in central america but not mexico" -Count_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Central America Except Mexico, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population in Central America Except Mexico;the number of people born outside of central america who are white and non-hispanic and currently living in central america, excluding mexico;the number of people who are white, non-hispanic, and foreign-born in central america, excluding mexico;the number of white non-hispanic foreign-born people in central america, excluding mexico;the population of white non-hispanic immigrants in central america, excluding mexico" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia,"Eastern Asia Foreign Borns;Population: Foreign Born, Eastern Asia;foreign-born people from eastern asia;people born in eastern asia who live in other countries;people from eastern asia who live abroad;people who were born in eastern asia but live in other countries" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1OrLessRatioToPovertyLine,"Foreign-Born Population in Eastern Asia With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Eastern Asia, 1 Ratio To Poverty Line or Less;the foreign-born population in eastern asia with a ratio of 1 to the poverty line or less" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_1To1.99RatioToPovertyLine,"Foreign Born Population in Eastern Asia With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Eastern Asia, 1 - 2.0 Ratio To Poverty Line" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Eastern Asia, 2 Ratio To Poverty Line or More" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AmericanIndianOrAlaskaNativeAlone,"Foreign Born In Eastern Asia American Indian or Alaska Native Population;Population: Foreign Born, Eastern Asia, American Indian or Alaska Native Alone;native american or alaska native population born in eastern asia;number of american indians or alaska natives born in eastern asia;people born in eastern asia who are american indian or alaska native;people born in eastern asia who identify as american indian or alaska native" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_AsianAlone,"Asian Population Foreign Born In Eastern Asia;Population: Foreign Born, Eastern Asia, Asian Alone;the number of asian expatriates in eastern asia;the number of asian immigrants in eastern asia;the number of asian-born people in eastern asia;the number of people of asian descent living in eastern asia" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_BlackOrAfricanAmericanAlone,"Foreign-Born African American Population in Eastern Asia;Population: Foreign Born, Eastern Asia, Black or African American Alone;african americans living in eastern asia;african americans who live in eastern asia;the number of african americans living in eastern asia;the population of african americans in eastern asia" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_HispanicOrLatino,"Hispanics Foreign Borns In Eastern Asia;Population: Foreign Born, Eastern Asia, Hispanic or Latino;hispanic immigrants to eastern asia;hispanics who live in eastern asia;people born in hispanic countries who live in eastern asia;people of hispanic descent who live in eastern asia" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiians or Other Pacific Islanders Foreign-Born Population in Eastern Asia;Population: Foreign Born, Eastern Asia, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiians or other pacific islanders who were born in eastern asia;the number of native hawaiians or other pacific islanders who were born in eastern asia and are now living in the united states;the number of native hawaiians or other pacific islanders who were born in eastern asia and are now living in the united states as immigrants;the number of native hawaiians or other pacific islanders who were born in the eastern asian region" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_OneRace,"One Race Foreign-Born Population in Eastern Asia;Population: Foreign Born, Eastern Asia, One Race;foreign-born population of eastern asia by race" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_PovertyStatusDetermined,"Population Foreign-Born In Eastern Asia With Determined Poverty Status;Population: Foreign Born, Eastern Asia, Poverty Status Determined;foreign-born population in eastern asia with determined poverty status;number of foreign-born people in eastern asia living below the poverty line;percentage of foreign-born people in eastern asia living in poverty;poverty rate of foreign-born people in eastern asia" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_SomeOtherRaceAlone,"Population Of Foreign Borns In Eastern Asia And Some Other Race;Population: Foreign Born, Eastern Asia, Some Other Race Alone;foreign-born population of eastern asia and some other races;number of foreign-born people from eastern asia and other races living in the united states;number of people born in eastern asia and other races who are living in the united states;population of eastern asia and some other races who were born outside the us" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_TwoOrMoreRaces,"1 the number of people born outside of eastern asia who identify as multiracial;2 the percentage of the population in eastern asia who are foreign-born and multiracial;Multiracial Foreign-Born Population In Eastern Asia;Population: Foreign Born, Eastern Asia, Two or More Races;people who were born in another country and live in eastern asia and identify as multiracial;people who were born outside of eastern asia and identify as multiracial" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAlone,"Population: Foreign Born, Eastern Asia, White Alone;White Foreign-Born Population in Eastern Asia;number of white immigrants in eastern asia;population of white expats in eastern asia;white people who live in eastern asia;white people who were born outside of eastern asia but now live there" -Count_Person_ForeignBorn_PlaceOfBirthEasternAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Eastern Asia, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population in Eastern Asia;the number of white, non-hispanic foreign-born people in eastern asia;the number of white, non-hispanic people who were born outside of eastern asia and now live in eastern asia;the population of white, non-hispanic immigrants in eastern asia;the population of white, non-hispanic people who have moved to eastern asia from other countries" -Count_Person_ForeignBorn_PlaceOfBirthEurope_1OrLessRatioToPovertyLine,"Foreign Born in Europe Population With a 1 or Less Ratio To Poverty Line;Population: Foreign Born, Europe, 1 Ratio To Poverty Line or Less;percentage of foreign-born people in europe living below the poverty line;proportion of foreign-born people in europe living below the poverty line;the percentage of foreign-born people in europe living below the poverty line;what percentage of foreign-born people in europe live below the poverty line?" -Count_Person_ForeignBorn_PlaceOfBirthEurope_1To1.99RatioToPovertyLine,"Foreign-Born Population in Europe with a 1 to 2 Ratio to Poverty Line;Population: Foreign Born, Europe, 1 - 2.0 Ratio To Poverty Line;the foreign-born population in europe with a 1 to 2 ratio to the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthEurope_2OrMoreRatioToPovertyLine,"Foreign-Born Population in Europe With 2 or More Ratio To Poverty Line;Population: Foreign Born, Europe, 2 Ratio To Poverty Line or More;more than 2 times the national average of foreign-born people in europe live below the poverty line;more than two times as many foreign-born people in europe live below the poverty line than the national average;the percentage of foreign-born people in europe living below the poverty line is 2 or more times the national average;the percentage of foreign-born people in europe who live below the poverty line is two or more times the national average" -Count_Person_ForeignBorn_PlaceOfBirthEurope_AmericanIndianOrAlaskaNativeAlone,"Foreign-Born American Indian or Alaska Native Population in Europe;Population: Foreign Born, Europe, American Indian or Alaska Native Alone;the number of american indians or alaska natives living in europe;the number of american indians or alaska natives who have moved to europe;the number of american indians or alaska natives who were born in europe;the population of american indians or alaska natives in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_AsianAlone,"Asian Foreign-Born Population in Europe;Population: Foreign Born, Europe, Asian Alone;the number of asian immigrants in europe;the number of asian people living in europe who were not born there;the number of people born in asia who now live in europe;the population of europe that was born in asia" -Count_Person_ForeignBorn_PlaceOfBirthEurope_BlackOrAfricanAmericanAlone,"Europe Foreign-Born in African American Population;Population: Foreign Born, Europe, Black or African American Alone;percentage of african americans born in europe;share of african americans born in europe;the number of african americans in the united states who were born in europe;the percentage of african americans in the united states who were born in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_HispanicOrLatino,"Hispanic Foreign-Born Population In Europe;Population: Foreign Born, Europe, Hispanic or Latino;the hispanic population of europe;the number of hispanic immigrants in europe;the number of hispanic people who were born in another country and now live in europe;the number of people of hispanic descent living in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Population Foreign Born in Europe;Population: Foreign Born, Europe, Native Hawaiian or Other Pacific Islander Alone;foreign-born native hawaiian or other pacific islanders in europe;native hawaiian or other pacific islander immigrants in europe;native hawaiians or other pacific islanders born outside of europe;native hawaiians or other pacific islanders living in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_OneRace,"One Race Foreign-Born Population in Europe;Population: Foreign Born, Europe, One Race;distribution of the population of europe by race and place of birth" -Count_Person_ForeignBorn_PlaceOfBirthEurope_PovertyStatusDetermined,"Foreign-Born Population in Europe With Determined Poverty Status;Population: Foreign Born, Europe, Poverty Status Determined;the number of foreign-born people in europe who are living below the poverty line;the percentage of foreign-born people in europe who are living in poverty;the proportion of foreign-born people in europe who are living in deprived circumstances;the share of foreign-born people in europe who are experiencing economic hardship" -Count_Person_ForeignBorn_PlaceOfBirthEurope_SomeOtherRaceAlone,"Other Race Foreign-Born Population in Europe;Population: Foreign Born, Europe, Some Other Race Alone;number of foreign-born people of other races in europe;people in europe who were born outside of europe and are not of european descent, as a percentage of the total population;population of foreign-born people from other races in europe;population of foreign-born people of other races in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_TwoOrMoreRaces,"3 people born outside of europe who have mixed racial heritage;4 people born outside of europe who identify with more than one racial group;Multiracial Foreign Borns In Europe;Population: Foreign Born, Europe, Two or More Races;people born outside of europe who identify as multiracial;people who are born outside of europe and identify with multiple racial or ethnic groups" -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAlone,"Population: Foreign Born, Europe, White Alone;White Foreign-Born Population in Europe;the number of white immigrants in europe;the percentage of white immigrants in europe;the proportion of white immigrants in europe;the share of white immigrants in europe" -Count_Person_ForeignBorn_PlaceOfBirthEurope_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Europe, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population in Europe;number of white non-hispanic immigrants in europe;population of white non-hispanic immigrants in europe;size of the white non-hispanic immigrant population in europe;white non-hispanic immigrants in europe" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1OrLessRatioToPovertyLine,"Foreign-Born Population in Latin America With A 1 Ratio To Poverty Line or Less;Population: Foreign Born, Latin America, 1 Ratio To Poverty Line or Less;the percentage of people born in latin america who live below the poverty line;the percentage of people in latin america who were born in another country and live below the poverty line;the percentage of people in latin america who were born outside of the country and live below the poverty line;the proportion of people in latin america who were born in another country and are poor" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_1To1.99RatioToPovertyLine,"Foreign Born in Latin America Population With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Latin America, 1 - 2.0 Ratio To Poverty Line;the percentage of foreign-born latin americans living below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_2OrMoreRatioToPovertyLine,"Foreign-Born Population in Latin America With a1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Latin America, 2 Ratio To Poverty Line or More;the number of people in latin america who were born in another country and have a household income that is between 1 and 2 times the poverty line as a percentage of the total population" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AmericanIndianOrAlaskaNativeAlone,"American Indians or Alaska Natives Foreign Borns in Latin America;Population: Foreign Born, Latin America, American Indian or Alaska Native Alone;american indian or alaska native latin americans;latin american american indian or alaska natives;latin american people who are american indian or alaska native;people born in latin america who are american indian or alaska native" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_AsianAlone,"Asian Foreign-Born Population in Latin America;Population: Foreign Born, Latin America, Asian Alone;asian immigrants in latin america;asian-born latin americans;people born in asia who live in latin america;the asian diaspora in latin america" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_BlackOrAfricanAmericanAlone,"Foreign-Born Population in Latin America African American;Population: Foreign Born, Latin America, Black or African American Alone;the number of african americans born in latin america;the number of african americans who live in latin america;the number of people born in latin america who are african american;the number of people of african descent living in latin america" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_HispanicOrLatino,"Hispanic Population Foreign-Born in Latin America;Population: Foreign Born, Latin America, Hispanic or Latino;hispanic immigrants from latin america;hispanics who are immigrants from latin america;immigrants from latin america who are hispanic;latin american hispanic immigrants" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiians or Other Pacific Islander Foreign-Born Population in Latin American;Population: Foreign Born, Latin America, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander foreign-born population in latin america;native hawaiian or other pacific islander immigrants in latin america;native hawaiian or other pacific islander people who were born in latin america;people of native hawaiian or other pacific islander descent who live in latin america" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_OneRace,"Monoracials Foreign Born In Latin American;Population: Foreign Born, Latin America, One Race;people born in latin america who are only one race;people who were born in latin america and are not biracial;people who were born in latin america and are of one race;people who were born in latin america and identify as one race" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_PovertyStatusDetermined,"Foreign-Born Population With Poverty Status Determined in Latin America;Population: Foreign Born, Latin America, Poverty Status Determined;poverty rate among latin american immigrants;the number of people born in latin america who live below the poverty line;the percentage of people born in latin america who live in poverty;the proportion of people born in latin america who are poor" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_SomeOtherRaceAlone,"Other Race Foreign-Born Population In Latin America;Population: Foreign Born, Latin America, Some Other Race Alone;number of people born outside of latin america who identify as other races;people who live in latin america but were not born there;population of foreign-born people of other races in latin america;total number of people in latin america who were born in other countries and identify as other races" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_TwoOrMoreRaces,"Multiracial Population Foreign-Born in Latin America;Population: Foreign Born, Latin America, Two or More Races;foreign-born multiracial people in latin america;people born outside of latin america who identify as multiracial;people who are foreign-born and multiracial in latin america;people who identify as multiracial and were born outside of latin america" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAlone,"Foreign Born In Latin America White Population;Population: Foreign Born, Latin America, White Alone;latin american white people;people born in latin america who are white;white people born in latin america;white population born in latin america" -Count_Person_ForeignBorn_PlaceOfBirthLatinAmerica_WhiteAloneNotHispanicOrLatino,"Foreign-Born White Non-Hispanic Population in Latin America;Population: Foreign Born, Latin America, White Alone Not Hispanic or Latino;the number of people who were born outside of latin america and are white non-hispanic and live in latin america;the number of white non-hispanic people born outside of latin america who live in latin america;the population of people who were born outside of latin america and are white non-hispanic and live in latin america;the population of white non-hispanic people born outside of latin america who live in latin america" -Count_Person_ForeignBorn_PlaceOfBirthMexico,"Foreign-Born Population in Mexican;Population: Foreign Born, Country/MEX;the number of foreign-born residents in mexico;the number of immigrants in mexico;the number of people born in another country who live in mexico;the number of people who have immigrated to mexico" -Count_Person_ForeignBorn_PlaceOfBirthMexico_1OrLessRatioToPovertyLine,"Foreign-Born Population In Eastern Asia With A 2 Or More Ratio To Poverty Line;Population: Foreign Born, Country/MEX, 1 Ratio To Poverty Line or Less" -Count_Person_ForeignBorn_PlaceOfBirthMexico_1To1.99RatioToPovertyLine,"Foreign Born Population in Mexico With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Country/MEX, 1 - 2.0 Ratio To Poverty Line" -Count_Person_ForeignBorn_PlaceOfBirthMexico_2OrMoreRatioToPovertyLine,"Foreign-Born Population in Mexico with a 2 or More Ratio to Poverty Line;Population: Foreign Born, Country/MEX, 2 Ratio To Poverty Line or More;the number of people born outside of mexico who live in mexico and earn more than twice the poverty line;the number of people born outside of mexico who live in mexico and whose income is 2 times or more the poverty line;the number of people who were born outside of mexico and live in mexico with an income of more than twice the poverty line;the number of people who were born outside of mexico and live in mexico with an income that is more than twice the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthMexico_AmericanIndianOrAlaskaNativeAlone,"Foreign-Born Mexican and American Indian or Alaska Native Population;Population: Foreign Born, Country/MEX, American Indian or Alaska Native Alone;mexican and american indian or alaska native immigrants;mexican and american indian or alaska native people who are not us citizens;mexican and american indian or alaska native people who were born in another country;people of mexican and american indian or alaska native descent who were born outside of the united states" -Count_Person_ForeignBorn_PlaceOfBirthMexico_AsianAlone,"Asian Population Foreign Born in Mexico;Population: Foreign Born, Country/MEX, Asian Alone;asian immigrants in mexico;asian people who were born in other countries and now live in mexico;foreign-born asian population in mexico;people of asian descent who live in mexico" -Count_Person_ForeignBorn_PlaceOfBirthMexico_BlackOrAfricanAmericanAlone,"African American Population Foreign Born in Mexico;Population: Foreign Born, Country/MEX, Black or African American Alone;african american population in mexico;african american population of mexico;how many african americans live in mexico;number of african americans born in mexico" -Count_Person_ForeignBorn_PlaceOfBirthMexico_HispanicOrLatino,"Foreign-Born Population in Mexican Hispanic;Population: Foreign Born, Country/MEX, Hispanic or Latino;hispanics born in mexico;mexican-born hispanics" -Count_Person_ForeignBorn_PlaceOfBirthMexico_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Foreign-Born Population in Mexico;Population: Foreign Born, Country/MEX, Native Hawaiian or Other Pacific Islander Alone;the native hawaiian or other pacific islander foreign-born population in mexico;the native hawaiian or other pacific islander immigrant community in mexico;the number of native hawaiian or other pacific islander immigrants living in mexico;the number of native hawaiian or other pacific islander people who were born in another country and now live in mexico" -Count_Person_ForeignBorn_PlaceOfBirthMexico_OneRace,"Population: Foreign Born, Country/MEX, One Race;Uniracial Mexico Foreign Borns" -Count_Person_ForeignBorn_PlaceOfBirthMexico_PovertyStatusDetermined,"Foreign Borns Population in Mexico With Poverty Status Determined;Population: Foreign Born, Country/MEX, Poverty Status Determined;the number of foreign-born people in mexico who have been determined to be living in poverty;the number of people in mexico who were born in another country and are living in poverty;the population of foreign-born people in mexico who have been classified as poor;the population of people in mexico who were born outside of the country and are considered to be poor" -Count_Person_ForeignBorn_PlaceOfBirthMexico_SomeOtherRaceAlone,"Foreign-Born Some Other Race Population in Mexico;Population: Foreign Born, Country/MEX, Some Other Race Alone;the number of people in mexico who were born in another country and identify as some other race;the number of people in mexico who were born in another country and identify as some other race, as a percentage of the total population;the percentage of the population of mexico that was born in another country and identifies as some other race;the population of mexico that was born in another country and identifies as some other race" -Count_Person_ForeignBorn_PlaceOfBirthMexico_TwoOrMoreRaces,"Foreign-Born Multiracial Population in Mexico;Population: Foreign Born, Country/MEX, Two or More Races;multiracial people who live in mexico but were born in another country;people born outside of mexico who identify as multiracial;the multiracial population in mexico;the proportion of the mexican population that is multiracial" -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAlone,"Population: Foreign Born, Country/MEX, White Alone;White Population Foreign Born In Mexico;the number of white people born in mexico;the percentage of white people born in mexico;the proportion of white people born in mexico;the white population of mexico that was born outside of mexico" -Count_Person_ForeignBorn_PlaceOfBirthMexico_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Country/MEX, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population;foreign-born white non-hispanic people;foreign-born white non-hispanics;white immigrants who were not born in the united states;white non-hispanic immigrants" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica,"Population Foreign-Born In North America;Population: Foreign Born, Northamerica;number of foreign-born people in north america;number of immigrants in north america;number of people born outside of north america who live in north america;number of people who have moved to north america from other countries" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1OrLessRatioToPovertyLine,"North America Foreign-Born Population With a 1 Ratio Below the Poverty Line;Population: Foreign Born, Northamerica, 1 Ratio To Poverty Line or Less;the percentage of foreign-born people in north america living below the poverty line;the proportion of foreign-born people in north america living below the poverty line;the ratio of foreign-born people in north america living below the poverty line;what percentage of the foreign-born population in north america lives below the poverty line?" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_1To1.99RatioToPovertyLine,"Foreign-Born Population in North America With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Northamerica, 1 - 2.0 Ratio To Poverty Line" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_2OrMoreRatioToPovertyLine,"Foreign Born Population in North America With a 2 Ratio To Poverty Line or Less;Foreign-Born Population in North America With a 2 Ratio To Poverty Line or Less;Population: Foreign Born, Northamerica, 2 Ratio To Poverty Line or More;the number of foreign-born people in north america living at or below 2 times the poverty line;the percentage of foreign-born people in north america living at or below 2 times the poverty line;the proportion of foreign-born people in north america living at or below 2 times the poverty line;the share of foreign-born people in north america living at or below 2 times the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign-Born Population in North America;Population: Foreign Born, Northamerica, American Indian or Alaska Native Alone;the number of american indian or alaska native people who are immigrants to north america;the number of american indian or alaska native people who live in north america but were born in another country;the number of american indian or alaska native people who were born outside of north america;the number of foreign-born american indian or alaska native people in north america" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_AsianAlone,"Asian Population Foreign Born In North America;Population: Foreign Born, Northamerica, Asian Alone;the asian population of north america;the number of asian immigrants in north america;the number of asians in north america;the number of people born in asia who live in north america" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in North America;Population: Foreign Born, Northamerica, Black or African American Alone;african americans born outside of north america;foreign-born people of african descent in north america;the number of african americans who were born in another country and now live in north america;the percentage of the african american population in north america that was born in another country" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_HispanicOrLatino,"Hispanic Foreign Born in North America Population;Population: Foreign Born, Northamerica, Hispanic or Latino;hispanic population born outside of north america;number of hispanic foreign-born people in north america;number of hispanic people who were not born in north america;number of people born outside of north america who identify as hispanic" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_NativeHawaiianOrOtherPacificIslanderAlone,"Foreign Born Native Hawaiian or Other Pacific Islander Population in North America;Population: Foreign Born, Northamerica, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander immigrants in north america;the number of native hawaiian or other pacific islander people born outside of north america who live in north america;the number of native hawaiian or other pacific islander people who have moved to north america from other countries;the number of native hawaiian or other pacific islander people who were not born in north america but now live in north america" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_OneRace,"Monoethnic Foreign-Born Population in North America;Population: Foreign Born, Northamerica, One Race;foreign-born population of north america that is monoethnic" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_PovertyStatusDetermined,"Foreign-Born Population in North America With Determined by Poverty Status;Population: Foreign Born, Northamerica, Poverty Status Determined;the number of foreign-born people in north america living in poverty;the percentage of foreign-born people in north america living in poverty;the proportion of foreign-born people in north america living in poverty;the share of foreign-born people in north america living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_SomeOtherRaceAlone,"Population: Foreign Born, Northamerica, Some Other Race Alone;Some Other Race Foreign-Born Population In North America;foreign-born population of north america who identify as some other race;people who identify as some other race and were born in another country living in north america;people who were born in another country and identify as some other race living in north america;population of north america who were born in another country and identify as some other race" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_TwoOrMoreRaces,"Multiracial Population Foreign Born in North America;Population: Foreign Born, Northamerica, Two or More Races;foreign-born multiracial people in north america;foreign-born multiracial population in north america;people born outside of north america who identify as multiracial;people who are multiracial and were born in north america" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAlone,"Population: Foreign Born, Northamerica, White Alone;White Foreign-Born Population in North America;the number of white immigrants in north america;the number of white people who were born in another country and now live in north america;the white immigrant community in north america;the white immigrant population in north america" -Count_Person_ForeignBorn_PlaceOfBirthNorthamerica_WhiteAloneNotHispanicOrLatino,"Foreign-Born White Non-Hispanic Population in North America;Population: Foreign Born, Northamerica, White Alone Not Hispanic or Latino;the number of white non-hispanic immigrants in north america;the number of white non-hispanic people who have moved to north america from other countries;the number of white non-hispanic people who were born outside of north america and now live there;the population of white non-hispanic people in north america who were not born there" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign Born Population in Northern Western Europe;Population: Foreign Born, Northern Western Europe;people who have moved to northern western europe from other countries" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1OrLessRatioToPovertyLine,"Foreign-Born Population in Northern Western Europe with a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Northern Western Europe, 1 Ratio To Poverty Line or Less;number of foreign-born people in northern western europe living on or below the poverty line;percentage of foreign-born people in northern western europe living below the poverty line;share of foreign-born people in northern western europe with a poverty rate of 1 or more;the percentage of people born outside of northern western europe who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_1To1.99RatioToPovertyLine,"Foreign-Born Population in Northern Western Europe 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Northern Western Europe, 1 - 2.0 Ratio To Poverty Line;in northern western europe, the ratio of foreign-born people living below the poverty line is 1 to 2;the ratio of the foreign-born population to the poverty line in northern western europe is 1 to 20" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_2OrMoreRatioToPovertyLine,"Population Foreign Born in Northern Western Europe With a 2 Ratio To Poverty Line or More;Population: Foreign Born, Northern Western Europe, 2 Ratio To Poverty Line or More;the number of people in northern western europe who were born in another country and have a poverty ratio of 2 or more;the number of people in northern western europe who were born in another country and whose income is below the poverty line by a factor of 2 or more" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AmericanIndianOrAlaskaNativeAlone,"American Indian Or Alaska Native And Foreign Born Population In Northern Western Europe;American Indian or Alaska Native Population Foreign Born In Northern Western Europe;Population: Foreign Born, Northern Western Europe, American Indian or Alaska Native Alone;american indians or alaska natives who were born outside of northern western europe;number of american indians or alaska natives born outside of northern western europe;people born outside of northern western europe who are american indians or alaska natives;population of american indians or alaska natives born outside of northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_AsianAlone,"Asian Population Foreign-Born in Northern Western Europe;Population: Foreign Born, Northern Western Europe, Asian Alone;asian immigrants in northern western europe;asian population born outside of northern western europe;foreign-born asian population in northern western europe;people born in asia who live in northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_BlackOrAfricanAmericanAlone,"African American Foreign Borns In North Western Europe;Population: Foreign Born, Northern Western Europe, Black or African American Alone;african americans living in northwestern europe;african americans who have migrated to northwestern europe;african americans who have moved to northwestern europe;black people born in africa who now live in northwestern europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_HispanicOrLatino,"Hispanic Foreign-Born Population In Northern Western Europe;Population: Foreign Born, Northern Western Europe, Hispanic or Latino;the hispanic population of northern western europe;the number of hispanic immigrants in northern western europe;the number of hispanics in northern western europe;the number of people born in hispanic countries who live in northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian Or Other Pacific Islander Foreign-Born Population In North Western Europe;Population: Foreign Born, Northern Western Europe, Native Hawaiian or Other Pacific Islander Alone;foreign-born native hawaiians or other pacific islanders in north western europe;native hawaiian or other pacific islander immigrants in north western europe;people born in north western europe who are of native hawaiian or other pacific islander descent;people of native hawaiian or other pacific islander descent who live in north western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_OneRace,"Monoracial Population Foreign-Born in Northern Western Europe;Population: Foreign Born, Northern Western Europe, One Race;foreign-born monoracial people in northern western europe;foreign-born monoracial population in northern western europe;monoracial population born outside of northern western europe;population of northern western europe who are monoracial and foreign-born" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_PovertyStatusDetermined,"Foreign-Born Population in Northern Western Europe with Determined Poverty Status;Population: Foreign Born, Northern Western Europe, Poverty Status Determined;the number of foreign-born people in northern western europe who are living in poverty;the percentage of foreign-born people in northern western europe who are living in poverty;the proportion of foreign-born people in northern western europe who are living in poverty;the share of foreign-born people in northern western europe who are living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_SomeOtherRaceAlone,"Population: Foreign Born, Northern Western Europe, Some Other Race Alone;Some Other Race Foreign-Born Population in Northern Western Europe;foreign-born population of some other race in northern western europe;people of some other race who were born outside of northern western europe and now live there;people who were born in another country and now live in northern western europe who are not of european descent;population of foreign-born people of some other race in northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_TwoOrMoreRaces,"Foreign-Born Multiracial Population In Northern Western Europe;Population: Foreign Born, Northern Western Europe, Two or More Races;multiracial people born outside of northern western europe;multiracial population in northern western europe that was born outside the country;people born outside of northern western europe who identify as multiracial;the multiracial population of northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAlone,"Foreign-Born White Population in Northern Western Europe;Population: Foreign Born, Northern Western Europe, White Alone;the number of white immigrants in northern western europe;the number of white people who were born outside of northern western europe but now live there;the percentage of the population of northern western europe that is white and was born outside of the region;the white immigrant population in northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Northern Western Europe, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population in Northern Western Europe;the number of white, non-hispanic foreign-born people in northern western europe;the number of white, non-hispanic people who have moved to northern western europe from other countries;the number of white, non-hispanic people who were born outside of northern western europe and now live there;the population of white, non-hispanic immigrants in northern western europe" -Count_Person_ForeignBorn_PlaceOfBirthOceania,"Oceania Foreign-Born Population;Population: Foreign Born, Oceania;number of people in oceania who are not native to oceania;people born outside of oceania who live in oceania;population of oceania that was born outside of oceania;the number of immigrants in oceania" -Count_Person_ForeignBorn_PlaceOfBirthOceania_1OrLessRatioToPovertyLine,"Foreign-Born Population in Oceania With a1 Ratio To Poverty Line or Less;Population: Foreign Born, Oceania, 1 Ratio To Poverty Line or Less;what is the percentage of oceania's population that is foreign-born and living in poverty?;what is the poverty rate among foreign-born people in oceania?;what percentage of the foreign-born population in oceania lives below the poverty line?" -Count_Person_ForeignBorn_PlaceOfBirthOceania_1To1.99RatioToPovertyLine,"Foreign-Born In Oceania Population With A 1 to 2 .0 Ratio To Poverty Line;Population: Foreign Born, Oceania, 1 - 2.0 Ratio To Poverty Line;half of foreign-born people in oceania live below the poverty line;one in two foreign-born people in oceania live below the poverty line;the ratio of foreign-born people in oceania to the poverty line is 1 to 20" -Count_Person_ForeignBorn_PlaceOfBirthOceania_2OrMoreRatioToPovertyLine,"Foreign-Born Population In Oceania With A 2 Ratio To Poverty Line or More;Population: Foreign Born, Oceania, 2 Ratio To Poverty Line or More;the number of people born outside of oceania who live below the poverty line, divided by the total number of people born outside of oceania;the number of people born outside of oceania who live below the poverty line, expressed as a percentage of the total population of oceania;the percentage of people born outside of oceania who live below the poverty line;the proportion of people born outside of oceania who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthOceania_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign Born Population in Oceania;Population: Foreign Born, Oceania, American Indian or Alaska Native Alone;foreign-born population of oceania and american indian or alaska native alone;people born outside the united states who identify as oceanian or american indian or alaska native alone;people who identify as oceanian or american indian or alaska native alone and were born outside the united states;population of oceania and american indian or alaska native alone who were born outside the united states" -Count_Person_ForeignBorn_PlaceOfBirthOceania_AsianAlone,"Asian Foreign-Born Population In Oceania;Population: Foreign Born, Oceania, Asian Alone;the asian population in oceania;the number of asian immigrants in oceania;the number of asians living in oceania;the number of people born in asia who live in oceania" -Count_Person_ForeignBorn_PlaceOfBirthOceania_BlackOrAfricanAmericanAlone,"African American Foreign Borns In Oceania;Population: Foreign Born, Oceania, Black or African American Alone;african americans born in oceania;african-born people living in oceania;black people born in oceania;people of african descent born in oceania" -Count_Person_ForeignBorn_PlaceOfBirthOceania_HispanicOrLatino,"Oceania Hispanic Foreign Borns;Population: Foreign Born, Oceania, Hispanic or Latino;hispanic immigrants in oceania;hispanic people who live in oceania;people born in hispanic countries who live in oceania;people from hispanic countries who live in oceania" -Count_Person_ForeignBorn_PlaceOfBirthOceania_NativeHawaiianOrOtherPacificIslanderAlone,"Foreign-Born In Oceania Native Hawaiian or Other Pacific Islander Population;Population: Foreign Born, Oceania, Native Hawaiian or Other Pacific Islander Alone;oceania native hawaiian or other pacific islander population who are foreign-born;oceania native hawaiian or other pacific islander population who were born in another country;oceania native hawaiian or other pacific islander population who were not born in the united states;population of oceania native hawaiian or other pacific islanders who were born outside of the united states" -Count_Person_ForeignBorn_PlaceOfBirthOceania_OneRace,"Foreign-Born Population in Oceania;Population: Foreign Born, Oceania, One Race;the number of people who have migrated to oceania;the number of people who were born in another country and are now living in oceania;the percentage of people born outside of oceania who live in oceania;the percentage of the population of oceania that was born in another country" -Count_Person_ForeignBorn_PlaceOfBirthOceania_PovertyStatusDetermined,"Oceania Foreign-Born Population With Determined Poverty Status;Population: Foreign Born, Oceania, Poverty Status Determined;percentage of foreign-born people in oceania living in poverty;poverty rate among foreign-born people in oceania;the number of foreign-born people in oceania living in poverty;the percentage of foreign-born people in oceania living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthOceania_SomeOtherRaceAlone,"Foreign-Born Population in Oceania of Some Other Race;Population: Foreign Born, Oceania, Some Other Race Alone;people born outside of oceania who identify as a race other than ""white"" or ""indigenous"";people born outside of oceania who live in oceania and identify as a race other than white;people who were born in oceania but identify as a race other than white;people who were born outside of oceania but moved to oceania and identify as a race other than white" -Count_Person_ForeignBorn_PlaceOfBirthOceania_TwoOrMoreRaces,"Multiracials Foreign-Born In Oceania;Population: Foreign Born, Oceania, Two or More Races;people born in oceania who identify as multiracial;people born outside of oceania who identify as multiracial;people of multiple races who were born in oceania;people who identify as multiracial and were born outside of oceania" -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAlone,"Population: Foreign Born, Oceania, White Alone;White Foreign-Born Population in Oceania;the number of white immigrants in oceania;the number of white people who have moved to oceania from other countries;the number of white people who were born outside of oceania but now live there;the percentage of the population of oceania that is white and was born outside of the region" -Count_Person_ForeignBorn_PlaceOfBirthOceania_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Oceania, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population In Oceania;count of white non-hispanic people born outside of oceania who now live in oceania;number of white non-hispanic foreign-born people in oceania;population of white non-hispanic immigrants in oceania;total number of white non-hispanic people who were born in another country and now live in oceania" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Foreign-Born Population in South Central Asia;Population: Foreign Born, South Central Asia;immigrants to south central asia;number of people living in south central asia who were born in other countries;people born outside of south central asia who currently live in the region;the number of people born in south central asia who are living in another country" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1OrLessRatioToPovertyLine,"1 the percentage of people born in south central asia who live below the poverty line;2 the proportion of south central asian immigrants who are poor;Foreign-Born Population in South Central Asia With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, South Central Asia, 1 Ratio To Poverty Line or Less;the percentage of people born in south central asia who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_1To1.99RatioToPovertyLine,"Foreign-Born Population in South Central Asia With a 1 to 2.0 Ratio to Poverty Line;Population: Foreign Born, South Central Asia, 1 - 2.0 Ratio To Poverty Line;the percentage of people born in south central asia who live in poverty is 1 to 2 times the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_2OrMoreRatioToPovertyLine,"Foreign-Born Population In South Central Asia With A 2 Ration To Poverty Line Or More;Population: Foreign Born, South Central Asia, 2 Ratio To Poverty Line or More;the number of people born in south central asia who are living in difficult economic circumstances;the number of people born in south central asia who have a ratio of income to poverty line of 2 or more;the number of people born in south central asia who live above the poverty line;the number of people born outside of south central asia who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign-Born Population in South Central Asia;Population: Foreign Born, South Central Asia, American Indian or Alaska Native Alone;american indian or alaska native people who were born in south central asia;people of american indian or alaska native descent who were born in south central asia;people who were born in south central asia and have american indian or alaska native ancestry;people who were born in south central asia and identify as american indian or alaska native" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_AsianAlone,"Asian Foreign-Born Population in South Central Asia;Population: Foreign Born, South Central Asia, Asian Alone;the asian population of south central asia;the number of asian-born people in south central asia;the number of people born in asia who live in south central asia;the population of people born in asia who live in south central asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_BlackOrAfricanAmericanAlone,"African American Foreign Born Population in South Central Asia;Population: Foreign Born, South Central Asia, Black or African American Alone;south central asian black or african americans" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_HispanicOrLatino,"Hispanic Foreign-Born Population in Eastern Asia;Population: Foreign Born, South Central Asia, Hispanic or Latino;hispanic community in east asia;hispanic population in east asia;the number of hispanic immigrants living in eastern asia;the number of hispanic people born outside of the united states who live in eastern asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian Or Other Pacific Islander Foreign-Born Population In South Central Asia;Population: Foreign Born, South Central Asia, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander foreign-born people in south central asia;the number of native hawaiian or other pacific islander immigrants in south central asia;the number of native hawaiian or other pacific islander people who are not citizens of south central asia but live there;the number of native hawaiian or other pacific islander people who were born in another country and now live in south central asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_OneRace,"Population: Foreign Born, South Central Asia, One Race;Single Race Foreign-Born Population In South Central Asia;number of foreign-born people of a single race in south central asia;number of people born outside of south central asia who identify as a single race;population of foreign-born people of a single race in south central asia;population of foreign-born people who identify as a single race in south central asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_PovertyStatusDetermined,"Foreign-Born Population In South Central Asia With Poverty Status Determined;Population: Foreign Born, South Central Asia, Poverty Status Determined;the number of people born in south central asia who live in poverty;the percentage of people born in south central asia who live in poverty;the proportion of people born in south central asia who live in poverty;the share of people born in south central asia who live in poverty" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_SomeOtherRaceAlone,"People Of Some Other Race Foreign Born In South Central Asia;Population: Foreign Born, South Central Asia, Some Other Race Alone;foreign-born people of south asian descent;people of south asian descent who are immigrants;people of south asian descent who are not native-born americans;people of south asian descent who were born outside of the united states" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_TwoOrMoreRaces,"Multiracial Foreign-Born Population in South Central Asia;Population: Foreign Born, South Central Asia, Two or More Races;the number of people in south central asia who were born in another country and identify as more than one race;the number of people in south central asia who were born in another country and identify as more than one race, as a percentage of the total population;the percentage of the population of south central asia that was born outside of the region and identifies as more than one race;the population of south central asia that was born outside of the region and identifies as more than one race" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAlone,"Population: Foreign Born, South Central Asia, White Alone;White Population Foreign Born in South Central Asia;foreign-born white population in south central asia;white expats in south central asia;white immigrants to south central asia;white people born outside of south central asia who now live there" -Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, South Central Asia, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population in South Central Asia;the number of white, non-hispanic foreign-born people living in south central asia;the number of white, non-hispanic people who have moved to south central asia from other countries;the number of white, non-hispanic people who were born outside of south central asia and now live there;the population of white, non-hispanic immigrants living in south central asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Foreign-Born Population In South-Eastern Asia;Population: Foreign Born, South Eastern Asia;the number of people who are not citizens of south-east asia but live there;the number of people who have moved to south-east asia from another country;the number of people who were born in another country and now live in south-east asia;the number of people who were born in another country but now live in south-east asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1OrLessRatioToPovertyLine,"Foreign-Born Population in South Eastern Asia With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, South Eastern Asia, 1 Ratio To Poverty Line or Less;the percentage of people born outside of southeast asia who live below the poverty line;the percentage of people born outside of southeast asia who live below the poverty line in southeast asia;the proportion of people who were born in another country and now live in southeast asia who have an income below the poverty line in southeast asia;the share of southeast asia's population that was born elsewhere and is poor" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_1To1.99RatioToPovertyLine,"Population Foreign Born in South Eastern Asia with a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, South Eastern Asia, 1 - 2.0 Ratio To Poverty Line" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_2OrMoreRatioToPovertyLine,"Foreign-Born Population in South Eastern Asia with a 2 Ratio to Poverty Line or More;Population: Foreign Born, South Eastern Asia, 2 Ratio To Poverty Line or More;the foreign-born population in south east asia is at least 2 times more likely to be poor than the native-born population;the number of foreign-born people in south east asia who live below the poverty line is at least 2 times the number of native-born people in south east asia who live below the poverty line;the number of foreign-born people in southeast asia who live below the poverty line by a factor of 2 or more;the proportion of foreign-born people in south east asia who live below the poverty line is at least 2 times the proportion of native-born people in south east asia who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign-Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, American Indian or Alaska Native Alone;the number of american indians or alaska natives born outside of the united states who live in southeast asia;the number of american indians or alaska natives who are expatriates and live in southeast asia;the number of american indians or alaska natives who are foreign-born and live in southeast asia;the number of american indians or alaska natives who are immigrants and live in southeast asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_AsianAlone,"Population Foreign Born In South-Eastern Asia;Population: Foreign Born, South Eastern Asia, Asian Alone;number of immigrants in south-east asia;number of immigrants in south-eastern asia;number of immigrants living in south-east asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, Black or African American Alone;how many people of african descent live in southeast asia?;what is the african american population in southeast asia?;what is the number of african americans living in southeast asia?;what is the population of african americans in southeast asia?" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_HispanicOrLatino,"Hispanic Foreign-Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, Hispanic or Latino;hispanic community in southeast asia;hispanic people living in southeast asia;hispanic population in southeast asia;hispanic residents of southeast asia" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Foreign-Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, Native Hawaiian or Other Pacific Islander Alone;the native hawaiian or other pacific islander population of south eastern asia;the number of native hawaiian or other pacific islander immigrants in south eastern asia;the number of native hawaiians or other pacific islanders living in south eastern asia;the number of people born in south eastern asia who are native hawaiian or other pacific islander" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_OneRace,"1 people born in south east asia who are of one race;Population: Foreign Born, South Eastern Asia, One Race;Uniracial South Eastern Asia Foreign Borns" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_PovertyStatusDetermined,"Foreign-Born Population in South Eastern Asia with Poverty Status Determined;Population: Foreign Born, South Eastern Asia, Poverty Status Determined;the number of foreign-born people in southeast asia who have been determined to be living below the poverty line;the number of foreign-born people in southeast asia who have been determined to be living in poverty;the percentage of foreign-born people in southeast asia who live in poverty;the proportion of foreign-born people in southeast asia who have been determined to be living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_SomeOtherRaceAlone,"Other Race Foreign-Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, Some Other Race Alone;foreign-born population of other races in southeast asia;foreign-born population of southeast asia who are not of any of the region's major ethnic groups;number of foreign-born people of other races in southeast asia;people born outside of southeast asia who now live in the region and are not of any of the region's major ethnic groups" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_TwoOrMoreRaces,"Multiracial Foreign Born Population in South Eastern Asia;Population: Foreign Born, South Eastern Asia, Two or More Races;a significant portion of the population is made up of foreign-born people from southeast asia who identify as two or more races;foreign-born people from southeast asia who identify as two or more races make up a significant portion of the population;people who identify as two or more races and are foreign-born from southeast asia are a significant part of the population" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAlone,"Population: Foreign Born, South Eastern Asia, White Alone;White Foreign-Born Population in South Eastern Asia;the number of white expats in south east asia;the number of white immigrants in south east asia;the number of white people who have moved to south east asia from other countries;the number of white people who were born outside of south east asia and now live there" -Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, South Eastern Asia, White Alone Not Hispanic or Latino;White Non-Hispanic Foreign-Born Population In South-Eastern Asia;number of white non-hispanic foreign-born people in southeast asia;number of white non-hispanic people born outside of southeast asia who now live in southeast asia;the number of white, non-hispanic foreign-born people in southeast asia;the number of white, non-hispanic people who were born outside of southeast asia and now live there" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica,"Foreign-Born Population in South America;Population: Foreign Born, Southamerica;the number of immigrants living in south america;the number of people born outside of south america who are currently living in south america;the number of people who are not native to south america;the number of people who have moved to south america from other countries" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1OrLessRatioToPovertyLine,"Population Foreign -Born In South America With a 1 Ratio To Poverty Line;Population: Foreign Born, Southamerica, 1 Ratio To Poverty Line or Less;population of foreign-born people in south america with a poverty rate of 100%;the number of foreign-born people in south america who live below the poverty line;the share of foreign-born people in south america who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_1To1.99RatioToPovertyLine,"Foreign-Born Population in South America with a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Southamerica, 1 - 2.0 Ratio To Poverty Line;the percentage of people born in south america who live below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_2OrMoreRatioToPovertyLine,"Population: Foreign Born, Southamerica, 2 Ratio To Poverty Line or More;South America Foreign Borns with a 2 Ratio To Poverty Line or More;foreign-born people from south america who earn twice the poverty line or more;immigrants from south america who earn twice the poverty line or more;people from south america who were born in another country and earn twice the poverty line or more;south american immigrants who earn twice the poverty line or more" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Foreign-Born Population in South America;Population: Foreign Born, Southamerica, American Indian or Alaska Native Alone;american indian or alaska native immigrants in south america;american indian or alaska native people who live in south america;south american citizens who are american indian or alaska native;south american people who are american indian or alaska native by birth" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_AsianAlone,"Asian Foreign-Born in South America;Population: Foreign Born, Southamerica, Asian Alone;asian immigrants in south america;people born in asia who live in south america;people of asian descent living in south america;south american citizens of asian descent" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in South America;Population: Foreign Born, Southamerica, Black or African American Alone;african american immigrants in south america;african americans living in south america;people of african american descent living in south america;south american citizens of african american descent" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_HispanicOrLatino,"Hispanic Foreign-Born Population in South America;Population: Foreign Born, Southamerica, Hispanic or Latino;hispanic people living in south america;hispanic population in south america;hispanic south americans;south american population of hispanic descent" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_NativeHawaiianOrOtherPacificIslanderAlone,"Foreign Born Native Hawaiian or Other Pacific Islander Population in South America;Population: Foreign Born, Southamerica, Native Hawaiian or Other Pacific Islander Alone;the native hawaiian or other pacific islander diaspora in south america;the number of native hawaiian or other pacific islander people who have immigrated to south america;the number of native hawaiian or other pacific islander people who were born outside of south america but now live there;the population of native hawaiian or other pacific islander people who are not originally from south america but now live there" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_OneRace,"Monoracial Population Foreign Born In South America;Population: Foreign Born, Southamerica, One Race;foreign-born monoracial population in south america;south america's foreign-born monoracial population;the monoracial population of south america that was born outside of the country;the number of people in south america who were born outside of the country and identify as monoracial" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_PovertyStatusDetermined,"Population: Foreign Born, Southamerica, Poverty Status Determined;South American Foreign Born Population Poverty Status Determined;how many south american immigrants live in poverty in the us?;how many south american immigrants live in poverty?;what is the economic status of south american immigrants?;what percentage of south american immigrants live in poverty?" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_SomeOtherRaceAlone,"Other Race Population Foreign-Born In South America;Population: Foreign Born, Southamerica, Some Other Race Alone;foreign-born people of other races in south america;foreign-born population of south america by race;foreign-born population of south america, by race;south america's foreign-born population by race" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_TwoOrMoreRaces,"Multiracial Foreign-Born Population in South America;Population: Foreign Born, Southamerica, Two or More Races;the number of foreign-born multiracial people in south america;the number of people born outside of south america who identify as multiracial;the percentage of the south american population that is foreign-born and multiracial;the percentage of the south american population who are foreign-born and multiracial" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAlone,"Population: Foreign Born, Southamerica, White Alone;White Population Foreign Born In South America;the number of white immigrants in south america;the number of white people born outside of south america who now live in south america;the number of white people who have moved to south america from other countries;the white immigrant population in south america" -Count_Person_ForeignBorn_PlaceOfBirthSouthamerica_WhiteAloneNotHispanicOrLatino,"Population: Foreign Born, Southamerica, White Alone Not Hispanic or Latino;South American White Non Hispanic Foreign Born Population;foreign-born south american white non-hispanics;south american white non-hispanic immigrants;south american white non-hispanics born outside the united states;south american white non-hispanics who moved to the united states" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born Population in South Eastern Europe;Population: Foreign Born, Southern Eastern Europe;foreigners in south eastern europe;people born outside south eastern europe who live in the region;people from other countries living in south eastern europe;population of south eastern europe born outside the region" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1OrLessRatioToPovertyLine,"Foreign-Born Population in Southern Eastern Europe With a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Southern Eastern Europe, 1 Ratio To Poverty Line or Less;the number of foreign-born people in southern eastern europe who are living below the poverty line;the percentage of foreign-born people in southern eastern europe who are living in poverty;the percentage of people born outside of southern eastern europe who live below the poverty line;the proportion of foreign-born residents in southern eastern europe who are poor" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_1To1.99RatioToPovertyLine,"Foreign-Born Population in Southern Eastern Europe With a 1 to 2.0 Ratio To Poverty Line;Population: Foreign Born, Southern Eastern Europe, 1 - 2.0 Ratio To Poverty Line;the number of people born outside of southern eastern europe who live in poverty is 1 to 2 times the poverty line;the poverty rate for foreign-born people in southern eastern europe is 1 to 2 times the national poverty rate" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_2OrMoreRatioToPovertyLine,"Foreign Born in Southern Eastern Europe With a 2 Ratio To Poverty Line or More;Population: Foreign Born, Southern Eastern Europe, 2 Ratio To Poverty Line or More;people born in southern eastern europe who are at or below the poverty line;people born in southern eastern europe who have a ratio of 2 or more to the poverty line;people born in southern eastern europe who have a ratio of income to poverty line of 2 or more;people born in southern eastern europe who live below the poverty line by a factor of two or more" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Population Foreign Born In Southern Eastern Europe;Foreign Born In Southern Eastern Europe American Indian Or Alaska Native Population;Population: Foreign Born, Southern Eastern Europe, American Indian or Alaska Native Alone;the number of american indian or alaska native people born in southern eastern europe;the number of american indian or alaska native people who were born in southern eastern europe;the number of people born in southern eastern europe who are american indian or alaska native;the number of people who were born in southern eastern europe and are american indian or alaska native" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_AsianAlone,"Foreign Born in South Eastern Europe Asians;Population: Foreign Born, Southern Eastern Europe, Asian Alone;asians who have immigrated to south eastern europe;asians who were born in south eastern europe;people born in south eastern europe who are of asian descent;people of asian descent who are citizens of south eastern european countries" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_BlackOrAfricanAmericanAlone,"African-American Foreign-Born Population In Southern Eastern Europe;Population: Foreign Born, Southern Eastern Europe, Black or African American Alone;black people born outside of southern and eastern europe who now live there;number of african-americans born outside of the united states who live in southern and eastern europe;people born in africa who now live in southern eastern europe;people of african descent who now live in southern eastern europe" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_HispanicOrLatino,"Foreign-Born in South Eastern Europe Hispanics;Population: Foreign Born, Southern Eastern Europe, Hispanic or Latino;hispanics born in south eastern europe;hispanics who are from south eastern europe;hispanics who have south eastern european ancestry;hispanics who were born in south eastern europe" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_NativeHawaiianOrOtherPacificIslanderAlone,"Foreign-Born Native Hawaiian or Other Pacific Islander Population in Southern Eastern Europe;Population: Foreign Born, Southern Eastern Europe, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander diaspora in southern eastern europe;number of native hawaiian or other pacific islanders who live in southern eastern europe;number of people born in native hawaiian or other pacific islander territories who live in southern eastern europe;population of native hawaiian or other pacific islanders in southern eastern europe" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_OneRace,"Monoracial Population Foreign Born In Southern Eastern Europe;Population: Foreign Born, Southern Eastern Europe, One Race;foreign-born monoracial population in southern eastern europe;monoracial population in southern eastern europe who were born abroad;the number of people born outside of southern eastern europe who identify as monoracial;the percentage of the population in southern eastern europe who are foreign-born and monoracial" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_PovertyStatusDetermined,"Foreign Born in Southern Eastern Europe With Poverty Status Determined;Population: Foreign Born, Southern Eastern Europe, Poverty Status Determined;people born in southern eastern europe who have been determined to be living in poverty;people who were born in southern eastern europe and have been determined to be living below the poverty line;people who were born in southern eastern europe and have been determined to be poor;people who were born in southern eastern europe and have been determined to have a low socioeconomic status" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_SomeOtherRaceAlone,"Population: Foreign Born, Southern Eastern Europe, Some Other Race Alone;Some Other Race Foreign-Born Population in Southern Eastern Europe;foreign-born people of some other race in southern eastern europe;number of people born outside of southern eastern europe who identify as some other race;people born outside of southern eastern europe who identify as some other race living in southern eastern europe;population of foreign-born people of some other race in southern eastern europe" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_TwoOrMoreRaces,"Population Foreign Born In Southern Eastern Europe Multiracial;Population: Foreign Born, Southern Eastern Europe, Two or More Races;a significant portion of the population is made up of multiracial people who were born in southern and eastern europe;the population of multiracial people born in southern and eastern europe is significant;the population of multiracial people who were born in southern and eastern europe is significant;there is a significant population of multiracial people who were born in southern and eastern europe" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAlone,"Population: Foreign Born, Southern Eastern Europe, White Alone;White Population Foreign-Born in Southern Eastern Europe;foreign-born white population in southern eastern europe;people of white ethnicity who were born outside of southern eastern europe but now live there;white immigrants in southern eastern europe;white population in southern eastern europe who were born outside of the country" -Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope_WhiteAloneNotHispanicOrLatino,"Foreign-Born In Southern Eastern European White Non-Hispanic Population;Population: Foreign Born, Southern Eastern Europe, White Alone Not Hispanic or Latino;white people born in southern and eastern europe who are not hispanic;white people born in southern and eastern europe who are not hispanic or latino;white people born in southern and eastern europe who are not of hispanic origin;white people born in southern and eastern europe who do not identify as hispanic" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia,"Population Foreign Born in Western Asian;Population: Foreign Born, Western Asia;number of people who have immigrated to western asia;number of people who have moved to western asia from other countries;the number of people who have moved to western asia from other countries" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1OrLessRatioToPovertyLine,"Foreign-Born Population in Western Asia with a 1 Ratio To Poverty Line or Less;Population: Foreign Born, Western Asia, 1 Ratio To Poverty Line or Less;the number of foreign-born people in western asia living below the poverty line as a percentage of the total population;the percentage of people born in western asia who live below the poverty line;the percentage of the population of western asia who are foreign-born and live below the poverty line;the proportion of foreign-born people in western asia living below the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_1To1.99RatioToPovertyLine,"Population: Foreign Born, Western Asia, 1 - 2.0 Ratio To Poverty Line;Western Asia Foreign Borns With a 1 to 2.0 Ratio to Poverty Line;people born in western asia who live in the us and earn less than twice the poverty line;people from western asia who are living in the us and whose income is less than the poverty line;people from western asia who live in the us and earn less than twice the poverty line;people who live in the us and were born in western asia and earn less than twice the poverty line" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_2OrMoreRatioToPovertyLine,"Foreign-Born Population in Western Asia with a 2 Ratio To Poverty Line or More;Population: Foreign Born, Western Asia, 2 Ratio To Poverty Line or More;the number of people born in western asia who live below the poverty line by a factor of two or more as a percentage of the foreign-born population;the number of people born in western asia who live below the poverty line by a factor of two or more as a percentage of the total population;the percentage of people born in western asia who live below the poverty line by a factor of two or more;the proportion of people born in western asia who live below the poverty line by a factor of two or more" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AmericanIndianOrAlaskaNativeAlone,"American Indians or Alaska Natives Foreign Born in Western Asia;Population: Foreign Born, Western Asia, American Indian or Alaska Native Alone;american indian or alaska native people who are foreign-born from western asia;american indian or alaska native people who were born in western asia;people born in western asia who are american indian or alaska native;people born in western asia who identify as american indian or alaska native" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_AsianAlone,"Foreign-Born Asian Population in Western Asia;Population: Foreign Born, Western Asia, Asian Alone;the asian diaspora in western asia;the number of asian-born people in western asia;the number of people born in asia who live in western asia;the population of asian immigrants in western asia" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_BlackOrAfricanAmericanAlone,"African American Foreign-Born Population in Western Asia;Population: Foreign Born, Western Asia, Black or African American Alone;african american immigrants in western asia;african americans living in western asia;african americans who have moved to western asia from other countries;african americans who were born in other countries and now live in western asia" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_HispanicOrLatino,"Hispanic Foreign-Born Population in Western Asia;Population: Foreign Born, Western Asia, Hispanic or Latino;hispanic immigrants living in western asia;hispanic population born outside of western asia;the number of hispanic immigrants in western asia;the number of hispanic people who were born in another country and now live in western asia" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Foreign Born Population in Western Asia;Population: Foreign Born, Western Asia, Native Hawaiian or Other Pacific Islander Alone;the number of people born outside of the united states who are from western asia or native hawaiian or other pacific islander alone is;the percentage of the population that is foreign-born from western asia or native hawaiian or other pacific islander alone is;the population of foreign-born people from western asia and native hawaiian or other pacific islander alone is;the proportion of the population that is foreign-born from western asia or native hawaiian or other pacific islander alone is" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_OneRace,"One Race Foreign-Born Population in Western Asia;Population: Foreign Born, Western Asia, One Race;distribution of the population of western asia by race and place of birth;foreign-born population of one race in western asia" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_PovertyStatusDetermined,"Foreign-Born Population Western Asia with Determined Poverty Status;Population: Foreign Born, Western Asia, Poverty Status Determined;foreign-born population of western asia with determined poverty status;people who were born in western asia and are considered to be poor;people who were born in western asia and are living below the poverty line;people who were born in western asia and are living in poverty" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_SomeOtherRaceAlone,"Other Race Foreign-Born Population in Western Asia;Population: Foreign Born, Western Asia, Some Other Race Alone;number of people born outside of western asia who identify as other races;percentage of the population of western asia who are foreign-born and identify as other races;population of foreign-born people of other races in western asia;proportion of the population of western asia who are foreign-born and identify as other races" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_TwoOrMoreRaces,"Multiracial Foreign Born Population in Western Asia;Population: Foreign Born, Western Asia, Two or More Races;a significant portion of the population in western asia is made up of people who were born in other countries and identify as two or more races;people from western asia who were born outside of the united states and identify with two or more races make up a significant portion of the population;the population of the united states includes a large number of people who were born in western asia and identify with two or more races;western asia has a large population of people who were born in other countries and identify as two or more races" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAlone,"Population: Foreign Born, Western Asia, White Alone;White Population Foreign Born in Western Asia;foreign-born white population in western asia;people of white ethnicity who were born in other countries and now live in western asia;white immigrants in western asia;white people born outside of western asia who live in western asia" -Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAloneNotHispanicOrLatino,"Foreign-Born in Western Asia White And Non-Hispanic Population;Population: Foreign Born, Western Asia, White Alone Not Hispanic or Latino;foreign-born white non-hispanics from western asia;people born in western asia who are white and non-hispanic;white non-hispanics born in western asia;white non-hispanics who were born in western asia" -Count_Person_ForeignBorn_ResidesInAdultCorrectionalFacilities,"Foreign Born Adults in Correctional Facilities;Population: Foreign Born, Adult Correctional Facilities;adults born outside of the united states who are incarcerated;adults born outside the us who are in jail or prison;people who were born abroad and are now in correctional facilities;people who were born in another country and are now in prison" -Count_Person_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"Foreign-Born Population In College Or University Student Housing;Population: Foreign Born, College or University Student Housing;the number of foreign-born students living in college or university student housing;the number of international students living in college or university student housing;the percentage of college or university students who were born outside of the united states;the proportion of college or university students who are international students" -Count_Person_ForeignBorn_ResidesInGroupQuarters,"Foreign-Born Population Living in Group Quarters;Population: Foreign Born, Group Quarters;people who were born in other countries and live in group quarters;people who were not born in the united states and live in a place where multiple people share living quarters" -Count_Person_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Foreign-Born Population in Institutionalized Group Quarters;Population: Foreign Born, Institutionalized Group Quarters;foreign-born people in group quarters in the us;foreign-born people living in the us in group quarters or other institutional settings" -Count_Person_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Foreign-Born Population in Non-Institutionalized Group Quarters;Population: Foreign Born, Noninstitutionalized Group Quarters;foreign-born residents of the us living in non-institutional group quarters;people born in other countries living in non-institutional group quarters;people born in other countries who live in the us in non-institutional group quarters;people who were born outside of the us and live in the us in non-institutional group quarters" -Count_Person_ForeignBorn_ResidesInNursingFacilities,"Foreign-Born Population in Nursing Facilities;Population: Foreign Born, Nursing Facilities;foreign-born residents in nursing facilities;population of nursing homes that were born in another country;the number of foreign-born people in nursing homes;the percentage of nursing home residents who were born outside the united states" -Count_Person_FullTimeYearRoundWorker,"Population Aged 16 to 64 Years Who Are Full Time Year Round Workers;Population: 16 - 64 Years, Full Time Year Round Worker;number of people aged 16 to 64 who are full-time, year-round workers;number of people aged 16 to 64 who are in full-time, year-round employment;number of people aged 16 to 64 who have full-time, year-round jobs;number of people aged 16 to 64 who work full-time, year-round" -Count_Person_HearingDifficulty,How many people have hearing loss?;Number of Females With Hearing Difficulties;Number of people who are with Hearing Difficulty;Population: Hearing Difficulty;how many women have hearing loss?;how many women have trouble hearing?;what is the number of women with hearing impairment?;what percentage of women have hearing problems? -Count_Person_HispanicOrLatino,Hispanic and Latino population;Hispanic population;Latino population;Number of Hispanic People;Number of people who are Hispanic or Latino;Population: Hispanic or Latino;number of Hispanics;number of Latinos;number of hispanic people;number of hispanics;number of people of hispanic origin;the number of people who identify as hispanic -Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic People Who Identify as American Indian, Either Alone or in Combination With Other Races;Number of people who are Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;how many hispanic people identify as american indian, alone or in combination with other races?;the number of hispanic people who identify as american indian, alone or in combination with other races;the number of hispanic people who identify as american indian, either alone or in combination with other races;what is the number of hispanic people who identify as american indian, either alone or in combination with other races" -Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,Number of Hispanic People Who Identify as American Indian;Number of people who are Hispanic or Latino & American Indian or Alaska Native Alone;Population: Hispanic or Latino & American Indian or Alaska Native Alone;how many hispanic people identify as american indian?;what is the number of hispanic people who identify as american indian?;what is the proportion of hispanic people who identify as american indian?;what percentage of hispanic people identify as american indian? -Count_Person_HispanicOrLatino_AsianAlone,Number of Hispanic People Who Identify as Asian Alone;Number of people who are Hispanic or Latino & Asian Alone;Population: Hispanic or Latino & Asian Alone;how many hispanic people identify as asian alone?;how many people of hispanic descent identify as asian alone?;what is the number of hispanic people who identify as asian alone?;what is the population of hispanic people who identify as asian alone? -Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,How many people are Hispanic or Latino and Asian?;How many people identify as Hispanic or Latino and Asian?;Number of Hispanic People Who Identify as Asian Alone or in Combination With Other Races;Number of people who are Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Population: Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;The number of people who identify as Hispanic or Latino and Asian American;The number of people who identify as Hispanic or Latino and Asian alone or in combination with one or more other races;The number of people who identify as both Hispanic or Latino and Asian;number of hispanic people who identify as asian alone or in combination with other races;number of hispanic people who identify as asian and another race;number of hispanic people who identify as asian and another race or races;number of hispanic people who identify as asian and/or another race -Count_Person_HispanicOrLatino_AsianOrPacificIslander,Number of Hispanic People Who Identify as Asian or Pacific Islander;Number of people who are Hispanic or Latino & Asian or Pacific Islander;Population: Hispanic or Latino & Asian or Pacific Islander;The number of Hispanic or Latino people and Asian or Pacific Islander people;The number of people who are Hispanic or Latino and Asian or Pacific Islander;The number of people who are Hispanic or Latino and Asian or Pacific Islander ethnicity;The number of people who are of Hispanic or Latino and Asian or Pacific Islander descent;The number of people who identify as Hispanic or Latino and Asian or Pacific Islander;how many hispanic people identify as asian or pacific islander?;what is the number of hispanic people who identify as asian or pacific islander?;what is the proportion of hispanic people who identify as asian or pacific islander?;what percentage of hispanic people identify as asian or pacific islander? -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,Humber of People Who Identify as Hispanic or as African American;Number of people who are Hispanic or Latino & Black or African American Alone;Population: Hispanic or Latino & Black or African American Alone -Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are Hispanic or Latino and Black or African American?;Number of Hispanic People Who Identify as Black or African American Alone or in Combination With One or More Other Races;Number of people who are Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Population: Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;The number of people who are Hispanic or Latino and Black or African American, or both;The number of people who are of Hispanic or Latino ethnicity and Black or African American race;The number of people who identify as Hispanic or Latino and Black or African American alone or in combination with one or more other races;The number of people who identify as Hispanic or Latino and Black or African American, either alone or in combination with one or more other races;how many hispanic people identify as black or african american, alone or in combination with one or more other races?;how many hispanic people identify as black or african american, either alone or in combination with one or more other races?;number of hispanic people who identify as black or african american alone or in combination with one or more other races;what is the number of hispanic people who identify as black or african american, alone or in combination with one or more other races?" -Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Hispanic People Who Identify as Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races;Number of people who are Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population of Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander ethnicity;The number of people who identify as Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;how many hispanic people identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the number of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the percentage of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races?;what is the proportion of hispanic people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races? -Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,Hispanic or Latino and Native Hawaiian or Other Pacific Islander Alone population;Number of Hispanic People Who Identify as Native Hawaiian or Other Pacific Islander Alone;Number of people who are Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Population: Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;The number of people who are Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;how many hispanic people identify as native hawaiian or other pacific islander alone?;what is the number of hispanic people who identify as native hawaiian or other pacific islander alone?;what is the percentage of hispanic people who identify as native hawaiian or other pacific islander alone?;what is the proportion of hispanic people who identify as native hawaiian or other pacific islander alone? -Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,"How many Hispanic or Latino people are in adult correctional facilities?;Number of Hispanics in Adult Correctional Facilities;Number of people who are Hispanic or Latino, in Adult Correctional Facilities;Population: Hispanic or Latino, Adult Correctional Facilities;The number of Hispanic or Latino people in adult correctional facilities;The number of Hispanic or Latino people in jails and prisons;The number of Hispanic or Latino people incarcerated in the United States;The number of Hispanic or Latino people who are serving time in prison;the number of hispanic adults in correctional facilities;the number of hispanic prisoners;the number of hispanics in adult correctional facilities;the number of hispanics incarcerated in adult correctional facilities" -Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,"Number of Hispanics Staying in College or University Student Housing;Number of people who are Hispanic or Latino, in College or University Student Housing;Population: Hispanic or Latino, College or University Student Housing;The number of Hispanic or Latino students in college or university dorms;The number of Hispanic or Latino students in college or university residence halls;The number of Hispanic or Latino students in college or university student housing facilities;The number of Hispanic or Latino students in college or university student housing units;The number of Hispanic or Latino students living in college or university housing;how many hispanic students live in college or university student housing?;what is the number of hispanic students who live in dormitories?;what is the number of hispanic students who live on campus?;what is the percentage of hispanic students who live in college or university student housing?" -Count_Person_HispanicOrLatino_ResidesInGroupQuarters,"Number of Hispanics Staying in Group Quarters;Number of Hispanics or Latinos in Group Quarters;Number of Hispanics or Latinos in group quarters;Number of people who are Hispanic or Latino, in Group Quarters;Population: Hispanic or Latino, Group Quarters;The number of Hispanic or Latino people in group quarters;the number of hispanics living in group quarters, such as dormitories, shelters, or other group living arrangements;what is the hispanic population of group quarters?" -Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Number of Hispanic or Latino people institutionalized in group quarters;Number of Hispanics Institutionalized in Group Quarters;Number of people who are Hispanic or Latino, in Institutionalized in Group Quarters;Population: Hispanic or Latino, Institutionalized Group Quarters;The number of Hispanic or Latino people institutionalized;The number of Hispanic or Latino people institutionalized in group quarters;number of Hispanic or Latino people institutionalized;number of Hispanic or Latino people institutionalized in group quarters;number of hispanics institutionalized;number of hispanics institutionalized in group living spaces;number of hispanics institutionalized in group quarters;the number of hispanics institutionalized" -Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,"Hispanic or Latino juvenile population;How many Hispanic or Latino people are in juvenile facilities?;Number of Hispanics in Juvenile Facilities;Number of people who are Hispanic or Latino, in Juvenile Facilities;Population: Hispanic or Latino, Juvenile Facilities;The number of Hispanic or Latino people in juvenile facilities;the number of hispanic children in juvenile facilities;the number of hispanic juveniles in detention centers;the number of hispanic kids in juvenile facilities;the number of hispanic youth in juvenile detention centers" -Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,"How many Hispanic or Latino people are in military quarters or military ships?;How many Hispanic or Latino people are in military quarters or on military ships?;Number of Hispanic or Latino people in military housing or on military ships;Number of Hispanics Staying in Military Quarters or on Military Ships;Number of Hispanics or Latinos living in military housing or on military ships;Number of people who are Hispanic or Latino, in Military Quarters or Military Ships;Population: Hispanic or Latino, Military Quarters or Military Ships;The number of Hispanic or Latino people in military quarters or military ships;the number of hispanics living in military quarters or on military ships;the number of hispanics living on military bases;the number of hispanics residing in military barracks;the number of hispanics staying in military housing" -Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Number of Hispanic or Latino people in non-institutional group quarters;Number of Hispanics in Non-Institutionalized Group Quarters;Number of Hispanics or Latinos in non-institutional group quarters;Number of people who are Hispanic or Latino, in Noninstitutionalized in Group Quarters;Population: Hispanic or Latino, Noninstitutionalized Group Quarters;number of hispanics in group quarters, not institutionalized;number of hispanics in non-institutional group quarters;the number of hispanics living in group quarters that are not institutions;the number of hispanics living in non-institutional group quarters" -Count_Person_HispanicOrLatino_ResidesInNursingFacilities,"How many Hispanic or Latino people are in nursing facilities;Number of Hispanics in Nursing Facilities;Number of people who are Hispanic or Latino, in Nursing Facilities;Population: Hispanic or Latino, Nursing Facilities;The number of Hispanic or Latino nursing home residents;The number of Hispanic or Latino people in nursing facilities;The percentage of Hispanic or Latino people in nursing facilities;The proportion of Hispanic or Latino people in nursing facilities;the number of hispanic nursing home patients;the number of hispanic nursing home residents;the number of hispanics in nursing homes;the number of hispanics living in nursing facilities" -Count_Person_HispanicOrLatino_TwoOrMoreRaces,Number of Hispanics Who Are Multiracial;Number of people who are Hispanic or Latino & Two or More Races;Population: Hispanic or Latino & Two or More Races;how many hispanics are multiracial?;number of hispanics who are biracial or multiracial;what is the percentage of hispanics who are multiracial?;what is the proportion of hispanics who are multiracial? -Count_Person_HispanicOrLatino_WhiteAlone,Number of Hispanic or Latino people who are also White;Number of Hispanics Who Are White;Number of White Hispanic or Latino people;Number of people who are Hispanic or Latino & White Alone;Population: Hispanic or Latino & White Alone;The number of people who are Hispanic or Latino and White in the United States;The number of people who are Hispanic or Latino and White on the census;The number of people who are of Hispanic or Latino origin and White race;the number of hispanics who identify as white;the number of white hispanics;the percentage of hispanics who are white;the proportion of hispanics who are white -Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic or Latino people who are white alone or in combination with one or more other races;Number of People Who Are Hispanic or Latino & White Alone or in Combination With One or More Other Races;Number of people who are Hispanic or Latino & White Alone or In Combination With One or More Other Races;Number of people who are Hispanic or Latino and White alone or in combination with one or more other races;Number of people who are Hispanic or Latino and identify as White alone or in combination with one or more other races;Number of people who identify as Hispanic or Latino and White alone or in combination with one or more other races on the 2020 Census;Number of people who identify as Hispanic or Latino and White, alone or in combination with one or more other races;Population: Hispanic or Latino & White Alone or In Combination With One or More Other Races;number of hispanic or latino people who are white alone or in combination with one or more other races;number of people who are hispanic or latino and identify as white alone or in combination with one or more other races;number of people who are hispanic or latino and identify as white alone or in combination with one or more other races in the united states;number of people who are hispanic or latino and white alone or in combination with one or more other races" -Count_Person_Houseless,Houseless Population;Population: Houseless -Count_Person_Houseless_Female,"Houseless Female Population;Population: Female, Houseless;female houseless people;houselessness among women" -Count_Person_Houseless_Illiterate,"Population of Houseless Illiterates;Population: Houseless, Illiterate;number of homeless illiterates;number of homeless people who are illiterate;number of illiterate homeless people;number of illiterate people who are homeless" -Count_Person_Houseless_Illiterate_Female,"Houseless Illiterate Female Population;Population: Female, Houseless, Illiterate;female, homeless, and illiterate people;people who are female, homeless, and illiterate" -Count_Person_Houseless_Illiterate_Male,"Houseless Illiterate Male Population;Population: Male, Houseless, Illiterate;male, homeless, illiterate" -Count_Person_Houseless_Illiterate_Rural,"Illiterate Houseless People in Rural Areas;Population: Houseless, Illiterate, Rural;homeless people who cannot read or write in rural areas;illiterate homeless people in the countryside;people who are homeless and cannot read or write in rural areas;people who are homeless and illiterate in rural areas" -Count_Person_Houseless_Illiterate_Urban,"Illiterate Houseless People in Urban Areas;Population: Houseless, Illiterate, Urban;homeless people who cannot read or write in urban areas;people who are homeless and illiterate in the city;people who are homeless and illiterate in urban areas;people who live on the streets and cannot read or write in cities" -Count_Person_Houseless_Literate,"2 the number of people who are without a home and can read and write;Houseless Literate Population;Population: Houseless, Literate;the number of people who are living without a home and can read and write;the number of people who are without shelter and can read and write" -Count_Person_Houseless_Literate_Female,"Houseless Literate Female Population;Population: Female, Houseless, Literate;female, homeless, and literate people" -Count_Person_Houseless_Literate_Male,"Houseless Literate Male Population;Population: Male, Houseless, Literate;male, homeless, and literate;male, homeless, literate;male, houseless, able to read and write;male, unhoused, and literate" -Count_Person_Houseless_Literate_Rural,"Literate Houseless Population in Rural Areas;Population: Houseless, Literate, Rural;houseless people in rural areas who are literate;the number of homeless people in rural areas who can read and write;the percentage of homeless people in rural areas who can read and write;the proportion of homeless people in rural areas who can read and write" -Count_Person_Houseless_Literate_Urban,"Population: Houseless, Literate, Urban;Urban Houseless Literate Population" -Count_Person_Houseless_MainWorker,"Main Workers;Population: Houseless, Main Worker, Worker;core employees;core team;core workers;essential workers" -Count_Person_Houseless_Male,"Houseless Male Population;Population: Male, Houseless;male population without a home" -Count_Person_Houseless_MarginalWorker,"Houseless Marginal Workers;Population: Houseless, Marginal Worker, Worker" -Count_Person_Houseless_NonWorker,"Houseless Non-Workers;Population: Houseless, Non Worker;people who are without a home and don't work" -Count_Person_Houseless_NonWorker_Female,"Houseless Female Non Worker Population;Population: Female, Houseless, Non Worker" -Count_Person_Houseless_NonWorker_Male,"Houseless Male Non Worker Population;Population: Male, Houseless, Non Worker" -Count_Person_Houseless_NonWorker_Rural,"Houseless Non-Workers in Rural Areas;Population: Houseless, Rural, Non Worker;rural residents who are without shelter and don't have a job" -Count_Person_Houseless_NonWorker_Urban,"Houseless Non-Working Population in Urban Areas;Population: Houseless, Urban, Non Worker;people who are without a home and are not employed in urban centers;people who don't have a home and don't have a job in cities;urban people without permanent housing" -Count_Person_Houseless_Rural,"Houseless Population in Rural Areas;Population: Houseless, Rural;the number of people living without a home in rural areas" -Count_Person_Houseless_Rural_Female,"Population: Female, Houseless, Rural;Rural Houseless Female Population;rural areas with a high population of female houseless people;rural female houseless population" -Count_Person_Houseless_Rural_Male,"Population: Male, Houseless, Rural;Rural Houseless Male Population" -Count_Person_Houseless_ScheduledCaste,"Houseless Population In Scheduled Castes;Population: Houseless, Scheduled Caste;population of houseless people in scheduled castes;the number of people in the scheduled castes who are without a place to live;the number of people in the scheduled castes who are without shelter;the number of people in the scheduled castes who do not have a home" -Count_Person_Houseless_ScheduledCaste_Female,"Houseless Scheduled Caste Female Population;Population: Female, Houseless, Scheduled Caste;houseless women of the scheduled caste" -Count_Person_Houseless_ScheduledCaste_Male,"Houseless Scheduled Caste Male Population;Population: Male, Houseless, Scheduled Caste" -Count_Person_Houseless_ScheduledCaste_Rural,"Houseless People Residing In Rural Areas;Population: Houseless, Rural, Scheduled Caste;houseless people in rural areas;houseless people in rural communities;people who are unhoused in rural areas;people without homes in rural areas" -Count_Person_Houseless_ScheduledCaste_Urban,"Homeless Scheduled Caste Population in Urban Areas;Population: Houseless, Urban, Scheduled Caste;the number of homeless people from the scheduled castes in urban areas;the number of people from the scheduled castes who are homeless in urban areas;the number of people from the scheduled castes who are without shelter in urban areas;the percentage of the scheduled caste population that is homeless in urban areas" -Count_Person_Houseless_ScheduledTribe,"Houseless Scheduled Tribe Population;Population: Houseless, Scheduled Tribe;number of houseless people from scheduled tribes;number of people from the scheduled tribes who are without a home;number of scheduled tribe people living without shelter;population of houseless people from scheduled tribes" -Count_Person_Houseless_ScheduledTribe_Female,"Houseless Scheduled Tribe Female Population;Population: Female, Houseless, Scheduled Tribe" -Count_Person_Houseless_ScheduledTribe_Male,"Houseless Scheduled Tribe Male Population;Population: Male, Houseless, Scheduled Tribe" -Count_Person_Houseless_ScheduledTribe_Rural,"Population: Houseless, Rural, Scheduled Tribe;Scheduled Tribe Population in Rural Areas;number of scheduled tribes in rural areas;scheduled tribe population in rural areas;scheduled tribes in rural areas;scheduled tribes living in rural areas" -Count_Person_Houseless_ScheduledTribe_Urban,"Population of Houseless Urban Scheduled Tribes;Population: Houseless, Urban, Scheduled Tribe;number of urban scheduled tribe people who are without shelter;number of urban scheduled tribe people who do not have a home;number of urban scheduled tribe people without a permanent residence;number of urban scheduled tribes without homes" -Count_Person_Houseless_Urban,"Population: Houseless, Urban;Total Houseless Population in Urban Areas;number of people who are without shelter in cities;number of people without homes in cities;the number of people who are unhoused in urban areas" -Count_Person_Houseless_Urban_Female,"Population: Female, Houseless, Urban;Urban Houseless Female Population" -Count_Person_Houseless_Urban_Male,"Population: Male, Houseless, Urban;Urban Houseless Male Population" -Count_Person_Houseless_Workers,"Homeless Workers;Population: Houseless, Worker;people who are homeless and also work;people who are homeless and work;people who are living on the streets and also have a job;people who live and work on the streets" -Count_Person_Houseless_Workers_Female,"Houseless Female Worker Population;Population: Female, Houseless, Worker" -Count_Person_Houseless_Workers_Male,"Houseless Male Worker Population;Population: Male, Houseless, Worker;male, without a home, and working" -Count_Person_Houseless_Workers_Rural,"Houseless Rural Workers;Population: Houseless, Rural, Worker;people who work but don't have a home and live in rural areas;rural workers who don't have a home;rural workers without a home;rural workers without homes" -Count_Person_Houseless_Workers_Urban,"Number of Houseless Urban Workers;Population: Houseless, Urban, Worker;number of urban workers who are without shelter;number of urban workers without a home" -Count_Person_Houseless_YearsUpto6,"Number Of Houseless People Aged 6 Years Or Less;Population: 6 Years or Less, Houseless;how many people aged 6 or less are living without a home?;how many people aged 6 or less are without housing?;number of people who are 6 years old or younger and do not have a place to live;number of people without homes who are 6 years old or younger" -Count_Person_Houseless_YearsUpto6_Female,"Houseless Female Population Aged 6 Years or Less;Population: 6 Years or Less, Female, Houseless;females who are 6 years old or younger and without shelter;females without a home who are 6 years old or younger;houseless females aged 6 years or less;the number of unhoused females aged 6 years or less" -Count_Person_Houseless_YearsUpto6_Male,"Houseless Male Population Aged 6 Years or Less;Population: 6 Years or Less, Male, Houseless;number of males without a home aged 6 years or less;number of males without shelter aged 6 years or less;number of unhoused males aged 6 years or less" -Count_Person_Houseless_YearsUpto6_Rural,"Houseless Population Aged 6 Years or Less in Rural Areas;Population: 6 Years or Less, Houseless, Rural;number of people without homes who are under the age of 6 in rural areas;number of unhoused people aged 6 years or less in rural areas" -Count_Person_Houseless_YearsUpto6_Urban,"Homeless Urban Residents Aged 6 Years Or Less;Population: 6 Years or Less, Houseless, Urban;children under 6 who are homeless in cities;children under 6 who are homeless in urban areas;homeless urban children under 6;urban residents under 6 who are homeless" -Count_Person_Illiterate,Illiterate People;Population: Illiterate;people who are illiterate;people who are unable to read or write at a basic level;people who are unable to read or write at all;people who can't read or write -Count_Person_Illiterate_AsAFractionOf_Count_Person,Population: Illiterate (Per Capita) -Count_Person_Illiterate_Female,"Illiterate Female Population;Population: Female, Illiterate;female illiterates;females who are illiterate;illiterate women;women who are illiterate" -Count_Person_Illiterate_Male,"Illiterate Male Population;Population: Male, Illiterate;illiterate male;male, illiterate" -Count_Person_Illiterate_Rural,"Illiterate Population in Rural Areas;Population: Illiterate, Rural;illiteracy in the countryside;illiteracy rate in rural areas;prevalence of illiteracy in rural areas;the percentage of people who are illiterate in rural areas" -Count_Person_Illiterate_Urban,"Illiterate Population in Urban Areas;Population: Illiterate, Urban;illiteracy in cities;illiteracy rates in urban areas;the number of illiterate people in cities;the prevalence of illiteracy in cities" -Count_Person_InArmedForces,"Population Aged 16 Years Or More In Armed Forces In Labor Force;Population: 16 Years or More, in Armed Forces, in Labor Force;the percentage of the population aged 16 years or more who are employed or unemployed and are not in the armed forces;the percentage of the population aged 16 years or more who are in the labor force and are not in the armed forces;the percentage of the population aged 16 years or more who are in the labor force and are not in the military;the percentage of the population aged 16 years or more who are working or looking for work and are not in the armed forces" -Count_Person_InLaborForce,Number of People in the Labor Force;Number of people in the labor force;Population in the labor force;number of people who are in the labor force;number of people who are in the labor market;number of people who are part of the labor market -Count_Person_InLaborForce_Female_DivorcedInThePast12Months,"Number of Females in the Labor Force Who Got Divorced in the Last Year;Number of divorced females in the labor force in the past 12 months;Number of divorced women in the labor force in the past 12 months;Number of female divorcees in the labor force in the past 12 months;Number of female labor force participants who have been divorced in the past 12 months;Number of people who are in Labor Force, Female, Divorced in The Past 12 Months;Number of women in the labor force who have been divorced in the past 12 months;Population: in Labor Force, Female, Divorced in The Past 12 Months;number of female workers who got divorced in the last year;number of females in the workforce who got divorced in the last year;what is the number of women in the labor force who got divorced in the last year?;what is the number of women in the labor force who got divorced last year?" -Count_Person_InLaborForce_Female_MarriedInThePast12Months,"Number of Females in the Labor Force Who Got Married in the Last Year;Number of female workers who got married in the past 12 months;Number of females in the labor force who were married in the past 12 months;Number of females in the labor force who were married in the past year;Number of females who were married in the past year and are in the labor force;Number of married females in the labor force in the past 12 months;Number of people who are in Labor Force, Female, a Married in The Past 12 Months;Population: in Labor Force, Female, Married in The Past 12 Months;number of females in the labor force who got married in the last 12 months;number of females in the workforce who got married in the last year;number of women who got married in the last year while in the labor force;number of women who got married in the last year while working" -Count_Person_InLaborForce_Male_DivorcedInThePast12Months,"Number of Males in the Labor Force Who Go Divorced Last Year;Number of divorced men in the labor force in the past 12 months;Number of divorced men in the workforce in the past 12 months;Number of men who have been divorced in the past year and are currently in the labor force;Number of people who are in Labor Force, Male, Divorced in The Past 12 Months;Population: in Labor Force, Male, Divorced in The Past 12 Months;The number of divorced males in the labor force in the past 12 months;the number of men in the workforce who got divorced last year;the number of men in the workforce who were divorced in the past year;the number of men who were divorced last year and were employed;the number of men who were divorced last year and were in the workforce" -Count_Person_InLaborForce_Male_MarriedInThePast12Months,"Number of Males in the Labor Force Who Got Married in the Last Year;Number of males in the labor force who were married in the past 12 months;Number of married males in the labor force in the past 12 months;Number of married men in the labor force in the past 12 months;Number of men in the labor force who have been married in the past 12 months;Number of people who are in Labor Force, Male, a Married in The Past 12 Months;Population: in Labor Force, Male, Married in The Past 12 Months;The number of men in the labor force who have been married in the past 12 months;how many men in the labor force got married in the last 12 months?;number of men in the workforce who got married in the last year;what is the number of men in the labor force who got married in the last year?;what is the number of men in the labor force who got married in the past 365 days?" -Count_Person_InLaborForce_ResidesInCollegeOrUniversityStudentHousing,"College or University Student Housing Population in Labor Force Aged 16 Years or More;Population: 16 Years or More, in Labor Force, College or University Student Housing;the number of college or university students who are living in student housing and are employed, aged 16 years or more;the number of college or university students who are living in student housing and are part of the labor force, aged 16 years or more;the number of college or university students who are living in student housing and are working, aged 16 years or more;the number of people living in college or university student housing who are 16 years of age or older and are in the labor force" -Count_Person_InLaborForce_ResidesInGroupQuarters,"Population Aged 16 Years or More in Labor Force in Group Quarters;Population: 16 Years or More, in Labor Force, Group Quarters;people aged 16 or older who are in the labor force and living in group quarters;people aged 16 or older who are working and living in group quarters;people aged 16 or older who are working in group quarters;people aged 16 years or older who are in the labor force and living in group quarters" -Count_Person_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,"Population Aged 16 Years or More in Labor Force and Non-Institutionalized Group Quarters;Population: 16 Years or More, in Labor Force, Noninstitutionalized Group Quarters;the number of people aged 16 years or more who are in the labor force or in non-institutionalized group quarters" -Count_Person_IncomeOf10000To14999USDollar,"Population With An Income Between $10,000 And $14,999;Population With an Income Between $10,000 and $14,999" -Count_Person_IncomeOf25000To34999USDollar,"Population With an Income Between $25,000 And $34,999;Population With an Income Between $25,000 and $34,999" -Count_Person_IncomeOf35000To49999USDollar,"Population With With an Income Between $35,000 And $49,999;Population With an Income Between $35,000 and $49,999" -Count_Person_IncomeOf50000To64999USDollar,"Population With an Income Between $50,000 And $64,999;Population With an Income Between $50,000 and $64,999" -Count_Person_IncomeOf65000To74999USDollar,"Population With an Income Between $65,000 And $74,999;Population With an Income Between $65,000 and $74,999" -Count_Person_IncomeOf75000OrMoreUSDollar,"Population With An Income of $75,000 or More;Population With an Income of $75,000 or More" -Count_Person_IncomeOfUpto9999USDollar,"Population With An Income of Up to $9,999;Population With an Income of Up to $9,999" -Count_Person_IndependentLivingDifficulty,"Number of People With an Independent Living Difficulty;Number of people who are experiencing Independent Living Difficulty;Population: Independent Living Difficulty;The number of people who are dependent on others for assistance with activities of daily living;The number of people who have difficulty doing errands alone because of a physical, mental, or emotional problem;The number of people who have difficulty doing everyday tasks on their own;The number of people who have difficulty living independently;The number of people who need help with daily living activities;how many people have trouble living independently?;number of people who, because of a physical, mental, or emotional problem, have difficulty doing errands alone such as visiting a doctor’s office or shopping;the number of people who are dependent on others for help with daily living;the number of people who are not able to live on their own;the number of people who have difficulty living independently" -Count_Person_IsInternetUser_PerCapita,Percent of Internet Users;Percentage of Internet Users;what is the number of internet users as a percentage of the population?;what is the percentage of people who use the internet?;what is the proportion of people who use the internet?;what percentage of the population uses the internet? -Count_Person_Literate,Literate People;Population: Literate;people who are well-read;people who can read and write;the reading and writing crowd;the wordsmiths -Count_Person_Literate_Female,"Literate Female Population;Population: Female, Literate;female literacy rate;females who are literate;number of literate females;percentage of females who can read and write" -Count_Person_Literate_Male,"Literate Male Population;Population: Male, Literate" -Count_Person_Literate_Rural,"Literate Population In Rural Areas;Population: Literate, Rural;the literacy rate in rural areas;the number of people who can read and write in rural areas;the percentage of people in rural areas who are literate;the proportion of people in rural areas who can read and write" -Count_Person_Literate_Urban,"Literate Population in Urban Areas;Population: Literate, Urban;the number of literate people in urban areas;the number of people who can read and write in cities;the percentage of people in urban areas who are literate;the proportion of the urban population who are literate" -Count_Person_MainWorker,Main Workers Population;Population: Main Worker;the main working population -Count_Person_MainWorker_AgriculturalLabourers,"Main Agricultural Labourers;Population: Agricultural Labourers, Main Worker;agricultural workers;farm laborers;farm workers;people who work on farms" -Count_Person_MainWorker_Cultivators,"Main Cultivators;Population: Cultivators, Main Worker;cultivators;principal growers;the people who grow the plants" -Count_Person_MainWorker_Female,"Female Main Worker Population;Population: Female, Main Worker;women are the main workers in this population" -Count_Person_MainWorker_HouseholdIndustries,"Main Workers in Household Industries;Population: Household Industries, Main Worker;domestic workers;household employees;household workers" -Count_Person_MainWorker_Male,"Male Main Worker Population;Population: Male, Main Worker;the main worker in the population is male" -Count_Person_MainWorker_OtherWorkers,"Main Worker Population;Population: Other Workers, Main Worker;population: main worker and non-main workers;population: main worker and other workers;population: workers: main and other;population: workers: primary and secondary" -Count_Person_MainWorker_Rural,"Main Workers in Rural Areas;Population: Rural, Main Worker;the main occupations in rural areas" -Count_Person_MainWorker_Urban,"Main Population Of Workers in Urban Areas;Population: Urban, Main Worker;most workers live in cities;the bulk of workers live in urban areas;the largest number of workers live in urban areas;the majority of workers live in urban areas" -Count_Person_Male,Number of Males;Number of males;Number of people who are Male;Population: Male;The male population;The number of males;The number of men;The number of people who are male;count of males;male population;masculine population;number of males -Count_Person_Male_AbovePovertyLevelInThePast12Months,"Number of Males Above Poverty Level Status in the Past Year;Number of males above the poverty line in the past 12 months;Number of people who are Male, Above Poverty Level Status in The Past 12 Months;Population: Male, Above Poverty Level in The Past 12 Months;The number of males above the poverty level in the past 12 months;The number of males who were not poor in the past 12 months;The number of men who were above the poverty line in the past 12 months;the number of males who were not experiencing economic hardship in the past year;the number of males who were not experiencing financial hardship in the past year;the number of males who were not income-deprived in the past year;the number of males who were not poor in the past year" -Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Number of American Indian or Alaska Native Alone males who were above the poverty level in the last year;Number of American Indian or Alaska Native Alone males who were above the poverty level last year;Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are American Indian or Alaska Native Alone;Number of people who are Male, Above Poverty Level Status over the last year who are American Indian or Alaska Native Alone;Population: Male, Above Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native Alone males who were above the poverty level in the last year;The number of American Indian or Alaska Native Alone males who were above the poverty level in the past year;how many american indian or alaska native males were above the poverty level last year?;the number of american indian or alaska native males who were above the poverty line in the past year;the number of american indian or alaska native males who were not below the poverty level in the past year;what is the number of american indian or alaska native males who were not below the poverty level last year?" -Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,"How many Asian males were above the poverty line last year?;Number of Asian Males Who Are Above Poverty Level Status Over the Last Year;Number of Asian males above the poverty line in the past year;Number of people who are Male, Above Poverty Level Status over the last year who are Asian Alone;Population: Male, Above Poverty Level in The Past 12 Months, Asian Alone;The number of Asian males above the poverty line last year;The number of Asian males who were above the poverty line in the last year;The number of Asian males who were above the poverty line last year;how many asian men were above poverty level last year?;what is the number of asian men who were not below poverty level last year?;what is the percentage of asian men who were above poverty level last year?;what is the proportion of asian men who were not below poverty level last year?" -Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Number of African American Males Who Are Above Poverty Level Status Over the Last Year;Number of Black or African American men above poverty level in the last year;Number of Black or African American men who were above the poverty line last year;Number of people who are Male, Above Poverty Level Status over the last year who are Black or African American Alone;Population: Male, Above Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American males who were not in poverty in the last year;The number of Black or African American men who were above the poverty level in the last year;The number of Black or African American men who were not poor in the last year;how many african american males have been above the poverty line in the last year;how many african american males have escaped poverty in the last year;what is the number of african american males who have been lifted out of poverty in the last year;what is the number of african american males who have experienced upward mobility in the last year" -Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,"How many Hispanic or Latino males were above the poverty line last year?;Number of Hispanic Males Who Are Above Poverty Level Status Over the Last Year;Number of people who are Male, Above Poverty Level Status over the last year who are Hispanic or Latino;Population: Male, Above Poverty Level in The Past 12 Months, Hispanic or Latino;The number of Hispanic or Latino males who had an income above the poverty line last year;The number of Hispanic or Latino males who were above the poverty line in the past year;The number of Hispanic or Latino males who were above the poverty line last year;The number of Hispanic or Latino men who were not in poverty last year;the number of hispanic males who were above the poverty line last year;the number of hispanic males who were not in poverty last year;the number of hispanic males who were not low-income last year;the number of hispanic males who were not poor last year" -Count_Person_Male_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Native Hawaiian or Other Pacific Islanders Alone;Number of people who are Male, Above Poverty Level Status over the last year who are Native Hawaiian or Other Pacific Islander Alone;Population: Male, Above Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;what is the number of native hawaiian or other pacific islander males who were above the poverty line last year?;what is the number of native hawaiian or other pacific islander males who were not living in low-income households last year?" -Count_Person_Male_AbovePovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Some Other Race Alone;Number of males above poverty level who are some other race alone in the last year;Number of males who are above poverty level and some other race alone in the last 12 months;Number of males who are above poverty level and some other race alone in the last year;Number of males who are some other race alone and above poverty level in the last 12 months;Number of males who are some other race alone and above poverty level in the last year;Number of people who are Male, Above Poverty Level Status over the last year who are Some Other Race Alone;Population: Male, Above Poverty Level in The Past 12 Months, Some Other Race Alone;how many males are of some other race and were above the poverty level last year?;how many males were above the poverty level last year and are of some other race?;what is the number of males who are of some other race and were above the poverty level last year?;what is the number of males who were above the poverty level last year and are of some other race?" -Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,"Number of Males Who Are Above Poverty Level Status Over the Last Year and Who Are Multiracial;Number of people who are Male, Above Poverty Level Status over the last year who are Two or More Races;Number of people who are male and above the poverty line and identify as multiracial;Population: Male, Above Poverty Level in The Past 12 Months, Two or More Races;The number of people who are male, above the poverty level, and multiracial in the last year;the number of males who are above the poverty level and multiracial;the number of males who are multiracial and above the poverty level;the number of males who identify as more than one race and are above the poverty level;the number of multiracial males who were above the poverty level last year" -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,"Number of White Males Who Are Above Poverty Level Status Over the Last Year;Number of people who are Male, Above Poverty Level Status over the last year who are White Alone;Number of white males above the poverty line in the last year;Population: Male, Above Poverty Level in The Past 12 Months, White Alone;The number of white males who were above the poverty line last year;the number of white males above the poverty line in the last year;the number of white males who are not poor in the last year;the percentage of white males above the poverty line in the last year;the proportion of white males above the poverty line in the last year" -Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Number of Non Hispanic White Males Who Are Above Poverty Level Status Over the Last Year;Number of people who are Male, Above Poverty Level Status over the last year who are White Alone Not Hispanic or Latino;Population: Male, Above Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of White Alone Not Hispanic or Latino males who had an income above the poverty line in the last year;The number of White Alone Not Hispanic or Latino males who were above the poverty level in the last year;The number of White Alone Not Hispanic or Latino males who were above the poverty level last year;The total number of White Alone Not Hispanic or Latino males who were not poor in the last year;how many non-hispanic white males had an income above the poverty line last year?;how many non-hispanic white males were above the poverty line last year?;what is the number of non-hispanic white males who were not living in poverty last year?;what is the percentage of non-hispanic white males who were not poor last year?" -Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are male and American Indian or Alaska Native?;Number of American Indian and Alaska Native males;Number of Males Who Are American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of males who are American Indian or Alaska Native alone or in combination with one or more other races;Number of people who are Male, American Indian And Alaska Native Alone or In Combination With One or More Other Races;Number of people who are male and American Indian or Alaska Native;Number of people who are male and American Indian or Alaska Native alone or in combination with one or more other races;Population: Male, American Indian And Alaska Native Alone or In Combination With One or More Other Races;number of american indian and alaska native males;number of males who are american indian and alaska native;number of males who are american indian and alaska native alone or in combination with one or more other races;number of males who are american indian and alaska native by race" -Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,"Male American Indian or Alaska Native Alone population;Number of Males Who Are American Indian or Alaska Native Alone;Number of people who are Male, American Indian or Alaska Native Alone;Population: Male, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native Alone males;The number of males who are American Indian or Alaska Native Alone;The number of males who identify as American Indian or Alaska Native Alone;The population of American Indian or Alaska Native Alone males;number of american indian or alaska native males;number of males who are american indian or alaska native;number of males who are of american indian or alaska native descent" -Count_Person_Male_AsianAlone,"Male Asian Alone population;Number of Asian-alone males;Number of Males Who Are Asian Alone;Number of males who are Asian alone;Number of people who are Male, Asian Alone;Number of people who are male and Asian alone;Population: Male, Asian Alone;The number of males who are Asian alone;number of asian-alone males" -Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Asian Males;Number of Asian males;Number of males who are Asian;Number of males who are of Asian descent;Number of males who identify as Asian;Number of people who are Male, Asian Alone or In Combination With One or More Other Races;Population: Male, Asian Alone or In Combination With One or More Other Races;count of asian males;how many asian men are there;how many males are asian;number of asian men" -Count_Person_Male_AsianOrPacificIslander,"Number of Males Who Are Asian or Pacific Islander;Number of people who are Male, Asian or Pacific Islander;Population: Male, Asian or Pacific Islander;The number of Asian or Pacific Islander males;The number of Asian or Pacific Islander people who are male;The number of male Asian or Pacific Islanders;The number of males who are Asian or Pacific Islander;The number of people who are Asian or Pacific Islander and male;the number of asian or pacific islander males;the number of males identifying as asian or pacific islander;the number of males of asian or pacific islander descent;the number of males who are asian or pacific islander" -Count_Person_Male_BelowPovertyLevelInThePast12Months,"Number of Males Who Are Below Poverty Status in the Last Year;Number of males below the poverty line in the past 12 months;Number of people who are Male, Below Poverty Level Status in The Past 12 Months;Population: Male, Below Poverty Level in The Past 12 Months;The number of men who were below the poverty line in the past 12 months;The number of men who were poor in the past 12 months;the number of males who were below the poverty line last year;the number of males who were living in poverty last year;the number of men living in poverty last year;the number of men who were living in poverty last year" -Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,"Number of Males Who Are Below Poverty Status for the Last Year and Are American Indian Alone;Number of people who are Male, Below Poverty Level Status over the last year who are American Indian or Alaska Native Alone;Population: Male, Below Poverty Level in The Past 12 Months, American Indian or Alaska Native Alone;the number of american indian males living below the poverty line in the last year;the number of american indian males who are struggling financially;the number of american indian men who are living in poverty;the number of american indian men who are poor" -Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone,"Number of Asian males with an income that is insufficient to meet basic needs in the last year;Number of Males Who Are Below Poverty Status for the Last Year and Are Asian Alone;Number of people who are Male, Below Poverty Level Status over the last year who are Asian Alone;Population: Male, Below Poverty Level in The Past 12 Months, Asian Alone" -Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,"Number of Males Who Are Below Poverty Status for the Last Year and Are African American Alone;Number of people who are Male, Below Poverty Level Status over the last year who are Black or African American Alone;Population: Male, Below Poverty Level in The Past 12 Months, Black or African American Alone;The number of Black or African American males living below the poverty line in the last year" -Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino,"Number of Males Who Are Below Poverty Status for the Last Year and Are Hispanic Alone;Number of people who are Male, Below Poverty Level Status over the last year who are Hispanic or Latino;Population: Male, Below Poverty Level in The Past 12 Months, Hispanic or Latino" -Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Males Who Are Below Poverty Status for the Last Year and Are Native Hawaiianor Other Pacific Islander Alone;Number of people who are Male, Below Poverty Level Status over the last year who are Native Hawaiian or Other Pacific Islander Alone;Population: Male, Below Poverty Level in The Past 12 Months, Native Hawaiian or Other Pacific Islander Alone;The number of Native Hawaiian or Other Pacific Islander Alone males living below the poverty level in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are experiencing poverty in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are living in poverty in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are poor in the last year;The number of Native Hawaiian or Other Pacific Islander Alone males who are struggling financially in the last year;the number of native hawaiian or other pacific islander males living below the poverty line in the last year;the number of native hawaiian or other pacific islander males who are experiencing economic hardship;the number of native hawaiian or other pacific islander males who are living in poverty;the number of native hawaiian or other pacific islander males who are poor" -Count_Person_Male_BelowPovertyLevelInThePast12Months_SomeOtherRaceAlone,"Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are Some Other Race Alone;Number of males below poverty level in the last year who are some other race alone;Number of males in poverty who are of a race other than white or black;Number of males in poverty who are of some other race;Number of males in poverty who are some other race alone;Number of people who are Male, Below Poverty Level Status over the last year who are Some Other Race Alone;Population: Male, Below Poverty Level in The Past 12 Months, Some Other Race Alone;The number of males below the poverty level who are some other race alone in the last year;number of males who are below the poverty line and are of a race other than white;number of males who are below the poverty line and are of some other race;number of males who are below the poverty line and who are some other race alone;number of males who are of some other race and are below the poverty line" -Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,"Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are Multiracial;Number of males who are below the poverty line and are multiracial in the last year;Number of people who are Male, Below Poverty Level Status over the last year who are Two or More Races;Population: Male, Below Poverty Level in The Past 12 Months, Two or More Races;how many multiracial males were below the poverty line last year?;the number of males who are multiracial and below the poverty line;the number of multiracial males who were below the poverty line in the last year;what is the number of multiracial males who were below the poverty line last year?" -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,"Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are White Alone;Number of White Alone males below the poverty line in the last year;Number of White Alone males below the poverty line in the past year;Number of people who are Male, Below Poverty Level Status over the last year who are White Alone;Population: Male, Below Poverty Level in The Past 12 Months, White Alone;number of white males with an income insufficient to meet basic needs in the last year" -Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAloneNotHispanicOrLatino,"Count of White Alone Not Hispanic or Latino males living below the poverty line in the last year;Number of Males Who Are Below Poverty Level Status Over the Last Year and Who Are White Alone and Not Hispanic;Number of White Alone Not Hispanic or Latino males living below the poverty line in the last year;Number of people who are Male, Below Poverty Level Status over the last year who are White Alone Not Hispanic or Latino;Population: Male, Below Poverty Level in The Past 12 Months, White Alone Not Hispanic or Latino;The number of White Alone Not Hispanic or Latino males who were living in economic hardship in the last year;The number of White Alone Not Hispanic or Latino males who were living in poverty in the last year" -Count_Person_Male_BlackOrAfricanAmericanAlone,"Number of Black or African American males alone;Number of Males Who Are African American Alone;Number of males who are Black or African American alone;Number of people who are Male, Black or African American Alone;Population: Male, Black or African American Alone;number of african american males alone" -Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of African American Males;Number of Black or African American males;Number of males who are Black or African American;Number of males who are of Black or African American descent;Number of people who are Male, Black or African American Alone or In Combination With One or More Other Races;Population: Male, Black or African American Alone or In Combination With One or More Other Races;african american males;african-american men;black men;male african americans" -Count_Person_Male_ConditionArthritis,"Population: Male, Arthritis" -Count_Person_Male_ConditionDiseasesOfHeart,"Population: Male, Diseases of Heart" -Count_Person_Male_DidNotWork,"Male Population Aged 16 to 64 Years Old who Didn't Work;Population: 16 - 64 Years, Male, Did Not Work;men aged 16 to 64 who are not employed;men aged 16 to 64 who are not working;unemployed men aged 16 to 64" -Count_Person_Male_Divorced,"Divorced Male Population;Population: Male, Divorced" -Count_Person_Male_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,"How many men have been divorced in the last year and are now living below the poverty line?;How many men have been divorced in the past year and are below the poverty line?;Number of Males Who Are Below Poverty Level Status and Got Divorced Over the Last Year;Number of people who are Male, Divorced over the last year who are Below Poverty Level Status in The Past 12 Months;Population: Male, Divorced in The Past 12 Months, Below Poverty Level in The Past 12 Months;The number of divorced men living below the poverty line in the past year;The number of men who are divorced and below the poverty line in the past year;The number of men who are divorced and living in poverty in the past year;number of males who got divorced and had low income in the last year;number of males who got divorced and were below the poverty line in the last year;number of males who got divorced and were living in poverty in the last year;number of males who got divorced and were poor in the last year" -Count_Person_Male_DivorcedInThePast12Months_PovertyStatusDetermined,"Number of Males Divorced Over the Last Year for Whom Poverty Status Can Be Determined;Number of male divorcees determined to be below the poverty line in the last year;Number of male divorcees determined to be in poverty in the last year;Number of male divorcees determined to be living in poverty in the last year;Number of people who are Male, Divorced over the last year who are Poverty Status Determined;Population: Male, Divorced in The Past 12 Months, Poverty Status Determined;The number of males who have been divorced in the past year and have been determined to be in poverty;The number of males who have been divorced in the past year and have been determined to be living in poverty;number of male divorcees in the last year with determinable poverty status;number of male divorcees in the last year with known poverty status;number of males divorced in the last year whose poverty status can be determined;number of men who divorced in the last year and whose poverty status can be determined" -Count_Person_Male_DivorcedInThePast12Months_ResidesInHousehold,"Number of Males Living a Household and Divorced Over the Last Year;Number of divorced males in households in the last year;Number of divorced men who are heads of household in the last year;Number of male household heads who have been divorced in the last year;Number of men who are heads of household and have been divorced in the last year;Number of people who are Male, Divorced over the last year who are Household;Population: Male, Divorced in The Past 12 Months, Household;The number of male householders who have been divorced in the past year;number of divorced males living in households in the last year;number of males divorced and living in households in the last year;number of males living in households who have been divorced in the last year;number of males who have been divorced and are living in households in the last year" -Count_Person_Male_ForeignBorn,"Number of Foreign Born Males;Number of foreign-born males;Number of males who are foreign-born;Number of people who are Male, Foreign Born;Population: Male, Foreign Born;The number of male foreign-born people;number of foreign-born males;number of males born in another country;number of males born in other countries;number of males who are foreign-born" -Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,"Number of Males Born in Africa;Number of male Africans;Number of males born in Africa;Number of people who are Male, born in Africa;Population: Male, Foreign Born, Africa;number of baby boys born in africa;number of male babies born in africa;number of male births in africa;number of males born in africa" -Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,"Number of Males Born in Asia;Number of male people born in Asia;Number of males born in Asia;Number of males born in the Asian continent;Number of people who are Male, born in Asia;Population: Male, Foreign Born, Asia;The number of males born in Asia;The number of men born in Asia;how many male babies were born in asia?;how many males were born in asia?;what is the number of male births in asia?;what is the number of males born in asia each year?" -Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,"Male population born in the Caribbean;Number of Caribbean-born males;Number of Males Born in the Caribbean;Number of males born in the Caribbean;Number of males born in the Caribbean region;Number of people who are Male, born in Caribbean;Population of males born in the Caribbean;Population: Male, Foreign Born, Caribbean;number of baby boys born in the caribbean;number of male babies born in the caribbean;number of male births in the caribbean;number of males born in the caribbean" -Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Count of males born in Central America but not Mexico;Count of males born in Central America excluding Mexico;Number of Central American males born outside of Mexico;Number of Males Born in a Central Americal Country Other Than Mexico;Number of males born in Central America but not in Mexico;Number of people who are Male, born in Central America Except Mexico;Number of people who are male and were born in Central America but not Mexico;Population: Male, Foreign Born, Central America Except Mexico;count of males born in central american countries other than mexico;number of central american males born outside of mexico;number of males born in central america excluding mexico;total number of males born in central american countries other than mexico" -Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,"Number of Males Born in Eastern Asia;Number of males born in Eastern Asia;Number of people born in Eastern Asia who are male;Number of people born in Eastern Asia who identify as male;Number of people who are Male, born in Eastern Asia;Number of people who are male and were born in Eastern Asia;Number of people who were born in Eastern Asia and identify as male;Population: Male, Foreign Born, Eastern Asia;number of male babies born in eastern asia;number of male births in eastern asia;number of males born in eastern asia;number of males born in the eastern asian region" -Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,"Number of European males;Number of Males Born in Europe;Number of male Europeans;Number of males born in Europe;Number of people born in Europe who are male;Number of people who are Male, born in Europe;Population: Male, Foreign Born, Europe;The number of males born in Europe;the number of boys born in europe;the number of male babies born in europe;the number of male births in europe;the number of males born in europe" -Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,"Male population in Latin America;Male population of Latin America;Number of Males Born in Latin America;Number of male Latin Americans;Number of people who are Male, born in Latin America;Population: Male, Foreign Born, Latin America;The number of people who are male and were born in Latin America;male births in latin america;number of baby boys born in latin america;number of male babies born in latin america;number of male births in latin america" -Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,"Number of Males Born in Mexico;Number of males born in Mexico;Number of males who were born in Mexico;Number of people born in Mexico who are male;Number of people who are Male and born in Mexico;Number of people who are Male, born in Country/ MEX;Number of people who are male and were born in Mexico;Population: Male, Foreign Born, Country/MEX;number of baby boys born in mexico;number of male births in mexico;number of males born in mexico;number of newborn boys in mexico" -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,"Number of Males Born in North America;Number of North Americans who are male;Number of male North Americans;Number of males born in North America;Number of people born in North America who are male;Number of people who are Male, born in Northamerica;Population: Male, Foreign Born, Northamerica;The number of males born in North America;how many boys were born in north america?;how many male births were there in north america?;how many males were born in north america?;what is the number of male births in north america?" -Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Count of male Northern Western Europeans;How many male Northern Western Europeans are there?;Number of Males Born in North Western Europe;Number of male Northern Western Europeans;Number of people who are Male, born in Northern Western Europe;Population: Male, Foreign Born, Northern Western Europe;The number of males born in Northern Western Europe;male births in northwestern europe;number of boys born in northwestern europe;number of male births in northwestern europe;number of males born in northwestern europe" -Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,"Number of Males Born in Oceania;Number of people who are Male, born in Oceania;Population: Male, Foreign Born, Oceania;The number of Oceanian males;The number of male Oceanians;The number of males born in Oceania;The number of people born in Oceania who are male;number of male births in oceania;number of males born in oceania;number of oceanian births that were male;number of oceanian males born" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Number of Males Born in South Central Asia;Number of people who are Male, born in South Central Asia;Population: Male, Foreign Born, South Central Asia;The number of male births in South Central Asia;The number of males born in South Central Asia;The number of males who were born in South Central Asia;The number of people who are male and were born in South Central Asia;number of baby boys born in south central asia;number of male babies born in south central asia;number of male births in south central asia;number of males born in south central asia" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Number of Males Born in South Eastern Asia;Number of Southeast Asian males born;Number of people who are Male, born in South Eastern Asia;Population: Male, Foreign Born, South Eastern Asia;how many males are born in southeast asia;number of males born in the southeast asian region;the number of males born in the southeast asian region;what is the number of male births in southeast asia" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,"Number of Males Born in South America;Number of people who are Male, born in Southamerica;Population: Male, Foreign Born, Southamerica;number of baby boys born in south america;number of male babies born in south america;number of male births in south america;number of males born in south america;number of males in south america;number of people born in south america who are male;number of people who are male and were born in south america;number of south american males" -Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Number of Males Born in South Eastern Europe;Number of males born in Southern Eastern Europe;Number of people born in Southern Eastern Europe who are male;Number of people born in the Balkans who are male;Number of people who are Male, born in Southern Eastern Europe;Population: Male, Foreign Born, Southern Eastern Europe;The number of males born in Southern Eastern Europe;The number of people born in Southern Eastern Europe who are male;how many male births were there in southeast europe;how many males were born in southeast europe;what is the number of male births in southeast europe;what is the number of males born in the southeast europe region" -Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,"Number of Males Born in Western Asia;Number of people who are Male, born in Western Asia;Population: Male, Foreign Born, Western Asia;The number of male births in Western Asia;The number of males born in Western Asia;The number of males who were born in Western Asia;The number of people who are male and were born in Western Asia;The number of people who are male and were born in the Western Asian region;male births in western asia;the number of boys born in western asia;the number of male babies born in western asia;the number of male births in western asia" -Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,"Number of Foreign Born Males Residing in Adult Correctional Facilities;Number of male foreign-born inmates in adult correctional facilities;Number of male foreign-born prisoners;Number of male prisoners who were born outside the United States;Number of people who are Male, foreign born and residing in Adult Correctional Facilities;Population: Male, Foreign Born, Adult Correctional Facilities;the number of foreign-born males living in adult correctional facilities;the number of foreign-born males who are serving time in prison;the number of incarcerated males who are not us citizens;the number of male prisoners who were born outside of the united states" -Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,"1 Number of foreign-born male students living in college or university student housing;Number of Foreign Born Males Residing in College or University Student Housing;Number of male foreign-born college students living in student housing;Number of male foreign-born students living in college or university student housing;Number of people who are Male, foreign born and residing in College or University Student Housing;Population: Male, Foreign Born, College or University Student Housing;The number of male foreign-born students living in college or university student housing;number of foreign-born male college students living in university housing;number of foreign-born male students living in college or university dormitories;number of male college students born outside the united states living in university housing;number of male college students who are not native-born us citizens living in university housing" -Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,"Count of foreign-born males living in group quarters;Number of Foreign Born Males Residing in Group Quarters;Number of foreign-born males living in group quarters;Number of foreign-born males residing in group quarters;Number of male foreign-born residents of group quarters;Number of people who are Male, foreign born and residing in Group Quarters;Population: Male, Foreign Born, Group Quarters;number of foreign-born males in group quarters;number of foreign-born males living in group quarters;number of foreign-born men living in group quarters;the number of foreign-born males living in group quarters" -Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,"Number of Foreign Born Males Who Are Institutionalized in Group Quarters;Number of people who are Male, foreign born and residing in Institutionalized in Group Quarters;Population: Male, Foreign Born, Institutionalized Group Quarters;number of foreign-born males institutionalized in group quarters;number of foreign-born males living in institutional settings;number of foreign-born males who are institutionalized;number of foreign-born men institutionalized in group quarters" -Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,"Number of Foreign Born Males Residing in Juvenile Facilities;Number of foreign-born juveniles in facilities who are male;Number of foreign-born male juveniles in facilities;Number of juveniles in facilities who are male and foreign-born;Number of male foreign-born juveniles in facilities;Number of male juveniles in facilities who are foreign-born;Number of people who are Male, foreign born and residing in Juvenile Facilities;Population: Male, Foreign Born, Juvenile Facilities;how many foreign-born males are in juvenile detention?;how many male juveniles are foreign-born?;what is the number of foreign-born male juveniles in detention?;what is the number of male juveniles in detention who are foreign-born?" -Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Foreign Born Males Residing in Military Quarters or on Military Ships;Number of foreign-born males living in military quarters or military ships;Number of males living in military quarters or military ships who are foreign nationals;Number of males living in military quarters or military ships who were born outside the United States;Number of males living in military quarters or military ships who were not born in the United States;Number of people who are Male, foreign born and residing in Military Quarters or Military Ships;Population: Male, Foreign Born, Military Quarters or Military Ships;number of foreign-born males living in military quarters or on military ships;number of males born in other countries living in military quarters or on military ships;number of males born outside the united states living in military quarters or on military ships;number of males who are not native-born americans living in military quarters or on military ships" -Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,"Number of Foreign Born Males Residing in Non-Institutionalized Group Quarters;Number of male foreign-born people living in non-institutional group quarters;Number of people who are Male, foreign born and residing in Noninstitutionalized in Group Quarters;Population: Male, Foreign Born, Noninstitutionalized Group Quarters;The number of people who are male, foreign born, and living in group living arrangements;The number of people who are male, foreign born, and living in non-family households;number of foreign-born males living in group quarters other than institutions;number of foreign-born males living in group quarters, not institutionalized;number of foreign-born men living in non-institutional group quarters;number of foreign-born men living in non-institutional group quarters, not institutionalized" -Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,"Number of Foreign Born Males Residing in Nursing Facilities;Number of male foreign-born nursing home residents;Number of male foreign-born residents in nursing homes;Number of male foreign-born residents of nursing homes;Number of people who are Male, foreign born and residing in Nursing Facilities;Population: Male, Foreign Born, Nursing Facilities;number of foreign-born male nursing home residents;number of foreign-born males living in nursing homes;number of male nursing home residents who were born outside the united states;number of males living in nursing homes who were born outside the united states" -Count_Person_Male_FullTimeYearRoundWorker,"Males Aged 16 To 64 Years Who Are Full Time Year Round Workers;Population: 16 - 64 Years, Male, Full Time Year Round Worker;full-time, year-round male workers aged 16 to 64;male workers aged 16 to 64 who work full-time and year-round;men aged 16 to 64 who work full-time all year round;men aged 16 to 64 who work full-time for the entire year" -Count_Person_Male_HispanicOrLatino,"Number of Hispanic Males;Number of people who are Male, Hispanic or Latino;Population: Male, Hispanic or Latino;The number of Hispanic or Latino males;The number of Hispanic or Latino people who are male;The number of males who are Hispanic or Latino;The number of males who are of Hispanic or Latino descent;The number of males who identify as Hispanic or Latino;number of hispanic males;number of hispanic men;number of hispanic-american males;number of males who are hispanic" -Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Males Who Are Hispanic and American Indian;Number of people who are Male, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Male, Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;number of hispanic and american indian males;number of males identifying as hispanic and american indian;number of males who are hispanic and american indian;number of males who identify as hispanic and american indian" -Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Number of Males Who Are Hispanic and American Indian Alone;Number of people who are Male, Hispanic or Latino & American Indian or Alaska Native Alone;Population: Male, Hispanic or Latino & American Indian or Alaska Native Alone" -Count_Person_Male_HispanicOrLatino_AsianAlone,"How many people are male, Hispanic or Latino, and Asian alone;How many people are male, Hispanic or Latino, and Asian alone?;Number of Males Who Are Hispanic and Asian Alone;Number of people who are Male, Hispanic or Latino & Asian Alone;Population: Male, Hispanic or Latino & Asian Alone;The number of males who are Hispanic or Latino and Asian Alone;What is the number of people who are male, Hispanic or Latino, and Asian alone?;What is the population of people who are male, Hispanic or Latino, and Asian alone?" -Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Males Who Are Hispanic and Asian;Number of males who are Asian and Hispanic or Latino;Number of males who are Hispanic or Latino and Asian;Number of people who are Male, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Number of people who are male and Hispanic or Latino and Asian;Number of people who are male and identify as Asian and Hispanic or Latino;Number of people who are male and identify as Hispanic or Latino and Asian;Population: Male, Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;number of hispanic and asian males;number of males identifying as hispanic and asian;number of males who are hispanic and asian;number of males who identify as hispanic and asian" -Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,"Number of Asian or Pacific Islander males who are also Hispanic or Latino;Number of Hispanic or Latino males who are also Asian or Pacific Islander;Number of Males Who Are Hispanic and Asian or Pacific Islander;Number of males who are both Hispanic or Latino and Asian or Pacific Islander;Number of males who are of Hispanic or Latino and Asian or Pacific Islander descent;Number of males who identify as Hispanic or Latino and Asian or Pacific Islander;Number of people who are Male, Hispanic or Latino & Asian or Pacific Islander;Population: Male, Hispanic or Latino & Asian or Pacific Islander;number of hispanic and asian or pacific islander males;number of males who are hispanic and asian or pacific islander;number of males who are hispanic and/or asian or pacific islander;number of males who are of hispanic and asian or pacific islander descent" -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,"Number of Males Who Are Hispanic and African American Alone;Number of people who are Male, Hispanic or Latino & Black or African American Alone;Number of people who are male and Hispanic or Latino and Black or African American alone;Population: Male, Hispanic or Latino & Black or African American Alone;count of males who are hispanic and african american alone;number of males who are hispanic and black alone" -Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are male, Hispanic or Latino, and black or African American?;Number of Black or African American males who are Hispanic or Latino;Number of Hispanic or Latino males who are Black or African American;Number of Males Who Are Hispanic and African American;Number of males who are Hispanic or Latino and Black or African American;Number of people who are Male, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Population: Male, Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;number of hispanic and african american males;number of hispanic and african american men;number of males who are both hispanic and african american;number of males who are hispanic and african american" -Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"How many people are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander?;Number of Males Who Are Hispanic and Native Hawaiian or Other Pacific Islander;Number of people who are Male, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Male, Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;The number of people who are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander;number of hispanic and native hawaiian or other pacific islander males;number of hispanic males who are also native hawaiian or other pacific islander;number of males who are hispanic and native hawaiian or other pacific islander;number of males who are of hispanic and native hawaiian or other pacific islander descent" -Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Hispanic or Latino males who are Native Hawaiian or Other Pacific Islander Alone;Number of Males Who Are Hispanic and Native Hawaiian or Other Pacific Islander Alone;Number of people who are Male, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Number of people who are male and Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;Population: Male, Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;The number of people who are male, Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;number of hispanic males who are native hawaiian or other pacific islander alone;number of hispanic men who are native hawaiian or other pacific islander alone;number of males who are hispanic and native hawaiian or other pacific islander, alone" -Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,"Number of Mutiracial Hispanic Males;Number of people who are Male, Hispanic or Latino & Two or More Races;Population: Male, Hispanic or Latino & Two or More Races;number of hispanic males who are biracial;the number of hispanic men who are biracial;the number of hispanic men who are of mixed race" -Count_Person_Male_HispanicOrLatino_WhiteAlone,"How many males are Hispanic or Latino and White Alone?;Number of Males Who Are Hispanic and White Alone;Number of people who are Male, Hispanic or Latino & White Alone;Population: Male, Hispanic or Latino & White Alone;the number of males who are hispanic and white alone" -Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Hispanic or Latino males who are white;Number of Males Who Are Hispanic and White;Number of males who are Hispanic or Latino and white;Number of people who are Male, Hispanic or Latino & White Alone or In Combination With One or More Other Races;Number of white males who are Hispanic;Number of white males who are Hispanic or Latino;Population: Male, Hispanic or Latino & White Alone or In Combination With One or More Other Races;hispanic and white males;hispanic and white men;hispanic males who are also white;white males who are also hispanic" -Count_Person_Male_MarriedAndNotSeparated,"Male Population Married And Not Separated;Population: Male, Married And Not Separated" -Count_Person_Male_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,"How many married men were below the poverty line in the past 12 months?;Number of Males Who Are Below Poverty Status in the Last Year and Who Also Got Married in the Last Year;Number of people who are Male, a Married over the last year who are Below Poverty Level Status in The Past 12 Months;Population: Male, Married in The Past 12 Months, Below Poverty Level in The Past 12 Months;The number of married males living below the poverty line in the past 12 months;The number of married men who were below the poverty line in the past 12 months;number of men who were below the poverty line last year and got married last year;number of men who were living in poverty last year and got married last year;the number of men who were below the poverty line last year and got married last year;the number of men who were living in poverty last year and got married last year" -Count_Person_Male_MarriedInThePast12Months_PovertyStatusDetermined,"Number of Males Who Got Married Over the Last Year and Whose Poverty Status Was Also Determined in the Last Year;Number of people who are Male, a Married over the last year who are Poverty Status Determined;Population: Male, Married in The Past 12 Months, Poverty Status Determined;The number of married males who were determined to be impoverished last year;The number of married males who were determined to be living in low-income households last year;The number of married males who were determined to be low-income last year;The number of married men who were determined to be low-income last year;The number of married men who were determined to be poor last year;the number of men who got married in the last year and whose poverty status was also determined in the last year;the number of men who got married in the past year and whose poverty status was also determined in the past year;the number of men who got married in the recent year and whose poverty status was also determined in the recent year;the number of men who got married last year and whose poverty status was also determined last year" -Count_Person_Male_MarriedInThePast12Months_ResidesInHousehold,"Number of People Who Are Male, a Married Over the Last Year Who Are Residing in Households;Number of households with a married male head in the last year;Number of male-headed households in the last year;Number of male-headed households with a married couple in the last year;Number of married male households in the last year;Number of married male-headed households in the last year;Number of people who are Male, a Married over the last year who are Household;Population: Male, Married in The Past 12 Months, Household;number of male household residents who have been married in the last year;number of male residents of households who have been married in the last year;number of married male household residents in the last year;number of married men living in households in the last year" -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,"How many people are male and Native Hawaiian and Other Pacific Islander Alone;Number of Males Who Are Native Hawaiian and Other Pacific Islander Alone;Number of people who are Male, Native Hawaiian And Other Pacific Islander Alone;Number of people who are male and Native Hawaiian and Other Pacific Islander alone;Population: Male, Native Hawaiian and Other Pacific Islander Alone;What is the number of people who are male and Native Hawaiian and Other Pacific Islander Alone;What is the population of people who are male and Native Hawaiian and Other Pacific Islander Alone;number of males who are native hawaiian and other pacific islander alone" -Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Males Who Are Native Hawaiian or Other Pacific Islander;Number of Native Hawaiian and Other Pacific Islander males;Number of males who are Native Hawaiian and Other Pacific Islander;Number of people who are Male, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Number of people who are male and Native Hawaiian and Other Pacific Islander;Population: Male, Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;the number of males who are native hawaiian or other pacific islander;the number of males who are of native hawaiian or other pacific islander descent;the number of males who identify as native hawaiian or other pacific islander;the number of native hawaiian or other pacific islander males" -Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Males Who Are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Male, Native Hawaiian or Other Pacific Islander Alone;Population: Male, Native Hawaiian or Other Pacific Islander Alone;The number of people who are male and Native Hawaiian or Other Pacific Islander alone;number of males who are native hawaiian or other pacific islander alone;the number of males who are native hawaiian or other pacific islander alone" -Count_Person_Male_NeverMarried,"Male Population Who Never Married;Population: Male, Never Married" -Count_Person_Male_NoHealthInsurance,"Male Population Without Health Insurance;Population: Male, No Health Insurance;male, lacking health insurance;male, no health insurance;male, not having health insurance;male, without health insurance" -Count_Person_Male_NonWhite,"Number of Non-White Males;Number of males who are not white;Number of men who are not white;Number of non-white males;Number of non-white men;Number of people who are Male, Non White;Number of people who are male and not white;Population: Male, Non White;count of non-white males;number of non-white men;sum of non-white males;total number of non-white males" -Count_Person_Male_NotHispanicOrLatino,"Number of Non Hispanic Males;Number of males who are not Hispanic or Latino;Number of males who are not of Hispanic or Latino descent;Number of males who are not of Hispanic or Latino origin;Number of people who are Male, Not Hispanic or Latino;Number of people who are male and not Hispanic or Latino;Number of people who are male and not of Hispanic or Latino origin;Population: Male, Not Hispanic or Latino;number of males who are not hispanic;number of males who are not of hispanic descent;number of males who are not of hispanic origin;number of non-hispanic males" -Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic Males Who Identify as American Indian and Alaska Native Alone;Number of males who identify as American Indian and Alaska Native alone or in combination with one or more other races and not Hispanic or Latino;Number of males who identify as not Hispanic or Latino and American Indian and Alaska Native alone or in combination with one or more other races;Number of people who are Male, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Population: Male, Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;number of american indian and alaska native males who are not of hispanic origin;number of american indian and alaska native males who identify as american indian and alaska native only;number of american indian and alaska native males who identify as american indian and alaska native without any other racial identity;number of american indian and alaska native males who identify as solely american indian and alaska native" -Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"Number of Non Hispanic Males Who Identify as American Indian or Alaska Native Alone;Number of people who are Male, Not Hispanic or Latino & American Indian or Alaska Native Alone;Population: Male, Not Hispanic or Latino & American Indian or Alaska Native Alone;The number of American Indian or Alaska Native males who are not Hispanic or Latino;The number of male American Indian or Alaska Native people who are not Hispanic or Latino;number of american indian or alaska native males who are not hispanic;number of american indian or alaska native males who are not of hispanic origin;number of american indian or alaska native males who do not identify as hispanic;number of males who identify as american indian or alaska native and not hispanic" -Count_Person_Male_NotHispanicOrLatino_AsianAlone,"Number of Non Hispanic Males Who Identify as Asian Alone;Number of people who are Male, Not Hispanic or Latino & Asian Alone;Population: Male, Not Hispanic or Latino & Asian Alone;the number of males who identify as asian alone and are not hispanic" -Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Asian males who are not Hispanic or Latino;Number of Non Hispanic Males Who Identify as Asian;Number of people who are Male, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Population: Male, Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;number of asian males who are not of hispanic descent;number of asian males who are not of hispanic ethnicity;number of asian males who are not of hispanic origin;number of asian men who are not hispanic" -Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,"Number Ofnon Hispanic Males Who Identify as Asian or Pacific Islander;Number of Asian or Pacific Islander men who are not of Hispanic or Latino origin;Number of males who identify as Asian or Pacific Islander and do not identify as Hispanic or Latino;Number of men who identify as Asian or Pacific Islander and do not identify as Hispanic or Latino;Number of people who are Male, Not Hispanic or Latino & Asian or Pacific Islander;Population: Male, Not Hispanic or Latino & Asian or Pacific Islander;The number of males who identify as Asian or Pacific Islander and not Hispanic or Latino;number of asian or pacific islander males who are not of hispanic origin;number of non-hispanic asian or pacific islander males who are not latino" -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Number of Non Hispanic Males Who Identify as African American Alone;Number of people who are Male, Not Hispanic or Latino & Black or African American Alone;Population: Male, Not Hispanic or Latino & Black or African American Alone;The number of people who identify as male, not Hispanic or Latino, and black or African American alone" -Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic Males Who Identify as African American;Number of males who identify as Black or African American;Number of people who are Male, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Population: Male, Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;number of african american males who are not of hispanic descent;number of african american males who are not of hispanic origin;number of non-hispanic african american men;number of non-hispanic males who are african american" -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic Males Who Identify as Native Hawaiian and Other Pacific Islander;Number of people who are Male, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Male, Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;how many native hawaiian and other pacific islander males are not hispanic;number of native hawaiian and other pacific islander males who are not of hispanic ethnicity;number of native hawaiian and other pacific islander males who are not of hispanic origin;number of non-hispanic native hawaiian and other pacific islander males who are not of hispanic descent" -Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,"Number of Non Hispanic Males Who Identify as Native Hawaiian and Other Pacific Islander Alone;Number of males who are not Hispanic or Latino and identify as Native Hawaiian or Other Pacific Islander Alone;Number of people who are Male, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Population: Male, Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;The number of people who identify as male, not Hispanic or Latino, and Native Hawaiian or Other Pacific Islander alone;number of native hawaiian and other pacific islander alone males who are not of hispanic origin;number of native hawaiian and other pacific islander alone males who are not of latin american origin;number of native hawaiian and other pacific islander alone males who are not of latino origin;number of native hawaiian and other pacific islander alone males who are not of spanish origin" -Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,"Number of Non Hispanic Males Who Identify as Multi Racial;Number of males who are not Hispanic or Latino and are multiracial;Number of males who are not Hispanic or Latino and are of multiple races;Number of males who are not Hispanic or Latino and identify as two or more races;Number of males who are not Hispanic or Latino and identify with two or more racial groups;Number of people who are Male, Not Hispanic or Latino & Two or More Races;Population: Male, Not Hispanic or Latino & Two or More Races;The number of people who are male, not Hispanic or Latino, and identify with two or more races;number of males who identify as more than one race and are not hispanic;number of males who identify as multiracial and are not hispanic;number of non-hispanic males who identify as multiracial;number of non-hispanic males who identify with more than one race" -Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic Males Who Identify as White;Number of people who are Male, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;Population: Male, Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;The number of males who are not Hispanic or Latino and identify as White alone or in combination with one or more other races;number of males who are not hispanic and identify as white;number of males who identify as white and are not hispanic;number of males who identify as white and are not of hispanic origin;number of non-hispanic white males" -Count_Person_Male_ResidesInAdultCorrectionalFacilities,"Number of Males Residing in Adult Correctional Facilities;Number of incarcerated men;Number of male inmates in adult correctional facilities;Number of males in adult correctional facilities;Number of men in adult correctional facilities;Number of people who are Male, in Adult Correctional Facilities;Population: Male, Adult Correctional Facilities;how many men are in prison;the number of incarcerated men;the number of males in prison;the number of men in prison" -Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Number of Males Residing in College or University Studing Housing;Number of male college or university students living in student housing;Number of male college students living in student housing;Number of people who are Male, in College or University Student Housing;Population: Male, College or University Student Housing;The number of male college or university students living in student housing;The number of male college students living in student housing;The number of male college students living in university housing;number of male students living in college or university housing;number of male students living on campus;number of male students residing in college or university dormitories;number of male students staying in college or university dorms" -Count_Person_Male_ResidesInGroupQuarters,"Male population in group quarters;Male residents in group quarters;Number of Males Residing in Group Quarters;Number of male residents in group quarters;Number of males in group quarters;Number of males living in group quarters;Number of people who are Male, in Group Quarters;Population: Male, Group Quarters;how many men live in group quarters?;number of male residents in group quarters;number of males living in group quarters;what is the number of males living in group quarters?" -Count_Person_Male_ResidesInInstitutionalizedGroupQuarters,"Number of Males Institutionized in Group Quarters;Number of people who are Male, in Institutionalized in Group Quarters;Population: Male, Institutionalized Group Quarters;number of males institutionalized;the number of men institutionalized;the number of men living in group care;the number of men living in institutions" -Count_Person_Male_ResidesInJuvenileFacilities,"Number of Males in Juvenile Facilities;Number of boys in juvenile detention;Number of male juvenile inmates;Number of male juvenile offenders;Number of males in juvenile detention centers;Number of males in juvenile facilities;Number of people who are Male, in Juvenile Facilities;Population: Male, Juvenile Facilities;number of boys in juvenile facilities;number of male juveniles in detention centers;number of males in juvenile detention centers;number of young men in juvenile detention centers" -Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Males Residing in Military Quarters or on Military Ships;Number of male military personnel in quarters or ships;Number of male sailors in quarters or ships;Number of male soldiers in quarters or ships;Number of males in military quarters or military ships;Number of men in military quarters or military ships;Number of people who are Male, in Military Quarters or Military Ships;Population: Male, Military Quarters or Military Ships;number of male military personnel living in quarters or on ships;number of male service members living in barracks or on naval vessels;number of males living in military housing or on military vessels;number of men living in military quarters or on military ships" -Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Number of Males Residing in Non-Institutionalized Group Quarters;Number of males in non-institutional group quarters;Number of people who are Male, in Noninstitutionalized in Group Quarters;Population: Male, Noninstitutionalized Group Quarters;how many males live in non-institutional group quarters?;number of males living in non-institutional group quarters;number of men living in non-institutional group housing;number of men living in non-institutional group housing facilities" -Count_Person_Male_ResidesInNursingFacilities,"Male nursing home population;Male nursing home residents;Male population in nursing homes;Number of Males Residing in Nursing Facilities;Number of males in nursing homes;Number of men in nursing homes;Number of people who are Male, in Nursing Facilities;Population: Male, Nursing Facilities;number of male nursing home patients;number of male nursing home residents;number of males in nursing homes;number of men living in nursing homes" -Count_Person_Male_SomeOtherRaceAlone,"Number of Males Who Are From Some Other Race Alone;Number of males who are of some other race;Number of males who are some other race;Number of males who are some other race alone;Number of males who identify as some other race;Number of males who identify as some other race alone;Number of people who are Male, Some Other Race Alone;Population: Male, Some Other Race Alone;number of males from some other race alone;number of males of some other race alone;number of males who are from some other race alone;number of males who are of some other race alone" -Count_Person_Male_TwoOrMoreRaces,"Number of Multiracial Males;Number of males identifying as multiracial;Number of males who are multiracial;Number of people identifying as male and multiracial;Number of people who are Male, Two or More Races;Population: Male, Two or More Races;count of males who identify as multiracial;number of males who identify with more than one race;the number of males who are of mixed race;the number of males who identify as multiracial" -Count_Person_Male_WhiteAlone,"Male White Alone count;Male White Alone number;Male White Alone population;Male White Alone total;Number of Males Who Are White Alone;Number of males who are white alone;Number of people who are Male, White Alone;Population: Male, White Alone;count of males who are white alone;male population that is white;the number of males who are white alone;white male population" -Count_Person_Male_WhiteAloneNotHispanicOrLatino,"Male, White Alone Not Hispanic or Latino count;Male, White Alone Not Hispanic or Latino headcount;Male, White Alone Not Hispanic or Latino tally;Male, White Alone, Not Hispanic or Latino population;Number of Male, White Alone Not Hispanic or Latino people;Number of Males Who Are White Alone and Not Hispanic;Number of people who are Male, White Alone Not Hispanic or Latino;Population: Male, White Alone Not Hispanic or Latino;number of males who are white alone and not hispanic" -Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Males Who Are White Alone or in Combination With One or More Other Races;Number of males who are white alone or in combination with one or more other races;Number of males who identify as white alone or in combination with one or more other races;Number of people who are Male, White Alone or In Combination With One or More Other Races;Number of white males alone or in combination with one or more other races;Population: Male, White Alone or In Combination With One or More Other Races;number of males who are of white descent;number of males who are white;number of males who are white or mixed-race;number of white males" -Count_Person_Male_Widowed,"Males Population Who Are Widowed;Population: Male, Widowed" -Count_Person_Male_WithEarnings,"1 number of men who earn money;2 number of males who are employed;3 number of males who have a job;5 number of males who are gainfully employed;Number of Earning Males;Number of people who are Male, With Earnings;Population: Male, With Earnings;The number of males who are paid;The number of males who earn money;The number of males who have income;The number of males with earnings;The number of people who are male and have earnings" -Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,"1 The number of men in adult correctional facilities who have earnings;Male inmates in adult correctional facilities with earnings;Male inmates with earnings in adult correctional facilities;Number of Earning Males Residing in Adult Correctional Facilities;Number of male prisoners who have earnings;Number of males in adult correctional facilities with earnings;Number of people who are Male, With Earnings, in Adult Correctional Facilities;Population: Male, With Earnings, Adult Correctional Facilities;number of male detainees in adult correctional facilities who are earning an income;number of male offenders in adult correctional facilities who are gainfully employed;number of men in adult correctional facilities who are earning an income;number of men in adult correctional facilities who are gainfully employed" -Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,"Number of Earning Males Residing in College or University Student Housing;Number of male students with earnings living in college or university student housing;Number of people who are Male, With Earnings, in College or University Student Housing;Population: Male, With Earnings, College or University Student Housing;The number of male college students with earnings who live in student housing;The number of male students in college or university housing who have earnings;The number of male students living in college or university student housing who have earnings;number of male students who are earning an income and live in college or university dormitories;number of male students who are employed and live in college or university dormitories;number of male students who earn money and live in college or university dormitories;the number of male students who are earning money and living in college or university student housing" -Count_Person_Male_WithEarnings_ResidesInGroupQuarters,"Number of Earning Males Residing in Group Quarters;Number of male earners in group quarters;Number of males who have earnings and live in group quarters;Number of males with earnings in group quarters;Number of males with earnings who live in group quarters;Number of people who are Male, With Earnings, in Group Quarters;Number of people who are male, have earnings, and live in group quarters;Population: Male, With Earnings, Group Quarters;number of male earners living in group quarters;number of men who earn money and live in group quarters" -Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,"1 The number of males with earnings who are institutionalized in group quarters;Number of Earning Males Who Have Been Institutionalized in Group Quarters;Number of males institutionalized in group quarters with earnings;Number of men with earnings who are institutionalized in group quarters;Number of people who are Male, With Earnings, in Institutionalized in Group Quarters;Population: Male, With Earnings, Institutionalized Group Quarters;The number of males with earnings who are institutionalized in group quarters;number of men who have been institutionalized in group quarters and are earning an income;number of men who have been institutionalized in group quarters and are earning money;number of men who have been institutionalized in group quarters and are employed;number of men who have been institutionalized in group quarters and are making money" -Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,"Count of males with earnings in juvenile facilities;How many males are in juvenile facilities with earnings;Number of Earning Males Residing in Juvenile Facilities;Number of juvenile facility inmates who are male and have earnings;Number of male juvenile facility inmates with earnings;Number of males in juvenile facilities with earnings;Number of people who are Male, With Earnings, in Juvenile Facilities;Population: Male, With Earnings, Juvenile Facilities;number of boys who are earning money while living in juvenile detention centers;number of juvenile boys who are earning an income;number of male juveniles who are employed;number of male juveniles who are working" -Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Earning Males Residing in Military Quarters or on Military Ships;Number of male earners in military quarters or military ships;Number of male military personnel in military quarters or ships who are earning money;Number of male military personnel with earnings;Number of males with earnings in military quarters or military ships;Number of people who are Male, With Earnings, in Military Quarters or Military Ships;Population: Male, With Earnings, Military Quarters or Military Ships;The number of males with earnings in military quarters or military ships;number of male earners living in military quarters or on military ships;number of males who are paid and live in military quarters or on military ships;number of males who earn money and live in military quarters or on military ships;number of men who are paid and live in military quarters or on military ships" -Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,"1 number of males who are earning money and living in non-institutional group quarters;Number of Earning Males Residing in Non-Institutionalized Group Quarters;Number of males with earnings in group quarters who are not institutionalized;Number of males with earnings in noninstitutionalized group quarters;Number of males with earnings who are living in group quarters, not institutionalized;Number of people who are Male, With Earnings, in Noninstitutionalized in Group Quarters;Population: Male, With Earnings, Noninstitutionalized Group Quarters;number of males who are earning money and living in non-institutional group housing;number of males who are earning money and living in non-institutional group residences;number of men who earn money and live in non-institutional group quarters" -Count_Person_Male_WithEarnings_ResidesInNursingFacilities,"Number of Earning Males Residing in Nursing Facilities;Number of male earners in nursing facilities;Number of male nursing home residents with earnings;Number of males in nursing homes with earnings;Number of people who are Male, With Earnings, in Nursing Facilities;Population: Male, With Earnings, Nursing Facilities;The number of male nursing home residents with earnings;The number of men in nursing homes who have earnings;how many men who are still earning a living reside in nursing homes?;number of men who earn money and live in nursing homes;what is the number of male nursing home residents who are still earning an income?;what is the number of male nursing home residents who are still employed?" -Count_Person_Male_WithHealthInsurance,"Male Population With Health Insurance;Population: Male, With Health Insurance;male with health insurance;male, insured;man with health insurance;man, insured" -Count_Person_MarginalWorker,Marginal Worker Population;Population: Marginal Worker -Count_Person_MarginalWorker_AgriculturalLabourers,"Marginal Agricultural Labourers Workers;Population: Agricultural Labourers, Marginal Worker;low-paid agricultural workers;seasonal agricultural workers;temporary agricultural workers;unskilled agricultural workers" -Count_Person_MarginalWorker_Cultivators,"Marginal Cultivators;Population: Cultivators, Marginal Worker" -Count_Person_MarginalWorker_Female,"Female Marginal Worker Population;Population: Female, Marginal Worker;woman who is on the margins of the workforce" -Count_Person_MarginalWorker_HouseholdIndustries,"Marginal Workers in Household Industries;Population: Household Industries, Marginal Worker" -Count_Person_MarginalWorker_Male,"Male Marginal Worker Population;Population: Male, Marginal Worker" -Count_Person_MarginalWorker_OtherWorkers,"Marginal Other Workers;Population: Other Workers, Marginal Worker;contingent workers;freelance workers;marginal workers;peripheral workers" -Count_Person_MarginalWorker_Rural,"Population: Rural, Marginal Worker;Rural Marginal Worker Population" -Count_Person_MarginalWorker_Urban,"Marginal Workers in Urban Areas;Population: Urban, Marginal Worker" -Count_Person_MarriedAndNotSeparated,Married people who are not separated;Number of Married People Who Are Not Separated;Number of married people who are not separated;number of married people who are not legally separated;number of married people who are not separated;number of married people who are not separated or divorced;number of married people who are still in their marriages -Count_Person_MarriedAndNotSeparated_DifferentHouseAbroad,"1 population of married people aged 15 years or more who are not separated and live in different houses abroad;2 population of married people aged 15 years or more who are not separated and live in different houses outside of their home country;3 population of married people aged 15 years or more who are not separated and live in different houses in other countries;4 population of married people aged 15 years or more who are not separated and live in different houses in foreign countries;Population Aged 15 Years or More Married And Not Separated In Different House Abroad;Population: 15 Years or More, Married And Not Separated, Different House Abroad" -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountyDifferentState,"Population Aged 15 Years or More Who are Married in Different Houses, County and State;Population: 15 Years or More, Married And Not Separated, Different House in Different County Different State;number of married people aged 15 years or more who live in different houses, counties, and states;percentage of married people aged 15 years or more who live in different houses, counties, and states;population of married people aged 15 years or more who live in different houses, counties, and states;share of married people aged 15 years or more who live in different houses, counties, and states" -Count_Person_MarriedAndNotSeparated_DifferentHouseInDifferentCountySameState,"Married And Not Separated Population Aged 15 Years Or More In Different Counties But The Same State;Population: 15 Years or More, Married And Not Separated, Different House in Different County Same State;married people aged 15 or older in different counties of the same state;married people aged 15 years or older in different counties of the same state;married people aged 15 years or older in different counties of the same state who are not separated;people who are married and not separated aged 15 years or older in different counties of the same state" -Count_Person_MarriedAndNotSeparated_DifferentHouseInSameCounty,"Population Aged 15 Years or More Married And Not Separated in Different Houses in Same County;Population: 15 Years or More, Married And Not Separated, Different House in Same County;number of married people aged 15 or older who are not separated in the same county;number of people aged 15 or older who are married and living together in the same county;number of people aged 15 or older who are married and not living apart in the same county;number of people aged 15 or older who are married and not separated in the same county" -Count_Person_MarriedAndNotSeparated_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Married And Not Separated, Adult Correctional Facilities;Unseparated Married Population Aged 15 Years Or More In Adult Correctional Facilities;married adults in prison;married people in adult correctional facilities;married people who are incarcerated;married prisoners" -Count_Person_MarriedAndNotSeparated_ResidesInCollegeOrUniversityStudentHousing,"Married And Not Separated Population Aged 15 Years In University Housing;Population: 15 Years or More, Married And Not Separated, College or University Student Housing;the number of married people aged 15 years and older living in university housing;the number of married people aged 15 years and older who are students and living in university housing;the number of married students aged 15 years and older living in university housing;the number of married students aged 15 years and older who are living in university housing" -Count_Person_MarriedAndNotSeparated_ResidesInGroupQuarters,"Population Aged 15 Years or More Married And Not Separated In Group Quarters;Population: 15 Years or More, Married And Not Separated, Group Quarters;married people aged 15 years or older who are not separated and do not live in group quarters;people aged 15 years or older who are married and not separated and do not live in group quarters;the number of people aged 15 years or older who are married and not separated and do not live in group quarters;the population of people aged 15 years or older who are married and not separated and do not live in group quarters" -Count_Person_MarriedAndNotSeparated_ResidesInInstitutionalizedGroupQuarters,"Population Aged 15 Years or More Who are Married in Institutionalized Group Quarters;Population: 15 Years or More, Married And Not Separated, Institutionalized Group Quarters;married people aged 15 years or more living in group quarters;people aged 15 years or more who are married and institutionalized;people aged 15 years or more who are married and living in a group setting;people aged 15 years or more who are married and living in group quarters" -Count_Person_MarriedAndNotSeparated_ResidesInNoninstitutionalizedGroupQuarters,"Married and Not Separated Population Aged 15 Years Old and Above Residing In Non-Institutionalized Group Quarters;Population: 15 Years or More, Married And Not Separated, Noninstitutionalized Group Quarters;married people aged 15 and above living in group quarters that are not prisons or jails;married people aged 15 and older living in group quarters that are not hospitals or other medical facilities;married people aged 15 and older living in group quarters that are not schools or other educational institutions;people aged 15 and over who are married and not separated and live in non-institutional group quarters" -Count_Person_MarriedAndNotSeparated_ResidesInNursingFacilities,"Married Population Aged 15 Years or More in Nursing Facilities;Population: 15 Years or More, Married And Not Separated, Nursing Facilities;married people in nursing homes;people who are married and in nursing homes;the percentage of married people in nursing homes;the proportion of married people in nursing homes" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Married Couple Family Households of Foreign-Born Population in Africa;Population: Married Couple Family Household, Foreign Born, Africa;african households with foreign-born spouses;households in africa headed by foreign-born couples;households in africa with foreign-born husbands and wives;households of foreign-born couples in africa" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Married Couple Family Households of Foreign-Born Population in Asia;Population: Married Couple Family Household, Foreign Born, Asia;asian households with married couples who were born outside of asia;households in asia with married couples who are immigrants;households in asia with married couples who are not citizens of asia;households with married couples and foreign-born members in asia" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Caribbean Married Couple Family Households;Population: Married Couple Family Household, Foreign Born, Caribbean;caribbean families in the united states with parents who are married and have children;caribbean married couples and their children who live in the united states;caribbean married couples who live in the united states with their children;foreign-born caribbean couples who are married and have children living with them in the united states" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Foreign-Born Married Couple Family Households in Central America, Except Mexico;Population: Married Couple Family Household, Foreign Born, Central America Except Mexico;central american households with married couples who are not from mexico;households in central america with foreign-born married couples;households in central america with married couples who were not born in mexico;married couples in central america who were born outside of the country" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Foreign-Born Married Couple Family Households in Eastern Asia;Population: Married Couple Family Household, Foreign Born, Eastern Asia;families in eastern asia with married couples who were born outside of the country;households in eastern asia headed by a married couple who was born outside of the country;households in eastern asia with foreign-born married couples;married couples in eastern asia who were born in other countries" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Foreign Born in Europe Married Couple Family Household;Population: Married Couple Family Household, Foreign Born, Europe;european immigrant married couple household;household of a european-born married couple;household with a european-born married couple;married couple household with european-born members" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Married Couple Family Households Foreign Born In Latin America;Population: Married Couple Family Household, Foreign Born, Latin America;households headed by married couples who were born in latin america;households with married couples who are foreign-born from latin america;households with married couples who are immigrants from latin america;households with married couples who were born in latin america" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Married Couple Family Household Foreign Born in Mexico;Population: Married Couple Family Household, Foreign Born, Country/MEX;a family of mexican descent living in the united states;a family unit consisting of a married couple and their children who were born in mexico;a household headed by a married couple and their children who were born in mexico;a married couple and their children who were born in mexico" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born Population in North America with Married Couple Family Households;Population: Married Couple Family Household, Foreign Born, Northamerica;foreign-born people living in north america in married couple family households;married couple family households in north america with at least one foreign-born member;north american married couple family households with at least one foreign-born member;north american married couple family households with foreign-born members" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Married Couple Family Households Foreign Born in Northern Western Europe;Population: Married Couple Family Household, Foreign Born, Northern Western Europe;households in northern western europe with married couples and foreign-born members;households in northern western europe with married couples and immigrants;households in northern western europe with married couples and people who are not citizens of the country;households in northern western europe with married couples and people who were born outside of the country" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Oceania Foreign-Born Married Couple Family Households;Population: Married Couple Family Household, Foreign Born, Oceania;families in oceania with married couples who are foreign-born;families in oceania with married couples who are immigrants;households in oceania with married couples who are not citizens of oceania;households in oceania with married couples who were born in other countries" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Married Couple Family Households of Foreign-Born Population in South Central Asia;Population: Married Couple Family Household, Foreign Born, South Central Asia;foreign-born married couples living in south central asia as a family unit;foreign-born married couples living in south central asia as a family unit, with or without children;households of foreign-born married couples in south central asia;south central asian households headed by foreign-born married couples" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Foreign Born in South Eastern Asia Married Couple Family Household;Population: Married Couple Family Household, Foreign Born, South Eastern Asia;a family of a married couple who were born in southeast asia;a married couple and their children who were born in southeast asia;a married couple and their offspring who were born in southeast asia;south east asian immigrant couple with children" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Population: Married Couple Family Household, Foreign Born, Southamerica;South America Foreign Born Married Couple Family Households;families in south america headed by a married couple who were born in another country;households in south america with married couples who were born in another country;households in south america with married immigrant parents;south american households with married couples who are immigrants" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"1 the number of foreign-born people who are married in south eastern europe;2 the percentage of foreign-born people who are married in south eastern europe;3 the proportion of foreign-born people who are married in south eastern europe;4 the share of foreign-born people who are married in south eastern europe;Married Foreign-Born Population In South Eastern Europe;Population: Married Couple Family Household, Foreign Born, Southern Eastern Europe" -Count_Person_MarriedCoupleFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Married Couple Family Households of Foreign-Born Population in Western Asian;Population: Married Couple Family Household, Foreign Born, Western Asia;households in western asia with married couples and immigrants;households with married couples and people who were born in western asia" -Count_Person_Native,Native born;Population: Native;natives;people who are native to the country;people who were born as a US native -Count_Person_NativeHawaiianAndOtherPacificIslanderAlone,Native Hawaiian or Other Pacific Islander population size;Number of Native Hawaiian or Other Pacific Islanders;Number of Native Hawaiian or Other Pacific Islanders in the United States;Number of People Who Are Native Hawaiian and Other Pacific Islander Alone;Number of people who are Native Hawaiian and Other Pacific Islander Alone;Population of Native Hawaiians and Other Pacific Islanders;Population: Native Hawaiian And Other Pacific Islander Alone;number of native hawaiian and other pacific islander alone people;number of people who are native hawaiian and other pacific islander alone;the number of people who are native hawaiian and other pacific islander alone;the number of people who are native hawaiian and other pacific islander by themselves -Count_Person_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,How many people identify as Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races?;Number of Native Hawaiians and Other Pacific Islanders alone or in combination with one or more other races;Number of People Who Are Native Hawaiian and Other Pacific Islander Alone or in Combination With One or More Other Races;Number of people who are Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Number of people who identify as Native Hawaiian or Other Pacific Islander alone or in combination with one or more other races;Population of Native Hawaiian and Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;how many people are native hawaiian and other pacific islander alone or in combination with one or more other races;how many people identify as native hawaiian and other pacific islander alone or in combination with one or more other races;what is the number of people who identify as native hawaiian and other pacific islander alone or in combination with one or more other races;what is the population of native hawaiian and other pacific islander alone or in combination with one or more other races -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Native Hawaiian or Other Pacific Islander Alone population;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Native Hawaiian or Other Pacific Islander Alone;Number of people who are Native Hawaiian or Other Pacific Islander only;Population of Native Hawaiian or Other Pacific Islander Alone;Population: Native Hawaiian or Other Pacific Islander Alone;how many native hawaiian or other pacific islander alone people are there;how many people are native hawaiian or other pacific islander alone;number of people who are native hawaiian or other pacific islander alone;what is the population of native hawaiian or other pacific islander alone -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,"Number of Native Hawaiian or Other Pacific Islander Alone people in adult correctional facilities;Number of Native Hawaiian or Other Pacific Islander Alone people in jails and prisons;Number of Native Hawaiian or Other Pacific Islander Alone people in local jails;Number of Native Hawaiian or Other Pacific Islander Alone people in state and federal prisons;Number of Native Hawaiian or Other Pacific Islander Alone people incarcerated in adult correctional facilities;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Adult Correctional Facilities;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Adult Correctional Facilities;Population: Native Hawaiian or Other Pacific Islander Alone, Adult Correctional Facilities;how many native hawaiian or other pacific islander people are in adult correctional facilities?;how many native hawaiian or other pacific islander people are incarcerated in adult correctional facilities?;what is the number of native hawaiian or other pacific islander people in adult correctional facilities?;what is the number of native hawaiian or other pacific islander people incarcerated in adult correctional facilities?" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of Native Hawaiian or Other Pacific Islander Alone students in college or university housing;Number of Native Hawaiian or Other Pacific Islander Alone students living in college or university dorms;Number of Native Hawaiian or Other Pacific Islander Alone students living in college or university student housing;Number of Native Hawaiian or Other Pacific Islander students living in college or university student housing;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in College or University Student Housing;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in College or University Student Housing;Population: Native Hawaiian or Other Pacific Islander Alone, College or University Student Housing;number of native hawaiian or other pacific islander students living in college or university residence halls;number of native hawaiian or other pacific islander students living in college or university student housing;number of native hawaiian or other pacific islander students residing in college or university dorms;number of native hawaiian or other pacific islander students residing in college or university housing" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,"How many Native Hawaiian or Other Pacific Islander Alone people are in group quarters?;Number of Native Hawaiian or Other Pacific Islander Alone people in group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Group Quarters;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Group Quarters;Population: Native Hawaiian or Other Pacific Islander Alone, Group Quarters;The number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters;how many native hawaiian or other pacific islander people live in group quarters?;number of native hawaiian or other pacific islander alone people living in group quarters;number of native hawaiian or other pacific islander alone people residing in dormitories, group homes, shelters, or other group quarters;number of native hawaiian or other pacific islander alone residents in group quarters" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,"How many Native Hawaiian or Other Pacific Islander Alone people are institutionalized in group quarters?;Number of Native Hawaiian or Other Pacific Islander Alone people institutionalized in group quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group care settings;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Institutionalized in Group Quarters;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Institutionalized in Group Quarters;Population: Native Hawaiian or Other Pacific Islander Alone, Institutionalized Group Quarters;The number of Native Hawaiian or Other Pacific Islander Alone people in institutionalized group quarters;The number of Native Hawaiian or Other Pacific Islander Alone people who are institutionalized in group quarters;how many native hawaiian or other pacific islander people are institutionalized in group quarters?;number of native hawaiian or other pacific islander alone people institutionalized in group quarters;what is the number of native hawaiian or other pacific islander people who are institutionalized in group quarters?;what is the population of native hawaiian or other pacific islander people who are institutionalized in group quarters?" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,"Number of Native Hawaiian or Other Pacific Islander Alone youth in juvenile facilities;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Juvenile Facilities;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Juvenile Facilities;Population: Native Hawaiian or Other Pacific Islander Alone, Juvenile Facilities;number of native hawaiian or other pacific islander youth in juvenile correctional facilities;number of native hawaiian or other pacific islander youth in juvenile detention centers;number of native hawaiian or other pacific islander youth in juvenile facilities;number of native hawaiian or other pacific islander youth in juvenile treatment centers" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,"How many Native Hawaiian or Other Pacific Islander Alone people are in military quarters or military ships?;Number of Native Hawaiian or Other Pacific Islander Alone in Military Bases;Number of Native Hawaiian or Other Pacific Islander Alone in Military Housing;Number of Native Hawaiian or Other Pacific Islander Alone in Military Quarters or Military Ships;Number of Native Hawaiian or Other Pacific Islander Alone in Military Vessels;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Military Quarters or on Military Ships;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Military Quarters or Military Ships;Population: Native Hawaiian or Other Pacific Islander Alone, Military Quarters or Military Ships;how many native hawaiian or other pacific islanders are living in military quarters or on military ships?;how many native hawaiian or other pacific islanders are residing in military quarters or on military ships?;what is the number of native hawaiian or other pacific islanders who live in military quarters or on military ships?;what is the population of native hawaiian or other pacific islanders who live in military quarters or on military ships?" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,"Count of Native Hawaiian or Other Pacific Islander Alone living in noninstitutional group quarters;Number of Native Hawaiian or Other Pacific Islander Alone living in group quarters, not institutionalized;Number of Native Hawaiian or Other Pacific Islander Alone people living in Noninstitutionalized Group Quarters;Number of Native Hawaiian or Other Pacific Islander Alone people living in group quarters that are not institutions;Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Non-Institutionalized Group Quarters;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Noninstitutionalized in Group Quarters;Population: Native Hawaiian or Other Pacific Islander Alone, Noninstitutionalized Group Quarters;The number of Native Hawaiian or Other Pacific Islander Alone people living in noninstitutionalized group quarters;how many native hawaiian or other pacific islander people reside in non-institutionalized group quarters?;how many native hawaiian or other pacific islanders reside in non-institutional group quarters?;number of native hawaiian or other pacific islander alone people living in non-institutional group quarters;number of native hawaiian or other pacific islander alone residents in non-institutional group quarters" -Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,"Number of People Who Are Native Hawaiian or Other Pacific Islander Alone and Are Residing in Nursing Facilities;Number of people who are Native Hawaiian or Other Pacific Islander Alone, in Nursing Facilities;Population: Native Hawaiian or Other Pacific Islander Alone, Nursing Facilities;The number of Native Hawaiian or Other Pacific Islander Alone people in nursing facilities;The number of Native Hawaiian or Other Pacific Islander Alone people living in nursing homes;The number of Native Hawaiian or Other Pacific Islander Alone people who are nursing home residents;The number of Native Hawaiian or Other Pacific Islander Alone residents in nursing facilities;how many native hawaiian or other pacific islander people are in nursing homes?;how many native hawaiian or other pacific islander people live in nursing homes?;what is the number of native hawaiian or other pacific islander people who live in nursing homes?;what is the population of native hawaiian or other pacific islander people in nursing homes?" -Count_Person_NeverMarried,Number of People Who Have Never Been Married;Number of people who have never been married;The number of people who are not currently married;The number of people who are not married;The number of people who have never been in a marriage;The number of people who have never been married;never-married population;number of people who have never married;people who have never been married;the number of people who have never been married -Count_Person_NeverMarried_DifferentHouseAbroad,"Population Aged 15 Years or More Never Married in Different House Abroad;Population: 15 Years or More, Never Married, Different House Abroad;number of people aged 15 or older who have never been married and live in a different country than their parents;people aged 15 years or more who have never been married and live in a different country;people who are 15 years old or older and have never been married and live abroad;people who are 15 years old or older and have never been married and live outside of their home country" -Count_Person_NeverMarried_DifferentHouseInDifferentCountyDifferentState,"Population Aged 15 Years or More Never Married in Different House in Different County and Different State;Population: 15 Years or More, Never Married, Different House in Different County Different State;people aged 15 or older who have never been married and live in a different house, county, and state" -Count_Person_NeverMarried_DifferentHouseInDifferentCountySameState,"Population Aged 15 Years or More Living in Different Houses in Different Counties But in The Same State;Population: 15 Years or More, Never Married, Different House in Different County Same State;number of people aged 15 years or more living in different dwellings in different counties but in the same state;number of people aged 15 years or more living in different households in different counties but in the same state;number of people aged 15 years or more living in different houses in different counties but in the same state;number of people aged 15 years or more living in different residences in different counties but in the same state" -Count_Person_NeverMarried_DifferentHouseInSameCounty,"Population Aged 15 Years or More Who Were Never Married And Live in Different Houses in The Same County;Population: 15 Years or More, Never Married, Different House in Same County;people aged 15 years or older who are not married and live in different houses in the same county;people aged 15 years or older who are single and live in different houses in the same county;people aged 15 years or older who have never been married and live in different houses in the same county;unmarried people aged 15 years or older who live in different houses in the same county" -Count_Person_NeverMarried_ResidesInAdultCorrectionalFacilities,"Population Aged 15 Years or More Never Married in Adult Correctional Facilities;Population: 15 Years or More, Never Married, Adult Correctional Facilities;the number of adults over 15 years old who are never married and are in jail or prison;the number of people aged 15 and over who have never been married and are currently in prison or jail" -Count_Person_NeverMarried_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Never Married, College or University Student Housing;Unmarried Population Aged 15 Years Or More In College or University Student Housing;college students who are unmarried and 15 years or older living in student housing;the number of unmarried people aged 15 years or more living in college or university student housing;unmarried people aged 15 or older living in college or university student housing;unmarried people aged 15 or older living in student housing at a college or university" -Count_Person_NeverMarried_ResidesInGroupQuarters,"Population Aged 15 Years or More Who Never Married in Group Quarters;Population: 15 Years or More, Never Married, Group Quarters;people aged 15 years or older who are never-married and live in group quarters;people aged 15 years or older who are unmarried and never married and live in group quarters;people aged 15 years or older who have never been married and are living in group quarters;people aged 15 years or older who have never married and live in group quarters" -Count_Person_NeverMarried_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Never Married, Institutionalized Group Quarters;Unmarried Population Aged 15 Years or More in Institutionalized Group Quarters;number of unmarried people aged 15 or older living in group homes;number of unmarried people aged 15 or older living in group living arrangements;number of unmarried people aged 15 or older living in group quarters;people who are unmarried and 15 years or older living in group quarters" -Count_Person_NeverMarried_ResidesInNoninstitutionalizedGroupQuarters,"Population Aged 15 Years or More Who Were Never Married in Non-Institutionalized Group Quarters;Population: 15 Years or More, Never Married, Noninstitutionalized Group Quarters;people aged 15 or older who have never been married and are not institutionalized;people aged 15 or older who have never been married and are not living in an institution;the number of people aged 15 or older who have never been married and are not living in an institution;the number of people aged 15 years or more who have never been married and are not living in an institution" -Count_Person_NeverMarried_ResidesInNursingFacilities,"Population: 15 Years or More, Never Married, Nursing Facilities;Unmarried Population Aged 15 Years Or More In Nursing Facilities;number of unmarried people aged 15 or older in nursing homes;percentage of unmarried people aged 15 or older in nursing homes;proportion of unmarried people aged 15 or older in nursing homes;share of unmarried people aged 15 or older in nursing homes" -Count_Person_NoDisability,No disability;Number of People Without Any Disability;Number of people who are No Disability;Number of people who are not disabled;Number of people with no disabilities;Number of people with no disability;Number of people with no physical or mental impairments;Population: No Disability;number of people without any physical or mental impairments;number of people without disabilities;the number of people who are not disabled;the number of people who do not have any physical or mental impairments -Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,"Number of People Without Any Disability in Adult Correctional Facilities;Number of people in adult correctional facilities who are not disabled;Number of people in adult correctional facilities who do not have a disability;Number of people in adult correctional facilities with no disability;Number of people who are No Disability, in Adult Correctional Facilities;Number of people with no disabilities in adult correctional facilities;Number of people with no disability in adult correctional facilities;Population: No Disability, Adult Correctional Facilities;the number of people in adult correctional facilities who are not disabled;the number of people in adult correctional facilities who are not impaired in any way;the number of people in adult correctional facilities who do not have any physical or mental impairments;the number of people without any disability in adult correctional facilities" -Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,"Number of People Without Any Disability Residing in College or University Student Housing;Number of people who are No Disability, in College or University Student Housing;Number of people who are not disabled and live in college or university student housing;Population: No Disability, College or University Student Housing;number of non-disabled people living in college or university student housing;number of people who are not disabled living in college or university housing;number of people without disabilities living in college or university dorms;number of people without physical or mental impairments living in college or university housing" -Count_Person_NoDisability_ResidesInGroupQuarters,"Number of People Without Any Disability Residing in Group Quarters;Number of people who are No Disability, in Group Quarters;Number of people who are not disabled and live in group quarters;Number of people with no disability living in group quarters;Population: No Disability, Group Quarters;number of non-disabled people in group quarters;number of people without disability living in group quarters;the number of people who are not disabled and live in group quarters" -Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,"Number of People Without Any Disability Institutionalized in Group Quarters;Number of people who are No Disability, in Institutionalized in Group Quarters;Number of people who are not disabled and are institutionalized in group quarters;Number of people with no disability institutionalized in group quarters;Number of people with no disability who are institutionalized in group quarters;Population: No Disability, Institutionalized Group Quarters;number of non-disabled people institutionalized in group quarters" -Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,"Number of People Without Any Disability Residing in Non-Institutionalized Group Quarters;Number of people who are No Disability, in Noninstitutionalized in Group Quarters;Number of people without disabilities living in non-institutional group quarters;Population: No Disability, Noninstitutionalized Group Quarters;The number of people living in non-institutional group quarters who do not have a disability;The number of people living in non-institutional group quarters without a disability;The number of people with no disability living in non-institutional group quarters;number of people who do not have a disability and live in non-institutional group quarters;number of people without disabilities living in non-institutional group quarters" -Count_Person_NoDisability_ResidesInNursingFacilities,"Number of People Without Any Disability in Nursing Facilities;Number of people in nursing homes who are not disabled;Number of people in nursing homes who are not disabled at all;Number of people in nursing homes who are not physically or mentally disabled;Number of people in nursing homes without any disabilities;Number of people in nursing homes without disabilities;Number of people who are No Disability, in Nursing Facilities;Population: No Disability, Nursing Facilities;percentage of people without disabilities in nursing homes;the number of people in nursing facilities who are not disabled;the number of people without any disability in nursing facilities;the number of people without disabilities in nursing facilities" -Count_Person_NoHealthInsurance,Number of People Without Health Insurance;Number of people who are No Health Insurance;Number of people who do not have health insurance;Number of people who lack health insurance;Number of people without health insurance;Number of people without health insurance coverage;Population: No Health Insurance;the number of people who are not covered by health insurance;the number of people who are without health coverage;the number of people who do not have access to health insurance;the number of people who do not have health insurance -Count_Person_NoHealthInsurance_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Population Without Health Insurance;Population: No Health Insurance, American Indian or Alaska Native Alone;american indian or alaska native alone without health insurance;american indian or alaska native without health insurance;the prevalence of no health insurance among american indian or alaska native people" -Count_Person_NoHealthInsurance_AsianAlone,"Asian Population Without Health Insurance;Population: No Health Insurance, Asian Alone;asian people without health insurance;asians without health insurance;people of asian descent without health insurance" -Count_Person_NoHealthInsurance_BlackOrAfricanAmericanAlone,"African American Population Without Health Insurance;Population: No Health Insurance, Black or African American Alone;black or african american people without health insurance;black or african americans without health insurance" -Count_Person_NoHealthInsurance_HispanicOrLatino,"Hispanic Population Without Health Insurance;Population: No Health Insurance, Hispanic or Latino;hispanic or latino people without health insurance;people of hispanic or latino descent who do not have health insurance;people of hispanic or latino origin who do not have health insurance;people without health insurance who are hispanic or latino" -Count_Person_NoHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian or Other Pacific Islander Population Without Health Insurance;Population: No Health Insurance, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander alone, uninsured;native hawaiian or other pacific islander alone, without health insurance;the number of native hawaiian or other pacific islanders who do not have health insurance;the prevalence of no health insurance among native hawaiian or other pacific islanders" -Count_Person_NoHealthInsurance_WhiteAlone,"Population: No Health Insurance, White Alone;White Population Without Health Insurance;the number of white people without health insurance;the proportion of white people without health insurance;white people without coverage;white people without health insurance" -Count_Person_NonWhite,Number of Non White People;Number of people who are Non White;Population: Non White;The number of non-white people;The number of people who are not white;The percentage of people who are not white;The proportion of the population that is non-white;count of non-white people;number of people who are not white;population of non-white people;total number of non-white individuals -Count_Person_NonWorker,Non-Workers;Population: Non Worker;non-working population;population of non-workers -Count_Person_NonWorker_Female,"Female Non-Workers;Population: Female, Non Worker;female non-working population" -Count_Person_NonWorker_Male,"Male Non-Workers;Population: Male, Non Worker;male non-worker;male non-worker population;number of males who are not working or looking for work;population of males who are not working" -Count_Person_NonWorker_Rural,"Non-Workers in Rural Areas;Population: Rural, Non Worker;people who live in the countryside and are not employed;rural non-workers;rural residents who are not employed;rural residents who are unemployed" -Count_Person_NonWorker_Urban,"Population: Urban, Non Worker;Urban Areas Non-Workers;those who don't have jobs in cities" -Count_Person_Nonveteran,"Non-Veteran Civilians;Population: Civilian, Non Veteran;civilians who are not active duty military personnel;civilians who are not members of the military;civilians who are not veterans;civilians who have never served in the military" -Count_Person_NotAUSCitizen,Number of People Who Are Not US Citizens;Number of non-US citizens;Number of people who are not US citizens;The number of non-citizens in the United States;The number of people who are not US citizens;number of non-us citizens;number of people who are not american citizens;number of people who are not citizens of the united states;number of people who are not us citizens -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAfrica,"Non-US Citizens Foreign Born In Africa;Population: Not A US Citizen, Foreign Born, Africa;africans who are not us citizens;foreign-born africans who are not us citizens;people born in africa who are not us citizens;people from africa who are not us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthAsia,"Non-US Citizens Foreign-Born In Asia;Population: Not A US Citizen, Foreign Born, Asia;foreign nationals from asia who are not citizens of the united states;people born in asia who are not citizens of the united states;people who are not us citizens but were born in asia;people who were born in asia but do not have us citizenship" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Non-US Citizens in the Caribbean;Population: Not A US Citizen, Foreign Born, Caribbean;foreigners who were not born in the united states and are not us citizens living in the caribbean;non-us citizens born outside of the united states living in the caribbean;people born outside of the united states who are not us citizens living in the caribbean;people who are not us citizens and were born outside of the united states living in the caribbean" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Foreign-Born Population In Central America, Except for Mexico Non-US Citizens;Population: Not A US Citizen, Foreign Born, Central America Except Mexico;number of non-us citizens born in central america, excluding mexico;number of people living in the us who were born in central america, excluding mexico;the number of non-us citizens who were born in central america;the number of people who were born in central america and are not us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEasternAsia,"Non-US Citizens Foreign-Born In Eastern Asia;Population: Not A US Citizen, Foreign Born, Eastern Asia;foreigners born in eastern asia who are not us citizens;non-us citizens who were born in eastern asia;people born in eastern asia who are not us citizens;people from eastern asia who are not us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthEurope,"Foreign-Born Non-US Citizens In Europe;Population: Not A US Citizen, Foreign Born, Europe;europeans who are not us citizens;non-us citizens born in europe;people born in europe who are not us citizens;people from europe who are not us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthLatinAmerica,"Non-US Citizens Foreign-Born In Latin America;Population: Not A US Citizen, Foreign Born, Latin America;latin american nationals living in the us;latin american-born people who are not us citizens;people born in latin america who are not us citizens;people who are not us citizens and were born in latin america" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthMexico,"Foreign-Born Population In Mexico Non-Us Citizens;Population: Not A US Citizen, Foreign Born, Country/MEX;the number of foreign nationals living in mexico;the number of non-us citizens living in mexico;the number of people living in mexico who were born outside of the united states;the number of people who are not mexican citizens living in mexico" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born Population in North America Who are Non-US Citizens;Population: Not A US Citizen, Foreign Born, Northamerica;non-us citizens living in north america;north american residents who are not us citizens;people born outside of the us who live in north america;the number of people living in north america who were born in another country and are not us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign-Born Population in Northern Western Europe Who are Non-US Citizens;Population: Not A US Citizen, Foreign Born, Northern Western Europe;the number of foreign-born people in northern western europe who are not us citizens;the number of non-us citizens born in northern western europe;the number of people born in northern western europe who are not us citizens;the number of people in northern western europe who are not us citizens and were born in another country" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthOceania,"Foreign Born Non-US Citizen in Oceania;Foreign-Born Non-US Citizen in Oceania;Population: Not A US Citizen, Foreign Born, Oceania;non-us citizen born in oceania;person born in oceania who is not a us citizen;person born outside the us but living in oceania;person who is not a us citizen and was born in oceania" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Foreign-Born Population in South Central Asia Who are Non-US Citizens;Population: Not A US Citizen, Foreign Born, South Central Asia;foreign-born south central asians who are not us citizens;non-us citizens who were born in south central asia;people born in south central asia who are not us citizens;south central asian-born non-us citizens" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Foreign-Born Non-US Citizens in South Eastern Asia;Population: Not A US Citizen, Foreign Born, South Eastern Asia;non-us citizens living in southeast asia;people who are not us citizens and live in southeast asia;people who were born in another country and are not us citizens living in south east asia;people who were born in other countries and are not us citizens who live in the southeast asian region" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthamerica,"Foreign Born in South America Population;Population: Not A US Citizen, Foreign Born, Southamerica;number of people in south america who were not born in south america;number of south americans who were born in other countries" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born Non-US Citizens in Southern Eastern Europe;Population: Not A US Citizen, Foreign Born, Southern Eastern Europe;foreigners who were born outside of the united states and are not us citizens living in southern eastern europe;immigrants who were born outside of the united states and are not us citizens living in southern eastern europe;non-us citizens who were born outside of the united states living in southern eastern europe;people who were born outside of the united states and are not us citizens living in southern eastern europe" -Count_Person_NotAUSCitizen_ForeignBorn_PlaceOfBirthWesternAsia,"Foreign-Born Population in Western Asia Who Are Non-US Citizens;Population: Not A US Citizen, Foreign Born, Western Asia;people born in western asia who are not us citizens;people from western asia who are not us citizens;people who are not us citizens and were born in western asia;people who were born in western asia and are not us citizens" -Count_Person_NotEnrolledInSchool,Number of People Not Currently Enrolled in School;Number of individuals not in school;Number of non-students;Number of people not currently enrolled in school;Number of people not enrolled in school;Number of people not in education;Number of people not in higher education;Number of people not in school;Number of people who are not enrolled in school;Population: Not Enrolled in School;The number of people who are not enrolled in school;number of people not attending school;number of people not enrolled in school;number of people not in school;number of people not in the education system;number of people not taking classes -Count_Person_NotHispanicOrLatino,Non-Hispanic or Latino population;Number of Non Hispanic People;Number of people who are Not Hispanic or Latino;Population: Not Hispanic or Latino;non-hispanic population;number of people who are not hispanic;number of people who do not identify as hispanic;population of non-hispanic people -Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic People Who Identify as American Indian and Alaska Native Alone or in Combination With One or More Other Races;Number of people who are American Indian or Alaska Native alone or in combination with one or more other races, but not Hispanic or Latino;Number of people who are American Indian or Alaska Native, not Hispanic or Latino;Number of people who are Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;Number of people who are Not Hispanic or Latino and American Indian or Alaska Native;Number of people who are not Hispanic or Latino and American Indian and Alaska Native alone or in combination with one or more other races;Population: Not Hispanic or Latino & American Indian And Alaska Native Alone or In Combination With One or More Other Races;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not hispanic;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of hispanic or latino origin;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of hispanic origin;the number of people who identify as american indian or alaska native, alone or in combination with one or more other races, and who are not of latino origin" -Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native alone, not Hispanic or Latino;Number of Non Hispanic People Who Identify as American Indian or Alaska Native Alone;Number of people who are American Indian or Alaska Native and not of Hispanic, Latino, or Spanish origin alone;Number of people who are American Indian or Alaska Native, not of Hispanic, Latino, or Spanish origin alone;Number of people who are Not Hispanic or Latino & American Indian or Alaska Native Alone;Number of people who are not Hispanic or Latino and American Indian or Alaska Native alone;Number of people who identify as American Indian or Alaska Native only;Population: Not Hispanic or Latino & American Indian or Alaska Native Alone;number of american indian or alaska native people who do not identify as hispanic;number of american indian or alaska native people who do not identify as hispanic or any other race;number of american indian or alaska native people who identify as american indian or alaska native only;number of people who identify as american indian or alaska native alone" -Count_Person_NotHispanicOrLatino_AsianAlone,Number of Non Hispanic People Who Identify as Asian Alone;Number of people who are Not Hispanic or Latino & Asian Alone;Number of people who are Not Hispanic or Latino and Asian Alone;Number of people who are not Hispanic or Latino and Asian alone;Number of people who are not of Hispanic or Latino origin and Asian alone;Population: Not Hispanic or Latino & Asian Alone;number of people who identify as asian alone -Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Non Hispanic People Who Identify as Asian;Number of people who are Asian and not Hispanic or Latino;Number of people who are Asian but not Hispanic or Latino;Number of people who are Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;Number of people who are not Hispanic or Latino and Asian;Population: Not Hispanic or Latino & Asian Alone or In Combination With One or More Other Races;the number of asian non-hispanics;the number of people who identify as asian and are not hispanic;the number of people who identify as asian and are not of hispanic descent;the number of people who identify as asian and are not of hispanic origin -Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,"Number of Non Hispanic People Who Identify as Asian or Pacific Islander;Number of people who are Not Hispanic or Latino & Asian or Pacific Islander;Number of people who are neither Hispanic or Latino nor Asian or Pacific Islander;Number of people who are not Hispanic or Latino and Asian or Pacific Islander;Number of people who are not Hispanic or Latino and not Asian or Pacific Islander;Number of people who are not Hispanic or Latino or Asian or Pacific Islander;Number of people who are not of Hispanic, Latino, Asian, or Pacific Islander descent;Population: Not Hispanic or Latino & Asian or Pacific Islander;the number of asian or pacific islander people who are not hispanic;the number of people who are not hispanic and identify as asian or pacific islander;the number of people who identify as asian or pacific islander and are not hispanic;the number of people who identify as asian or pacific islander and are not of hispanic origin" -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,"Number of Non Hispanic People Who Identify as Black or African American Alone;Number of people who are Not Hispanic or Latino & Black or African American Alone;Population: Not Hispanic or Latino & Black or African American Alone;the number of people who identify as black or african american alone, excluding hispanic or latino people" -Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic People Who Identify as Black or African American;Number of people who are Black or African American, not Hispanic or Latino;Number of people who are Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;Population: Not Hispanic or Latino & Black or African American Alone or In Combination With One or More Other Races;The number of people who are Black or African American, not Hispanic;The number of people who are Black or African American, not Latino;The number of people who are Black or African American, regardless of Hispanic origin;number of black or african americans who are not hispanic or latino;number of black or african americans who are not of hispanic or latino origin;number of non-hispanic black or african americans;population of black or african americans who are not hispanic" -Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,Number of Non Hispanic People Who Identify as Native Hawaiian and Other Pacific Islander;Number of people who are Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;Population: Not Hispanic or Latino & Native Hawaiian And Other Pacific Islander Alone or In Combination With One or More Other Races;The number of people who are not Hispanic or Latino and Native Hawaiian and Other Pacific Islander;how many people identify as native hawaiian or other pacific islander and are not hispanic;the number of native hawaiian or other pacific islander people who are not hispanic;the number of people who are not hispanic and identify as native hawaiian or other pacific islander;the number of people who identify as native hawaiian or other pacific islander and are not hispanic -Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,Number of Non Hispanic People Who Identify as Native Hawaiian or Other Pacific Islander Alone;Number of people who are Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;Population: Not Hispanic or Latino & Native Hawaiian or Other Pacific Islander Alone;The number of people who are not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;The number of people who identify as Not Hispanic or Latino and Native Hawaiian or Other Pacific Islander Alone;The number of people who identify as not Hispanic or Latino and Native Hawaiian or Other Pacific Islander alone;number of native hawaiian or other pacific islander alone people who are not hispanic;number of people who are not hispanic and identify as native hawaiian or other pacific islander alone;number of people who identify as native hawaiian or other pacific islander alone and are not hispanic;number of people who identify as native hawaiian or other pacific islander alone only -Count_Person_NotHispanicOrLatino_ResidesInGroupQuarters,"Number of Non Hispanics Residing in Group Quarters;Number of non-Hispanic or Latino people in group quarters;Number of people who are Not Hispanic or Latino, in Group Quarters;Number of people who are not Hispanic or Latino living in group quarters;Population: Not Hispanic or Latino, Group Quarters;The number of people who are not Hispanic or Latino living in group quarters;The number of people who are not Hispanic or Latino living in other types of group quarters, such as homeless shelters or halfway houses;number of non-hispanics in group quarters;number of non-hispanics living in group quarters;number of non-hispanics living in group quarters other than households;number of non-hispanics living in group quarters, such as dormitories, group homes, or other communal living spaces" -Count_Person_NotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Number of Non Hispanics Residing in Institutionalized Group Quarters;Number of people who are Not Hispanic or Latino, in Institutionalized in Group Quarters;Number of people who are not Hispanic or Latino and are institutionalized in group quarters;Population: Not Hispanic or Latino, Institutionalized Group Quarters;number of non-hispanics living in group facilities;number of non-hispanics living in institutional group quarters;number of non-hispanics living in institutional or group quarters" -Count_Person_NotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Number of Non Hispanics Residing in Non-Institutionalized Group Quarters;Number of people who are Not Hispanic or Latino, in Noninstitutionalized in Group Quarters;Number of people who are not Hispanic or Latino living in non-institutional group quarters;Population: Not Hispanic or Latino, Noninstitutionalized Group Quarters;number of non-hispanics living in group quarters that are not educational institutions;number of non-hispanics living in group quarters that are not hospitals, prisons, or nursing homes;number of non-hispanics living in group quarters that are not institutions;number of non-hispanics living in non-institutional group quarters" -Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,Number of Non Hispanic People Identifying as Multiracial;Number of people who are Not Hispanic or Latino & Two or More Races;Number of people who are Not Hispanic or Latino and identify as biracial;Number of people who are Not Hispanic or Latino and identify as multiracial;Population: Not Hispanic or Latino & Two or More Races;how many non-hispanic people identify as multiracial?;what is the number of non-hispanic people who identify as multiracial?;what is the proportion of non-hispanic people who identify as multiracial?;what percentage of non-hispanic people identify as multiracial? -Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,"Number of Non Hispanic People Identyfing as White Alone or in Combination With One or More Other Races;Number of people who are Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;Number of people who are not Hispanic or Latino and identify as White alone or in combination with one or more other races;Number of people who are not Hispanic or Latino and identify as white alone or in combination with one or more other races in the United States;Number of people who are not Hispanic or Latino and identify as white alone or in combination with one or more other races in the United States as of 2020;Population: Not Hispanic or Latino & White Alone or In Combination With One or More Other Races;the number of people who are not hispanic and who identify as white, alone or in combination with one or more other races;the number of people who identify as non-hispanic white alone or in combination with one or more other races in the us;the number of people who identify as white, alone or in combination with one or more other races, and who are not hispanic;the number of white people, including those who identify as white in combination with one or more other races, who are not hispanic" -Count_Person_NotInLaborForce,"Population Aged 16 Years Or More Not In Labor Force;Population: 16 Years or More, Not in Labor Force;people aged 16 or older who are not in the labor force;people aged 16 or older who are not part of the labor force;people aged 16 years or more not in the labor force;people aged 16 years or more who are not in the labor force" -Count_Person_NotInLaborForce_Female_DivorcedInThePast12Months,"Number of Females Who Are Not in the Labor Force and Got Divorced in the Last Year;Number of divorced females not in the labor force in the past 12 months;Number of female divorcees who are not in the labor force in the past 12 months;Number of females who are not in the labor force and have been divorced in the past 12 months;Number of people who are Not in Labor Force, Female, Divorced in The Past 12 Months;Number of women who are not in the labor force and have been divorced in the past 12 months;Number of women who are not working and have been divorced in the past year;Population: Not in Labor Force, Female, Divorced in The Past 12 Months;number of females who are not currently employed and got divorced last year;number of females who are not in the labor force and got divorced last year;number of females who got divorced last year and are not currently employed;number of females who got divorced last year and are not in the labor force" -Count_Person_NotInLaborForce_Female_MarriedInThePast12Months,"Number of Females Who Are Not in the Labor Force and Got Married in the Last Year;Number of females who are not in the labor force and have been married in the past 12 months;Number of people who are Not in Labor Force, Female, a Married in The Past 12 Months;Number of women not employed who were married in the past year;Number of women not in the labor force who were married in the past 12 months;Number of women not in the workforce who were married in the past year;Number of women not working who were married in the past 12 months;Population: Not in Labor Force, Female, Married in The Past 12 Months;number of women who got married last year and are not employed;number of women who got married last year and are not in the labor force;number of women who got married last year and are not in the workforce;number of women who got married last year and are not working" -Count_Person_NotInLaborForce_Male_DivorcedInThePast12Months,"Number of Males Who Are Not in the Labor Force and Got Divorced in the Last Year;Number of males divorced in the past 12 months who are not in the labor force;Number of males who are not in the labor force and have been divorced in the past 12 months;Number of males who are not in the labor force and were divorced in the past 12 months;Number of males who have been divorced in the past 12 months and are not in the labor force;Number of males who were divorced in the past 12 months and are not in the labor force;Number of people who are Not in Labor Force, Male, Divorced in The Past 12 Months;Population: Not in Labor Force, Male, Divorced in The Past 12 Months;the number of men who are not in the labor force and got divorced in the last 12 months;the number of men who are not in the labor force and got divorced in the last year;the number of men who got divorced in the last 12 months and are not in the labor force;the number of men who got divorced in the last year and are not in the labor force" -Count_Person_NotInLaborForce_Male_MarriedInThePast12Months,"Number of Males Who Are Not in the Labor Force and Got Married in the Last Year;Number of men who are not in the labor force and were married in the past 12 months;Number of people who are Not in Labor Force, Male, a Married in The Past 12 Months;Population: Not in Labor Force, Male, Married in The Past 12 Months;The number of men who are married and not in the labor force;The number of men who are not in the labor force and have been married in the past 12 months;The number of men who have been married in the past 12 months and are not in the labor force;The number of men who have been married in the past 12 months and are not working;number of men who are not currently working and got married in the last year;number of men who are not in the labor force and got married in the last year;number of men who got married in the last year and are not currently working;number of men who got married last year and are not in the labor force" -Count_Person_NotInLaborForce_ResidesInAdultCorrectionalFacilities,"Population Aged 16 Years or More Not in The Labor Force Residing in Adult Correctional Facilities;Population: 16 Years or More, Not in Labor Force, Adult Correctional Facilities;number of adults aged 16 or older who are not in the labor force and are living in correctional facilities;number of adults who are not in the labor force and are in a correctional facility;number of people aged 16 or older who are not working and are living in jail or prison;the number of people aged 16 or older who are not in the labor force and are residing in adult correctional facilities" -Count_Person_NotInLaborForce_ResidesInCollegeOrUniversityStudentHousing,"Population Aged 16 Years or More in College or University Student Housing Not in Labor Force;Population: 16 Years or More, Not in Labor Force, College or University Student Housing;the number of people aged 16 years or more living in college or university student housing who are not in the labor force;the number of people aged 16 years or more who are attending college or university and are not working or looking for work;the number of people aged 16 years or more who are enrolled in college or university and are not working;the number of people aged 16 years or more who are living in college or university student housing and are not employed" -Count_Person_NotInLaborForce_ResidesInGroupQuarters,"Population Aged 16 Years or More Not in Labor Force in Group Quarters;Population: 16 Years or More, Not in Labor Force, Group Quarters;number of people aged 16 years or more not in the labor force living in group quarters;number of people aged 16 years or older not in the labor force and living in group quarters;number of people aged 16 years or older not in the workforce living in group quarters;people aged 16 years or older who are not in the labor force and live in group quarters" -Count_Person_NotInLaborForce_ResidesInNoninstitutionalizedGroupQuarters,"Population Aged 16 Years or More Not in The Labor Force Residing in Non-institutionalized Group Quarters;Population: 16 Years or More, Not in Labor Force, Noninstitutionalized Group Quarters;people aged 16 or older who are not employed and live in group quarters;people aged 16 or older who are not in the labor force and live in non-institutional group quarters;people aged 16 years or older who are not in the labor force and live in non-institutional group quarters;people aged 16 years or older who are not working and live in group homes, dormitories, or other non-institutional settings" -Count_Person_NotInLaborForce_ResidesInNursingFacilities,"Population Aged 16 Years or More who Aren't in Labor Force in Nursing Facilities;Population: 16 Years or More, Not in Labor Force, Nursing Facilities;number of people aged 16 or older who are not employed in nursing facilities;number of people aged 16 or older who are not in the labor force in nursing facilities;number of people aged 16 or older who are not in the workforce in nursing facilities;number of people aged 16 or older who are not working in nursing facilities" -Count_Person_NotWorkedFullTime,"Female Part Time Workers;Population: Female, Not Worked Full Time;female employees who work less than 40 hours per week;women who have a job but work fewer hours than they would like;women who work part-time;women who work part-time jobs" -Count_Person_NowMarried,"Married Female Population;Population: Female, Now Married;female population that is married;female population who are married;number of married women;population of married females" -Count_Person_OneRace,Number of People of a Single Race;Number of people who are One Race;Population of people who are one race;Population: One Race;count of people of a single race;number of people of a certain race;population of a single race;total number of people identifying as a single race -Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,"Number of People of a Single Race Residing in Adult Correctional Facilities;Number of incarcerated people by race;Number of people in adult correctional facilities by race;Number of people in correctional facilities by race;Number of people in jail by race;Number of people in prison by race;Number of people who are One Race, in Adult Correctional Facilities;Population: One Race, Adult Correctional Facilities;how many people of a single race are in jail?;how many people of a single race are in prison?;how many people of a single race are incarcerated?;what is the number of people of a single race in correctional facilities?" -Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,"How many people of one race live in college or university student housing?;Number of People of a Single Race Residing in College or University Student Housing;Number of people who are One Race, in College or University Student Housing;Population: One Race, College or University Student Housing;The number of college or university students who are of one race;The number of college students who live in on-campus housing and identify as only one race;The number of people of one race living in college or university student housing;The number of students in college or university student housing who are only one race;number of students of a single race living in college or university dormitories;number of students of a single race living in college or university dorms;number of students of a single race living in college or university housing;number of students of a single race living in college or university residence halls" -Count_Person_OneRace_ResidesInGroupQuarters,"Number of People of a Single Race Residing in Group Quarters;Number of people in group quarters who are of one race;Number of people of one race living in group quarters;Number of people of one race living in other group quarters;Number of people who are One Race, in Group Quarters;Population: One Race, Group Quarters;number of people of a single race living in group quarters;number of people of a single race living in other group quarters;number of people of the same race living in group quarters" -Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,"Institutionalized people by race;Number of People of a Single Race Who Are Institutionalized in Group Quarters;Number of people of one race institutionalized in group quarters;Number of people who are One Race, in Institutionalized in Group Quarters;Number of people who are institutionalized in group quarters by race;Population: One Race, Institutionalized Group Quarters;number of people of a single race who are institutionalized in group facilities;number of people of a single race who are institutionalized in group homes;number of people of a single race who are institutionalized in group quarters;number of people of a single race who are institutionalized in group settings" -Count_Person_OneRace_ResidesInJuvenileFacilities,"Number of People of a Single Race Residing in Juvenile Facilities;Number of juveniles in detention centers by race;Number of people in juvenile facilities by race;Number of people who are One Race, in Juvenile Facilities;Number of youth in juvenile detention by race;Population: One Race, Juvenile Facilities;number of people of a single race in juvenile correctional facilities;number of people of a single race in juvenile detention centers;number of people of a single race in juvenile facilities;number of people of a single race in youth detention centers" -Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,"Number of People of a Single Race Residing in Military Quarters or on Military Ships;Number of people of one race in military quarters or military ships;Number of people who are One Race, in Military Quarters or Military Ships;Population: One Race, Military Quarters or Military Ships;The number of people in military quarters or military ships who are of one race;The number of people of one race in military quarters or military ships;The number of people who are of one race and are in military quarters or military ships;The number of people who are of one race in military quarters or military ships;how many people of a single race are living in military quarters or on military ships?;how many people of a single race live in military quarters or on military ships?;what is the number of people of a single race who live in military quarters or on military ships?;what is the population of people of a single race who live in military quarters or on military ships?" -Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,"Number of People of a Single Race Who Are Residing in Non-Institutionalized Group Quarters;Number of people of one race living in non-institutional group quarters;Number of people who are One Race, in Noninstitutionalized in Group Quarters;Number of people who are one race and live in group quarters that are not homeless shelters or other temporary housing facilities;Number of people who are one race and live in group quarters that are not nursing homes, assisted living facilities, or other long-term care facilities;Number of people who are one race and live in group quarters that are not prisons, hospitals, or other institutions;Number of people who are one race and live in noninstitutionalized group quarters;Population: One Race, Noninstitutionalized Group Quarters;number of people of a single race living in group quarters not in institutions;number of people of a single race living in group quarters not institutionalized;number of people of a single race living in group quarters outside of institutions;number of people of a single race living in non-institutional group quarters" -Count_Person_OneRace_ResidesInNursingFacilities,"How many people of one race are in nursing homes?;Number of People of a Single Race Residing in Nursing Facilities;Number of nursing home residents by race;Number of people of one race in nursing homes;Number of people who are One Race, in Nursing Facilities;Population: One Race, Nursing Facilities;The number of people of one race in nursing facilities;how many people of a single race are in nursing homes?;how many people of a single race reside in nursing homes?;what is the number of people of a single race living in nursing homes?;what is the population of people of a single race in nursing homes?" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Other Family Households of Foreign-Born Population In Africa;Population: Other Family Household, Foreign Born, Africa;households of foreign-born people in africa that are not nuclear families;households of foreign-born people in africa that include extended family members;households with at least one member who was born outside of africa;non-nuclear families of foreign-born people in africa" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Foreign-Born Other Family Households in Asia;Population: Other Family Household, Foreign Born, Asia;households in asia with foreign-born members;households in asia with members who are immigrants" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Population of Other Family Households in The Caribbean;Population: Other Family Household, Foreign Born, Caribbean;the foreign-born population of other family households in the caribbean;the number of people born outside of the caribbean who live in other family households as a percentage of the total population of other family households in the caribbean;the number of people born outside of the caribbean who live in other family households in the caribbean;the percentage of the population of other family households in the caribbean who were born outside of the caribbean" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Foreign Born Other Family Household in Central America, Except Mexico;Population: Other Family Household, Foreign Born, Central America Except Mexico;central american household with members who were born outside of mexico" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Other Family Households With Foreign Born Population Born in Eastern Asia;Population: Other Family Household, Foreign Born, Eastern Asia;people from other family households who were born in eastern asia" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Foreign-Born Population in Other Family Households in Europe;Population: Other Family Household, Foreign Born, Europe;the number of foreign-born people living in other family households in europe, as a percentage of the total population;the number of foreign-born people living in other family households in europe, as a proportion of the total population;the percentage of the foreign-born population living in other family households in europe;the proportion of the foreign-born population living in other family households in europe" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Foreign Borns In Latin America With Other Family Household;Population: Other Family Household, Foreign Born, Latin America;foreign-born latin americans living with other family members;immigrants from latin america living with other family members;people born in latin america living with other family members;people from latin america who are not citizens of the country they live in living with other family members" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Population In Other Family Households Foreign Born In Mexico;Population: Other Family Household, Foreign Born, Country/MEX;number of people born in mexico living in other family households;number of people in mexico-born other family households;number of people in other family households born in mexico;number of people living in other family households who were born in mexico" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born Population in North America with Other Family Households;Population: Other Family Household, Foreign Born, Northamerica;people born in other countries living in family households in north america;people living in family households in north america who were born in other countries;population of north america born in other countries living in family households;population of north america living in family households who were born in other countries" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign-Born Population in Northern Western Europe in Other Family Households;Population: Other Family Household, Foreign Born, Northern Western Europe;foreigners born outside of northern western europe living in other family households;people born outside of northern western europe living in other family households;the number of people born outside of northern western europe who live in other family households;the percentage of the population in other family households who were born outside of northern western europe" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Other Family Households With Foreign Born Population Born in Oceania;Population: Other Family Household, Foreign Born, Oceania;other family household, foreign born, and oceania" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Foreign-Born Population in South Central Asia with Other Family Households;Population: Other Family Household, Foreign Born, South Central Asia;foreign-born south central asians who live with other family members;immigrants from south central asia who live with other family members;people born in south central asia who live with other family members;population of south central asian immigrants living with other family members" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Other Family Households of Foreign-Born Population in South Eastern Asia;Population: Other Family Household, Foreign Born, South Eastern Asia;families in southeast asia headed by a foreign-born person;families in southeast asia with at least one foreign-born child;families in southeast asia with foreign-born members;foreign-born families in southeast asia" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Other Family Household Foreign Born In South America;Population: Other Family Household, Foreign Born, Southamerica;family members who were born in south america but live in the us;foreign-born family households in south america;households in south america with at least one member who was born outside of south america;people who were born in south america but live in the us with their families" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Family Households of Foreign-Born Population in Southern Eastern Europe;Population: Other Family Household, Foreign Born, Southern Eastern Europe;families of immigrants in southern eastern europe;households headed by immigrants in southern eastern europe;households of foreign-born people in southern eastern europe;households of people born outside of southern eastern europe" -Count_Person_OtherFamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Population: Other Family Household, Foreign Born, Western Asia;Western Asia Foreign Born Other Family Households;foreign-born families in western asia;households with foreign-born members from western asia;households with members who were born in western asia but are now living in the united states;western asian families" -Count_Person_PerArea,Density of population;Population Density;Population density;number of people per area;population density;the concentration of people in a given area;the number of people living in a given area per unit of land area;the number of people per square kilometer;the number of people per unit area -Count_Person_PlaceOfBirthAsia,"Foreign-Born Population in Asia;Population: Foreign Born, Asia;the number of people born outside of asia who live in asia;the number of people who are foreign-born in asia;the number of people who have moved to asia from other countries;the number of people who were born in another country and now live in asia" -Count_Person_PlaceOfBirthEurope,"Foreign-Born Population in Europe;Population: Foreign Born, Europe;the number of immigrants living in europe;the number of people living in europe who were born in another country;the number of people who have moved to europe from another country;the percentage of the european population that is foreign-born" -Count_Person_PlaceOfBirthLatinAmerica,"Population Foreign Born in Latin America;Population: Foreign Born, Latin America;the number of foreign-born people in latin america;the number of immigrants in latin america;the number of people born in other countries who live in latin america;the number of people who were not born in latin america but live there now" -Count_Person_PovertyStatusDetermined,Population With Poverty Status Determined;determine poverty status of population;determine the poverty level;determine the poverty rate;determine the poverty status of the population -Count_Person_PovertyStatusDetermined_ResidesInGroupQuarters,"1 Number of people determined to be in poverty, living in group quarters;Number of People Residing in Group Quarters Who Had Their Poverty Status Determined;Number of people living in group quarters who are determined to be in poverty;Number of people living in poverty in group quarters;Number of people who are Poverty Status Determined, in Group Quarters;People living in group quarters who are determined to be in poverty;Population: Poverty Status Determined, Group Quarters;The number of people in group quarters who have been determined to be in poverty;number of people in group quarters who had their poverty status determined;number of people in group quarters whose poverty status was determined;number of people living in group quarters who had their poverty status determined;number of people living in group quarters whose poverty status was determined" -Count_Person_PovertyStatusDetermined_ResidesInNoninstitutionalizedGroupQuarters,"Number of People Residing in Non-Institutionalized Group Quarters Who Had Their Poverty Status Determined;Number of people who are Poverty Status Determined, in Noninstitutionalized in Group Quarters;Population: Poverty Status Determined, Noninstitutionalized Group Quarters;The number of people who are in non-institutional group quarters and have been determined to be in poverty;The number of people who are living in non-institutional group quarters and have been determined to be poor;The number of people who are living in non-institutional group quarters and have been determined to have low income;how many people living in group quarters outside of institutions had their poverty status assessed;how many people living in group quarters outside of institutions had their poverty status determined;number of people living in non-institutional group quarters who had their poverty status determined;the number of people living in non-institutional group quarters who had their poverty status determined" -Count_Person_Producer,Population: Producer;Producers -Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,"How many American Indian and Native American farmers are there?;Number of American Indian and Alaska Native farmers;Number of American Indian and Native American Farmers;Number of American Indian and Native American farmers;Number of American Indian farmers;Number of Native American farmers;Number of Native farmers;Population: Producer, American Indian or Alaska Native Alone;how many american indian and native american farmers are there?;how many people identify as american indian or native american farmers?;what is the number of american indian and native american farmers?;what is the population of american indian and native american farmers?" -Count_Person_Producer_AsianAlone,"How many farmers are there in Asia;How many farmers are there in Asia?;Number of Asian Farmers;Number of Asian farmers;Population: Producer, Asian Alone;What is the number of people who farm in Asia;What is the population of farmers in Asia;number of farmers in asia;number of people who farm in asia;number of people who make a living from farming in asia;number of people who work in agriculture in asia" -Count_Person_Producer_BlackOrAfricanAmericanAlone,"Number of African American Farmers;Number of African American agricultural producers;Number of African American farmers;Number of African American people who farm;Number of black farmers;Population: Producer, Black or African American Alone;The number of African American farmers;The number of black farmers in the United States;how many african american farmers are there?;how many people identify as african american farmers?;what is the number of african american farmers?;what is the population of african american farmers?" -Count_Person_Producer_HispanicOrLatino,"Hispanic farmers;How many Hispanic farmers are there?;Number of Hispanic Farmers;Number of Hispanic farmers in the United States;Number of farmers who are Hispanic;Number of hispanic farmers;Population: Producer, Hispanic or Latino;number of farmers who are hispanic;number of hispanic farmers;number of hispanic people who are farmers;number of hispanic people who work in agriculture" -Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,"How many Native Hawaiian farmers are there?;How many Native Hawaiians are farmers?;How many people of Native Hawaiian descent are farmers?;Number of Native Hawaiian Farmers;Number of native hawaiian farmers;Population: Producer, Native Hawaiian or Other Pacific Islander Alone;What is the number of Native Hawaiian farmers?;What is the number of Native Hawaiians who are farmers?;how many native hawaiians are farmers?;how many native hawaiians are involved in farming?;what is the number of native hawaiian farmers?;what is the population of native hawaiian farmers?" -Count_Person_Producer_TwoOrMoreRaces,"Number of Farmers of Mixed Race;Population: Producer, Two or More Races;number of farmers of mixed race farmers;number of farmers who are mixed race;number of farmers who are of mixed race;number of farmers who identify as mixed race;number of mixed-race farmers;the number of farmers in the us who are of mixed race;the number of farmers in the us who identify as mixed race;the number of farmers of mixed race in the united states;the number of mixed-race farmers in the us" -Count_Person_Producer_WhiteAlone,"How many white farmers are there?;Number of White Farmers;Population: Producer, White Alone;how many farmers are white;how many white farmers are there;number of white farmers;the amount of white farmers;the number of white farmers;the total number of white farmers;the white farmer population;what is the percentage of white farmers" -Count_Person_ResidesInAdultCorrectionalFacilities,Population in Adult Correctional Facilities;Population: Adult Correctional Facilities;adult correctional facility population;number of adults in correctional facilities;number of adults incarcerated;number of people in adult correctional facilities -Count_Person_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,"Population Aged 3 Years or More in Adult Correctional Facilities Enrolled in Schools;Population: 3 Years or More, Adult Correctional Facilities, Enrolled in School;number of people aged 3 or older enrolled in school in adult correctional facilities;number of people aged 3 or older who are enrolled in school while in adult correctional facilities;number of people aged 3 or older who are students while in adult correctional facilities;number of people in adult correctional facilities who are enrolled in school" -Count_Person_ResidesInCollegeOrUniversityStudentHousing,Population In College or University Student Housing;Population: College or University Student Housing;number of students living in college or university dormitories;number of students living in college or university dorms;number of students living in college or university housing;number of students living in college or university residence halls -Count_Person_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,"Population Aged 3 Years or More in Colleges or University Student Housing Enrolled in Schools;Population: 3 Years or More, College or University Student Housing, Enrolled in School;number of people aged 3 or older enrolled in school who are living in college or university student housing;number of people aged 3 or older living in college or university student housing who are enrolled in school;number of people aged 3 or older who are both enrolled in school and living in college or university student housing;number of people aged 3 or older who are enrolled in school and living in college or university housing" -Count_Person_ResidesInGroupQuarters,Population in Group Quarters;Population: Group Quarters;group quarters population;number of people living in group quarters;people living in group quarters;population living in group quarters -Count_Person_ResidesInGroupQuarters_EnrolledInSchool,"Population Aged 3 Years or More In Group Quarters Enrolled in School;Population: 3 Years or More, Group Quarters, Enrolled in School;number of people aged 3 years or more in group quarters who are enrolled in an educational institution;number of people aged 3 years or more in group quarters who are enrolled in school;number of people aged 3 years or more in group quarters who are students;population aged 3 years or more in group quarters enrolled in school" -Count_Person_ResidesInHousehold,Households;Population: Household;homes;households;residences -Count_Person_ResidesInInstitutionalizedGroupQuarters,Population in Institutionalized Group Quarters;Population: Institutionalized Group Quarters;institutionalized group quarters population -Count_Person_ResidesInInstitutionalizedGroupQuarters_EnrolledInSchool,"Population Above 3 Years Old In Institutionalized Group Quarters Enrolled In School;Population: 3 Years or More, Institutionalized Group Quarters, Enrolled in School;number of people over 3 years old institutionalized in group quarters enrolled in school;number of people over 3 years old institutionalized in group quarters who are students;the number of children who are enrolled in school and live in group quarters, such as group homes, foster homes, or correctional facilities;the number of people over 3 years old who are enrolled in school and live in institutionalized group quarters" -Count_Person_ResidesInNoninstitutionalizedGroupQuarters,Population in Non-Institutionalized Group Quarters;Population: Noninstitutionalized Group Quarters;number of people living in non-institutional group quarters;people living in non-institutional group quarters;population of non-institutional group quarters;the number of people living in non-institutional group quarters -Count_Person_ResidesInNoninstitutionalizedGroupQuarters_EnrolledInSchool,"Population Above 3 Years Enrolled in Schools in Non-Institutionalized Group Quarters;Population: 3 Years or More, Noninstitutionalized Group Quarters, Enrolled in School;number of people over 3 years old enrolled in non-institutional schools;number of people over the age of 3 enrolled in schools in non-institutional group quarters;number of people over the age of 3 enrolled in schools in non-residential settings" -Count_Person_ResidesInNursingFacilities,Nursing Facilities;Population: Nursing Facilities;assisted living facilities;nursing homes;skilled nursing facilities -Count_Person_ResidesInNursingFacilities_EnrolledInSchool,"Population Aged 3 Years or More Enrolled in Schools Residing in Nursing Facilities;Population: 3 Years or More, Nursing Facilities, Enrolled in School;number of people aged 3 or older enrolled in school who live in nursing facilities;number of people aged 3 or older enrolled in schools living in nursing facilities;number of people aged 3 or older enrolled in schools who are residents of nursing facilities;number of people aged 3 or older who are enrolled in schools and live in nursing facilities" -Count_Person_ResidingLessThan5MetersAboveSeaLevel_AsFractionOf_Count_Person,Percent of Population Living in Areas Below 5 Meters Elevation;number of people living in areas below 5 meters above sea level as a percentage of the total population;percentage of people living in areas below 5 meters above sea level;proportion of people living in areas below 5 meters above sea level;share of people living in areas below 5 meters above sea level -Count_Person_Rural,How many people live in rural areas?;Number of People Living in Rural Areas;Number of people living in rural areas;Population of rural areas;Rural population;number of people living in rural areas;people living in rural areas;population of rural areas;rural population -Count_Person_Rural_BelowPovertyLevelInThePast12Months,"Population: Rural, Below Poverty Level in The Past 12 Months" -Count_Person_Rural_Female,"Female Population in Rural Areas;Population: Female, Rural;female rural population;population of rural females;rural female population;the female population in rural areas" -Count_Person_Rural_Male,"Male Population in Rural Areas;Population: Male, Rural;male population in rural areas;male rural population;population of rural males;rural male population" -Count_Person_ScheduledCaste,Population: Scheduled Caste;Scheduled Caste Population;population of scheduled castes;scheduled caste census data;scheduled caste demographics;scheduled caste population statistics -Count_Person_ScheduledCaste_Female,"Population: Female, Scheduled Caste;Scheduled Caste Female Population;female, oppressed caste;female, scheduled caste;females from the scheduled castes;the female population of the scheduled castes" -Count_Person_ScheduledCaste_Illiterate,"Population: Illiterate, Scheduled Caste;Scheduled Caste Illiterates;illiterate members of the scheduled castes;illiterate scheduled castes" -Count_Person_ScheduledCaste_Literate,"Literate Population In Scheduled Castes;Population: Literate, Scheduled Caste;the level of literacy among scheduled castes;the number of people in scheduled castes who are literate;the percentage of people in scheduled castes who can read and write;the rate of literacy among scheduled castes" -Count_Person_ScheduledCaste_MainWorker,"Main Worker;Population: Scheduled Caste, Main Worker;essential worker;key worker;primary worker;principal employee" -Count_Person_ScheduledCaste_Male,"Population: Male, Scheduled Caste;Scheduled Caste Male Population;male, from a caste that is considered to be discriminated against;male, from a caste that is considered to be lower in the social hierarchy;male, from a caste that is considered to be oppressed;male, scheduled caste" -Count_Person_ScheduledCaste_MarginalWorker,"Marginal Worker Population Who are Scheduled Caste;Population: Scheduled Caste, Marginal Worker" -Count_Person_ScheduledCaste_NonWorker,"Non-Workers in Scheduled Castes;Population: Scheduled Caste, Non Worker;people who are not employed in scheduled castes;scheduled castes who are not in the workforce;scheduled castes who are not working;scheduled castes who are unemployed" -Count_Person_ScheduledCaste_Rural,"Population: Rural, Scheduled Caste;Scheduled Caste Population in Rural Areas;population of scheduled castes in rural areas;rural scheduled caste population;the number of people from scheduled castes living in rural areas;the population of scheduled castes in rural areas" -Count_Person_ScheduledCaste_Urban,"Population: Urban, Scheduled Caste;Scheduled Caste In Urban;caste-based discrimination in urban areas;urban scheduled caste population" -Count_Person_ScheduledCaste_Workers,"Population: Scheduled Caste, Worker;Scheduled Caste Workers;dalits" -Count_Person_ScheduledCaste_YearsUpto6,"Population Aged 6 Years or Less Within Scheduled Castes;Population: 6 Years or Less, Scheduled Caste;number of children aged 6 years or less in scheduled castes;number of people aged 6 years or less in scheduled castes;population of scheduled castes aged 6 years or less;scheduled castes population aged 6 years or less" -Count_Person_ScheduledCaste_YearsUpto6_Female,"Population: 6 Years or Less, Female, Scheduled Caste;Scheduled Caste Female Population Aged 6 Years or Less;scheduled caste female children aged 6 years or less;the number of scheduled caste females aged 6 or younger;the number of scheduled caste girls aged 6 or less;the population of scheduled caste girls under the age of 6" -Count_Person_ScheduledCaste_YearsUpto6_Male,"Population: 6 Years or Less, Male, Scheduled Caste;Scheduled Caste Male Population Aged 6 Years or Less;number of scheduled caste males aged 6 years or less;number of scheduled caste males under 6 years of age;population of scheduled caste males aged 6 years or less;scheduled caste male population under 6 years of age" -Count_Person_ScheduledCaste_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Scheduled Caste;Scheduled Caste For 6 Years or Less In Rural;people from scheduled castes who have been settled in rural areas for six years or less;people from scheduled castes who have lived in rural areas for six years or less;people of scheduled castes in rural areas for 6 years or less;scheduled castes in rural areas for 6 years or less" -Count_Person_ScheduledCaste_YearsUpto6_Urban,"6 years old or younger, living in an urban area, and from a scheduled caste;6 years or younger, living in a city, and from a scheduled caste;Population: 6 Years or Less, Urban, Scheduled Caste;Scheduled Caste Population in Urban Areas For 6 Years;less than 6 years old, living in a city, and from a scheduled caste;population: 6 years or less, urban, scheduled caste" -Count_Person_ScheduledTribe,Population: Scheduled Tribe;Scheduled Tribe Population;number of scheduled tribes people;population of scheduled tribes;scheduled tribe people population;scheduled tribe population -Count_Person_ScheduledTribe_Female,"Population: Female, Scheduled Tribe;Scheduled Tribe Female Population;female member of a scheduled tribe;female member of a tribal group;female member of an indigenous group;woman from a scheduled tribe" -Count_Person_ScheduledTribe_Illiterate,"Illiterate Scheduled Tribe Population;Population: Illiterate, Scheduled Tribe;number of illiterate people in scheduled tribes;percentage of scheduled tribe people who are illiterate;population of scheduled tribes who are illiterate;proportion of scheduled tribe people who are illiterate" -Count_Person_ScheduledTribe_Literate,"Literate Scheduled Tribe Population;Population: Literate, Scheduled Tribe;number of scheduled tribes who are literate;percentage of scheduled tribes who are literate;population of scheduled tribes who can read and write;proportion of scheduled tribes who are literate" -Count_Person_ScheduledTribe_MainWorker,"Population: Scheduled Tribe, Main Worker;Scheduled Tribe Main Workers;main workers from scheduled tribes" -Count_Person_ScheduledTribe_Male,"Population: Male, Scheduled Tribe;Scheduled Tribe Male Population;male, scheduled tribe;male, scheduled tribe member;male, scheduled tribes;male, tribal" -Count_Person_ScheduledTribe_MarginalWorker,"Population: Scheduled Tribe, Marginal Worker;Scheduled Tribe Marginal Workers;scheduled tribe workers on the margins" -Count_Person_ScheduledTribe_NonWorker,"Population: Scheduled Tribe, Non Worker;Scheduled Tribe Non-Workers;people from scheduled tribes who are not employed;scheduled tribe folks who are not working;scheduled tribe individuals who are not employed;scheduled tribe members who are not working" -Count_Person_ScheduledTribe_Rural,"Population In Scheduled Tribes Residing In Rural Areas;Population: Rural, Scheduled Tribe;number of people from scheduled tribes living in rural areas;number of people living in rural areas who are from scheduled tribes;number of rural residents who are from scheduled tribes;population of scheduled tribes in rural areas" -Count_Person_ScheduledTribe_Urban,"1 population of scheduled tribes in urban areas;2 people of scheduled tribes living in cities;3 scheduled tribes living in urban areas;4 scheduled tribes in urban areas;Population: Urban, Scheduled Tribe;Urban Population In Scheduled Tribes" -Count_Person_ScheduledTribe_Workers,"Population: Scheduled Tribe, Worker;Scheduled Tribe Workers;scheduled tribes;tribal workers;workers from indigenous tribes;workers from scheduled tribes" -Count_Person_ScheduledTribe_YearsUpto6,"Population: 6 Years or Less, Scheduled Tribe;Scheduled Tribe Population Aged 6 Years Or Less;the number of people in the scheduled tribes who are 6 years old or younger;the number of people in the scheduled tribes who are under the age of 6;the number of scheduled tribes people aged 6 or less;the population of the scheduled tribes aged 6 or less" -Count_Person_ScheduledTribe_YearsUpto6_Female,"Female Population Aged 6 Years Or Less In Scheduled Tribes;Population: 6 Years or Less, Female, Scheduled Tribe;the number of female children in scheduled tribes under 6;the number of female children under 6 in scheduled tribes;the number of female tribal children under 6;the number of girls under the age of 6 in scheduled tribes" -Count_Person_ScheduledTribe_YearsUpto6_Male,"6 and under, male, and a member of a scheduled tribe;6 years old or younger, male, and an indigenous person;6 years old or younger, male, and from a scheduled tribe;6 years or less, male, and a tribal person;Population: 6 Years or Less, Male, Scheduled Tribe;Scheduled Tribe Male Population Aged Up to 6 Years" -Count_Person_ScheduledTribe_YearsUpto6_Rural,"6 years old or less, rural, scheduled tribe;Population: 6 Years or Less, Rural, Scheduled Tribe;Scheduled Tribe Population in Rural Areas Up to 6 Years;less than 6 years old, rural, and from a scheduled tribe;less than 6 years old, rural, scheduled tribe;under 6 years old, rural, scheduled tribe" -Count_Person_ScheduledTribe_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Scheduled Tribe;Scheduled Population Aged 6 Years Or Less In Urban Areas" -Count_Person_SelfCareDifficulty,How many people have difficulty with self-care?;Number of People With Self Care Difficulty;Number of people who are with Self Care Difficulty;Population: Self Care Difficulty;The number of people who have difficulty with self-care;how many people have trouble taking care of themselves?;how many people struggle with self-care?;what is the number of people who have difficulty with self-care?;what is the number of people who have trouble taking care of themselves on a daily basis? -Count_Person_Separated,How many married couples are separated;How many people are married but separated;Number of People Who Are Married but Separated;Number of people who are legally married but living apart;Number of separated people;The number of separated married people;number of people who are married but living apart;the number of people who are legally married but living apart;the number of people who are married but not living as a couple;the number of people who are married but separated -Count_Person_Separated_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Separated, Adult Correctional Facilities;Separated Population Residing in Adult Correctional Facilities" -Count_Person_Separated_ResidesInCollegeOrUniversityStudentHousing,"2 people aged 15 and over living in college housing;Population: 15 Years or More, Separated, College or University Student Housing;Separated Population Aged 15 Years Old and Above Residing In College or University Student Housing" -Count_Person_Separated_ResidesInGroupQuarters,"Population: 15 Years or More, Separated, Group Quarters;Separated Population Residing in Group Quarters" -Count_Person_Separated_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Separated, Institutionalized Group Quarters;Separated Population Aged 15 Years or More in Institutionalized Group Quarters;people aged 15 years or older in group quarters, institutionalized" -Count_Person_Separated_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Separated, Noninstitutionalized Group Quarters;Separated Population Aged Above 15 Years Old in Non-Institutionalized Group Quarters;population aged 15 and older in non-institutional group quarters" -Count_Person_Separated_ResidesInNursingFacilities,"Population: 15 Years or More, Separated, Nursing Facilities;Separated Workers In Nursing Facilities;employees who have been terminated from their jobs at nursing facilities;people who have been separated from their jobs at nursing facilities;personnel who have been fired from nursing facilities;workers who have been laid off from nursing facilities" -Count_Person_SomeOtherRaceAlone,Number of People Who Identify as Some Other Race Alone;Number of people who are Some Other Race Alone;Number of people who are of Some Other Race Alone;Number of people who identify as Some Other Race Alone;Number of people who self-identify as Some Other Race Alone;Population of people who identify as Some Other Race Alone;Population: Some Other Race Alone;number of people who identify as a race other than the three largest races;number of people who identify as a race other than the three major races;number of people who identify as a race other than the three most common races;number of people who identify as some other race alone -Count_Person_SomeOtherRaceAlone_ResidesInAdultCorrectionalFacilities,"Number of People Who Identify as Some Other Race Alone Residing in Adult Correctional Facilities;Number of people in adult correctional facilities who are of some other race alone;Number of people who are Some Other Race Alone, in Adult Correctional Facilities;Number of people who are incarcerated in adult correctional facilities who identify as ""Some Other Race Alone"";Population of adults in correctional facilities who identify as ""Some Other Race Alone"";Population: Some Other Race Alone, Adult Correctional Facilities;The number of people in adult correctional facilities who identify as ""Some Other Race Alone"";number of people in adult correctional facilities who identify as some other race alone;number of people who identify as some other race alone in adult correctional facilities;the number of people who identify as a race other than white, black, or hispanic residing in adult correctional facilities;the number of people who identify as some other race alone residing in adult correctional facilities" -Count_Person_SomeOtherRaceAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of People Who Identify as Some Other Race Alone Residing in College or University Student Housing;Number of people who are Some Other Race Alone, in College or University Student Housing;Number of people who are Some Other Race and live alone in college or university student housing;Population: Some Other Race Alone, College or University Student Housing;The number of people who are Some Other Race and live alone in college or university student housing;The number of people who identify as Some Other Race and live alone in college or university student housing;number of college students who identify as some other race and live alone in student housing;number of people who identify as some other race and live alone in college or university student housing;number of students who identify as some other race and live alone in college or university student housing;number of students who identify as some other race and live in student housing by themselves" -Count_Person_SomeOtherRaceAlone_ResidesInGroupQuarters,"How many people identify as Some Other Race Alone and live in group quarters?;Number of People Who Identify as Some Other Race Alone Residing in Group Quarters;Number of people who are Some Other Race Alone, in Group Quarters;Number of people who are Some Other Race Alone, living in group quarters;Number of people who identify as Some Other Race Alone and live in group quarters;Population of people who are Some Other Race Alone in Group Quarters;Population: Some Other Race Alone, Group Quarters;The number of people who are Some Other Race Alone and living in group quarters;number of people who identify as some other race alone living in group quarters;number of people who identify as some other race alone living in other group quarters;number of people who identify as some other race alone residing in group quarters;number of people who identify as some other race alone staying in group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInInstitutionalizedGroupQuarters,"Number of People Who Identify as Some Other Race Alone Residing in Institutionalized Group Quarters;Number of people who are Some Other Race Alone, in Institutionalized Group Quarters;Number of people who identify as ""Some Other Race Alone"" and live in institutionalized group quarters;Number of people who identify as Some Other Race Alone and are living in group quarters that are institutional in nature;Number of people who identify as Some Other Race Alone and are living in institutionalized group quarters;Population: Some Other Race Alone, Institutionalized Group Quarters;The number of people who identify as Some Other Race Alone and are living in institutionalized group quarters;how many people who identify as some other race alone are living in institutionalized group quarters?;how many people who identify as some other race alone live in institutionalized group quarters?;what is the number of people who identify as some other race alone who live in institutionalized group quarters?;what is the population of people who identify as some other race alone who live in institutionalized group quarters?" -Count_Person_SomeOtherRaceAlone_ResidesInJuvenileFacilities,"Number of People Who Identify as Some Other Race Alone Residing in Juvenile Facilities;Number of people in juvenile facilities who identify as ""Some Other Race Alone"";Number of people in juvenile facilities who identify as ""some other race"";Number of people in juvenile facilities who identify as a race other than Black, White, or Hispanic;Number of people in juvenile facilities who identify as a race other than Black, White, or Hispanic or Latino origin;Number of people who are Some Other Race Alone, in Juvenile Facilities;Population: Some Other Race Alone, Juvenile Facilities;The number of people in juvenile facilities who identify as ""Some Other Race Alone"";number of people identifying as some other race alone in juvenile correctional facilities;number of people identifying as some other race alone in juvenile detention centers;number of people identifying as some other race alone in juvenile facilities;number of people identifying as some other race alone residing in juvenile facilities" -Count_Person_SomeOtherRaceAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Number of People Who Identify as Some Other Race Alone Residing in Military Quarters or on Military Ships;Number of people who are Some Other Race Alone, in Military Quarters or Military Ships;Population: Some Other Race Alone, Military Quarters or Military Ships;The number of people in military quarters or military ships who identify as a race that is not listed;The number of people in military quarters or military ships who identify as a race that is not one of the listed races;The number of people who identify as Some Other Race Alone in Military Quarters or Military Ships;The number of people who identify as Some Other Race and live in military quarters or on military ships;how many people who identify as some other race alone are living in military quarters or on military ships?;how many people who identify as some other race alone live in military quarters or on military ships?;what is the number of people who identify as some other race alone who live in military quarters or on military ships?;what is the population of people who identify as some other race alone who live in military quarters or on military ships?" -Count_Person_SomeOtherRaceAlone_ResidesInNoninstitutionalizedGroupQuarters,"Count of people who are Some Other Race Alone and live in group quarters that are not institutions;Count of people who identify as Some Other Race Alone and live in non-institutional group quarters;Number of People Who Identify as Some Other Race Alone Residing in Non-Institutionalized Group Quarters;Number of people who are Some Other Race Alone, in Noninstitutionalized in Group Quarters;Number of people who identify as Some Other Race Alone and live in group quarters that are not hospitals, prisons, or nursing homes;Number of people who identify as Some Other Race Alone and live in non-institutional group quarters;Population of people identifying as Some Other Race Alone, living in non-institutional group quarters;Population: Some Other Race Alone, Noninstitutionalized Group Quarters;number of people who identify as some other race alone living in group quarters that are not hospitals, prisons, or nursing homes;number of people who identify as some other race alone living in group quarters that are not owned or operated by the government;number of people who identify as some other race alone living in non-institutional group quarters;number of people who identify as some other race alone living in non-institutionalized group quarters" -Count_Person_SomeOtherRaceAlone_ResidesInNursingFacilities,"Number of People Who Identify as Some Other Race Alone Residing in Nursing Facilities;Number of people in nursing facilities who are Some Other Race Alone;Number of people who are Some Other Race Alone, in Nursing Facilities;Population: Some Other Race Alone, Nursing Facilities;number of people who identify as some other race alone living in nursing facilities;number of people who identify as some other race alone who are residents of nursing facilities;number of people who identify as some other race alone who live in nursing facilities;number of residents of nursing facilities who identify as some other race alone" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,"African Languages Speak Moderate English;Population: Speak English Less Than Very Well, African Languages;african languages are moderately english-speaking;african languages have a moderate level of english proficiency;english is a moderate second language in african languages;english is spoken moderately in african languages" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"Amharic Somali Population Who Speak Moderate English;Population: Speak English Less Than Very Well, Amharic Somali or Other Afro Asiatic Languages;the number of people who speak english moderately in the amhara and somali regions;the percentage of people who speak english moderately in the amhara and somali regions;the proportion of people who speak english moderately in the amhara and somali regions;the share of people who speak english moderately in the amhara and somali regions" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArabicSpokenAtHome,"Arabic Population Moderately Fluent in English;Population: Speak English Less Than Very Well, Arabic;a large number of arabic speakers are able to communicate in english at a moderate level;a significant portion of arabic speakers are moderately fluent in english;a significant portion of the arabic-speaking population is moderately fluent in english;many arabic speakers have a moderate level of english proficiency" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ArmenianSpokenAtHome,"Armenian Population Who Speaks English Less Than Very Well;Population: Speak English Less Than Very Well, Armenian;armenians who don't speak english very well;armenians who speak english poorly;the number of armenians who do not speak english very well;the percentage of armenians who speak english less than very well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_BengaliSpokenAtHome,"Bengali Population Speaking English Very Well;Population: Speak English Less Than Very Well, Bengali;bengali people speak english very well;bengalis are fluent in english;bengalis have a good command of english;bengalis speak english proficiently" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"Chinese Incl Mandarin Cantonese;Population: Speak English Less Than Very Well, Chinese Incl Mandarin Cantonese" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ChineseSpokenAtHome,"Chinese Population Speaking Slight English;Population: Speak English Less Than Very Well, Chinese;the number of chinese people who are able to speak english in a simple way;the number of chinese people who speak english a little bit;the number of chinese people who speak english well is small;the percentage of chinese people who speak english at a basic level" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,"Population Aged 5 Years or More Speaking French Creole At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, French Creole;a large number of people in this area speak english less than very well, and french creole is also spoken;a lot of people in this area speak english less than very well, and french creole is also spoken here;english is not spoken very well by many people in this area, and french creole is also spoken;english is not the primary language of many people in this area, and french creole is also spoken" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome,"French Incl Cajun Speakers Who Speak Moderate English;Population: Speak English Less Than Very Well, French Incl Cajun" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"Moderate English Speaking French And Patois Cajun Speaking Population;Population: Speak English Less Than Very Well, French Incl Patois Cajun;people who are bilingual in english and french, and also speak cajun patois;people who speak a dialect of english that is influenced by french and cajun patois;people who speak a mix of english, french, and cajun patois;people who speak english, french, and cajun patois to a moderate degree" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GermanSpokenAtHome,"German Population Aged 50 Years or More Moderately Fluent in English;Population: Speak English Less Than Very Well, German;the number of germans aged 50 and over who are moderately fluent in english, expressed as a percentage of the total population;the percentage of the german population aged 50 years or more who are moderately fluent in english;the percentage of the german population aged 50 years or more who can speak english moderately well;the proportion of germans aged 50 and over who are moderately fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GreekSpokenAtHome,"Greek Population Speaking Moderate English;Population: Speak English Less Than Very Well, Greek;the number of greeks who can speak english at a level that is sufficient for everyday communication;the percentage of greeks who speak english moderately;the percentage of the greek population that speaks english at a moderate level;the proportion of greeks who speak english at an intermediate level" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_GujaratiSpokenAtHome,"Gujarati Population Who Speak Moderate English;Population: Speak English Less Than Very Well, Gujarati;the gujarati population who speak english at an intermediate level;the number of gujaratis who speak english moderately;the percentage of gujaratis who speak english moderately;the proportion of gujaratis who speak english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HaitianSpokenAtHome,"Haitian Population Fluent in English;Population: Speak English Less Than Very Well, Haitian;how many haitians are fluent in english?;what is the english proficiency rate in haiti?;what percentage of haitians speak english?;what proportion of haitians can speak english?" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HebrewSpokenAtHome,"Hebrew Population That Speaks Fluent English;Population: Speak English Less Than Very Well, Hebrew;the hebrew-speaking population that is fluent in english;the hebrew-speaking population that speaks english fluently;the number of hebrew speakers who are fluent in english;the percentage of hebrew speakers who are fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HindiSpokenAtHome,"Hindus Below 5 Years Old Who Speak Moderate English;Population: Speak English Less Than Very Well, Hindi;the number of hindus below 5 years old who speak moderate english in india;the percentage of hindus below 5 years old who speak moderate english in india;the proportion of hindus below 5 years old who speak moderate english in india;the share of hindus below 5 years old who speak moderate english in india" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HmongSpokenAtHome,"Population Aged 5 Years or More Speaking Hmong At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, Hmong;hmong people who do not speak english very well;hmong people who don't speak english very well;hmong people who speak english less than very well;hmong speakers who speak english less than very well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_HungarianSpokenAtHome,"Hungarian Population Speak Moderate English;Population: Speak English Less Than Very Well, Hungarian;a sizeable percentage of hungarians can communicate in english at an intermediate level;hungarians have a moderate level of english proficiency;hungarians speak english moderately well;many hungarians speak english moderately well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"Population Speaking Ilocano Samoan Hawaiian or Other Austronesian Languages Who Speak Fluent English;Population: Speak English Less Than Very Well, Ilocano Samoan Hawaiian or Other Austronesian Languages;number of people who are fluent in both ilocano, samoan, hawaiian, or other austronesian languages and english;number of people who speak ilocano, samoan, hawaiian, or other austronesian languages and also speak english fluently;number of people who speak ilocano, samoan, hawaiian, or other austronesian languages as a first language and also speak english fluently;number of people who speak ilocano, samoan, hawaiian, or other austronesian languages as a second language and also speak english fluently" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ItalianSpokenAtHome,"Italians Speaking Moderate English;Population: Speak English Less Than Very Well, Italian;italians who have a moderate command of english;italians with a moderate level of english proficiency" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_JapaneseSpokenAtHome,"Japanese Who Speak Fluent English;Population: Speak English Less Than Very Well, Japanese;english-speaking japanese people;japanese people who speak english well;japanese speakers of english;japanese who are fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KhmerSpokenAtHome,"Khmer Population of Moderate English Speakers;Population: Speak English Less Than Very Well, Khmer;the khmer population that speaks english moderately;the number of khmer people who speak english moderately;the percentage of khmer people who speak english moderately;the proportion of khmer people who speak english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_KoreanSpokenAtHome,"1 the percentage of koreans who speak english moderately;Korean Population Moderate English Speakers;Population: Speak English Less Than Very Well, Korean;the number of koreans who have a moderate level of english proficiency;the percentage of koreans who speak english moderately;the proportion of koreans who are intermediate english speakers" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Population Moderately Fluent in English;Population: Speak English Less Than Very Well;english proficiency rate;number of people who can speak english at an intermediate level;percentage of people who speak english moderately well;share of the population who are moderately fluent in english -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_LaotianSpokenAtHome,"Population in Laotian That Speaks Moderate English;Population: Speak English Less Than Very Well, Laotian;percentage of laotians who speak english at a moderate level;what is the percentage of laotians who speak english at a moderate level?;what is the percentage of the laotian population that speaks english moderately?;what is the proportion of the laotian population that speaks english moderately?" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"Malayalam Kannada and Other Dravidian Languages Speak Moderate English;Population: Speak English Less Than Very Well, Malayalam Kannada or Other Dravidian Languages;malayalam, kannada, and other dravidian languages are spoken at a moderate level in the united states;malayalam, kannada, and other dravidian languages are spoken in a moderate way in the united states;malayalam, kannada, and other dravidian languages are spoken moderately in the united states;malayalam, kannada, and other dravidian languages are spoken to a moderate degree in the united states" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,"Moderate English Speaking Mon Khmer Cambodian Language Speaking Population;Population: Speak English Less Than Very Well, Mon Khmer Cambodian;cambodian people who speak english moderately well;cambodians who speak english moderately well;mon khmer cambodian language speaking population with moderate english skills;population of cambodians who speak mon khmer and have moderate english skills" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NavajoSpokenAtHome,"Population of Navajo Fluent in English Less Than Very Well;Population: Speak English Less Than Very Well, Navajo;a small percentage of navajo people are fluent in english;not a large number of navajo people are fluent in english;not a lot of navajo people are very good at speaking english;not many navajo people are fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"Nepali Marathi Population Who Speak Moderate English;Population: Speak English Less Than Very Well, Nepali Marathi or Other Indic Languages;the number of nepali and marathi speakers who speak english at a moderate level;the percentage of nepali and marathi speakers who speak english moderately;the proportion of nepali and marathi speakers who have a moderate command of english;the share of nepali and marathi speakers who are proficient in english at a moderate level" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,"Population Speaking English And Unspecified Languages;Population: Speak English Less Than Very Well, Other And Unspecified Languages;number of people speaking english and languages not specified;number of people speaking english and unspecified languages;number of people who speak english and unspecified languages;population speaking english and languages not otherwise specified" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,"Other Asian Languages Speak Moderate English;Population: Speak English Less Than Very Well, Other Asian Languages;people from other asian countries have a moderate command of the english language;people who speak other asian languages are able to communicate in english at a moderate level;people who speak other asian languages can understand and be understood in english to a moderate degree;people who speak other asian languages have a moderate command of the english language" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,"Population Aged 5 Years or More Speaking Other Indic Languages At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, Other Indic Languages;indic languages spoken by people who do not speak english very well;other indic languages spoken by people who speak english less than very well;people who speak english less than very well and other indic languages;people who speak other indic languages and do not speak english very well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherIndoEuropeanLanguagesSpokenAtHome,"Population Speaking Other Indo-European Languages And English Unwell;Population: Speak English Less Than Very Well, Other Indo European Languages;people who speak other indo-european languages and english are not doing well;people who speak other indo-european languages and english are not healthy;the health of people who speak other indo-european languages and english is not good;the well-being of people who speak other indo-european languages and english is poor" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,"2 how many people in asia speak moderate english?;4 what is the number of people in asia who speak moderate english as a second language?;Other Languages of Asia Population Speaking Moderate English;Population: Speak English Less Than Very Well, Other Languages of Asia;what is the proportion of the population of asia that speaks english moderately?;what percentage of the population in asia speaks english at a moderate level?" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,"Other Native Languages of North America that Speaks Moderate English;Population: Speak English Less Than Very Well, Other Native Languages of North America;native languages of north america that are spoken by english speakers with a moderate level of fluency" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,"Other Native North American Languages That Speak Moderate English;Population: Speak English Less Than Very Well, Other Native North American Languages;native north american languages that are spoken by english speakers with a moderate level of fluency;what native american languages are spoken by english speakers with a moderate level of fluency?;which native american languages are spoken by people who have a moderate level of english proficiency?" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,"Other Pacific Island Languages Who Speak Moderate English;Population: Speak English Less Than Very Well, Other Pacific Island Languages;what other pacific island languages are spoken moderately well by english speakers?;what pacific island languages are spoken by people who are not fluent in english but can communicate effectively?;what pacific island languages are spoken by people who have a basic understanding of english?;what pacific island languages are spoken by people who have a moderate level of english proficiency?" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,"Population Speaking Fluent English And Other Slavic Languages;Population: Speak English Less Than Very Well, Other Slavic Languages;number of people who are bilingual in english and other slavic languages;number of people who are fluent in english and other slavic languages;number of people who speak both english and other slavic languages fluently;number of people who speak english and other slavic languages fluently" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,"Population Speaking Other West Germanic Languages And Moderately Fluent in English;Population: Speak English Less Than Very Well, Other West Germanic Languages;people who speak other west germanic languages and are moderately fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,"Persian Incl Farsi Dari Speak Moderate English;Population: Speak English Less Than Very Well, Persian Incl Farsi Dari" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PersianSpokenAtHome,"Persians Who Speak English Very Well;Population: Speak English Less Than Very Well, Persian;english-speaking persians;persians who are fluent in english;persians who are good at english;persians who speak english well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PolishSpokenAtHome,"Population Aged 5 Years or More Speaking Polish Languages At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, Polish;a large number of poles have a limited command of the english language;a lot of people in poland don't speak english very well;a significant portion of the polish population speaks english poorly;many poles struggle to communicate in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,"Population: Speak English Less Than Very Well, Portuguese or Portuguese Creole;Portuguese Creole Population Moderate English Speakers;the number of people who speak portuguese creole and english moderately;the number of people who speak portuguese creole and english to a moderate level;the percentage of people who speak portuguese creole and english moderately;the proportion of people who speak portuguese creole and english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PortugueseSpokenAtHome,"Population: Speak English Less Than Very Well, Portuguese;Portuguese Population Moderately Fluent in English;a good number of portuguese people are fluent in english;a large number of portuguese people have a moderate level of english proficiency;a significant portion of portuguese people are moderately fluent in english;a significant portion of the portuguese population is proficient in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_PunjabiSpokenAtHome,"Population: Speak English Less Than Very Well, Punjabi;Punjabi Population Speak Moderate English;a moderate number of punjabis speak english;punjabi people speak english moderately;the english proficiency of punjabis is moderate;the majority of punjabis speak english moderately well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_RussianSpokenAtHome,"Population: Speak English Less Than Very Well, Russian;Russian Population Speaking Moderate English;the number of russians who can speak english reasonably well;the percentage of russians who can communicate in english at a basic level;the percentage of russians who speak english moderately;the proportion of russians who have a moderate command of english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Scandinavian Languages;Scandinavian Languages Speaking Moderate English;english as a second language in scandinavia;english speakers with a moderate proficiency in scandinavian languages;people who speak english and scandinavian languages at a moderate level;scandinavian speakers with a moderate proficiency in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,"Population: Speak English Less Than Very Well, Serbo Croatian;Serbo Croatian Population Speaking Moderate English;people who speak serbo-croatian and english at a moderate level;serbo-croatian speakers who speak english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,"Population: Speak English Less Than Very Well, Spanish or Spanish Creole;Spanish Creole Who Speak Moderate English;people who speak spanish creole and english at an intermediate level;spanish creole speakers who are intermediate english speakers;spanish creole speakers who speak english moderately;spanish creole speakers with a moderate command of english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SpanishSpokenAtHome,"Population: Speak English Less Than Very Well, Spanish;Spanish Population of Moderate English Speakers;the number of spanish speakers in the united states who speak english moderately;the percentage of spanish speakers in the united states who speak english moderately;the proportion of spanish speakers in the united states who speak english moderately;the share of spanish speakers in the united states who speak english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,"Population: Speak English Less Than Very Well, Swahili or Other Languages of Central Eastern And Southern Africa;Swahili or Other Languages of Central Eastern And Southern Africa Speakers Fluent in English;people who are bilingual in english and a language of central, eastern, and southern africa;people who are fluent in english and speak swahili or another language of central, eastern, and southern africa;people who speak swahili or other languages of central eastern and southern africa and are fluent in english;people who speak swahili or other languages of central, eastern, and southern africa and are fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,"Population Aged 5 Years or More Speaking Filipino Languages At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, Tagalog Incl Filipino;a lot of people in this area speak tagalog and filipino, but not very well;tagalog and filipino are common languages in this area, but many people don't speak them very well;tagalog and filipino are spoken by many people in this area, but not everyone is fluent;there are a lot of people in this area who speak tagalog and filipino, but they're not native speakers" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TagalogSpokenAtHome,"Population: Speak English Less Than Very Well, Tagalog;Tagalog Population Who Speak Moderate English;the number of tagalog speakers who speak english moderately;the percentage of tagalog speakers who speak english moderately;the proportion of tagalog speakers who speak english moderately;the tagalog-speaking population who speak english moderately" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TamilSpokenAtHome,"Population: Speak English Less Than Very Well, Tamil;Tamil Population Speaking Moderate English;number of tamils who speak english moderately;percentage of tamils who speak english moderately;proportion of tamils who speak english moderately;tamils who speak english moderately as a percentage of the total tamil population" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_TeluguSpokenAtHome,"Population: Speak English Less Than Very Well, Telugu;Telugu Population Who Speak Moderate English;the number of telugu speakers who have a moderate command of english;the number of telugu speakers who speak english at a moderate level;the percentage of telugu speakers who speak english moderately;the proportion of telugu speakers who speak english at an intermediate level" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Thai Lao or Other Tai Kadai Languages;Thai Lao or Other Tai Kadai Language Speakers Moderately Fluent in English;people who are bilingual in thai, lao, or other tai kadai languages and english;people who are moderately fluent in english and speak thai, lao, or other tai kadai languages;people who are proficient in thai, lao, or other tai kadai languages and english;people who speak thai, lao, or other tai kadai languages and are moderately fluent in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_ThaiSpokenAtHome,"Population: Speak English Less Than Very Well, Thai;Thai Population Moderately Fluent in English;a large portion of the thai population is proficient in english;a significant number of thais are fluent in english;a significant portion of the thai population is fluent in english;a significant portion of the thai population is proficient in english" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,"Population Speaking Ukrainian or Other Slavic Languages And English Unwell;Population: Speak English Less Than Very Well, Ukrainian or Other Slavic Languages;the number of people who speak ukrainian or other slavic languages and english is unwell;the percentage of people who speak ukrainian or other slavic languages and english is unwell;the proportion of people who speak ukrainian or other slavic languages and english is unwell;the share of people who speak ukrainian or other slavic languages and english is unwell" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_UrduSpokenAtHome,"Population Aged 5 Years or More Speaking Urdu Languages At Home And English Less Than Very Well;Population: Speak English Less Than Very Well, Urdu;population: speak english less than very well, urdu" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_VietnameseSpokenAtHome,"Population: Speak English Less Than Very Well, Vietnamese;Vietnamese population Fluent in English;the number of vietnamese people who are conversant in english;the number of vietnamese people who are proficient in english;the percentage of vietnamese people who are fluent in english;the proportion of vietnamese people who are english-speaking" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"Population: Speak English Less Than Very Well, Yiddish Pennsylvania Dutch or Other West Germanic Languages;Yiddish Pennsylvania Dutch or Other West Germanic Languages Does Not Speak English Very Well;a person who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty speaking english;someone who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty communicating in english;someone who speaks yiddish, pennsylvania dutch, or another west germanic language may have difficulty understanding english;someone who speaks yiddish, pennsylvania dutch, or another west germanic language may not speak english very well" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YiddishSpokenAtHome,"1 number of people speaking english and yiddish;2 number of speakers of english and yiddish;3 population speaking both english and yiddish;4 number of people who speak english and yiddish;Population Speaking English And Yiddish;Population: Speak English Less Than Very Well, Yiddish" -Count_Person_SpeakEnglishLessThanVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"Population: Speak English Less Than Very Well, Yoruba Twi Igbo or Other Languages of Western Africa;Yoruba Twi Igbo or Other Languages of Western Africa Who Speak English Less Than Very Well;people from west africa who speak languages other than english as their first language;people from western africa who speak languages other than english;people who speak yoruba, twi, igbo, or other languages from western africa and don't speak english very well;people who speak yoruba, twi, igbo, or other languages of western africa and who speak english less than very well" -Count_Person_SpeakEnglishNotAtAll,1 population that does not speak english;4 population that is not native english speakers;Non-English Speaking Population;Population: Speak English Not At All;people who don't speak english;the non-english-speaking community -Count_Person_SpeakEnglishNotWell,Population Not Fluent in English;Population: Speak English Not Well;people who are not fluent in english;people who do not speak english fluently;people who don't speak english very well;people who don't speak english well -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AfricanLanguagesSpokenAtHome,"African Languages Speaking Fluent English;Population: Speak English Very Well, African Languages;english speakers who are fluent in african languages;people who can speak english and african languages fluently;people who speak english fluently and also speak one or more african languages;those who are fluent in english and african languages" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,"Amharic Somali or Other Afro Asiatic Languages Who Speaks English Very Well;Population: Speak English Very Well, Amharic Somali or Other Afro Asiatic Languages;a person who is a polyglot and speaks amharic, somali, or another afro-asiatic language as well as english;a person who speaks english very well and is fluent in amharic, somali, or another afro-asiatic language;an individual who is proficient in both amharic, somali, or another afro-asiatic language and english;someone who is a native speaker of amharic, somali, or another afro-asiatic language and is also fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArabicSpokenAtHome,"Arabic Population Fluent in English;Population: Speak English Very Well, Arabic;the number of arabic speakers who are able to speak english well;the number of arabic speakers who are proficient in english;the number of arabic speakers who can speak english fluently;the percentage of arabic speakers who are able to communicate in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ArmenianSpokenAtHome,"Armenian Population Speak Fluent English;Population: Speak English Very Well, Armenian;a large number of armenians are fluent in english;english is a common language spoken by armenians;english is widely spoken in armenia;many armenians speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_BengaliSpokenAtHome,"Population Speaking Bengali And English Fluently;Population: Speak English Very Well, Bengali;number of people who are bilingual in bengali and english;number of people who are fluent in bengali and english;number of people who speak bengali and english fluently;number of people who speak both bengali and english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"Chinese Incl Mandarin Cantonese Population Who Speaks English Very Well;Population: Speak English Very Well, Chinese Incl Mandarin Cantonese;people who speak english very well, including those who speak mandarin or cantonese" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ChineseSpokenAtHome,"Chinese People Speak Fluent English;Population: Speak English Very Well, Chinese;chinese people are fluent in english;chinese people are good at english;chinese people have a good command of english;chinese people speak english well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchCreoleSpokenAtHome,"French Creole Who are Fluent in English;Population: Speak English Very Well, French Creole;english-fluent french creole speakers;french creole speakers who are bilingual in english and french creole;french creole speakers who are proficient in english;french creole speakers who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclCajunSpokenAtHome,"French Incl Cajun Population Fluent in English;Population: Speak English Very Well, French Incl Cajun;cajuns in the united states who are also fluent in english;people who speak french, including cajuns, and who are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,"French Population Who Speak English Very Well;Population: Speak English Very Well, French Incl Patois Cajun;the number of french people who are fluent in english;the number of french people who can speak english well;the percentage of french people who speak english very well;the proportion of french people who have a good command of english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GermanSpokenAtHome,"German Population Fluent in English;Population: Speak English Very Well, German;the number of germans who are proficient in english;the number of germans who can speak english fluently;the percentage of germans who are fluent in english;the proportion of germans who are english-speaking" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GreekSpokenAtHome,"Greek Population Fluent in English;Population: Speak English Very Well, Greek;the number of greeks who are able to communicate in english;the number of greeks who are proficient in english;the number of greeks who can speak english fluently;the percentage of greeks who are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_GujaratiSpokenAtHome,"Gujarati Population Fluent in English;Population: Speak English Very Well, Gujarati;the number of gujaratis who are conversant in english;the number of gujaratis who are proficient in english;the number of gujaratis who can speak english fluently;the percentage of gujaratis who are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HaitianSpokenAtHome,"Population Aged 5 Years or More Speaking Haitian At Home And English Less Than Very Well;Population: Speak English Very Well, Haitian;haitians speak english very well;haitians who speak english very well;many people in this area speak english very well, as well as haitian creole;this is a very diverse area, with people from all over the world as a result, you'll find that many people here speak english and haitian creole" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HebrewSpokenAtHome,"Population Speaking Hebrew And English Fluently;Population: Speak English Very Well, Hebrew" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HindiSpokenAtHome,"Hindus Fluent in English;Population: Speak English Very Well, Hindi;english-speaking hindus;hindus who are fluent in english;hindus who are proficient in english;hindus who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HmongSpokenAtHome,"Hmong Population Speaking Fluent English;Population: Speak English Very Well, Hmong;the hmong population's english proficiency rate;the number of hmong people who speak english as their first language;the percentage of hmong people who speak fluent english;the proportion of hmong people who are english-fluent" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_HungarianSpokenAtHome,"Hungarian Population Fluent in English;Population: Speak English Very Well, Hungarian;the number of hungarians who are proficient in english;the number of hungarians who can speak english fluently;the percentage of hungarians who are fluent in english;the proportion of hungarians who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,"Ilocano Samoan Hawaiian or Other Austronesian Languages Who Speak Fluent English;Population: Speak English Very Well, Ilocano Samoan Hawaiian or Other Austronesian Languages;english speakers who are fluent in ilocano, samoan, hawaiian, or other austronesian languages;people who speak fluent english and are native to ilocano, samoan, hawaiian, or other austronesian languages;people who speak ilocano, samoan, hawaiian, or other austronesian languages and are fluent in english;speakers of ilocano, samoan, hawaiian, or other austronesian languages who are also fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ItalianSpokenAtHome,"Italians Speak Fluent English;Population: Speak English Very Well, Italian;italians are fluent in english;italians are proficient in english;italians have a good command of english;italians speak english well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_JapaneseSpokenAtHome,"1 the percentage of japanese people who are fluent in english;2 the number of japanese people who can speak english fluently;3 the proportion of japanese people who are english-fluent;4 the number of japanese people who are proficient in english;Japanese Population Fluent in English;Population: Speak English Very Well, Japanese" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KhmerSpokenAtHome,"Khmer Population Speaking Fluent English;Population: Speak English Very Well, Khmer;the number of khmer people who are fluent in english;the percentage of khmer people who are able to communicate effectively in english;the percentage of khmer people who speak english fluently;the proportion of khmer people who can speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_KoreanSpokenAtHome,"Koreans Who Speak Fluent English;Population: Speak English Very Well, Korean;english-speaking koreans;koreans who are fluent in english;koreans who are proficient in english;koreans who can speak english well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,Population Fluent in English;Population: Speak English Very Well;english-fluent population -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_LaotianSpokenAtHome,"Laotian Population Who speak English well;Population: Speak English Very Well, Laotian;laotian english speakers;laotians who are fluent in english;laotians who speak english well;laotians with a good command of english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"Other Dravidian Languages Speakers Fluent In English;Population: Speak English Very Well, Malayalam Kannada or Other Dravidian Languages;individuals who are fluent in english and speak other dravidian languages;people who speak other dravidian languages and are also fluent in english;speakers of other dravidian languages who are fluent in english;those who are able to communicate in english and other dravidian languages" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_MonKhmerCambodianSpokenAtHome,"Moderate English Speaking Mon Khmer Cambodian Speakers;Population: Speak English Very Well, Mon Khmer Cambodian;cambodians who are able to communicate effectively in english;cambodians who are fluent in english;khmer speakers from cambodia who have a good command of english;people from cambodia who speak english at an intermediate level" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NavajoSpokenAtHome,"Navajo Population Who Speak Fluent English;Population: Speak English Very Well, Navajo;the number of navajo people who are bilingual in english and navajo;the number of navajo people who are monolingual english speakers;the number of navajo people who speak english as their first language;the percentage of navajo people who speak fluent english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"Nepali Marathi or Other Indic Languages Population Speak Moderate English;Population: Speak English Very Well, Nepali Marathi or Other Indic Languages;what percentage of the population in nepali, marathi, or other indic languages speaks english at a moderate level?;what percentage of the population speaks moderate english in nepali, marathi, or other indic languages?;what proportion of people in nepali, marathi, or other indic languages speak english at a level that is considered to be moderate?;what proportion of people in nepali, marathi, or other indic languages speak moderate english?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAndUnspecifiedLanguagesSpokenAtHome,"Population Speaking Other And Unspecified Languages And English Very Well;Population: Speak English Very Well, Other And Unspecified Languages" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherAsianLanguagesSpokenAtHome,"Asian Population Who Speak Fluent English;Population: Speak English Very Well, Other Asian Languages;asians who are fluent in english;english-speaking asians;the asian population that speaks english fluently;the percentage of asians who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherIndicLanguagesSpokenAtHome,"Other Indic Language Speakers Fluent in English;Population: Speak English Very Well, Other Indic Languages;english-fluent speakers of indic languages;indic language speakers who are english-fluent;indic language speakers who are proficient in english;people who speak indic languages and are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherLanguagesOfAsiaSpokenAtHome,"Other Languages of Asia Population Speak Fluent English;Population: Speak English Very Well, Other Languages of Asia;how many people in asia speak english fluently?;what is the percentage of english speakers in asia?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeLanguagesOfNorthAmericaSpokenAtHome,"Population Aged 5 Years or More Speaking Other Native Languages Of North America At Home And English Less Than Very Well;Population: Speak English Very Well, Other Native Languages of North America;people who speak english and other native languages of north america fluently;population who speak english very well and other native languages of north america" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherNativeNorthAmericanLanguagesSpokenAtHome,"Other Native North American Languages Who Speaks English Very Well;Population: Speak English Very Well, Other Native North American Languages;native north americans who are fluent in english;native north americans who speak english well;native speakers of english from north america;other native american speakers of english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherPacificIslandLanguagesSpokenAtHome,"Population Speaking Other Pacific Island Languages And English Very Well;Population: Speak English Very Well, Other Pacific Island Languages;the number of people who speak other pacific island languages and english very well;the percentage of people who speak other pacific island languages and english very well;the proportion of people who speak other pacific island languages and english very well;the share of people who speak other pacific island languages and english very well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherSlavicLanguagesSpokenAtHome,"Population Speaking Other Slavic Languages And English Very Well;Population: Speak English Very Well, Other Slavic Languages;number of people who speak other slavic languages and english very well;the number of people who speak other slavic languages and english very well;the percentage of people who speak other slavic languages and english very well;the proportion of people who speak other slavic languages and english very well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_OtherWestGermanicLanguagesSpokenAtHome,"Other West Germanic Language Speakers Fluent in English;Population: Speak English Very Well, Other West Germanic Languages;english speakers who are also fluent in other west germanic languages;people who are fluent in english and also speak other west germanic languages;people who speak other west germanic languages and are also fluent in english;speakers of other west germanic languages who are also fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,"Persian Population Speaking Fluent English;Population: Speak English Very Well, Persian Incl Farsi Dari;the number of persian speakers who can speak english fluently;the number of persian speakers who can speak english well;the percentage of persian speakers who have a good command of english;the percentage of persian speakers who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PersianSpokenAtHome,"Persian Population Who are Fluent in English;Population: Speak English Very Well, Persian;the number of persian people who speak english fluently;the number of persian speakers who are also english speakers;the percentage of persian people who are fluent in english;the proportion of persian people who are english-fluent" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PolishSpokenAtHome,"Polish Population Fluent In English;Population: Speak English Very Well, Polish;how many polish people speak english fluently?;how well do polish people speak english?;what is the english language ability of poles?;what is the level of english proficiency in poland?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,"Population Aged 5 Years or More Speaking Portuguese Or Portuguese Creole At Home And English Less Than Very Well;Population: Speak English Very Well, Portuguese or Portuguese Creole;a lot of people in this area speak english very well, portuguese, or portuguese creole;english, portuguese, and portuguese creole are all widely spoken in this area;if you speak english, portuguese, or portuguese creole, you'll be able to communicate with most people in this area;you'll be able to find people who speak english, portuguese, or portuguese creole in this area" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PortugueseSpokenAtHome,"Population: Speak English Very Well, Portuguese;Portuguese Population Speaking Fluent English;how many portuguese people speak english fluently?;number of portuguese speakers who can speak english fluently;the number of portuguese people who are able to speak english fluently;the number of portuguese people who have a good command of english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_PunjabiSpokenAtHome,"Population: Speak English Very Well, Punjabi;Punjabis Speaking Fluent English;english-speaking punjabis;punjabis who are fluent in english;punjabis who speak english fluently;punjabis who speak english well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_RussianSpokenAtHome,"Population: Speak English Very Well, Russian;Russian Population Fluent In English;how many russians are fluent in english?;how well do russians speak english?;what is the level of english proficiency in russia?;what percentage of russians speak english?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,"Population: Speak English Very Well, Scandinavian Languages;Scandinavian Who Speak English Very Well;english speakers from scandinavia;people from scandinavia who speak english very well;scandinavians who are fluent in english;scandinavians who speak english like native speakers" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SerboCroatianSpokenAtHome,"Population: Speak English Very Well, Serbo Croatian;Serbo Croatians Fluent in English;people who are bilingual in serbo-croatian and english;people who speak serbo-croatian and english fluently;serbo-croatian speakers who are fluent in english;serbo-croatian speakers who have a good command of english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SpanishOrSpanishCreoleSpokenAtHome,"Population: Speak English Very Well, Spanish or Spanish Creole;Spanish Population Fluent in English;english fluency rate in spain;english proficiency of the spanish population;proportion of spanish people who are bilingual in english;share of spanish people who are proficient in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_SwahiliOrOtherLanguagesOfCentralEasternAndSouthernAfricaSpokenAtHome,"Population: Speak English Very Well, Swahili or Other Languages of Central Eastern And Southern Africa;Swahili Population that Speak Fluent English;the number of swahili speakers who can speak english fluently;the number of swahili speakers who speak english as a second language;the percentage of swahili speakers who are fluent in english;the proportion of swahili speakers who are english-fluent" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,"Fluent English Speaking Tagalog Speakers;Population: Speak English Very Well, Tagalog Incl Filipino;english-speaking filipinos;filipinos who are fluent in english;people who can speak tagalog and english fluently;tagalog speakers who are fluent in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TagalogSpokenAtHome,"Population: Speak English Very Well, Tagalog;Tagalog Population Speak Fluent English;what is the number of tagalog speakers who can speak english fluently?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TamilSpokenAtHome,"Population: Speak English Very Well, Tamil;Tamils Who Speak English Very Well;tamil speakers who are fluent in english;tamils who are highly proficient in english;tamils who are very good at english;tamils who speak english very well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_TeluguSpokenAtHome,"Population: Speak English Very Well, Telugu;Telugu Population Who Speak Fluent English;the number of telugu people who speak english fluently;the percentage of telugu people who speak english fluently;the proportion of telugu people who speak english fluently;the share of telugu people who speak english fluently" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"Population: Speak English Very Well, Thai Lao or Other Tai Kadai Languages;Thai Lao Who Speak English Very Well or Other Tai Kadai Languages Speak English Very Well Thai Lao or Other Tai Kadai Languages;english is a common language among thai, lao, and other tai kadai speakers;people who speak thai, lao, or other tai kadai languages also speak english very well;thai and lao people who speak english very well also speak other tai kadai languages;thai, lao, and other tai kadai speakers are able to communicate effectively in english" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_ThaiSpokenAtHome,"Population: Speak English Very Well, Thai;Thai Population Speaking English Very Well;english is a second language for many thais;english is widely spoken in thailand;thai people are good at english;thais speak english very well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,"Population: Speak English Very Well, Ukrainian or Other Slavic Languages;Ukrainian or Other Slavic Population Speaking English Very Well;people from ukraine or other slavic countries who are fluent in english;ukrainians and other slavic people who speak english very well;ukrainians or other slavic people who have a good command of english;ukrainians or other slavic people who speak english very well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_UrduSpokenAtHome,"Population: Speak English Very Well, Urdu;Urdu Population Who Speak English Very Well;english proficiency of urdu speakers;how well do urdu speakers speak english?;the level of english proficiency among urdu speakers;the percentage of urdu speakers who speak english well" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_VietnameseSpokenAtHome,"Population in Vietnamese That Speaks Fluent English;Population: Speak English Very Well, Vietnamese;how many vietnamese people speak fluent english?;what is the number of vietnamese people who speak fluent english?;what is the percentage of vietnamese people who are fluent in english?;what percentage of vietnamese people speak fluent english?" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishPennsylvaniaDutchOrOtherWestGermanicLanguagesSpokenAtHome,"Fluent English Speakers of Yiddish Pennsylvania Dutch or Other West Germanic Languages Population;Population: Speak English Very Well, Yiddish Pennsylvania Dutch or Other West Germanic Languages;number of people who speak english fluently as well as yiddish, pennsylvania dutch, or another west germanic language;number of people who speak english, yiddish, pennsylvania dutch, or other west germanic languages as their first language;number of people who speak fluent english, yiddish, pennsylvania dutch, or other west germanic languages;population of fluent english, yiddish, pennsylvania dutch, or other west germanic language speakers" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YiddishSpokenAtHome,"Population Who Speak Yiddish And English Very Well;Population: Speak English Very Well, Yiddish;number of people who speak yiddish and english fluently;people who are bilingual in yiddish and english;yiddish-english bilinguals;yiddish-english speakers" -Count_Person_SpeakEnglishVeryWell_5OrMoreYears_YorubaTwiIgboOrOtherLanguagesOfWesternAfricaSpokenAtHome,"Population: Speak English Very Well, Yoruba Twi Igbo or Other Languages of Western Africa;Twi Igbo or Other Languages of Western Africa Population Fluent in English;what percentage of people in western africa who speak twi, igbo, or other languages are fluent in english;what percentage of people in western africa who speak twi, igbo, or other languages speak english fluently;what proportion of the population in western africa who speak twi, igbo, or other languages are fluent in english;what proportion of the population in western africa who speak twi, igbo, or other languages speak english fluently" -Count_Person_SpeakEnglishWell,Population Fluent English;Population: Speak English Well;number of people who can speak english well;number of people who speak english fluently;the number of people who have a good command of english;the number of people who speak english fluently -Count_Person_TwoOrMoreRaces,Number of Multiracial People;Number of people who are Two or More Races;Number of people who identify as multiracial;Population: Two or More Races;multiracial population;number of people identifying as multiracial;number of people who identify as multiethnic;number of people who identify as multiracial -Count_Person_TwoOrMoreRaces_ResidesInAdultCorrectionalFacilities,"Number of Multiracial People Residing in Adult Correctional Facilities;Number of people who are Two or More Races, in Adult Correctional Facilities;Population: Two or More Races, Adult Correctional Facilities;how many multiracial people are in adult correctional facilities?;how many multiracial people are incarcerated in the united states?;what is the number of multiracial people in adult correctional facilities?;what is the percentage of multiracial people in adult correctional facilities?" -Count_Person_TwoOrMoreRaces_ResidesInCollegeOrUniversityStudentHousing,"Number of Multiracial People Residing in College or University Student Housing;Number of people who are Two or More Races, in College or University Student Housing;Population: Two or More Races, College or University Student Housing;multiracial college students in residence halls;multiracial students in college housing;number of multiracial college students living in dorms;number of multiracial college students living on campus" -Count_Person_TwoOrMoreRaces_ResidesInGroupQuarters,"Number of Multiracial People Residing in Group Quarters;Number of people who are Two or More Races, in Group Quarters;Population: Two or More Races, Group Quarters;The number of people in group quarters who are multiracial;number of multiracial people living in group quarters;number of people who identify as multiracial living in group quarters;the number of multiracial people living in group quarters;the number of people who identify as multiracial and are living in group quarters" -Count_Person_TwoOrMoreRaces_ResidesInInstitutionalizedGroupQuarters,"Number of Multiracial People Residing in Institutionalized Group Quarters;Number of people who are Two or More Races, in Institutionalized Group Quarters;Population: Two or More Races, Institutionalized Group Quarters;The number of people institutionalized in group quarters who identify as biracial;The number of people institutionalized in group quarters who identify as multiracial;how many multiracial people live in group homes, prisons, and other institutions?;people who identify as multiracial and live in group quarters;what is the number of multiracial people living in group quarters, prisons, and other institutions as a percentage of the total multiracial population?;what is the number of multiracial people living in institutionalized group quarters?" -Count_Person_TwoOrMoreRaces_ResidesInJuvenileFacilities,"Number of Multiracial People Residing in Juvenile Facilities;Number of people who are Two or More Races, in Juvenile Facilities;Population: Two or More Races, Juvenile Facilities;how many multiracial people are in juvenile facilities?;multiracial people in juvenile facilities;number of multiracial people in juvenile facilities;number of multiracial youth in juvenile facilities" -Count_Person_TwoOrMoreRaces_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Multiracial People Residing in Military Quarters or on Military Ships;Number of people who are Two or More Races, in Military Quarters or Military Ships;Number of people who are biracial or multiethnic in military quarters or military ships;Number of people who are multiracial in military quarters or military ships;Population: Two or More Races, Military Quarters or Military Ships;how many multiracial people live in military quarters or on military ships?;the number of multiracial people living in military quarters or on military vessels;what is the number of multiracial people living in military quarters or on military ships?;what is the population of multiracial people living in military quarters or on military ships?" -Count_Person_TwoOrMoreRaces_ResidesInNoninstitutionalizedGroupQuarters,"Number of Multiracial People Residing in Non-Institutionalized Group Quarters;Number of people who are Two or More Races, in Noninstitutionalized Group Quarters;Number of people who are multi-racial in non-institutional group quarters;Number of people who are multiracial in non-institutional group quarters;Population: Two or More Races, Noninstitutionalized Group Quarters;number of multiracial people living in non-institutional group quarters;number of people who identify as multiracial living in non-institutional group quarters;what is the number of multiracial people living in non-institutional group quarters?;what is the population of multiracial people living in non-institutional group quarters?" -Count_Person_TwoOrMoreRaces_ResidesInNursingFacilities,"Number of Multiracial People Residing in Nursing Facilities;Number of people who are Two or More Races, in Nursing Facilities;Population: Two or More Races, Nursing Facilities;The number of people in nursing facilities who are multiracial;multiracial people in long-term care facilities;multiracial people in nursing homes;number of multiracial people living in nursing homes;number of multiracial residents in nursing homes" -Count_Person_USCitizenBornAbroadOfAmericanParents,Number of American citizens born to American parents outside the United States;Number of US Citizens Born Abroad to American Parents;Number of US citizens born abroad to American parents;Number of US citizens born to American parents outside the US;Number of US citizens born to American parents outside the United States;The number of US citizens born to American parents outside of the United States;number of american citizens born outside the united states to american parents;number of us citizens born abroad to us citizens;number of us citizens born overseas to american parents;number of us citizens born to american parents outside the us -Count_Person_USCitizenBornInPuertoRicoOrUSIslandAreas,Population: US Citizen Born in Puerto Rico or USIsland Areas;US Citizens Born Population in Puerto Rico;the number of people born in puerto rico who are us citizens;the number of people in puerto rico who are us citizens by birth;the number of us citizens born in puerto rico;the population of puerto rico that is us citizens by birth -Count_Person_USCitizenBornInTheUnitedStates,1 Number of people born in the US who are US citizens;1 Number of people born in the United States who are US citizens;Number of US Citizens Born in the United States;Number of US citizens born in the US;Number of US citizens born in the United States;Number of people born in the US who are US citizens;Number of people born in the United States who are US citizens;number of native-born us citizens;number of people born in the united states who are us citizens;number of us citizens by birth;number of us citizens who were born in the united states -Count_Person_USCitizenByNaturalization,How many people have become US citizens through naturalization?;Number of US Citizens by Naturalization;Number of US citizens by naturalization;Number of US citizens who became citizens through naturalization;Number of naturalized US citizens;Number of people who have become US citizens by naturalization;Number of people who have become US citizens through the process of naturalization;how many people have become us citizens through naturalization?;number of people who have become us citizens by going through the naturalization process;number of people who have become us citizens through naturalization;number of people who have been granted us citizenship through naturalization -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAfrica,"Population: US Citizen by Naturalization, Foreign Born, Africa;US Citizens By Naturalization Foreign Born In Africa;africans who have been granted us citizenship;africans who have been naturalized as us citizens;foreign-born africans who have become us citizens through naturalization;us citizens who were born in africa and naturalized in the us" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthAsia,"Foreign-Born Population in Asia Who Are US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, Asia;the number of asian-born people who are now us citizens;the number of naturalized us citizens from asia;the number of people born in asia who are now us citizens by naturalization;the number of people who were born in asia and have become us citizens through the process of naturalization" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Population in the Caribbean US Citizen by Naturalization;Population: US Citizen by Naturalization, Foreign Born, Caribbean;the number of caribbean immigrants who have become us citizens;the number of people born in the caribbean who have become us citizens through naturalization;the number of people who have been naturalized as us citizens from the caribbean;the number of people who were born in the caribbean and now hold us citizenship" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Foreign-Born Population Who Are US Citizens by Naturalization in Central America, Except Mexico;Population: US Citizen by Naturalization, Foreign Born, Central America Except Mexico;number of central american immigrants who became us citizens;number of central american immigrants who naturalized in the us;number of us citizens in central america, except mexico, who naturalized;the number of people who were born in central america and have become us citizens through naturalization" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEasternAsia,"Foreign-Born Population Who Are US Citizens by Naturalization in Eastern Asia;Population: US Citizen by Naturalization, Foreign Born, Eastern Asia;the number of eastern asian immigrants who have become us citizens;the number of eastern asians who have been granted us citizenship;the number of naturalized us citizens from eastern asia;the number of people from eastern asia who have become us citizens through naturalization" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthEurope,"Foreign-Born US Citizens by Naturalization in Europe;Population: US Citizen by Naturalization, Foreign Born, Europe;number of naturalized us citizens in europe;number of people who have become us citizens through naturalization in europe;the number of naturalized us citizens in europe;the number of people who were born in another country but have become us citizens and live in europe" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthLatinAmerica,"Foreign Born US Citizen by Naturalization in Latin America;Foreign-Born US Citizen by Naturalization in Latin America;Population: US Citizen by Naturalization, Foreign Born, Latin America;naturalized us citizen from latin america;us citizen by naturalization from latin america;us citizen who became a citizen through naturalization in latin america;us citizen who naturalized in latin america" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthMexico,"Population: US Citizen by Naturalization, Foreign Born, Country/MEX;US Citizens By Naturalization Foreign-Born In Mexico;foreign-born mexicans who have naturalized as us citizens;mexican immigrants who have become us citizens;mexican nationals who have become us citizens;people from mexico who have become us citizens" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born Population in North America Who are US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, Northamerica;the number of people born in north america who have become us citizens through naturalization;the number of people who have been granted us citizenship through naturalization after having been born in north america;the number of people who were born in north america and have become us citizens through the process of naturalization;the number of people who were born in north america and have chosen to become us citizens" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign Borns in Northern Western European Who are US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, Northern Western Europe;naturalized us citizens from northern western europe;people born in northern western europe who have become us citizens through the process of naturalization;people from northern western europe who are us citizens by naturalization;people who were born in northern western europe and are now us citizens" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthOceania,"Foreign-Born Population in Oceania US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, Oceania;the number of naturalized us citizens in oceania;the number of people who have become us citizens through the process of naturalization after having been born in oceania;the number of people who have been granted us citizenship after having been born in oceania;the number of people who have been naturalized as us citizens from oceania" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Foreign-Born Population in South Central Asia Who are US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, South Central Asia;people born in south central asia who are us citizens by naturalization;south central asian immigrants who are us citizens by naturalization;us citizens by naturalization who were born in south central asia;us citizens who were born in south central asia and naturalized" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Foreign Borns in South Eastern Asia US Citizens by Naturalization;Population: US Citizen by Naturalization, Foreign Born, South Eastern Asia;southeast asian immigrants who are now us citizens;southeast asian immigrants who became us citizens;southeast asian naturalized us citizens;us citizens from southeast asia who naturalized" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthamerica,"Foreign Born US Citizens By Naturalization Born in South America;Population: US Citizen by Naturalization, Foreign Born, Southamerica;number of south american immigrants who have become us citizens;number of south american naturalized us citizens;number of south americans who have naturalized as us citizens;number of us citizens by naturalization from south america" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Population: US Citizen by Naturalization, Foreign Born, Southern Eastern Europe;Southern Eastern Europe Foreign-Born US Citizens by Naturalization;number of naturalized us citizens from southern eastern europe;number of people who have been granted us citizenship through naturalization after having been born in southern eastern europe;number of people who were born in southern eastern europe and have become us citizens through naturalization;number of southern eastern europeans who have become us citizens" -Count_Person_USCitizenByNaturalization_ForeignBorn_PlaceOfBirthWesternAsia,"Population: US Citizen by Naturalization, Foreign Born, Western Asia;Western Asia Foreign-Born US Citizens by Naturalization;the number of people from western asia who have been granted us citizenship;the number of western asian immigrants who have been granted us citizenship;the number of western asian people who have been granted us citizenship;the number of western asians who have been naturalized as us citizens" -Count_Person_Unemployed,Population: Unemployed;Unemployed Population;the unemployed population;the unemployed workforce;unemployed people -Count_Person_Upto4Years_Female_Overweight_AsFractionOf_Count_Person_Upto4Years_Female,"Fraction of Overweight Female Population With Up to 4 Years;Population: 4 Years or Less, Female, Overweight (As Fraction of Count Person Upto 4 Years Female);number of female children under 4 years old who are overweight divided by the total number of female children under 4 years old;number of overweight female children under 4 years old divided by the total number of female children under 4 years old" -Count_Person_Upto4Years_Female_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Female,"Fraction of Female Population With Severe Wasting With Up to 4 Years;Population: 4 Years or Less, Female, Severe Wasting (As Fraction of Count Person Upto 4 Years Female);female children under 4 years old with severe wasting as a fraction of the total number of female children under 4;female children under 4 years old with severe wasting as a percentage of the total number of female children under 4;fraction of female children under 4 years old with severe wasting;proportion of female children under 4 years old with severe wasting" -Count_Person_Upto4Years_Female_Wasting_AsFractionOf_Count_Person_Upto4Years_Female,"Fraction of Female Population Wasting With Up to 4 Years;Population: 4 Years or Less, Female, Wasting (As Fraction of Count Person Upto 4 Years Female);female children under 4 years old who are wasting as a fraction of the total number of female children under 4;number of female children under 4 years old who are wasting per 100 female children under 4 years old;the fraction of female children under 4 years old who are wasted;the number of girls under 4 who are wasting, divided by the total number of female children under 4" -Count_Person_Upto4Years_Male_Overweight_AsFractionOf_Count_Person_Upto4Years_Male,"Fraction of Overweight Male Population With Severe Wasting With Up to 4 Years;Population: 4 Years or Less, Male, Overweight (As Fraction of Count Person Upto 4 Years Male);male children under 4 years old who are overweight as a percentage of all male children under 4 years old;number of male children under 4 years old who are overweight divided by the total number of male children under 4 years old;percentage of males under 4 years old who are overweight;proportion of male children under 4 years old who are overweight" -Count_Person_Upto4Years_Male_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Male,"Fraction of Male Population With Severe Wasting With Up to 4 Years;Population: 4 Years or Less, Male, Severe Wasting (As Fraction of Count Person Upto 4 Years Male);the fraction of males under 4 years old with severe wasting;the number of males under 4 years old with severe wasting divided by the total number of males under 4 years old;the percentage of males under 4 years old with severe wasting;the proportion of males under 4 years old with severe wasting" -Count_Person_Upto4Years_Male_Wasting_AsFractionOf_Count_Person_Upto4Years_Male,"Fraction of Male Population Wasting With Up to 4 Years;Population: 4 Years or Less, Male, Wasting (As Fraction of Count Person Upto 4 Years Male);number of male children under 4 years old who are wasting per 100 male children under 4 years old;the number of males under 4 years old who are wasting divided by the total number of males under 4 years old" -Count_Person_Upto4Years_Overweight_AsFractionOf_Count_Person_Upto4Years,"Fraction of Overweight Population With Up to 4 Years;Population: 4 Years or Less, Overweight (As Fraction of Count Person Upto 4 Years);fraction of children under 4 years old who are overweight;number of children under 4 years old who are overweight divided by the total number of children under 4 years old;percentage of children under 4 years old who are overweight;proportion of children under 4 years old who are overweight" -Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,Number of children (up to 4 years old) with severe wasting as a fraction of the total number of children (up to 4 years old);Percent of Children Younger Than 4 With Severe Cachexia (Wasting Syndrome);Percent of children younger than 4 with severe Cachexia (wasting syndrome);What percentage of children under 4 have severe Cachexia (wasting syndrome)?;the prevalence of severe wasting syndrome in children under 4;what is the prevalence of severe cachexia (wasting syndrome) in children under the age of 4?;what is the rate of severe cachexia (wasting syndrome) in children under the age of 4?;what percentage of children under the age of 4 have severe cachexia (wasting syndrome)? -Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,Number of children (up to 4 years old) with wasting as a fraction of the total number of children (up to 4 years old);Percent of Children Younger Than 4 With Cachexia (Wasting Syndrome);Percent of children younger than 4 with Cachexia (wasting syndrome);The percentage of children under 4 with cachexia;What percentage of children under 4 have cachexia?;What percentage of children under the age of 4 have cachexia?;how many children under 4 have cachexia?;what is the percentage of children under 4 with cachexia?;what percentage of children under 4 have cachexia?;what's the percentage of children under 4 with cachexia? -Count_Person_Urban,Number of people living in cities;Number of people living in urban areas;Percentage of people living in urban areas;Population Living in Urban Areas;Population living in urban areas;Urban population;Urbanization rate;the number of people living in urban areas;the percentage of people living in urban areas;the proportion of people living in urban areas;the urbanization rate -Count_Person_Urban_BelowPovertyLevelInThePast12Months,"Population: Urban, Below Poverty Level in The Past 12 Months" -Count_Person_Urban_Female,"Female Population in Urban Areas;Population: Female, Urban;female, city-dwelling;female, living in a city;female, urban-dwelling;women living in cities" -Count_Person_Urban_Male,"Male Population in Urban Areas;Population: Male, Urban;male urban population;population of males in urban areas;population of urban males;urban male population" -Count_Person_Veteran,"Civilian Veterans;Population: Civilian, Veteran;ex-servicemen and women;people who have served in the military;veterans;veterans who are not currently serving in the military" -Count_Person_VisionDifficulty,1 How many people have vision problems?;How many people have vision problems?;Number of People With Vision Difficulty;Number of people who are with Vision Difficulty;Population: Vision Difficulty;how many people have difficulty seeing?;how many people have vision problems?;what is the number of people with vision impairment?;what is the prevalence of vision impairment? -Count_Person_WhiteAlone,Number of People Who Identify as White Alone;Number of people who are White Alone;Population: White Alone;The number of White Alone people;The number of people who identify as White Alone;The number of people who identify as White alone;White Alone population;number of people who identify as white;number of people who identify as white alone;number of people who identify as white only;the number of people who identify as white alone -Count_Person_WhiteAloneNotHispanicOrLatino,How many people are White Alone Not Hispanic or Latino;Number of Non Hispanic People Who Identify as White Alone;Number of people who are White Alone Not Hispanic or Latino;Population: White Alone Not Hispanic or Latino;The number of people who identify as White Alone and not Hispanic or Latino;White Alone Not Hispanic or Latino Population;White Alone Not Hispanic or Latino population;number of people who identify as white alone and are not hispanic;number of white people who do not identify as hispanic -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInAdultCorrectionalFacilities,"How many White Alone Not Hispanic or Latino people are in adult correctional facilities?;Number of Non Hispanic People Who Identify as White Alone Residing in Adult Correctional Facilities;Number of White Alone Not Hispanic or Latino people in adult correctional facilities;Number of people who are White Alone Not Hispanic or Latino, in Adult Correctional Facilities;Population: White Alone Not Hispanic or Latino, Adult Correctional Facilities;The number of White Alone Not Hispanic or Latino people in adult correctional facilities;number of non-hispanic white adults in correctional facilities;number of non-hispanic white people in adult correctional facilities;number of non-hispanic white people who identify as white alone in adult correctional facilities;number of white people who are not hispanic and identify as white alone in adult correctional facilities" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,"Number of Non Hispanic People Who Identify as White Alone Residing in College or University Student Housing;Number of White Alone Not Hispanic or Latino college or university students living in student housing;Number of White Alone Not Hispanic or Latino people in college or university student housing;Number of White Alone Not Hispanic or Latino students living in college or university dorms;Number of White Alone Not Hispanic or Latino students living in college or university housing;Number of White Alone Not Hispanic or Latino students living in college or university residence halls;Number of people who are White Alone Not Hispanic or Latino, in College or University Student Housing;Population: White Alone Not Hispanic or Latino, College or University Student Housing;number of non-hispanic white students living in college or university dormitories;number of non-hispanic white students who identify as white alone living in college or university student housing;number of students who identify as white alone and are not hispanic living in college or university student housing" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInGroupQuarters,"Number of Non Hispanic People Who Identify as White Alone Residing in Group Quarters;Number of White Alone Not Hispanic or Latino people in group quarters;Number of people who are White Alone Not Hispanic or Latino living in group quarters;Number of people who are White Alone Not Hispanic or Latino, in Group Quarters;Population: White Alone Not Hispanic or Latino, Group Quarters;The number of White Alone Not Hispanic or Latino people in group quarters;The number of people who are White Alone Not Hispanic or Latino living in group quarters;how many non-hispanic white people live in group quarters?;how many non-hispanic white people reside in group quarters?;what is the number of non-hispanic white people who live in group quarters?;what is the population of non-hispanic white people living in group quarters?" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,"Number of Non Hispanic People Who Identify as White Alone Residing in Insitutionalized Group Quarters;Number of people who are White Alone Not Hispanic or Latino, in Institutionalized Group Quarters;Population: White Alone Not Hispanic or Latino, Institutionalized Group Quarters;The number of people who are White Alone Not Hispanic or Latino and live in institutionalized group quarters;number of non-hispanic white people living in group settings;number of non-hispanic white people living in institutional settings;number of non-hispanic white people living in institutions or group quarters;the number of non-hispanic white people living in institutional group quarters" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInJuvenileFacilities,"Number of Non Hispanic People Who Identify as White Alone Residing in Juvenile Facilities;Number of White Alone Not Hispanic or Latino juveniles in detention centers;Number of White Alone Not Hispanic or Latino kids in juvenile detention;Number of White Alone Not Hispanic or Latino people in juvenile facilities;Number of people who are White Alone Not Hispanic or Latino, in Juvenile Facilities;Population: White Alone Not Hispanic or Latino, Juvenile Facilities;the number of non-hispanic white juveniles in detention centers;the number of non-hispanic white people living in juvenile facilities;the number of white people living in juvenile facilities who are not hispanic" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,"Number of Non Hispanic People Who Identify as White Alone Residing in Military Quarters or on Military Ships;Number of White Alone Not Hispanic or Latino people in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are living in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are residing in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino and are staying in military quarters or military ships;Number of people who are White Alone Not Hispanic or Latino, in Military Quarters or Military Ships;Population: White Alone Not Hispanic or Latino, Military Quarters or Military Ships;number of non-hispanic white people living in military facilities;number of non-hispanic white people living in military quarters or on military ships;number of non-hispanic white people residing in military bases;number of non-hispanic white people residing in military housing" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,"Number of Non Hispanic People Who Identify as White Alone Residing in Non-Insitutionalized Group Quarters;Number of White Alone Not Hispanic or Latino people in noninstitutionalized group quarters;Number of people who are White Alone Not Hispanic or Latino, in Noninstitutionalized Group Quarters;Population: White Alone Not Hispanic or Latino, Noninstitutionalized Group Quarters;The number of White Alone Not Hispanic or Latino people in Noninstitutionalized Group Quarters;The number of White Alone Not Hispanic or Latino people in noninstitutionalized group quarters" -Count_Person_WhiteAloneNotHispanicOrLatino_ResidesInNursingFacilities,"Number of Non Hispanic People Who Identify as White Alone Residing in Nursing Facilities;Number of people who are White Alone Not Hispanic or Latino, in Nursing Facilities;Population: White Alone Not Hispanic or Latino, Nursing Facilities;The number of White Alone Not Hispanic or Latino people in nursing facilities;The number of White Alone Not Hispanic or Latino people living in nursing facilities;The number of White Alone Not Hispanic or Latino people who are in nursing homes;The number of White Alone Not Hispanic or Latino people who are residents of nursing facilities;number of white non-hispanics in nursing homes;number of white non-hispanics living in nursing homes;number of white non-hispanics residing in nursing facilities;number of white non-hispanics who identify as white alone and live in nursing homes" -Count_Person_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,Number of People Who Identify as White Alone or in Combination With One or More Other Races;Number of people who are White Alone or In Combination With One or More Other Races;Population: White Alone or In Combination With One or More Other Races;The number of people who are White or mixed race;The number of people who are White or of mixed racial origin;The number of people who identify as White alone or in combination with one or more other races;The number of people who identify as White only or White in combination with another race;number of people who identify as white alone or in combination with one or more other races;number of people who identify as white and one or more other races;the number of people who identify as white alone or in combination with one or more other races;the number of people who identify as white only or as white in combination with one or more other races -Count_Person_WhiteAlone_ResidesInAdultCorrectionalFacilities,"Number of People Who Identify as White Alone Residing in Adult Correctional Facilities;Number of people who are White Alone, in Adult Correctional Facilities;Number of white adults in prison;Number of white inmates;Number of white people in adult correctional facilities;Number of white people incarcerated;Number of white prisoners;Population: White Alone, Adult Correctional Facilities;number of white inmates in adult correctional facilities;number of white people in adult correctional facilities;number of white people incarcerated in adult correctional facilities;number of white people serving time in adult correctional facilities" -Count_Person_WhiteAlone_ResidesInCollegeOrUniversityStudentHousing,"Number of People Who Identify as White Alone Residing in College or University Student Housing;Number of White Alone college students living in student housing;Number of White Alone college students living in university housing;Number of White Alone people in College or University Student Housing;Number of people who are White Alone, in College or University Student Housing;Population: White Alone, College or University Student Housing;The number of White Alone people in college or university student housing;The number of White Alone people living in college or university student housing;number of white students living in college dorms;number of white students living in college housing;number of white students living in college or university student housing;number of white students living on campus" -Count_Person_WhiteAlone_ResidesInGroupQuarters,"Number of People Who Identify as White Alone Residing in Group Quarters;Number of White Alone people living in group quarters;Number of White people living in group quarters;Number of people who are White Alone, in Group Quarters;Population: White Alone, Group Quarters;The number of White Alone people living in group quarters;The number of people who are white and live in group quarters;The number of white people living in group quarters;number of white alone people living in group quarters;number of white alone people living in other group quarters;number of white people living in group quarters;number of white people living in group quarters, not in households" -Count_Person_WhiteAlone_ResidesInInstitutionalizedGroupQuarters,"Number of People Who Identify as White Alone Residing in Institutionalized Group Quarters;Number of White Alone people in Institutionalized Group Quarters;Number of White Alone people living in Institutionalized Group Quarters;Number of people who are White Alone, in Institutionalized in Group Quarters;Population: White Alone, Institutionalized Group Quarters;The number of White Alone people who are institutionalized in group quarters;White Alone population in Institutionalized Group Quarters;White Alone population living in Institutionalized Group Quarters;number of people who identify as white alone residing in institutional group quarters;number of white people institutionalized;number of white people living in institutional group quarters;the number of white people who are institutionalized" -Count_Person_WhiteAlone_ResidesInJuvenileFacilities,"Number of People Who Identify as White Alone Residing in Juvenile Facilities;Number of White Alone juveniles in facilities;Number of White Alone people in juvenile detention centers;Number of White Alone people in juvenile facilities;Number of White Alone youth in juvenile facilities;Number of people who are White Alone, in Juvenile Facilities;Population: White Alone, Juvenile Facilities;The number of White Alone people in juvenile facilities;number of white children in juvenile detention;number of white juveniles in detention centers;number of white people in juvenile facilities;number of white youth in juvenile justice facilities" -Count_Person_WhiteAlone_ResidesInMilitaryQuartersOrMilitaryShips,"Number of People Who Identify as White Alone Residing in Military Quarters or on Military Ships;Number of people who are White Alone, in Military Quarters or Military Ships;Population: White Alone, Military Quarters or Military Ships;The number of people who are white and live in military quarters or on military ships;The number of white people who are in the military;The number of white people who are in the military and live on military bases or ships;The number of white people who live on military bases;The number of white people who live on military ships;number of white people living in military barracks;number of white people living in military housing;number of white people living in military quarters or on military ships;number of white people living on military bases" -Count_Person_WhiteAlone_ResidesInNoninstitutionalizedGroupQuarters,"Number of People Who Identify as White Alone Residing in Non-Institutionalized Group Quarters;Number of people who are White Alone, in Noninstitutionalized in Group Quarters;Population: White Alone, Noninstitutionalized Group Quarters;number of people who identify as white alone living in non-institutional group quarters;the number of white people who identify as white alone and are living in non-institutional group quarters;the number of white people who identify as white alone and live in non-institutional group quarters;the number of white people who identify as white alone and reside in non-institutional group quarters" -Count_Person_WhiteAlone_ResidesInNursingFacilities,"Number of People Who Identify as White Alone Residing in Nursing Facilities;Number of people who are White Alone, in Nursing Facilities;Population: White Alone, Nursing Facilities;The number of White Alone individuals living in nursing homes;The number of White Alone nursing facility residents;The number of White Alone nursing home residents;The number of White Alone people in nursing facilities;The number of White Alone people residing in nursing homes;number of white people in nursing facilities;number of white people living in nursing homes;number of white people who identify as white alone in nursing facilities;number of white people who identify as white alone living in nursing homes" -Count_Person_Widowed,Number of widowed people;Widowed Population;people who are bereaved spouses;people who are living as a widow or widower;people who are no longer married because their spouse has died;people who are widowed;people who have lost their spouse to death;the population of people who are bereaved spouses;the population of people who are widowed;the widowed -Count_Person_Widowed_DifferentHouseAbroad,"Population Aged 15 Years or More Widows in a Different House Abroad;Population: 15 Years or More, Widowed, Different House Abroad;number of widows aged 15 years or more living in a different house abroad;number of widows aged 15 years or more living in a foreign country;number of widows aged 15 years or more living in a non-native country;number of widows aged 15 years or more living outside their home country" -Count_Person_Widowed_DifferentHouseInDifferentCountyDifferentState,"Population: 15 Years or More, Widowed, Different House in Different County Different State;Widow Population Aged 15 Years or More Residing in Different Houses in Different County Different State;count of widows aged 15 years or older living in different houses in different counties in different states;number of widows aged 15 years or older living in different houses in different counties in different states;population of widows aged 15 years or older living in different houses in different counties in different states;widows aged 15 years or older living in different houses in different counties in different states" -Count_Person_Widowed_DifferentHouseInDifferentCountySameState,"Population: 15 Years or More, Widowed, Different House in Different County Same State;Widowed Population Aged 15 Years or More In Different Houses in Different County Same State;people who are widowed and aged 15 years or more who live in different domiciles in the same county in the same state;people who are widowed and aged 15 years or more who live in different households in the same county in the same state;people who are widowed and aged 15 years or more who live in different houses in the same county in the same state;people who are widowed and aged 15 years or more who live in different residences in the same county in the same state" -Count_Person_Widowed_DifferentHouseInSameCounty,"Population Above 15 Years Old Who are Widowed in Different Houses in the Same County;Population: 15 Years or More, Widowed, Different House in Same County;number of widowed people aged 15 and over living in different households in the same county;number of widowed people over 15 years old living in different households in the same county;number of widowed people over 15 years old living in separate dwellings in the same county;number of widowed people over 15 years old living in separate houses in the same county" -Count_Person_Widowed_ResidesInAdultCorrectionalFacilities,"Population: 15 Years or More, Widowed, Adult Correctional Facilities;Widowed Population Aged 15 Years or More In Adult Correctional Facilities;the number of adults in prison who are widowed and over the age of 15;the number of people aged 15 years or more who are widowed and are in adult correctional facilities;the number of people in prison who are widowed;the number of people in prison who are widowed and over the age of 15" -Count_Person_Widowed_ResidesInCollegeOrUniversityStudentHousing,"Population: 15 Years or More, Widowed, College or University Student Housing;Widowed Population Aged 15 Years or More In College or University Student Housing;college or university student housing residents who are widowed and aged 15 years or older;students who are widowed and aged 15 years or older living in college or university student housing;widowed college or university student housing residents aged 15 years or older;widowed students aged 15 years or older living in college or university student housing" -Count_Person_Widowed_ResidesInGroupQuarters,"Population: 15 Years or More, Widowed, Group Quarters;Widows Aged 15 Years or More in Group Quarters;widows 15 and older in group quarters;widows 15 years of age or older in group living arrangements;widows aged 15 years or older in group housing;widows who are 15 years old or older living in group quarters" -Count_Person_Widowed_ResidesInInstitutionalizedGroupQuarters,"Population: 15 Years or More, Widowed, Institutionalized Group Quarters;Widowed Population Aged 15 Years or More Residing in Institutionalized Group Quarters;people aged 15 and older who are widowed and live in group quarters;people who are widowed and 15 years or older living in group quarters;the number of people aged 15 or older who are widowed and living in group quarters;the number of widowed people aged 15 years or older living in group quarters" -Count_Person_Widowed_ResidesInNoninstitutionalizedGroupQuarters,"Population: 15 Years or More, Widowed, Noninstitutionalized Group Quarters;Widowed Population Aged 15 Years or More in Non-Institutionalized Group Quarters;the number of people who are widowed and aged 15 years or more who are living in non-institutional group quarters;the number of people who are widowed and aged 15 years or more who are living in the community;the number of people who are widowed and aged 15 years or more who are not institutionalized;the number of people who are widowed and aged 15 years or more who are not living in an institution" -Count_Person_Widowed_ResidesInNursingFacilities,"Population Aged 15 Years or More Widowed in Nursing Facilities;Population: 15 Years or More, Widowed, Nursing Facilities;number of people aged 15 or older who are widowed and are cared for in nursing homes;number of people aged 15 or older who are widowed and are residents of nursing homes;number of people aged 15 or older who are widowed and living in nursing homes;number of widowed people aged 15 or older in nursing homes" -Count_Person_WithDirectPurchaseHealthInsurance,How many people have Direct Purchase Health Insurance?;How many people have direct purchase health insurance?;Number of People Who Directly Purchased Their Health Insurance;Number of people who are With Direct Purchase Health Insurance;Population: With Direct Purchase Health Insurance;direct health insurance purchasers;people who bought their own health insurance;people who bought their own health insurance policy;people who purchased health insurance directly from an insurance company -Count_Person_WithDirectPurchaseHealthInsuranceOnly,How many people have Direct Purchase Health Insurance Only?;Number of People Who Only Directly Purchased Their Health Insurance;Number of people who are With Direct Purchase Health Insurance Only;Number of people who have Direct Purchase Health Insurance Only;Population: With Direct Purchase Health Insurance Only;The number of people with direct purchase health insurance only;the number of people who bought their health insurance without going through an employer or government program -Count_Person_WithDisability,Number of People With Disabilities;Number of people who are With Disability;Number of people who are disabled;Number of people who have disabilities;Number of people with disabilities;Number of people with special needs;Population: With Disability;how many people have disabilities;the number of people with disabilities;the percentage of people with disabilities;the prevalence of disabilities -Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native people with disabilities;Number of American Indian or Alaska Native People With Disabilities;Number of American Indian or Alaska Native people with a disability;Number of American Indian or Alaska Native people with disabilities;Number of people who are With Disability, American Indian or Alaska Native Alone;Population: With Disability, American Indian or Alaska Native Alone;The number of American Indian or Alaska Native people with disabilities;the number of american indian or alaska native people who are disabled;the number of american indian or alaska native people who have disabilities;the number of american indian or alaska native people who live with disabilities;the number of american indian or alaska native people with disabilities" -Count_Person_WithDisability_AsianAlone,"Number of Asian People With Disabilities;Number of Asian people with disabilities;Number of people who are With Disability, Asian Alone;Population: With Disability, Asian Alone;The number of Asian people with a disability;The number of Asian people with disabilities;The number of people who are Asian and have a disability;The number of people with a disability who are Asian;The number of people with a disability who identify as Asian;how many asian people have disabilities?;how many people with disabilities are asian?;what is the number of asian people with disabilities?;what is the percentage of asian people with disabilities?" -Count_Person_WithDisability_BlackOrAfricanAmericanAlone,"Number of Black or African American People With Disabilities;Number of Black or African American people with disabilities;Number of people who are With Disability, Black or African American Alone;Population: With Disability, Black or African American Alone;The number of Black or African American people with a disability;The number of Black or African American people with disabilities;The number of people who are Black or African American and have a disability;The number of people with a disability who are Black or African American;The number of people with disabilities who are Black or African American;how many black or african americans have disabilities?;how many black or african americans live with disabilities?;what is the number of black or african americans with disabilities?;what is the percentage of black or african americans with disabilities?" -Count_Person_WithDisability_Female,"Number of Female People With Disabilities;Number of disabled females;Number of disabled women;Number of female people with disabilities;Number of females who are disabled;Number of females with disabilities;Number of people who are With Disability, Female;Number of women with disabilities;Population: With Disability, Female;female population with disabilities;female population with physical or mental disabilities;number of female persons with disabilities;number of women with disabilities" -Count_Person_WithDisability_HispanicOrLatino,"Number of Hispanic or Latino People With Disabilities;Number of Hispanic or Latino people with disabilities;Number of people who are With Disability, Hispanic or Latino;Population: With Disability, Hispanic or Latino;The number of Hispanic or Latino people with disabilities;The number of people who are Hispanic or Latino and have a disability;The number of people who are both Hispanic or Latino and have disabilities;The number of people with disabilities who are Hispanic or Latino;how many hispanic or latino people have disabilities;the number of hispanic or latino people with disabilities;the percentage of hispanic or latino people with disabilities;the proportion of hispanic or latino people with disabilities" -Count_Person_WithDisability_Male,"Number of Male People With Disabilities;Number of disabled males;Number of male people with disabilities;Number of males who are disabled;Number of males who have disabilities;Number of males with a disability;Number of males with disabilities;Number of people who are With Disability, Male;Population: With Disability, Male;number of disabled men;number of males with disabilities;number of men who have disabilities;number of men with disabilities" -Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,"How many people are Native Hawaiian or Other Pacific Islander Alone with a disability?;Number of Native Hawaiian or Other Pacific Islander Alone people with a disability;Number of Native Hawaiian or Other Pacific Islander People With Disabilities;Number of Native Hawaiian or Other Pacific Islander people with disabilities;Number of people who are With Disability, Native Hawaiian or Other Pacific Islander Alone;Population: With Disability, Native Hawaiian or Other Pacific Islander Alone;The number of people who are Native Hawaiian or Other Pacific Islander Alone and report having a disability;The number of people who are Native Hawaiian or Other Pacific Islander Alone with a disability;The number of people who identify as Native Hawaiian or Other Pacific Islander Alone and have a disability;how many native hawaiian or other pacific islander people are living with disabilities?;how many native hawaiian or other pacific islander people have disabilities?;what is the number of native hawaiian or other pacific islander people with disabilities?;what is the percentage of native hawaiian or other pacific islander people with disabilities?" -Count_Person_WithDisability_OneRace,"Number of People With Disabilities of a Single Race;Number of people who are With Disability, One Race;Number of people with disabilities of a single race;Population: With Disability, One Race;The number of people who are disabled and are members of one race;The number of people who are disabled and belong to one race;The number of people who have a disability and are of one race;The number of people who have a disability and identify as one race;The number of people with a disability and one race;how many people with disabilities are of a single race?;number of people with disabilities in each race;what is the number of people of a single race who have disabilities?;what is the number of people with disabilities of a single race?" -Count_Person_WithDisability_ResidesInAdultCorrectionalFacilities,"1 Number of people with disabilities in adult correctional facilities;Number of People With Disabilities Living in Adult Correctional Facilities;Number of people in adult correctional facilities with disabilities;Number of people who are With Disability, in Adult Correctional Facilities;Number of people with disabilities in adult correctional facilities;Number of people with disabilities living in adult correctional facilities;Population: With Disability, Adult Correctional Facilities;how many people with disabilities are incarcerated in adult correctional facilities?;how many people with disabilities are living in adult correctional facilities?;what is the number of people with disabilities living in adult correctional facilities?;what is the population of people with disabilities living in adult correctional facilities?" -Count_Person_WithDisability_ResidesInCollegeOrUniversityStudentHousing,"How many college students with disabilities live in on-campus housing?;Number of People With Disabilities Living in College or University Student Housing;Number of college or university students with disabilities living in student housing;Number of people who are With Disability, in College or University Student Housing;Number of people with disabilities living in college or university student housing;Number of students with disabilities in college housing;Number of students with disabilities living in college or university housing;Population: With Disability, College or University Student Housing;how many people with disabilities live in college or university student housing?;how many students with disabilities live in college or university student housing?;what is the number of people with disabilities living in college or university student housing?;what is the percentage of people with disabilities living in college or university student housing?" -Count_Person_WithDisability_ResidesInGroupQuarters,"Number of People With Disabilities Living in Group Quarters;Number of people who are With Disability, in Group Quarters;Number of people with disabilities in group living arrangements;Number of people with disabilities in group quarters;Number of people with disabilities living in group quarters;People with disabilities in group quarters;Population: With Disability, Group Quarters;number of people with disabilities living in group homes;number of people with disabilities living in group quarters;the number of people with disabilities living in group homes;the number of people with disabilities living in group quarters" -Count_Person_WithDisability_ResidesInInstitutionalizedGroupQuarters,"Number of People With Disabilities Living in Institutionalized Group Quarters;Number of people who are With Disability, in Institutionalized in Group Quarters;Number of people with disabilities institutionalized in group homes;Number of people with disabilities institutionalized in group quarters;Number of people with disabilities living in group living settings;Number of people with disabilities living in group settings;Number of people with disabilities living in institutionalized group quarters;Population: With Disability, Institutionalized Group Quarters;number of people with disabilities living in group care facilities;number of people with disabilities living in institutional settings" -Count_Person_WithDisability_ResidesInJuvenileFacilities,"How many people with disabilities are in juvenile facilities;Number of People With Disabilities Living in Juvenile Facilities;Number of people who are With Disability, in Juvenile Facilities;Number of people with disabilities in juvenile detention centers;Number of people with disabilities living in juvenile facilities;Population: With Disability, Juvenile Facilities;The number of people in juvenile facilities who have disabilities;The number of people with disabilities in juvenile facilities;The number of people with disabilities who are in juvenile detention centers;how many people with disabilities are in juvenile facilities?;how many people with disabilities live in juvenile facilities?;what is the number of people with disabilities living in juvenile facilities?;what is the population of people with disabilities living in juvenile facilities?" -Count_Person_WithDisability_ResidesInMilitaryQuartersOrMilitaryShips,"Number of People With Disabilities Living in Military Quarters or Ships;Number of people who are With Disability, in Military Quarters or Military Ships;Number of people with disabilities in military housing;Number of people with disabilities in military quarters or military ships;Number of people with disabilities in the military;Number of people with disabilities living in military quarters or ships;Population: With Disability, Military Quarters or Military Ships;how many people with disabilities live in military bases?;how many people with disabilities live in military housing?;how many people with disabilities live in military quarters or ships?;how many people with disabilities live on military ships?" -Count_Person_WithDisability_ResidesInNoninstitutionalizedGroupQuarters,"Number of People With Disabilities Living in Noninstitutionalized Group Quarters;Number of people who are With Disability, in Noninstitutionalized in Group Quarters;Number of people with disabilities living in noninstitutionalized group quarters;Population: With Disability, Noninstitutionalized Group Quarters" -Count_Person_WithDisability_ResidesInNursingFacilities,"Number of People With Disabilities Living in Nursing Facilities;Number of people in nursing facilities with disabilities;Number of people living in nursing facilities with disabilities;Number of people who are With Disability, in Nursing Facilities;Number of people with disabilities in nursing facilities;Number of people with disabilities living in nursing facilities;Population: With Disability, Nursing Facilities;The number of people with disabilities in nursing homes;how many people with disabilities live in nursing facilities?;how many people with disabilities live in nursing homes?;what is the number of people with disabilities living in nursing facilities?;what is the number of people with disabilities living in nursing homes?" -Count_Person_WithDisability_SomeOtherRaceAlone,"Number of People With Disabilities of Some Other Race;Number of people who are With Disability, Some Other Race Alone;Number of people with a disability who identify as some other race;Number of people with disabilities of some other race;Number of people with disabilities who identify as some other race;People with disabilities who identify as a race other than white, black, or Asian;People with disabilities who identify as some other race;Population of people with disabilities who identify as some other race;Population: With Disability, Some Other Race Alone;number of people with disabilities who are not of european descent;number of people with disabilities who identify as a race other than white;the number of people with disabilities who are not of european descent;the number of people with disabilities who identify as a race other than white" -Count_Person_WithDisability_TwoOrMoreRaces,"Number of People With Disabilities of Two or More Races;Number of people who are With Disability, Two or More Races;Number of people with a disability and two or more races;Number of people with disabilities of two or more races;Number of people with disabilities who identify as two or more races;People with disabilities who identify as two or more races;Population: With Disability, Two or More Races;The number of people who have a disability and identify as two or more races;people with disabilities of two or more races;people with disabilities who identify as two or more races;people with disabilities who identify with more than one race;people with disabilities who identify with multiple races" -Count_Person_WithDisability_WhiteAlone,"Number of White Alone people with disabilities;Number of White People With Disabilities;Number of White people with disabilities;Number of people who are White Alone and have disabilities;Number of people who are With Disability, White Alone;Number of people with disabilities who are White Alone;Number of people with disabilities who identify as White Alone;Population: With Disability, White Alone;White people with disabilities;how many white people have disabilities;the number of white people with disabilities;the percentage of white people with disabilities;the proportion of white people with disabilities" -Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,"Number of Non Hispanic or Latino White People With Disabilities;Number of White Alone Not Hispanic or Latino people with disabilities;Number of non hispanic or Latino White people with disabilities;Number of people who are With Disability, White Alone Not Hispanic or Latino;Number of people with disabilities who are white and not Hispanic or Latino;Population of people with a disability who are white alone and not Hispanic or Latino;Population: With Disability, White Alone Not Hispanic or Latino;The number of people with disabilities who identify as white and not Hispanic or Latino;The number of white people with disabilities who are not Hispanic or Latino;number of non-hispanic or latino white people who are disabled;number of non-hispanic or latino white people with disabilities;number of people with disabilities who are white and not hispanic or latino;number of white people with disabilities who are not hispanic or latino" -Count_Person_WithEarnings_FullTimeYearRoundWorker,"Full Time Year Round Worker Population Aged 16 Years or More With Earnings;Population: 16 Years or More, With Earnings, Full Time Year Round Worker;number of people who work full-time, year-round and are 16 years or older and are earning money;number of people who work full-time, year-round and are 16 years or older and are paid;number of people who work full-time, year-round and are 16 years or older and have earnings;number of people who work full-time, year-round and are aged 16 or older with earnings" -Count_Person_WithEmployerBasedHealthInsurance,How many people have employer-based health insurance?;Number of People With Employer-Based Health Insurance;Number of people who are With Employer Based Health Insurance;Number of people with employer-based health insurance;Number of people with employer-sponsored health insurance;Population: With Employer Based Health Insurance;how many people are covered by employer-based health insurance?;how many people have health insurance through their employer?;what is the number of people who get health insurance through their employer?;what is the percentage of people with health insurance through their employer? -Count_Person_WithEmployerBasedHealthInsuranceOnly,Number of People With Only Employer-Based Health Insurance;Number of people who are With Employer Based Health Insurance Only;Number of people with only employer-based health insurance;Population: With Employer Based Health Insurance Only;The number of people who only have employer-based health insurance;The number of people who only have employer-sponsored health insurance;The number of people who rely solely on employer-sponsored health insurance;The number of people with employer-based health insurance only;The number of people with employer-sponsored health insurance only;number of people who have only employer-based health insurance;number of people with employer-based health insurance as their only source of health insurance;the number of people who have only employer-based health insurance;the number of people who only have employer-based health insurance -Count_Person_WithFoodStampsInThePast12Months_ResidesInAdultCorrectionalFacilities,"How many people in adult correctional facilities received food stamps last year?;How many people on food stamps are in adult correctional facilities?;How many people on food stamps are in prison?;How many people receiving food stamps were in adult correctional facilities in the last year?;How many people who received food stamps last year are currently in adult correctional facilities?;Number of People Who Received Food Stamps in the Past 12 Months and Lived in Adult Correctional Facilities;Number of people who are With Food Stamps over the last year who are in Adult Correctional Facilities;Number of people who received food stamps in the past 12 months and lived in adult correctional facilities;Population: With Food Stamps in The Past 12 Months, Adult Correctional Facilities;number of people who received food stamps and lived in adult correctional facilities in the past 12 months;number of people who received food stamps and were in adult correctional facilities in the past 12 months;number of people who received food stamps and were incarcerated in adult correctional facilities in the past 12 months;number of people who received food stamps in the past 12 months and lived in adult correctional facilities" -Count_Person_WithFoodStampsInThePast12Months_ResidesInCollegeOrUniversityStudentHousing,"Number of People Who Received Food Stamps in the Past 12 Months and Lived in College or University Student Housing;Number of college students on food stamps in the past year;Number of people who are With Food Stamps over the last year who are in College or University Student Housing;Number of people who received food stamps in the past 12 months and lived in college or university student housing;Number of students in college or university student housing who are eligible for food stamps;Number of students in college or university student housing who receive assistance from the Supplemental Nutrition Assistance Program (SNAP);Number of students in college or university student housing who receive food stamps;Number of students in college or university student housing who use food stamps;Population: With Food Stamps in The Past 12 Months, College or University Student Housing;how many people received food stamps in the past 12 months and lived in college or university student housing?;how many people who received food stamps in the past 12 months also lived in college or university student housing?;what is the number of people who received food stamps in the past 12 months and lived in college or university student housing?;what is the percentage of people who received food stamps in the past 12 months who also lived in college or university student housing?" -Count_Person_WithFoodStampsInThePast12Months_ResidesInGroupQuarters,"Number of People Who Received Food Stamps in the Past 12 Months and Lived in Group Quarters;Number of people who are With Food Stamps over the last year who are in Group Quarters;Number of people who received food stamps in group quarters in the last year;Number of people who received food stamps in the last year and live in group quarters;Number of people who received food stamps in the past 12 months and lived in group quarters;Number of people who received food stamps while living in group quarters in the last year;Number of people who were in group quarters and received food stamps in the last year;Population: With Food Stamps in The Past 12 Months, Group Quarters;The number of people who received food stamps in group quarters over the last year;number of people who received snap benefits in the past year and lived in group quarters;the number of people who received food stamps in the past 12 months and lived in group quarters;the number of people who received snap benefits in the past 12 months and lived in group quarters;the number of people who received supplemental nutrition assistance program benefits in the past 12 months and lived in group quarters" -Count_Person_WithFoodStampsInThePast12Months_ResidesInInstitutionalizedGroupQuarters,"Number of People Who Received Food Stamps in the Past 12 Months and Lived in Institutionalized Group Quarters;Number of people in institutionalized group quarters with food stamps in the last year;Number of people who are With Food Stamps over the last year who are in Institutionalized Group Quarters;Number of people who lived in institutionalized group quarters in the last year while receiving food stamps;Number of people who received food stamps in the last year while living in institutionalized group quarters;Number of people who received food stamps in the past 12 months and lived in institutionalized group quarters;Number of people who were in institutionalized group quarters and received food stamps in the last year;Number of people with food stamps in institutionalized group quarters in the last year;Population: With Food Stamps in The Past 12 Months, Institutionalized Group Quarters;how many people lived in institutionalized group quarters and received food stamps in the past 12 months?;how many people received food stamps and lived in institutionalized group quarters in the past 12 months?;how many people received food stamps in the past 12 months and lived in institutionalized group quarters?;how many people received food stamps in the past 12 months while living in institutionalized group quarters?" -Count_Person_WithFoodStampsInThePast12Months_ResidesInJuvenileFacilities,"How many people have been in juvenile facilities while receiving food stamps in the past year?;Number of People Who Received Food Stamps in the Past 12 Months and Lived in Juvenile Facilities;Number of food stamp recipients in juvenile facilities in the last year;Number of juvenile facility residents who received food stamps in the last year;Number of people in juvenile facilities who received food stamps in the last year;Number of people who are With Food Stamps over the last year who are in Juvenile Facilities;Number of people who received food stamps in the past 12 months and lived in juvenile facilities;Number of people who received food stamps while in juvenile facilities in the last year;Population: With Food Stamps in The Past 12 Months, Juvenile Facilities;how many people lived in juvenile facilities and received food stamps in the past 12 months;how many people received food stamps in the past 12 months and lived in juvenile facilities;what is the number of people who lived in juvenile facilities and received food stamps in the past 12 months;what is the number of people who received food stamps in the past 12 months and lived in juvenile facilities" -Count_Person_WithFoodStampsInThePast12Months_ResidesInNoninstitutionalizedGroupQuarters,"Number of People Who Received Food Stamps in the Past 12 Months and Lived in Noninstitutionalized Group Quarters;Number of people who are With Food Stamps over the last year who are in Noninstitutionalized Group Quarters;Number of people who received food stamps in the past 12 months and lived in noninstitutionalized group quarters;Population: With Food Stamps in The Past 12 Months, Noninstitutionalized Group Quarters;how many people received food stamps in the last year and lived in group quarters that are not hospitals, nursing homes, or prisons;number of people who received food stamps in the past 12 months and lived in group quarters that are not hospitals, nursing homes, or other institutions;number of people who received food stamps in the past 12 months and lived in group quarters that are not hospitals, nursing homes, or other types of institutions;number of people who received food stamps in the past 12 months and lived in group quarters that are not institutions" -Count_Person_WithFoodStampsInThePast12Months_ResidesInNursingFacilities,"How many people are on food stamps and in nursing homes?;How many people on food stamps are in nursing homes?;Number of People Who Received Food Stamps in the Past 12 Months and Lived in Nursing Facilities;Number of food stamp recipients in nursing homes in the last year;Number of nursing home residents receiving food stamps in the last year;Number of people in nursing homes with food stamps in the last year;Number of people who are With Food Stamps over the last year who are in Nursing Facilities;Number of people who received food stamps in the past 12 months and lived in nursing facilities;Population: With Food Stamps in The Past 12 Months, Nursing Facilities;how many people received food stamps in the past 12 months and lived in nursing facilities?;how many people who received food stamps in the past 12 months also lived in nursing facilities?;what is the number of people who lived in nursing facilities and received food stamps in the past 12 months?;what is the number of people who received food stamps in the past 12 months and lived in nursing facilities?" -Count_Person_WithHealthInsurance,Number of People With Health Insurance;Number of people who are With Health Insurance;Number of people who are covered by health insurance;Number of people who are insured;Number of people who have health coverage;Number of people who have health insurance;Number of people with health insurance;Population: With Health Insurance;how many people are covered by health insurance?;how many people have health insurance?;what is the number of people with health insurance?;what is the percentage of people with health insurance? -Count_Person_WithHealthInsurance_AmericanIndianOrAlaskaNativeAlone,"American Indian or Alaska Native Population With Health Insurance;Population: With Health Insurance, American Indian or Alaska Native Alone;american indian or alaska natives who have health insurance;american indian or alaska natives with health insurance;the number of american indian or alaska natives with health insurance;the percentage of american indian or alaska natives with health insurance" -Count_Person_WithHealthInsurance_AsianAlone,"Asian Population With Health Insurance;Population: With Health Insurance, Asian Alone;the number of asian americans with health insurance;the percentage of asian americans with health insurance;the population of asian americans with health insurance;the proportion of asian americans with health insurance" -Count_Person_WithHealthInsurance_BlackOrAfricanAmericanAlone,"African American Population With Health Insurance;Population: With Health Insurance, Black or African American Alone;black or african american people with health insurance;the number of black or african americans with health insurance;the percentage of black or african americans with health insurance;the proportion of black or african americans with health insurance" -Count_Person_WithHealthInsurance_HispanicOrLatino,"Hispanic Population With Health Insurance;Population: With Health Insurance, Hispanic or Latino;hispanic or latino population with health insurance;number of hispanics or latinos with health insurance;percentage of hispanics or latinos with health insurance;proportion of hispanics or latinos with health insurance" -Count_Person_WithHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,"Native Hawaiian Or Other Pacific Islander Population With Health Insurance;Population: With Health Insurance, Native Hawaiian or Other Pacific Islander Alone;population: with health insurance, native hawaiian or other pacific islander alone;the number of native hawaiian or other pacific islanders with health insurance;the percentage of native hawaiian or other pacific islanders with health insurance;the proportion of native hawaiian or other pacific islanders with health insurance" -Count_Person_WithHealthInsurance_WhiteAlone,"Population: With Health Insurance, White Alone;White Population With Health Insurance;the number of white people with health insurance;the percentage of white people with health insurance;the proportion of white people with health insurance;white people with health insurance" -Count_Person_WithMedicaidOrMeansTestedPublicCoverage,Number of People With Medicaid or Means-Tested Public Coverage;Number of people who are With Medicaid or Means Tested Public Coverage;Number of people with Medicaid or means-tested public coverage;Population: With Medicaid or Means Tested Public Coverage;The number of people covered by Medicaid or means-tested public coverage;The number of people with Medicaid or means-tested public coverage;the number of people covered by medicaid or means-tested public programs;the number of people enrolled in medicaid or means-tested public programs;the number of people receiving medicaid or means-tested public benefits;the number of people with medicaid or means-tested public coverage -Count_Person_WithMedicaidOrMeansTestedPublicCoverageOnly,Number of People With Only Medicaid or Means-Tested Public Coverage;Number of people who are With Medicaid or Means Tested Public Coverage Only;Number of people with Medicaid or means-tested public coverage as their only health insurance;Number of people with Medicaid or means-tested public coverage as their only source of health insurance;Number of people with Medicaid or means-tested public coverage only;Number of people with only Medicaid or means-tested public coverage;Population: With Medicaid or Means Tested Public Coverage Only;The number of people with Medicaid or means-tested public coverage only;number of people covered by medicaid or means-tested public coverage only;number of people with medicaid or means-tested public coverage as their only source of health insurance;number of people with medicaid or means-tested public coverage only;number of people with only medicaid or means-tested public coverage -Count_Person_WithMedicareCoverage,Number of Medicare beneficiaries;Number of People With Medicare Coverage;Number of people covered by Medicare;Number of people enrolled in Medicare;Number of people who are With Medicare Coverage;Number of people with Medicare;Number of people with Medicare coverage;Population: With Medicare Coverage;how many people are covered by medicare?;how many people have medicare coverage?;what is the number of people with medicare coverage?;what is the percentage of people with medicare coverage? -Count_Person_WithMedicareCoverageOnly,Number of People With Only Medicare Coverage;Number of people who are With Medicare Coverage Only;Number of people with Medicare only;Number of people with only Medicare coverage;Population: With Medicare Coverage Only;number of people who are covered by medicare but not by any other health insurance;number of people who have medicare and no other health insurance;number of people who only have medicare;number of people with medicare as their only health insurance -Count_Person_WithOwnChildrenUnder18,Population With Own Children Aged 18 Years Or Less;Population: With Own Children Under 18;number of people who are parents of children under 18;number of people who are raising children under 18;number of people who have children under 18;number of people with children under 18 -Count_Person_WithOwnChildrenUnder18_Female,"Female Population With Own Children Aged 18 Years Or Less;Population: With Own Children Under 18, Female;female population with children under 18;female population with dependent children;number of females with children under 18;percentage of females with children under 18" -Count_Person_WithOwnChildrenUnder18_Male,"Male Population With Own Children Aged 18 Years Or Less;Population: With Own Children Under 18, Male;male population with children at home;male population with children under 18;male population with dependent children;male population with minor children" -Count_Person_WithPrivateHealthInsurance,1 Number of people with private health insurance;Number of People With Private Health Insurance;Number of people who are With Private Health Insurance;Number of people with private health insurance;Population: With Private Health Insurance;how many people have private health insurance?;how many people in the us have private health insurance?;what is the number of people in the us with private health insurance?;what is the number of people with private health insurance? -Count_Person_WithPrivateHealthInsuranceOnly,"Number of People With Only Private Health Insurance;Number of individuals with private coverage only;Number of people who are With Private Health Insurance Only;Number of people who don't have public health insurance;Number of people who rely on private plans;Number of people with only private health insurance;Number of people with private health insurance only;Number of people without public insurance;Population: With Private Health Insurance Only;The number of people with private health insurance only;the number of people who are only covered by private health insurance;the number of people who have private health insurance as their only source of health insurance;the number of people with private health insurance only;the number of people with private health insurance, and no other type of health insurance" -Count_Person_WithPublicHealthInsurance,How many people have public health insurance;How many people have public health insurance?;Number of People With Public Health Insurance;Number of people who are With Public Health Insurance;Number of people with public health insurance;Population: With Public Health Insurance;The number of people covered by public health insurance;The number of people with public health insurance;The percentage of people with public health insurance;how many people have public health insurance;the number of people covered by public health insurance;the number of people with public health insurance;the percentage of people with public health insurance -Count_Person_WithPublicHealthInsuranceOnly,Number of People With Only Public Health Insurance;Number of people covered by public health insurance only;Number of people who are With Public Health Insurance Only;Number of people with only public health insurance;Number of people with public health insurance and no private health insurance;Number of people with public health insurance as their only source of health insurance;Number of people with public health insurance only;Population: With Public Health Insurance Only;The number of people with only public health insurance;how many people have only public health insurance;the number of people who have public health insurance as their only form of health insurance;the number of people who only have public health insurance;the number of people with only public health insurance -Count_Person_WithTricareMilitaryHealthCoverage,Number of People With TRICARE Military Health Coverage;Number of people who are With Tricare Military Health Coverage;Number of people with TRICARE military health coverage;Population: With Tricare Military Health Coverage;Tricare beneficiaries;Tricare enrollees;how many people are covered by tricare?;how many people are enrolled in tricare?;how many people have tricare military health coverage?;number of people covered by Tricare;number of people enrolled in Tricare;number of people with Tricare;what is the number of people with tricare? -Count_Person_WithTricareMilitaryHealthCoverageOnly,Number of People With Only TRICARE Military Health Coverage;Number of people covered by Tricare Military Health Coverage Only;Number of people who are With Tricare Military Health Coverage Only;Number of people with Tricare Military Health Coverage Only;Number of people with only TRICARE military health coverage;Population: With Tricare Military Health Coverage Only;how many people have only tricare military health coverage;how many people have tricare as their only health insurance;how many people have tricare as their only health insurance?;how many people rely on tricare for their health care? -Count_Person_WithVAHealthCare,Number of People With VA Health Care;Number of people who are With VAHealth Care;Number of people with VA health care;Population: With VAHealth Care;The number of people who are beneficiaries of VA health care;The number of people who are covered by VA health care;The number of people who are enrolled in VA health care;The number of people who have VA health care;The number of people who receive VA health care;how many people are covered by va health care?;how many people are enrolled in va health care?;how many people have va health care?;how many people use va health care? -Count_Person_WithVAHealthCareOnly,Number of People With Only VA Health Care;Number of people who are With VAHealth Care Only;Number of people who only have VA Health Care;Number of people who use VA Health Care exclusively;Number of people with VA Health Care Only;Number of people with VA health care only;Number of people with only VA health care;Population: With VAHealth Care Only;The number of people who only have VA health care;how many people only have va health insurance?;how many people use va health care exclusively?;how many people use va healthcare exclusively?;what is the number of people who only have va healthcare? -Count_Person_WorkedFullTime,"Male Population That Worked Full Time;Population: Male, Worked Full Time;the number of male full-time workers;the number of men who were employed full-time;the number of men who worked full-time;the number of men who worked full-time jobs" -Count_Person_Workers,Population: Worker;Workers;the working population -Count_Person_Workers_Female,"Female Workers;Population: Female, Worker" -Count_Person_Workers_Male,"Male Workers;Population: Male, Worker;male worker population;male working population;male working-age population;the working male population" -Count_Person_Workers_Rural,"Population: Rural, Worker;Workers In Rural Areas;people who live and work in rural communities;people who live and work in the countryside;people who work in rural areas;rural workers" -Count_Person_Workers_Urban,"Population: Urban, Worker;Workers in Urban Areas;city workers;people who have jobs in urban areas;people who work in cities;urbanites who work" -Count_Person_Years25Onwards_EducationalAttainment_5ThAnd6ThGrade,Population With 5th And 6th Grade Educational Attainment Aged 25 Years;Population: 5th And 6th Grade;the fifth and sixth grade population -Count_Person_Years25Onwards_EducationalAttainment_7ThAnd8ThGrade,7th And 8th Graders;7th and 8th grade students;Population: 7th And 8th Grade;seventh and eighth graders;seventh graders and eighth graders;seventh- and eighth-graders -Count_Person_Years25Onwards_EducationalAttainment_NurseryTo4ThGrade,Population in Nursery To 4th Grade;Population: Nursery To 4th Grade;number of children in kindergarten through fourth grade;number of kids in preschool through fourth grade -Count_Person_YearsUpto6_Rural,"Population Aged 6 Years or Less In Rural Areas;Population: 6 Years or Less, Rural;number of people aged 6 years or less living in rural areas;number of people under the age of 6 in rural areas;number of people under the age of 6 living in rural areas;number of rural residents under the age of 6" -Count_Person_YearsUpto6_Rural_Female,"Female Population Aged 6 Years or Less in Rural;Population: 6 Years or Less, Female, Rural;female population under 6 in rural areas;number of female children under 6 in rural areas;number of girls under 6 in rural areas;number of rural girls under 6" -Count_Person_YearsUpto6_Rural_Male,"1 number of boys under 6 in rural areas;2 rural male population under 6;4 male population under 6 in rural areas (rural);5 population of boys under 6 in rural areas;Male Population Aged 6 Years or Less in Rural Areas;Population: 6 Years or Less, Male, Rural" -Count_Person_YearsUpto6_Urban,"Population Aged 6 Years or Less in Urban Areas;Population: 6 Years or Less, Urban;number of people living in urban areas who are under 6 years old;number of people under 6 years old in urban areas;number of people under the age of 6 living in cities;number of urban residents under 6 years old" -Count_Person_YearsUpto6_Urban_Female,"Population: 6 Years or Less, Female, Urban;Urban Female Population Aged Below 6 Years Old;girls under 6 living in cities;the number of girls living in cities who are not yet 6 years old;the number of girls living in cities who are younger than 6 years old;the population of urban females under the age of 6" -Count_Person_YearsUpto6_Urban_Male,"6-year-old boys in cities;6-year-old males living in cities;Males Aged 6 Years Old In Urban Areas;Population: 6 Years or Less, Male, Urban;boys aged 6 in urban areas;urban 6-year-old males" -Count_PrescribedFireEvent,Count of Prescribed Fire Event;Population With Prescribed Fire Events;number of prescribed burns;number of prescribed fire events -Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Mobile Subscriptions Per Capita;Number of Mobile Phone Subscriptions Per Person in a Population;Number of cell phone plans per person;Number of mobile phone subscriptions per person;Number of mobile phone subscriptions per person in a population;Number of mobile phones per person;Number of people with cell phone service;Number of people with mobile phone coverage;Number of phones per person;Percentage of people with a cellphone;Phones per capita;The number of cell phones per person;The number of phones per person;cellphone posession rate;mobile phone penetration rate;mobile phone subscription per capita;mobile phone subscription rate;mobile phone subscriptions per 100 people -Count_RipCurrentEvent,Count of Rip Current Event;Rip Current Events;frequency of rip currents;number of rip current events;number of rip currents;number of times a rip current occurred -Count_School_SeniorSecondarySchool_Grade1To10,Numer of secondary schools;number of senior secondary schools;secondary school count;senior secondary schools -Count_SolarInstallation,Count of Solar Installation;The amount of solar energy systems;The number of solar arrays;The number of solar panels in use;The total number of solar installations;The total number of solar power systems;Total Number of Solar Installations;Total number of solar installations;count of solar installations;how much solar is here;number of solar installations;number of solar installations in the area;number of solar panels installed;solar energy installations;solar panel installations;the total number of solar PV systems installed;the total number of solar energy systems installed;the total number of solar panels installed;the total number of solar photovoltaic systems installed;the total number of solar power systems installed;total solar installations;which place has the most solar installations in -Count_SolarInstallation_Commercial,Commercial Solar Installation;Count of Solar Installation: Commercial;commercial solar panel installation;commercial solar power installation;solar panel installation for businesses;solar power installation for businesses -Count_SolarInstallation_Residential,Count of Solar Installation: Residential;Residential Solar Installations;getting solar panels for your home;installing solar panels on a residential property;putting solar panels on a house;solar panel installation for homes -Count_SolarInstallation_UtilityScale,Count of Solar Installation: Utility Scale;Utility Scale Solar Installations;large-scale solar power plants -Count_SolarThermalInstallation_NonUtility,Count of Solar Thermal Installation: Non Utility;Non-Utility Solar Thermal Installations;non-utility solar thermal systems;solar thermal systems for non-commercial purposes;solar thermal systems for non-utility purposes;solar thermal systems for residential use -Count_StormSurgeTideEvent,Count of Storm Surge Tide Event;Storm Surge Tide Events;frequency of storm surge tide events;how many storm surge tide events have there been?;how often do storm surge tide events occur?;number of storm surge tide events -Count_StrongWindEvent,Count of Strong Wind Event;Strong Wind Events;frequency of strong wind events;how many strong wind events have there been?;how often do strong winds occur?;number of strong wind events -Count_Student,Count of Student;Student Population -Count_Student_AdultEducation,Count of Student: Adult Education;Students Receiving Adult Education -Count_Student_AdultEducation_PrivateSchool,"Count of Student: Adult Education, Private School" -Count_Student_AdultEducation_PublicSchool,"Count of Student: Adult Education, Public School" -Count_Student_Asian,Asian Students;Count of Student: Asian -Count_Student_BRAHighSchool,Count of Student: BRA_High School -Count_Student_BRAHighSchool_PrivateSchool,"Count of Student: BRA_High School, Private School" -Count_Student_BRAHighSchool_PublicSchool,"Count of Student: BRA_High School, Public School" -Count_Student_BachelorsDegree,Count of Student: Bachelors Degree -Count_Student_BachelorsDegree_PrivateSchool,"Count of Student: Bachelors Degree, Private School" -Count_Student_BachelorsDegree_PublicSchool,"Count of Student: Bachelors Degree, Public School" -Count_Student_Black,Black Students;Count of Student: Black -Count_Student_BrazilPreVestibular,Count of Student: Brazil_Pre Vestibular -Count_Student_Female,Count of Student: Female;Population of Female Students -Count_Student_HawaiianNativeOrPacificIslander,Count of Student: Hawaiian Native or Pacific Islander;Hawaiian Native or Pacific Islander Students -Count_Student_HispanicOrLatino,Count of Student: Hispanic or Latino;Hispanic Students -Count_Student_LiteracyCourse_PrivateSchool,"Count of Student: Literacy Course, Private School" -Count_Student_LiteracyCourse_PublicSchool,"Count of Student: Literacy Course, Public School" -Count_Student_Male,Count of Student: Male;Male Students -Count_Student_MastersDegreeOrHigher,Count of Student: Masters Degree or Higher -Count_Student_MastersDegreeOrHigher_PrivateSchool,"Count of Student: Masters Degree or Higher, Private School" -Count_Student_MastersDegreeOrHigher_PublicSchool,"Count of Student: Masters Degree or Higher, Public School" -Count_Student_Nursery,Count of Student: Nursery -Count_Student_Nursery_PrivateSchool,"Count of Student: Nursery, Private School" -Count_Student_Nursery_PublicSchool,"Count of Student: Nursery, Public School" -Count_Student_PreKindergarten,"Count of Student: Pre Kindergarten, Pre Kindergarten;Students, Pre Kindergarten" -Count_Student_PreKindergarten_PrivateSchool,"Count of Student: Pre Kindergarten, Private School" -Count_Student_PreKindergarten_PublicSchool,"Count of Student: Pre Kindergarten, Public School" -Count_Student_PrimaryEducation,Count of Student: Primary Education -Count_Student_PrimaryEducation_PrivateSchool,"Count of Student: Primary Education, Private School" -Count_Student_PrimaryEducation_PublicSchool,"Count of Student: Primary Education, Public School" -Count_Student_PrivateSchool,Count of Student: Private School -Count_Student_PublicSchool,Count of Student: Public School -Count_Student_TwoOrMoreRaces,Count of Student: Two or More Races;Total of Multiracial Students -Count_Student_White,Count of Student: White;Number of White Students -Count_Teacher,Educators;Faculty;Professors;School instructors;Teachers;count of educators;educational instructors;educators;how many teachers are there;instructors;number of teachers;professors;tutors -Count_Teacher_ElementaryTeacher,Count of Teacher: Elementary Teacher;Elementary Teachers -Count_Teacher_SecondaryTeacher,Count of Teacher: Secondary Teacher;Number of Secondary Teachers -Count_Teacher_UngradedTeacher,Count of Teacher: Ungraded Teacher;Ungraded Teachers -Count_Teacher_UniversityAndCollegeTeacher,Count of Teacher: University And College Teacher -Count_ThunderstormWindEvent,Count of Thunderstorm Wind Event;Thunderstorm Wind Events;number of thunderstorm wind events;thunderstorm wind event count;thunderstorm wind event tally;thunderstorm wind event total -Count_TornadoEvent,Count of Tornado Event;Tornado Events;number of tornado events;number of tornadoes;tornado count;tornado occurrences -Count_TropicalStormEvent,Count of Tropical Storm Event -Count_UnemploymentInsuranceClaim_ShortTimeCompensation,Count of Unemployment Insurance Claim: Short Time Compensation;Unemployment Insurance Claim Short Time Compensation;short-time work allowance;unemployment insurance for reduced hours -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim,"Count of Unemployment Insurance Claim: Short Time Compensation, Continued Claim;Short Time Compensation of Continued Unemployment Insurance Claims;short-term compensation for continued unemployment benefits;short-term compensation for continued unemployment insurance claims;short-term compensation for continued unemployment payments" -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ContinuedClaim_ScaledForPartTimeUnemploymentBenefits,"Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation, Continued Claim" -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim,"1 claims for unemployment benefits;4 filing for unemployment;5 making a claim for unemployment;Count of Unemployment Insurance Claim: Short Time Compensation, Initial Claim;Unemployment Insurance Claims;claims for unemployment benefits" -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_InitialClaim_ScaledForPartTimeUnemploymentBenefits,"Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation, Initial Claim;Short-Time Compensation Initial Unemployment Insurance Claims;initial claims for partial unemployment benefits;initial claims for reduced work hours;initial claims for short-time compensation;initial claims for temporary layoffs" -Count_UnemploymentInsuranceClaim_ShortTimeCompensation_ScaledForPartTimeUnemploymentBenefits,Count of Unemployment Insurance Claim;Count of Unemployment Insurance Claim (Scaled for Part Time Unemployment Benefits): Short Time Compensation -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,Number of State Unemployment Insurance Claims;Number of people who filed for unemployment benefits in the states;Number of people who filed for unemployment insurance in the states;Number of state unemployment insurance claims;Number of state unemployment insurance claims for unemployment insurance;Number of unemployment claims filed in each state;Number of unemployment claims filed in the states;number of people who filed for state unemployment benefits;number of people who filed for unemployment benefits in the states;number of people who filed for unemployment in the states;number of unemployment claims filed in the states -Count_UnemploymentInsuranceClaim_StateUnemploymentInsuranceOrShortTimeCompensation_ContinuedClaim_MovingAverage1WeekWindow,"Count of Unemployment Insurance Claim (Moving Average 1 Week Window): State Unemployment Insurance or Short Time Compensation, Continued Claim;State Unemployment Insurance Or Short Time Compensation Moving Average 1 Week Window;the average number of state unemployment insurance or short-time compensation continued claims over the past 7 days;the number of people who are still receiving state unemployment insurance or short-time compensation, on average, over the past 7 days;the number of people who have filed for state unemployment insurance or short-time compensation in the past 7 days, on average;the number of state unemployment insurance or short-time compensation continued claims, moving average over 1 week" -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_ContinuedClaim,"Count of Unemployment Insurance Claim: State Unemployment Insurance, Continued Claim;State Unemployment Insurance;state-level unemployment insurance;state-run unemployment benefits;unemployment benefits provided by the state;unemployment insurance from the state" -Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance_InitialClaimExcludingIntrastateTransitional,"Count of Unemployment Insurance Claim: State Unemployment Insurance, Initial Claim Excluding Intrastate Transitional;State Unemployment Insurance Initial Claim Excluding Intrastate Transitional;initial claims for state unemployment insurance excluding intrastate transitional;number of initial claims for state unemployment insurance excluding intrastate transitional;number of state unemployment insurance claims, initial claims excluding intrastate transitional;state unemployment insurance initial claims excluding intrastate transitional" -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance,Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees;Unemployment Compensation for Federal Employees;benefits for federal employees who have lost their jobs;compensation for federal employees who are out of work;federal unemployment benefits;unemployment insurance for federal workers -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_ContinuedClaim,"Continued Claims of Unemployment Compensation for Federal Employees;Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees, Continued Claim;claims for continued federal unemployment compensation;continued claims for federal unemployment compensation;federal unemployment compensation claims continued;federal unemployment compensation continued claims" -Count_UnemploymentInsuranceClaim_UCFENoStateUnemploymentInsurance_InitialClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Federal Employees, Initial Claim;Unemployment Compensation for Federal Employees Claims;claiming unemployment as a federal employee;claims for unemployment compensation for federal employees;federal employee unemployment claims;federal employee unemployment compensation claims" -Count_UnemploymentInsuranceClaim_UCXOnly,Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers;Unemployment Insurance Claims UCX Only;count of unemployment insurance claims for ex-servicemembers;number of unemployment claims for ex-servicemembers;number of unemployment compensation claims for ex-servicemembers;number of unemployment insurance claims for unemployment compensation for ex-servicemembers -Count_UnemploymentInsuranceClaim_UCXOnly_ContinuedClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers, Continued Claim;Unemployment Insurance Claims for Ex-Service Members;claims for unemployment insurance by ex-service members;unemployment assistance for ex-service members;unemployment assistance for former service members;unemployment benefits for ex-military personnel" -Count_UnemploymentInsuranceClaim_UCXOnly_InitialClaim,"Count of Unemployment Insurance Claim: Unemployment Compensation for Ex-servicemembers, Initial Claim;Unemployment Compensation for Ex-servicemembers With Initial Claims;unemployment assistance for ex-servicemembers who are filing their first claim;unemployment assistance for ex-servicemembers who are making their first claim;unemployment benefits for former service members who are filing a claim for the first time;unemployment help for ex-servicemembers who are making their first application" -Count_VolcanicAshEvent,Volcanic activity;Volcanic eruptions;Volcanic events;Volcanic outbursts;Volcanic phenomena;Volcano Events;eruptions of volcanoes;how many times has a volcano exploded;volcanic activity;volcanic ash events;volcanic eruptions;volcanic events;volcanic outbursts -Count_WasteGenerated_Processed_AsAFractionOf_Count_WasteGenerated,Waste processed (%);percentage of waste processed -Count_WaterspoutEvent,Count of Waterspout Event;Water Spout Events;how many waterspouts have been reported;how many waterspouts have occurred;number of waterspout events;waterspout count -Count_WetBulbTemperatureEvent,Count of Wet Bulb Temperature Event;Wet Bulb Temperature Events;number of wet bulb temperature events;wet bulb temperature event count;wet bulb temperature event frequency;wet bulb temperature event occurrence -Count_WildfireEvent,Count of Wildfire Event;How many wildfires have started;How many wildfires have there been;Number of Wildfires;Number of bush fires;Number of fires that are wildfires;Number of forest fires;Number of vegetation fires;Number of wild fires;Number of wildfire events;Number of wildfires;Wildfire count;how many wildfires have been reported?;how many wildfires have occurred?;how many wildfires have there been?;what is the number of wildfires? -Count_WildlandFireEvent,Count of Wildland Fire Event;Wildland Fire Events;number of wildland fire events;number of wildland fire incidents;number of wildland fire occurrences;wildland fire count -Count_WinterStormEvent,Count of Winter Storm Event;Wind Storm Events;winter storm events;winter storm frequency;winter storm incidents;winter storm occurrence -Count_WinterWeatherEvent,Count of Winter Weather Event;Winter Weather Events;frequency of winter weather events;number of winter weather events;winter weather event tallies;winter weather event totals -Count_Worker_NAICSAccommodationFoodServices,How many people work in accommodation and food services?;How many people work in the accommodation and food services industry;Number of people who work in accommodation and food services;Number of people working in the accommodation and food services industry;Population of People Working in the Accommodation and Food Services Industry;Population of Person: Accommodation And Food Services (NAICS/72);Population of people working in the accommodation and food services industry;The number of people employed in the accommodation and food services sector;The population of the accommodation and food services labor force;The size of the workforce in the accommodation and food services field;how many people are employed in the accommodation and food services sector?;how many people work in the accommodation and food services industry?;number of accommodation and food services workers;what is the number of people employed in the accommodation and food services industry?;what is the workforce size of the accommodation and food services industry? -Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,How many people work in administrative and support and waste management services?;Population of People Working in the Administrative and Support and Waste Management Services Industry;Population of Person: Administrative And Support And Waste Management Services (NAICS/56);Population of people working in the administrative and support and waste;Population of people working in the administrative and support and waste management services industry;The number of people who work in administrative and support and waste management services;administrative and support and waste management services workers;administrative and support workers in waste management services;number of administrative and support and waste management services workers;number of people employed in administrative and support and waste management services;number of people employed in the administrative and support and waste management services industry;number of people working in administrative and support and waste management services;number of people working in the administrative and support and waste management services industry;waste management services workers -Count_Worker_NAICSAgricultureForestryFishingHunting,"Employment numbers in forestry, fishing, and hunting;How many people work in agriculture;How many people work in agriculture, forestry, fishing, and hunting?;Number of agricultural, forestry, fishing and hunting workers;Number of people employed in ag, forestry, fishing, and hunting;Number of people employed in agriculture, forestry, fishing and hunting;Number of people employed in agriculture, forestry, fishing, and hunting;Number of people in agriculture, forestry, fishing and hunting jobs;Number of people in agriculture, forestry, fishing, and hunting jobs;Number of people in the agriculture, forestry, fishing, and hunting industry;Number of people working in ag, forestry, fishing, and hunting;Number of people working in agriculture, forestry, fishing and hunting;Number of workers in ag, forestry, fishing, and hunting;Number of workers in agriculture, forestry, fishing, and hunting;People working in agriculture, forestry, fishing, and hunting field.;Population Working in the Agriculture, Forestry, Fishing, and Hunting Industry;Population of Person: Agriculture, Forestry, Fishing And Hunting (NAICS/11);Population of people working in the agriculture, forestry, fishing, and hunting industry;Population working in agriculture, forestry, fishing, and hunting;Total number of agriculture, forestry, fishing and hunting employees;Workforce size for agriculture, forestry, fishing, and hunting;number of agriculture, forestry, fishing and hunting workers;number of people employed in the agriculture, forestry, fishing, and hunting industry;number of people working in agriculture, forestry, fishing, and hunting;people employed in agriculture, forestry, fishing, and hunting;workers in agriculture, forestry, fishing, and hunting" -Count_Worker_NAICSArtsEntertainmentRecreation,"Employment numbers in entertainment and recreation;How many people work in the arts;How many people work in the arts, entertainment, and recreation industries?;How many people work in the arts, entertainment, and recreation industry?;Number of people employed in the arts, entertainment, and recreation sector;People working in arts, entertainment, and recreation field.;Population of People Working in the Arts, Entertainment, and Recreation Industry;Population of Person: Arts, Entertainment, And Recreation (NAICS/71);Population of people working in the arts, entertainment, and recreation industry;The number of people who work in the arts, entertainment, and recreation industries;Workforce size for arts, entertainment, and recreation;number of arts, entertainment, and recreation workers;number of people employed in the arts, entertainment, and recreation industry;number of people who have jobs in the arts, entertainment, and recreation industry;number of people who work in the arts, entertainment, and recreation industry;number of people working in the arts, entertainment, and recreation industry" -Count_Worker_NAICSConstruction,Employment numbers in construction;How many construction workers are there?;How many people work in construction;How many people work in construction?;People working in construction field.;Population of People Working in the Construction Industry;Population of Person: Construction (NAICS/23);Population of people working in the construction industry;Workforce size for construction;how many people are employed in construction?;how many people work in the construction industry?;number of construction workers;what is the number of people employed in the construction industry?;what is the workforce of the construction industry? -Count_Worker_NAICSEducationalServices,Employment numbers in educational services;How many people work in the education field;Number of people who work in education;People working in the education field.;Population of People Working in the Educational Services Industry;Population of Person: Educational Services (NAICS/61);Population of people working in the educational services industry;The number of people who are employed in the education sector;The number of people who are employed in the field of education;The number of people who work in education;The number of people who work in the educational services industry;Workforce size for educational services;number of educational services workers;number of people employed in the educational services sector;number of people working in the field of education -Count_Worker_NAICSFinanceInsurance,Employment numbers in the finance and insurance industry;How many people work in finance and insurance?;Number of individuals employed in the finance and insurance sector;Number of people working in finance and insurance;People working in the finance and insurance field;Population of People Working in the Finance and Insurance Industry;Population of Person: Finance And Insurance (NAICS/52);Population of people working in the finance and insurance industry;The number of people employed in finance and insurance;The number of people who work in finance and insurance;Workforce size for the finance and insurance industry;how many people are employed in the finance and insurance industry;how many people work in the finance and insurance industry;number of finance and insurance workers;number of people working in the finance and insurance industry;the number of people who work in finance and insurance;what is the workforce size of the finance and insurance industry -Count_Worker_NAICSGoodsProducing,People in Goods-producing Industries;Population of Person: Goods-producing (NAICS/101);people who make things;people who produce goods;people who work in factories;people who work in the manufacturing sector -Count_Worker_NAICSHealthCareSocialAssistance,Employment numbers in the health care and social assistance industry;Number of individuals employed in the health care and social assistance sector;People working in the health care and social assistance field;Population of People Working in the Health Care and Social Assistance Industry;Population of Person: Health Care And Social Assistance (NAICS/62);Population of people working in the health care and social assistance industry;Workforce size for the health care and social assistance industry;how many people work in the health care and social assistance industry;number of health care and social assistance workers;number of people working in the health care and social assistance industry;the number of healthcare and social assistance employees;the number of people employed in healthcare and social assistance;the number of people who work in healthcare and social assistance;the number of people who work in the healthcare and social assistance industry;the number of people who work in the healthcare and social assistance sector;what is the number of people employed in the health care and social assistance industry;what is the population of people working in the health care and social assistance industry -Count_Worker_NAICSInformation,Employment numbers in the information industry;Number of individuals employed in the information sector;People working in the information field;Population of People Working in the Information Industry;Population of Person: Information (NAICS/51);Population of people working in the information industry;Workforce size for the information industry;number of information workers;number of people employed in information technology;number of people employed in the information industry;number of people who work in information technology;number of people who work in the digital economy;number of people who work in the information sector;number of people who work in the knowledge economy;number of people who work with information;number of people working in information technology;number of people working in the information industry -Count_Worker_NAICSManagementOfCompaniesEnterprises,Employment numbers in the management of companies and enterprises industry;Number of individuals employed in the management of companies and enterprises sector;Number of people who manage companies and enterprises;People working in the management of companies and enterprises field;Population of People Working in the Management of Companies and Enterprises Industry;Population of Person: Management of Companies And Enterprises (NAICS/55);Population of people working in the management of companies and enterprises industry;Workforce size for the management of companies and enterprises industry;number of employees in management of companies and enterprises;number of management of companies and enterprises workers;number of managers in companies and enterprises;number of people who are in charge of companies and enterprises;number of people who manage companies and enterprises;number of people who work in management positions in companies and enterprises;number of people working in management of companies and enterprises;size of the workforce in management of companies and enterprises;workforce in management of companies and enterprises -Count_Worker_NAICSMiningQuarryingOilGasExtraction,"1 number of people employed in the mining, quarrying, and oil and gas extraction industry;2 number of people working in the mining, quarrying, and oil and gas extraction sector;3 size of the workforce in the mining, quarrying, and oil and gas extraction industry;4 number of people who work in the mining, quarrying, and oil and gas extraction industry;Employment numbers in the mining, quarrying, and oil and gas extraction industry;Number of individuals employed in the mining, quarrying, and oil and gas extraction sector;People working in the mining, quarrying, and oil and gas extraction field;Population of People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry;Population of Person: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Population of people working in the mining, quarrying, and oil and gas extraction industry;Workforce size for the mining, quarrying, and oil and gas extraction industry;number of mining, quarrying, and oil and gas extraction workers;the number of people who are employed in the mining, quarrying, and oil and gas extraction occupations;the number of people who are employed in the mining, quarrying, and oil and gas extraction sectors;the number of people who have jobs in the mining, quarrying, and oil and gas extraction fields;the number of people who work in the mining, quarrying, and oil and gas extraction industries;the number of people who work in the mining, quarrying, and oil and gas extraction trades" -Count_Worker_NAICSNonclassifiable,Employment numbers in unclassified industries;Individuals employed in unclassified sectors;Number of Workers Whose Industry is Non-Classifiable;Number of unclassified workers;People working in unclassified fields;Population of Person: Unclassified (NAICS/99);Workforce size for unclassified industries;number of unclassified workers;number of workers in industries that are not classified;number of workers in industries that cannot be classified;number of workers in non-classifiable industries;number of workers in unclassifiable industries;number of workers in unclassified industries -Count_Worker_NAICSOtherServices,"Employment numbers in the other services industry;Number of individuals employed in the other services sector;Number of workers in non-public services;People working in the other services field;Population of People Working in Other Services, Except Public Administration;Population of Person: Other Services, Except Public Administration (NAICS/81);Population of people working in other services, except public administration;Workforce size for the other services industry;number of people employed in non-public administration services;number of people employed in other services, excluding public administration;number of people working in non-public administration services;number of people working in other services, excluding public administration;number of workers in other services except public administration" -Count_Worker_NAICSProfessionalScientificTechnicalServices,"Employment numbers in the professional, scientific, and technical services industry;Individuals employed in the professional, scientific, and technical services sector;Number of Professional, Scientific, and Technical Services Workers;Number of people who work in professional, scientific, and technical services;Number of professional, scientific, and technical services workers;Number of workers in professional, scientific, and technical services;People working in the professional, scientific, and technical services field;Population of Person: Professional, Scientific, And Technical Services (NAICS/54);The number of people employed in professional, scientific, and technical services;The number of people who work in professional, scientific, and technical services;Workforce size for the professional, scientific, and technical services industry;number of people employed in professional, scientific, and technical services;number of people working in professional, scientific, and technical services;number of professional, scientific, and technical service employees;number of professional, scientific, and technical service workers;number of professional, scientific, and technical services workers" -Count_Worker_NAICSPublicAdministration,Employment numbers in the public administration industry;Individuals employed in the public administration sector;Number of Public Administration Workers;Number of people employed in government;Number of people working for the government;Number of people working in public administration;Number of public administration workers;Number of public servants;People working in the public administration field;Population of Person: Public Administration (NAICS/92);The number of people who work in public administration;Workforce size for the public administration industry;how many people are employed in public administration?;how many people work in public administration?;number of public administration workers;what is the number of public administration workers?;what is the workforce of public administration? -Count_Worker_NAICSRealEstateRentalLeasing,Employment numbers in the real estate and rental and leasing industry;Individuals employed in the real estate and rental and leasing sector;Number of Real Estate and Rental and Leasing Workers;Number of real estate and rental and leasing workers;People working in the real estate and rental and leasing field;Population of Person: Real Estate And Rental And Leasing (NAICS/53);Workforce size for the real estate and rental and leasing industry;how many people are employed in real estate and rental and leasing?;how many people work in real estate and rental and leasing?;number of people employed in real estate and rental and leasing;number of people employed in the real estate and rental and leasing industry;number of people working in real estate and rental and leasing;number of real estate and rental and leasing employees;number of real estate and rental and leasing workers;what is the number of real estate and rental and leasing workers?;what is the workforce size of real estate and rental and leasing? -Count_Worker_NAICSServiceProviding,Population of Person: Service-providing (NAICS/102);Workers in Service-Providing Industries;employees in the service sector;people who work in service industries;service industry workers;service workers -Count_Worker_NAICSTotalAllIndustries,"1 The total number of workers in all industries;Employment numbers in all industries;Individuals employed in all sectors;Number of Workers in All Industries;Number of workers in all industries;People working in all fields;Population of Person: Total, All Industries (NAICS/10);The total number of workers in all industries;Workforce size for all industries;number of people with jobs;number of people working in all sectors of the economy;number of total, all industries workers;total number of people employed;total number of people employed in all industries;total number of workers in all industries;total workforce" -Count_Worker_NAICSUtilities,Employment numbers in the utilities industry;Individuals employed in the utilities sector;Number of Utilities Workers;Number of utilities workers;People working in the utilities field;Population of Person: Utilities (NAICS/22);The number of people who work in utilities;Workforce size for the utilities industry;how many people are employed in the utilities sector?;how many people work in utilities?;number of people who are employed in utilities;number of people who have jobs in utilities;number of people who work in the utilities industry;number of people who work in utilities;number of utilities workers;what is the number of people employed in utilities?;what is the workforce size of the utilities industry? -Count_Worker_NAICSWholesaleTrade,1 how many people work in wholesale trade?;2 what is the number of wholesale trade workers?;3 what is the workforce of wholesale trade?;4 how many people are employed in wholesale trade?;Employment numbers in the wholesale trade industry;Individuals employed in the wholesale trade sector;Number of Wholesale Trade Workers;Number of wholesale trade workers;People working in the wholesale trade field;Population of Person: Wholesale Trade (NAICS/42);Workforce size for the wholesale trade industry;number of people employed in wholesale trade;number of people working in wholesale trade;number of wholesale trade employees;number of wholesale trade workers;number of workers in the wholesale trade industry -Covid19MobilityTrend_GroceryStoreAndPharmacy,Covid 19 Mobility Trend in Grocery Store And Pharmacy;Covid 19 Mobility Trend of Mobility Trend: Grocery Store & Pharmacy;grocery store and pharmacy visits have increased since the start of the covid-19 pandemic;more people are going to the grocery store and pharmacy now than they were before the covid-19 pandemic;people are going to the grocery store and pharmacy more often during the covid-19 pandemic;there has been an increase in the number of people going to the grocery store and pharmacy since the start of the covid-19 pandemic -Covid19MobilityTrend_LocalBusiness,Covid 19 Mobility Trend in Local Business;Covid 19 Mobility Trend of Mobility Trend: Local Business;how has the covid-19 pandemic affected local businesses?;how have local businesses been affected by covid-19?;what has been the impact of covid-19 on local businesses?;what has covid-19 done to local businesses? -Covid19MobilityTrend_Park,Covid 19 Mobility Trend Park;Covid 19 Mobility Trend of Mobility Trend: Park;changes in park usage during covid-19;covid-19 mobility trends for parks;how covid-19 has affected park usage;how people are moving around parks during covid-19 -Covid19MobilityTrend_Residence,Covid 19 Mobility Trend of Mobility Trend: Residence;Covid19 Mobility Trend Residence;how has mobility changed in relation to residence during the covid-19 pandemic?;how has the way people move around changed in relation to their residence during the covid-19 pandemic?;what are the changes in the way people move around in relation to their residence during the covid-19 pandemic?;what are the trends in mobility in relation to residence during the covid-19 pandemic? -Covid19MobilityTrend_TransportHub,Covid 19 Mobility Trend Transport Hub;Covid 19 Mobility Trend of Mobility Trend: Transport Hub;how has mobility changed at transport hubs during the covid-19 pandemic?;how has the use of transport hubs changed during the covid-19 pandemic?;what are the changes in the use of transport hubs during the covid-19 pandemic?;what are the trends in mobility at transport hubs during the covid-19 pandemic? -Covid19MobilityTrend_Workplace,Covid 19 Mobility Trend Workplace;Covid 19 Mobility Trend of Mobility Trend: Workplace;changes in how people have been getting to and from work during the covid-19 pandemic;how people have been moving around for work during the covid-19 pandemic;the impact of the covid-19 pandemic on workplace mobility;workplace mobility trends during the covid-19 pandemic -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedCase,"Confirmed Cases of Covid 19 Incidents;Cumulative Count of Medical Condition Incident: COVID-19, Confirmed Case;covid-19 cases reported" -CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,Cumulative Count of COVID-19 Cases;Cumulative count of confirmed or probable COVID-19 cases;Number of COVID-19 cases reported to date;Number of people who have been infected with COVID-19;Sum of all COVID-19 cases;Total number of COVID-19 cases;accumulated number of covid-19 cases;running total of covid-19 cases;sum of all covid-19 cases;total number of covid-19 cases -CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,Cumulative Count of COVID-19 Deaths;Cumulative count of COVID-19 patient deaths;The total number of people who have died from COVID-19;Total number of COVID-19 deaths;covid-19 death count;death toll from covid-19;number of people who have died from covid-19;total number of covid-19 deaths -CumulativeCount_MedicalTest_ConditionCOVID_19,Cumulative Count of Medical Test: COVID-19;Cumulative Covid 19 Medical Test;cumulative number of covid-19 tests;number of covid-19 tests performed to date;sum of all covid-19 tests ever done;total number of covid-19 tests conducted -CumulativeCount_Vaccine_COVID_19_Administered,"Cumulative Count of Vaccine: COVID-19, Vaccine Administered;Number of COVID-19 shots given;Number of COVID-19 vaccine doses administered;Number of COVID-19 vaccine shots given;Number of COVID-19 vaccines administered;Number of doses administered;Number of people vaccinated against COVID-19;Number of people who have received a COVID-19 vaccine;Number of people who have received the COVID-19 vaccine;Total Number of COVID-19 Vaccines Administered;Total number of COVID-19 vaccinations;Total number of COVID-19 vaccinations given out;Total number of COVID-19 vaccines administered;Total number of covid vaccines administered;number of covid-19 vaccinations;number of covid-19 vaccine doses administered;number of covid-19 vaccines given;number of people who have received covid-19 vaccines" -DewPointTemperature_SurfaceLevel,Dew Point Temperature Surface Level;Dew Point Temperature: Surface Level;dew point at the surface;dew point temperature at ground level;dew point temperature at the surface;surface dew point -ExchangeRate_Currency_Standardized,"Exchange Rate, Standardized;Standardized Exchange Rates;cross rates;exchange rates between currencies;foreign exchange rates;international exchange rates" -Expenses_Farm,Expenses of Farm;Farm expenses;The total cost of running a farm;Total Farm Expenses;Total expenses incurred by a farm;the sum of all the costs associated with running a farm;the total amount of money spent on a farm;the total amount of money spent on farming;the total cost of doing business on a farm;the total cost of running a farm;total Farm expenses;total cost of farming -Exports_EconomicActivity_Cereals,Cereal Exports;cereal export;export of cereals;exports of cereals -Exports_EconomicActivity_CrudeOils,Crude Oil Exports;crude oil export;crude oil exports;export of crude oil;exports of oils -Exports_EconomicActivity_ElectronicComponents,Electronics Components Exports;electronic components export;export of electronics;exports of electronic components -Exports_EconomicActivity_IronAndSteel,Iron and Steel Exports;export of iron and steel;exports of iron and steel;iron and steel export;iron steel export -Exports_EconomicActivity_Pharmaceutical,Pharmaceutical Exports;export of pharmaceuicals;exports of pharmaceuticals;pharmaceutical export -FemaCommunityResilience_NaturalHazardImpact,FEMA Community Resilience to Natural Hazard Impact;Fema Community Resilience on Natural Hazard Impact;how communities can prepare for and recover from natural disasters;how to build community resilience to natural disasters;how to make communities more resistant to natural disasters;how to make communities more sustainable in the face of natural disasters -FemaNaturalHazardRiskIndex_NaturalHazardImpact,"FEMA National Risk Index for Natural Hazard Impact;Fema Natural Hazard Risk Index on Natural Hazard Impact;fema's national risk index for natural hazard impact;the national risk index for natural hazard impact from fema;the national risk index for natural hazard impact, as calculated by fema;the national risk index for natural hazard impact, which is used by fema" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_AvalancheEvent,FEMA National Risk Index for Natural Hazard Impact: Avalanche;Fema Natural Hazard Risk Index on Natural Hazard Impact With Avalanche Events;avalanche hazard index;avalanche hazard rating;avalanche risk index;avalanche risk rating -FemaNaturalHazardRiskIndex_NaturalHazardImpact_CoastalFloodEvent,FEMA National Risk Index for Natural Hazard Impact: Coastal Flood;Fema Natural Hazard Risk Index on Natural Hazard Impact With Coastal Flood Events;fema's national risk index for coastal flood;the fema national risk index for coastal flooding;the fema national risk index for coastal flooding impact;the fema national risk index for coastal flooding risk -FemaNaturalHazardRiskIndex_NaturalHazardImpact_ColdWaveEvent,FEMA National Risk Index for Natural Hazard Impact: Cold Wave;Fema Natural Hazard Risk Index on Natural Hazard Impact With Cold Wave Events;fema's assessment of the risk of cold waves;fema's national risk index for the impact of cold waves;the national risk index for cold waves from fema;the risk of cold waves from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_DroughtEvent,FEMA National Risk Index for Natural Hazard Impact: Drought;Fema Natural Hazard Risk Index on Natural Hazard Impact With Drought Events;fema national risk index for natural hazard impact: drought;fema's national risk index for drought impact;fema's national risk index for natural hazard impact: drought;fema's national risk index for natural hazard impacts: drought -FemaNaturalHazardRiskIndex_NaturalHazardImpact_EarthquakeEvent,FEMA National Risk Index for Natural Hazard Impact: Earthquake;Fema Natural Hazard Risk Index on Natural Hazard Impact With Earthquake Events;fema's national risk index for earthquake impact;fema's national risk index for natural hazard impact: earthquake;the fema national risk index for earthquakes;the national risk index for earthquakes from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HailEvent,FEMA National Risk Index for Natural Hazard Impact: Hail;Fema Natural Hazard Risk Index on Natural Hazard Impact With Hali Events;fema's national risk index for hail;the fema national risk index for hail damage;the national risk index for hail damage from fema;the national risk index for hail from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HeatWaveEvent,FEMA National Risk Index for Natural Hazard Impact: Heat Wave;Fema Natural Hazard Risk Index on Natural Hazard Impact With Heat Wave Events;fema's national risk index for the impact of extreme heat;fema's national risk index for the impact of heat waves;the fema national risk index for the impact of extreme heat;the fema national risk index for the impact of heat stress -FemaNaturalHazardRiskIndex_NaturalHazardImpact_HurricaneEvent,FEMA National Risk Index for Natural Hazard Impact: Hurricane;Fema Natural Hazard Risk Index on Natural Hazard Impact With Hurricane Events;fema's national risk index for hurricane impact;the fema national risk index for hurricane impact;the national risk index for hurricane impact from fema;what is the risk of a hurricane in a particular area -FemaNaturalHazardRiskIndex_NaturalHazardImpact_IceStormEvent,"FEMA National Risk Index for Natural Hazard Impact: Ice Storm;Fema Natural Hazard Risk Index on Natural Hazard Impact With Ice Storm Events;fema's national risk index for the impact of ice storms;the impact of ice storms on the united states, as calculated by fema;the national risk index for ice storms, as calculated by fema;the risk of ice storms, as calculated by fema" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LandslideEvent,FEMA National Risk Index for Natural Hazard Impact: Landslide;Fema Natural Hazard Risk Index on Natural Hazard Impact With Landslide Events;the fema national risk index for landslide hazards;the fema national risk index for landslide impact;the fema national risk index for landslide risks;the fema national risk index for landslide threats -FemaNaturalHazardRiskIndex_NaturalHazardImpact_LightningEvent,FEMA National Risk Index for Natural Hazard Impact: Lightning;Fema Natural Hazard Risk Index on Natural Hazard Impact With Lighting Events;fema national risk index for natural hazard impact: lightning;fema's national risk index for lightning impact -FemaNaturalHazardRiskIndex_NaturalHazardImpact_RiverineFloodingEvent,FEMA National Risk Index for Natural Hazard Impact: Riverine Flooding;Fema Natural Hazard Risk Index on Natural Hazard Impact With Riverine Flooding Events;fema's national risk index for flooding from rivers;fema's national risk index for flooding from rivers and streams;fema's national risk index for river flooding;fema's national risk index for riverine flooding -FemaNaturalHazardRiskIndex_NaturalHazardImpact_StrongWindEvent,FEMA National Risk Index for Natural Hazard Impact: Strong Wind;Fema Natural Hazard Risk Index on Natural Hazard Impact With Strong Wind Events;fema's national risk index for natural hazard impact: strong wind;fema's national risk index for strong wind impact;fema's national risk index for the impact of strong wind;fema's national risk index for the impact of wind -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TornadoEvent,"FEMA National Risk Index for Natural Hazard Impact: Tornado;Fema Natural Hazard Risk Index on Natural Hazard Impact With Tornado Events;fema's assessment of the risk of tornadoes in the united states;fema's national risk index for natural hazard impact: tornado;fema's ranking of the impact of tornadoes on the united states;the national risk index for natural hazard impact: tornado, as determined by fema" -FemaNaturalHazardRiskIndex_NaturalHazardImpact_TsunamiEvent,FEMA National Risk Index for Natural Hazard Impact: Tsunami;Fema Natural Hazard Risk Index on Natural Hazard Impact With Tsunami Events;fema national risk index for natural hazard impact: tsunami;how much of a threat are tsunamis to the united states?;what is the risk of a tsunami in the united states;what is the risk of a tsunami in the united states? -FemaNaturalHazardRiskIndex_NaturalHazardImpact_VolcanicActivityEvent,FEMA National Risk Index for Natural Hazard Impact: Volcanic Activity;Fema Natural Hazard Risk Index on Natural Hazard Impact With Volcanic Activity Events;fema's national risk index for volcanic activity;fema's ranking of the risk of volcanic activity;the national risk index for volcanic activity from fema;the risk of volcanic activity as ranked by fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WildfireEvent,FEMA National Risk Index for Natural Hazard Impact: Wildfire;Fema Natural Hazard Risk Index on Natural Hazard Impact With Wildfire Events;fema's national risk index for wildfire impact;fema's national risk index for wildfire impacts;the national risk index for wildfire impact from fema;the national risk index for wildfire impacts from fema -FemaNaturalHazardRiskIndex_NaturalHazardImpact_WinterWeatherEvent,FEMA National Risk Index for Natural Hazard Impact: Winter Weather;Fema Natural Hazard Risk Index on Natural Hazard Impact With Winter Weather Events;fema national risk index for natural hazard impact: winter weather;fema's ranking of winter weather risk;fema's winter weather risk index;winter weather risk index by fema -FemaSocialVulnerability_NaturalHazardImpact,FEMA Social Vulnerability to Natural Hazard Impact;Fema Social Vulnerability on Natural Hazard Impact;the effects of natural disasters on people who are already at a disadvantage;the impact of natural hazards on socially vulnerable populations;the ways in which natural hazards can exacerbate social inequality;the ways in which natural hazards can worsen the lives of people who are already marginalized -FertilityRate_Person_Female,Birth rate of the population;Birth rate per woman;Childbearing rate;Fertility Rate;Fertility of the population;Number of children born per woman;Rate of fertility;Rate of reproduction;Total fertility rate;how often do women become mother;the average number of children that a woman has in her lifetime;the number of children that a woman is expected to have in her lifetime;the rate at which women have children;the rate of reproduction -GenderIncomeInequality_Person_15OrMoreYears_WithIncome,Difference in income between men and women of working age;Disparity in earnings between men and women of working age;Gap in pay between men and women of working age;Gender Income Inequality;Income Inequality Between Men and Women of Working Age;Income inequality between men and women;Inequality in income between men and women of working age;Pay gap between men and women;The difference in pay between men and women;Variance in income between men and women of working age;correlation between gender and income pay;difference in pay for men vs women;gender-based income inequality;gendler income gap;income disparity between men and women;income inequality between men and women;pay gap for men vs women;the difference in pay between men and women who are working;the disparity in salaries between men and women who are employed;the gap in earnings between men and women of working age;the inequality in wages between men and women who are in the workforce -GiniIndex_EconomicActivity,Economic inequality measurement;Gini Index of Economic Activity;Gini Index of Economic Activity of a Population;Gini coefficient;Gini index;Gini index of economic activity in a population;Index of economic polarization;Indicator of economic fairness;Inequality;Measure of the spread of economic activity;Ratio of wealth distribution;economic concentration;economic inequality;economic polarization;economic stratification -GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,GDP growth rate;Growth Rate of Gross Domestic Production (GDP);Growth rate of gross domestic production (economic activity);How fast the economy is growing;The rate at which the GDP is increasing;The rate at which the economy is growing;annual change in gdp;gdp growth rate;rate of change in gdp;year-over-year change in gdp -GrowthRate_Count_Person,How fast is the population growing?;Increase in population;Population Growth Rate;Population growth rate;Population increase rate;Rate of Population Growth;Rate of increase in population;Rate of population growth;how fast is the population growing?;how much is the population increasing?;rate at which a population increases;rate of increase in population;rate of population growth;what is the growth rate of the population?;what is the rate of change in the population? -HeavyPrecipitationIndex,Heavy Precipitation Index;heavy precipitation index;index of heavy precipitation;index of heavy rain;index of heavy rainfall -Humidity_RelativeHumidity,Humidity: Relative Humidity;Relative Humidity;how much water vapor is in the air;relative humidity;the percentage of water vapor in the air relative to the amount of water vapor the air could hold at the same temperature -Humidity_SpecificHumidity,Humidity: Specific Humidity;Specific Humidity;amount of water vapor in a given volume of air;mass of water vapor per unit mass of dry air;ratio of mass of water vapor to mass of dry air;water vapor content of air -Imports_EconomicActivity_Cereals,Cereal Imports;cereal import;import of cereals;imports of cereals -Imports_EconomicActivity_CrudeOils,Crude Oil Imports;crude oil import;crude oils imports;import of crude oil;imports of oils -Imports_EconomicActivity_ElectronicComponents,Electronics Components Imports;electronic components import;import of electronics;imports of electronic components -Imports_EconomicActivity_IronAndSteel,Iron and Steel Imports;import of iron and steel;imports of iron and steel;iron and steel import;iron steel import -Imports_EconomicActivity_Pharmaceutical,Pharmaceutical Imports;import of pharmaceuicals;imports of pharmaceuticals;pharmaceutical import -Income_Farm,1 The total amount of money that farmers make from their crops and livestock;Income of Farm;The total amount of money earned from farming;Total Farm Income;Total agricultural earnings;Total agricultural income;Total agricultural profits;Total earnings from agricultural operations;Total earnings from farming;Total farm income;Total farm profits;Total farm revenue;Total income earned by a farm;Total income from agriculture;Total income from farming;Total income from farming operations;Total profits from farming;Total revenue from agriculture;income from farming;the amount of money made from farming;the sum of all the money earned from farming;the total amount of money earned from agricultural activities;total farm income -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedCase,"Confirmed Increment in Covid 19 Cases;Incremental Count of Medical Condition Incident: COVID-19, Confirmed Case" -IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,"Confirmed or Probable Increment in Covid 19 Cases;Incremental Count of Medical Condition Incident: COVID-19, Confirmed or Probable Case" -IncrementalCount_MedicalConditionIncident_COVID_19_PatientDeceased,"Increment in Deceased Patients From Covid 19 Cases;Incremental Count of Medical Condition Incident: COVID-19, Patient Deceased" -IncrementalCount_MedicalTest_ConditionCOVID_19,Increment in Covid 19 Cases;Incremental Count of Medical Test: COVID-19;growing number of covid-19 tests;increase in covid-19 tests;more covid-19 tests being administered;rising number of covid-19 tests -IncrementalCount_Person,Population Change;Population Increment;change in the composition of a population;demographic shift;the population is fluctuating;the population is shifting -IncrementalCount_Vaccine_COVID_19_Administered,"Daily Covid-19 vaccination rate;Daily Covid-19 vaccine doses administered;Daily number of Covid-19 vaccinations;Daily number of covid vaccines administered;Incremental Count of Vaccine: COVID-19, Vaccine Administered;Number of COVID-19 Vaccines Administered Daily;Number of COVID-19 shots given each day;Number of COVID-19 vaccinations given out each day;Number of COVID-19 vaccines administered in a given time period;Number of Covid-19 shots given daily;Number of Covid-19 vaccines administered daily;Number of daily COVID-19 vaccinations;Number of doses administered daily;Number of people vaccinated against COVID-19 daily;daily covid-19 vaccination rate;daily covid-19 vaccine doses administered;number of covid-19 vaccines administered per day;number of covid-19 vaccines given each day" -InflationAdjustedGDP,"Amount of Economic Activity (Inflation Adjusted): Gross Domestic Production;Inflation Adjusted in Gross Domestic Production;gdp, adjusted for inflation;gdp, deflated;gross domestic product (gdp), adjusted for inflation;inflation-adjusted gross domestic product (gdp)" -InsuredUnemploymentRate_Person_WithCoveredEmployment_MovingAverage1WeekWindow,Insured Unemployment Rate;Insured Unemployment Rate Moving Average 1 Week Window;unemployment rate for people with unemployment insurance -Intensity_HeatWaveEvent,Heat Wave Intensity of Heat Wave Event;Intensity Heat Wave Events;how hot is the heat wave;how intense is the heat wave;how intense is the heat wave?;what is the level of intensity of the heat wave? -InterannualRange_Monthly_MaxTemperature,Max Temperature (Interannual Range of Monthly Aggregate);Monthly Maximum Temperature With Inter-Annual Range;greatest monthly temperature difference between the highest and lowest temperatures over multiple years;highest monthly temperature variation over multiple years;maximum monthly temperature range over multiple years;widest monthly temperature spread over multiple years -InterannualRange_Monthly_MinTemperature,Min Temperature (Interannual Range of Monthly Aggregate);Monthly Minimum Temperature With Inter-Annual Range;least temperature (interannual range of monthly aggregate);lowest temperature (interannual range of monthly aggregate);minimum temperature (interannual range of monthly aggregate);smallest temperature (interannual range of monthly aggregate) -InterannualRange_Monthly_Precipitation,"Monthly Precipitation With Inter-Annual Range;Precipitation (Interannual Range of Monthly Aggregate);monthly precipitation range over multiple years;the average amount of precipitation that falls each month, over a period of years;the range of precipitation amounts that fall each month, over a period of years;the variation in precipitation amounts that fall each month, over a period of years" -LandCoverFraction_BareSparseVegetation,Land Cover Fraction of Bare Sparse Vegetation;Percent of Bare Sparse Vegetation Covered Area;area covered by bare and sparse vegetation as a percentage of total area;bare and sparse vegetation cover as a percentage of total area;percentage of bare and sparse vegetation cover;proportion of bare and sparse vegetation cover -LandCoverFraction_BuiltUp,Land Cover Fraction of Built Up;Percent of Built-up Area;percentage of land that is developed;the percentage of land that is covered by buildings and other human-made structures;the proportion of land that is built up;the share of land that is built up -LandCoverFraction_Cropland,Land Cover Fraction of Crop Land;Percent of Crop Covered Area;percentage of land area devoted to agriculture;percentage of land area used for crops;percentage of land used for crops;percentage of land used for growing crops -LandCoverFraction_Forest,Land Cover Fraction of Forest;Percent of Forest Covered Area;what is the forest cover of the united states;what is the percent of forest cover in the united states;what percentage of the land area of the united states is forested;what percentage of the united states is covered by forests -LandCoverFraction_HerbaceousVegetation,Land Cover Fraction of Herbaceous Vegetation;Percent of Grass Covered Area;what is the grass cover ratio?;what is the percentage of grass cover?;what percentage of the land is covered in grass?;what proportion of the land is covered in grass? -LandCoverFraction_MossAndLichen,Percent of Moss and Lichen Covered Area -LandCoverFraction_PermanentWater,Land Cover Fraction of Permanent Water;Percent of Permanent Water Covered Area;percentage of land covered by water;the fraction of the earth's surface that is always covered by liquid water;the percentage of the earth's surface that is covered by permanent water;the proportion of the earth's surface that is always wet -LandCoverFraction_SeasonalWater,Land Cover Fraction of Seasonal Water;Percent of Seasonal Water Covered Area;amount of area covered by water seasonally;percent of area covered by water seasonally;percentage of area covered by water seasonally;proportion of area covered by water seasonally -LandCoverFraction_Shrubland,Land Cover Fraction of Shrubland;Percent of Shrub Covered Area;area covered by shrubs as a percentage;percent of area covered by shrubs;percentage of land covered by shrubs;shrub coverage -LandCoverFraction_SnowIce,Land Cover Fraction of Snow Ice;Percent of Snow Covered Area;how much of the land is covered in snow?;how much of the land is snow-covered?;what is the snow cover percentage?;what percentage of the land is covered in snow? +Count_Establishment,Count of Establishment +Count_Establishment_FederalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of Establishments Owned by the Federal Government +Count_Establishment_LocalGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of Establishments Owned by the local Government +Count_Establishment_NAICSAccommodationFoodServices,Number of Accommodation And Food Services establishments +Count_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"Number of Administrative Support, Waste Management And Remediation Services establishments" +Count_Establishment_NAICSAgricultureForestryFishingHunting,"Number of Agriculture, Forestry, Fishing And Hunting establishments" +Count_Establishment_NAICSArtsEntertainmentRecreation,"Number of Arts, Entertainment And Recreation establishments" +Count_Establishment_NAICSConstruction,Number of Construction establishments +Count_Establishment_NAICSEducationalServices,Number of Educational Services establishments +Count_Establishment_NAICSFinanceInsurance,Number of Finance and Insurance establishments +Count_Establishment_NAICSGoodsProducing,Number of Goods Producing establishments +Count_Establishment_NAICSHealthCareSocialAssistance,Number of Health Care and Social Assistance establishments +Count_Establishment_NAICSInformation,Number of Information establishments +Count_Establishment_NAICSManagementOfCompaniesEnterprises,Number of Management Of Companies and Enterprises establishments +Count_Establishment_NAICSManufacturing,Number of Manufacturing establishments +Count_Establishment_NAICSMiningQuarryingOilGasExtraction,"Number of Mining, Quarrying, And Oil And Gas Extraction establishments" +Count_Establishment_NAICSProfessionalScientificTechnicalServices,"Number of Professional, Scientific, And Technical Services establishments" +Count_Establishment_NAICSPublicAdministration,Number of Public Administration establishments +Count_Establishment_NAICSRealEstateRentalLeasing,Number of Real Estate And Rental And Leasing establishments +Count_Establishment_NAICSRetailTrade,Number of Retail Trade establishments +Count_Establishment_NAICSServiceProviding,Number of Service Providing establishments +Count_Establishment_NAICSTotalAllIndustries,Number of establishments of all industries +Count_Establishment_NAICSTransportationWarehousing,Number of Transportation And Warehousing establishments +Count_Establishment_NAICSUtilities,Number of Utilities establishments +Count_Establishment_NAICSWholesaleTrade,Number of Wholesale Trade establishments +Count_Establishment_PrivatelyOwnedEstablishment_NAICSTotalAllIndustries,Number of establishments owned by private entities +Count_Establishment_StateGovernmentOwnedEstablishment_NAICSTotalAllIndustries,Number of establishments owned by state governments +Count_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,Number of Merchant Wholesalers establishments +Count_ExcessiveHeatEvent,number of Excessive Heat Event +Count_ExtremeColdWindChillEvent,number of Extreme Cold Wind Chill Event +Count_Faculty_ElementarySchoolCounselor,number of Elementary School Counselors +Count_Faculty_LEAAdministrativeSupportStaff,number of LEA Administrative Support Staff +Count_Faculty_LEAAdministrator,number of LEA Administrators +Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,"number of Para Professionals, Aides or Instructional Aides" +Count_Faculty_SchoolAdministrativeSupportStaff,number of School Administrative Support Staff +Count_Faculty_SchoolAdministrator,number of School Administrators +Count_Faculty_SchoolPsychologist,number of School Psychologists +Count_Faculty_SecondarySchoolCounselor,number of Secondary School Counselors +Count_Faculty_TotalGuidanceCounselor,number of Total Guidance Counselors +Count_Farm,Number of farms +Count_FarmInventory_BeefCows,Number of Beef Cows in Farm Inventory +Count_FarmInventory_Broilers,Number of Broiler chicken in Farm Inventory +Count_FarmInventory_CattleAndCalves,Number of Cattle and Calves in Farm Inventory +Count_FarmInventory_HogsAndPigs,Number of Hogs and Pigs in Farm Inventory +Count_FarmInventory_Layers,Number of laying hens in Farm Inventory +Count_FarmInventory_MilkCows,Number of Milk Cows in Farm Inventory +Count_FarmInventory_SheepAndLambs,Number of Sheep and Lambs in Farm Inventory +Count_Farm_BarleyForGrain,number of farms that grow barley +Count_Farm_BeefCows,number of farms that raise beef cattle +Count_Farm_Broilers,number of farms that raise broiler chicken +Count_Farm_CattleAndCalves,number of farms that raise cattle +Count_Farm_CornForGrain,Number of farms that grow corn for grain production +Count_Farm_CornForSilageOrGreenchop,Number of farms that grow corn for silage or greenchop +Count_Farm_Cotton,Number of farms that grow cotton +Count_Farm_Cropland,Number of Farms With Crop Cultivation +Count_Farm_DryEdibleBeans,Number of farms that grow dry edible beans +Count_Farm_DurumWheatForGrain,Number of farms that grow Durum Wheat for grain production +Count_Farm_Forage,Number of farms that grow forage +Count_Farm_HarvestedCropland,Number of Farms With Harvested Crop Cultivation +Count_Farm_HogsAndPigs,Number of farms that raise hogs and pigs +Count_Farm_InventorySold_CattleAndCalves,Number of farms that sell cattle and calves +Count_Farm_InventorySold_HogsAndPigs,Number of farms that sell hogs and pigs +Count_Farm_IrrigatedLand,Number of Farms With Irrigated Land +Count_Farm_Layers,Number of farms that raise laying hens +Count_Farm_MilkCows,number of farms that raise dairy cows +Count_Farm_OatsForGrain,Number of farms that grow oats for grain production +Count_Farm_Orchards,Number of farms that grow orchards +Count_Farm_PeanutsForNuts,Number of farms that grow peanuts for nuts +Count_Farm_PimaCotton,Number of farms that grow pima cotton +Count_Farm_Potatoes,Number of farms that grow potatoes +Count_Farm_Producer_AmericanIndianOrAlaskaNativeAlone,Number of Farms Operated by American Indian or Alaska Native farmers +Count_Farm_Producer_AsianAlone,Number of Farms Operated by Asian farmers +Count_Farm_Producer_BlackOrAfricanAmericanAlone,Number of Farms Operated by Black or African American farmers +Count_Farm_Producer_HispanicOrLatino,Number of Farms Operated by Hispanic or Latino farmers +Count_Farm_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Number of Farms Operated by Native Hawaiian or Other Pacific Islander farmers +Count_Farm_Producer_TwoOrMoreRaces,Number of Farms Operated by farmers of Two or More Races +Count_Farm_Producer_WhiteAlone,Number of Farms Operated by White farmers +Count_Farm_ReceivedGovernmentPayment,Number of Farms That Received Government Payments +Count_Farm_ReportedIncome,Number of Farms That Reported Income +Count_Farm_ReportedNetIncome,Number of Farms That Reported Net Income +Count_Farm_Rice,Number of Farms that grow Rice +Count_Farm_SheepAndLambs,number of farms that raise sheep and lambs +Count_Farm_SorghumForGrain,Number of farms that grow sorghum for grain production +Count_Farm_SorghumForSilageOrGreenchop,Number of farms that grow sorghum for silage or greenchop +Count_Farm_SugarbeetsForSugar,Number of farms that grow sugar beets for sugar +Count_Farm_SunflowerSeed,Number of farms that grow sunflower seeds +Count_Farm_SweetPotatoes,Number of farms that grow sweet potatoes +Count_Farm_UplandCotton,Number of farms that grow upland cotton +Count_Farm_VegetablesHarvestedForSale,Number of farms that sell vegetables +Count_Farm_WheatForGrain,Number of Farms Growing Wheat +Count_Farm_WinterWheatForGrain,Number of Farms Growing Winter Wheat +Count_FireEvent,Number of Fires +Count_FireIncidentComplex,Number of Fire Incident Complexes +Count_FlashFloodEvent,Number of Flash Floods +Count_FloodEvent,Number of floods +Count_FreezingFogEvent,Number of Freezing Fogs +Count_FrostFreezeEvent,Number of Frost Freeze Events +Count_FunnelCloudEvent,Number of Funnel Cloud Events +Count_HailEvent,Number of Hails +Count_HeatEvent,Number of Heat Waves +Count_HeatTemperatureEvent,Number of Heat Temperature Events +Count_HeavyRainEvent,Number of Heavy Rains +Count_HeavySnowEvent,Number of Heavy Snows +Count_HighWindEvent,Number of High Wind Events +Count_Household,Count of households +Count_Household_AsianAndPacificIslandLanguagesSpokenAtHome,Number of households that speak Asian and Pacific Island languages at home +Count_Household_FamilyHousehold,Number of family households +Count_Household_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family housholds below poverty in the past 12 months +Count_Household_FamilyHousehold_OwnerOccupied,Number of owner occupied family households +Count_Household_FamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,Number of family households that own their home and are below poverty in the past 12 months +Count_Household_FamilyHousehold_RenterOccupied,Number of renter occupied family households +Count_Household_FamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,Number of renter occupied family households that are below poverty in the past 12 months +Count_Household_FamilyHousehold_With0Worker,Number of family households with no workers +Count_Household_FamilyHousehold_With0Worker_BelowPovertyLevelInThePast12Months,Number of family households with no workers and are below poverty in the past 12 months +Count_Household_FamilyHousehold_With1Worker,Number of family households with 1 worker +Count_Household_FamilyHousehold_With1Worker_BelowPovertyLevelInThePast12Months,Number of family households with 1 worker and are below poverty in the past 12 months +Count_Household_FamilyHousehold_With2Worker,Number of family households with 2 workers +Count_Household_FamilyHousehold_With2Worker_BelowPovertyLevelInThePast12Months,Number of family households with 2 workers and are below poverty in the past 12 months +Count_Household_FamilyHousehold_With3OrMoreWorker,Number of family households with 3 or more workers +Count_Household_FamilyHousehold_With3OrMoreWorker_BelowPovertyLevelInThePast12Months,Number of family households with 3 or more workers and are below poverty in the past 12 months +Count_Household_ForeignBorn_PlaceOfBirthAfrica,Number of Households foreigh Born from Africa +Count_Household_ForeignBorn_PlaceOfBirthAsia,Number of Households foreigh Born from Asia +Count_Household_ForeignBorn_PlaceOfBirthCaribbean,Number of Households foreigh Born from Caribbean +Count_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Households foreigh Born from Central America (Except Mexico) +Count_Household_ForeignBorn_PlaceOfBirthEasternAsia,Number of Households foreigh Born from Eastern Asia +Count_Household_ForeignBorn_PlaceOfBirthEurope,Number of Households foreign Born from Europe +Count_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Households foreign Born from Latin America +Count_Household_ForeignBorn_PlaceOfBirthMexico,Number of Households foreign Born from Mexico +Count_Household_ForeignBorn_PlaceOfBirthNorthamerica,Number of Households foreign Born from North America +Count_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Households foreign Born from Northern Western Europe +Count_Household_ForeignBorn_PlaceOfBirthOceania,Number of Households foreign Born from Oceania +Count_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Households foreign Born from South Central Asia +Count_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Households foreign Born from South Eastern Asia +Count_Household_ForeignBorn_PlaceOfBirthSouthamerica,Number of Households foreign Born from South America +Count_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Households foreign Born from Southern Eastern Europe +Count_Household_ForeignBorn_PlaceOfBirthWesternAsia,Number of Households foreign Born from Western Asia +Count_Household_FullTimeYearRoundWorker_FamilyHousehold,Number of Households with full time workers +Count_Household_HasComputer,Number of households with a computer +Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold,Number of family households with householder age 65 years or older +Count_Household_HouseholderAge65OrMoreYears_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family households with householder 65 years or older living in poverty over the year +Count_Household_HouseholderAge65OrMoreYears_MarriedCoupleFamilyHousehold,Number of married-couple family households with householder age 65 or more years +Count_Household_HouseholderAge65OrMoreYears_SingleMotherFamilyHousehold,Number of single mother family households with householder age 65 or more years +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold,Number of Family Households Where the Householder Holds a Bachelor's Degree or Higher +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Married-Couple Family Households with a Householder Holding a Bachelor’s Degree or Higher +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households With a Householder Holding a Bachelor's Degree or Higher +Count_Household_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder Holding a Bachelor's Degree or Higher +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold,Number of Family Households with a Householder who is a High School Graduate or Equivalent +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Married-Couple Family Households with a Householder who is a High School Graduate or Equivalent +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_MarriedCoupleFamilyHousehold,Number of Single Mother Family Households with a Householder who is a High School Graduate or Equivalent +Count_Household_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder holding High School Graduate or Equivalency Degree +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_FamilyHousehold,Number of Families with a Householder without a High School Diploma +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with a Householder without a High School Diploma +Count_Household_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_SingleMotherFamilyHousehold,Number of single-mother families with a householder with less than a high school education +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_FamilyHousehold,Number of family households with a householder with some college or an associate's degree +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_MarriedCoupleFamilyHousehold,Number of married couple households with a householder with some college or an associate's degree +Count_Household_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a Householder Holding Some College or Associates Degree +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of Households with American Indian or Alaska Native Householder +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_FamilyHousehold,Number of Family Households with American Indian or Alaska Native Householder +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with American Indian or Alaska Native Householder +Count_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with American Indian or Alaska Native Householder +Count_Household_HouseholderRaceAsianAlone,Number of Households with asian Householder +Count_Household_HouseholderRaceAsianAlone_FamilyHousehold,Number of Family Households with asian Householder +Count_Household_HouseholderRaceAsianAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with asian Householder +Count_Household_HouseholderRaceAsianAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with asian Householder +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Number of Households with Black or African American Householder +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_FamilyHousehold,Number of Family Households with Black or African American Householder +Count_Household_HouseholderRaceBlackOrAfricanAmericanAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with Black or African American Householder +Count_Household_HouseholderRaceHispanicOrLatino,Number of Households with Hispanic or Latino Householder +Count_Household_HouseholderRaceHispanicOrLatino_FamilyHousehold,Number of Family Households with Hispanic or Latino Householder +Count_Household_HouseholderRaceHispanicOrLatino_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with Hispanic or Latino Householder +Count_Household_HouseholderRaceHispanicOrLatino_SingleMotherFamilyHousehold,Number of Single Mother Family households with Hispanic or Latino Householder +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of Households with Native Hawaiian or Other Pacific Islander Householder +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_FamilyHousehold,Number of Family Households with Native Hawaiian or Other Pacific Islander Householder +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_MarriedCoupleFamilyHousehold,Number of Married-Couple Family Households with Native Hawaiian or Other Pacific Islander Householder +Count_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with Native Hawaiian or Other Pacific Islander Householder +Count_Household_HouseholderRaceTwoOrMoreRaces,Number of Households with a muti-races Householder +Count_Household_HouseholderRaceTwoOrMoreRaces_FamilyHousehold,Number of Family Households with a muti-races Householder +Count_Household_HouseholderRaceTwoOrMoreRaces_MarriedCoupleFamilyHousehold,Number of Married-Couple Households with a muti-races Householder +Count_Household_HouseholderRaceTwoOrMoreRaces_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a muti-races Householder +Count_Household_HouseholderRaceWhiteAlone,Number of Households with a white Householder +Count_Household_HouseholderRaceWhiteAlone_FamilyHousehold,Number of family households with a white Householder +Count_Household_HouseholderRaceWhiteAlone_MarriedCoupleFamilyHousehold,Number of Married Couple Family Households with a white Householder +Count_Household_HouseholderRaceWhiteAlone_SingleMotherFamilyHousehold,Number of Single Mother Family Households with a white Householder +Count_Household_Houseless,Number of houseless households +Count_Household_Houseless_Rural,Number of houseless households in rural areas +Count_Household_Houseless_Urban,Number of houseless households in urban areas +Count_Household_InternetWithoutSubscription,Number of households without internet subscription +Count_Household_LimitedEnglishSpeakingHousehold,Number of Households with Limited English Proficiency +Count_Household_MarriedCoupleFamilyHousehold,Number of married couple Households +Count_Household_MarriedCoupleFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of married-couple families living in poverty over the last year +Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied,"Number of below poverty-level, owner-occupied, married-couple family households" +Count_Household_MarriedCoupleFamilyHousehold_OwnerOccupied_BelowPovertyLevelInThePast12Months,Number of owner occupied married couple family households below poverty in the past 12 months +Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied,Number of renter occupied married couple family households +Count_Household_MarriedCoupleFamilyHousehold_RenterOccupied_BelowPovertyLevelInThePast12Months,Number of renter occupied married couple family households below poverty in the past 12 months +Count_Household_MarriedCoupleFamilyHousehold_SingleUnit,Number of single unit married couple family households +Count_Household_MarriedCoupleFamilyHousehold_TwoOrMoreUnits,Number of two or more units married couple family households +Count_Household_MarriedCoupleFamilyHousehold_With0Worker,Number of married couple family households with no worker +Count_Household_MarriedCoupleFamilyHousehold_With1Worker,Number of married couple family households with 1 worker +Count_Household_MarriedCoupleFamilyHousehold_With2Worker,Number of married couple family households with 2 worker +Count_Household_MarriedCoupleFamilyHousehold_With3OrMoreWorker,Number of Married Couple Family Households with Three Or More Workers +Count_Household_NoComputer,Number of Households Without Computer +Count_Household_NoHealthInsurance,Number of Households Without Health Insurance +Count_Household_NoInternetAccess,Number of Households Without Internet Access +Count_Household_NonfamilyHousehold,Number of non-family households +Count_Household_NonfamilyHousehold_SingleUnit,Number of Non-Family Households living in Single Unit +Count_Household_NonfamilyHousehold_TwoOrMoreUnits,Number of Non-Family Households living in Two Or More Units +Count_Household_Rural,Number of Households in Rural Areas +Count_Household_ScheduledCaste,Number of Households Belonging to Scheduled Caste +Count_Household_ScheduledCaste_Rural,Number of Households Belonging to Scheduled Caste in Rural Areas +Count_Household_ScheduledCaste_Urban,Number of Households Belonging to Scheduled Caste in Urban Areas +Count_Household_ScheduledTribe,Number of Households Belonging to Scheduled Tribe +Count_Household_ScheduledTribe_Rural,Number of Households Belonging to Scheduled Tribe in Rural Areas +Count_Household_ScheduledTribe_Urban,Number of Households Belonging to Scheduled Tribe in Urban Areas +Count_Household_SingleFatherFamilyHousehold,Number of Single Father Family Households +Count_Household_SingleFatherFamilyHousehold_SingleUnit,Number of Single Father Family Households living in Single Unit +Count_Household_SingleFatherFamilyHousehold_TwoOrMoreUnits,Number of Single Father Family Households living in Two Or More Units +Count_Household_SingleMotherFamilyHousehold,Number of Single Mother Family Households +Count_Household_SingleMotherFamilyHousehold_BelowPovertyLevelInThePast12Months,Number of Single Mother Family Households Below Poverty Level in the Past 12 Months +Count_Household_SingleMotherFamilyHousehold_MobileHomesAndAllOtherTypesOfUnits,Number of Single Mother Family Households living in Mobile Homes And All Other Types Of Units +Count_Household_SingleMotherFamilyHousehold_OwnerOccupied,Number of Single Mother Family Households that are Owner Occupied +Count_Household_SingleMotherFamilyHousehold_RenterOccupied,Number of Single Mother Family Households that are Renter Occupied +Count_Household_SingleMotherFamilyHousehold_SingleUnit,Number of Single Mother Family Households living in Single Unit +Count_Household_SingleMotherFamilyHousehold_TwoOrMoreUnits,Number of Single Mother Family Households living in Two Or More Units +Count_Household_SingleMotherFamilyHousehold_With0Worker,Number of Single Mother Family Households with no Worker +Count_Household_SingleMotherFamilyHousehold_With1Worker,Number of Single Mother Family Households with 1 Worker +Count_Household_SingleMotherFamilyHousehold_With2Worker,Number of Single Mother Family Households with 2 Worker +Count_Household_SingleMotherFamilyHousehold_With3OrMoreWorker,Number of Single Mother Family Households with 3 Or More Worker +Count_Household_SpanishSpokenAtHome,Number of Households that speak Spanish at Home +Count_Household_Urban,Number of Households living in Urban area +Count_Household_With0AvailableVehicles,Number of Households with 0 Available Vehicles +Count_Household_With1AvailableVehicles,Number of Households with 1 Available Vehicles +Count_Household_With2AvailableVehicles,Number of Households with 2 Available Vehicles +Count_Household_With3AvailableVehicles,Number of Households with 3 Available Vehicles +Count_Household_With4OrMoreAvailableVehicles,Number of Households with 4 Or More Available Vehicles +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign Born Households from Africa with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of Foreign Born Households from Asia with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign Born Households from Caribbean with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign Born Households from Central America Except Mexico with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign Born Households from Eastern Asia with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of Foreign Born Households from Europe with Cash Assistance In The Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign-Born Households from latin america with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of Foreign-Born Households from Mexico with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign-Born Households from North america with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign-Born Households from Northern Western Europe with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of Foreign-Born Households from Oceania with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign-Born Households from South Central Asia with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign-Born Households from South Eastern Asia with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign-Born Households from South america with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign-Born Households from Southern Eastern Europe with Cash Assistance in the Past 12 Months +Count_Household_WithCashAssistanceInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign-Born Households from Western Asia with Cash Assistance in the Past 12 Months +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign-Born Households from Africa with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthAsia,Number of Foreign-Born Households from Asia with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign-Born Households from Caribbean with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign-Born Households from Central America Except Mexico with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign-Born Households from Eastern Asia with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthEurope,Number of Foreign-Born Households from Europe with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign-Born Households from Latin America with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthMexico,Number of Foreign-Born Households from Mexico with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign-Born Households from North America with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign-Born Households from Northern Western Europe with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthOceania,Number of Foreign-Born Households from Oceania with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign-Born Households from South Central Asia with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign-Born Households from South Eastern Asia with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign-Born Households from South America with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign-Born Households from Southern Eastern Europe with Earnings +Count_Household_WithEarnings_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign-Born Households from Western Asia with Earnings +Count_Household_WithFoodStampsInThePast12Months,Number of households that have received food stamps (SNAP) in the last 12 months +Count_Household_WithFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,Households that have received food stamps (SNAP) in the last year and live above poverty line +Count_Household_WithFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of households receiving food stamps last year who identify as American Indian or Alaska native only +Count_Household_WithFoodStampsInThePast12Months_AsianAlone,Number of households receiving food stamps last year who identify as Asian +Count_Household_WithFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,Households with food stamps last year that are below poverty line +Count_Household_WithFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of households receiving food stamps last year who identify as Black or African American +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold,Number of family households receiving food stamps last year +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_NoWorkersInThePast12Months,Number of family Households receiving food stamps last year and have no workers +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_OneWorkerInThePast12Months,Number of family Households receiving food stamps last year and having one worker +Count_Household_WithFoodStampsInThePast12Months_FamilyHousehold_TwoOrMoreWorkersInThePast12Months,Number of family Households receiving food stamps last year and having 2 or more workers +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of Foreign Born Households from Africa with Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of Foreign Born Households from Asia with Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of Foreign Born Households from Caribbean with Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of Foreign Born Households from Central America except Mexico with Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of Foreign Born Household from Eastern Asia that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of Foreign Born Household from Europe that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of Foreign Born Household from Latin America that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of Foreign Born Household from Mexico that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of Foreign Born Household from North America that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of Foreign Born Household from Northern Western Europe that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of Foreign Born Household from Oceania that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of Foreign Born Household from South Central Asia that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of Foreign Born Household from South Eastern Asia that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of Foreign Born Household from South America that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of Foreign Born Household from Southern Eastern Europe that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of Foreign Born Household from Western Asia that received Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_HispanicOrLatino,Number of Hispanic Or Latino households having Food Stamps in the Past 12 Months +Count_Household_WithFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couple family households that received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_NoDisability,Number of households that are not disabled and received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_NonfamilyHousehold,Number of nonfamily households that have received food stamps (SNAP) in the last 12 months +Count_Household_WithFoodStampsInThePast12Months_SingleFatherFamilyHousehold,Number of single father family households that received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_SingleMotherFamilyHousehold,Number of single mother family households that received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_TwoOrMoreRaces,Number of households that are two or more races and received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_WhiteAlone,Number of households that are white and received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_WithChildrenUnder18,Number of households that have children under 18 and received food stamps last year +Count_Household_WithFoodStampsInThePast12Months_WithDisability,Number of households collecting Food Stamps (SNAP) with someone in the household having a disability in the past 12 months +Count_Household_WithFoodStampsInThePast12Months_WithPeopleOver60,Count of households with people over 60 receiving food stamps last year +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households that don't have children and have received food stamps in the past 12 months +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_MarriedCoupleFamilyHousehold,Number of married couple family households Without Children Under 18 and receiving Food Stamps over the last year +Count_Household_WithFoodStampsInThePast12Months_WithoutChildrenUnder18_NonfamilyHousehold,Number of nonfamily households Without Children Under 18 and receiving Food Stamps over the last year +Count_Household_WithFoodStampsInThePast12Months_WithoutPeopleOver60,Count of households without people over 60 receiving food stamps last year +Count_Household_WithInternetSubscription,Number of households with an internet subscription +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of households that have received retirement income in the last year and that have householders born in Africa +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of households that have received retirement income in the last year and that have householders born in Asia +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of households that have received retirement income in the last year and that have householders born in the Caribbean +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of households that have received retirement income in the last year and that have householders born in Central America not including Mexico +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of households that have received retirement income in the last year and that have householders born in Eastern Asia +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of households that have received retirement income in the last year and that have householders born in Europe +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of households that have received retirement income in the last year and that have householders born in Latin America +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of households that have received retirement income in the last year and that have householders born in Mexico +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of households that have received retirement income in the last year and that have householders born in North America +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of households that have received retirement income in the last year and that have householders born in Northern Western Europe +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of households that have received retirement income in the last year and that have householders born in Oceania +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of households that have received retirement income in the last year and that have householders born in South Central Asia +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of households that have received retirement income in the last year and that have householders born in South Eastern Asia +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of households that have received retirement income in the last year and that have householders born in South America +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of households that have received retirement income in the last year and that have householders born in Southern Eastern Europe +Count_Household_WithRetirementIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of households that have received retirement income in the last year and that have householders born in Western Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold,Number of family households that have received Social Security income in the last year +Count_Household_WithSocialSecurityIncomeInThePast12Months_FamilyHousehold_BelowPovertyLevelInThePast12Months,Number of family households that have received Social Security income in the last year and have been under the poverty level in the last year +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAfrica,Number of households that have received Social Security income in the last year and that have householders born in Africa +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthAsia,Number of households that have received Social Security income in the last year and that have householders born in Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCaribbean,Number of households that have received Social Security income in the last year and that have householders born in the Caribbean +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of households that have received Social Security income in the last year and that have householders born in Central America not including Mexico +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEasternAsia,Number of households that have received Social Security income in the last year and that have householders born in Eastern Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthEurope,Number of households that have received Social Security income in the last year and that have householders born in Europe +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthLatinAmerica,Number of households that have received Social Security income in the last year and that have householders born in Latin America +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthMexico,Number of households that have received Social Security income in the last year and that have householders born in Mexico +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthamerica,Number of households that have received Social Security income in the last year and that have householders born in North America +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of households that have received Social Security income in the last year and that have householders born in Northern Western Europe +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthOceania,Number of households that have received Social Security income in the last year and that have householders born in Oceania +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of households that have received Social Security income in the last year and that have householders born in South Central Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of households that have received Social Security income in the last year and that have householders born in South Eastern Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthamerica,Number of households that have received Social Security income in the last year and that have householders born in South America +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of households that have received Social Security income in the last year and that have householders born in Southern Eastern Europe +Count_Household_WithSocialSecurityIncomeInThePast12Months_ForeignBorn_PlaceOfBirthWesternAsia,Number of households that have received Social Security income in the last year and that have householders born in Western Asia +Count_Household_WithSocialSecurityIncomeInThePast12Months_MarriedCoupleFamilyHousehold,Number of married couple households that have received social security income in the last year +Count_Household_WithSocialSecurityIncomeInThePast12Months_SingleMotherFamilyHousehold,Number of single mother households that have received social security income in the last year +Count_Household_WithoutFoodStampsInThePast12Months,Number of households that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_AbovePovertyLevelInThePast12Months,Number of Households Above Poverty Level and Have Not Received Food Stamps in the Last Year +Count_Household_WithoutFoodStampsInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native households not receiving Food Stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_AsianAlone,Number of Asian households that were not receiving Food Stamps over the last year +Count_Household_WithoutFoodStampsInThePast12Months_BelowPovertyLevelInThePast12Months,Number of households that have been below the poverty line in the last year but have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_BlackOrAfricanAmericanAlone,Number of black or African American Households that don't Received Food Stamps in the Last Year +Count_Household_WithoutFoodStampsInThePast12Months_FamilyHousehold,Number of family households that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_HispanicOrLatino,Number of Hispanic Households Not Receiving Food Stamps Over the Last Year +Count_Household_WithoutFoodStampsInThePast12Months_MarriedCoupleFamilyHousehold,Number of married-couple households not receiving Food Stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander households not receiving Food Stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_NoDisability,Number of Households Not Receiving Food Stamps Over the Last Year Where No Member Has a Disability +Count_Household_WithoutFoodStampsInThePast12Months_NonfamilyHousehold,Number of non family households that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_SingleFatherFamilyHousehold,Number of single father family households that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_SingleMotherFamilyHousehold,Number of single mother family households that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_TwoOrMoreRaces,Number of households that are multi-race and received food stamps last year +Count_Household_WithoutFoodStampsInThePast12Months_WhiteAlone,Number of white households not receiving Food Stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_WithChildrenUnder18,Number of households with children who did not receive Food Stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_WithDisability,Number of households with householders with disability that have not received food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_WithPeopleOver60,Number of households with householders over 60 years old that did not receive food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_WithoutChildrenUnder18,Number of households without children that did not receive food stamps in the last year +Count_Household_WithoutFoodStampsInThePast12Months_WithoutPeopleOver60,Number of households without householders over 60 years old that did not receive food stamps in the last year +Count_HousingUnit,Number of housing units +Count_HousingUnit_1940To1949DateBuilt,Number of housing units built between 1940 and 1949 +Count_HousingUnit_1950To1959DateBuilt,Number of housing units built between 1950 and 1959 +Count_HousingUnit_1960To1969DateBuilt,Number of housing units built between 1960 and 1969 +Count_HousingUnit_1970To1979DateBuilt,Number of housing units built between 1970 and 1979 +Count_HousingUnit_1980To1989DateBuilt,Number of housing units built between 1980 and 1989 +Count_HousingUnit_1990To1999DateBuilt,Number of housing units built between 1990 and 1999 +Count_HousingUnit_2000To2004DateBuilt,Number of housing units built between 2000 and 2004 +Count_HousingUnit_2000To2009DateBuilt,Number of housing units built between 2000 and 2009 +Count_HousingUnit_2005OrLaterDateBuilt,Number of housing units built in 2005 or later +Count_HousingUnit_2010OrLaterDateBuilt,Number of housing units built in 2010 or later +Count_HousingUnit_2010To2013DateBuilt,Number of housing units built between 2010 and 2013 +Count_HousingUnit_2014OrLaterDateBuilt,Number of housing units built after 2014 +Count_HousingUnit_Before1939DateBuilt,Number of housing units built before 1939 +Count_HousingUnit_CompleteKitchenFacilities_OccupiedHousingUnit,Number of housing units with complete kitchen facilities +Count_HousingUnit_CompletePlumbingFacilities_OccupiedHousingUnit,Number of housing units with complete plumbing facilities +Count_HousingUnit_HomeValue1000000OrMoreUSDollar,"Number of houses valued at $1,000,000 or more" +Count_HousingUnit_HomeValue1000000To1499999USDollar,"Number of houses valued from $1,000,000 to $1,499,999" +Count_HousingUnit_HomeValue100000To124999USDollar,"Number of houses valued from $100,000 to $124,999" +Count_HousingUnit_HomeValue100000To199999USDollar,"Number of houses valued from $100,000 to $199,999" +Count_HousingUnit_HomeValue10000To14999USDollar,"Number of houses valued from $10,000 to $14,999" +Count_HousingUnit_HomeValue125000To149999USDollar,"Number of houses valued from $125,000 to $149,999" +Count_HousingUnit_HomeValue1500000To1999999USDollar,"Number of houses valued from $1,500,000 to $1,999,999" +Count_HousingUnit_HomeValue150000To174999USDollar,"Number of houses valued from $150,000 to $174,999" +Count_HousingUnit_HomeValue15000To19999USDollar,"Number of houses valued from $15,000 to $19,999" +Count_HousingUnit_HomeValue175000To199999USDollar,"Number of houses valued from $175,000 to $199,999" +Count_HousingUnit_HomeValue2000000OrMoreUSDollar,"Number of houses valued from $2,000,000 onwards" +Count_HousingUnit_HomeValue200000To249999USDollar,"Number of houses valued from $200,000 to $249,999" +Count_HousingUnit_HomeValue200000To299999USDollar,"Number of houses valued from $200,000 to $299,999" +Count_HousingUnit_HomeValue20000To24999USDollar,"Number of houses valued from $20,000 to $24,999" +Count_HousingUnit_HomeValue250000To299999USDollar,"Number of houses valued from $250,000 to $299,999" +Count_HousingUnit_HomeValue25000To29999USDollar,"Number of houses valued from $25,000 to $29,999" +Count_HousingUnit_HomeValue300000To399999USDollar,"Number of houses valued from $300,000 to $399,999" +Count_HousingUnit_HomeValue300000To499999USDollar,"Number of houses valued from $300,000 to $499,999" +Count_HousingUnit_HomeValue30000To34999USDollar,"Number of houses valued from $30,000 to $34,999" +Count_HousingUnit_HomeValue35000To39999USDollar,"Number of houses valued from $35,000 to $39,999" +Count_HousingUnit_HomeValue400000To499999USDollar,"Number of houses valued from $400,000 to $499,999" +Count_HousingUnit_HomeValue40000To49999USDollar,"Number of houses valued from $40,000 to $49,999" +Count_HousingUnit_HomeValue500000To749999USDollar,"Number of houses valued from $500,000 to $749,999" +Count_HousingUnit_HomeValue500000To999999USDollar,"Number of houses valued from $500,000 to $999,999" +Count_HousingUnit_HomeValue50000To59999USDollar,"Number of houses valued from $50,000 to $59,999" +Count_HousingUnit_HomeValue50000To99999USDollar,"Number of houses valued from $50,000 to $99,999" +Count_HousingUnit_HomeValue60000To69999USDollar,"Number of houses valued from $60,000 to $69,999" +Count_HousingUnit_HomeValue70000To79999USDollar,"Number of houses valued from $70,000 to $79,999" +Count_HousingUnit_HomeValue750000To999999USDollar,"Number of houses valued from $750,000 to $999,999" +Count_HousingUnit_HomeValue80000To89999USDollar,"Number of houses valued from $80,000 to $89,999" +Count_HousingUnit_HomeValue90000To99999USDollar,"Number of houses valued from $90,000 to $99,999" +Count_HousingUnit_HomeValueUpto10000USDollar,"Number of houses valued at $1,000,000 or less" +Count_HousingUnit_HomeValueUpto49999USDollar,"Number of houses valued at $499,999 or less" +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OccupiedHousingUnit,Number of Occupied Housing Units with Householders with Bachelors Degree Or Higher +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_OwnerOccupied,Number of Owner Occupied Housing Units with Householders with Bachelors Degree Or Higher +Count_HousingUnit_HouseholderEducationalAttainmentBachelorsDegreeOrHigher_RenterOccupied,Number of Renter Occupied Housing Units with Householders with Bachelors Degree Or Higher +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OccupiedHousingUnit,Number of Occupied Housing Units with Householders with High School or equivalent degree +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_OwnerOccupied,Number of Owner Occupied Housing Units with Householders with High School or equivalent degree +Count_HousingUnit_HouseholderEducationalAttainmentHighSchoolGraduateIncludesEquivalency_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding a High School Diploma or Equivalent +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OccupiedHousingUnit,Number of Occupied Housing Units with Householders Holding Less Than a High School Diploma +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Holding Less Than a High School Diploma +Count_HousingUnit_HouseholderEducationalAttainmentLessThanHighSchoolGraduate_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding Less Than a High School Diploma +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OccupiedHousingUnit,Number of Occupied Housing Units with Householders Holding Some College or an Associates Degree +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Holding Some College or an Associates Degree +Count_HousingUnit_HouseholderEducationalAttainmentSomeCollegeOrAssociatesDegree_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Holding Some College or an Associates Degree +Count_HousingUnit_HouseholderRaceAmericanIndianAndAlaskaNativeAlone,Number of Occupied Housing Units with Householders Identifying as American Indian and Alaska Native +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Number of Occupied Housing Units with Householders Identifying as American Indian or Alaska Native +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as American Indian or Alaska Native +Count_HousingUnit_HouseholderRaceAmericanIndianOrAlaskaNativeAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as American Indian or Alaska Native +Count_HousingUnit_HouseholderRaceAsianAlone,Number of Occupied Housing Units with Householders Identifying as asian +Count_HousingUnit_HouseholderRaceAsianAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as asian +Count_HousingUnit_HouseholderRaceAsianAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as asian +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone,Number of Occupied Housing Units with Householders Identifying as Black or African American +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Black or African American +Count_HousingUnit_HouseholderRaceBlackOrAfricanAmericanAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Black or African American +Count_HousingUnit_HouseholderRaceHispanicOrLatino,Number of Occupied Housing Units with Householders Identifying as Hispanic or Latino +Count_HousingUnit_HouseholderRaceHispanicOrLatino_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Hispanic or Latino +Count_HousingUnit_HouseholderRaceHispanicOrLatino_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Hispanic or Latino +Count_HousingUnit_HouseholderRaceNativeHawaiianAndOtherPacificIslanderAlone,Number of Occupied Housing Units with Householders Identifying as Native Hawaiian and Other Pacific Islander +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Number of Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander +Count_HousingUnit_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as Native Hawaiian or Other Pacific Islander +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces,Number of Occupied Housing Units with Householders Identifying as multi Races +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Identifying as multi Races +Count_HousingUnit_HouseholderRaceTwoOrMoreRaces_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Identifying as multi Races +Count_HousingUnit_HouseholderRaceWhiteAlone,Number of Occupied Housing Units with Householders Identifying as white +Count_HousingUnit_HouseholderRaceWhiteAlone_OwnerOccupied,Number of Owner-Occupied Housing Units with Householders Who Are white +Count_HousingUnit_HouseholderRaceWhiteAlone_RenterOccupied,Number of Renter-Occupied Housing Units with Householders Who Are white +Count_HousingUnit_IncompleteKitchenFacilities_OccupiedHousingUnit,Number of Occupied Housing Units with Incomplete Kitchen Facilities +Count_HousingUnit_IncompletePlumbingFacilities_OccupiedHousingUnit,Number of Occupied Housing Units with Incomplete Plumbing Facilities +Count_HousingUnit_NoCashRent,Number of Renter-Occupied Housing Units with No Cash Rent +Count_HousingUnit_OccupiedHousingUnit,Number of Occupied Housing Units +Count_HousingUnit_OwnerOccupied,Number of Owner-Occupied Housing Units +Count_HousingUnit_RenterOccupied,Number of Renter-Occupied Housing Units +Count_HousingUnit_VacantHousingUnit,Number of Vacant Housing Units +Count_HousingUnit_WithCashRent,Number of rental Housing Units with Cash Rent +Count_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied,Number of Owner-Occupied Housing Units with a Mortgage +Count_HousingUnit_WithTotal1Rooms,Number of housing units with 1 room +Count_HousingUnit_WithTotal2Rooms,Number of housing units with 2 rooms +Count_HousingUnit_WithTotal3Rooms,Number of housing units with 3 rooms +Count_HousingUnit_WithTotal4Rooms,Number of housing units with 4 rooms +Count_HousingUnit_WithTotal5Rooms,Number of housing units with 5 rooms +Count_HousingUnit_WithTotal6Rooms,Number of housing units with 6 rooms +Count_HousingUnit_WithTotal7Rooms,Number of housing units with 7 rooms +Count_HousingUnit_WithTotal8Rooms,Number of housing units with 8 rooms +Count_HousingUnit_WithTotal9OrMoreRooms,Number of housing units with 9 or more rooms +Count_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied,Number of Owner Occupied Housing Units Without a Mortgage +Count_IceStormEvent,Number of Ice Storms +Count_LightningEvent,Number of Lightning Events +Count_MarineHailEvent,Number of Marine Hail Events +Count_MarineHighWindEvent,Number of Marine High Wind Events +Count_MarineStrongWindEvent,Number of Marine Strong Wind Events +Count_MarineThunderstormWindEvent,Number of Marine Thunderstorm Wind Events +Count_MarineTropicalStormEvent,Number of Marine Tropical Storms +Count_MedicalConditionIncident_COVID_19_PatientInICU,Number of COVID-19 Patients in the Intensive Care Unit +Count_MedicalConditionIncident_ConditionAIDS,Number of AIDS Cases +Count_MedicalConditionIncident_ConditionBotulism,Number of Botulism Cases +Count_MedicalConditionIncident_ConditionBrucellosis,Number of Brucellosis Cases +Count_MedicalConditionIncident_ConditionCampylobacteriosis,Number of Campylobacteriosis Cases +Count_MedicalConditionIncident_ConditionChickenpox,Number of Chickenpox Cases +Count_MedicalConditionIncident_ConditionChikungunya,Number of Chikungunya Cases +Count_MedicalConditionIncident_ConditionChlamydia,Number of Chlamydia Cases +Count_MedicalConditionIncident_ConditionCongenitalSyphilis,Number of Congenital Syphilis Cases +Count_MedicalConditionIncident_ConditionCryptosporidiosis,Number of Cryptosporidiosis Cases +Count_MedicalConditionIncident_ConditionCryptosporidiosis_ConfirmedCase,Number of Confirmed Cryptosporidiosis Cases +Count_MedicalConditionIncident_ConditionCryptosporidiosis_ProbableCase,Number of Probable Cryptosporidiosis Cases +Count_MedicalConditionIncident_ConditionCyclosporiasis,Number of Cyclosporiasis Cases +Count_MedicalConditionIncident_ConditionDengueDisease,Number of Dengue Disease Cases +Count_MedicalConditionIncident_ConditionGiardiasis,Number of Giardiasis Cases +Count_MedicalConditionIncident_ConditionGonorrhea,Number of Gonorrhea Cases +Count_MedicalConditionIncident_ConditionHIVAIDS,Number of HIV/AIDS Cases +Count_MedicalConditionIncident_ConditionHaemophilusInfluenzae_InvasiveDisease,Number of Haemophilus Influenzae Invasive Disease Cases +Count_MedicalConditionIncident_ConditionHemolyticUremicSyndrome_PostDiarrheal,Number of Post Diarrheal Hemolytic Uremic Syndrome Cases +Count_MedicalConditionIncident_ConditionHepatitisA_AcuteCondition,Number of Acute Hepatitis A Cases +Count_MedicalConditionIncident_ConditionHepatitisB_AcuteCondition,Number of Acute Hepatitis B Cases +Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ConfirmedCase,Number of Confirmed Acute Hepatitis C Cases +Count_MedicalConditionIncident_ConditionHepatitisC_AcuteCondition_ProbableCase,Number of Probable Acute Hepatitis C Cases +Count_MedicalConditionIncident_ConditionHumanGranulocyticAnaplasmosis,Number of Human Granulocytic Anaplasmosis Cases +Count_MedicalConditionIncident_ConditionHumanMonocyticEhrlichiosis,Number of Human Monocytic Ehrlichiosis Cases +Count_MedicalConditionIncident_ConditionInfantBotulism,Number of Infant Botulism Cases +Count_MedicalConditionIncident_ConditionInfluenza_PediatricMortality,Number of Influenza Deaths in Children +Count_MedicalConditionIncident_ConditionLegionnairesDisease,Number of Legionnaires Disease Cases +Count_MedicalConditionIncident_ConditionListeriosis,Number of Listeriosis Cases +Count_MedicalConditionIncident_ConditionListeriosis_ConfirmedCase,Number of Confirmed Listeriosis Cases +Count_MedicalConditionIncident_ConditionLymeDisease,Number of Lyme Disease Cases +Count_MedicalConditionIncident_ConditionLymeDisease_ConfirmedCase,Number of Confirmed Lyme Disease Cases +Count_MedicalConditionIncident_ConditionLymeDisease_ProbableCase,Number of Probable Cases of Lyme Disease +Count_MedicalConditionIncident_ConditionMalaria,Number of Malaria Cases +Count_MedicalConditionIncident_ConditionMeasles,Number of Measles Cases +Count_MedicalConditionIncident_ConditionMeningococcalMeningitis,Number of Meningococcal Meningitis Cases +Count_MedicalConditionIncident_ConditionMeningococcalMeningitis_InvasiveDisease,Number of Invasive Meningococcal Meningitis Cases +Count_MedicalConditionIncident_ConditionMumps,Number of Mumps Cases +Count_MedicalConditionIncident_ConditionPertussis,Number of Pertussis Cases +Count_MedicalConditionIncident_ConditionQFever,Number of QFever Cases +Count_MedicalConditionIncident_ConditionQFever_AcuteCondition,Number of Acute QFever Cases +Count_MedicalConditionIncident_ConditionRabiesinhuman,Number of Rabiesinhuman Cases +Count_MedicalConditionIncident_ConditionSalmonellosisExceptTyphiAndParatyphi,Number of Salmonellosis Except Typhi And Paratyphi Cases +Count_MedicalConditionIncident_ConditionShigaToxinEColi,Number of ShigaToxinEColi Cases +Count_MedicalConditionIncident_ConditionShigellosis,Number of Shigellosis Cases +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis,Number of Spotted Fever Rickettsiosis Cases +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosisIncludingRockyMountainSpottedFever,Number of Spotted Fever Rickettsiosis Including Rocky Mountain Spotted Fever Cases +Count_MedicalConditionIncident_ConditionSpottedFeverRickettsiosis_ProbableCase,Number of Probable Cases of Spotted Fever Rickettsiosis +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_ConfirmedCase,Number of Confirmed Cases of Streptococcus Pneumonia +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease,Number of Invasive Streptococcus Pneumonia Cases +Count_MedicalConditionIncident_ConditionStreptococcusPneumonia_InvasiveDisease_ConfirmedCase,Number of Confirmed Cases of Invasive Streptococcus Pneumonia +Count_MedicalConditionIncident_ConditionSyphilis,Number of Syphilis Cases +Count_MedicalConditionIncident_ConditionSyphilisPrimaryAndSecondary,Number of Syphilis Primary And Secondary Cases +Count_MedicalConditionIncident_ConditionTetanus,Number of Tetanus Cases +Count_MedicalConditionIncident_ConditionTuberculosis,Number of Tuberculosis Cases +Count_MedicalConditionIncident_ConditionTularemia,Number of Tularemia Cases +Count_MedicalConditionIncident_ConditionTyphoidFever,Number of Typhoid Fever Cases +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera,Number of Vibriosis Excluding Cholera Cases +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ConfirmedCase,Number of Confirmed Cases of Vibriosis Excluding Cholera +Count_MedicalConditionIncident_ConditionVibriosisExcludingCholera_ProbableCase,Number of Probable Cases of Vibriosis Excluding Cholera +Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NeuroinvasiveDisease,Number of Neuroinvasive West Nile Virus Disease Cases +Count_MedicalConditionIncident_ConditionWestNileVirusDisease_NonNeuroinvasiveDisease,Number of NonNeuroinvasive West Nile Virus Disease Cases +Count_MedicalConditionIncident_ConditionZikaVirusDisease_NonCongenitalDisease,Number of NonCongenital Zika Virus Disease Cases +Count_MedicalConditionIncident_ConditionZikaVirusInfection_NonCongenitalDisease,Number of NonCongenital Zika Virus Infection Cases +Count_MedicalConditionIncident_PatientDeceased_AnimalContactTransmission,Number of Deaths from Animal Contact Transmission +Count_MedicalConditionIncident_PatientDeceased_FoodborneTransmission,Number of Deaths from Foodborne Transmission +Count_MedicalConditionIncident_PatientDeceased_PersonToPersonTransmission,Number of Deaths from Person To Person Transmission +Count_MedicalConditionIncident_PatientDeceased_WaterborneTransmission,Number of Deaths from Waterborne Transmission +Count_MortalityEvent_Assault(Homicide),Number of Deaths from Assault (Homicide) +Count_MortalityEvent_Assault(Homicide)_Female,Number of female Deaths from Assault (Homicide) +Count_MortalityEvent_Diabetes,Number of Deaths from Diabetes +Count_MortalityEvent_Diabetes_Female,Number of female Deaths from Diabetes +Count_MortalityEvent_HeartDiseaseExcludingHypertension,Number of Deaths from Heart Disease Excluding Hypertension +Count_MortalityEvent_IntentionalSelf-Harm(Suicide),Number of Intentional Self-Harm (Suicide) Deaths +Count_MortalityEvent_IntentionalSelf-Harm(Suicide)_Female,Number of Intentional Self-Harm (Suicide) Deaths in Females +Count_MortalityEvent_Suicide,Number of Suicide Deaths +Count_Person,total population +Count_Person_0To4Years_Female,Number of girls under 4 years old +Count_Person_0To4Years_Male,Number of boys under 4 years old +Count_Person_10OrMoreYears_Literate_AsAFractionOf_Count_Person_10OrMoreYears,Literacy Rate Among Individuals Aged 10 Years and Older +Count_Person_10To14Years_Literate_AsAFractionOf_Count_Person_10To14Years,Literacy Rate Among Individuals Aged 10 to 14 years +Count_Person_15OrMoreYears_Divorced_AmericanIndianAndAlaskaNativeAlone,number of Divorced American Indian And Alaska Native people +Count_Person_15OrMoreYears_Divorced_AsianAlone,number of Divorced Asian people +Count_Person_15OrMoreYears_Divorced_BlackOrAfricanAmericanAlone,number of Divorced Black or African American people +Count_Person_15OrMoreYears_Divorced_ForeignBorn,number of divorced Foreign Born people +Count_Person_15OrMoreYears_Divorced_HispanicOrLatino,number of divorced Hispanic or Latino people +Count_Person_15OrMoreYears_Divorced_Native,number of Divorced Native people +Count_Person_15OrMoreYears_Divorced_NativeHawaiianAndOtherPacificIslanderAlone,number of Divorced Native Hawaiian And Other Pacific Islander people +Count_Person_15OrMoreYears_Divorced_OneRace,number of Divorced people with single Race +Count_Person_15OrMoreYears_Divorced_TwoOrMoreRaces,number of divorced people with multi-races +Count_Person_15OrMoreYears_Divorced_WhiteAlone,number of Divorced White people +Count_Person_15OrMoreYears_Female_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Female,prevalence of Female Smokers Aged 15 and Older +Count_Person_15OrMoreYears_InLaborForce_Female_AsFractionOf_Count_Person_InLaborForce,Female labor force participation rate +Count_Person_15OrMoreYears_Male_Smoking_AsFractionOf_Count_Person_15OrMoreYears_Male,prevalence of male Smokers Aged 15 and Older +Count_Person_15OrMoreYears_MarriedAndNotSeparated_AmericanIndianAndAlaskaNativeAlone,Number of married American Indian or Alaska Native people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_AsianAlone,Number of married asian people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_BlackOrAfricanAmericanAlone,Number of married Black or African American people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_ForeignBorn,Number of married foreign born people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_HispanicOrLatino,Number of married Hispanic or Latino people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_Native,Number of married native people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_NativeHawaiianAndOtherPacificIslanderAlone,Number of married Native Hawaiian and Other Pacific Islander people +Count_Person_15OrMoreYears_MarriedAndNotSeparated_OneRace,Number of married people of one race +Count_Person_15OrMoreYears_MarriedAndNotSeparated_TwoOrMoreRaces,Number of married people of two or more races +Count_Person_15OrMoreYears_MarriedAndNotSeparated_WhiteAlone,Number of married white people +Count_Person_15OrMoreYears_NeverMarried_AmericanIndianAndAlaskaNativeAlone,Number of never married American Indian or Alaska Native people +Count_Person_15OrMoreYears_NeverMarried_AsianAlone,Number of never married asian people +Count_Person_15OrMoreYears_NeverMarried_BlackOrAfricanAmericanAlone,Number of never married Black or African American people +Count_Person_15OrMoreYears_NeverMarried_ForeignBorn,Number of never married foreign born people +Count_Person_15OrMoreYears_NeverMarried_HispanicOrLatino,Number of never married Hispanic or Latino people +Count_Person_15OrMoreYears_NeverMarried_Native,Number of never married native people +Count_Person_15OrMoreYears_NeverMarried_NativeHawaiianAndOtherPacificIslanderAlone,Number of never married Native Hawaiian and Other Pacific Islander people +Count_Person_15OrMoreYears_NeverMarried_OneRace,Number of never married single-race people +Count_Person_15OrMoreYears_NeverMarried_TwoOrMoreRaces,Number of married people of multi-races +Count_Person_15OrMoreYears_NeverMarried_WhiteAlone,Number of never married white people +Count_Person_15OrMoreYears_NoIncome,number of working age people with no income +Count_Person_15OrMoreYears_Separated_AmericanIndianAndAlaskaNativeAlone,Number of separated American Indian or Alaska Native people +Count_Person_15OrMoreYears_Separated_AsianAlone,Number of separated asian people +Count_Person_15OrMoreYears_Separated_BlackOrAfricanAmericanAlone,Number of separated Black or African American people +Count_Person_15OrMoreYears_Separated_ForeignBorn,Number of separated Foreign Born people +Count_Person_15OrMoreYears_Separated_HispanicOrLatino,Number of separated Hispanic or Latino people +Count_Person_15OrMoreYears_Separated_Native,Number of separated Native people +Count_Person_15OrMoreYears_Separated_NativeHawaiianAndOtherPacificIslanderAlone,Number of separated Native Hawaiian and Other Pacific Islander people +Count_Person_15OrMoreYears_Separated_OneRace,Number of separated One Race people +Count_Person_15OrMoreYears_Separated_TwoOrMoreRaces,Number of separated Two Or More Races people +Count_Person_15OrMoreYears_Separated_WhiteAlone,Number of separated white people +Count_Person_15OrMoreYears_Smoking_AsFractionOf_Count_Person_15OrMoreYears,prevalence of Smokers Aged 15 and Older +Count_Person_15OrMoreYears_Widowed_AmericanIndianAndAlaskaNativeAlone,Number of widowed American Indian or Alaska Native people +Count_Person_15OrMoreYears_Widowed_AsianAlone,Number of widowed asian people +Count_Person_15OrMoreYears_Widowed_BlackOrAfricanAmericanAlone,Number of widowed Black or African American people +Count_Person_15OrMoreYears_Widowed_ForeignBorn,Number of widowed foreign born people +Count_Person_15OrMoreYears_Widowed_HispanicOrLatino,Number of widowed Hispanic or Latino people +Count_Person_15OrMoreYears_Widowed_Native,Number of widowed native born people +Count_Person_15OrMoreYears_Widowed_NativeHawaiianAndOtherPacificIslanderAlone,Number of widowed Native Hawaiian and Other Pacific Islander people +Count_Person_15OrMoreYears_Widowed_OneRace,Number of widowed one race people +Count_Person_15OrMoreYears_Widowed_TwoOrMoreRaces,Number of widowed multi race people +Count_Person_15OrMoreYears_Widowed_WhiteAlone,Number of widowed white people +Count_Person_15OrMoreYears_WithIncome,Number of people with Income +Count_Person_15To19Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To19Years_Female,Percentage of Females Aged 15-19 Who Gave Birth in the Past 12 Months +Count_Person_15To19Years_Literate_AsAFractionOf_Count_Person_15To19Years,Percentage of Persons Aged 15-19 who are Literate +Count_Person_15To24Years_Illiterate_AsAFractionOf_Count_Person_15To24Years,Percentage of Persons Aged 15-24 who are Illiterate +Count_Person_15To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_15To50Years_Female,Percentage of Females Aged 15-50 Who Gave Birth in the Past 12 Months +Count_Person_15To64Years_InLaborForce_AsFractionOf_Count_Person_15To64Years,Labor force participation rate +Count_Person_15To64Years_Male_InLaborForce_AsFractionOf_Count_Person_15To64Years_Male,Male labor force participation rate +Count_Person_16OrMoreYears_Female_WithEarnings,Number of Females with Earnings +Count_Person_16OrMoreYears_Male_WithEarnings,Number of Males with Earnings +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf15000To24999USDollar_WithEarnings,"number of people Earning Between $15,000 and $25000 Without Health Insurance" +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf25000To34999USDollar_WithEarnings,"number of people Earning Between $25,000 and $35000 Without Health Insurance" +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf35000To49999USDollar_WithEarnings,"number of people Earning Between $35,000 and $50000 Without Health Insurance" +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf4999OrLessUSDollar_WithEarnings,number of people Earning less than $5000 and Without Health Insurance +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf50000To74999USDollar_WithEarnings,"number of people Earning Between $50,000 and $75000 Without Health Insurance" +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf5000To14999USDollar_WithEarnings,"number of people Earning $5,000 to $15000 Without Health Insurance" +Count_Person_16OrMoreYears_NoHealthInsurance_IncomeOf75000OrMoreUSDollar_WithEarnings,"number of people Earning $75,000 or more Without Health Insurance" +Count_Person_16OrMoreYears_WithEarnings,Number of people with earnings +Count_Person_16To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_16To50Years_Female,Percentage of females aged 16-50 who gave birth in the past 12 months +Count_Person_18OrLessYears_Female_ResidesInCollegeOrUniversityStudentHousing,Number of females aged 18 or less who reside in college or university student housing +Count_Person_18OrLessYears_Male_ResidesInCollegeOrUniversityStudentHousing,Number of males aged 18 or less who reside in college or university student housing +Count_Person_18OrMoreYears_Civilian,Number of civilians aged 18 or more +Count_Person_18OrMoreYears_Civilian_ResidesInAdultCorrectionalFacilities,Number of civilians aged 18 or more who reside in adult correctional facilities +Count_Person_18OrMoreYears_Civilian_ResidesInCollegeOrUniversityStudentHousing,Number of civilians aged 18 or more who reside in college or university student housing +Count_Person_18OrMoreYears_Civilian_ResidesInGroupQuarters,Number of civilians aged 18 or more who reside in group quarters +Count_Person_18OrMoreYears_Civilian_ResidesInInstitutionalizedGroupQuarters,Number of civilians aged 18 or more who reside in institutionalized group quarters +Count_Person_18OrMoreYears_Civilian_ResidesInNoninstitutionalizedGroupQuarters,Number of civilians aged 18 or more who reside in noninstitutionalized group quarters +Count_Person_18OrMoreYears_Civilian_ResidesInNursingFacilities,Number of Civilian Individuals Aged 18 or More Resides In Nursing Facilities +Count_Person_1OrMoreYears_DifferentHouse1YearAgo,Number of people older than 1 and moved home in the last year +Count_Person_1OrMoreYears_RenterOccupied_ResidesInHousingUnit,Number of people older than 1 and live in Renter Occupied Housing Units +Count_Person_1OrMoreYears_ResidesInHousingUnit,Number of people older than 1 and reside in a Housing Unit +Count_Person_25OrMoreYears_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people with a Bachelor's or higher Degree +Count_Person_25OrMoreYears_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people with a Doctorate Degree +Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Female,Number of Females with Educational Attainment of 10th Grade +Count_Person_25OrMoreYears_EducationalAttainment10ThGrade_Male,Number of Males with Educational Attainment of 10th Grade +Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Female,Number of Females with Educational Attainment of 11th Grade +Count_Person_25OrMoreYears_EducationalAttainment11ThGrade_Male,Number of Males with Educational Attainment of 11th Grade +Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Female,Number of Females with Educational Attainment of 12th Grade without Diploma +Count_Person_25OrMoreYears_EducationalAttainment12ThGradeNoDiploma_Male,Number of Males with Educational Attainment of 12th Grade without Diploma +Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Female,Number of Females with Educational Attainment of 9th Grade +Count_Person_25OrMoreYears_EducationalAttainment9ThGrade_Male,Number of Males with Educational Attainment of 9th Grade +Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Female,Number of Females with Educational Attainment of Associate's Degree +Count_Person_25OrMoreYears_EducationalAttainmentAssociatesDegree_Male,Number of Males with Educational Attainment of Associate's Degree +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Female,Number of Females with a Bachelors or Higher Degree +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegreeOrHigher_Male,Number of Males with a Bachelors Degree or Higher +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Female,Number of females have their bachelors degree +Count_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_Male,Number of males have their bachelors degree +Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Female,Number of Females with a Doctorate Degree +Count_Person_25OrMoreYears_EducationalAttainmentDoctorateDegree_Male,Number of Males with a Doctorate Degree +Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Female,Number of Females with a Masters Degree +Count_Person_25OrMoreYears_EducationalAttainmentMastersDegree_Male,Number of Males with a Masters Degree +Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Female,Number of Females with No Schooling Completed +Count_Person_25OrMoreYears_EducationalAttainmentNoSchoolingCompleted_Male,Number of Males with No Schooling Completed +Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Female,Number of Females with Educational Attainment from Nursery to 4th Grade +Count_Person_25OrMoreYears_EducationalAttainmentNurseryTo4ThGrade_Male,Number of Males with Educational Attainment from Nursery to 4th Grade +Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Female,Number of Females with a Professional School Degree +Count_Person_25OrMoreYears_EducationalAttainmentProfessionalSchoolDegree_Male,Number of Males with a Professional School Degree +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Female,Number of Females with Some College Education for 1 or More Years with No Degree +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree_Male,Number of Males with Some College Education for 1 or More Years with No Degree +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Female,Number of Females with Some College Education for Less than 1 Year +Count_Person_25OrMoreYears_EducationalAttainmentSomeCollegeLessThan1Year_Male,Number of Males with Some College Education for Less than 1 Year +Count_Person_25OrMoreYears_Female_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Bachelors Degree or Higher Educational Attainment +Count_Person_25OrMoreYears_Female_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Doctorate Degree +Count_Person_25OrMoreYears_Female_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Masters Degree or Higher +Count_Person_25OrMoreYears_Female_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Female,Percentage of Females with a Tertiary Education +Count_Person_25OrMoreYears_Male_BachelorsDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males with a Bachelors Degree or Higher +Count_Person_25OrMoreYears_Male_DoctorateDegree_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Doctorate Degree +Count_Person_25OrMoreYears_Male_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Masters Degree or Higher +Count_Person_25OrMoreYears_Male_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears_Male,Percentage of Males Who Have a Tertiary Education +Count_Person_25OrMoreYears_MastersDegreeOrHigher_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people Who Have a Masters Degree or Higher +Count_Person_25OrMoreYears_TertiaryEducation_AsFractionOf_Count_Person_25OrMoreYears,Percentage of people Who Have a Tertiary Education +Count_Person_25To59Years_Illiterate_AsAFractionOf_Count_Person_25To59Years,Percentage of people Aged 25 to 59 Who are Illiterate +Count_Person_25To64Years_EnrolledInEducationOrTraining_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who are enrolled in education or training +Count_Person_25To64Years_EnrolledInEducationOrTraining_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who are enrolled in education or training +Count_Person_25To64Years_EnrolledInEducationOrTraining_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who are enrolled in education or training +Count_Person_25To64Years_TertiaryEducation_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who have tertiary education +Count_Person_25To64Years_TertiaryEducation_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who have tertiary education +Count_Person_25To64Years_TertiaryEducation_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who have tertiary education +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_AsAFractionOfCount_Person_25To64Years,Percentage of people aged 25 to 64 who have upper secondary education or higher +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Female_AsAFractionOfCount_Person_25To64Years_Female,Percentage of females aged 25 to 64 who have upper secondary education or higher +Count_Person_25To64Years_UpperSecondaryEducationOrHigher_Male_AsAFractionOfCount_Person_25To64Years_Male,Percentage of males aged 25 to 64 who have upper secondary education or higher +Count_Person_35To50Years_BirthInThePast12Months_Female_AsAFractionOf_Count_Person_35To50Years_Female,Percentage of females aged 35 to 50 who have given birth in the past 12 months +Count_Person_3OrMoreYears_Female_EnrolledInSchool,number of females who are enrolled in school +Count_Person_3OrMoreYears_Male_EnrolledInSchool,number of males who are actively enrolled in any educational institution +Count_Person_5OrMoreYears_AfricanLanguagesSpokenAtHome,number of people who speak an African language at home +Count_Person_5OrMoreYears_AmharicSomaliOrOtherAfroAsiaticLanguagesSpokenAtHome,number of people who speak an Amharic Somali or other Afro-Asiatic language at home +Count_Person_5OrMoreYears_ArabicSpokenAtHome,number of people who speak Arabic at home +Count_Person_5OrMoreYears_ArmenianSpokenAtHome,number of people who speak Armenian at home +Count_Person_5OrMoreYears_BengaliSpokenAtHome,number of people who speak Bengali at home +Count_Person_5OrMoreYears_ChineseInclMandarinCantoneseSpokenAtHome,"number of people who speak any Chinese, Mandarin, or Cantonese language at home" +Count_Person_5OrMoreYears_ChineseSpokenAtHome,number of people who speak Chinese at home +Count_Person_5OrMoreYears_ForeignBorn,number of people who are foreign born +Count_Person_5OrMoreYears_FrenchCreoleSpokenAtHome,number of people who speak French Creole at home +Count_Person_5OrMoreYears_FrenchInclCajunSpokenAtHome,number of people who speak French (including Cajun) at home +Count_Person_5OrMoreYears_FrenchInclPatoisCajunSpokenAtHome,number of people who speak French (including Patois Cajun) at home +Count_Person_5OrMoreYears_GermanSpokenAtHome,number of people who speak German at home +Count_Person_5OrMoreYears_GreekSpokenAtHome,number of people who speak Greek at home +Count_Person_5OrMoreYears_GujaratiSpokenAtHome,number of people who speak Gujarati at home +Count_Person_5OrMoreYears_HaitianSpokenAtHome,number of people who speak Haitian at home +Count_Person_5OrMoreYears_HebrewSpokenAtHome,number of people who speak Hebrew at home +Count_Person_5OrMoreYears_HindiSpokenAtHome,number of people who speak Hindi at home +Count_Person_5OrMoreYears_HmongSpokenAtHome,number of people who speak Hmong at home +Count_Person_5OrMoreYears_HungarianSpokenAtHome,number of people who speak Hungarian at home +Count_Person_5OrMoreYears_IlocanoSamoanHawaiianOrOtherAustronesianLanguagesSpokenAtHome,number of people who speak an Ilocano Samoan Hawaiian or other Austronesian language at home +Count_Person_5OrMoreYears_ItalianSpokenAtHome,number of people who speak Italian at home +Count_Person_5OrMoreYears_JapaneseSpokenAtHome,number of people who speak Japanese at home +Count_Person_5OrMoreYears_KhmerSpokenAtHome,number of people who speak Khmer at home +Count_Person_5OrMoreYears_KoreanSpokenAtHome,number of people who speak Korean at home +Count_Person_5OrMoreYears_LanguageOtherThanEnglishSpokenAtHome,number of people who speak non-english language at home +Count_Person_5OrMoreYears_LaotianSpokenAtHome,number of people who speak Laotian at home +Count_Person_5OrMoreYears_MalayalamKannadaOrOtherDravidianLanguagesSpokenAtHome,"number of people who speak Malayalam, Kannada or other Dravidian languages at home" +Count_Person_5OrMoreYears_MonKhmerCambodianSpokenAtHome,number of people who speak Mon Khmer Cambodian at home +Count_Person_5OrMoreYears_NavajoSpokenAtHome,number of people who speak Navajo at home +Count_Person_5OrMoreYears_NepaliMarathiOrOtherIndicLanguagesSpokenAtHome,"number of people who speak Nepali, Marathi or other Indic languages at home" +Count_Person_5OrMoreYears_OnlyEnglishSpokenAtHome,number of people who speak only English at home +Count_Person_5OrMoreYears_PersianInclFarsiDariSpokenAtHome,number of people who speak Persian including Farsi and Dari at home +Count_Person_5OrMoreYears_PersianSpokenAtHome,number of people who speak Persian at home +Count_Person_5OrMoreYears_PolishSpokenAtHome,number of people who speak Polish at home +Count_Person_5OrMoreYears_PortugueseOrPortugueseCreoleSpokenAtHome,number of people who speak Portuguese or Portuguese Creole at home +Count_Person_5OrMoreYears_PortugueseSpokenAtHome,number of people who speak Portuguese at home +Count_Person_5OrMoreYears_PunjabiSpokenAtHome,number of people who speak Punjabi at home +Count_Person_5OrMoreYears_ResidesInHousehold,number of people who reside in a household +Count_Person_5OrMoreYears_RussianSpokenAtHome,number of people who speak Russian at home +Count_Person_5OrMoreYears_ScandinavianLanguagesSpokenAtHome,number of people who speak Scandinavian languages at home +Count_Person_5OrMoreYears_SerboCroatianSpokenAtHome,number of people who speak SerboCroatian at home +Count_Person_5OrMoreYears_SpanishSpokenAtHome,number of people who speak Spanish at home +Count_Person_5OrMoreYears_TagalogInclFilipinoSpokenAtHome,number of people who speak Tagalog including Filipino at home +Count_Person_5OrMoreYears_TagalogSpokenAtHome,number of people who speak Tagalog at home +Count_Person_5OrMoreYears_TamilSpokenAtHome,number of people who speak Tamil at home +Count_Person_5OrMoreYears_TeluguSpokenAtHome,number of people who speak Telugu at home +Count_Person_5OrMoreYears_ThaiLaoOrOtherTaiKadaiLanguagesSpokenAtHome,"number of people who speak Thai, Lao or other Tai Kadai languages at home" +Count_Person_5OrMoreYears_ThaiSpokenAtHome,number of people who speak Thai at home +Count_Person_5OrMoreYears_UkrainianOrOtherSlavicLanguagesSpokenAtHome,number of people who speak Ukranian or other slavic languages at home +Count_Person_5OrMoreYears_UrduSpokenAtHome,number of people who speak Urdu at home +Count_Person_5OrMoreYears_VietnameseSpokenAtHome,number of people who speak Vietnamese at home +Count_Person_5OrMoreYears_YiddishSpokenAtHome,number of people who speak Yiddish at home +Count_Person_60OrMoreYears_Illiterate_AsAFractionOf_Count_Person_60OrMoreYears,Percent of illiterate people older than 60 +Count_Person_65OrMoreYears_Female_ResidesInNursingFacilities,number of females aged 65 Years or More and reside in Nursing Facilities +Count_Person_65OrMoreYears_Male_ResidesInNursingFacilities,number of males aged 65 Years or More and reside in Nursing Facilities +Count_Person_85OrMoreYears_Female,Number of females older than 85 +Count_Person_85OrMoreYears_Male,Number of males older than 85 +Count_Person_Aadhaar_Enrolled,Number of people enrolled for Aadhaar +Count_Person_AbovePovertyLevelInThePast12Months,Number of people who were above the poverty line in the last 12 months +Count_Person_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of people above the poverty line in the past year who are American Indian or Alaska Native +Count_Person_AbovePovertyLevelInThePast12Months_AsianAlone,Number of people above the poverty line in the past year who are asian +Count_Person_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of people above the poverty line in the past year who are Black or African American +Count_Person_AbovePovertyLevelInThePast12Months_HispanicOrLatino,Number of people above the poverty line in the past year who are Hispanic or Latino +Count_Person_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of people above the poverty line in the past year who are Native Hawaiian or Other Pacific Islander +Count_Person_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,Number of people above the poverty line in the past year who are multi race +Count_Person_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of people above the poverty line in the past year who are white +Count_Person_AmbulatoryDifficulty,Number of people With Ambulatory Difficulty +Count_Person_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInAdultCorrectionalFacilities,Number of American Indian or Alaska Native people who reside in adult correctional facilities +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInCollegeOrUniversityStudentHousing,Number of American Indian or Alaska Native people who reside in college or university student housing +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInGroupQuarters,Number of American Indian or Alaska Native people who reside in group quarters +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInInstitutionalizedGroupQuarters,Number of American Indian or Alaska Native people who reside in institutionalized group quarters +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInJuvenileFacilities,Number of American Indian or Alaska Native people who reside in juvenile facilities +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of American Indian or Alaska Native people who reside in military quarters or military ships +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of American Indian or Alaska Native people who reside in noninstitutionalized group quarters +Count_Person_AmericanIndianOrAlaskaNativeAlone_ResidesInNursingFacilities,Number of American Indian or Alaska Native people who reside in nursing facilities +Count_Person_AsianAlone,Number of asian people +Count_Person_AsianAlone_ResidesInAdultCorrectionalFacilities,Number of asian people who reside in adult correctional facilities +Count_Person_AsianAlone_ResidesInCollegeOrUniversityStudentHousing,Number of asian people who reside in college or university student housing +Count_Person_AsianAlone_ResidesInGroupQuarters,Number of asian people who reside in group quarters +Count_Person_AsianAlone_ResidesInInstitutionalizedGroupQuarters,Number of asian people who reside in institutionalized group quarters +Count_Person_AsianAlone_ResidesInJuvenileFacilities,Number of asian people who reside in juvenile facilities +Count_Person_AsianAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of asian people who reside in military quarters or military ships +Count_Person_AsianAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of asian people who reside in noninstitutionalized group quarters +Count_Person_AsianAlone_ResidesInNursingFacilities,Number of asian people who reside in nursing facilities +Count_Person_AsianOrPacificIslander,Number of Asian or Pacific Islander people +Count_Person_BachelorOfArtsHumanitiesAndOtherMajor,"Number of people with a bachelor's degree or higher in Arts, Humanities, and Other Major" +Count_Person_BachelorOfBusinessMajor,Number of people with a bachelor's degree or higher in Business Major +Count_Person_BachelorOfEducationMajor,Number of people with a bachelor's degree or higher in Education Major +Count_Person_BachelorOfScienceAndEngineeringMajor,Number of people with a bachelor's degree or higher in Science and Engineering Major +Count_Person_BachelorOfScienceAndEngineeringRelatedMajor,Number of people with a bachelor's degree or higher in Science and Engineering Related Major +Count_Person_BelowPovertyLevelInThePast12Months,Number of people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_AsFractionOf_Count_Person,Percentage of people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_AsianAlone,Number of asian people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black or African American people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_HispanicOrLatino,Number of Hispanic or Latino people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian Or Other Pacific IslanderAlone people below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of people of multi races below poverty level in the past 12 months +Count_Person_BelowPovertyLevelInThePast12Months_WhiteAlone,Number of white people below poverty level in the past 12 months +Count_Person_BlackOrAfricanAmericanAlone,Number of Black or African American people +Count_Person_BlackOrAfricanAmericanAlone_ResidesInAdultCorrectionalFacilities,Number of Black or African American people who reside in adult correctional facilities +Count_Person_BlackOrAfricanAmericanAlone_ResidesInCollegeOrUniversityStudentHousing,Number of Black or African American people who reside in College Or University Student Housing +Count_Person_BlackOrAfricanAmericanAlone_ResidesInGroupQuarters,Number of Black or African American people who reside in group quarters +Count_Person_BlackOrAfricanAmericanAlone_ResidesInInstitutionalizedGroupQuarters,Number of Black or African American people who reside in institutionalized group quarters +Count_Person_BlackOrAfricanAmericanAlone_ResidesInJuvenileFacilities,Number of Black or African American people who reside in juvenile facilities +Count_Person_BlackOrAfricanAmericanAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Black or African American people who reside in military quarters or military ships +Count_Person_BlackOrAfricanAmericanAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of Black or African American people who reside in noninstitutionalized group quarters +Count_Person_BlackOrAfricanAmericanAlone_ResidesInNursingFacilities,Number of Black or African American people who reside in nursing facilities +Count_Person_BornInOtherStateInTheUnitedStates,Number of people who were born in other state in the United States +Count_Person_BornInStateOfResidence,Number of people who were born in state of residence +Count_Person_Civilian_Employed,Number of employed civilian +Count_Person_Civilian_FamilyHousehold_NonInstitutionalized,Number of people in family household +Count_Person_Civilian_Female_NonInstitutionalized,Number of NonInstitutionalized females +Count_Person_Civilian_InLaborForce,Number of people in labor force +Count_Person_Civilian_Male_NonInstitutionalized,Number of NonInstitutionalized males +Count_Person_Civilian_MarriedCoupleFamilyHousehold_NonInstitutionalized,Number of people in married couple family household +Count_Person_Civilian_NoDisability_NonInstitutionalized,Number of NonInstitutionalized females without disability +Count_Person_Civilian_NonInstitutionalized,Number of NonInstitutionalized civilian +Count_Person_Civilian_NonInstitutionalized_AmericanIndianOrAlaskaNativeAlone,number of NonInstitutionalized American Indian or Alaska Native Civilian +Count_Person_Civilian_NonInstitutionalized_AsianAlone,number of NonInstitutionalized asian Civilian +Count_Person_Civilian_NonInstitutionalized_BlackOrAfricanAmericanAlone,number of NonInstitutionalized Black or African American Civilian +Count_Person_Civilian_NonInstitutionalized_ForeignBorn,number of NonInstitutionalized Foreign Born Civilian +Count_Person_Civilian_NonInstitutionalized_HispanicOrLatino,number of NonInstitutionalized Hispanic or Latino Civilian +Count_Person_Civilian_NonInstitutionalized_Native,number of NonInstitutionalized native Civilian +Count_Person_Civilian_NonInstitutionalized_NativeHawaiianOrOtherPacificIslanderAlone,number of NonInstitutionalized Native Hawaiian or Other Pacific Islander Civilian +Count_Person_Civilian_NonInstitutionalized_OneRace,number of NonInstitutionalized single race Civilian +Count_Person_Civilian_NonInstitutionalized_PovertyStatusDetermined,number of NonInstitutionalized Civilian with poverty status determined +Count_Person_Civilian_NonInstitutionalized_ResidesInHousehold,number of NonInstitutionalized Civilian who resides in household +Count_Person_Civilian_NonInstitutionalized_TwoOrMoreRaces,number of NonInstitutionalized muti-race Civilian +Count_Person_Civilian_NonInstitutionalized_WhiteAlone,number of NonInstitutionalized white Civilian +Count_Person_Civilian_ResidesInHousehold,Number of civilian reside in household +Count_Person_Civilian_WithDisability_NonInstitutionalized,Number of NonInstitutionalized civilian with disability +Count_Person_CognitiveDifficulty,Number of People Who Have Cognitive Difficulty +Count_Person_DetailedEnrolledInCollegeUndergraduateYears,Number of people Enrolled in Undergraduate college +Count_Person_DetailedEnrolledInGrade1,Number of people Enrolled in Grade 1 +Count_Person_DetailedEnrolledInGrade10,Number of people Enrolled in Grade 10 +Count_Person_DetailedEnrolledInGrade11,Number of people Enrolled in Grade 11 +Count_Person_DetailedEnrolledInGrade12,Number of people Enrolled in Grade 12 +Count_Person_DetailedEnrolledInGrade2,Number of people Enrolled in Grade 2 +Count_Person_DetailedEnrolledInGrade3,Number of people Enrolled in Grade 3 +Count_Person_DetailedEnrolledInGrade4,Number of people Enrolled in Grade 4 +Count_Person_DetailedEnrolledInGrade5,Number of people Enrolled in Grade 5 +Count_Person_DetailedEnrolledInGrade6,Number of people Enrolled in Grade 6 +Count_Person_DetailedEnrolledInGrade7,Number of people Enrolled in Grade 7 +Count_Person_DetailedEnrolledInGrade8,Number of people Enrolled in Grade 8 +Count_Person_DetailedEnrolledInGrade9,Number of people Enrolled in Grade 9 +Count_Person_DetailedEnrolledInNurserySchoolPreschool,Number of people Enrolled in Nursery School Preschool +Count_Person_DetailedGraduateOrProfessionalSchool,Number of people enrolled in Graduate Or Professional School +Count_Person_DetailedHighSchool,Number of people enrolled in High School +Count_Person_DetailedMiddleSchool,Number of people enrolled in Middle School +Count_Person_DetailedPrimarySchool,Number of people enrolled in Primary School +Count_Person_Divorced,Number of divorced individuals +Count_Person_DivorcedOrSeparated,Number of divorced or separated individuals +Count_Person_Divorced_ResidesInAdultCorrectionalFacilities,Number of divorced individuals residing in adult correctional facilities +Count_Person_Divorced_ResidesInCollegeOrUniversityStudentHousing,Number of divorced individuals residing in college or university student housing +Count_Person_Divorced_ResidesInGroupQuarters,Number of divorced individuals residing in group quarters +Count_Person_Divorced_ResidesInInstitutionalizedGroupQuarters,Number of divorced individuals residing in institutionalized group quarters +Count_Person_Divorced_ResidesInNoninstitutionalizedGroupQuarters,Number of divorced individuals residing in noninstitutionalized group quarters +Count_Person_Divorced_ResidesInNursingFacilities,Number of divorced individuals residing in nursing facilities +Count_Person_EducationalAttainment10ThGrade,Number of People Who Completed 10th Grade +Count_Person_EducationalAttainment11ThGrade,Number of People Who Completed 11th Grade +Count_Person_EducationalAttainment12ThGradeNoDiploma,Number of People Who Completed 12th Grade No Diploma +Count_Person_EducationalAttainment1StGrade,Number of People Who Completed 1st Grade +Count_Person_EducationalAttainment2NdGrade,Number of People Who Completed 2nd Grade +Count_Person_EducationalAttainment3RdGrade,Number of People Who Completed 3rd Grade +Count_Person_EducationalAttainment4ThGrade,Number of People Who Completed 4th Grade +Count_Person_EducationalAttainment5ThGrade,Number of People Who Completed 5th Grade +Count_Person_EducationalAttainment6ThGrade,Number of People Who Completed 6th Grade +Count_Person_EducationalAttainment7ThGrade,Number of People Who Completed 7th Grade +Count_Person_EducationalAttainment8ThGrade,Number of People Who Completed 8th Grade +Count_Person_EducationalAttainment9ThGrade,Number of People Who Completed 9th Grade +Count_Person_EducationalAttainmentAssociatesDegree,Number of People with Associates Degree +Count_Person_EducationalAttainmentBachelorsDegree,Number of People with Bachelors Degree +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher,Number of People With Bachelor's or higher Degree +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_DivorcedInThePast12Months,Number of Female People With Bachelor's Degree or Higher Who Divorced in the Past 12 Months +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Female_MarriedInThePast12Months,Number of Female People With Bachelor's Degree or Higher Who Married in the Past 12 Months +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_DivorcedInThePast12Months,Number of Male People With Bachelor's Degree or Higher Who Divorced in the Past 12 Months +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Male_MarriedInThePast12Months,Number of Male People With Bachelor's Degree or Higher Who Married in the Past 12 Months +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_OnlyEnglishSpokenAtHome,Number of People With Bachelor's Degree or Higher Who Speak Only English at Home +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInAdultCorrectionalFacilities,Number of People With Bachelor's Degree or Higher Who Reside in Adult Correctional Facilities +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInCollegeOrUniversityStudentHousing,Number of People With Bachelor's Degree or Higher Who Reside in College or University Student Housing +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Group Quarters +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInInstitutionalizedGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Institutionalized Group Quarters +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNoninstitutionalizedGroupQuarters,Number of People With Bachelor's Degree or Higher Who Reside in Noninstitutionalized Group Quarters +Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_ResidesInNursingFacilities,Number of People With Bachelor's Degree or Higher Who Reside in Nursing Facilities +Count_Person_EducationalAttainmentDoctorateDegree,Number of People Who Completed Doctorate Degree +Count_Person_EducationalAttainmentGedOrAlternativeCredential,Number of People Who Completed Ged Or Alternative Credential +Count_Person_EducationalAttainmentGraduateOrProfessionalDegree,Number of People Who Completed Graduate Or Professional Degree +Count_Person_EducationalAttainmentHighSchoolGraduateIncludesEquivalency,Number of People Who Completed High School and Earned an Equivalency +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher,Number of people who are high school graduates or higher +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInAdultCorrectionalFacilities,Number of people who are high school graduates or higher and reside in adult correctional facilities +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInCollegeOrUniversityStudentHousing,Number of people who are high school graduates or higher and reside in college or university student housing +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInGroupQuarters,Number of people who are high school graduates or higher and reside in group quarters +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInInstitutionalizedGroupQuarters,Number of people who are high school graduates or higher and reside in institutionalized group quarters +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNoninstitutionalizedGroupQuarters,Number of people who are high school graduates or higher and reside in noninstitutionalized group quarters +Count_Person_EducationalAttainmentHighSchoolGraduateOrHigher_ResidesInNursingFacilities,Number of people who are high school graduates or higher and reside in nursing facilities +Count_Person_EducationalAttainmentKindergarten,Number of people with kindergarten level education +Count_Person_EducationalAttainmentLessThanHighSchoolGraduate,Number of people who are less than high school graduates +Count_Person_EducationalAttainmentMastersDegree,Number of people With Masters Degree +Count_Person_EducationalAttainmentNoSchoolingCompleted,Number of people who have not completed any formal education +Count_Person_EducationalAttainmentNurserySchool,Number of people with a nursery school level of education +Count_Person_EducationalAttainmentPrimarySchool,Number of people with a primary school level of education +Count_Person_EducationalAttainmentProfessionalSchoolDegree,Number of people with professional school degree +Count_Person_EducationalAttainmentRegularHighSchoolDiploma,Number of people with high school diploma +Count_Person_EducationalAttainmentSomeCollege1OrMoreYearsNoDegree,Number of people attended college but have no degree +Count_Person_EducationalAttainmentSomeCollegeLessThan1Year,Number of people attended college for less than 1 year +Count_Person_EducationalAttainmentSomeCollegeOrAssociatesDegree,Number of people with associates degree +Count_Person_EducationalAttainment_9ThTo12ThGradeNoDiploma,Number of People Who Completed 9th to 12th Grade Without Earning a Diploma +Count_Person_EducationalAttainment_LessThan9ThGrade,Number of People Who Completed Less Than 9th Grade +Count_Person_EducationalAttainment_LessThanHighSchoolDiploma,Number of People Who Completed Less Than High School Diploma +Count_Person_EducationalAttainment_SomeCollegeNoDegree,Number of People Who Completed Some College No Degree +Count_Person_Employed,Number of employed people +Count_Person_Employed_NACE/A,"Number of employed people in Agriculture, forestry and fishing" +Count_Person_Employed_NACE/C,Number of employed people in Manufacturing +Count_Person_Employed_NACE/F,Number of employed people in Construction +Count_Person_Employed_NACE/J,Number of employed people in Information and communication +Count_Person_Employed_NACE/K,Number of employed people in Financial and insurance activities +Count_Person_Employed_NACE/L,Number of employed people in Real estate activities +Count_Person_EnrolledInCollegeOrGraduateSchool,Number of people Enrolled in College or Graduate School +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInAdultCorrectionalFacilities,Number of people Enrolled in College or Graduate School and Resides in Adult Correctional Facilities +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInCollegeOrUniversityStudentHousing,Number of people Enrolled in College or Graduate School and Resides in College or University Student Housing +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInGroupQuarters,Number of people Enrolled in College or Graduate School and Resides in Group Quarters +Count_Person_EnrolledInCollegeOrGraduateSchool_ResidesInNursingFacilities,Number of people Enrolled in College or Graduate School and Resides in Nursing Facilities +Count_Person_EnrolledInCollegeUndergraduateYears,Number of people Enrolled in College Undergraduate Years +Count_Person_EnrolledInKindergarten,Number of people Enrolled in Kindergarten +Count_Person_EnrolledInSchool,Number of people enrolled in school +Count_Person_Female,Number of females +Count_Person_Female_AbovePovertyLevelInThePast12Months,number of females living Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_AsianAlone,number of asian females who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,number of Black or African American females who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_HispanicOrLatino,number of hispanic or latino who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander females who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,number of muti-race females who live Above Poverty Level in the Past Year +Count_Person_Female_AbovePovertyLevelInThePast12Months_WhiteAlone,number of white females who live Above Poverty Level in the Past Year +Count_Person_Female_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females +Count_Person_Female_AsianAlone,number of asian females +Count_Person_Female_AsianOrPacificIslander,number of asian or pacific islander females +Count_Person_Female_BelowPovertyLevelInThePast12Months,number of females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,number of american indian or alaska native females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_AsianAlone,number of asian females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,number of Black or African American females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_HispanicOrLatino,number of hispanic or latino females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,number of native hawaiian or other pacific islander females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,number of multi races females who live below poverty level in the past year +Count_Person_Female_BelowPovertyLevelInThePast12Months_WhiteAlone,number of white females who live below poverty level in the past year +Count_Person_Female_BlackOrAfricanAmericanAlone,number of Black or African American females +Count_Person_Female_ConditionArthritis,Number of females with arthritis +Count_Person_Female_ConditionDiseasesOfHeart,Number of females with heart Disease +Count_Person_Female_DidNotWork,Number of females in the age range of 16 to 64 who do not work +Count_Person_Female_Divorced,Number of divorced females +Count_Person_Female_DivorcedInThePast12Months_BelowPovertyLevelInThePast12Months,Number of divorced females in the past 12 months who are below poverty level in the past 12 months +Count_Person_Female_DivorcedInThePast12Months_PovertyStatusDetermined,Number of divorced females in the past 12 months for whom poverty status is determined +Count_Person_Female_DivorcedInThePast12Months_ResidesInHousehold,Number of divorced females in the past 12 months who reside in a household +Count_Person_Female_ForeignBorn,Number of foreign born females +Count_Person_Female_ForeignBorn_PlaceOfBirthAfrica,Number of foreign born female from africa +Count_Person_Female_ForeignBorn_PlaceOfBirthAsia,Number of foreign born female from asia +Count_Person_Female_ForeignBorn_PlaceOfBirthCaribbean,Number of foreign born female from Caribbean +Count_Person_Female_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number of foreign born female from Central America Except Mexico +Count_Person_Female_ForeignBorn_PlaceOfBirthEasternAsia,Number of foreign born female from Eastern Asia +Count_Person_Female_ForeignBorn_PlaceOfBirthEurope,Number of foreign born female from europe +Count_Person_Female_ForeignBorn_PlaceOfBirthLatinAmerica,Number of foreign born female from Latin America +Count_Person_Female_ForeignBorn_PlaceOfBirthMexico,Number of foreign born female from Mexico +Count_Person_Female_ForeignBorn_PlaceOfBirthNorthamerica,Number of foreign born female from northamerica +Count_Person_Female_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of foreign born female from Northern Western Europe +Count_Person_Female_ForeignBorn_PlaceOfBirthOceania,Number of foreign born female from oceania +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of foreign born female from South Central Asia +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of foreign born female from South Eastern Asia +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthamerica,Number of foreign born female from southamerica +Count_Person_Female_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of foreign born female from Southern Eastern Europe +Count_Person_Female_ForeignBorn_PlaceOfBirthWesternAsia,Number of foreign born female from Western Asia +Count_Person_Female_ForeignBorn_ResidesInAdultCorrectionalFacilities,Number of foreign born females who reside in Adult Correctional Facilities +Count_Person_Female_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number of foreign born females who reside in College Or University Student Housing +Count_Person_Female_ForeignBorn_ResidesInGroupQuarters,Number of foreign born females who reside in Group Quarters +Count_Person_Female_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number of foreign born females who reside in Institutionalized Group Quarters +Count_Person_Female_ForeignBorn_ResidesInJuvenileFacilities,Number of foreign born females who reside in Juvenile Facilities +Count_Person_Female_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,Number of foreign born females who reside in Military Quarters Or Military Ships +Count_Person_Female_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number of foreign born females who reside in Noninstitutionalized Group Quarters +Count_Person_Female_ForeignBorn_ResidesInNursingFacilities,Number of foreign born females who reside in Nursing Facilities +Count_Person_Female_FullTimeYearRoundWorker,Number of female full time year around worker +Count_Person_Female_HispanicOrLatino,Number of Hispanic or Latino females +Count_Person_Female_MarriedInThePast12Months_BelowPovertyLevelInThePast12Months,Number of females married in the past 12 months and below poverty level in the past 12 months +Count_Person_Female_MarriedInThePast12Months_PovertyStatusDetermined,Number of females married in the past 12 months with poverty status determined +Count_Person_Female_MarriedInThePast12Months_ResidesInHousehold,Number of females married in the past 12 months residing in a household +Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone,Number of females of Native Hawaiian and Other Pacific Islander race +Count_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,Number of females of Native Hawaiian or Other Pacific Islander race +Count_Person_Female_NeverMarried,Number of never married females +Count_Person_Female_NoHealthInsurance,Number of females with no health insurance +Count_Person_Female_NonWhite,Number of non white females +Count_Person_Female_NotHispanicOrLatino,Number of females that are not Hispanic or Latino +Count_Person_Female_ResidesInAdultCorrectionalFacilities,Number of females residing in Adult Correctional Facilities +Count_Person_Female_ResidesInCollegeOrUniversityStudentHousing,Number of females residing in College or University Student Housing +Count_Person_Female_ResidesInGroupQuarters,Number of females residing in Group Quarters +Count_Person_Female_ResidesInInstitutionalizedGroupQuarters,Number of females residing in Institutionalized Group Quarters +Count_Person_Female_ResidesInJuvenileFacilities,Number of females residing in Juvenile Facilities +Count_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,Number of females residing in Military Quarters or Military Ships +Count_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,Number of females residing in Noninstitutionalized Group Quarters +Count_Person_Female_ResidesInNursingFacilities,Number of females residing in Nursing Facilities +Count_Person_Female_TwoOrMoreRaces,Number of muti-race females +Count_Person_Female_WhiteAlone,Number of white females +Count_Person_Female_Widowed,Number of widowed females +Count_Person_Female_WithEarnings,Number of females with earnings +Count_Person_Female_WithEarnings_ResidesInAdultCorrectionalFacilities,Number of females with earnings residing in Adult Correctional Facilities +Count_Person_Female_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,Number of females with earnings residing in College or University Student Housing +Count_Person_Female_WithEarnings_ResidesInGroupQuarters,Number of females with earnings residing in Group Quarters +Count_Person_Female_WithEarnings_ResidesInInstitutionalizedGroupQuarters,Number of females with earnings residing in Institutionalized Group Quarters +Count_Person_Female_WithEarnings_ResidesInJuvenileFacilities,Number of females with earnings residing in Juvenile Facilities +Count_Person_Female_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,Number of females with earnings residing in Military Quarters or Military Ships +Count_Person_Female_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,Number of females with earnings residing in Noninstitutionalized Group Quarters +Count_Person_Female_WithEarnings_ResidesInNursingFacilities,Number of females with earnings residing in Nursing Facilities +Count_Person_Female_WithHealthInsurance,Number of females with Health Insurance +Count_Person_ForeignBorn_PlaceOfBirthAfrica,Number of foreign born people from africa +Count_Person_ForeignBorn_PlaceOfBirthEasternAsia,Number of foreign born people from eastern Asia +Count_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number of foreign born people from Northern Western Europe +Count_Person_ForeignBorn_PlaceOfBirthOceania,Number of foreign born people from Oceania +Count_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number of foreign born people from South Central Asia +Count_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number of foreign born people from South Eastern Asia +Count_Person_ForeignBorn_PlaceOfBirthSouthamerica,Number of foreign born people from South America +Count_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number of foreign born people from Southern Eastern Europe +Count_Person_ForeignBorn_PlaceOfBirthWesternAsia,Number of foreign born people from Western Asia +Count_Person_ForeignBorn_PlaceOfBirthWesternAsia_WhiteAlone,Number of foreign born white people from Western Asia +Count_Person_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number of foreign born people who live in college student housing +Count_Person_ForeignBorn_ResidesInGroupQuarters,Number of foreign born people who reside in group quarters +Count_Person_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number of foreign born people who live in institutionalized group quarters +Count_Person_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number of foreign born people who live in non-institutionalized group quarters +Count_Person_ForeignBorn_ResidesInNursingFacilities,Number of foreign born people who live in nursing facilities +Count_Person_FullTimeYearRoundWorker,Number of people who worked full time through the year +Count_Person_HearingDifficulty,Number of people with hearing difficulty +Count_Person_HispanicOrLatino,number of hispanic or latino people +Count_Person_HispanicOrLatino_ResidesInAdultCorrectionalFacilities,Number of hispanic or latino people who reside in adult correctional facilities +Count_Person_HispanicOrLatino_ResidesInCollegeOrUniversityStudentHousing,Number of hispanic or latino people who reside in college or university student housing +Count_Person_HispanicOrLatino_ResidesInGroupQuarters,Number of hispanic or latino people who reside in group quarters +Count_Person_HispanicOrLatino_ResidesInInstitutionalizedGroupQuarters,Number of hispanic or latino people who reside in institutionalized group quarters +Count_Person_HispanicOrLatino_ResidesInJuvenileFacilities,Number of hispanic or latino people who reside in juvenile facilities +Count_Person_HispanicOrLatino_ResidesInMilitaryQuartersOrMilitaryShips,Number of hispanic or latino people who reside in military quarters or military ships +Count_Person_HispanicOrLatino_ResidesInNoninstitutionalizedGroupQuarters,Number of hispanic or latino people who reside in noninstitutionalized group quarters +Count_Person_HispanicOrLatino_ResidesInNursingFacilities,Number of hispanic or latino people who reside in nursing facilities +Count_Person_Houseless,Number of houseless people +Count_Person_Houseless_Female,Number of houseless females +Count_Person_Houseless_Illiterate,Number of houseless illiterates +Count_Person_Houseless_Illiterate_Female,Number of houseless illiterate females +Count_Person_Houseless_Illiterate_Male,Number of houseless illiterate males +Count_Person_Houseless_Illiterate_Rural,Number of houseless illiterates in rural areas +Count_Person_Houseless_Illiterate_Urban,Number of houseless illiterates in urban areas +Count_Person_Houseless_Literate,Number of houseless literates +Count_Person_Houseless_Literate_Female,Number of houseless literate females +Count_Person_Houseless_Literate_Male,Number of houseless literate males +Count_Person_Houseless_Literate_Rural,Number of houseless literates in rural areas +Count_Person_Houseless_Literate_Urban,Number of houseless literates in urban areas +Count_Person_Houseless_Male,Number of houseless males +Count_Person_Houseless_NonWorker,Number of houseless who did not work in the last year +Count_Person_Houseless_Rural,Number of houseless who reside in rural area +Count_Person_Houseless_Rural_Female,Number of houseless females who reside in rural area +Count_Person_Houseless_Rural_Male,Number of houseless males who reside in rural area +Count_Person_Houseless_ScheduledCaste,Number of houseless who belong to Scheduled Caste +Count_Person_Houseless_ScheduledCaste_Female,Number of houseless females who belong to Scheduled Caste +Count_Person_Houseless_ScheduledCaste_Male,Number of houseless males who belong to Scheduled Caste +Count_Person_Houseless_ScheduledCaste_Rural,Number of houseless who belong to Scheduled Caste and reside in rural area +Count_Person_Houseless_ScheduledCaste_Urban,Number of houseless scheduled caste people who reside in urban area +Count_Person_Houseless_ScheduledTribe,Number of houseless scheduled tribe people +Count_Person_Houseless_ScheduledTribe_Female,Number of houseless scheduled tribe females +Count_Person_Houseless_ScheduledTribe_Male,Number of houseless scheduled tribe males +Count_Person_Houseless_ScheduledTribe_Rural,Number of houseless scheduled tribe people who reside in rural area +Count_Person_Houseless_ScheduledTribe_Urban,Number of houseless scheduled tribe people who reside in urban area +Count_Person_Houseless_Urban,Number of houseless people who reside in urban area +Count_Person_Houseless_Urban_Female,Number of houseless females who reside in urban area +Count_Person_Houseless_Urban_Male,Number of houseless males who reside in urban area +Count_Person_Houseless_Workers,Number of houseless who worked in the last year +Count_Person_Houseless_Workers_Female,Number of houseless females who worked in the last year +Count_Person_Houseless_Workers_Male,Number of houseless males who worked in the last year +Count_Person_Houseless_Workers_Rural,Number of houseless workers who reside in rural area +Count_Person_Houseless_Workers_Urban,Number of houseless workers who reside in urban area +Count_Person_Houseless_YearsUpto6,Number of houseless who are up to 6 years old +Count_Person_Houseless_YearsUpto6_Female,Number of houseless females under 6 years +Count_Person_Houseless_YearsUpto6_Male,Number of houseless males under 6 years +Count_Person_Houseless_YearsUpto6_Rural,Number of houseless individuals under 6 years who reside in rural area +Count_Person_Houseless_YearsUpto6_Urban,Number of houseless individuals under 6 years who reside in urban area +Count_Person_Illiterate,Number of illiterate people +Count_Person_Illiterate_AsAFractionOf_Count_Person,Percentage of illiterate people +Count_Person_Illiterate_Female,Number of illiterate females +Count_Person_Illiterate_Male,Number of illiterate males +Count_Person_Illiterate_Rural,Number of illiterate individuals who reside in rural area +Count_Person_Illiterate_Urban,Number of illiterate individuals who reside in urban area +Count_Person_InArmedForces,Number of people serving in armed forces +Count_Person_InLaborForce,number of people in labor force +Count_Person_InLaborForce_ResidesInCollegeOrUniversityStudentHousing,Number of Labor Force Participants Residing in College or University Student Housing +Count_Person_InLaborForce_ResidesInGroupQuarters,Number of Labor Force Participants reside in Group Quarters +Count_Person_InLaborForce_ResidesInNoninstitutionalizedGroupQuarters,Number of Labor Force Participants reside in Noninstitutionalized Group Quarters +Count_Person_IncomeOf10000To14999USDollar,"Number of Individuals with an Income Between $10,000 and $15,000" +Count_Person_IncomeOf25000To34999USDollar,"Number of Individuals with an Income Between $25,000 and $35,000" +Count_Person_IncomeOf35000To49999USDollar,"Number of Individuals with an Income Between $35,000 and $50,000" +Count_Person_IncomeOf50000To64999USDollar,"Number of Individuals with an Income Between $50,000 and $65,000" +Count_Person_IncomeOf65000To74999USDollar,"Number of Individuals with an Income Between $65,000 and $75,000" +Count_Person_IncomeOf75000OrMoreUSDollar,"Number of Individuals with an Income of $75,000 and Over" +Count_Person_IncomeOfUpto9999USDollar,"Number of Individuals with an Income of $9,999 and Below" +Count_Person_IndependentLivingDifficulty,Number of People With Independent Living Difficulty +Count_Person_IsInternetUser_PerCapita,percentage of internet users +Count_Person_Literate,Number of Literate people +Count_Person_Literate_Female,Number of Literate Females +Count_Person_Literate_Male,Number of Literate Males +Count_Person_Literate_Rural,Number of Literate Persons residing in Rural Areas +Count_Person_Literate_Urban,Number of Literate Persons residing in Urban Areas +Count_Person_Male,number of males +Count_Person_Male_AbovePovertyLevelInThePast12Months,Number of males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_AsianAlone,Number of Black Or African American males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Hispanic Or Latino males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_HispanicOrLatino,Number of Native Hawaiian Or Other Pacific Islander males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_TwoOrMoreRaces,Number of multi-race males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AbovePovertyLevelInThePast12Months_WhiteAlone,Number of white males live Above Poverty Level In The Past 12 Months +Count_Person_Male_AmericanIndianOrAlaskaNativeAlone,Number of males that are American Indian Or Alaska Native +Count_Person_Male_AsianAlone,Number of males that are asian +Count_Person_Male_AsianOrPacificIslander,Number of males that are Asian Or Pacific Islander +Count_Person_Male_BelowPovertyLevelInThePast12Months,Number of males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_AsianAlone,Number of asian males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_BlackOrAfricanAmericanAlone,Number of Black Or African American males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_HispanicOrLatino,Number of Hispanic Or Latino males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian Or Other Pacific Islander males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_TwoOrMoreRaces,Number of multi-race males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BelowPovertyLevelInThePast12Months_WhiteAlone,Number of White males that are Below Poverty Level In The Past 12 Months +Count_Person_Male_BlackOrAfricanAmericanAlone,Number of males that are Black Or African American +Count_Person_Male_ConditionArthritis,Number of males that have Arthritis +Count_Person_Male_ConditionDiseasesOfHeart,Number of males that have heart Diseases +Count_Person_Male_DidNotWork,Number of males that do Not Work +Count_Person_Male_Divorced,Number of divorced males +Count_Person_Male_ForeignBorn,Number foreign born males +Count_Person_Male_ForeignBorn_PlaceOfBirthAfrica,Number foreign born males from Africa +Count_Person_Male_ForeignBorn_PlaceOfBirthAsia,Number foreign born males from Asia +Count_Person_Male_ForeignBorn_PlaceOfBirthCaribbean,Number foreign born males from Caribbean +Count_Person_Male_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Number foreign born males from Central America Except Mexico +Count_Person_Male_ForeignBorn_PlaceOfBirthEasternAsia,Number foreign born males from Eastern Asia +Count_Person_Male_ForeignBorn_PlaceOfBirthEurope,Number foreign born males from Europe +Count_Person_Male_ForeignBorn_PlaceOfBirthLatinAmerica,Number foreign born males from Latin America +Count_Person_Male_ForeignBorn_PlaceOfBirthMexico,Number foreign born males from Mexico +Count_Person_Male_ForeignBorn_PlaceOfBirthNorthamerica,Number foreign born males from North America +Count_Person_Male_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Number foreign born males from Northern Western Europe +Count_Person_Male_ForeignBorn_PlaceOfBirthOceania,Number foreign born males from Oceania +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthCentralAsia,Number foreign born males from South Central Asia +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthEasternAsia,Number foreign born males from South Eastern Asia +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthamerica,Number foreign born males from South America +Count_Person_Male_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Number foreign born males from Southern Eastern Europe +Count_Person_Male_ForeignBorn_PlaceOfBirthWesternAsia,Number foreign born males from Western Asia +Count_Person_Male_ForeignBorn_ResidesInAdultCorrectionalFacilities,Number foreign born males resides in Adult Correctional Facilities +Count_Person_Male_ForeignBorn_ResidesInCollegeOrUniversityStudentHousing,Number foreign born males resides in College Or University Student Housing +Count_Person_Male_ForeignBorn_ResidesInGroupQuarters,Number foreign born males resides in Group Quarters +Count_Person_Male_ForeignBorn_ResidesInInstitutionalizedGroupQuarters,Number foreign born males resides in Institutionalized Group Quarters +Count_Person_Male_ForeignBorn_ResidesInJuvenileFacilities,Number foreign born males resides in Juvenile Facilities +Count_Person_Male_ForeignBorn_ResidesInMilitaryQuartersOrMilitaryShips,Number foreign born males resides in Military Quarters Or Military Ships +Count_Person_Male_ForeignBorn_ResidesInNoninstitutionalizedGroupQuarters,Number foreign born males resides in Noninstitutionalized Group Quarters +Count_Person_Male_ForeignBorn_ResidesInNursingFacilities,Number foreign born males resides in Nursing Facilities +Count_Person_Male_HispanicOrLatino,number of Hispanic or Latino males +Count_Person_Male_MarriedAndNotSeparated,number of Males married and not separated +Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone,number of Native Hawaiian and other Pacific Islander males +Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,number of multi-race Native Hawaiian and other Pacific Islander males +Count_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,number of Native Hawaiian or other Pacific Islander males +Count_Person_Male_NeverMarried,number of never married males aged 15 years or older +Count_Person_Male_NoHealthInsurance,number of civilian males without health insurance +Count_Person_Male_NonWhite,number of non white males +Count_Person_Male_NotHispanicOrLatino,number of non hispanic or latino males +Count_Person_Male_ResidesInAdultCorrectionalFacilities,Number of males residing in adult correctional facilities +Count_Person_Male_ResidesInCollegeOrUniversityStudentHousing,Number of males residing in college or university student housing +Count_Person_Male_ResidesInGroupQuarters,Number of males residing in group quarters +Count_Person_Male_ResidesInInstitutionalizedGroupQuarters,Number of males residing in institutionalized group quarters +Count_Person_Male_ResidesInJuvenileFacilities,Number of males residing in juvenile facilities +Count_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,Number of males residing in military quarters or military ships +Count_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,Number of males residing in noninstitutionalized group quarters +Count_Person_Male_ResidesInNursingFacilities,Number of males residing in nursing facilities +Count_Person_Male_TwoOrMoreRaces,number of multi-race males +Count_Person_Male_WhiteAlone,number of white males +Count_Person_Male_Widowed,number of widowed males +Count_Person_Male_WithEarnings,number of males with earnings +Count_Person_Male_WithEarnings_ResidesInAdultCorrectionalFacilities,number of males with earnings who reside in adult correctional facilities +Count_Person_Male_WithEarnings_ResidesInCollegeOrUniversityStudentHousing,number of males with earnings who reside in college or university student housing +Count_Person_Male_WithEarnings_ResidesInGroupQuarters,number of males with earnings who reside in group quarters +Count_Person_Male_WithEarnings_ResidesInInstitutionalizedGroupQuarters,number of males with earnings who reside in institutionalized group quarters +Count_Person_Male_WithEarnings_ResidesInJuvenileFacilities,number of males with earnings who reside in juvenile facilities +Count_Person_Male_WithEarnings_ResidesInMilitaryQuartersOrMilitaryShips,number of males with earnings who reside in military quarters or military ships +Count_Person_Male_WithEarnings_ResidesInNoninstitutionalizedGroupQuarters,number of males with earnings who reside in noninstitutionalized group quarters +Count_Person_Male_WithEarnings_ResidesInNursingFacilities,number of males with earnings who reside in nursing facilities +Count_Person_Male_WithHealthInsurance,number of males with health insurance +Count_Person_MarriedAndNotSeparated,Number of married people +Count_Person_MarriedAndNotSeparated_ResidesInAdultCorrectionalFacilities,Number of married people who reside in adult correctional facilities +Count_Person_MarriedAndNotSeparated_ResidesInCollegeOrUniversityStudentHousing,Number of married people who reside in college or university student housing +Count_Person_MarriedAndNotSeparated_ResidesInGroupQuarters,Number of married people who reside in group quarters +Count_Person_MarriedAndNotSeparated_ResidesInInstitutionalizedGroupQuarters,Number of married people who reside in institutionalized group quarters +Count_Person_MarriedAndNotSeparated_ResidesInNoninstitutionalizedGroupQuarters,Number of married people who reside in noninstitutionalized group quarters +Count_Person_MarriedAndNotSeparated_ResidesInNursingFacilities,Number of married people who reside in nursing facilities +Count_Person_Native,Number of native people +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInAdultCorrectionalFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Adult Correctional Facilities +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInCollegeOrUniversityStudentHousing,Number of Native Hawaiian or Other Pacific Islander people residing in College Or University Student Housing +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Group Quarters +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInInstitutionalizedGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Institutionalized Group Quarters +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInJuvenileFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Juvenile Facilities +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInMilitaryQuartersOrMilitaryShips,Number of Native Hawaiian or Other Pacific Islander people residing in Military Quarters Or Military Ships +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNoninstitutionalizedGroupQuarters,Number of Native Hawaiian or Other Pacific Islander people residing in Noninstitutionalized Group Quarters +Count_Person_NativeHawaiianOrOtherPacificIslanderAlone_ResidesInNursingFacilities,Number of Native Hawaiian or Other Pacific Islander people residing in Nursing Facilities +Count_Person_NeverMarried,Number of people that are never married +Count_Person_NeverMarried_ResidesInAdultCorrectionalFacilities,Number of people that are never married and reside in adult correctional facilities +Count_Person_NeverMarried_ResidesInCollegeOrUniversityStudentHousing,Number of people that are never married and reside in college or university student housing +Count_Person_NeverMarried_ResidesInGroupQuarters,Number of people that are never married and reside in group quarters +Count_Person_NeverMarried_ResidesInInstitutionalizedGroupQuarters,Number of people that are never married and reside in institutionalized group quarters +Count_Person_NeverMarried_ResidesInNoninstitutionalizedGroupQuarters,Number of people that are never married and reside in noninstitutionalized group quarters +Count_Person_NeverMarried_ResidesInNursingFacilities,Number of people that are never married and reside in nursing facilities +Count_Person_NoDisability,number of people without disabilities +Count_Person_NoDisability_ResidesInAdultCorrectionalFacilities,number of people without disabilities residing in adult correctional facilities +Count_Person_NoDisability_ResidesInCollegeOrUniversityStudentHousing,number of people without disabilities residing in college or university student housing +Count_Person_NoDisability_ResidesInGroupQuarters,number of people without disabilities residing in group quarters +Count_Person_NoDisability_ResidesInInstitutionalizedGroupQuarters,number of people without disabilities residing in institutionalized group quarters +Count_Person_NoDisability_ResidesInNoninstitutionalizedGroupQuarters,number of people without disabilities residing in noninstitutionalized group quarters +Count_Person_NoDisability_ResidesInNursingFacilities,number of people without disabilities residing in nursing facilities +Count_Person_NoHealthInsurance,number of people with no health insurance +Count_Person_NoHealthInsurance_AmericanIndianOrAlaskaNativeAlone,number of American Indian or Alaska Native people with no health insurance +Count_Person_NoHealthInsurance_AsianAlone,number of asian people with no health insurance +Count_Person_NoHealthInsurance_BlackOrAfricanAmericanAlone,number of Black Or African American people with no health insurance +Count_Person_NoHealthInsurance_HispanicOrLatino,number of Hispanic or Latino people with no health insurance +Count_Person_NoHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,number of Native Hawaiian or Other Pacific Islander people with no health insurance +Count_Person_NoHealthInsurance_WhiteAlone,number of white people with no health insurance +Count_Person_NonWhite,Number of non white people +Count_Person_NonWorker,Number of people who do not work +Count_Person_NonWorker_Female,Number of females who do not work +Count_Person_NonWorker_Male,Number of males who do not work +Count_Person_NonWorker_Rural,Number of rural people who do not work +Count_Person_NonWorker_Urban,Number of urban people who do not work +Count_Person_Nonveteran,Number of adult Civilians Who Are Not Veterans +Count_Person_NotAUSCitizen,Number of non US citizens +Count_Person_NotEnrolledInSchool,Number of people not enrolled in school +Count_Person_NotInLaborForce,Number of people Aged 16 and Over Not in the Labor Force +Count_Person_NowMarried,Number of married females +Count_Person_OneRace,Number of people of single race +Count_Person_OneRace_ResidesInAdultCorrectionalFacilities,Number of people of single race who reside in adult correctional facilities +Count_Person_OneRace_ResidesInCollegeOrUniversityStudentHousing,Number of people of single race who reside in college or university student housing +Count_Person_OneRace_ResidesInGroupQuarters,Number of people of single race who reside in group quarters +Count_Person_OneRace_ResidesInInstitutionalizedGroupQuarters,Number of people of single race who reside in institutionalized group quarters +Count_Person_OneRace_ResidesInJuvenileFacilities,Number of people of single race who reside in juvenile facilities +Count_Person_OneRace_ResidesInMilitaryQuartersOrMilitaryShips,Number of people of single race who reside in military quarters or military ships +Count_Person_OneRace_ResidesInNoninstitutionalizedGroupQuarters,Number of people of single race who reside in noninstitutionalized group quarters +Count_Person_OneRace_ResidesInNursingFacilities,Number of people of single race who reside in nursing facilities +Count_Person_PerArea,Population Density +Count_Person_PlaceOfBirthAsia,Number of foreign Born People from Asia +Count_Person_PlaceOfBirthEurope,Number of foreign Born People from Europe +Count_Person_PlaceOfBirthLatinAmerica,Number of foreign Born People from Latin America +Count_Person_Producer,Number of farmers +Count_Person_Producer_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaskan farmers +Count_Person_Producer_AsianAlone,Number of asian farmers +Count_Person_Producer_BlackOrAfricanAmericanAlone,Number of Black or African American farmers +Count_Person_Producer_HispanicOrLatino,Number of Hispanic or Latino farmers +Count_Person_Producer_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander farmers +Count_Person_Producer_TwoOrMoreRaces,Number of multi races farmers +Count_Person_Producer_WhiteAlone,Number of White farmers +Count_Person_ResidesInAdultCorrectionalFacilities,Number of People Residing in Adult Correctional Facilities +Count_Person_ResidesInAdultCorrectionalFacilities_EnrolledInSchool,Number of School Enrolled People Residing in Adult Correctional Facilities +Count_Person_ResidesInCollegeOrUniversityStudentHousing,Number of People Residing in College Or University Student Housing +Count_Person_ResidesInCollegeOrUniversityStudentHousing_EnrolledInSchool,Number of School Enrolled People Residing in College Or University Student Housing +Count_Person_ResidesInGroupQuarters,Number of People Residing in Group Quarters +Count_Person_ResidesInGroupQuarters_EnrolledInSchool,Number of School Enrolled People Residing in Group Quarters +Count_Person_ResidesInHousehold,Number of People Residing in Household +Count_Person_ResidesInInstitutionalizedGroupQuarters,Number of People Residing in Institutionalized Group Quarters +Count_Person_ResidesInNoninstitutionalizedGroupQuarters,Number of People Residing in Noninstitutionalized Group Quarters +Count_Person_ResidesInNursingFacilities,Number of People Residing in Nursing Facilities +Count_Person_Rural,number of people living in rural areas +Count_Person_Rural_BelowPovertyLevelInThePast12Months,number of people living in rural areas and below poverty line +Count_Person_Rural_Female,Number of females living in rural areas +Count_Person_Rural_Male,Number of males living in rural areas +Count_Person_ScheduledCaste,Number of scheduled caste people +Count_Person_ScheduledCaste_Female,Number of scheduled caste females +Count_Person_ScheduledCaste_Illiterate,Number of illiterate scheduled caste people +Count_Person_ScheduledCaste_Literate,Number of literate scheduled caste people +Count_Person_ScheduledCaste_Male,Number of scheduled caste males +Count_Person_ScheduledCaste_Rural,Number of rural scheduled caste people +Count_Person_ScheduledCaste_Urban,Number of urban scheduled caste people +Count_Person_ScheduledCaste_Workers,Number of scheduled caste workers +Count_Person_ScheduledCaste_YearsUpto6,Number of scheduled caste people below 6 years +Count_Person_ScheduledCaste_YearsUpto6_Female,Number of scheduled caste girls below 6 years +Count_Person_ScheduledCaste_YearsUpto6_Male,Number of scheduled caste boys below 6 years +Count_Person_ScheduledCaste_YearsUpto6_Rural,Number of rural scheduled caste people below 6 years +Count_Person_ScheduledCaste_YearsUpto6_Urban,Number of urban scheduled caste people below 6 years +Count_Person_ScheduledTribe,Number of scheduled tribe people +Count_Person_ScheduledTribe_Female,Number of scheduled tribe females +Count_Person_ScheduledTribe_Illiterate,Number of illiterate scheduled tribe people +Count_Person_ScheduledTribe_Literate,Number of literate scheduled tribe people +Count_Person_ScheduledTribe_Male,Number of scheduled tribe males +Count_Person_ScheduledTribe_Rural,Number of rural scheduled tribe people +Count_Person_ScheduledTribe_Urban,Number of urban scheduled tribe people +Count_Person_ScheduledTribe_Workers,Number of scheduled tribe workers +Count_Person_ScheduledTribe_YearsUpto6,Number of scheduled tribe people below 6 years +Count_Person_ScheduledTribe_YearsUpto6_Female,Number of scheduled tribe girls below 6 years +Count_Person_ScheduledTribe_YearsUpto6_Male,Number of scheduled tribe boys below 6 years +Count_Person_ScheduledTribe_YearsUpto6_Rural,Number of rural scheduled tribe people below 6 years +Count_Person_ScheduledTribe_YearsUpto6_Urban,Number of urban scheduled tribe people below 6 years +Count_Person_SelfCareDifficulty,Number of prople with self care disability +Count_Person_Separated,Number of people who are seperated +Count_Person_Separated_ResidesInAdultCorrectionalFacilities,Number of people who are seperated and reside in adult correctional facilities +Count_Person_Separated_ResidesInCollegeOrUniversityStudentHousing,number of people who are seperated and reside in college or university student housing +Count_Person_Separated_ResidesInGroupQuarters,number of people who are seperated and reside in group quarters +Count_Person_Separated_ResidesInInstitutionalizedGroupQuarters,number of people who are seperated and reside in institutionalized group quarters +Count_Person_Separated_ResidesInNoninstitutionalizedGroupQuarters,number of people who are seperated and reside in non institutionalized group quarters +Count_Person_Separated_ResidesInNursingFacilities,number of people who are seperated and reside in nursing facilities +Count_Person_SpeakEnglishNotAtAll,Number of people do not speak english at all +Count_Person_SpeakEnglishNotWell,Number of people do not speak english well +Count_Person_SpeakEnglishWell,Number of people who speak english well +Count_Person_TwoOrMoreRaces,Number of people with multi races +Count_Person_USCitizenBornInTheUnitedStates,Number of united states Citizens Born In The United States +Count_Person_USCitizenByNaturalization,Number of united states Citizens By Naturalization +Count_Person_Unemployed,Number of unemployed people +Count_Person_Upto4Years_Female_Overweight_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are overweight +Count_Person_Upto4Years_Female_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are severely wasting +Count_Person_Upto4Years_Female_Wasting_AsFractionOf_Count_Person_Upto4Years_Female,Percentage of girls younger than 5 years who are wasting +Count_Person_Upto4Years_Male_Overweight_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are overweight +Count_Person_Upto4Years_Male_SevereWasting_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are severely wasting +Count_Person_Upto4Years_Male_Wasting_AsFractionOf_Count_Person_Upto4Years_Male,Percentage of boys younger than 5 years who are wasting +Count_Person_Upto4Years_Overweight_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are overweight +Count_Person_Upto4Years_SevereWasting_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are severely wasting +Count_Person_Upto4Years_Wasting_AsFractionOf_Count_Person_Upto4Years,Percentage of children younger than 5 years who are wasting +Count_Person_Urban,Number of people living in urban areas +Count_Person_Urban_BelowPovertyLevelInThePast12Months,Number of people living in urban areas and below poverty level in the past 12 months +Count_Person_Urban_Female,Number of females living in urban areas +Count_Person_Urban_Male,Number of males living in urban areas +Count_Person_Veteran,Number of veterans +Count_Person_VisionDifficulty,Number of people With Vision Difficulty +Count_Person_WhiteAlone,Number of white people +Count_Person_Widowed,Number of widowed people +Count_Person_WithDirectPurchaseHealthInsurance,Number of people with direct purchase health insurance +Count_Person_WithDisability,Number of people with disabilities +Count_Person_WithDisability_AmericanIndianOrAlaskaNativeAlone,Number of American Indian Or Alaska NativeAlone people with disabilities +Count_Person_WithDisability_AsianAlone,Number of asian people with disabilities +Count_Person_WithDisability_BlackOrAfricanAmericanAlone,Number of black or african american people with disabilities +Count_Person_WithDisability_Female,Number of female people with disabilities +Count_Person_WithDisability_HispanicOrLatino,Number of hispanic or latino people with disabilities +Count_Person_WithDisability_Male,Number of male people with disabilities +Count_Person_WithDisability_NativeHawaiianOrOtherPacificIslanderAlone,Number of native hawaiian or other pacific islander people with disabilities +Count_Person_WithDisability_OneRace,Number of one race people with disabilities +Count_Person_WithDisability_TwoOrMoreRaces,Number of multi race people with disabilities +Count_Person_WithDisability_WhiteAlone,Number of white people with disabiliites +Count_Person_WithDisability_WhiteAloneNotHispanicOrLatino,Number of Non Hispanic or Latino White People With Disabilities +Count_Person_WithEarnings_FullTimeYearRoundWorker,Number of full time year round workers with earnings +Count_Person_WithEmployerBasedHealthInsurance,Number of people who have employer based health insurance +Count_Person_WithHealthInsurance,Number of people with health insurance +Count_Person_WithHealthInsurance_AmericanIndianOrAlaskaNativeAlone,Number of American Indian or Alaska Native people with health insurance +Count_Person_WithHealthInsurance_AsianAlone,Number of asian people with health insurance +Count_Person_WithHealthInsurance_BlackOrAfricanAmericanAlone,Number of Black Or African American people with health insurance +Count_Person_WithHealthInsurance_HispanicOrLatino,Number of Hispanic or Latino people with health insurance +Count_Person_WithHealthInsurance_NativeHawaiianOrOtherPacificIslanderAlone,Number of Native Hawaiian or Other Pacific Islander people with health insurance +Count_Person_WithHealthInsurance_WhiteAlone,Number of white people with health insurance +Count_Person_WithMedicaidOrMeansTestedPublicCoverage,Number of people with Medicaid or means tested public coverage +Count_Person_WithMedicareCoverage,Number of People With Medicare Coverage +Count_Person_WithOwnChildrenUnder18,Number of People With Own Children Under 18 +Count_Person_WithOwnChildrenUnder18_Female,Number of Female People With Own Children Under 18 +Count_Person_WithOwnChildrenUnder18_Male,Number of Male People With Own Children Under 18 +Count_Person_WithPrivateHealthInsurance,Number of People With Private Health Insurance +Count_Person_WithPublicHealthInsurance,Number of people with public health insurance +Count_Person_WithTricareMilitaryHealthCoverage,Number of people who have tricare military health coverage +Count_Person_WithVAHealthCare,Number of people with VA health care +Count_Person_WorkedFullTime,Number of males who have worked before +Count_Person_Workers,number of workers +Count_Person_Workers_Female,Number of female workers +Count_Person_Workers_Male,Number of Male Workers +Count_Person_Workers_Rural,Number of Workers Living in Rural Areas +Count_Person_Workers_Urban,Number of Workers Living in Urban Areas +Count_PrescribedFireEvent,Number of Prescribed Fires +Count_Product_MobileCellularSubscription_AsFractionOf_Count_Person,Number of mobile phone subscriptions per person +Count_RipCurrentEvent,Number of rip current events +Count_School_SeniorSecondarySchool_Grade1To10,Number of senior secondary schools with grades 1 to 10 +Count_SolarInstallation,Number of solar installations +Count_SolarInstallation_Commercial,Number of solar installations in the commercial sector +Count_SolarInstallation_Residential,Number of solar installations in the residential sector +Count_StormSurgeTideEvent,Number of storm surge or tide events +Count_StrongWindEvent,Number of strong wind events +Count_Student,Number of students +Count_Student_AdultEducation,Number of Students Enrolled in Adult Education Programs +Count_Student_Asian,Number of Asian students +Count_Student_BRAHighSchool,Number of Students Enrolled in BRA High School Programs +Count_Student_BachelorsDegree,Number of Students Enrolled in Bachelors Degree Programs +Count_Student_Black,Number of Black students +Count_Student_BrazilPreVestibular,Number of Students Enrolled in Brazil Pre Vestibular Programs +Count_Student_Female,Number of Female students +Count_Student_HawaiianNativeOrPacificIslander,Number of Students who are Hawaiian Native Or Pacific Islander +Count_Student_HispanicOrLatino,Number of Students who are Hispanic Or Latino +Count_Student_Male,Number of Male Students +Count_Student_MastersDegreeOrHigher,Number of Students Enrolled in Masters Degree Or Higher Programs +Count_Student_Nursery,Number of Students Enrolled in Nursery Programs +Count_Student_PreKindergarten,Number of Students Enrolled in Pre Kindergarten Programs +Count_Student_PrimaryEducation,Number of Students in primary education +Count_Student_PrimaryEducation_PrivateSchool,Number of Students in private primary school +Count_Student_PrimaryEducation_PublicSchool,Number of Students in public primary school +Count_Student_PrivateSchool,Number of Students in Private School +Count_Student_PublicSchool,Number of Students in Public School +Count_Student_TwoOrMoreRaces,Number of Students who are muti race +Count_Student_White,Number of Students who are White +Count_Teacher,Number of teachers +Count_Teacher_ElementaryTeacher,Number of elementary school teachers +Count_Teacher_SecondaryTeacher,Number of secondary school teachers +Count_Teacher_UniversityAndCollegeTeacher,Number of university and college teachers +Count_ThunderstormWindEvent,Number of thunderstorm wind events +Count_TornadoEvent,Number of tornado events +Count_TropicalStormEvent,Number of tropical storm events +Count_UnemploymentInsuranceClaim_StateUnemploymentInsurance,Number of state unemployment insurance claims +Count_VolcanicAshEvent,Number of volcanic events +Count_WasteGenerated_Processed_AsAFractionOf_Count_WasteGenerated,Percentage of waste generated that are processed +Count_WaterspoutEvent,Number of waterspouts +Count_WetBulbTemperatureEvent,Number of wet bulb temperature events +Count_WildfireEvent,Number of wild fires +Count_WildlandFireEvent,Number of wild land fires +Count_WinterStormEvent,Number of winter storms +Count_WinterWeatherEvent,Number of winter weather events +Count_Worker_NAICSAccommodationFoodServices,Number of people Working in the Accommodation and Food Services Industry +Count_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Number of people Working in the Administrative Support and Waste Management and Remediation Services Industry +Count_Worker_NAICSAgricultureForestryFishingHunting,"Number of people work in Agriculture, Forestry, Fishing And Hunting" +Count_Worker_NAICSArtsEntertainmentRecreation,"Number of people who work in Arts, entertainment and recreation" +Count_Worker_NAICSConstruction,Number of people who work in construction +Count_Worker_NAICSEducationalServices,Number of people who work in educational services +Count_Worker_NAICSFinanceInsurance,Number of people who work in finance and insurance +Count_Worker_NAICSGoodsProducing,Number of people Working in the Goods Producing Industry +Count_Worker_NAICSHealthCareSocialAssistance,Number of people Working in the Health Care and Social Assistance Industry +Count_Worker_NAICSInformation,Number of people Working in the Information Industry +Count_Worker_NAICSManagementOfCompaniesEnterprises,Number of people Working in the Management of Companies and Enterprises Industry +Count_Worker_NAICSMiningQuarryingOilGasExtraction,"Number of people Working in the Mining, Quarrying, Oil, and Gas Extraction Industry" +Count_Worker_NAICSNonclassifiable,Number of people Working in the Nonclassifiable Industry +Count_Worker_NAICSProfessionalScientificTechnicalServices,"Number of people Working in the Professional, Scientific, and Technical Services Industry" +Count_Worker_NAICSPublicAdministration,Number of people Working in the Public Administration Industry +Count_Worker_NAICSRealEstateRentalLeasing,Number of people Working in the Real Estate and Rental and Leasing Industry +Count_Worker_NAICSServiceProviding,Number of people Working in the Service Providing Industry +Count_Worker_NAICSTotalAllIndustries,Number of people who work in all industries +Count_Worker_NAICSUtilities,Number of people who work in utilities +Count_Worker_NAICSWholesaleTrade,Number of people Working in the Wholesale Trade Industry +CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedCase,Total confirmed COVID-19 cases +CumulativeCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,Total confirmed or probable COVID-19 cases +CumulativeCount_MedicalConditionIncident_COVID_19_PatientDeceased,Total COVID-19 deaths +CumulativeCount_MedicalTest_ConditionCOVID_19,Total COVID-19 tests performed +CumulativeCount_Vaccine_COVID_19_Administered,Total COVID-19 vaccines administered +DewPointTemperature_SurfaceLevel,Surface-Level Dew Point Temperature +ExchangeRate_Currency_Standardized,exchange rates of Standard Local Currency (SLC) per US dollar +Expenses_Farm,total farm expenses +FemaCommunityResilience_NaturalHazardImpact,FEMA Community Resilience to Natural Hazard Impact +FemaNaturalHazardRiskIndex_NaturalHazardImpact,FEMA National Risk Index for Natural Hazard Impact +FemaNaturalHazardRiskIndex_NaturalHazardImpact_AvalancheEvent,FEMA National Risk Index for Avalanche +FemaNaturalHazardRiskIndex_NaturalHazardImpact_CoastalFloodEvent,FEMA National Risk Index for Coastal Flood +FemaNaturalHazardRiskIndex_NaturalHazardImpact_ColdWaveEvent,FEMA National Risk Index for Cold Wave +FemaNaturalHazardRiskIndex_NaturalHazardImpact_DroughtEvent,FEMA National Risk Index for Drought +FemaNaturalHazardRiskIndex_NaturalHazardImpact_EarthquakeEvent,FEMA National Risk Index for Earthquake +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HailEvent,FEMA National Risk Index for Hail +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HeatWaveEvent,FEMA National Risk Index for Heat Wave +FemaNaturalHazardRiskIndex_NaturalHazardImpact_HurricaneEvent,FEMA National Risk Index for Hurricane +FemaNaturalHazardRiskIndex_NaturalHazardImpact_IceStormEvent,FEMA National Risk Index for Ice Storm +FemaNaturalHazardRiskIndex_NaturalHazardImpact_LandslideEvent,FEMA National Risk Index for Landslide +FemaNaturalHazardRiskIndex_NaturalHazardImpact_LightningEvent,FEMA National Risk Index for Lightning +FemaNaturalHazardRiskIndex_NaturalHazardImpact_RiverineFloodingEvent,FEMA National Risk Index for Riverine Flooding +FemaNaturalHazardRiskIndex_NaturalHazardImpact_StrongWindEvent,FEMA National Risk Index for Strong Wind +FemaNaturalHazardRiskIndex_NaturalHazardImpact_TornadoEvent,FEMA National Risk Index for Tornado +FemaNaturalHazardRiskIndex_NaturalHazardImpact_TsunamiEvent,FEMA National Risk Index for Tsunami +FemaNaturalHazardRiskIndex_NaturalHazardImpact_VolcanicActivityEvent,FEMA National Risk Index for Volcanic Activity +FemaNaturalHazardRiskIndex_NaturalHazardImpact_WildfireEvent,FEMA National Risk Index for Wildfire +FemaNaturalHazardRiskIndex_NaturalHazardImpact_WinterWeatherEvent,FEMA National Risk Index for Winter Weather +FemaSocialVulnerability_NaturalHazardImpact,FEMA Social Vulnerability score to Natural Hazard Impact +FertilityRate_Person_Female,Fertility rate +GenderIncomeInequality_Person_15OrMoreYears_WithIncome,Income Inequality Between males and females +GiniIndex_EconomicActivity,Gini Index;economic inequality +GrowthRate_Amount_EconomicActivity_GrossDomesticProduction,GDP change rate +GrowthRate_Count_Person,Population change rate +HeavyPrecipitationIndex,Heavy Precipitation Index +Imports_EconomicActivity_CrudeOils,Amount of imported crude oils +Imports_EconomicActivity_ElectronicComponents,Amount of imported Electronic Components +Imports_EconomicActivity_IronAndSteel,Amount of imported Iron And Steel +Imports_EconomicActivity_Pharmaceutical,Amount of imported Pharmaceutical +Income_Farm,Farm incomes +IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedCase,incremental count COVID-19 confirmed cases +IncrementalCount_MedicalConditionIncident_COVID_19_ConfirmedOrProbableCase,incremental count of COVID-19 confirmed or probable cases +IncrementalCount_MedicalConditionIncident_COVID_19_PatientDeceased,incremental count of COVID-19 deceased patients +IncrementalCount_MedicalTest_ConditionCOVID_19,incremental count of COVID-19 tests +IncrementalCount_Person,Population change +IncrementalCount_Vaccine_COVID_19_Administered,incremental count of COVID-19 vaccinations administered +InflationAdjustedGDP,Inflation Adjusted GDP +InsuredUnemploymentRate_Person_WithCoveredEmployment_MovingAverage1WeekWindow,Insured Unemployment Rate +LandCoverFraction_BareSparseVegetation,Percent of land covered by Bare Sparse Vegetation +LandCoverFraction_BuiltUp,Percent of land covered by Built Up +LandCoverFraction_Cropland,Percent of land covered by Cropland +LandCoverFraction_Forest,Percent of land covered by Forest +LandCoverFraction_HerbaceousVegetation,Percent of land covered by Herbaceous Vegetation +LandCoverFraction_MossAndLichen,Percent of land covered by Moss And Lichen +LandCoverFraction_PermanentWater,Percent of land covered by Permanent Water +LandCoverFraction_SeasonalWater,Percent of land covered by Seasonal Water +LandCoverFraction_Shrubland,Percent of land covered by Shrubland +LandCoverFraction_SnowIce,Percent of land covered by Snow Ice Length_Transportation_NationalHighway,Length of national highway -Length_Transportation_Railroad,Length of railway route +Length_Transportation_Railroad,Length of rail road Length_Transportation_Road,Length of road Length_Transportation_StateHighway,Length of state highway -LifeExpectancy_Person,Average Lifespan of a Population;Average life expectancy of the population;Average lifespan of a population;Average lifespan of the population;Life Expectancy of a Population;Life Expectancy of a population;Mean lifespan of the population;Median lifespan of the population;Typical lifespan of the population;average lifespan;how long do people live;how long do people live on average;how long people live;lifespan;the average lifespan of a population;the average number of years that a person in a population is expected to live;the life expectancy of a population;the longevity of a population -LifeExpectancy_Person_Female,"Female Life Expectancy;Female life expectancy;How long do women live;Life expectancy at birth, female (years);Life expectancy of females at birth;Life expectancy of women;Lifespan of women;The average lifespan of women;how long do women live;how long do women live?;life expectancy of women;the average number of years a woman lives;the life expectancy of a woman;what is the average lifespan of a woman?" -LifeExpectancy_Person_Male,How long do males live;How long do men live;Life Expectancy of Males at birth;Life Expectancy: Male;Life expectancy of men;Male Life Expectancy;Male life expectancy;how long do men live;how long do men live?;how long do men typically live?;life expectancy of men;what is the average lifespan of a man?;what is the life expectancy for men? -MapFacts/Count_hiking_area,How many hiking areas are there?;Number of hiking areas;Number of hiking spots;Number of hiking trails;Number of places to go hiking;hiking paths;hiking trails;trekking area;walking trails -MapFacts/Count_park,1 How many parks are there?;How many parks are there;How many parks are there?;Number of Parks;Number of parks;What is the number of parks;What is the total number of parks;count of parks;number of parks;number of public parks;number of recreation areas;number of recreational parks;recreational parks -MarketValue_Farm_AgriculturalProducts,1 the total value of all agricultural farms in the united states;3 the total amount of money that could be made by selling all agricultural farms in the united states;4 the total cost of buying all agricultural farms in the united states;5 the total value of the agricultural industry in the united states;Market Value of Farm: Agricultural Products;Market value of agricultural products produced on farm;The total value of agricultural assets;The total value of agricultural property;The total worth of agricultural farms;The total worth of agricultural land;The total worth of all agricultural farms;Total Market Value of Agricultural Farms;total market value of agricultural farms -MarketValue_Farm_Crops,Market Value of Farm: Crops;Market Value of Farms Growing Crops;Market value of crops produced on a farm;The monetary worth of farms that grow crops;The value of farms that grow crops;The worth of farms that cultivate crops;market value of farms growing crops;the estimated price of farmland used for crop production;the estimated value of land used to grow crops;the monetary worth of agricultural land used to grow crops;value of farms growing crops -MarketValue_Farm_LivestockAndPoultry,Market Value of Farm: Livestock And Poultry;Market Value of Livestock and Poultry on a Farm;Market value of livestock and poultry on a farm;The monetary worth of farms that raise livestock and poultry;The total worth of farms that raise livestock and poultry;The value of farms that raise livestock and poultry;market value of farms growing livestock and poultry;the cost of farm animals and birds;the price of livestock and poultry on a farm;the value of livestock and poultry on a farm;the worth of farm animals and birds -MarketValue_Farm_MachineryAndEquipment,1 The current worth of farm machinery and equipment;Market Value of Farm Machinery and Equipment;Market Value of Farm: Machinery And Equipment;Market value of farm machinery and equipment;Market value of machinery and equipment on farm;The value of farm machinery and equipment on the open market;The worth of farm machinery and equipment on the open market;the amount of money that a seller could expect to receive for farm machinery and equipment;the price that a buyer would be willing to pay for farm machinery and equipment;the value of farm machinery and equipment on the open market;the worth of farm machinery and equipment in terms of dollars and cents -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayADecade CMIP6 SSP245 -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayADecade CMIP6 SSP585 -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayAYear CMIP6 SSP245 -MaxTemp_Daily_Hist_50PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 50PctProb Greater Atleast1DayAYear CMIP6 SSP585 -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayADecade CMIP6 SSP245 -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayADecade CMIP6 SSP585 -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayAYear CMIP6 SSP245 -MaxTemp_Daily_Hist_95PctProb_Greater_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MaxTemp Ensemble Hist 95PctProb Greater Atleast1DayAYear CMIP6 SSP585 -Max_BarometricPressure,Max Barometric Pressure;Maximum Barometric Pressure;greatest air pressure;maximum air pressure;most intense air pressure;peak barometric pressure -Max_Concentration_AirPollutant_CO,Max Concentration: Carbon Monoxide -Max_Concentration_AirPollutant_NO2,Max Concentration: Nitrogen Dioxide -Max_Concentration_AirPollutant_Ozone,Max Ozone Concentration;Maximum Concentration Air Pollutant Ozone;highest level of ozone;highest ozone concentration;maximum level of ozone;maximum ozone concentration -Max_Concentration_AirPollutant_PM10,Max Concentration: PM 10 -Max_Concentration_AirPollutant_PM2.5,Max PM2.5 Concentration;Maximum Concentration Air Pollutant PM 2.5;highest level of pm25;highest pm25 concentration;maximum pm25 concentration;peak pm25 concentration -Max_Concentration_AirPollutant_SO2,Max Concentration: Sulfur Dioxide -Max_Concentration_AirPollutant_SmokePM25,Max Concentration of Smoke PM2.5;maximum concentration of smoke pm25;the highest concentration of smoke pm25;the maximum level of smoke pm25;the upper limit of smoke pm25 concentration -Max_Humidity_RelativeHumidity,Max Humidity: Relative Humidity;Maximum Relative Humidity;maximum humidity;the amount of water vapor in the air as a percentage of the maximum amount it could hold;the percentage of water vapor in the air relative to the maximum amount of water vapor that the air can hold -Max_PopulationWeighted_Concentration_AirPollutant_SmokePM25,Maximum Population Weighted Concentration Air Pollutant Smoke PM 2.5;Population-weighted Max Concentration of Smoke PM2.5;maximum population-weighted concentration of fine particulate matter;maximum population-weighted concentration of particulate matter with an aerodynamic diameter of 25 micrometers or less;maximum smoke concentration per capita;maximum smoke concentration weighted by population -Max_PrecipitableWater_Atmosphere,Max Precipitable Water;Maximum Precipitable Water in The Atmosphere;maximum amount of water that can be held in the atmosphere;maximum precipitable water;maximum water content in the atmosphere;maximum water vapor content -Max_Radiation_Downwelling_ShortwaveRadiation,"Max Radiation: Downwelling, Shortwave Radiation;Maximum Downwelling Shortwave Radiation;maximum downward shortwave radiation;maximum downwelling shortwave radiation;maximum incoming shortwave radiation;maximum shortwave radiation from above" -Max_Rainfall,Max Rainfall;Maximum Rainfall;greatest rainfall;heaviest rainfall;highest rainfall;maximum rainfall -Max_Snowfall,Max Snowfall;Maximum Snowfall;greatest snowfall;heaviest snowfall;maximum amount of snowfall;maximum snowfall -Max_Temperature,Maximum Temperature;the highest temperature;the maximum temperature;the peak temperature;the upper limit of temperature -Max_WindSpeed_UComponent_Height10Meters,"10 Meters UComponent Max Wind Speed;Max Wind Speed: Meter 10, UComponent;the fastest wind at 10 meters;the highest wind speed at 10 meters;the peak wind speed at 10 meters;the strongest wind at 10 meters" -Max_WindSpeed_VComponent_Height10Meters,"Max Wind Speed: Meter 10, VComponent;Maximum Wind Speed of Wind Component For 10 Meters High;the maximum wind speed at 10 meters" -MeanMothersAge_BirthEvent,2 the typical age of a mother when she gives birth;Mean Mother's Age at Birth;Mean Mothers Age;the age at which most mothers give birth;the age at which mothers typically give birth -Mean_Area_Farm,Average area of land on a farm;Mean Area of Farm;Mean area of a farm;Mean area of agricultural land;Mean area of farm;average area of a farm;the average area of a farm;the average land area of a farm;the average size of a farm -Mean_BarometricPressure,Mean Barometric Pressure;barometric pressure;standard pressure -Mean_BirthWeight_BirthEvent_LiveBirth,Average live birth weight in grams;Mean Birth Weight in Birth Events For Live Births;average weight of a baby at birth in grams;average weight of a live birth in grams;average weight of a newborn baby in grams;average weight of a newborn in grams -Mean_BirthWeight_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,5 average weight of babies born to mothers who did not earn a high school diploma;Average Live Birth Weight in Grams of Mother in Grades 9th to 12th Without Diploma;Average live birth weight in grams where mothers Education is 9 Th To12 Th Grade No Diploma;average birth weight of mothers without a diploma in grades 9-12;average weight of babies born to mothers who were enrolled in high school but did not complete their education;the average weight of babies born to mothers who were in high school but did not earn a diploma -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,American Indian Of Alaska Native Mothers Population Of Live Birth Height;Average Live Birth Weight in Grams by American Indian Or Alaska Native Mothers;Average live birth weight in grams where mothers Race is American Indian Or Alaska Native Alone;average height of babies born to american indian or alaska native mothers;average live birth height for american indian or alaska native mothers;average live birth weight for american indian or alaska native mothers;average weight of babies born to american indian or alaska native mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianIndian,Average Live Birth Weight in Grams For Asian Indian Mothers;Average live birth weight in grams where mothers Race is Asian Indian;how much do asian indian babies weigh on average at birth?;what is the average birth weight of asian indian babies?;what is the average live birth weight for asian indian mothers?;what is the average weight of a baby born to an asian indian mother? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average Live Birth Weight in Grams For Asian Or Pacific Islander Mothers;Average live birth weight in grams where mothers Race is Asian Or Pacific Islander;average birth weight for asian or pacific islander mothers;average weight of babies born to asian or pacific islander mothers;average weight of babies born to asian or pacific islander women;average weight of babies born to asian or pacific islander women in the united states -Mean_BirthWeight_BirthEvent_LiveBirth_MotherAssociatesDegree,Average Live Birth Weight in Grams Among Mothers With Associates Degrees;Average live birth weight in grams where mothers Education is Associates Degree;average birth weight of babies born to mothers with associate's degrees;the average weight of babies born to mothers who have completed an associate's degree program at a community college or four-year university;the average weight of babies born to mothers with associate degrees;the average weight of babies born to women with associate degrees -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Live Birth Weight Among Mothers with a Bachelor's Degree;Average live birth weight in grams where mothers Education is Bachelors Degree;the average birth weight of babies born to mothers who have a college education;the average birth weight of babies born to mothers with a college degree;the average weight of babies born to mothers who have completed a bachelor's degree;the average weight of babies born to mothers with a bachelor's degree -Mean_BirthWeight_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average Live Birth Weight in Grams of African American Mothers;Average live birth weight in grams where mothers Race is Black Or African American Alone;the average weight of a baby at birth to an african american mother;the average weight of a baby born to an african american mother;the average weight of a live birth to an african american mother;the average weight of a newborn born to an african american mother -Mean_BirthWeight_BirthEvent_LiveBirth_MotherChinese,Average Live Birth Weight In Grams Among Chinese Mothers;Average live birth weight in grams where mothers Race is Chinese;the average weight of a baby born to a chinese mother;the average weight of babies born to chinese women;the average weight of chinese newborns;the average weight of live births in china -Mean_BirthWeight_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average live Birth Weight in Grams For Mothers With Doctorate Degrees And Professional School Degrees;Average live birth weight in grams where mothers Education is Doctorate Degree& Professional School Degree;average weight of babies born to mothers with doctorate degrees and professional school degrees -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average Live Birth Weight In Grams Among Mothers Whose Education is CDC;Average live birth weight in grams where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average weight of babies born to mothers who have a cdc education;the average weight of babies born to mothers who have a cdc level of education;the average weight of babies born to mothers with a cdc education;the average weight of babies born to mothers with a cdc level of education -Mean_BirthWeight_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,"Average Live Birth Weight In Grams Where Mothers Ethnicity Is CDC;Average live birth weight in grams where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;average birth weight in grams for mothers of cdc ethnicity;average birth weight in grams of babies born to mothers of cdc ethnicity;average birth weight in grams of babies born to mothers who identify with cdc ethnicity;average weight of a baby at birth in grams, where the mother's ethnicity is cdc" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherFilipino,Average Live Birth Weight in Grams For Filipino Mothers;Average live birth weight in grams where mothers Race is Filipino;the average live birth weight of filipino babies;the average weight of a baby born to a filipino mother in grams;the average weight of a baby born to a filipino woman;the average weight of a filipino baby at birth -Mean_BirthWeight_BirthEvent_LiveBirth_MotherForeignBorn,Average Live Birth Weight in Grams of USC Foreign-Born Mothers;Average live birth weight in grams where mothers Nativity is USC_ Foreign Born;the average weight of babies born to foreign-born mothers in the united states;the average weight of babies born to mothers who are not us citizens;the average weight of live births to foreign-born mothers in the united states;the average weight of live-born babies born to mothers who are not us citizens -Mean_BirthWeight_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Live Birth Weight Among Guamanian Or Chamorro Mothers;Average live birth weight in grams where mothers Race is Guamanian Or Chamorro;the average weight of babies born to guamanian or chamorro mothers;the average weight of live births to guamanian or chamorro mothers;the average weight of live-born infants born to guamanian or chamorro mothers;the average weight of newborn babies born to guamanian or chamorro mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"Average Live Birth Weight In Grams By Mothers With HighSchool Graduates Ged or Alternative;Average live birth weight in grams where mothers Education is High School Graduate Ged Or Alternative;the average birth weight of babies born to mothers who have completed high school, earned a ged, or have an equivalent level of education;the average birth weight of babies born to mothers with a high school diploma, ged, or equivalent;the average weight of a baby born to a mother with a high school diploma, ged, or equivalent;the average weight of babies born to mothers who have graduated from high school, earned a ged, or have an equivalent credential" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average Live Birth Weight in Grams of Hispanic Mothers;Average live birth weight in grams where mothers Ethnicity is Hispanic Or Latino;the average weight of babies born to hispanic mothers;the average weight of hispanic newborns;the average weight of live births to hispanic mothers;the average weight of newborn babies born to hispanic mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherJapanese,Average Live Birth Weight in Grams For Japanese Mothers;Average live birth weight in grams where mothers Race is Japanese;what is the average live birth weight of japanese babies?;what is the average weight of a baby born to a japanese mother?;what is the average weight of a full-term baby born to a japanese mother?;what is the average weight of a newborn baby born to a japanese mother? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherKorean,Average Live Birth Weight in Grams of Korean Mothers;Average live birth weight in grams where mothers Race is Korean;the average weight of a baby at birth to a korean mother in grams;the average weight of a baby born to a korean mother in grams;the average weight of a live birth to a korean mother in grams;the average weight of a newborn baby born to a korean mother in grams -Mean_BirthWeight_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average Live Birth Weight in Grams Where Mother's Education is Less Than 9th Grade;Average live birth weight in grams where mothers Education is Less Than9 Th Grade;average birth weight of babies born to mothers with less than a high school education;average weight of babies born to mothers who did not finish high school;the average weight of babies born to mothers with a low level of education;the average weight of babies born to mothers with less than a 9th grade education -Mean_BirthWeight_BirthEvent_LiveBirth_MotherMastersDegree,Average live birth weight in grams where mothers Education is Masters Degree;Live Birth Weight in Grams of Mothers with a Masters Degree -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNative,Average Live Birth Weight in Grams For USC Mothers;Average live birth weight in grams where mothers Nativity is USC_ Native -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativeHawaiian,Average Live Birth Weight in Grams By Native Hawaiian Mothers;Average live birth weight in grams where mothers Race is Native Hawaiian;the average birth weight of babies born to native hawaiian women;the average weight of babies born to native hawaiian mothers;the average weight of native hawaiian infants at birth;the average weight of native hawaiian newborns -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average live birth weight in grams where mothers Nativity is CDC_ Nativity Unknown Or Not Stated -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average Live Birth Weight in Grams of Non-Hispanic Mothers;Average live birth weight in grams where mothers Ethnicity is Not Hispanic Or Latino;the average weight of a baby born alive to a non-hispanic mother in grams;the average weight of a baby born to a non-hispanic mother in grams;the average weight of a live birth to a non-hispanic mother in grams;the average weight of a newborn baby born to a non-hispanic mother in grams -Mean_BirthWeight_BirthEvent_LiveBirth_MotherNowMarried,Average live birth weight in grams where mothers Marital Status is Now Married;Live Birth Weight in Grams For Married Mothers;the average weight of babies born to married couples in the us;the average weight of babies born to married mothers in the united states;the average weight of babies born to married women in the us;the average weight of live births to married mothers in the us -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherAsian,Average Live Birth Weight in Grams For Asian Mothers;Average live birth weight in grams where mothers Race is Other Asian;the average weight of a baby born to an asian mother;the average weight of a live birth to an asian mother;the average weight of a live-born baby to an asian mother;the average weight of a newborn baby born to an asian mother -Mean_BirthWeight_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average Live Birth Weight in Grams Among Pacific Islander Mothers;Average live birth weight in grams where mothers Race is Other Pacific Islander;how much do babies born to pacific islander mothers weigh on average;what is the average birth weight of babies born to pacific islander mothers;what is the average live birth weight of babies born to pacific islander mothers;what is the average weight of babies born to pacific islander mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSamoan,Average Live Birth Weights By Samoan Mothers;Average live birth weight in grams where mothers Race is Samoan;samoan mothers' average live birth weights;the average weight of babies born to samoan mothers;the average weight of babies born to samoan women;the average weight of live births to samoan mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,"Average live birth weight in grams where mothers Education is Some College No Degree;Mean Birth Weight in Birth Events For Live Births For Mothers With College;average birth weight of babies born to mothers who have some college education but do not have a college degree;average weight of babies born to mothers who have some college but have not graduated;average weight of babies born to mothers who have some college education but do not have a college diploma;the average weight of a baby born to a mother with some college but no degree, in grams" -Mean_BirthWeight_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average Live Births of Multiracial Mothers;Average live birth weight in grams where mothers Race is Two Or More Races;the average number of live births to mothers of mixed race;the average number of live births to multiracial mothers;the average number of live births to women of mixed race;the average number of live births to women with more than one racial background -Mean_BirthWeight_BirthEvent_LiveBirth_MotherUnmarried,Average live Birth Weight in Grams For Unmarried Mothers;Average live birth weight in grams where mothers Marital Status is Unmarried;the average weight of babies born to mothers who are not in a relationship;the average weight of babies born to mothers who are not living with the father of their child;the average weight of babies born to single mothers;the average weight of babies born to unmarried mothers -Mean_BirthWeight_BirthEvent_LiveBirth_MotherVietnamese,Average live birth weight in grams where mothers Race is Vietnamese;Vietnamese Racial Average Live Birth Which Is Grams;how much do vietnamese babies weigh on average when they are born?;what is the average birth weight of vietnamese babies?;what is the average weight of a vietnamese baby at birth?;what is the typical weight of a vietnamese newborn? -Mean_BirthWeight_BirthEvent_LiveBirth_MotherWhiteAlone,Average Live Birth Weight in Grams for White Mothers;Average live birth weight in grams where mothers Race is White Alone;the average weight of a baby born to a white mother in grams;the average weight of a live birth to a white mother in grams;the average weight of a live-born white baby in grams;the average weight of a white baby at birth in grams -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Cash Assistance of Household: Foreign Born, Africa;Mean Cash Assistance of Households of Foreign Born Population in Africa;the average amount of aid given to households with foreign-born residents in africa to help them get by;the average amount of cash assistance given to households with foreign-born residents in africa;the average amount of financial assistance given to households with foreign-born residents in africa to help them meet their basic expenses;the average amount of money given to households with foreign-born residents in africa to help them cover their basic needs" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Cash Assistance of Foreign-Born Households in Asia;Mean Cash Assistance of Household: Foreign Born, Asia;the average amount of cash assistance received by foreign-born households in asia;the average amount of money that foreign-born households in asia receive in cash assistance;the mean amount of cash assistance given to foreign-born households in asia;the mean amount of money that foreign-born households in asia are given in cash assistance" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Cash Assistance of Foreign-Born Householders in the Caribbean;Mean Cash Assistance of Household: Foreign Born, Caribbean;how much cash assistance do foreign-born households in the caribbean receive on average?;the average amount of aid given to foreign-born households in the caribbean to help them meet their basic needs;the average amount of cash assistance received by foreign-born households in the caribbean;the average amount of financial assistance provided to foreign-born households in the caribbean" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Cash Assistance of Household: Foreign Born, Central America Except Mexico;Mean Cash Assistance of Households Owned By Foreign-Born Population in Central America, Except Mexico;average cash assistance for households owned by foreign-born people in central america, excluding mexico;the average amount of money that households owned by foreign-born people in central america, excluding mexico, receive in cash assistance;the typical amount of cash assistance given to households owned by foreign-born people in central america, excluding mexico;the typical amount of money that households owned by foreign-born people in central america, excluding mexico, receive in cash assistance each year" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Cash Assistance Household Of Foreign Born Population In East Africa;Mean Cash Assistance of Household: Foreign Born, Eastern Asia;Mean Cash Assistance of Householders Foreign Born In Eastern Asia;mean cash assistance to foreign-born householders in eastern asia;mean cash assistance to households with foreign-born members in east africa;mean cash assistance to households with foreign-born members or heads in east africa;mean cash assistance to households with foreign-born residents in east africa" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEurope,"Average Cash Assistance of Householders Foreign Born In Europe;Mean Cash Assistance of Household: Foreign Born, Europe;how much cash assistance do foreign-born householders in europe receive on average?;how much money do foreign-born householders in europe receive on average in cash assistance?;what is the average amount of cash assistance given to foreign-born householders in europe?;what is the average amount of money that foreign-born householders in europe receive in cash assistance?" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Cash Assistance of Foreign-Born Population in Latin America;Mean Cash Assistance of Household: Foreign Born, Latin America;average amount of aid given to foreign-born people in latin america to help them meet their basic needs;average amount of cash assistance provided to foreign-born people in latin america;average amount of financial assistance provided to foreign-born people in latin america;average amount of money given to foreign-born people in latin america to help them with their expenses" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Cash Assistance of Foreign-Born Households in Mexico;Mean Cash Assistance of Household: Foreign Born, Country/MEX;the amount of cash assistance that most foreign-born households in mexico receive;the average amount of cash assistance received by foreign-born households in mexico;the typical amount of cash assistance given to foreign-born households in mexico;the usual amount of cash assistance provided to foreign-born households in mexico" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born Mean Cash Assistance of Households in North America;Mean Cash Assistance of Household: Foreign Born, Northamerica;the average amount of cash assistance received by foreign-born households in north america;the average amount of money given to foreign-born households in north america in the form of cash assistance;the mean amount of cash assistance received by foreign-born households in north america;the mean amount of money given to foreign-born households in north america in the form of cash assistance" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Cash Assistance of Household: Foreign Born, Northern Western Europe;Mean Cash Assistance of Householders Foreign Born In Northern-Western Europe;cash assistance for foreign-born householders in northern-western europe;the amount of cash assistance received by foreign-born householders in northern-western europe;the mean amount of cash assistance received by foreign-born householders in northern-western europe;what is the mean cash assistance of foreign-born householders in northern-western europe?" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Cash Assistance of Foreign-Born Households in South Central Asia;Mean Cash Assistance of Household: Foreign Born, South Central Asia;the average amount of cash assistance received by foreign-born households in south central asia;the average amount of financial aid given to foreign-born households in south central asia;the average amount of money that foreign-born households in south central asia receive in the form of cash assistance;the average amount of money that foreign-born households in south central asia receive in the form of financial aid" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Cash Assistance For Foreign Born Households Born in South Eastern Asia;Mean Cash Assistance of Household: Foreign Born, South Eastern Asia;the customary amount of cash assistance given to households in south east asia that are headed by people who are not citizens of the country;the customary amount of cash assistance given to households whose head of household was born in southeast asia;the standard amount of cash assistance provided to households in south east asia that are headed by people who are not native to the country;the typical amount of cash assistance given to households in south east asia that are headed by immigrants" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Cash Assistance For Foreign-Born Owned Households in South America;Mean Cash Assistance of Household: Foreign Born, Southamerica;cash assistance for foreign-born owned households in south america;cash assistance for households in south america owned by foreign-born people;cash assistance for households in south america owned by immigrants;cash assistance for households in south america owned by people who were born in other countries" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born in Southern Eastern Europe Mean Cash Assistance;Mean Cash Assistance of Household: Foreign Born, Southern Eastern Europe;the average amount of cash assistance received by foreign-born people in southern eastern europe;the mean amount of cash assistance received by foreign-born people in southern eastern europe;the median amount of cash assistance received by foreign-born people in southern eastern europe;the typical amount of cash assistance received by foreign-born people in southern eastern europe" -Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Households of Foreign Born Population in Western Asia With Mean Cash Assistance;Mean Cash Assistance of Household: Foreign Born, Western Asia;households of foreign-born people in western asia who receive cash assistance on average;the average amount of cash assistance received by households of foreign-born people in western asia;the average amount of money that households of foreign-born people in western asia receive in cash assistance" -Mean_Concentration_AirPollutant_CO,Mean Concentration: Carbon Monoxide -Mean_Concentration_AirPollutant_DieselPM,Average level of diesel particulate matter in the air;Average level of particulate matter from diesel engines in the air;Mean Concentration of Diesel PM Air Pollutant;Mean concentration of diesel PM air pollutant;The average amount of diesel particulate matter in the air;air pollution from deisel;amount of diesel particulate matter in the air;average amount of diesel particulate matter in the air;concentration of diesel air pollution;concentration of diesel particulate matter in the air;how much diesel is in the air;level of diesel particulate matter in the air -Mean_Concentration_AirPollutant_NO2,Mean Concentration: Nitrogen Dioxide -Mean_Concentration_AirPollutant_Ozone,Average ozone concentration in the air;Mean Concentration of Ozone Air Pollutant;Mean concentration of ozone air pollutant;Mean ozone concentration;Ozone air pollution concentration;Ozone air pollution levels;Ozone levels in the air;air pollution level for ozone;average ozone concentration;level of ozone in the air;ozone air pollutant concentration;ozone air pollution;ozone concentration in the air -Mean_Concentration_AirPollutant_PM10,Mean Concentration: PM 10 -Mean_Concentration_AirPollutant_PM2.5,Average PM25 concentration;Average PM25 level;Average concentration of PM25 air pollutant;Average concentration of particulate matter 25;Average level of particulate matter 25;Mean Concentration of PM2.5 Air Pollutant;Mean concentration of PM2.5 air pollutant;PM2.5 air pollution level;air pollution concentration;average amount of pm25 air pollution;average concentration of pm25 air pollutant;average level of pm25 air pollution;average pm25 air pollution levels -Mean_Concentration_AirPollutant_SO2,Mean Concentration: Sulfur Dioxide -Mean_Concentration_AirPollutant_SmokePM25,Mean Concentration Air Pollutant Smoke PM 2.5;Mean Concentration of Smoke PM2.5;average concentration of smoke pm25;average level of smoke pm25;mean amount of smoke pm25 -Mean_CoverageArea_SolarInstallation_Commercial,Coverage Area of Solar Installation;Coverage Area of Solar Installation: Commercial;the area that can be covered by a solar installation;the extent of the area that can be covered by solar power;the scope of the area that can be covered by solar energy;the size of the area that can be covered by solar panels -Mean_CoverageArea_SolarInstallation_Residential,Coverage Area of Solar Installation Residential;Coverage Area of Solar Installation: Residential;area covered by residential solar panels;how much space does a residential solar installation cover?;residential solar panel coverage area;what is the area covered by a residential solar installation? -Mean_CoverageArea_SolarInstallation_UtilityScale,Coverage Area of Solar Installation: Utility Scale;Utility Scale Area of Solar Installation;the footprint of a solar power plant;the size of a solar power plant -Mean_CoverageArea_SolarThermalInstallation_NonUtility,Coverage Area of Solar Thermal Installation by Non-Utility;Coverage Area of Solar Thermal Installation: Non Utility;area covered by non-utility solar thermal installations;non-utility solar thermal installation coverage area;the amount of land covered by non-utility solar thermal installations;the area covered by non-utility solar thermal installations -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Earnings For Household of Foreign Born Population Born in Africa;Mean Earnings of Household: Foreign Born, Africa;the average salary of households with african-born heads;the typical amount of money earned by families with african-born heads of household;the typical earnings of households with african immigrant heads;typical earnings of households with african-born heads of household" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Earnings of Household: Foreign Born, Asia;Mean Earnings of Households of Foreign-Born Population in Asia;average earnings of foreign-born families in asia;the average amount of money earned by households with foreign-born members in asia;the average amount of money earned by households with foreign-born residents in asia;the average household earnings of foreign-born residents in asia" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born Population in The Caribbean With Mean Earnings of Households;Mean Earnings of Household: Foreign Born, Caribbean;the average amount of money that households in the caribbean with foreign-born residents make;the average household earnings in the caribbean for households with foreign-born residents;the mean earnings of households headed by foreign-born people in the caribbean" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Earnings of Foreign-Born Households in Central America, Except Mexico;Mean Earnings of Household: Foreign Born, Central America Except Mexico;the average amount of money that foreign-born households in central america, excluding mexico, earn;the average earnings of foreign-born households in central america, excluding mexico;the average salary of foreign-born households in central america, excluding mexico;the average wage of foreign-born households in central america, excluding mexico" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Earnings of Foreign-Born Households in Eastern Asia;Mean Earnings of Household: Foreign Born, Eastern Asia;how much money do foreign-born households in eastern asia earn on average;the typical amount of money that foreign-born households in eastern asia earn;the typical earnings of foreign-born households in eastern asia;the usual amount of money that foreign-born households in eastern asia make" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEurope,"2 the typical amount of money earned by households in europe that are headed by someone who was born in another country;Mean Earnings of Household: Foreign Born, Europe;Mean Earnings of Households Of People Foreign Born In Europe;the typical amount of money that households headed by foreign-born people in europe make;the typical earnings of households headed by foreign-born people in europe;the typical household earnings of people who were born outside of europe" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Earnings of Household: Foreign Born, Latin America;Mean Earnings of Population Foreign Born In Latin America;the average salary of people who were born in latin america but now live in the united states;the general amount of money that people from latin america earn;the typical amount of money that people from latin america earn;the usual amount of money that people who were born in latin america but now live in the united states make" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Earnings of Foreign-Born Households;Mean Earnings of Household: Foreign Born, Country/MEX;how much money do foreign-born households make, on average?;the typical amount of money earned by families with foreign-born parents;the typical amount of money earned by households with foreign-born heads;what are the average earnings of foreign-born households?" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Earnings of Foreign-Born in North America Households;Mean Earnings of Household: Foreign Born, Northamerica;the average earnings of foreign-born households in north america;the typical earnings of foreign-born households in north america;the typical earnings of households headed by immigrants in north america" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Earnings of Household: Foreign Born, Northern Western Europe;Mean Earnings of Households of Foreign-Born Population in Northern Western Europe;the average amount of money that foreign-born people earn per household in northern western europe;the average amount of money that households with foreign-born members earn in northern western europe;the average household income of foreign-born people in northern western europe;the average income of households with foreign-born members in northern western europe" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthOceania,"Average Earnings Of Households Foreign-Born In Oceania;Mean Earnings of Household: Foreign Born, Oceania;how much money do foreign-born households in oceania earn on average?;what are the average earnings of foreign-born households in oceania?;what is the average salary of foreign-born households in oceania?;what is the average wage of foreign-born households in oceania?" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Earnings of Household: Foreign Born, South Central Asia;Mean Earnings of Households Of People Foreign Born In South-Central Asia;the expected amount of money that households headed by people who were born in south-central asia bring in;the overall earnings of households headed by people who were born in south-central asia;the typical amount of money that households headed by people who were born in south-central asia earn;the usual amount of money that households headed by people who were born in south-central asia make" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Earnings of Household: Foreign Born, South Eastern Asia;Mean Earnings of Households Of People Foreign Born In South-Eastern Asia;the typical amount of money that households headed by people born in southeast asia earn;the typical amount of money that households headed by people who were born in southeast asia make;the typical earnings of households headed by people who were born in southeast asia;the typical household earnings of people who were born in southeast asia" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Earnings of Foreign-Born Population in South America;Mean Earnings of Household: Foreign Born, Southamerica;how much money do foreign-born people in south america make on average?;what are the average earnings of foreign-born people in south america?;what do foreign-born people in south america typically earn?;what is the average salary of foreign-born people in south america?" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Earnings of Foreign-Born Households in Southern Eastern Europe;Mean Earnings of Household: Foreign Born, Southern Eastern Europe;the typical earnings of foreign-born households in southern eastern europe;the usual amount of money that foreign-born households in southern eastern europe make;what are the average earnings of foreign-born households in southern eastern europe?" -Mean_Earnings_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Earnings of Foreign-Born Population in Western Asia;Mean Earnings of Household: Foreign Born, Western Asia;the average amount of money that immigrants in western asia make;the average salary of foreign-born people in western asia;the median earnings of people who were born outside of western asia and now live there;the typical amount of money that foreign-born people in western asia make" -Mean_Earnings_Person_Female,"Average Earnings for Females;Average earnings per person for females;Average income for females With Earnings;How much money do women earn on average?;Mean Earnings: Female, With Earnings;The average amount of money that women earn;The average amount of money that women make;how much do women earn on average?;what are women's average earnings?;what is the average income for women?;what is the average salary for women?" -Mean_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,"Average Earnings for Females Living in Adult Correctional Facilities;Average earnings per person for females living in adult correctional facilities;Average income for females With Earnings, in Adult Correctional Facilities;How much money do female inmates make in adult correctional facilities?;How much money do women make in adult correctional facilities?;Mean Earnings: Female, With Earnings, Adult Correctional Facilities;The average amount of money that female inmates in adult correctional facilities make;The average amount of money that women earn in adult correctional facilities;What is the average income for women in adult correctional facilities?;how much money do women in prison make?;what do women in prison earn on average?;what is the average income of women in correctional facilities?;what is the average salary for women in jail?" -Mean_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Average Earnings for Females Living in College or University Student Housing;Average earnings per person for females living in college or university student housing;Average income for female students in college or university housing;Average income for females With Earnings, in College or University Student Housing;How much money do female students in college or university student housing earn on average?;How much money do female students in college or university student housing typically earn?;Mean Earnings: Female, With Earnings, College or University Student Housing;how much money do female college students living in student housing typically earn?;what are the average earnings of female college students living in student housing?;what is the average income of female college students living in student housing?;what is the typical salary of female college students living in student housing?" -Mean_Earnings_Person_Female_ResidesInGroupQuarters,"Average Earnings for Females Living in Group Quarters;Average earnings for women in group quarters;Average earnings per person for females living in group quarters;Average income for females With Earnings, in Group Quarters;Average income for women in group quarters with earnings;Mean Earnings: Female, With Earnings, Group Quarters;The average amount of money that females earn in group quarters;The average income of women who have earnings, in group quarters;how much money do women living in group quarters earn on average?;what is the average income of women living in group quarters?;what is the average salary of women living in group quarters?;what is the average wage of women living in group quarters?" -Mean_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Average Earnings for Females Living in Institutionalized Group Quarters;Average earnings per person for females living in institutionalized group quarters;Average income for females With Earnings, in Institutionalized in Group Quarters;Average income for females institutionalized in group quarters;Average income for women with earnings who are institutionalized in group quarters;How much money do women who are institutionalized in group quarters typically earn?;Mean Earnings: Female, With Earnings, Institutionalized Group Quarters;The average amount of money that females who are institutionalized in group quarters earn" -Mean_Earnings_Person_Female_ResidesInJuvenileFacilities,"Average Earnings for Females Living in Juvenile Facilities;Average earnings of females in juvenile facilities;Average earnings per person for females living in juvenile facilities;Average income for females With Earnings, in Juvenile Facilities;How much money do females in juvenile facilities make on average?;How much money do girls in juvenile facilities make on average?;Income of females with earnings in juvenile facilities;Mean Earnings: Female, With Earnings, Juvenile Facilities;What is the average income for girls in juvenile facilities who have earnings?;how much money do girls in juvenile facilities make on average?;what are the average earnings of girls living in juvenile facilities?;what is the average income of girls living in juvenile facilities?;what is the average salary of girls living in juvenile facilities?" -Mean_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Average Earnings for Females Living in Military Quarters or Ships;Average earnings per person for females living in military quarters or ships;Average income for females With Earnings, in Military Quarters or Military Ships;Average income for females who are employed in the military and live in military quarters or on military ships;How much money do women who live in military quarters or on military ships make on average?;Mean Earnings: Female, With Earnings, Military Quarters or Military Ships;The average salary for women in military housing or on military ships;What is the average income for women who live in military quarters or on military ships?;how much money do women make on average while living in military quarters or ships?;what is the average income for women who live in military quarters or ships?;what is the average salary for women who live in military quarters or ships?;what is the average wage for women who live in military quarters or ships?" -Mean_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Average Earnings for Females Living in Noninstitutionalized Group Quarters;Average earnings per person for females living in noninstitutionalized group quarters;Average income for females With Earnings, in Noninstitutionalized in Group Quarters;Mean Earnings: Female, With Earnings, Noninstitutionalized Group Quarters;The average income for women who are employed and not living in institutions or group quarters" -Mean_Earnings_Person_Female_ResidesInNursingFacilities,"1 Average salary for female nurses in nursing homes;Average Earnings for Females Living in Nursing Facilities;Average earnings per person for females living in nursing facilities;Average income for females With Earnings, in Nursing Facilities;Mean Earnings: Female, With Earnings, Nursing Facilities;The average salary for women working in nursing homes;What is the average salary for women working in nursing homes?;how much do females living in nursing facilities earn?;what are the average earnings of females living in nursing facilities?;what is the average income for females living in nursing facilities?;what is the average salary for females living in nursing facilities?" -Mean_Earnings_Person_Male,"Average Earnings for Males;Average earnings per person for males;Average income for males With Earnings;How much money do males with earnings make on average?;Mean Earnings: Male, With Earnings;The average amount of money that males earn;The average salary for men who are employed;The average salary for men who are paid;The average salary for men who have jobs;how much do men earn on average?;what is the average income for men?;what is the average salary for men?;what is the average wage for men?" -Mean_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,"Annual income of male inmates;Average Earnings for Males Living in Adult Correctional Facilities;Average earnings of male prisoners;Average earnings per person for males living in adult correctional facilities;Average income for males With Earnings, in Adult Correctional Facilities;How much money do male prisoners make;How much money do males in adult correctional facilities make on average?;How much money do men in adult correctional facilities earn on average?;Mean Earnings: Male, With Earnings, Adult Correctional Facilities;how much money do men in prison make?;what are the average earnings of male prisoners?;what is the average salary for men in jail?;what is the typical income for men in prison?" -Mean_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Average Earnings for Males Living in College or University Student Housing;Average earnings per person for males living in college or university student housing;Average income for males With Earnings, in College or University Student Housing;Average income of male students living in college or university housing;How much money do male college students in student housing make on average;Mean Earnings: Male, With Earnings, College or University Student Housing;The average income for male students living in college or university student housing;What is the average income for male college students living in student housing;What is the average salary for male college students in student housing;how much money do male college students living in student housing typically earn?;what is the average amount of money that male college students living in student housing make?;what is the average income for male college students living in student housing?;what is the typical salary for male college students living in student housing?" -Mean_Earnings_Person_Male_ResidesInGroupQuarters,"Average Earnings for Males Living in Group Quarters;Average earnings per person for males living in group quarters;Average income for males With Earnings, in Group Quarters;How much money do men make in group quarters?;Income of males with earnings in group quarters;Mean Earnings: Male, With Earnings, Group Quarters;The average amount of money that men earn in group quarters;The average income for men who have earnings, in group quarters;how much money do men who live in group quarters earn on average?;what is the average income for men who live in group quarters?;what is the average salary for men who live in group quarters?;what is the average wage for men who live in group quarters?" -Mean_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,"Average Earnings for Males Living in Institutionalized Group Quarters;Average earnings per person for males living in institutionalized group quarters;Average income for males With Earnings, in Institutionalized in Group Quarters;Average income of males who are institutionalized and live in group quarters;How much money do men institutionalized in group quarters make on average?;Mean Earnings: Male, With Earnings, Institutionalized Group Quarters;The average amount of money that men institutionalized in group quarters earn;The average amount of money that men who are institutionalized in group quarters earn;the average amount of money that males living in institutionalized group quarters earn;the average pay for males living in institutionalized group quarters;the typical earnings for males living in institutionalized group quarters;the typical salary for males living in institutionalized group quarters" -Mean_Earnings_Person_Male_ResidesInJuvenileFacilities,"1 The average amount of money that males in juvenile facilities earn;Average Earnings for Males Living in Juvenile Facilities;Average earnings of males in juvenile facilities;Average earnings per person for males living in juvenile facilities;Average income for males With Earnings, in Juvenile Facilities;How much money do male juveniles make in detention centers?;How much money do males in juvenile facilities earn on average?;How much money do males in juvenile facilities make on average?;Mean Earnings: Male, With Earnings, Juvenile Facilities;how much money do males living in juvenile facilities earn on average?;what is the average income for males living in juvenile facilities?;what is the average salary for males living in juvenile facilities?;what is the average wage for males living in juvenile facilities?" -Mean_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Average Earnings for Males Living in Military Quarters or Ships;Average earnings per person for males living in military quarters or ships;Average income for males With Earnings, in Military Quarters or Military Ships;How much money do men make who live in military quarters or on military ships?;Mean Earnings: Male, With Earnings, Military Quarters or Military Ships;The average income for males who live in military quarters or on military ships;The average income for men who live in military quarters or on military ships;The average salary for men who live in military quarters or on military ships;how much money do men who live in military quarters or ships make on average?;what are the average earnings of men who live in military quarters or ships?;what is the average income of men who live in military quarters or ships?;what is the average salary of men who live in military quarters or ships?" -Mean_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Average Earnings for Males Living in Noninstitutionalized Group Quarters;Average earnings per person for males living in noninstitutionalized group quarters;Average income for males With Earnings, in Noninstitutionalized in Group Quarters;Mean Earnings: Male, With Earnings, Noninstitutionalized Group Quarters;the usual amount of money earned by men living in group quarters that are not jails, hospitals, or other types of institutions" -Mean_Earnings_Person_Male_ResidesInNursingFacilities,"Average Earnings for Males Living in Nursing Facilities;Average earnings per person for males living in nursing facilities;Average income for males With Earnings, in Nursing Facilities;How much money do males working in nursing facilities make?;Mean Earnings: Male, With Earnings, Nursing Facilities;The average salary for males in nursing homes;What is the average pay for males working in nursing facilities?;What is the average salary for males working in nursing facilities?;What is the typical income for males working in nursing facilities?;how much money do men in nursing homes make?;what are the average earnings of men living in nursing homes?;what is the average income for men in nursing homes?;what is the average salary for men in nursing homes?" -Mean_Earnings_Person_WithEarnings_FullTimeYearRoundWorker,"Mean Earnings of Full Time Year Round Workers Aged 16 Years or More;Mean Earnings: 16 Years or More, With Earnings, Full Time Year Round Worker;the mean annual wage of full-time employees aged 16 or older;the mean yearly pay of full-time workers aged 16 or older;usual income of full-time employees aged 16 or older;yearly earnings of full-time employees aged 16 or older" -Mean_Expenses_Farm,Average expenses incurred by a farm;Mean Expenses of Farm;mean expenses of farm;the costs of farming;the costs of running a farm business;the expenses of a farm;the overhead costs of a farm;what is the average cost of running a farm? -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAfrica,"Mean Family Size For Foreign Born Family Households Born in Africa;Mean Family Size of Household: Family Household, Foreign Born, Africa;mean family size of households with foreign-born african residents;the average family size in africa of households where the head of household is foreign born;the average family size of households with a foreign-born head from africa;the average number of people in a family household in africa where the household head is not a native of the country" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthAsia,"Mean Family Size For Foreign Born Family Households Born in Asia;Mean Family Size of Household: Family Household, Foreign Born, Asia;the average size of a family household with foreign-born parents from asia" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCaribbean,"Mean Family Size For Foreign Born Family Households Born in Caribbean;Mean Family Size of Household: Family Household, Foreign Born, Caribbean;the average family size of caribbean-born households" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Family Size For Foreign Born Family Households Born in Central America Except Mexico;Mean Family Size of Household: Family Household, Foreign Born, Central America Except Mexico;the average family size of a household with a foreign-born head of household from central america, excluding mexico;the average size of a family household headed by a foreign-born person from central america, excluding mexico" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Family Size For Foreign Born Family Households Born in Eastern Asia;Mean Family Size of Household: Family Household, Foreign Born, Eastern Asia;the average family size of a household with foreign-born members from eastern asia;the average family size of households with foreign-born parents from eastern asia" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthEurope,"Mean Family Size For Foreign Born Family Households Born in Europe;Mean Family Size of Household: Family Household, Foreign Born, Europe;average family size in europe for households with foreign-born members;the average family size of households in europe with at least one foreign-born member;what is the average family size of foreign-born households in europe?;what is the typical family size of foreign-born households in europe?" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Family Size For Foreign Born Family Households Born in Latin America;Mean Family Size of Household: Family Household, Foreign Born, Latin America;the mean number of people in a family household headed by someone born in latin america;the mean size of a family household headed by someone born in latin america;what is the average family size of a latin american family household with foreign-born parents?" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthMexico,"Mean Family Size For Foreign Born Family Households Born in Mexico;Mean Family Size of Household: Family Household, Foreign Born, Country/MEX" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Family Size For Foreign Born Family Households Born in North America;Mean Family Size of Household: Family Household, Foreign Born, Northamerica;average household size with foreign-born family members in north america;size of a household with foreign-born family members in north america;the average family size of households in north america that include at least one person who was born outside of the country" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Family Size For Foreign Born Family Households Born in North Western Europe;Mean Family Size of Household: Family Household, Foreign Born, Northern Western Europe" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthOceania,"Mean Family Size of Household: Family Household, Foreign Born, Oceania;the average family size in oceania, including families with foreign-born members" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Family Size For Foreign Born Family Households Born in South Central Asia;Mean Family Size of Household: Family Household, Foreign Born, South Central Asia;the average size of a family household with foreign-born parents from south central asia" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Family Size For Foreign Born Family Households Born in South Eastern Asia;Mean Family Size of Household: Family Household, Foreign Born, South Eastern Asia" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Family Size For Foreign Born Family Households Born in South America;Mean Family Size of Household: Family Household, Foreign Born, Southamerica;the average family size of a household headed by a foreign-born person from south america;the average family size of a south american foreign-born household" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Family Size For Foreign Born Family Households Born in Southern Eastern Europe;Mean Family Size of Household: Family Household, Foreign Born, Southern Eastern Europe;the average family size of a household headed by a foreign-born person from southern eastern europe" -Mean_FamilySize_Household_FamilyHousehold_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Family Size For Foreign Born Family Households Born in Western Asia;Mean Family Size of Household: Family Household, Foreign Born, Western Asia;the average family size of households with foreign-born parents from western asia;the average household size of a foreign-born western asian family" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Household Size of Household: Foreign Born, Africa;Mean Household Size of Households Owned By Foreign-Born Population in Africa;average household size of foreign-born households in africa;average number of people in households owned by foreign-born people in africa;mean household size of households owned by people who were born outside of africa;mean number of people living in households owned by foreign-born people in africa" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Household Size of Household: Foreign Born, Asia;Mean Household Size of Households of Foreign-Born Population in Asia;average household size of households in asia with at least one foreign-born member;mean household size of households with foreign-born members in asia;mean number of people per household in asia for foreign-born residents;the average household size of people who were born in another country and now live in asia" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCaribbean,"Caribbean Foreign Born Population Mean Household Size;Mean Household Size of Household: Foreign Born, Caribbean;average household size of caribbean immigrants;average household size of caribbean-born people;the average household size for caribbean-born people;the average household size of caribbean immigrants" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Household Size Of Foreign Born Population In Central America;Mean Household Size of Household: Foreign Born, Central America Except Mexico;average number of people in a household of foreign-born central americans;how many people live in a typical household of foreign-born central americans;typical number of individuals in a household of foreign-born central americans;what is the average household size of foreign-born central americans" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Household Size of Household: Foreign Born, Eastern Asia" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Household Size of Household: Foreign Born, Europe;Mean Households of Foreign-Born Population in Europe;average number of foreign-born people living in households in europe;average number of households in europe with foreign-born residents;average number of people born outside europe living in households in europe;average number of people born outside europe per household in europe" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Household Size Of Householders Foreign Born In Latin America;Mean Household Size of Household: Foreign Born, Latin America;average household size of latin american foreign-born householders;the average household size of foreign-born latin american householders;the average number of people in a household with a foreign-born latin american householder" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Household Size of Household: Foreign Born, Country/MEX;Mean Household Size of Households Owned By Foreign-Born Population in Mexico;average household size of foreign-born households in mexico;average number of people in households owned by foreign-born people in mexico;mean household size of households owned by people who were born outside of mexico;mean number of people living in households owned by foreign-born people in mexico" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Household Size For Foreign Born Population Born in North America;Mean Household Size of Household: Foreign Born, Northamerica;average household size of foreign-born households in north america;size of a typical household of foreign-born people in north america;the average household size in north america for households headed by a foreign-born person;typical household size of foreign-born people in north america" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Household Size of Household: Foreign Born, Northern Western Europe;Mean Size of Households Foreign-Born in Northern Western Europe;average household size of foreign-born people in northern western europe;size of foreign-born households in northern western europe;the average household size of foreign-born people in northern western europe;the average size of a foreign-born household in northern western europe" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthOceania,"2 average household size of foreign-born people in oceania;5 mean number of people living in households where the head of household was not born in oceania;Mean Household Size of Foreign-Born Households in Oceania;Mean Household Size of Household: Foreign Born, Oceania;average household size of foreign-born people in oceania;the average size of a foreign-born household in oceania" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Household Size of Foreign-Born Population In South Central Asia;Mean Household Size of Household: Foreign Born, South Central Asia;average household size of foreign-born people in south central asia;average number of people in a household of foreign-born residents in south central asia;average number of people living in a household with a foreign-born resident in south central asia;average number of people living in a household with at least one foreign-born resident in south central asia" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Household Size of Foreign-Born Households In South-Eastern Asia;Mean Household Size of Household: Foreign Born, South Eastern Asia;average household size of foreign-born households in southeast asia;size of a typical foreign-born household in southeast asia;size of households in southeast asia with a foreign-born head of household;typical household size of foreign-born people in southeast asia" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Household Size For Foreign Born Population Born in South America;Mean Household Size of Household: Foreign Born, Southamerica;the average number of people in a household with a south american immigrant as the head of household" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born Population in Southern Eastern Europe;Mean Household Size of Household: Foreign Born, Southern Eastern Europe;the number of foreign-born people in southern eastern europe;the number of immigrants in southern eastern europe;the number of people born outside of southern eastern europe;the number of people born outside of southern eastern europe who are currently living there" -Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Household Size of Foreign Born Population in Western Asia;Mean Household Size of Household: Foreign Born, Western Asia;average household size of foreign-born people in western asia;average number of people in a household of foreign-born people in western asia;what is the average household size of foreign-born people in western asia;what is the mean household size of foreign-born people in western asia" -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit,Average Of Occupied Housing Units;Mean Household Size of Housing Unit: Occupied Housing Unit;average number of occupied dwellings;average number of occupied residences;the average number of dwellings that are occupied;the average number of occupied housing units -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Mean Household Size of Housing Unit: Owner Occupied;Mean Household Size of Owner-Occupied Housing Units;average household size of homes that are owned by the occupants;average household size of owner-occupied housing units;average number of people per household in housing units that are owner-occupied;number of people per household in owner-occupied housing units -Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_RenterOccupied,Mean Household Size of Housing Unit: Renter Occupied;Mean Household Size of Tenant-Occupied Housing Units;average household size in tenant-occupied housing units;average household size of tenant-occupied housing units;number of people per household in tenant-occupied housing units;the average household size of tenant-occupied housing units -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Household Size For Housing Units of Foreign Born Population Born in Mexico;Mean Household Worker Size of Household: Foreign Born, Africa;average household size of foreign-born african workers;average household size of foreign-born workers from africa;mean household size of foreign-born workers from africa;the average household size of foreign-born workers in africa" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Household Size For Housing Units of Foreign Born Population Born in Asia;Mean Household Worker Size of Household: Foreign Born, Asia" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Household Size For Housing Units of Foreign Born Population Born in Caribbean;Mean Household Worker Size of Household: Foreign Born, Caribbean;average household size for foreign-born caribbean households with household workers;average household size of foreign-born caribbeans who are household workers;the average household size of foreign-born caribbean workers;what is the typical household size of foreign-born caribbean workers?" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Household Worker Size of Foreign-Born Population in Central America, Except Mexico;Mean Household Worker Size of Household: Foreign Born, Central America Except Mexico;average number of people in a household of foreign-born central americans, excluding mexico;mean number of people in a household of foreign-born central americans, excluding mexico" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Household Worker Size of Household: Foreign Born, Eastern Asia;Mean of Households of Foreign-Born Workers in Eastern Asia;average number of people in households of foreign-born workers in eastern asia;mean number of people per household of foreign-born workers in eastern asia;the average number of people in a household headed by a foreign-born worker in eastern asia;the average number of people in a household that is headed by a foreign-born worker in eastern asia" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthEurope,"Foreign-Born Population in Europe With Mean Household Worker Size;Mean Household Worker Size of Household: Foreign Born, Europe;the average number of household workers in europe among the foreign-born population;the average number of people who work in a household in europe who were born outside of europe;the mean household worker size of the foreign-born population in europe;the mean number of people who work in a household in europe who were not born in europe" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Average Household Size Of People Foreign-Born In Latin America;Mean Household Worker Size of Household: Foreign Born, Latin America;the average household size of latin american immigrants;the average number of people in a household headed by a latin american immigrant;the average number of people in a household of foreign-born latin americans;the average number of people living in a household with a latin american immigrant" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Household Worker Size of Household For Foreign-Born Population In Mexico;Mean Household Worker Size of Household: Foreign Born, Country/MEX;average household size of foreign-born mexicans;average household size of foreign-born people in mexico;household size of foreign-born people in mexico on average;the average household size of foreign-born people in mexico" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Foreign-Born in North America Mean Household Worker Size;Mean Household Worker Size of Household: Foreign Born, Northamerica;average household size of foreign-born workers in north america;the average household size of foreign-born workers in north america;the average number of people in a household headed by a foreign-born worker in north america;the average number of people in a household with a foreign-born worker in north america" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Household Worker Size for Foreign Born Households in Northern Western Europe;Mean Household Worker Size of Household: Foreign Born, Northern Western Europe;average number of household workers in foreign-born households in northern western europe" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Household Worker Size of Foreign Born Population in Oceania;Mean Household Worker Size of Household: Foreign Born, Oceania;the average number of household workers per foreign-born person in oceania;the average number of people who are employed as household workers in households per foreign-born person in oceania;the average number of people who are employed as household workers per foreign-born person in oceania;the average number of people who work in households per foreign-born person in oceania" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Household Worker Size of Foreign-Born Households in South Central Asia;Mean Household Worker Size of Household: Foreign Born, South Central Asia;the average number of household workers in foreign-born households in south central asia;the average number of people who are employed as household workers in south central asia by foreign-born households;the average number of people who work in households in south central asia that are headed by foreign-born people;the average size of foreign-born households in south central asia that have household workers" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Household Worker Size of Household: Foreign Born, South Eastern Asia;Mean Household Worker Size of Population Foreign-Born In South-Eastern Asia;the average household size of foreign-born workers in southeast asia;the average number of foreign-born workers per 100 households in southeast asia;the average number of foreign-born workers per household in southeast asia;the average number of people in a household with a foreign-born worker in southeast asia" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Household Worker Size Of Foreign Born Population In South America;Mean Household Worker Size of Household: Foreign Born, Southamerica;average household size of foreign-born workers in south america;average number of foreign-born workers per household in south america;household size of foreign-born workers in south america;number of foreign-born workers per household in south america" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born in Southern Eastern Europe Mean Household Worker Size of Household;Mean Household Worker Size of Household: Foreign Born, Southern Eastern Europe;average household size of foreign-born workers in southern eastern europe;mean household size of households with foreign-born workers in southern eastern europe;the average household size of foreign-born workers from southern eastern europe;the average household size of foreign-born workers in southern eastern europe" -Mean_HouseholdWorkerSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Household Worker Size Of Household With Foreign Born Population In Western Asia;Mean Household Worker Size of Household: Foreign Born, Western Asia;average household worker size in western asia for households with foreign-born population;average number of household workers per household in western asia with foreign-born population;average number of household workers per household with foreign-born population in western asia;mean household worker size in western asia for households with foreign-born population" -Mean_Humidity_RelativeHumidity,Mean Humidity: Relative Humidity;Mean Relative Humidity;the amount of moisture in the air;the amount of water vapor in the air;the amount of water vapor in the air relative to the amount that the air could hold at that temperature;the amount of water vapor in the air relative to the saturation point -Mean_IncomeDeficit_Household_FamilyHousehold,"4 family households typically have a deficit in their income;Mean Income Deficit For Family Households;Mean Income Deficit of Household: Family Household;the average deficit in income for family households in the united states;the average deficit in income for family households in the united states, on average;the average income deficit of a family household" -Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold,1 the average income deficit of a married couple family household;2 the amount of money that a married couple family household typically loses each year;Mean Income Deficit For Married Couple Family Households;Mean Income Deficit of Household: Married Couple Family Household;married couple family households typically have a budget deficit;married couple family households typically have a negative income deficit -Mean_IncomeDeficit_Household_SingleMotherFamilyHousehold,Mean Income Deficit For Single Mother Family Households;Mean Income Deficit of Household: Single Mother Family Household;the average amount of money that a single mother family household earns is less than the average amount of money that a household earns;the average amount of money that a single mother family household earns is less than the average amount of money that other households earn;the average amount of money that a single mother household earns is less than the average amount of money that other households earn;the average amount of money that single-mother households earn is less than the average amount of money that other households earn -Mean_Income_Household,Average Income for Households;Average household income;Average income for households;Average income of homes in the region;Average income of households in the area;Mean Income of Household: With Income;Mean income of homes in the area;Mean income of households in the area;Median income of households in the region;The average amount of money a household makes;The average household income;The typical amount of money a household makes;average neighborhood income per household;how much money do households make on average?;how much money does an average household make;mean household wealth;money made per household;what's the average amount of money that households make? -Mean_Income_Household_FamilyHousehold,"Average Income for Family Households;Average income for family households;Mean Income of Household: Family Household, With Income;Mean Income of Household: in a family household with Income;The average household income in a family household with income;how much money do families make, on average?;what's the average amount of money that families make?;what's the average salary for a family?;what's the typical income for a family?" -Mean_Income_Household_MarriedCoupleFamilyHousehold,"Average Income for Married Couple Family Households;Average income for married couple family households;How much money does the average married couple make in the US;How much money does the average married couple make in the US?;Mean Income of Household: Married Couple Family Household, With Income;Mean Income of Household: a Married Couple in a family household with Income;What is the average income of a married couple in the US;What is the typical income of a married couple in the US;What is the usual income of a married couple in the US;how much money do married couples make on average?;what is the average household income for married couples?;what is the average salary for married couples?;what is the typical income for a married couple?" -Mean_Income_Household_NonfamilyHousehold,"Average Income for Nonfamily Households;Average income for nonfamily households;Mean Income of Household: Nonfamily Household, With Income;Mean Income of Household: a Nonfamily Household, With Income;The average income of a non-family household with income;a Nonfamily Household, With Income"" in a colloquial way;a Nonfamily Household, With Income"" without repeating the reformulations or answering the question;how much money do people in nonfamily households make on average?" -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FoodAndDrinksSector,Average inflation in consumer price index by Food and Beverages Sector.;inflation in consumer prices in food and drinks sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FuelAndLightSector,Average inflation in consumer price index by Fuel and Light Sector.;inflation in consumer prices in fuel and light sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_GeneralSector,Average inflation in consumer price index by General Sector.;inflation in consumer prices in general sector -Mean_Inflation_EconomicActivity_ConsumerPriceIndex_UrbanHousingSector,Average inflation in consumer price index by Urban Housing Sector.;inflation in consumer prices in urban housing sector -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth,"Average interval in months since last live birth;Mean Interval Since Last Birth Events;interval between live births;interval since last birth;time between live births, in months;time since last birth" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average interval in months since last live birth where mothers Education is 9 Th To12 Th Grade No Diploma;Monthly Average Interval Since Last Live Birth Among Mothers Without Diplomas;average interval between births for mothers without diplomas;average interval between live births for mothers without diplomas;average number of months between births for mothers without diplomas;average time between births for mothers without diplomas -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average interval in months since last live birth where mothers Race is American Indian Or Alaska Native Alone;Mean Interval Since Last Live Birth Events For American Indian or Alaska Native Mothers;how long do american indian or alaska native mothers go between having children?;how long do american indian or alaska native mothers typically wait to have another child after giving birth?;what is the average interval between births for american indian or alaska native mothers?;what is the average time between births for american indian or alaska native mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAsianIndian,Average interval in months since last live birth where mothers Race is Asian Indian;Mean Interval Since Last Live Birth Events For Asian Indian Mothers;the average amount of time that elapses between one live birth and the next for asian indian women;what is the average interval in months between live births for asian indian mothers?;what is the average time between births for asian indian mothers?;what is the typical interval in months between live births for asian indian mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherAssociatesDegree,Average Interval In Months Since Last Live Birth For Mothers With Associates Degree;Average interval in months since last live birth where mothers Education is Associates Degree;average interval in months between live births for mothers with an associate degree;average time between births for mothers with an associate degree;what is the average interval between live births for mothers with an associate's degree;what is the average time between live births for mothers with an associate's degree -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Interval in Months Since Last Live Births of Mothers with Bachelor's Degree;Average interval in months since last live birth where mothers Education is Bachelors Degree;average time between births for mothers with a bachelor's degree;how many months do mothers with a bachelor's degree typically wait between births;what is the average interval in months between live births for mothers with a bachelor's degree;what is the average time between births for mothers with a bachelor's degree -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average Interval in Months Since Last Live Birth of African American Mothers;Average interval in months since last live birth where mothers Race is Black Or African American Alone;the average interval between pregnancies for african american women;the average length of time african american women wait to have another child;the average number of months between live births for african american mothers;the average time it takes african american mothers to have another child after giving birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherChinese,Average Interval in Months Since Last Live Birth For Chinese Mothers;Average interval in months since last live birth where mothers Race is Chinese;the average interval between a chinese mother's live births;the average number of months between a chinese mother's last live birth and her next pregnancy;the average time it takes a chinese mother to conceive after giving birth;the average time it takes a chinese mother to have another child after giving birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average Interval in Months Since Last Live Birth For Mothers Whose Education is Doctorate Degree And Professional School Degrees;Average interval in months since last live birth where mothers Education is Doctorate Degree& Professional School Degree;average interval in months between live births for mothers with doctorate degrees and professional school degrees;average number of months it takes for mothers with doctorate degrees and professional school degrees to have another child;average time between births for mothers with doctorate degrees and professional school degrees;the average interval between births for mothers with doctorate degrees and professional school degrees -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,"Average interval in Months Since Last Live Births For Mothers With CDC;Average interval in months since last live birth where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;average number of months between live births for mothers with cdc;average time between live births for mothers with cdc;the average interval between a mother's last live birth and her next pregnancy, as reported by the cdc;the average number of months between a mother's last live birth and her next pregnancy, according to the cdc" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average Interval in Months Since Last Live Birth of Mothers with Unknown Ethnicity;Average interval in months since last live birth where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;how long do mothers of unknown ethnicity wait to have another child after giving birth;the average interval between live births for mothers of unknown ethnicity;the average number of months between births for mothers of unknown ethnicity;the average time between births for mothers of unknown ethnicity -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherFilipino,1 the average number of months between a filipino mother's last live birth and her next live birth;2 the average time it takes a filipino mother to have another child after giving birth;3 the average interval between live births for filipino mothers;4 the average time between pregnancies for filipino mothers;Average Interval in Months Since Last Live Birth of Filipino Mothers;Average interval in months since last live birth where mothers Race is Filipino -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherForeignBorn,Average Interval in Months Since Last Live Birth By Foreign-Born Mothers;Average interval in months since last live birth where mothers Nativity is USC_ Foreign Born;what is the average interval in months since last live birth by foreign-born mothers?;what is the average length of time between births for foreign-born mothers?;what is the average number of months between births for foreign-born mothers?;what is the average time between births for foreign-born mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Interval in Months Since Last Live Birth Among Guamanian Or Chamorro Mothers;Average interval in months since last live birth where mothers Race is Guamanian Or Chamorro;average interval in months between live births for guamanian or chamorro mothers;average number of months between live births for guamanian or chamorro mothers;average time between births for guamanian or chamorro mothers;average time it takes for a guamanian or chamorro mother to have another child -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"Average Interval in Months Since Last Live Birth of Mothers with High School Graduates Ged or Alternative;Average interval in months since last live birth where mothers Education is High School Graduate Ged Or Alternative;average time between births for mothers with a high school diploma, ged, or equivalent;what is the average interval in months between live births for mothers with a high school diploma or ged?;what is the average time between live births for mothers with a high school diploma or ged?;what is the typical interval in months between live births for mothers with a high school diploma or ged?" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average Interval in Months Since Last Live Birth For Hispanic Mothers;Average interval in months since last live birth where mothers Ethnicity is Hispanic Or Latino;the average time it takes a hispanic mother to have another child after giving birth;what is the average interval between live births for hispanic mothers?;what is the average interval in months between live births for hispanic mothers?;what is the average time between live births for hispanic mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherJapanese,Average Interval in Months Since Last Pregnancies outcome Not Live Birth For Japanese Mothers;Average interval in months since last live birth where mothers Race is Japanese;average interval in months between pregnancies for japanese mothers who did not have a baby;average number of months between pregnancies for japanese mothers who did not have a live birth;average time between pregnancies for japanese mothers who did not give birth;average time lapse in months between pregnancies for japanese mothers who did not have a live birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherKorean,Average interval in months since last live birth where mothers Race is Korean;Monthly Average Intervals of Live Births Among Korean Mothers;the average interval between live births for korean mothers;the average length of time between live births for korean mothers;the average number of months between live births for korean mothers;the average time it takes for korean mothers to have another live birth after giving birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherLessThan9ThGrade,"Average Interval in Months Since Last Live Birth For Mothers whose Education is Less Than 9Th Grade;Average interval in months since last live birth where mothers Education is Less Than9 Th Grade;average interval in months between live births for mothers with less than a high school education;average months between live births for mothers with less than a high school education;average time between live births for mothers with less than a high school education;the average number of months between a mother's last live birth and her next live birth, for mothers with less than a ninth-grade education" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherMastersDegree,"Average interval in months since last live birth where mothers Education is Masters Degree;Monthly Average Interval Since Last Live Birth Among Mothers with a Masters Degree;average interval between live births for mothers with a master's degree;average interval between live births for mothers with a master's degree, in months;average number of months between live births for mothers with a master's degree;average time between births for mothers with a master's degree" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNative,Average Interval in Months Since Last Live Birth Where Mothers Nativity is USC;Average interval in months since last live birth where mothers Nativity is USC_ Native;average interval in months since last live birth where mother's nativity is usc -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativeHawaiian,Average Interval in Months Since Last Live Birth For Native Hawaiian Mothers;Average interval in months since last live birth where mothers Race is Native Hawaiian;the average interval between live births for native hawaiian mothers;the average number of months between live births for native hawaiian mothers;the average spacing between live births for native hawaiian mothers;the average time between live births for native hawaiian mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,"Average Interval in Months Since Last Live Birth Among Mothers With Unstated Nativity;Average interval in months since last live birth where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;how long did it take mothers with unstated nativity to have another child after their last live birth?;on average, how many months after a live birth did mothers with unstated nativity have another child?;what is the average interval in months between a mother's last live birth and her next live birth if her nativity is unstated?;what is the average time interval between live births for mothers with unstated nativity?" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average Interval in Months Since Last Live Birth Among Non-Hispanic Mothers;Average interval in months since last live birth where mothers Ethnicity is Not Hispanic Or Latino;the average interval between births for non-hispanic mothers;the average time between live births for non-hispanic women;what is the average interval in months since last live birth among non-hispanic mothers?;what is the average time between births for non-hispanic mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherNowMarried,Average Interval in Months Since Last Live Birth of Married Mothers;Average interval in months since last live birth where mothers Marital Status is Now Married;average interval between live births for married mothers;average number of months between a married mother's last live birth and her next pregnancy;average time between pregnancies for married mothers;the average number of months between a married woman's last live birth and her next live birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherAsian,"Average Interval in Months Since Last Live Birth Among Asian Mothers;Average interval in months since last live birth where mothers Race is Other Asian;the average interval between births, among asian mothers;the average interval between live births for asian mothers;the average length of time between births for asian mothers;the average number of months between a mother's last live birth and her next pregnancy, among asian mothers" -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average Interval in Months Since Last Live Birth Among Other Pacific Islander Mothers;Average interval in months since last live birth where mothers Race is Other Pacific Islander;the average interval between pregnancies for other pacific islander mothers;the average length of time between live births for other pacific islander mothers;the average number of months between live births for other pacific islander mothers;the average time between births for other pacific islander mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSamoan,Average Interval in Months Since Last Live Birth For Samoan Mothers;Average interval in months since last live birth where mothers Race is Samoan;the average interval between births for samoan mothers;the average number of months between a samoan mother's last live birth and her next live birth;the average number of months between a samoan mother's live births;the average time it takes a samoan mother to have another child after giving birth -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average Interval in Months Since Last Live Birth of Mothers with Some College Education or Without Degrees;Average interval in months since last live birth where mothers Education is Some College No Degree;average interval between live births for mothers with some college education or without degrees;average number of months between births for mothers with some college education or without degrees;average time between births for mothers with some college education or without degrees;what is the average time it takes for a mother with some college education or without degrees to conceive again? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average interval in months since last live birth where mothers Race is Two Or More Races;Monthly Average Intervals of Live Births For Multiracial Mothers;average time between live births for multiracial mothers;the average interval between live births for multiracial mothers;the average length of time between live births for multiracial mothers;the average number of months between live births for multiracial mothers -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherUnmarried,Average Interval in Months Since Last Live Birth For Unmarried Mothers;Average interval in months since last live birth where mothers Marital Status is Unmarried;average interval between births for unmarried women;average time between live births for single mothers;average time between live births for unmarried mothers;average time between pregnancies for unmarried women -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherVietnamese,Average Interval in Months Since Last Live Births For Vietnamese Mothers;Average interval in months since last live birth where mothers Race is Vietnamese;how long do vietnamese mothers wait between births?;what is the average interval in months between live births for vietnamese mothers?;what is the average number of months between live births for vietnamese mothers?;what is the average time between live births for vietnamese mothers? -Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth_MotherWhiteAlone,Average Interval in Months Since Last Live Birth of White Mothers;Average interval in months since last live birth where mothers Race is White Alone;the average interval in months between live births for white mothers;the average number of months between live births for white mothers;the average time between live births for white mothers;the average time it takes white mothers to have another child -Mean_LmpGestationalAge_BirthEvent_LiveBirth,Average LMP Gestational Age in weeks;LMP Gestation Live Birth Events;average gestational age at last menstrual period (lmp) in weeks;average gestational age based on last menstrual period (lmp) in weeks;average gestational age in weeks from last menstrual period (lmp);average weeks of gestation at last menstrual period (lmp) -Mean_LmpGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,"Average LMP Gestational Age in Weeks of Mothers Without Diplomas;Average LMP Gestational Age in weeks where mothers Education is 9 Th To12 Th Grade No Diploma;here are five different ways of saying ""average lmp gestational age in weeks of mothers without diplomas"" in a colloquial way:" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average LMP Gestational Age in Weeks For American Indian Or Alaska Native Mothers;Average LMP Gestational Age in weeks where mothers Race is American Indian Or Alaska Native Alone;what is the average gestational age of american indian or alaska native mothers at lmp? -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,Average LMP Gestational Age in weeks where mothers Race is Asian Indian;Average Last Month Of Period Gestational Age in weeks of Asian Indian Mothers;average gestational age of asian indian mothers at last menstrual period;average gestational age of asian indian mothers at last month of period;average gestational age of asian indian mothers at lmp;average gestational age of asian indian mothers at lmp in weeks -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,"Average LMP Gestational Age in Weeks of Asian Or Pacific Islander Mothers;Average LMP Gestational Age in weeks where mothers Race is Asian Or Pacific Islander;the average gestational age of asian or pacific islander mothers at lmp is how many weeks?;what is the average gestational age of asian or pacific islander mothers at lmp?;what is the average lmp gestational age of asian or pacific islander mothers;what is the average lmp gestational age of asian or pacific islander mothers, in weeks" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average LMP Gestational Age in weeks where mothers Education is Associates Degree;LMP Gestation Live Birth Events For Mothers With Associate Degree;average gestational age at last menstrual period (lmp) by maternal education level: associates degree;average gestational age at lmp by maternal education level: associates degree;average gestational age at lmp for mothers with an associate's degree;average weeks pregnant at lmp for mothers with an associate's degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average LMP Gestational Age in Weeks Where Mothers Education is Bachelors Degree;Average LMP Gestational Age in weeks where mothers Education is Bachelors Degree;average gestational age at lmp for mothers with a bachelor's degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average LMP Gestational Age in Weeks For African American Mothers;Average LMP Gestational Age in weeks where mothers Race is Black Or African American Alone;the average gestational age at lmp for african american mothers;the average gestational age of african american mothers at lmp;the average number of weeks pregnant african american mothers are at lmp;what is the average lmp gestational age for african american mothers? -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherChinese,Average LMP Gestational Age in Weeks By Chinese Mothers;Average LMP Gestational Age in weeks where mothers Race is Chinese;the average number of weeks a chinese mother is pregnant at lmp is -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average LMP Gestational Age in Weeks in Doctorate And Professional School Degree Mothers;Average LMP Gestational Age in weeks where mothers Education is Doctorate Degree& Professional School Degree;the average gestational age at lmp in mothers with doctorate and professional school degrees;the average gestational age of mothers with doctorate and professional school degrees at lmp;the average number of weeks pregnant at lmp in mothers with doctorate and professional school degrees;the average number of weeks pregnant mothers with doctorate and professional school degrees were at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average LMP Gestational Age in Weeks Among Mothers With CDC Education;Average LMP Gestational Age in weeks where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average gestational age at lmp among mothers who have received education from the centers for disease control and prevention;the average gestational age at lmp among mothers with cdc education;the average number of weeks pregnant at lmp among mothers with cdc education -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average LMP Gestational Age in Weeks Where Mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;Average LMP Gestational Age in weeks where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;average gestational age at lmp for mothers of unknown or unstated ethnicity;average gestational age at lmp for mothers with unknown or unstated ethnicity;average gestational age at lmp where mother's ethnicity is cdc_ ethnicity unknown or not stated -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherFilipino,"Average LMP Gestational Age in Weeks of Filipino Mothers;Average LMP Gestational Age in weeks where mothers Race is Filipino;the average gestational age of filipino mothers at the time of lmp;the average gestational age of filipino mothers at the time of their last menstrual period, in weeks;the average gestational age of filipino mothers at the time of their lmp;the average number of weeks that filipino mothers are pregnant at the time of lmp" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,Average LMP Gestational Age in weeks where mothers Nativity is USC_ Foreign Born;LMP Gestation Live Birth Events For Foreign Born Mothers;average gestational age at lmp for foreign-born mothers;average gestational age at lmp for mothers who are not us citizens;average gestational age at lmp for mothers who were born outside the united states -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average LMP Gestational Age in weeks where mothers Race is Guamanian Or Chamorro;LMP Gestation Live Birth Events For Guamanian Mothers;the average gestational age at lmp for guamanian or chamorro mothers;the average gestational age at lmp for women of guamanian or chamorro descent;the average number of weeks pregnant at lmp for guamanian or chamorro mothers;the average number of weeks pregnant at lmp for women of guamanian or chamorro descent -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"Average LMP Gestational Age in Weeks Where Mothers Education is High School Graduate Ged Or Alternative;Average LMP Gestational Age in weeks where mothers Education is High School Graduate Ged Or Alternative;average gestational age at lmp for mothers who have completed high school, have a ged, or have an equivalent credential;average gestational age at lmp for mothers with a high school diploma, ged, or equivalent;average gestational age at lmp where mother has high school diploma, ged, or equivalent;the average gestational age at lmp (last menstrual period) in weeks for mothers with a high school diploma, ged, or alternative education" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average LMP Gestational Age in Weeks For Hispanic Mothers;Average LMP Gestational Age in weeks where mothers Ethnicity is Hispanic Or Latino;the average gestational age at lmp for hispanic mothers;the average gestational age of hispanic mothers at lmp;the average number of weeks of gestation at lmp for hispanic mothers;the average number of weeks that hispanic mothers are pregnant at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherJapanese,"Average LMP Gestational Age in Weeks of Japanese Mothers;Average LMP Gestational Age in weeks where mothers Race is Japanese;the average gestational age of japanese mothers at lmp;the average gestational age of japanese mothers at the time of their last menstrual period (lmp);what is the average gestational age of japanese mothers at the time of their last menstrual period, in weeks;what is the average lmp gestational age of japanese mothers" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherKorean,Average LMP Gestational Age in Weeks For Korean Mothers;Average LMP Gestational Age in weeks where mothers Race is Korean;the average gestational age at lmp for korean mothers;the average gestational age at lmp for korean mothers is 394 weeks;the average gestational age of korean mothers at lmp;the average number of weeks pregnant korean mothers are at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average LMP Gestational Age in Weeks Where Mothers' Education is Less Than 9th Grade;Average LMP Gestational Age in weeks where mothers Education is Less Than9 Th Grade;average gestational age at lmp for mothers who have not completed 9th grade;average gestational age at lmp for mothers with less than a 9th grade education;average gestational age at lmp where mothers have less than a 9th grade education;the average gestational age at lmp for mothers with less than a 9th grade education -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,Average LMP Gestational Age in Weeks For Mothers With Masters Degree;Average LMP Gestational Age in weeks where mothers Education is Masters Degree;average lmp (last menstrual period) gestational age in weeks for mothers with a master's degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNative,Average LMP Gestational Age In Weeks For Mothers Nativity;Average LMP Gestational Age in weeks where mothers Nativity is USC_ Native -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average LMP Gestational Age in Weeks For Native Hawaiian Mothers;Average LMP Gestational Age in weeks where mothers Race is Native Hawaiian;the average gestational age at lmp for native hawaiian mothers;the average gestational age of native hawaiian mothers at lmp;the average number of weeks native hawaiian mothers are pregnant at lmp;the average number of weeks pregnant native hawaiian mothers are at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average LMP Gestational Age in Weeks For Mothers Of Unstated Nativity;Average LMP Gestational Age in weeks where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;average gestational age at delivery for mothers of unstated nativity;average gestational age at last menstrual period for mothers of unstated nativity;average gestational age at lmp for mothers of unknown nativity;average gestational age at lmp for mothers of unstated nativity -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average LMP Gestational Age in Weeks of Non-Hispanic Mothers;Average LMP Gestational Age in weeks where mothers Ethnicity is Not Hispanic Or Latino;the average gestational age of non-hispanic mothers at lmp;the average gestational age of non-hispanic mothers at the time of their lmp;the average number of weeks pregnant non-hispanic mothers are at lmp;the average number of weeks pregnant non-hispanic mothers are at the time of their lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,Average LMP Gestational Age in weeks For Married Mothers;Average LMP Gestational Age in weeks where mothers Marital Status is Now Married;the average gestational age of married mothers at lmp;the average number of weeks pregnant married mothers are at lmp;the average time married mothers are pregnant at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,Average LMP Gestational Age In Weeks By Asian Mothers;Average LMP Gestational Age in weeks where mothers Race is Other Asian;the average gestational age at lmp for asian mothers;the average gestational age of asian mothers at lmp;the average number of weeks pregnant asian mothers are at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average LMP Gestational Age in Weeks Where Mothers Race is Other Pacific Islander;Average LMP Gestational Age in weeks where mothers Race is Other Pacific Islander;average number of weeks pregnant at lmp for other pacific islander mothers;the average gestational age at lmp for mothers of other pacific islander race;the average gestational age of mothers of other pacific islander race at lmp;the average number of weeks pregnant at lmp for mothers of other pacific islander race -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSamoan,Average LMP Gestational Age in weeks where mothers Race is Samoan;Samoan Mothers Average LMP Gestational Age in weeks;the average gestational age at lmp for samoan mothers;the average gestational age of samoan mothers at lmp;the average number of weeks of gestation at lmp for samoan mothers;the average number of weeks that samoan mothers carry their babies at lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average LMP Gestational Age in Weeks of Mothers With Some College Education Without a Degree;Average LMP Gestational Age in weeks where mothers Education is Some College No Degree -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average LMP Gestational Age in weeks where mothers Race is Two Or More Races;Average Last Month Of Period Gestational Age in weeks of Multiracial Mothers;average gestational age at last menstrual period (lmp) in weeks for multiracial mothers;average gestational age at last menstrual period (lmp) in weeks of multiracial mothers;average gestational age at lmp for mothers of multiple races;average gestational age at lmp for women of multiple races -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,"Average LMP Gestational Age in Weeks For Unmarried Mothers;Average LMP Gestational Age in weeks where mothers Marital Status is Unmarried;sure, here are 5 different ways of saying ""average lmp gestational age in weeks for unmarried mothers"":" -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,Average LMP Gestational Age in Weeks For Vietnamese Mothers;Average LMP Gestational Age in weeks where mothers Race is Vietnamese;average gestational age at lmp for vietnamese mothers;average gestational age for vietnamese mothers at lmp;average gestational age of vietnamese mothers at lmp;average gestational age of vietnamese mothers based on lmp -Mean_LmpGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average LMP Gestational Age in Weeks Of White Mothers;Average LMP Gestational Age in weeks where mothers Race is White Alone;the average gestational age of white mothers at lmp;the average gestational age of white mothers at the time of their lmp;the average number of weeks of gestation for white mothers at lmp;the average number of weeks that white mothers are pregnant at the time of their lmp -Mean_MarketValue_Farm_AgriculturalProducts,Mean Market Value of Agricultural Farms;Mean Market Value of Farm: Agricultural Products;Mean market value of agricultural products produced on farm;mean market value of agricultural farms;the median price of an agricultural property -Mean_MarketValue_Farm_LandAndBuildings,Average Market Value of Land and Buildings on a Farm;Average market value of land and buildings on a farm;Mean Market Value of Farm: Land And Buildings;The average price of farmland;The average value of farmland and farm buildings;The value of farmland and farm buildings;The value of land and buildings used for farming;mean market value of land and buildings of farms;the average cost of farmland and buildings in the united states;the average price of farmland and buildings in the united states;the average value of farmland and buildings in the united states;the average value of land and buildings on farms;the average worth of farmland and buildings in the united states -Mean_MarketValue_Farm_MachineryAndEquipment,Mean Market Value of Farm Machinery and Equipment.;Mean Market Value of Farm: Machinery And Equipment;Mean market value of farm machinery and equipment.;Mean market value of machinery and equipment on farm -Mean_MaxTemperature,Mean Maximum Temperature;Mean maximum temperature;the average high temperature;the average temperature at its highest point;the average temperature at its peak -Mean_MaxTemperature_Forest,Mean Maximum Temperature in Forest;Mean maximum temperature in forested areas;the average high temperature in forests;the highest temperature in forests;the hottest temperature in forests;the peak temperature in wooded areas -Mean_MothersAge_BirthEvent_LiveBirth,Average mother's age in years;Mean Mothers Age For Live Birth;how old are mothers on average?;the average age of a mother;the average age of mothers at childbirth;the average age of mothers at the time of their child's birth -Mean_MothersAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average Mother's Age in Years where Mothers Education is 9th To12th Grade No Diploma;Average mother's age in years where mothers Education is 9 Th To12 Th Grade No Diploma;average age of mothers who have completed 9-12th grade but do not have a diploma;average age of mothers who have completed 9th to 12th grade but do not have a high school diploma;the average age of mothers who have completed 9th to 12th grade but do not have a diploma;the average age of mothers with 9th to 12th grade education and no diploma -Mean_MothersAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average Age in Years of American Indian or Alaska Native Mothers;Average mother's age in years where mothers Race is American Indian Or Alaska Native Alone;the average age at which american indian or alaska native women become mothers;the average age at which american indian or alaska native women have their first child;the average age of american indian or alaska native mothers;the average age of motherhood for american indian or alaska native women -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianIndian,Average Mother's Age in Years Where Mothers Race is Asian Indian;Average mother's age in years where mothers Race is Asian Indian;average age of asian indian mothers;average age of asian indian women who are mothers;average age of mothers who are asian indian;average age of mothers with asian indian ethnicity -Mean_MothersAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average Age in Years of Asian Or Pacific Islander Mothers;Average mother's age in years where mothers Race is Asian Or Pacific Islander;the average age at which asian or pacific islander women become mothers;the average age at which asian or pacific islander women have their first child;the average age of asian or pacific islander mothers;the average age of first-time mothers of asian or pacific islander descent -Mean_MothersAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average Age of Mothers With Associates Degrees;Average mother's age in years where mothers Education is Associates Degree;the average age at which women with associate's degrees become mothers;the average age of mothers who have completed an associate's degree;the average age of mothers with associate's degrees;the average age of women who have associate's degrees and have children -Mean_MothersAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Age Of Mothers With Bachelor's Degrees;Average mother's age in years where mothers Education is Bachelors Degree;the average age at which women with bachelor's degrees have children;the average age of first-time mothers with bachelor's degrees;the average age of mothers who have completed a bachelor's degree;the average age of mothers with bachelor's degrees -Mean_MothersAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average Age Of African American Mothers;Average mother's age in years where mothers Race is Black Or African American Alone;the average age at which african american women become mothers;the average age of african american mothers;the average age of african american women who have children;the average age of first-time mothers among african americans -Mean_MothersAge_BirthEvent_LiveBirth_MotherChinese,Average Mother's Age In Years For Chinese Mothers;Average mother's age in years where mothers Race is Chinese;the average age at which chinese women become mothers;the average age of chinese mothers;the average age of first-time mothers in china;the average age of mothers in china -Mean_MothersAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average Age in Years of Mothers With Doctorate Degree And Professional Degrees;Average mother's age in years where mothers Education is Doctorate Degree& Professional School Degree;the average age of mothers who are also doctorate degree holders and professional degree holders;the average age of mothers who have doctorate degrees and professional degrees;the average age of mothers with doctorate degrees and professional degrees;the average age of women with doctorate degrees and professional degrees who are mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average Mother's Age in Years For Mothers Whose Education Attainment is Unstated;Average mother's age in years where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average age of mothers whose education is not stated;the average age of mothers whose education level is unstated;the average age of mothers with unknown educational attainment;the average age of mothers with unstated education -Mean_MothersAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average Mother's Age in Years Where Mothers Ethnicity is CDC Ethnicity Unknown;Average mother's age in years where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;average age of mothers whose ethnicity is not known to the cdc;average age of mothers whose ethnicity is not reported by the cdc;average age of mothers whose ethnicity is unknown by the cdc;average age of mothers with unknown ethnicity -Mean_MothersAge_BirthEvent_LiveBirth_MotherFilipino,Average Age of Filipino Mothers;Average mother's age in years where mothers Race is Filipino;the age at which filipino women are most likely to have children;the age when most filipino women become mothers;the average age at which filipino women have their first child;the typical age of filipino mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherForeignBorn,Average Mother's Age in Years of Foreign-Born Mothers;Average mother's age in years where mothers Nativity is USC_ Foreign Born;the average age of foreign-born mothers;the average age of foreign-born mothers when they give birth;the average age of mothers who were born in another country;the average age of mothers who were born in another country when they give birth -Mean_MothersAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Age of Guamanian Mothers in Years;Average mother's age in years where mothers Race is Guamanian Or Chamorro;guamanian mothers' average age in years;how old are guamanian mothers on average;the average age at which guamanian women become mothers;the average age of a guamanian mother -Mean_MothersAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average Mother's Age in Years where Mothers Education is High School Graduate;Average mother's age in years where mothers Education is High School Graduate Ged Or Alternative;average age of mothers who are high school graduates;average age of mothers who have a high school education;average age of mothers who have completed high school;average age of mothers with a high school diploma -Mean_MothersAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average mother's age in years where mothers Ethnicity is Hispanic Or Latino;Hispanic Mothers with Average Age in Years;the average age of hispanic women who become mothers;the average age of hispanic women who have become mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherJapanese,Average Mother's Age in Years Where Mothers Race is Japanese;Average mother's age in years where mothers Race is Japanese;average age of japanese mothers;average age of mothers of japanese descent;average age of mothers who are japanese;average age of mothers who identify as japanese -Mean_MothersAge_BirthEvent_LiveBirth_MotherKorean,Average Mother's Age in Years For Korean Mothers;Average mother's age in years where mothers Race is Korean;the average age at which korean women become mothers;the average age of first-time mothers in korea;the average age of korean mothers at childbirth;the average age of korean mothers when they give birth -Mean_MothersAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average Age in Years of Mothers with Education Level Less Than 9th Grade;Average Age in Years of Mothers with Education Level Less Than 9th Grades;Average mother's age in years where mothers Education is Less Than9 Th Grade;the average age of mothers with less than a 9th grade education;what's the average age of mothers who have less than a high school diploma?;what's the average age of mothers who have not completed 9th grade?;what's the average age of mothers with less than a 9th grade education? -Mean_MothersAge_BirthEvent_LiveBirth_MotherMastersDegree,Average mother's age in years where mothers Education is Masters Degree;Mothers with Masters Degree Average Ages in Years;average age of mothers with a master's degree;the average age of mothers who have a master's degree;the average age of mothers who have completed a master's degree;the average age of women with a master's degree who are mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNative,Average Age in Years of USC Native Mothers;Average mother's age in years where mothers Nativity is USC_ Native;the average age of usc native mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average Age in Years of Native Hawaiian Mothers;Average mother's age in years where mothers Race is Native Hawaiian;how old are native hawaiian mothers on average;the average age of native hawaiian mothers;the average age of native hawaiian women who have become mothers;what is the average age of native hawaiian mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average Mother's Age in Years of Nativity Unknown Mothers;Average mother's age in years where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;the average age of mothers who have not disclosed their nativity;the average age of mothers who have not disclosed their place of birth;the average age of mothers whose place of birth is unknown;the average age of mothers with unknown nativity -Mean_MothersAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average Age in Years of Hispanic Mothers;Average mother's age in years where mothers Ethnicity is Not Hispanic Or Latino;the average age at which hispanic women become mothers;the average age of hispanic mothers;the average age of hispanic women who are mothers;the average age of hispanic women who have children -Mean_MothersAge_BirthEvent_LiveBirth_MotherNowMarried,Average Mother's Age in Years For Mothers Marital Status is Now Married;Average mother's age in years where mothers Marital Status is Now Married;average age of married mothers;average age of mothers who are currently married;average age of mothers who are now married;average age of mothers with a current marital status of married -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherAsian,Average Asian Mother's Age In Years For Mothers;Average mother's age in years where mothers Race is Other Asian;the average age at which asian women become mothers;the average age of asian mothers;the average age of asian mothers when they give birth;the average age of first-time mothers in asia -Mean_MothersAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average Age in Years of Other Pacific Islander Mothers;Average mother's age in years where mothers Race is Other Pacific Islander;the average age at which other pacific islander women have children;the average age of other pacific islander mothers;the average age of other pacific islander women who become mothers;the average age of other pacific islander women who give birth -Mean_MothersAge_BirthEvent_LiveBirth_MotherSamoan,Average Age in years of Samoan Mothers;Average mother's age in years where mothers Race is Samoan;how old are samoan mothers on average?;what is the average age at which samoan women become mothers?;what is the average age of a samoan mother?;what is the average age of first-time mothers in samoa? -Mean_MothersAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average Ages of College-Educated Mothers Without Degrees;Average mother's age in years where mothers Education is Some College No Degree;the average age of college-educated mothers without degrees;the average age of mothers who have a college education but no degree;the average age of mothers who have attended college but do not have a degree;the average age of mothers who have some college but no degree -Mean_MothersAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average mother's age in years where mothers Race is Two Or More Races;Mean Live Births For Multiracial Mothers;the average age of mothers who are mixed race;the average age of mothers who identify as two or more races;the average age of mothers who identify with more than one race;the average age of mothers who identify with two or more racial groups -Mean_MothersAge_BirthEvent_LiveBirth_MotherUnmarried,Average Mother's Age in Years For Unmarried Mothers;Average mother's age in years where mothers Marital Status is Unmarried;average age of mothers who are not in a relationship;average age of mothers who are not married;average age of single mothers;average age of unmarried mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherVietnamese,Average Age Of Vietnamese Mothers;Average mother's age in years where mothers Race is Vietnamese;the average age at which vietnamese women have children;the average age of first-time mothers in vietnam;the average age of mothers in vietnam;the average age of vietnamese mothers -Mean_MothersAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average Mother's Age in Years Where Mothers Race is White;Average mother's age in years where mothers Race is White Alone;average age of white mothers;the average age of white mothers at the time of their child's birth;the average age of white mothers when they have their first child;the average age of white women who become mothers -Mean_NetMeasure_Income_Farm,1 The average amount of money that farmers make;Average net income earned by a farm;Mean Income of Farm;Mean Income of Farm (Net Measure);The amount of money that farmers make on average;The average amount of money earned by farmers;The average amount of money that farmers make;The typical income of a farmer;mean income of farm -Mean_OeGestationalAge_BirthEvent_LiveBirth,Average OE Gestational Age in weeks;Mean Gestational Age For Live Births;average gestational age;the average number of weeks of gestation for an uncomplicated pregnancy -Mean_OeGestationalAge_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average OE Gestational Age in Weeks of Mothers Without Diplomas;Average OE Gestational Age in weeks where mothers Education is 9 Th To12 Th Grade No Diploma;average gestational age at birth for mothers without diplomas;the average gestation period for mothers without diplomas;the average gestational age of babies born to mothers without diplomas;the average number of weeks that mothers without diplomas carry their babies to term -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average OE Gestational Age in weeks of American Indian or Alaska Native Mothers;Average OE Gestational Age in weeks where mothers Race is American Indian Or Alaska Native Alone;how many weeks pregnant are american indian or alaska native mothers on average;the average gestation period for american indian or alaska native mothers;the average gestational age of american indian or alaska native mothers;the average length of pregnancy for american indian or alaska native mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianIndian,Average OE Gestational Age in weeks where mothers Race is Asian Indian;Mean Gestational Age For Live Births For Asian Indian Mothers;average gestational age for asian indian babies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAsianOrPacificIslander,Average OE Gestational Age in Weeks Among Asian Mothers;Average OE Gestational Age in weeks where mothers Race is Asian Or Pacific Islander;the average gestation period for asian mothers;the average gestational age at birth for asian mothers is 40 weeks;the average gestational age of asian babies at birth;the average gestational age of asian mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherAssociatesDegree,Average OE Gestational Age in Weeks of Mothers With Associates Degree;Average OE Gestational Age in weeks where mothers Education is Associates Degree;average gestational age at birth for mothers with an associate's degree;average number of weeks pregnant at birth for mothers with an associate's degree;the average gestation period of mothers with an associate's degree;the average number of weeks that mothers with an associate's degree carry their babies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBachelorsDegree,Average OE Gestational Age In Weeks Among Mothers with Bachelor's Degree;Average OE Gestational Age in weeks where mothers Education is Bachelors Degree;average gestation period for mothers with a bachelor's degree;average gestational age at birth for mothers with a bachelor's degree;the average gestation period for babies born to mothers with a bachelor's degree;the average gestational age of babies born to mothers with a bachelor's degree -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,Average OE Gestational Age In Weeks Among African American Mothers;Average OE Gestational Age in weeks where mothers Race is Black Or African American Alone;the average gestation period for african american mothers;the average gestational age of african american babies at birth;what is the average gestation period for african american mothers?;what is the average gestational age of african american mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherChinese,Average OE Gestational Age in Weeks By Chinese Mothers;Average OE Gestational Age in weeks where mothers Race is Chinese;average gestation period for chinese mothers;average gestational age at birth for chinese mothers;the average gestation period of chinese mothers;the average gestational age at delivery for chinese mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average OE Gestational Age in Weeks of Mothers with Doctorate Degrees and Professional School Degrees;Average OE Gestational Age in weeks where mothers Education is Doctorate Degree& Professional School Degree;average gestation period for mothers with doctorate and professional school degrees;average gestation period for mothers with doctorate degrees and professional school degrees;average gestational age at birth for mothers with doctorate degrees and professional school degrees;average gestational age of mothers with doctorate and professional school degrees -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average OE Gestational Age in Weeks For Mothers Educational Attainment is Unstated;Average OE Gestational Age in weeks where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average gestational age in weeks for mothers with an unspecified educational attainment is unknown;the average gestational age in weeks for mothers with unknown educational attainment is not stated;the average gestational period for mothers with unknown educational attainment is not documented;the average number of weeks of gestation for mothers with unknown educational attainment is not known -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average OE Gestational Age in weeks where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;Gestational Age in Weeks Among Mothers Of Unstated Ethnicity;average gestational age at birth for mothers of unstated ethnicity;average gestational age for babies born to mothers of unstated ethnicity;average gestational age of babies born to mothers of unstated ethnicity;average number of weeks pregnant when mothers of unstated ethnicity give birth -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherFilipino,Average OE Gestational Age in weeks where mothers Race is Filipino;Mean Gestational Age For Filipino Mothers;average gestational age for filipino pregnancies;average gestational age of filipino pregnancies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherForeignBorn,Average OE Gestational Age in weeks where mothers Nativity is USC_ Foreign Born;Foreign-Born Mothers with Average OE Gestational Age in Weeks;average weeks of gestation for foreign-born mothers;gestational age at birth for foreign-born mothers;the average gestation period of foreign-born mothers;the average number of weeks that foreign-born mothers carry their pregnancies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average OE Gestational Age in weeks where mothers Race is Guamanian Or Chamorro;Average Of Gestational Age In Weeks for Guamanian Mothers;the average gestation period for guamanian mothers;the average gestational age of guamanian mothers;the average number of weeks that a guamanian mother carries her baby;the average time that a guamanian mother is pregnant -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average OE Gestational Age in Weeks For Mothers Who Are High School Graduates;Average OE Gestational Age in weeks where mothers Education is High School Graduate Ged Or Alternative;the average gestation period for babies born to mothers with a high school education;the average gestational age of babies born to mothers who have graduated from high school;the average gestational age of mothers who are high school graduates;the average number of weeks that mothers who are high school graduates carry their babies to term -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average OE Gestational Age In Weeks Of Hispanic Mothers;Average OE Gestational Age in weeks where mothers Ethnicity is Hispanic Or Latino;the average gestation period for hispanic mothers;the average gestation period for hispanic women;the average gestational age of hispanic mothers;what is the average gestational age of hispanic mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherJapanese,"1 what is the average gestational age of japanese mothers?;Average OE Gestational Age in Weeks Where Mothers Race is Japanese;Average OE Gestational Age in weeks where mothers Race is Japanese;sure, here are five different ways of saying ""average oe gestational age in weeks where mothers race is japanese"":;what is the average gestational age for japanese women?" -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherKorean,Average OE Gestational Age in weeks For Korean Mothers;Average OE Gestational Age in weeks where mothers Race is Korean;the average gestation period for korean mothers;the average gestational age of korean mothers;what is the average gestation period for korean mothers?;what is the average gestational age of korean mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average OE Gestational Age in Weeks of Mothers in 9th Grades;Average OE Gestational Age in weeks where mothers Education is Less Than9 Th Grade;the average gestational age of mothers in 9th grade;the average length of pregnancy for mothers in 9th grade;the average number of weeks a mother in 9th grade is pregnant;the average time a mother in 9th grade has been pregnant -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherMastersDegree,Average OE Gestational Age in Weeks For Mothers With Masters Degree;Average OE Gestational Age in weeks where mothers Education is Masters Degree;the average gestation period for mothers with a master's degree;the average gestational age of mothers with a master's degree;the average gestational age of mothers with a master's degree in weeks;the average time that mothers with a master's degree are pregnant -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNative,Average OE Gestational Age in Weeks of USC Native Mothers;Average OE Gestational Age in weeks where mothers Nativity is USC_ Native;average gestational age of usc native mothers;the average gestation period of usc native mothers;the average gestational age at delivery for usc native mothers;the average gestational age of usc native mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativeHawaiian,Average OE Gestational Age in weeks Among Native Hawaiian Mothers;Average OE Gestational Age in weeks where mothers Race is Native Hawaiian;the average gestation period for native hawaiian babies;the average gestation period for native hawaiian mothers;the average gestational age of native hawaiian babies at birth;the average gestational age of native hawaiian mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average OE Gestational Age in Weeks Among Mothers with Unknown CDC Nativity;Average OE Gestational Age in weeks where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;the average gestation period for mothers with unknown cdc nativity;the average gestational age of mothers with unknown cdc nativity;the average gestational period of mothers with unknown cdc nativity;the average number of weeks that mothers with unknown cdc nativity carry their pregnancies -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,"Average OE Gestational Age In Weeks Of Non-Hispanic Mothers;Average OE Gestational Age in weeks where mothers Ethnicity is Not Hispanic Or Latino;sure here are five different ways of saying ""average oe gestational age in weeks of non-hispanic mothers"" in a colloquial way:" -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherNowMarried,Average OE Gestational Age in weeks where mothers Marital Status is Now Married;Mean Gestational Age For Filipino Married Mothers;average gestational age of babies born to married mothers;the average gestation period for babies born to mothers who are now married;the average gestational age of babies born to mothers who are now married;the average number of weeks that babies born to mothers who are now married gestate -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherAsian,Average OE Gestational Age in weeks where mothers Race is Other Asian;Average OE Gestational Ages in Weeks of Asian Mothers;what is the average gestational age of asian babies?;what is the typical gestational age of asian babies at birth? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average OE Gestational Age in Weeks Among Other Pacific Islander Mothers;Average OE Gestational Age in weeks where mothers Race is Other Pacific Islander;the average gestation period for other pacific islander mothers;the average gestational age at delivery for other pacific islander mothers;the average gestational age of other pacific islander babies;the average gestational age of other pacific islander mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSamoan,Average OE Gestational Age in Weeks by Samoan Mothers;Average OE Gestational Age in weeks where mothers Race is Samoan;Samoan Mothers Population Of Average Of Gestational;the average gestational age of babies born to samoan mothers;the average gestational age of samoan newborns;the average gestational period for samoan mothers;the average length of gestation for samoan mothers -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average OE Gestational Age in Weeks For Mothers Whose Education is Some College Without Degree;Average OE Gestational Age in weeks where mothers Education is Some College No Degree;the average gestation period for women with some college education but no degree;the average gestational age of babies born to women with some college education but no degree;the average number of weeks a woman with some college education carries her baby before it is born;the average number of weeks a woman with some college education without a degree carries her baby before giving birth -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average OE Gestational Age in Weeks For Multiracial Mothers;Average OE Gestational Age in weeks where mothers Race is Two Or More Races;the average gestation period for multiracial mothers;the average gestational age of multiracial babies;what is the average gestational age of multiracial mothers?;what is the typical gestational age of multiracial mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherUnmarried,Average OE Gestational Age in weeks For Unmarried Mothers;Average OE Gestational Age in weeks where mothers Marital Status is Unmarried;the average gestational age of babies born to unmarried mothers;what is the average age of gestation for babies born to unmarried mothers?;what is the average gestational age of babies born to unmarried mothers?;what is the typical gestational age for babies born to unmarried mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherVietnamese,Average OE Gestational Age in weeks where mothers Race is Vietnamese;Mean Gestational Age For Vietnamese Mothers;what is the average gestational age of babies born to vietnamese mothers? -Mean_OeGestationalAge_BirthEvent_LiveBirth_MotherWhiteAlone,Average OE Gestational Age in weeks where mothers Race is White Alone;Mean Gestational Age For White Mothers;the average gestation period for white alone babies;the average gestational age of white alone babies at birth -Mean_PalmerDroughtSeverityIndex,Mean Palmer Drought Severity Index;Mean Palmer Drought Severity Index (PDSI);pdsi index;pdsi: a drought index;pdsi: a measure of drought severity;pdsi: a way of measuring how dry or wet it is -Mean_PalmerDroughtSeverityIndex_Forest,Mean Palmer Drought Severity Index (PDSI) in forested areas;Mean Palmer Drought Severity Index For Forest;mean palmer drought severity index (pdsi) in forested areas;mean palmer drought severity index (pdsi) in forested land;mean palmer drought severity index (pdsi) in forests;mean palmer drought severity index (pdsi) in wooded areas -Mean_PopulationWeighted_Concentration_AirPollutant_SmokePM25,"Mean Population Weighted Concentration Air Pollutant Smoke PM 25;Population-weighted Mean Concentration of Smoke PM2.5;average concentration of smoke pm25, weighted by population;mean concentration of smoke pm25, weighted by population;population-weighted mean of smoke pm25 concentration;population-weighted mean of smoke pm25 concentration levels" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth,Average Pre pregnancy BMI;Mean Pre-Pregnancy Body Mass Index Live Births;average body mass index (bmi) before pregnancy;average body mass index before becoming pregnant;average body mass index before pregnancy;average pre-pregnancy bmi -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average Pre pregnancy BMI where mothers Education is 9 Th To12 Th Grade No Diploma;Average Pre-Pregnancy BMI For Mothers With Education is 9Th To12th Grade Without Diploma;the average bmi of mothers who have completed high school but do not have a diploma before becoming pregnant is;the average body mass index for mothers who have completed 9th to 12th grade but do not have a diploma before becoming pregnant is;the average body mass index of mothers who have completed 9th to 12th grade but do not have a diploma before becoming pregnant is;the average pre-pregnancy bmi for mothers with a 9th to 12th grade education without a diploma is -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average Pre pregnancy BMI where mothers Race is American Indian Or Alaska Native Alone -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAsianIndian,"Average Pre pregnancy BMI where mothers Race is Asian Indian;Average Pre-Pregnancy BMI Among Asian Indian Mothers;the average amount of body mass in asian indian mothers before pregnancy, relative to their height and frame size;the average body mass index (bmi) of asian indian mothers before pregnancy;the average percentage of body fat in asian indian mothers before pregnancy;the average weight of asian indian mothers before pregnancy, relative to their height" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherAssociatesDegree,Average Pre Pregnancy BMI of Mothers with Associates Degrees;Average Pre pregnancy BMI where mothers Education is Associates Degree;the average bmi of mothers with associates degrees before pregnancy;the average body fat percentage of mothers with associates degrees before they got pregnant;the average body mass index of mothers with associates degrees before they became pregnant;the average body weight of mothers with associates degrees before they conceived -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Pre pregnancy BMI where mothers Education is Bachelors Degree;Pre-Pregnancy BMI Of Mothers With Bachelor's Degree;body mass index (bmi) of mothers with a bachelor's degree before pregnancy;the average bmi of mothers who have a bachelor's degree before pregnancy;the average bmi of mothers who have completed a bachelor's degree before pregnancy;the average bmi of mothers with a bachelor's degree before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,"Average Pre pregnancy BMI where mothers Race is Black Or African American Alone;Mean Pre-Pregnancy Body Mass Index Live Births For African American Mothers;the average amount of body fat in black or african american mothers before pregnancy;the average bmi of black or african american mothers before pregnancy;the average body mass index of black or african american mothers before pregnancy;the average body weight of black or african american mothers before pregnancy, relative to their height" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherChinese,Average Pre pregnancy BMI where mothers Race is Chinese;Average Pre-Pregnancy BMI of Chinese Mothers;the average body fat percentage of chinese mothers before pregnancy;the average body mass index (bmi) of chinese mothers before pregnancy;the average level of adiposity of chinese mothers before pregnancy;the average weight-to-height ratio of chinese mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average Pre Pregnancy BMI Among Mothers With Doctorate Degree And Professional School Degree;Average Pre pregnancy BMI where mothers Education is Doctorate Degree& Professional School Degree;average bmi of mothers with a doctorate degree or professional school degree before pregnancy;average body mass index of mothers with a doctorate degree or professional school degree before pregnancy;average body mass index of pregnant women with a doctorate degree or professional school degree;average pre-pregnancy body mass index of mothers with a doctorate degree or professional school degree -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average Pre Pregnancy BMI For Mothers Education is CDC;Average Pre pregnancy BMI where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average pre-pregnancy bmi for mothers with different levels of education is available from the cdc;the cdc has data on the average pre-pregnancy bmi for mothers by education level;the cdc has information on the average pre-pregnancy bmi for mothers by education level;the cdc provides data on the average pre-pregnancy bmi for mothers with different levels of education -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average Pre pregnancy BMI where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;Average Pre-pregnancy BMI of CDC Mothers;average bmi of cdc mothers before pregnancy;average body mass index of cdc mothers before conceiving;average body mass index of cdc mothers before pregnancy;average body weight index of cdc mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherFilipino,Average Pre Pregnancy BMI For Filipino Mothers;Average Pre pregnancy BMI where mothers Race is Filipino;the average body mass index (bmi) of filipino mothers before pregnancy;the common bmi of filipino mothers before they get pregnant;the typical bmi of filipino mothers before they become pregnant;the usual bmi of filipino mothers before they conceive -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherForeignBorn,Average Pre pregnancy BMI where mothers Nativity is USC_ Foreign Born;Mean of Foreign-Born Mothers' Pre-Pregnancy BMI;average bmi of foreign-born mothers before pregnancy;average body mass index of foreign-born mothers before pregnancy;average pre-pregnancy bmi of foreign-born mothers;mean body mass index of foreign-born mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Pre pregnancy BMI where mothers Race is Guamanian Or Chamorro;Average Pre-pregnancy Body Mass Index For Guamanian Or Chamorro Mothers;average bmi for guamanian or chamorro mothers before pregnancy;average bmi of guamanian or chamorro mothers before they became pregnant;average body mass index of guamanian or chamorro mothers before pregnancy;average pre-pregnancy body mass index of guamanian or chamorro mothers -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,"Average Pre pregnancy BMI where mothers Education is High School Graduate Ged Or Alternative;Average Pre-Pregnancy BMI For Mothers With High School Graduate Ged Or Alternative;average bmi of mothers who have a ged before pregnancy;average bmi of mothers who have a high school diploma, ged, or equivalent before pregnancy;what is the average body mass index (bmi) of mothers who have graduated from high school, obtained a ged, or have an equivalent educational credential?;what is the average pre-pregnancy bmi for mothers with a high school diploma, ged, or equivalent?" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average Pre Pregnancy BMI Where FOr Hispanic Mothers;Average Pre pregnancy BMI where mothers Ethnicity is Hispanic Or Latino;what is the average bmi of hispanic women before they start a family?;what is the average body mass index for hispanic women before pregnancy?;what is the average body mass index of hispanic women before pregnancy?;what is the average body mass index of hispanic women before they conceive? -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherJapanese,1 the average body mass index (bmi) of japanese mothers before pregnancy;2 the typical bmi of japanese mothers before they become pregnant;3 the usual bmi of japanese mothers before they conceive;4 the common bmi of japanese mothers before they are expecting;Average Pre pregnancy BMI where mothers Race is Japanese;Average Pre-pregnancy BMI For Japanese Mothers -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherKorean,Average Pre pregnancy BMI where mothers Race is Korean;Average Pre-Pregnancy BMI For Korea Mothers;the average bmi of korean mothers before pregnancy;the average body fat percentage of korean women before they get pregnant;the average body mass index of korean women before they become pregnant;the average weight-to-height ratio of korean women before they conceive -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average Pre pregnancy BMI where mothers Education is Less Than9 Th Grade;Average Pre-Pregnancy BMI For Mothers With Less Than 9th Grade;average bmi of mothers with less than a high school diploma before pregnancy;the average bmi of mothers with less than a 9th grade education before pregnancy;the average body mass index of mothers who have not completed 9th grade before pregnancy;the average body mass index of mothers with less than a 9th grade education before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherMastersDegree,Average Pre pregnancy BMI where mothers Education is Masters Degree;Average Pre-Pregnancy BMI Among Mothers With Master' Degrees;average bmi of mothers with master's degrees before pregnancy;average body mass index of mothers with master's degrees before pregnancy;average body mass index of women with master's degrees before pregnancy;average pre-pregnancy bmi of mothers with master's degrees -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNative,- what is the average bmi of usc mothers before pregnancy?;- what is the common bmi of usc mothers before pregnancy?;- what is the typical bmi of usc mothers before pregnancy?;- what is the usual bmi of usc mothers before pregnancy?;Average Pre pregnancy BMI where mothers Nativity is USC_ Native;Average Pre-Pregnancy BMI For USC Mothers -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativeHawaiian,"Average Pre pregnancy BMI where mothers Race is Native Hawaiian;Average Pre-pregnancy BMI of Native Hawaiian Mothers;the average amount of body fat in native hawaiian mothers before they become pregnant;the average body mass index (bmi) of native hawaiian mothers before they become pregnant;the average body size of native hawaiian mothers before they become pregnant;the average weight of native hawaiian mothers before they become pregnant, relative to their height" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average Pre pregnancy BMI where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;Mean Pre-Pregnancy Body Mass Index Live Births For Mothers on Unknown Nativity;the average bmi of mothers whose nativity is cdc_ nativity unknown or not stated;the average bmi of mothers whose nativity is not known or not stated;the average bmi of mothers whose nativity is unknown or not reported;the average bmi of mothers with unknown or unstated nativity -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average Pre pregnancy BMI where mothers Ethnicity is Not Hispanic Or Latino;Average Pre-Pregnancy BMI of Non-Hispanic Mothers;the average amount of body fat that non-hispanic mothers have before pregnancy;the average body fat percentage of non-hispanic mothers before pregnancy;the average body mass index (bmi) of non-hispanic mothers before pregnancy;the average weight-to-height ratio of non-hispanic mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherNowMarried,Average Pre pregnancy BMI where mothers Marital Status is Now Married;Average Pre-Pregnancy BMI For Married Mothers;the average body fat percentage of married women before they become pregnant;the average body mass index (bmi) of married mothers before they get pregnant;the average size of married women before they have a baby;the average weight-to-height ratio of married women before they conceive -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherAsian,Average Pre pregnancy BMI where mothers Race is Other Asian;Mean Pre-Pregnancy Body Mass Index Live Births For Asian Mothers;average bmi before pregnancy for mothers who identify as other asian;the average bmi of women who identify as other asian before they become pregnant;the average bmi of women who identify as other asian before they conceive;the average body mass index (bmi) of women who identify as other asian before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherOtherPacificIslander,"Average Pre pregnancy BMI where mothers Race is Other Pacific Islander;Average Pre-Pregnancy BMI of Other Pacific Islander Mothers;the average amount of body fat in other pacific islander mothers before pregnancy;the average body mass index (bmi) of other pacific islander mothers before pregnancy;the average size of other pacific islander mothers before pregnancy;the average weight of other pacific islander mothers before pregnancy, relative to their height" -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSamoan,Average Pre pregnancy BMI where mothers Race is Samoan;Mean Pre-Pregnancy Body Mass Index Live Births For Samoan Mothers;average bmi of samoan women before pregnancy;average body mass index of samoan women before pregnancy;average body mass index of samoan women before they become pregnant;average pre-pregnancy bmi of samoan women -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average Pre pregnancy BMI where mothers Education is Some College No Degree;Average Pre-pregnancy BMI Among Mothers With Some College Education;the average bmi of mothers with some college education before pregnancy;the average body mass index of mothers who have some college education before pregnancy;the average body mass index of mothers who have some college education before they became pregnant;the average body mass index of mothers with some college education before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,Average Pre pregnancy BMI where mothers Race is Two Or More Races;Average Pre-Pregnancy BMI of Multiracial Mothers;the average bmi of multiracial women before pregnancy;the average bmi of pregnant women who are not of a single race;the average bmi of pregnant women who identify as more than one race;the average body mass index (bmi) of pregnant women who identify as multiracial -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherUnmarried,Average Pre pregnancy BMI where mothers Marital Status is Unmarried;Average Pre-Pregnancy BMI Among Unmarried Mothers;the average bmi of unmarried women before they become pregnant;the average bmi of women who are not married when they conceive a child;the average bmi of women who are unmarried when they conceive;the average body mass index (bmi) of unmarried mothers before pregnancy -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherVietnamese,Average Pre pregnancy BMI where mothers Race is Vietnamese;Average Pre-Pregnancy BMI For Vietnamese Mothers;the average body mass index (bmi) of vietnamese mothers before pregnancy;the common bmi of vietnamese mothers before they start a family;the typical bmi of vietnamese mothers before they become pregnant;the usual bmi of vietnamese mothers before they conceive -Mean_PrePregnancyBMI_BirthEvent_LiveBirth_MotherWhiteAlone,Average Pre pregnancy BMI where mothers Race is White Alone;Average Pre-Pregnancy BMI For White Population Mothers;the average body mass index (bmi) of white mothers before pregnancy;the average body mass index (bmi) of white women before pregnancy;the average weight-to-height ratio of white women before they conceive;the typical bmi of white women before they become pregnant -Mean_PrecipitableWater_Atmosphere,Mean Precipitable Water;Mean Precipitable Water in The Atmosphere -Mean_PrenatalVisitCount_BirthEvent_LiveBirth,Average prenatal vists;Mean Parental Visit Birth Events -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_Mother9ThTo12ThGradeNoDiploma,Average prenatal vists where mothers Education is 9 Th To12 Th Grade No Diploma;Mean Parental Visit Birth Events For Mothers from 9th to 12th Grade;how often do mothers with a 9th to 12th grade education without a diploma typically go to prenatal appointments? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAmericanIndianOrAlaskaNativeAlone,Average Prenatal Visits For American Indians Or Alaska Native Mothers;Average prenatal vists where mothers Race is American Indian Or Alaska Native Alone;how many prenatal visits do american indian or alaska native mothers typically have?;how many prenatal visits do most american indian or alaska native mothers have?;what is the average number of prenatal visits for american indian or alaska native mothers?;what is the typical number of prenatal visits for american indian or alaska native mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAsianIndian,Average Prenatal Visits For Asian And Indian Mothers;Average prenatal vists where mothers Race is Asian Indian;how many prenatal visits do asian and indian mothers typically have?;how often do asian and indian mothers go to the doctor during pregnancy?;what is the average number of prenatal visits for asian and indian mothers?;what is the recommended number of prenatal visits for asian and indian mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherAssociatesDegree,"Average Prenatal Visits For Mothers With Associates Degree;Average prenatal vists where mothers Education is Associates Degree;how many prenatal visits do mothers with an associate's degree typically have?;on average, how many prenatal visits do mothers with an associate's degree make?;what is the average number of prenatal visits for mothers with an associate's degree?;what is the typical number of prenatal visits for mothers with an associate's degree?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBachelorsDegree,Average Prenatal Visits Where Mothers Education is Bachelors Degree;Average prenatal vists where mothers Education is Bachelors Degree;average number of prenatal appointments for mothers with a bachelor's degree;average number of prenatal checkups for mothers with a bachelor's degree;average number of prenatal visits for mothers with a bachelor's degree;the average number of prenatal visits for mothers with a bachelor's degree -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherBlackOrAfricanAmericanAlone,"Average Prenatal Visits of African American Mothers;Average prenatal vists where mothers Race is Black Or African American Alone;how many prenatal visits do african american mothers typically have?;on average, how many times do african american mothers visit their doctor during pregnancy?;what is the average number of prenatal visits for african american mothers?;what is the typical number of prenatal visits for african american mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherChinese,Average Prenatal Visits of Chinese Mothers;Average prenatal vists where mothers Race is Chinese;how many times do chinese mothers go to the doctor during pregnancy?;how often do chinese mothers go to the doctor for prenatal care?;what is the average number of prenatal visits for chinese mothers?;what is the typical number of prenatal visits for chinese mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherDoctorateDegreeOrProfessionalSchoolDegree,Average Prenatal Visits Where Mothers Education is Doctorate Degree and Professional School Degree;Average prenatal vists where mothers Education is Doctorate Degree& Professional School Degree;the average number of prenatal appointments for mothers with a doctorate degree or professional school degree;the average number of prenatal checkups for mothers with a doctorate degree or professional school degree;the average number of prenatal visits for mothers with a doctorate degree or professional school degree;the average number of times a mother with a doctorate degree or professional school degree visits her doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEducationalAttainmentUnknownOrNotStated,Average Prenatal Visits of Mothers with Unknown Educational Attainment;Average prenatal vists where mothers Education is CDC_ Educational Attainment Unknown Or Not Stated;the average number of prenatal appointments for mothers with unknown educational attainment;the average number of prenatal care visits for mothers with unknown educational attainment;the average number of prenatal checkups for mothers with unknown educational attainment;the average number of prenatal visits for mothers with unknown educational attainment -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherEthnicityUnknownOrNotStated,Average Prenatal Visits For Mothers In CDC;Average prenatal vists where mothers Ethnicity is CDC_ Ethnicity Unknown Or Not Stated;how many prenatal visits do mothers typically have in the cdc?;how many times do mothers typically go to the doctor for prenatal care in the cdc?;what is the average number of prenatal visits for mothers in the cdc?;what is the typical number of prenatal visits for mothers in the cdc? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherFilipino,"Average Prenatal Visits of Filipino Mothers;Average prenatal vists where mothers Race is Filipino;how many prenatal visits do filipino mothers typically have?;on average, how many times do filipino mothers visit their doctor during pregnancy?;what is the average number of prenatal visits for filipino mothers?;what is the typical number of prenatal visits for filipino mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherForeignBorn,Average Prenatal Visits Where Mothers Nativity is USC Foreign-Born;Average prenatal vists where mothers Nativity is USC_ Foreign Born;average number of prenatal appointments for foreign-born mothers in the us;average number of prenatal checkups for foreign-born mothers in the us;average number of prenatal visits for foreign-born mothers in the us;average number of times foreign-born mothers in the us visit their doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherGuamanianOrChamorro,Average Prenatal Visits Among Guamanian or Chamorro Mothers;Average prenatal vists where mothers Race is Guamanian Or Chamorro;how many prenatal visits do guamanian or chamorro mothers typically have?;how often do guamanian or chamorro mothers go to the doctor for prenatal care?;what is the average number of prenatal visits for guamanian or chamorro mothers?;what is the typical number of prenatal visits for guamanian or chamorro mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHighSchoolGraduateGedOrAlternative,Average Prenatal Visits Where Mothers Education Is High School Graduate;Average prenatal vists where mothers Education is High School Graduate Ged Or Alternative;the average number of prenatal appointments for mothers with a high school diploma;the average number of prenatal care appointments for mothers who have graduated from high school;the average number of prenatal visits for mothers with a high school diploma;the average number of prenatal visits for mothers with a high school education -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherHispanicOrLatino,Average Prenatal Visits of Hispanic Mothers;Average prenatal vists where mothers Ethnicity is Hispanic Or Latino;how many prenatal visits do hispanic mothers typically have?;how often do hispanic mothers see their doctor during pregnancy?;what is the average number of prenatal visits for hispanic mothers?;what is the typical number of prenatal visits for hispanic mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherJapanese,Average Prenatal Visits Among Japanese Mothers;Average prenatal vists where mothers Race is Japanese;how many prenatal visits do japanese mothers typically have?;how many times do japanese mothers typically go to the doctor for prenatal care?;what is the average number of prenatal visits for japanese mothers?;what is the typical number of prenatal visits for japanese mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherKorean,"Average Prenatal Visits of Korean Mothers;Average prenatal vists where mothers Race is Korean;how many prenatal visits do korean mothers typically have?;on average, how many times do korean mothers visit the doctor during pregnancy?;what is the average number of prenatal visits for korean mothers?;what is the typical number of prenatal visits for korean mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherLessThan9ThGrade,Average Prenatal Visits Among Mothers Whose Education is Less Than 9Th Grade;Average prenatal vists where mothers Education is Less Than9 Th Grade;the average number of prenatal appointments for mothers with less than a 9th grade education;the average number of prenatal checkups for mothers with less than a 9th grade education;the average number of prenatal visits for mothers with less than a 9th grade education;the average number of times mothers with less than a 9th grade education see a doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherMastersDegree,Average Prenatal Visits By Mothers With Masters Degrees;Average prenatal vists where mothers Education is Masters Degree;how many prenatal visits do mothers with master's degrees typically have?;how many times do mothers with master's degrees typically see their doctor during their pregnancy?;what is the average number of prenatal visits for mothers with master's degrees?;what is the typical number of prenatal visits for mothers with master's degrees? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNative,Average Prenatal Visits Where Mothers Nativity is USC Native;Average prenatal vists where mothers Nativity is USC_ Native;average number of prenatal checkups for usc native mothers;average number of prenatal visits for usc native mothers;average number of prenatal visits to the doctor for usc native mothers;average number of times usc native mothers go to the doctor for prenatal care -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativeHawaiian,Average Prenatal Visits Among Native Hawaiian Mothers;Average prenatal vists where mothers Race is Native Hawaiian;how often do native hawaiian mothers go to the doctor during pregnancy;the average number of prenatal visits for native hawaiian mothers;the average number of times native hawaiian mothers see their doctor during pregnancy;the number of prenatal visits made by native hawaiian mothers -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNativityUnknownOrNotStated,Average Prenatal Visits For Mothers Nativity is CDC;Average prenatal vists where mothers Nativity is CDC_ Nativity Unknown Or Not Stated;the cdc has data on the average number of prenatal visits for mothers by nativity;the cdc has information on the average number of prenatal visits for mothers by nativity;the cdc has statistics on the average number of prenatal visits for mothers by nativity;the cdc reports the average number of prenatal visits for mothers by nativity -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNotHispanicOrLatino,Average prenatal vists where mothers Ethnicity is Not Hispanic Or Latino;Mean Parental Visit Birth Events For Latino Mothers;average number of times a mother who is not hispanic or latino sees her doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherNowMarried,"Average Prenatal Visits of Married Mothers;Average prenatal vists where mothers Marital Status is Now Married;how many prenatal visits do married mothers typically have?;on average, how many times do married mothers visit the doctor during pregnancy?;what is the average number of prenatal visits for married mothers?;what is the typical number of prenatal visits for married mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherAsian,Average Prenatal Visits For Asian Mothers;Average prenatal vists where mothers Race is Other Asian;how many prenatal visits do asian mothers typically have?;how often do asian mothers go to the doctor during pregnancy?;what is the average number of prenatal visits for asian mothers?;what is the typical number of prenatal visits for asian mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherOtherPacificIslander,Average Prenatal Visits Among Pacific Islander Mothers er;Average prenatal vists where mothers Race is Other Pacific Islander;the average number of doctor's appointments pacific islander mothers have during pregnancy;the average number of prenatal visits for pacific islander mothers;the average number of times pacific islander mothers go to the doctor during pregnancy;the average number of times pacific islander mothers see their doctor during pregnancy -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSamoan,Average Prenatal Visits For Samoan Mothers;Average prenatal vists where mothers Race is Samoan;how many prenatal visits do samoan mothers typically have?;how often do samoan mothers see their doctor during pregnancy?;what is the average number of prenatal visits for samoan mothers?;what is the typical number of prenatal visits for samoan mothers? -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherSomeCollegeNoDegree,Average prenatal vists where mothers Education is Some College No Degree;Prenatal Visits By Mothers With Some College Education But No Degree;mothers who have some college but no degree go to prenatal appointments;mothers who have some college but no degree see their healthcare provider during pregnancy;women with some college but no degree see their doctor during pregnancy;women with some college education but no degree make prenatal visits -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherTwoOrMoreRaces,"Average Prenatal Visits For Multiracial Mothers;Average prenatal vists where mothers Race is Two Or More Races;how many prenatal visits do multiracial mothers typically have?;on average, how many prenatal visits do multiracial mothers have?;what is the average number of prenatal visits for multiracial mothers?;what is the typical number of prenatal visits for multiracial mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherUnmarried,1 how many prenatal visits do unmarried mothers typically have?;2 what is the average number of prenatal visits for unmarried mothers?;3 what is the typical number of prenatal visits for unmarried mothers?;4 how often do unmarried mothers typically go to the doctor for prenatal care?;Average Prenatal Visits of Unmarried Mothers;Average prenatal vists where mothers Marital Status is Unmarried -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherVietnamese,"Average Prenatal Visits Among Vietnamese Mothers;Average prenatal vists where mothers Race is Vietnamese;how many prenatal visits do vietnamese mothers typically make?;how often do vietnamese mothers see their doctor during pregnancy?;on average, how many times do vietnamese mothers visit their doctor during pregnancy?;what is the average number of prenatal visits for vietnamese mothers?" -Mean_PrenatalVisitCount_BirthEvent_LiveBirth_MotherWhiteAlone,Average prenatal vists where mothers Race is White Alone;Whites Average Prenatal Visits Among White Mothers;the average number of doctor's appointments white mothers make during pregnancy;the average number of prenatal visits for white mothers;the average number of times white mothers go to the doctor during pregnancy;the average number of times white mothers see their doctor during pregnancy -Mean_Radiation_Downwelling_ShortwaveRadiation,"Mean Radiation: Downwelling, Shortwave Radiation" -Mean_Rainfall,Mean Rainfall;average rainfall;mean annual precipitation;mean annual rainfall;mean precipitation -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Retirement Income Of Householders Foreign Born In Africa;Mean Retirement Income of Household: Foreign Born, Africa;average retirement income of foreign-born african households;the amount of money that foreign-born african households typically earn in retirement;the average amount of money that foreign-born african households earn in retirement;the typical retirement income of foreign-born african households" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAsia,"Foreign Borns In Asia Mean Retirement Income Of Household;Mean Retirement Income of Household: Foreign Born, Asia;the average income that households with foreign-born members in asia will receive after they retire;the average retirement income of households headed by foreign-born asians;the median retirement income of households headed by foreign-born asians;the typical retirement income of households headed by foreign-born asians" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Retirement Income of Foreign-Born Households in the Caribbean;Mean Retirement Income of Household: Foreign Born, Caribbean;average retirement income of foreign-born households in the caribbean;the average amount of money that foreign-born households in the caribbean earn in retirement;the median retirement income of foreign-born households in the caribbean;the typical amount of money that foreign-born households in the caribbean have saved up for retirement" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Retirement Income of Foreign-Born Households in Central America Except Mexico;Mean Retirement Income of Household: Foreign Born, Central America Except Mexico;average retirement income of foreign-born households in central america excluding mexico;the average amount of money that foreign-born households in central america excluding mexico have saved for retirement;the median amount of money that foreign-born households in central america excluding mexico have saved for retirement;the typical amount of money that foreign-born households in central america excluding mexico have saved for retirement" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Retirement Income of Household: Foreign Born, Eastern Asia;Mean Retirement Income of Households Of Population Foreign Born in Eastern Asia;average retirement income of households with foreign-born residents from eastern asia;the average amount of money that households with foreign-born residents from eastern asia earn in retirement;the average retirement income of households with foreign-born residents from eastern asia;the expected amount of money that households with foreign-born residents from eastern asia will have in retirement" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEurope,"Mean Retirement Income Of Householders Foreign Born In Europe;Mean Retirement Income of Household: Foreign Born, Europe;the average amount of money that foreign-born householders in europe earn in retirement;the average retirement income of foreign-born householders in europe;the typical amount of money that foreign-born householders in europe make after they retire;the typical income of foreign-born householders in europe who are retired" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Retirement Income For Household of Foreign Born Population in Latin America;Mean Retirement Income of Household: Foreign Born, Latin America;the amount of money that most foreign-born latin american households make after they retire;the average retirement income of foreign-born latin american households;the typical amount of money that foreign-born latin american households make in retirement;the typical income of foreign-born latin american households after they retire" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Foreign-Born Population Mean Retirement Income of Households in Mexico;Mean Retirement Income of Household: Foreign Born, Country/MEX;the average amount of money that households in mexico with foreign-born members have saved for retirement;the average amount of money that households in mexico with foreign-born members receive in retirement;the average income of households in mexico with foreign-born members after they retire;the average retirement income of households in mexico with foreign-born members" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Retirement Income of Foreign Borns in North America Households;Mean Retirement Income of Household: Foreign Born, Northamerica;the average amount of money that foreign-born households in north america earn after they retire;the average amount of money that foreign-born households in north america have saved for retirement;the average income that foreign-born households in north america receive after they retire;the average retirement income of foreign-born households in north america" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Mean Retirement Income of Household: Foreign Born, Northern Western Europe;Mean Retirement Income of Households Of Population Foreign Born In Northern Western Europe;the average amount of money that households with foreign-born populations in northern western europe earn after they retire;the average retirement income of households with foreign-born populations in northern western europe;the typical amount of money that households with foreign-born populations in northern western europe have saved up for retirement;the usual amount of money that households with foreign-born populations in northern western europe receive from pensions and other retirement benefits" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Retirement Income Of Foreign Born in Oceania Households;Mean Retirement Income of Household: Foreign Born, Oceania;the average amount of money that foreign-born households in oceania receive in retirement;the average retirement income of foreign-born households in oceania;the median retirement income of foreign-born households in oceania;the typical amount of money that foreign-born households in oceania have saved up for retirement" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Average Retirement Income Of Householders Foreign Born In South Central Asia;Mean Retirement Income of Household: Foreign Born, South Central Asia;how much money do foreign-born south asian homeowners make in retirement;how much money do south asian homeowners who were born outside of the united states typically make in retirement;what is the average amount of money that south asian homeowners who were born outside of the united states make in retirement;what is the average retirement income of south asian homeowners who were born outside of the united states" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Retirement Income Of Foreign Born In South-Eastern Asia Households;Mean Retirement Income of Household: Foreign Born, South Eastern Asia;the average amount of money that foreign-born households in southeast asia earn in retirement;the average retirement income of foreign-born households in southeast asia;the median retirement income of foreign-born households in southeast asia;the middle-ground retirement income of foreign-born households in southeast asia" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Foreign-Born Households in South America with Mean Retirement Income;Mean Retirement Income of Household: Foreign Born, Southamerica;households in south america with foreign-born members and their average retirement income;the average income of households in south america whose members are retired and were born outside of the country;the average income of households in south america with foreign-born members who are retired;the average retirement income of households in south america with foreign-born members" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Retirement Income of Foreign-Born Households in Southern Eastern Europe;Mean Retirement Income of Household: Foreign Born, Southern Eastern Europe;the average amount of money that foreign-born households in southern eastern europe have saved up for retirement;the average amount of money that foreign-born households in southern eastern europe make after they retire;the average amount of money that foreign-born households in southern eastern europe receive from pensions and other sources of income after they retire;the average income of foreign-born households in southern eastern europe after retirement" -Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Foreign-Born Households in Western Asia with Mean Retirement Income;Mean Retirement Income of Household: Foreign Born, Western Asia;the average retirement income of foreign-born households in western asia;the mean retirement income of foreign-born households in western asia;the median retirement income of foreign-born households in western asia;the typical retirement income of foreign-born households in western asia" -Mean_Snowfall,Mean Snowfall;annual snowfall;average snowfall;typical snowfall;usual snowfall -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Social Security Income of Household: Foreign Born, Africa;Mean Social Security Income of Households Owned by Foreign-Born Population;the average social security income for households owned by foreign-born people;the average social security income of households owned by foreign-born people;the average social security income of households owned by people who were not born in the united states;the mean social security income of households owned by people who were born in other countries" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,"1 the average social security income of households with foreign-born asian residents;2 the average social security income of households with asian immigrants;4 the average social security income of households with people who are asian;5 the average social security income of households with people who are of asian descent;Mean Social Security Income of Household of Population Foreign-Born In Asian;Mean Social Security Income of Household: Foreign Born, Asia" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Household Income of The Caribbean Foreign-Born Population;Mean Social Security Income of Household: Foreign Born, Caribbean;the amount of money that the average caribbean-born household makes in the us;the average amount of money earned by caribbean-born households in the united states;the average income of caribbean-born households in the united states;the typical household income of people from the caribbean who live in the us" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Social Security Income of Foreign-Born Households in Central America Except Mexico;Mean Social Security Income of Household: Foreign Born, Central America Except Mexico;the average social security income of foreign-born households in central america, excluding mexico;the average social security income of households in central america, excluding mexico, that are headed by someone who was born in another country;the mean social security income of foreign-born households in central america, excluding mexico;the mean social security income of households in central america, excluding mexico, that are headed by someone who was born in another country" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Eastern Asia Foreign Borns Mean Social Security Household Income;Mean Social Security Income of Household: Foreign Born, Eastern Asia;the mean social security household income for people from eastern asia who were born in another country;the mean social security household income of people from eastern asia who were born outside the united states;the mean social security income for households with a head of household who was born in eastern asia;the mean social security income of households with a head of household from eastern asia who was born outside the united states" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,"1 the average social security income of foreign-born householders in europe;2 the mean social security income of householders born outside of europe;3 the average social security income of householders who are not citizens of europe;4 the mean social security income of householders who were not born in europe;Mean Social Security Income of Household: Foreign Born, Europe;Mean Social Security Income of Householders Foreign Born in Europe" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Social Security Income of Foreign Born In Latin America Households;Mean Social Security Income of Household: Foreign Born, Latin America;the average social security income for households with foreign-born latin american members;the median social security income for households with latin american immigrants;the typical social security income for households with latin american immigrants;the usual social security income for households with people from latin america who were born in other countries" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Social Security Income of Foreign-Born Population Households;Mean Social Security Income of Household: Foreign Born, Country/MEX;average social security income of foreign-born population households;the average amount of social security income received by foreign-born population households;the average social security income of households with at least one foreign-born member;the average social security income of households with foreign-born members" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"1 average social security income of foreign-born households in north america;2 the average social security income of households with foreign-born members in north america;3 the mean social security income of households with foreign-born members in north america;4 the average amount of social security income received by households with foreign-born members in north america;Mean Social Security Income of Household: Foreign Born, Northamerica;Mean Social Security Income of Households of Foreign-Born Population in North America" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign-Born Population Mean Social Security Income of Households in North Western Europe;Mean Social Security Income of Household: Foreign Born, Northern Western Europe;the average amount of social security income received by households in north western europe with foreign-born members;the average social security income of households in north western europe that have at least one foreign-born member;the average social security income of households in north western europe that include at least one foreign-born member;the average social security income of households in north western europe with foreign-born members" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthOceania,"Mean Social Security Income Of Householders Foreign Born In Oceania;Mean Social Security Income of Household: Foreign Born, Oceania;the average amount of social security income received by foreign-born householders in oceania;the average social security income of foreign-born householders in oceania;the average social security income of foreign-born householders in the pacific islands;the mean social security income of foreign-born householders in oceania" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Social Security Income of Household: Foreign Born, South Central Asia;Mean Social Security Income of Households of Foreign Borns in South Central Asia;average social security income of foreign born households in south central asia;the average social security income of households with foreign-born members in south central asia;the mean social security income of households with foreign-born members in south central asia;the social security income of households with foreign-born members in south central asia on average" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Social Security Income of Household: Foreign Born, South Eastern Asia;Mean Social Security Income of Households Owned by Foreign-Born Population In South-Eastern Asia;the average amount of money that social security pays to households owned by people who were born in another country and now live in southeast asia;the average social security income of households owned by foreign-born people in southeast asia;the mean amount of money that social security pays to households owned by foreign-born people in southeast asia;the mean social security income of households owned by people who were born in another country and now live in southeast asia" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"1 average social security income of foreign-born households in south america;2 the average amount of social security income received by foreign-born households in south america;3 the mean social security income of households in south america that were founded by immigrants;4 the average social security income of households in south america that have at least one foreign-born member;Mean Social Security Income of Household: Foreign Born, Southamerica;Mean Social Security Income of Households Foreign-Born in South America" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Mean Social Security Income of Household: Foreign Born, Southern Eastern Europe;Social Security Income of Foreign-Born Population in Southern Eastern Europe;how much social security do immigrants in southern eastern europe get?;income from social security for immigrants in southern eastern europe;social security benefits for foreign-born people in southern eastern europe;what is the social security income of foreign-born people in southern eastern europe?" -Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Social Security Income of Household: Foreign Born, Western Asia;Mean Social Security Income of Households of Foreign-Born Population in Western Asia;average social security income of foreign-born households in western asia;the average amount of social security income received by foreign-born households in western asia;the average social security income of households with foreign-born members in western asia;the mean social security income of foreign-born households in western asia" -Mean_SolarInsolation,Mean Solar Insolation;average solar flux;average solar intensity;average solar irradiance;average solar radiation -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,"Mean Supplemental Security Income of Foreign-Born Households in Africa;Mean Supplemental Security Income of Household: Foreign Born, Africa;the average amount of supplemental security income received by foreign-born households in africa;the average supplemental security income benefit for foreign-born households in africa;the average supplemental security income of foreign-born households in africa;the average supplemental security income payment for foreign-born households in africa" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,"Mean Supplemental Security Income of Household: Foreign Born, Asia;Mean Supplemental Security Income of Households of Foreign Born Population in Asia;the average amount of money that households of foreign-born people in asia receive from supplemental security income;the average amount of supplemental security income received by households of foreign-born people in asia;the average supplemental security income benefit for households of foreign-born people in asia;the average supplemental security income of households of foreign-born people in asia" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,"Mean Supplemental Security Income of Household: Foreign Born, Caribbean;Mean Supplementary Income For Households of Foreign Born Born in Caribbean;the average amount of money that foreign-born caribbean households receive in supplemental security income;the average amount of supplemental security income received by foreign-born caribbean households;the average supplemental security income benefit for foreign-born caribbean households;the average supplemental security income for foreign-born caribbean households" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Mean Supplemental Security Income Of Foreign Born Population In Central America Except Mexico;Mean Supplemental Security Income of Household: Foreign Born, Central America Except Mexico;the average amount of supplemental security income (ssi) received by foreign-born people in central america, excluding mexico;the average supplemental security income (ssi) for foreign-born people in central america, excluding mexico;the mean amount of supplemental security income (ssi) received by foreign-born people in central america, excluding mexico;the mean supplemental security income (ssi) for foreign-born people in central america, excluding mexico" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Mean Supplemental Security Income Of Foreign Born in Eastern Asia Households;Mean Supplemental Security Income of Household: Foreign Born, Eastern Asia;the average supplemental security income of foreign-born households in eastern asia;the average supplemental security income of households in eastern asia whose members are immigrants;the average supplemental security income of households in eastern asia whose members were born outside of the united states;the mean supplemental security income of households in eastern asia with foreign-born members" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,"Foreign-Born in Europe Mean Supplemental Security Income of Households;Mean Supplemental Security Income of Household: Foreign Born, Europe;the average amount of supplemental security income received by households with foreign-born members in europe;the average supplemental security income of households with foreign-born members in europe;the mean amount of supplemental security income received by households in europe with foreign-born members;the mean supplemental security income of households in europe with foreign-born members" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Mean Household Supplemental Security Income of Population Foreign Born in Latin America;Mean Supplemental Security Income of Household: Foreign Born, Latin America;the average amount of supplemental security income received by foreign-born latin americans;the average supplemental security income for foreign-born latin americans;the average supplemental security income per household of foreign-born latin americans;the average supplemental security income received by a household of foreign-born latin americans" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,"Mean Supplemental Security Income of Foreign-Born in Mexico Households;Mean Supplemental Security Income of Household: Foreign Born, Country/MEX;the average amount of supplemental security income received by households in mexico with foreign-born members;the average supplemental security income of foreign-born households in mexico;the mean supplemental security income of households in mexico with foreign-born members;the mean supplemental security income received by foreign-born households in mexico" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Mean Supplemental Security Income of Foreign-Born Households in North America;Mean Supplemental Security Income of Household: Foreign Born, Northamerica;average supplemental security income of foreign-born households in north america;the average amount of supplemental security income received by foreign-born households in north america;the average supplemental security income received by households in north america that are headed by immigrants;the mean supplemental security income of foreign-born households in north america" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign Born In Northern Western Europe With Mean Supplemental Security Income of Household;Mean Supplemental Security Income of Household: Foreign Born, Northern Western Europe;mean supplemental security income for households with foreign-born members from northern western europe;supplemental security income for foreign-born people from northern western europe;supplemental security income for households with foreign-born members from northern western europe, on average;the average supplemental security income for households with foreign-born members from northern western europe" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Mean Supplemental Security Income Of Householders Foreign Born In South Central Asia;Mean Supplemental Security Income of Household: Foreign Born, South Central Asia;the average amount of supplemental security income that foreign-born householders in south central asia receive;the average supplemental security income for foreign-born householders in south central asia;the mean supplemental security income for householders who were born in south central asia but now live in the united states;the mean supplemental security income that householders who were born in south central asia but now live in the united states receive" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Mean Supplemental Security Income of Foreign-Born Households South-Eastern Asia;Mean Supplemental Security Income of Household: Foreign Born, South Eastern Asia;the average amount of supplemental security income received by foreign-born households in southeast asia;the average supplemental security income of foreign-born households in southeast asia;the mean amount of supplemental security income received by foreign-born households in southeast asia;the mean supplemental security income of foreign-born households in southeast asia" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Mean Supplemental Security Income of Household: Foreign Born, Southamerica;South American Foreign-Born Population With Mean Supplemental Security Income;the average amount of supplemental security income received by south american immigrants;the average supplemental security income for south american foreign-born people;the mean supplemental security income for south american immigrants;the mean supplemental security income received by south american foreign-born people" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born Population Mean Supplemental Security Income of Households in South Eastern Europe;Mean Supplemental Security Income of Household: Foreign Born, Southern Eastern Europe;the average amount of supplemental security income received by households in south eastern europe with foreign-born members;the average supplemental security income of households in south eastern europe with foreign-born populations;the mean amount of supplemental security income received by households in south eastern europe with foreign-born people;the mean supplemental security income of households in south eastern europe with foreign-born residents" -Mean_SupplementalSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,"Mean Supplemental Security Income of Household: Foreign Born, Western Asia;Mean Supplemental Security Income of Households of Foreign-Born Population in Western Asia;the average supplemental security income for households of foreign-born people in western asia;the mean amount of supplemental security income received by households of foreign-born people in western asia;the supplemental security income that households of foreign-born people in western asia typically receive;the typical supplemental security income for households of foreign-born people in western asia" -Mean_Temperature,Mean Temperature;average temperature;central tendency of temperature;mean temperature;the average temperature -Mean_UsualHoursWorked_Person_Female_WorkedInThePast12Months,"Mean Hours Worked by Female Population Aged 16 to 64 Years Who Worked in The Past 12 Months;Mean Usual Hours Worked: 16 - 64 Years, Female, Worked in The Past 12 Months;average number of hours worked by women aged 16 to 64 who worked in the past 12 months;average working hours of females aged 16 to 64 in the past 12 months;mean number of hours worked by females aged 16 to 64 who worked in the past year;mean working hours of women aged 16 to 64 in the past year" -Mean_UsualHoursWorked_Person_Male_WorkedInThePast12Months,"Mean Usual Hours Worked by Male Population Aged 16 to 64 Years in The Past 12 Months;Mean Usual Hours Worked: 16 - 64 Years, Male, Worked in The Past 12 Months;how many hours did the average male aged 16 to 64 work in the past 12 months?;what is the average usual number of hours worked by males aged 16 to 64 in the past 12 months?;what is the mean number of hours worked by males aged 16 to 64 in the past 12 months?;what was the average number of hours worked by males aged 16 to 64 in the past 12 months?" -Mean_UsualHoursWorked_Person_WorkedInThePast12Months,"Mean Usual Hours Worked in The Past 12 Months By People Aged 16 to 64 Years;Mean Usual Hours Worked: 16 - 64 Years, Worked in The Past 12 Months;the average number of hours worked in the past 12 months by people aged 16 to 64;the average number of hours worked in the past 12 months by people aged 16 to 64 years;the typical number of hours worked in the past 12 months by people aged 16 to 64;the usual number of hours worked in the past 12 months by people aged 16 to 64" -Mean_VaporPressureDeficit,Mean Vapor Pressure Deficit;Mean Vapor Pressure Deficit (VPD);mean vapor pressure;mean vapor pressure deficit (vpd);mean vapor pressure difference;mean vapor pressure differential -Mean_VaporPressureDeficit_Forest,Mean Vapor Pressure Deficit (VPD) for forested areas;Mean Vapor Pressure Deficit For Forest;the average vapor pressure deficit (vpd) in forested areas;the mean vpd in forested areas;the typical vpd in forested areas;the usual vpd in forested areas -Mean_Visibility,Mean Visibility;how conspicuous is something?;how noticeable is something?;how visible is something?;how well can something be seen? -Mean_WagesMonthly_Worker,Mean Monthly Wages;Monthly wages of workers;mean wages monthly;monthly income;monthly salary;monthly wages;monthly worker wages +LifeExpectancy_Person,people life expectancy +LifeExpectancy_Person_Female,female life expectancy +LifeExpectancy_Person_Male,male Life expectancy +MarketValue_Farm_AgriculturalProducts,Total market value of agricultural farms +MarketValue_Farm_Crops,Market Value of Farms Growing Crops +MarketValue_Farm_LivestockAndPoultry,Market Value of Livestock and Poultry in farm inventory +MarketValue_Farm_MachineryAndEquipment,Market Value of Farm Machinery and Equipment +Max_BarometricPressure,Max Barometric Pressure +Max_Humidity_RelativeHumidity,Max Relative Humidity +Max_PrecipitableWater_Atmosphere,Max Precipitable Water +Max_Rainfall,Maximum rain fall +Max_Snowfall,Maximum snow fall +Max_Temperature,Maximum Temperature +MeanMothersAge_BirthEvent,Mean Mother's Age at Birth +Mean_Area_Farm,Mean farm area +Mean_BarometricPressure,Mean Barometric Pressure +Mean_BirthWeight_BirthEvent_LiveBirth,Average birth weight for infants +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAfrica,Average Cash Assistance for Households with foreign born people from africa +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthAsia,Average Cash Assistance for Households with foreign born people from asia +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCaribbean,Average Cash Assistance for Households with foreign born people from Caribbean +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Average Cash Assistance for Households with foreign born people from Central America Except Mexico +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEasternAsia,Average Cash Assistance for Households with foreign born people from Eastern Asia +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthEurope,Average Cash Assistance for Households with foreign born people from europe +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Average Cash Assistance for Households with foreign born people from Latin America +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthMexico,Average Cash Assistance for Households with foreign born people from Mexico +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthamerica,Average Cash Assistance for Households with foreign born people from northamerica +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Average Cash Assistance for Households with foreign born people from Northern Western Europe +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Average Cash Assistance for Households with foreign born people from South Central Asia +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Average Cash Assistance for Households with foreign born people from South Eastern Asia +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthamerica,Average Cash Assistance for Households with foreign born people from south america +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Average Cash Assistance for Households with foreign born people from Southern Eastern Europe +Mean_CashAssistance_Household_ForeignBorn_PlaceOfBirthWesternAsia,Average Cash Assistance for Households with foreign born people from Western Asia +Mean_Concentration_AirPollutant_CO,Average Atmospheric Carbon Monoxide Concentration +Mean_Concentration_AirPollutant_DieselPM,Average Diesel PM Particle Concentration +Mean_Concentration_AirPollutant_NO2,Average Atmospheric Nitrogen Dioxide Concentration +Mean_Concentration_AirPollutant_Ozone,Average ozone concentration +Mean_Concentration_AirPollutant_PM10,Average PM 10 Particle Concentration +Mean_Concentration_AirPollutant_PM2.5,Average PM 2.5 Particle Concentration +Mean_Concentration_AirPollutant_SO2,Average Atmospheric Sulfur Dioxide Concentration +Mean_Concentration_AirPollutant_SmokePM25,Average smoke PM 2.5 Particle Concentration +Mean_CoverageArea_SolarInstallation_Commercial,The average area covered by commercial solar installations +Mean_CoverageArea_SolarInstallation_Residential,The average area covered by residential solar installations +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAfrica,Mean Earnings of Household with foreign born people from africa +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthAsia,Mean Earnings of Household with foreign born people from asia +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean Earnings of Household with foreign born people from Caribbean +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean Earnings of Household with foreign born people from Central America Except Mexico +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean Earnings of Household with foreign born people from Eastern Asia +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthEurope,Mean Earnings of Household with foreign born people from europe +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean Earnings of Household with foreign born people from Latin America +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthMexico,Mean Earnings of Household with foreign born people from Mexico +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean Earnings of Household with foreign born people from north america +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean Earnings of Household with foreign born people from Northern Western Europe +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthOceania,Mean Earnings of Household with foreign born people from oceania +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean Earnings of Household with foreign born people from South Central Asia +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean Earnings of Household with foreign born people from South Eastern Asia +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean Earnings of Household with foreign born people from south america +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean Earnings of Household with foreign born people from Southern Eastern Europe +Mean_Earnings_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean Earnings of Household with foreign born people from Western Asia +Mean_Earnings_Person_Female,Average earnings of females +Mean_Earnings_Person_Male,Average earnings of males +Mean_Expenses_Farm,Mean Expenses of Farm +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAfrica,Mean size of Households with foreign born people from africa +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthAsia,Mean size of Households with foreign born people from asia +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean size of Households with foreign born people from Caribbean +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean size of Households with foreign born people from Central America Except Mexico +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean size of Households with foreign born people from Eastern Asia +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthEurope,Mean size of Households with foreign born people from europe +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean size of Households with foreign born people from Latin America +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthMexico,Mean size of Households with foreign born people from Mexico +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean size of Households with foreign born people from North America +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean size of Households with foreign born people from Northern Western Europe +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthOceania,Mean size of Households with foreign born people from oceania +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean size of Households with foreign born people from South Central Asia +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean size of Households with foreign born people from South Eastern Asia +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean size of Households with foreign born people from South America +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean size of Households with foreign born people from Southern Eastern Europe +Mean_HouseholdSize_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean size of Households with foreign born people from Western Asia +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit,Mean Household Size of Occupied Housing Unit +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Mean Household Size of owner Occupied Housing Unit +Mean_HouseholdSize_HousingUnit_OccupiedHousingUnit_RenterOccupied,Mean Household Size of renter Occupied Housing Unit +Mean_Humidity_RelativeHumidity,Mean relative humidity +Mean_IncomeDeficit_Household_FamilyHousehold,Mean Income Deficit of Family Household +Mean_IncomeDeficit_Household_MarriedCoupleFamilyHousehold,Mean Income Deficit of Married Couple Family Household +Mean_IncomeDeficit_Household_SingleMotherFamilyHousehold,Mean Income Deficit of Single Mother Family Household +Mean_Income_Household,Average household income +Mean_Income_Household_FamilyHousehold,Average family household income +Mean_Income_Household_MarriedCoupleFamilyHousehold,Average married couple household income +Mean_Income_Household_NonfamilyHousehold,Average non-family household income +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FoodAndDrinksSector,Average inflation in consumer price index of Food and Beverages Sector +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_FuelAndLightSector,Average inflation in consumer price index of Fuel and Light Sector +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_GeneralSector,Average inflation in consumer price index +Mean_Inflation_EconomicActivity_ConsumerPriceIndex_UrbanHousingSector,Average inflation in consumer price index of urban housing Sector +Mean_IntervalSinceLastBirth_BirthEvent_LiveBirth,Average Time Since Last Live Birth +Mean_LmpGestationalAge_BirthEvent_LiveBirth,Average Age of Pregnancy Measured from Start of Last Menstrual Period +Mean_MarketValue_Farm_AgriculturalProducts,Average market value of agriculture products in farms +Mean_MarketValue_Farm_LandAndBuildings,Average market value of land and buildings on a farm +Mean_MarketValue_Farm_MachineryAndEquipment,Average market value of farm machinery and equipment +Mean_MothersAge_BirthEvent_LiveBirth,Average Age of Mothers at Live Birth +Mean_NetMeasure_Income_Farm,Mean Income of Farm +Mean_OeGestationalAge_BirthEvent_LiveBirth,Average OE Gestational Age +Mean_PalmerDroughtSeverityIndex,Mean Palmer Drought Severity Index (PDSI) +Mean_PalmerDroughtSeverityIndex_Forest,Mean Palmer Drought Severity Index (PDSI) in forested areas +Mean_PopulationWeighted_Concentration_AirPollutant_SmokePM25,Population-weighted Mean Concentration of Smoke PM2.5 +Mean_PrePregnancyBMI_BirthEvent_LiveBirth,Average Pre pregnancy BMI +Mean_PrecipitableWater_Atmosphere,Average amount of Precipitable Water +Mean_PrenatalVisitCount_BirthEvent_LiveBirth,Average prenatal vists +Mean_Rainfall,Mean near-surface rainfall +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAfrica,Mean Retirement Income of Households with foreign born people from Africa +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthAsia,Mean Retirement Income of Households with foreign born people from Asia +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean Retirement Income of Households with foreign born people from Caribbean +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean Retirement Income of Households with foreign born people from Central America Except Mexico +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean Retirement Income of Households with foreign born people from Eastern Asia +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthEurope,Mean Retirement Income of Households with foreign born people from Europe +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean Retirement Income of Households with foreign born people from Latin America +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthMexico,Mean Retirement Income of Households with foreign born people from Mexico +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean Retirement Income of Households with foreign born people from North America +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean Retirement Income of Households with foreign born people from Northern Western Europe +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthOceania,Mean Retirement Income of Households with foreign born people from Oceania +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean Retirement Income of Households with foreign born people from South Central Asia +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean Retirement Income of Households with foreign born people from South Eastern Asia +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean Retirement Income of Households with foreign born people from South America +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean Retirement Income of Households with foreign born people from Southern Eastern Europe +Mean_RetirementIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean Retirement Income of Households with foreign born people from Western Asia +Mean_Snowfall,Mean snow fall +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAfrica,Mean social security income of households with foreign born people from Africa +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthAsia,Mean social security income of households with foreign born people from Asia +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCaribbean,Mean social security income of households with foreign born people from Caribbean +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Mean social security income of households with foreign born people from Central America Except Mexico +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEasternAsia,Mean social security income of households with foreign born people from Eastern Asia +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthEurope,Mean social security income of households with foreign born people from Europe +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Mean social security income of households with foreign born people from Latin America +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthMexico,Mean social security income of households with foreign born people from Mexico +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthamerica,Mean social security income of households with foreign born people from North America +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Mean social security income of households with foreign born people from Northern Western Europe +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthOceania,Mean social security income of households with foreign born people from Oceania +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Mean social security income of households with foreign born people from South Central Asia +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Mean social security income of households with foreign born people from South Eastern Asia +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthamerica,Mean social security income of households with foreign born people from South America +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Mean social security income of households with foreign born people from Southern Eastern Europe +Mean_SocialSecurityIncome_Household_ForeignBorn_PlaceOfBirthWesternAsia,Mean social security income of households with foreign born people from Western Asia +Mean_Temperature,Mean Temperature +Mean_Visibility,Mean Visibility +Mean_WagesMonthly_Worker,Mean Monthly Wages Mean_WindSpeed,Mean Wind Speed -Mean_WindSpeed_UComponent_Height10Meters,"Mean 10 Meter UComponent Wind Speed;Mean Wind Speed: Meter 10, UComponent;average 10-meter wind speed in the u-direction;average wind speed at 10 meters in the u-direction;mean 10-meter wind speed in the u-direction;mean wind speed at 10 meters in the u-direction" -Mean_WindSpeed_VComponent_Height10Meters,"Mean Wind Speed Component;Mean Wind Speed: Meter 10, VComponent;average wind speed component;mean wind speed component;mean wind speed vector" -MedianMothersAge_BirthEvent,Median Mother's Age at Birth;the age at which half of all mothers give birth;the average age of mothers when they give birth;the most common age for mothers to give birth;what is the median age of mothers at childbirth -Median_Age_Person,"Average age of the population;Mean age of the population;Median Age;Median Age of Population;Median age of people;Median age of the population;Middle age of the population;The age at which half the population is older and half is younger;The age at which half the population is older and half the population is younger;Typical age of the population;age of the typical person in a population;half the population is older than this age, and half is younger;the age at which half the population is older and half is younger;the average age of a person in the population;the middle age in a population;the middle age of the population" -Median_Age_Person_1OrMoreYears,1 year or older;Mean Age of Population Aged 10 Years or More;Median Age: 1 Years or More;aged 1 or more;at least 1 year old;older than 0 years old -Median_Age_Person_1OrMoreYears_DifferentHouseAbroad,"Median Age: 1 Years or More, Different House Abroad;Population Aged 1 Year or More With Different House Abroad;population aged 1 year or more with a different house abroad;population aged 1 year or more with a house in a foreign country;population aged 1 year or more with a house in another country;population aged 1 year or more with a house outside of the country" -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountyDifferentState,"Median Age of Population Aged 1 Year or More in Different Houses in Different County Different State;Median Age: 1 Years or More, Different House in Different County Different State;the age at which half of the people living in different houses in different counties in different states have already reached that age and half have not yet reached it;the age that half of the people living in different houses in different counties in different states are older than and half are younger than;the average age of people in different counties in different states;the average age of people living in different houses in different counties in different states" -Median_Age_Person_1OrMoreYears_DifferentHouseInDifferentCountySameState,"Median Age 1 Year Or More Of Population With Different House In Different County Same State;Median Age: 1 Years or More, Different House in Different County Same State;the age that most people who live in a different county in the same state than they were born in are;the average age of people who live in a different house in a different county in the same state;the median age of people who live in a different house in a different county in the same state;the middle age of people who live in a different house in a different county in the same state" -Median_Age_Person_1OrMoreYears_DifferentHouseInSameCounty,"Median Age of Population Aged 1 Year or More in Different Houses in The Same County;Median Age: 1 Years or More, Different House in Same County;the age that half of the people in different households in the same county are older than and half are younger than;the age that is in the middle of the range of ages of people in different households in the same county;the average age of people in different households in the same county;the middle age of people in different houses in the same county" -Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,"Median Age of American Indian or Alaska Native Population;Median Age: American Indian or Alaska Native Alone;Median age for population identifying as American Indian or Alaska Native Alone;Median age of American Indian or Alaska Native people;What is the median age of American Indian or Alaska Native population in;What is the median age of American Indian or Alaska Natives in;What is the median age of American Indian or Alaska Natives in the United States?;the age at which half of american indian or alaska native people are older and half are younger;the age that divides the population of american indian or alaska native people into two equal groups, half younger and half older;the average age of an american indian or alaska native person;the middle age of an american indian or alaska native person" -Median_Age_Person_AsianAlone,"Median Age of Asian Population;Median Age: Asian Alone;Median age for population identifying as Asian Alone;Median age of Asian people;The age at which 50% of people identifying as Asian Alone are older and 50% are younger;The age at which half of the population identifying as Asian Alone is older and half is younger;The age at which the median of the population identifying as Asian Alone falls;The age that divides the population identifying as Asian Alone into two equal groups, half older and half younger;the age at which half of the asian population is younger and half is older;the age at which half of the people of asian descent are younger than that age and half are older than that age;the average age of people of asian descent;the midpoint of the age range of people of asian descent" -Median_Age_Person_BlackOrAfricanAmericanAlone,"Median Age of Black or African American Population;Median Age: Black or African American Alone;Median age for population identifying as Black or African American Alone;Median age of Black or African American people;The median age of the Black or African American population;age of the average black person;the age at which half of the Black or African American population is older and half is younger;the age that divides the population of Black or African American people into two equal groups, half younger and half older;the age that is exactly in the middle of the age distribution of Black or African American people;the average age of a black person;the median age of black people;the median age of people who identify as Black or African American;the middle age of black or african americans" -Median_Age_Person_Female,Average age of females;Median Age of Females;Median Age: Female;Median age for population identifying as Female;Median age of females;The age at which half of the female population is older and half is younger;The age at which the female population is at its midpoint;The age at which the female population is split 50/50;The median age of the female population;the age at which 50% of women are older and 50% are younger;the age at which half of all women are older and half are younger;the average age of women;the midpoint of the age range for women -Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,"Median Age: Female, American Indian or Alaska Native Alone;Median age for population identifying as Female, American Indian or Alaska Native Alone;Median age of American Indian or Alaska Native Female Population;What is the median age of American Indian or Alaska Native females in;median age of alaska native or native american women;the age at which american indian or alaska native women are equally likely to be older or younger;the age at which half of american indian or alaska native women are older and half are younger;the average age of an american indian or alaska native woman;the middle age of american indian or alaska native women" -Median_Age_Person_Female_AsianAlone,"Median Age: Female, Asian Alone;Median age for population identifying as Female, Asian Alone;Median age of Asian Female Population;the age that half of asian women are older than and half are younger than;the age that most asian women are;the average age of asian women;the middle age of asian women" -Median_Age_Person_Female_BlackOrAfricanAmericanAlone,"Median Age of Black or African American Female Population;Median Age: Female, Black or African American Alone;Median age for population identifying as Female, Black or African American Alone;Median age of Black or African American females;the age at which black or african american women are evenly divided between younger and older;the age at which half of black or african american women are younger and half are older;the average age of a black or african american woman in the united states;the middle age of black or african american women in the us" -Median_Age_Person_Female_DivorcedInThePast12Months,"Median Age of Divorced Females in the Past 12 Months;Median Age: Female, Divorced in The Past 12 Months;Median age for population identifying as Female, Divorced in The Past 12 Months;average age of women who got divorced in the past 12 months in the united states;the age at which most women got divorced in the past 12 months in the us;the age at which most women got divorced in the past year;the average age of divorced women in the past 12 months;the middle age of women who got divorced in the past 12 months in the us;the most common age for women to get divorced in the past year;the typical age of women who got divorced in the past 12 months in the us;what is the average age of divorced women in the past 12 months?" -Median_Age_Person_Female_ForeignBorn,"Median Age of Foreign-Born Females;Median Age: Female, Foreign Born;Median age for population identifying as Female, Foreign Born;Median age of foreign-born females;The age at which half of all women who were born outside the US are older and half are younger;The average age of women who were born outside the United States;The half-way point in the age range of women who were born outside the United States;The median age of females born outside the United States;The middle age of women who were born outside the United States;the age at which half of all foreign-born women are older and half are younger;the age at which half of all women who were born in another country are older and half are younger;the age at which the number of women who were born in another country who are older is equal to the number of women who were born in another country who are younger;the average age of women who were born in another country" -Median_Age_Person_Female_HispanicOrLatino,"Median Age of Hispanic or Latino Females;Median Age: Female, Hispanic or Latino;Median age for population identifying as Female, Hispanic or Latino;Median age of Hispanic or Latino females;the age at which half of hispanic or latino women are older and half are younger;the age at which hispanic or latino women are most common;the average age of hispanic or latino women;the middle age of hispanic or latino women" -Median_Age_Person_Female_MarriedInThePast12Months,"Median Age of Married Females in the Past 12 Months;Median Age: Female, Married in The Past 12 Months;Median age for population identifying as Female, a Married in The Past 12 Months;Median age of females married in the past year;average age of married women in the past year;the age at which most women get married;the average age of women who got married in the past year;the median age of married women in the past 12 months" -Median_Age_Person_Female_Native,"Median Age of Females Born in the United States;Median Age: Female, Native;Median age for population identifying as Female, Native;Median age of females born in the United States;The age at which half of the female Native population is older and half is younger;The age at which the female Native population is evenly divided between those who are older and those who are younger;The age at which the female Native population is split into two equal groups, with half of the population being older and half being younger;The age that divides the population of Native American women into two equal groups, half older and half younger;the age at which half of all females born in the united states are older and half are younger;the age that divides females born in the united states into two equal groups, half older and half younger;the average age of a female born in the united states;the middle age of females born in the united states" -Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,"Median Age of Native Hawaiian or Other Pacific Islander Females;Median Age: Female, Native Hawaiian or Other Pacific Islander Alone;Median age for population identifying as Female, Native Hawaiian or Other Pacific Islander Alone;Median age of Native Hawaiian or Other Pacific Islander females;the age at which half of native hawaiian or other pacific islander females are older and half are younger;the average age of native hawaiian or other pacific islander females;the median age of native hawaiian or other pacific islander women;the midpoint of the age range for native hawaiian or other pacific islander females" -Median_Age_Person_Female_SomeOtherRaceAlone,"Median Age of Females of Some Other Race;Median Age: Female, Some Other Race Alone;Median age for population identifying as Female, Some Other Race Alone;Median age of females of some other race;the age at which 50% of females of some other race are older and 50% are younger;the age at which 50% of females of some other race are younger and 50% are older;the average age of females of some other race;the middle age of females of some other race" -Median_Age_Person_Female_TwoOrMoreRaces,"1 the average age of women who identify as two or more races;2 the middle age of women who identify as more than one race;3 the age that divides women who identify as two or more races in half, with half being older and half being younger;4 the age at which half of women who identify as two or more races are older and half are younger;Median Age of Females of Two or More Races;Median Age: Female, Two or More Races;Median age for population identifying as Female, Two or More Races;Median age of females of two or more races" -Median_Age_Person_Female_WhiteAlone,"Median Age of White Females;Median Age: Female, White Alone;Median age for population identifying as Female, White Alone;Median age of White females;the age at which half of white women are older and half are younger;the age at which white women are evenly divided between older and younger;the average age of white women;the middle age of white women" -Median_Age_Person_Female_WhiteAloneNotHispanicOrLatino,"Median Age of Non Hispanic or Latino White Females;Median Age: Female, White Alone Not Hispanic or Latino;Median age for population identifying as Female, White Alone Not Hispanic or Latino;Median age of non hispanic or Latino White females;the age that divides non-hispanic or latino white women into two equal groups, with half older and half younger;the age that half of non-hispanic or latino white women are older than and half are younger than;the average age of non-hispanic or latino white women;the middle age of non-hispanic or latino white women" -Median_Age_Person_Female_WorkedInThePast12Months,"Median Age: 16 - 64 Years, Female, Worked in The Past 12 Months;Median Of Female Workers in The Past 12 Months Aged 16 to 64 Years;half of all female workers aged 16 to 64 years have been employed in the past 12 months;the average female worker aged 16 to 64 years has been employed in the past 12 months;the most common number of months that a female worker aged 16 to 64 years has been employed in the past 12 months is 12;the number of months that female workers aged 16 to 64 years have been employed in the past 12 months is evenly distributed around 12 months" -Median_Age_Person_ForeignBorn,"Median Age of Foreign-Born Population;Median Age: Foreign Born;the age at which half of the people who were born in another country are younger and half are older;the age that divides the foreign-born population into two equal groups, half older and half younger;the age that half of the foreign-born population is older than and half is younger than;the average age of people who were born in another country" -Median_Age_Person_ForeignBorn_PlaceOfBirthAfrica,"Median Age African Foreign Born Population;Median Age: Foreign Born, Africa;what is the age at which half of the african foreign-born population is older and half is younger?;what is the average age of people who were born in africa and now live in the united states?;what is the median age of the african foreign-born population?;what is the middle age of the african immigrant population?" -Median_Age_Person_ForeignBorn_PlaceOfBirthAsia,"Median Age of Asia Foreign-Born Population;Median Age: Foreign Born, Asia;the age that half of the people born in asia who live in the us are older than and half are younger than;the age that is halfway between the youngest and oldest people born in asia who live in the us;the age that is the most common age for people born in asia who live in the us;the average age of people born in asia who live in the united states" -Median_Age_Person_ForeignBorn_PlaceOfBirthCaribbean,"Median Age of Population Foreign Born In The Caribbean;Median Age: Foreign Born, Caribbean;the age at which half of the foreign-born population in the caribbean is younger and half is older;the age that divides the foreign-born population in the caribbean into two equal groups, half younger and half older;the average age of the foreign-born population in the caribbean;the middle age of the foreign-born population in the caribbean" -Median_Age_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Median Age of Foreign-Born Population in Central America Except Mexico;Median Age: Foreign Born, Central America Except Mexico;the age at which half of the foreign-born people in central america, excluding mexico, are younger and half are older;the age that divides the foreign-born population in central america, excluding mexico, into two equal groups;the age that half of the foreign-born population in central america, excluding mexico, is;the average age of foreign-born people in central america, excluding mexico" -Median_Age_Person_ForeignBorn_PlaceOfBirthEasternAsia,"Median Age Of Foreign Borns In Eastern Asia;Median Age: Foreign Born, Eastern Asia;the age that divides foreign-born people in eastern asia into two equal groups, half older and half younger;the age that half of foreign-born people in eastern asia are older than and half are younger than;the age that is the halfway point between the youngest and oldest foreign-born people in eastern asia;the average age of foreign-born people in eastern asia" -Median_Age_Person_ForeignBorn_PlaceOfBirthEurope,"Median Age: Foreign Born, Europe;Median Ages of Foreign-Born Population in Europe;the age at which half of the foreign-born population in europe is older and half is younger;the age at which half of the immigrants in europe are older and half are younger;the average age of foreign-born people in europe;the median age of immigrants in europe" -Median_Age_Person_ForeignBorn_PlaceOfBirthLatinAmerica,"Median Age Of Foreign Born Population In Latin America;Median Age: Foreign Born, Latin America;the age that divides the foreign-born population in latin america into two equal groups;the age that half of foreign-born people in latin america are older than and half are younger than;the average age of foreign-born people in latin america;the middle age of foreign-born people in latin america" -Median_Age_Person_ForeignBorn_PlaceOfBirthMexico,"Median Age Of People Foreign Born In Mexico;Median Age: Foreign Born, Country/MEX;the age at which half of the people born in mexico who live in the united states are older and half are younger;the age that divides the population of people born in mexico who live in the united states into two equal groups, half younger and half older;the age that is halfway between the youngest and oldest people born in mexico who live in the united states;the average age of people born in mexico who live in the united states" -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthamerica,"1 the average age of immigrants in north america;3 the age that most immigrants in north america are;4 the age at which half of the immigrants in north america are older and half are younger;5 the age that divides the immigrant population in north america into two equal groups, with half being older and half being younger;Median Age of Foreign-Born Population in North America;Median Age: Foreign Born, Northamerica" -Median_Age_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Foreign-Born Population in Northern Western Europe;Median Age: Foreign Born, Northern Western Europe;the number of people in northern western europe who are not citizens of the country they live in;the number of people living in northern western europe who were not born there;the percentage of people in northern western europe who were born in another country;the proportion of the population of northern western europe that is foreign-born" -Median_Age_Person_ForeignBorn_PlaceOfBirthOceania,"Median Age of Foreign-Born Oceanians;Median Age: Foreign Born, Oceania;the age at which half of the foreign-born people from oceania are older and half are younger;the age that divides the foreign-born population of oceania into two equal groups, half older and half younger;the average age of foreign-born people from oceania;the middle age of people from oceania who were born in another country" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Median Age of Foreign-Born Population in South Central Asia;Median Age: Foreign Born, South Central Asia;the age at which half of the foreign-born population in south central asia is older and half is younger;the average age of immigrants in south central asia;the halfway point in the age range of immigrants in south central asia;the middle age of foreign-born people in south central asia" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Median Age For Foreign-Born Population in South Eastern Asia;Median Age: Foreign Born, South Eastern Asia;the age that divides the foreign-born population in southeast asia into two equal groups, half younger and half older;the age that divides the foreign-born population in southeast asia into two equal groups, with half older and half younger;the age that half of the foreign-born population in southeast asia is older than and half is younger than;what is the middle age of foreign-born people in southeast asia?" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthamerica,"Median Age Of Foreign Borns In South America;Median Age: Foreign Born, Southamerica;the age that divides the foreign-born population of south america in half;the age that half of all foreign-born people in south america are;the average age of foreign-born people in south america;the middle age of people who were born in another country and now live in south america" -Median_Age_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Foreign-Born Southern Eastern Europe Population with Median Age;Median Age: Foreign Born, Southern Eastern Europe;the age at which half of the foreign-born population from southern eastern europe is younger and half is older;the average age of people who were born in southern eastern europe and now live in the united states;the median age of the foreign-born population from southern eastern europe;the middle age of people who were born in southern eastern europe and now live in the united states" -Median_Age_Person_ForeignBorn_PlaceOfBirthWesternAsia,"Median Age Of Foreign Born Population in Western Asia;Median Age: Foreign Born, Western Asia;average age of foreign-born people in western asia;half of the foreign-born population in western asia is this age;the age at which half of the foreign-born population in western asia falls;the age that divides the foreign-born population in western asia into two equal groups" -Median_Age_Person_HispanicOrLatino,"Median Age of Hispanic or Latino Population;Median Age: Hispanic or Latino;Median age for population identifying as Hispanic or Latino;Median age of Hispanic or Latino people;the age at which half of hispanic or latino people are older and half are younger;the age in the middle of the range of ages for hispanic or latino people;the age that divides the hispanic or latino population into two equal groups, half younger and half older;the age that is halfway between the youngest and oldest hispanic or latino people" -Median_Age_Person_Male,Median Age of Males;Median Age: Male;Median age for population identifying as Male;Median age of males;the age at which half of the men are older and half are younger;the age that most men are;the average age of a man;the average age of men -Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,"Median Age of American Indian or Alaska Native Males;Median Age: Male, American Indian or Alaska Native Alone;Median age for population identifying as Male, American Indian or Alaska Native Alone;Median age of American Indian or Alaska Native males;The age at which half of the male American Indian or Alaska Native population is older and half is younger;The age at which the male American Indian or Alaska Native population is evenly divided between those who are older and those who are younger;The age at which the male American Indian or Alaska Native population is split down the middle;The median age of the male American Indian or Alaska Native population;The middle age of the male American Indian or Alaska Native population;the age at which an american indian or alaska native male is equally likely to be older or younger;the age at which half of american indian or alaska native males are older and half are younger;the average age of an american indian or alaska native male;the middle age of an american indian or alaska native male" -Median_Age_Person_Male_AsianAlone,"Median Age of Asian Males;Median Age: Male, Asian Alone;Median age for population identifying as Male, Asian Alone;Median age of Asian males;The average age of people who identify as male and Asian;The average age of people who identify as male and Asian alone;The average age of people who identify as male and Asian in the US;the age at which half of all asian males are younger and half are older;the age at which half of asian males are older and half are younger;the age that divides the asian male population into two equal groups, half younger and half older;the age that marks the midpoint of the asian male age distribution" -Median_Age_Person_Male_BlackOrAfricanAmericanAlone,"Median Age of Black or African American Males;Median Age: Male, Black or African American Alone;Median age for population identifying as Male, Black or African American Alone;Median age of Black or African American males;The age at which half of all Black or African American males are older and half are younger;The average age of a Black or African American male in the United States;The average age of a Black or African American male in the United States is;The middle point of the age distribution for Black or African American males in the United States;The midpoint of the age range for Black or African American males in the United States;the age that half of black or african american men are older than and half are younger than;the age that most black or african american men are;the average age of black or african american men;the middle age of black or african american men" -Median_Age_Person_Male_DivorcedInThePast12Months,"Average age of men who divorced in the past 12 months;Median Age of Divorced Males in the Past 12 Months;Median Age: Male, Divorced in The Past 12 Months;Median age for population identifying as Male, Divorced in The Past 12 Months;Median age of divorced males in the past 12 months;The age at which half of all men have been divorced;The age at which half of all men have gotten divorced in the past 12 months;The age at which most men get divorced;The median age of men who have been divorced in the past 12 months;average age of men who got divorced in the past year;the age at which most men got divorced in the past year;the middle age of men who got divorced in the past year;the typical age of men who got divorced in the past year" -Median_Age_Person_Male_ForeignBorn,"Median Age of Foreign-Born Males;Median Age: Male, Foreign Born;Median age for population identifying as Male, Foreign Born;Median age of foreign-born males;The age at which half of all foreign-born males are older and half are younger;The age at which half of all foreign-born males in the US are older and half are younger;The age that divides the foreign-born male population in the US into two equal groups, with half older and half younger;The average age of foreign-born males;the age at which half of all foreign-born men are older and half are younger;the age at which half of all foreign-born men are younger than that age and half are older than that age;the average age of foreign-born men;the middle age of foreign-born men" -Median_Age_Person_Male_HispanicOrLatino,"Median Age of Hispanic or Latino Males;Median Age: Male, Hispanic or Latino;Median age for population identifying as Male, Hispanic or Latino;Median age of Hispanic or Latino males;The age at which 50% of Hispanic or Latino males are younger and 50% are older;The age at which half of the Hispanic or Latino males are younger and half are older;The age in the middle of the range of ages for people who identify as Hispanic or Latino males;The age that divides the population of Hispanic or Latino males into two equal groups, half younger and half older;The average age of a Hispanic or Latino male;the age at which half of hispanic or latino males are older and half are younger;the age at which hispanic or latino males are most common;the average age of hispanic or latino males;the middle age of hispanic or latino males" -Median_Age_Person_Male_MarriedInThePast12Months,"Median Age of Married Males in the Past 12 Months;Median Age: Male, Married in The Past 12 Months;Median age for population identifying as Male, a Married in The Past 12 Months;Median age of married males in the past 12 months;The age at which half of the men who got married in the last 12 months were younger than and half were older than;The average age of a man who got married in the last 12 months;The average age of men who got married in the past 12 months;The median age of a male who got married in the last 12 months;The midpoint of the age range of men who got married in the last 12 months;the age that most married men were in the past 12 months;the average age of married men in the past 12 months;the middle age of married men in the past 12 months;the most common age of married men in the past 12 months" -Median_Age_Person_Male_Native,"Median Age of Males Born in the United States;Median Age: Male, Native;Median age for population identifying as Male, Native;Median age of males born in the United States;the age at which 50% of males born in the united states are older and 50% are younger;the age at which half of all males born in the united states are older and half are younger;the average age of a male at birth in the united states;the middle age of males born in the united states" -Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,"Median Age of Native Hawaiian or Other Pacific Islander Males;Median Age: Male, Native Hawaiian or Other Pacific Islander Alone;Median age for population identifying as Male, Native Hawaiian or Other Pacific Islander Alone;Median age of Native Hawaiian or Other Pacific Islander males;The average age of a male Native Hawaiian or Other Pacific Islander;The average age of people who identify as male and Native Hawaiian or Other Pacific Islander Alone;The midpoint of the age range for males who identify as Native Hawaiian or Other Pacific Islander;the age that half of native hawaiian or other pacific islander males are older than and half are younger than;the age that is most common among native hawaiian or other pacific islander males;the average age of native hawaiian or other pacific islander males;the midpoint of the age range for native hawaiian or other pacific islander males" -Median_Age_Person_Male_SomeOtherRaceAlone,"Median Age of Males of Some Other Race;Median Age: Male, Some Other Race Alone;Median age for population identifying as Male, Some Other Race Alone;Median age of males of some other race;The age at which the median of the population who identify as male and some other race alone occurs;The average age of people who identify as male and some other race alone;The median age of people identifying as male and some other race alone;The middle age of people who identify as male and some other race alone;The midpoint of the age distribution for people identifying as male and some other race alone;the age at which men of some other race are at their median age;the average age of men of other races;the average age of men of some other race;the middle age of men of some other race" -Median_Age_Person_Male_TwoOrMoreRaces,"Average age of people identifying as male and two or more races;Median Age of Males of Two or More Races;Median Age: Male, Two or More Races;Median age for population identifying as Male, Two or More Races;Median age of males of two or more races;The age at which half of the population identifying as male and two or more races is older and half is younger;The age at which the median of the population identifying as male and two or more races falls;The age at which the population identifying as male and two or more races is evenly divided between those who are older and those who are younger;The age at which the population identifying as male and two or more races is split 50/50;the age at which half of men who identify as two or more races are older and half are younger;the age that most men who identify as two or more races are;the average age of men who identify as two or more races;the middle age of men who identify as multiple races" -Median_Age_Person_Male_WhiteAlone,"Median Age of White Males;Median Age: Male, White Alone;Median age for population identifying as Male, White Alone;Median age of White males;The age at which a male, white person is as likely to be older as younger in the United States;The age at which a male, white person is in the middle of the age distribution in the United States;The age at which half of all male, white people in the United States are older and half are younger;The average age of a male, white person in the United States;The middle age of a male, white person in the United States;the age at which half of white males are older and half are younger;the age at which white males are most numerous;the average age of white males;the middle age of white males" -Median_Age_Person_Male_WhiteAloneNotHispanicOrLatino,"1 The median age of the male, white alone, not Hispanic or Latino population;Median Age of Non Hispanic or Latino White Males;Median Age: Male, White Alone Not Hispanic or Latino;Median age for population identifying as Male, White Alone Not Hispanic or Latino;Median age of non hispanic or Latino White males;The age at which half of all male, white, non-Hispanic or Latino people are older and half are younger;The age at which the number of male, white, non-Hispanic or Latino people who are older equals the number who are younger;The average age of a male, white, non-Hispanic or Latino person;The middle age of a male, white, non-Hispanic or Latino person;the age that half of non-hispanic or latino white males are older than and half are younger than;the age that most non-hispanic or latino white males are;the average age of non-hispanic or latino white males;the middle age of non-hispanic or latino white males" -Median_Age_Person_Male_WorkedInThePast12Months,"Male Population Aged 16 to 64 Years Who Worked in The Past 12 Months;Median Age: 16 - 64 Years, Male, Worked in The Past 12 Months;men aged 16 to 64 who worked in the past 12 months;the number of employed men aged 16 to 64;the number of men aged 16 to 64 who worked in the past 12 months;the number of men in the workforce aged 16 to 64" -Median_Age_Person_Native,Median Age: Native;Native Median Age;the age at which a native-born person is equally likely to be older or younger;the age at which a native-born person is in the middle of the age distribution;the age at which half of all native-born people are older and half are younger;the average age of a native-born person -Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,Average age of Native Hawaiian or Other Pacific Islander Alone population;Halfway point in the age range of Native Hawaiian or Other Pacific Islander Alone population;Median Age of Native Hawaiian or Other Pacific Islander Population;Median Age: Native Hawaiian or Other Pacific Islander Alone;Median age for population identifying as Native Hawaiian or Other Pacific Islander Alone;Median age of Native Hawaiian or Other Pacific Islander people;The age at which half of the Native Hawaiian or Other Pacific Islander Alone population is younger and half is older;The average age of people identifying as Native Hawaiian or Other Pacific Islander Alone;The average age of people who identify as Native Hawaiian or Other Pacific Islander Alone;the age at which half of native hawaiian or other pacific islander people are older and half are younger;the age at which native hawaiian or other pacific islander people are evenly divided between older and younger;the average age of native hawaiian or other pacific islander people;the middle age of native hawaiian or other pacific islander people -Median_Age_Person_NoHealthInsurance,"Average age of people who are civilians, have no health insurance, and are not institutionalized;Halfway point in the age range of people who are civilians, have no health insurance, and are not institutionalized;Median Age of Population With No Health Insurance;Median Age: Civilian, No Health Insurance, Non Institutionalized;Median age for population identifying as Civilian, No Health Insurance, Non Institutionalized;Median age of people with no health insurance;The average age of people who are civilians, do not have health insurance, and are not institutionalized;average age of people without health insurance;half of the population without health insurance are this age;the age at which the population is evenly split between those with and without health insurance;the average age of people without health insurance" -Median_Age_Person_NotAUSCitizen_Female_ForeignBorn,"Median Age of Foreign Born Females Who Are Not US Citizens;Median Age: Not A US Citizen, Female, Foreign Born;Median age for population identifying as Not A US Citizen, Female, Foreign Born;Median age of foreign-born females who are not US citizens;The age at which half of the people who are not US citizens, female, and foreign born are younger and half are older;The age at which half of the people who identify as not US citizens, female, and foreign born are younger and half are older;The average age of people who are not US citizens, female, and foreign born;The average age of people who are not US citizens, female, and foreign-born;The middle age of people who are not US citizens, female, and foreign born;the age at which foreign-born women who are not us citizens are most likely to be found;the age at which half of foreign-born women who are not us citizens are older and half are younger;the average age of foreign-born women who are not us citizens;the middle age of foreign-born women who are not us citizens" -Median_Age_Person_NotAUSCitizen_ForeignBorn,"Median Age Of Foreign Born Non-US Citizens;Median Age: Not A US Citizen, Foreign Born;the age that half of the people who were born in other countries and are not us citizens are older than and half are younger than;the age that most people who were born in other countries and are not us citizens are;the average age of foreign-born non-us citizens;the middle age of people who were born in other countries and are not us citizens" -Median_Age_Person_NotAUSCitizen_Male_ForeignBorn,"Median Age of Foreign Born Males Who Are Not US Citizens;Median Age: Not A US Citizen, Male, Foreign Born;Median age for population identifying as Not A US Citizen, Male, Foreign Born;Median age of foreign-born males who are not US citizens;The average age of a non-US citizen male foreign born person;The average age of people who are not US citizens, male, and foreign born;The average age of people who are not US citizens, male, and foreign-born;average age of foreign-born men who are not us citizens;the age that half of foreign-born men who are not us citizens are older than and half are younger than;the age that is most common for foreign-born men who are not us citizens;the middle age of foreign-born men who are not us citizens" -Median_Age_Person_ResidesInAdultCorrectionalFacilities,Median Age in Adult Correctional Facilities;Median Age: Adult Correctional Facilities;the age that is most common among people in adult correctional facilities;the age that most people in adult correctional facilities are;the average age of people in adult correctional facilities;the middle age of people in adult correctional facilities -Median_Age_Person_ResidesInCollegeOrUniversityStudentHousing,Median Age of Population In College or University Student Housing;Median Age: College or University Student Housing;what is the age range of most college students living in dorms?;what is the average age of college students living in dorms?;what is the median age of people living in college or university student housing?;what is the typical age of a college student living in a dorm? -Median_Age_Person_ResidesInGroupQuarters,Median Age Of Population In Group Quarters;Median Age: Group Quarters;age that divides the population of group quarters into two equal groups;average age of people living in group quarters;halfway point in the age range of people in group quarters;middle age of people in group quarters -Median_Age_Person_ResidesInInstitutionalizedGroupQuarters,Median Age Population in Institutionalized Group Quarters;Median Age: Institutionalized Group Quarters;the average age of people in institutionalized group quarters;what is the age of the average person institutionalized in group quarters?;what is the median age of people institutionalized in group quarters?;what is the middle age of people living in group quarters? -Median_Age_Person_ResidesInNoninstitutionalizedGroupQuarters,Median Age: Noninstitutionalized Group Quarters;Median Aged People Residing in Non-Institutionalized Group Quarters;mean age of people living in non-institutional group quarters;the age at which the median person living in non-institutional group quarters is this age;the median age of people living in non-institutional group quarters;the middle age of people living in non-institutional group quarters -Median_Age_Person_ResidesInNursingFacilities,Median Age of Population Residing in Nursing Facilities;Median Age: Nursing Facilities;the age that is in the middle of the range of ages of people who live in nursing homes;the average age of people living in nursing homes;the middle age of people in nursing facilities;the middle age of people who live in nursing facilities -Median_Age_Person_SomeOtherRaceAlone,"Median Age of Population of Some Other Race;Median Age: Some Other Race Alone;Median age for population identifying as Some Other Race Alone;Median age of people of some other race;The age at which half of the people who identify as Some Other Race Alone are older and half are younger;The age at which half of the population identifying as Some Other Race Alone is younger and half is older;The age that divides the population identifying as Some Other Race Alone into two equal groups, half younger and half older;The age that divides the population of people who identify as Some Other Race Alone into two equal groups;The median age of people identifying as Some Other Race Alone;the age at which 50% of people of some other race are younger and 50% are older;the age at which the population of some other race is evenly divided between younger and older people;the average age of people of some other race;what is the average age of people of some other race?" -Median_Age_Person_TwoOrMoreRaces,Median Age of Multiracial Population;Median Age: Two or More Races;Median age for population identifying as Two or More Races;Median age of people of two or more races;the age at which half of the population who identify as multiracial are older and half are younger;the age at which the number of people who identify as multiracial who are older is equal to the number of people who identify as multiracial who are younger;the average age of people who identify as multiracial;the middle age of people who identify as more than one race -Median_Age_Person_USCitizenByNaturalization_Female_ForeignBorn,"Median Age of Foreign-Born Females Who Are US Citizens by Naturalization;Median Age: US Citizen by Naturalization, Female, Foreign Born;Median age for population identifying as US Citizen by Naturalization, Female, Foreign Born;Median age of foreign-born females who are US citizens by naturalization;The age at which half of female foreign-born US citizens have become naturalized citizens;The average age of a female foreign-born US citizen by naturalization;The median age of female foreign-born US citizens who have become naturalized citizens;The middle age of female foreign-born US citizens who have become naturalized citizens;age at which most female immigrants become us citizens;average age of naturalized female immigrants;the median age of foreign-born women who have become us citizens through naturalization;typical age of female immigrants who have become us citizens" -Median_Age_Person_USCitizenByNaturalization_ForeignBorn,"Median Age of Foreign-Born US Citizen By Naturalization;Median Age: US Citizen by Naturalization, Foreign Born;the age at which most foreign-born us citizens become citizens;the average age of a foreign-born us citizen at the time of naturalization;the average age of a naturalized us citizen;the average age of naturalized us citizens" -Median_Age_Person_USCitizenByNaturalization_Male_ForeignBorn,"Median Age of Foreign-Born Males Who Are US Citizens by Naturalization;Median Age: US Citizen by Naturalization, Male, Foreign Born;Median age for population identifying as US Citizen by Naturalization, Male, Foreign Born;Median age of foreign-born males who are US citizens by naturalization;The age at which half of all male foreign-born US citizens have completed the process of naturalization;The average age of a male foreign-born US citizen by naturalization;The middle age of a male foreign-born US citizen by naturalization;the age at which half of foreign-born men have become us citizens through naturalization;the age at which half of foreign-born men have been naturalized as us citizens;the median age of foreign-born men who have become us citizens through naturalization;the middle age of foreign-born men who have been naturalized as us citizens" -Median_Age_Person_WhiteAlone,Median Age of White Population;Median Age: White Alone;Median age for population identifying as White Alone;Median age of White people;The age at which 50% of people who identify as White Alone are older and 50% are younger;The age at which half of the population who identify as White Alone are older and half are younger;the age at which half of white people are older and half are younger in the united states;the age at which white people are evenly divided between being older and younger in the united states;the average age of white people in the united states;the middle age of white people in the united states -Median_Age_Person_WhiteAloneNotHispanicOrLatino,"Median Age of Non Hispanic or Latino White Population;Median Age: White Alone Not Hispanic or Latino;Median age for population identifying as White Alone Not Hispanic or Latino;Median age of non hispanic or Latino White people;The age at which 50% of the population who identify as White Alone Not Hispanic or Latino are older and 50% are younger;The age at which half of the population who identify as White Alone Not Hispanic or Latino are older and half are younger;The age at which the population who identify as White Alone Not Hispanic or Latino is evenly divided between those who are older and those who are younger;The median age of the White Alone Not Hispanic or Latino population;The middle age of the White Alone Not Hispanic or Latino population;the age at which half of the non-hispanic or latino white population is older and half is younger;the age at which half of the non-hispanic or latino white population is younger than that age and half is older than that age;the age that divides the non-hispanic or latino white population into two equal groups, half younger and half older;the middle age of non-hispanic or latino white people" -Median_Age_Person_WorkedInThePast12Months,"Median Age Of Workers Aged 16 to 64 Years Who Worked In The Past 12 Months;Median Age: 16 - 64 Years, Worked in The Past 12 Months;the age that half of people who worked in the past 12 months and are aged 16 to 64 are older than and half are younger than;the age that most people who worked in the past 12 months and are aged 16 to 64 are;the average age of people who worked in the past 12 months and are aged 16 to 64;the middle age of people who worked in the past 12 months and are aged 16 to 64" -Median_Area_Farm,Median Area of Farm;Median_Area_Farm;Middle value for the area of land on a farm;median farm size;size of a farm that half are smaller than and half are larger than;the size of a farm that falls in the middle of the range of farm sizes;the size of a farm that is in the 50th percentile of farm sizes;the size of a farm that is the 50th percentile of farm sizes -Median_Concentration_AirPollutant_CO,Median Concentration: Carbon Monoxide -Median_Concentration_AirPollutant_NO2,Median Concentration: Nitrogen Dioxide -Median_Concentration_AirPollutant_Ozone,Median Concentration of Air Pollutant in The Ozone;Median Ozone Concentration;the middle ozone concentration;the ozone concentration that is at the 50th percentile;the ozone concentration that is halfway between the highest and lowest ozone concentrations;the ozone concentration that is in the middle -Median_Concentration_AirPollutant_PM2.5,Median Concentration of Air Pollutant in PM 2.5;Median PM2.5 Concentration;the average concentration of particulate matter with a diameter of 25 micrometers or less -Median_Concentration_AirPollutant_SO2,Median Concentration: Sulfur Dioxide -Median_Cost_HousingUnit_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,"Median Cost of Housing Unit (Selected Monthly Owner Costs): Occupied Housing Unit, Owner Occupied;Median Cost of Housing Unit Occupied By Owners;the average cost of a home owned by an individual;the average price of a home owned by its occupants;the middle value of the prices of homes that are owned by their occupants;the price of a home that is owned by its occupants that is in the middle of the range of prices" -Median_Cost_HousingUnit_WithMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,Median Cost of Housing Unit (Selected Monthly Owner Costs): With Mortgage;Median Cost of Housing Units with Mortgage;the average price of a home with a mortgage;the middle value of home prices with mortgages;the most common price of a house with a mortgage;the typical cost of a house with a mortgage -Median_Cost_HousingUnit_WithoutMortgage_OccupiedHousingUnit_OwnerOccupied_SelectedMonthlyOwnerCosts,Median Cost of Housing Unit (Selected Monthly Owner Costs): Without Mortgage;Median Cost of Housing Units Without Mortgage;the average price of a house without a mortgage;the median price of a house without a mortgage;the middle price of a house without a mortgage;the typical price of a house without a mortgage -Median_Earnings_Person,"Average income for people who identify as With Earnings;How much money does the average person with earnings make?;Median Earnings for All People;Median Earnings: With Earnings;Median earnings for all people;Median income for population identifying as With Earnings;The average amount of money earned by people who identify as With Earnings;average income of people who report having earnings;middle value of income reported by people who report having earnings;the amount of money that half of all people in the united states earn;the amount of money that is in the middle of the range of earnings for all people;the middle value of all the earnings in the united states;what is the amount of money that half of all people earn, and half of all people earn more than?" -Median_Earnings_Person_25OrMoreYears,"Median Earnings Of Population Aged 25 or More Years;Median Earnings: 25 Years or More, With Earnings;the amount of money that half of the population aged 25 or older makes;the amount of money that the median person aged 25 or older makes;the amount of money that the middle 50% of people aged 25 or older makes;the average amount of money earned by people aged 25 or older" -Median_Earnings_Person_25OrMoreYears_Female,"Median Earnings of Female Population Aged 25 Years or More;Median Earnings: 25 Years or More, Female, With Earnings;how much money do women make on average after age 25?;what is the average female wage after age 25?;what is the average woman's salary after 25 years old?;what is the median income for women over 25?" -Median_Earnings_Person_25OrMoreYears_Male,"MedIan Earnings Of Male Population Aged 25 Years;Median Earnings: 25 Years or More, Male, With Earnings;how much money do men aged 25 earn on average?;what is the average salary of men aged 25?;what is the median income of men aged 25?;what is the typical income of men aged 25?" -Median_Earnings_Person_Female,"Median Earnings for Females;Median Earnings: Female, With Earnings;Median earnings for females;Median income for population identifying as Female, With Earnings;The median income for females;The median income for females with earnings;The median income of females with earnings;the median income for women;the middle value of the earnings of women in the us;what is the median income for women?;what's the median income for women?" -Median_Earnings_Person_Female_ResidesInAdultCorrectionalFacilities,"Median Earnings for Females Living in Adult Correctional Facilities;Median Earnings: Female, With Earnings, Adult Correctional Facilities;Median earnings for females living in adult correctional facilities;Median income for population identifying as Female, With Earnings, in Adult Correctional Facilities;What is the median income for females in adult correctional facilities?;what are the average earnings of female inmates?;what are the median earnings for women in correctional facilities?;what are the median earnings of female inmates?;what is the median income for women in jail?" -Median_Earnings_Person_Female_ResidesInCollegeOrUniversityStudentHousing,"Median Earnings for Females Living in College or University Student Housing;Median Earnings: Female, With Earnings, College or University Student Housing;Median earnings for females living in college or university student housing;Median income for population identifying as Female, With Earnings, in College or University Student Housing;The amount of money that half of women with earnings living in college or university student housing make more than, and the other half make less than;The median income for females living in college or university student housing who have earnings;The middle amount of money that women with earnings make living in college or university student housing;What is the median income for female students in college or university student housing?;What is the middle income for female students in college or university student housing?;what is the median salary for female college students living in student housing?" -Median_Earnings_Person_Female_ResidesInGroupQuarters,"Median Earnings for Females Living in Group Quarters;Median Earnings: Female, With Earnings, Group Quarters;Median earnings for females living in group quarters;Median income for population identifying as Female, With Earnings, in Group Quarters;The median income for females with earnings in group quarters;The median income for women who are employed and live in group quarters;the amount of money that half of the women living in group homes make more than, and half make less than;the amount of money that half of women living in group quarters earn more than, and half earn less than;the middle value of the earnings of women living in group quarters;what is the median income for women who live in group quarters?" -Median_Earnings_Person_Female_ResidesInInstitutionalizedGroupQuarters,"Median Earnings for Females Living in Institutionalized Group Quarters;Median Earnings: Female, With Earnings, Institutionalized Group Quarters;Median earnings for females living in institutionalized group quarters;Median income for population identifying as Female, With Earnings, in Institutionalized in Group Quarters;The median income for women who are institutionalized in group quarters and have earnings;The middle 50% of women institutionalized in group quarters and have earnings make between this amount and this amount;What is the median income for women institutionalized in group quarters?;the amount of money that half of the women living in institutions earn more than, and half earn less than" -Median_Earnings_Person_Female_ResidesInJuvenileFacilities,"Median Earnings for Females Living in Juvenile Facilities;Median Earnings: Female, With Earnings, Juvenile Facilities;Median earnings for females living in juvenile facilities;Median income for population identifying as Female, With Earnings, in Juvenile Facilities;The median income for females in juvenile facilities who have earnings;The median income of females in juvenile facilities;The middle value of the earnings of females in juvenile facilities;what is the median income for girls in juvenile detention centers?;what is the median income for girls in juvenile facilities?;what is the median salary for girls in juvenile facilities?" -Median_Earnings_Person_Female_ResidesInMilitaryQuartersOrMilitaryShips,"Median Earnings for Females Living in Military Quarters or Military Ships;Median Earnings: Female, With Earnings, Military Quarters or Military Ships;Median earnings for females living in military quarters or military ships;Median income for population identifying as Female, With Earnings, in Military Quarters or Military Ships;What is the median income for women in the military;What is the median income for women who live in military quarters or on military ships;what is the median income for females living in military quarters or military ships?;what is the median income for women living in military quarters or military ships?;what is the median income for women who live in military quarters or military ships?;what is the median income for women who live in military quarters or on military ships?" -Median_Earnings_Person_Female_ResidesInNoninstitutionalizedGroupQuarters,"Median Earnings for Females Living in Noninstitutionalized Group Quarters;Median Earnings: Female, With Earnings, Noninstitutionalized Group Quarters;Median earnings for females living in noninstitutionalized group quarters;Median income for population identifying as Female, With Earnings, in Noninstitutionalized Group Quarters" -Median_Earnings_Person_Female_ResidesInNursingFacilities,"Median Earnings for Females Living in Nursing Facilities;Median Earnings: Female, With Earnings, Nursing Facilities;Median earnings for females living in nursing facilities;Median income for population identifying as Female, With Earnings, in Nursing Facilities;The amount of money earned by the middle 50% of females working in nursing facilities;The median income for females working in nursing facilities;The median income for women working in nursing facilities;The middle income for women working in nursing facilities;the amount of money that half of women living in nursing facilities make, and half of women living in nursing facilities make less;the middle amount of money that women living in nursing facilities make;what is the median income for women living in nursing homes?" -Median_Earnings_Person_Male,"Median Earnings for Males;Median Earnings: Male, With Earnings;Median earnings for males;Median income for population identifying as Male, With Earnings;The median income for males with earnings;what is the median income for men?" -Median_Earnings_Person_Male_ResidesInAdultCorrectionalFacilities,"Median Earnings for Males Living in Adult Correctional Facilities;Median Earnings: Male, With Earnings, Adult Correctional Facilities;Median earnings for males living in adult correctional facilities;Median income for population identifying as Male, With Earnings, in Adult Correctional Facilities;the amount of money that half of the men in adult correctional facilities make, and the other half make less;the median income of men living in adult correctional facilities;the middle amount of money that men in adult correctional facilities make;what is the median income for male inmates?" -Median_Earnings_Person_Male_ResidesInCollegeOrUniversityStudentHousing,"Median Earnings for Males Living in College or University Student Housing;Median Earnings: Male, With Earnings, College or University Student Housing;Median earnings for males living in college or university student housing;Median income for population identifying as Male, With Earnings, in College or University Student Housing;The amount of money that half of males with earnings living in college or university student housing make more than, and the other half make less than;The median income for males with earnings living in college or university student housing;The middle value of the income distribution for males with earnings living in college or university student housing;what is the median income for male college students living in student housing?;what is the median salary for male college students living in student housing?;what is the median salary of male college students living in student housing?" -Median_Earnings_Person_Male_ResidesInGroupQuarters,"Median Earnings for Males Living in Group Quarters;Median Earnings: Male, With Earnings, Group Quarters;Median earnings for males living in group quarters;Median income for population identifying as Male, With Earnings, in Group Quarters;The amount of money that divides the population of males with earnings in group quarters into two equal groups, half with incomes above the median and half with incomes below the median;The amount of money that half of all males with earnings in group quarters make more than, and the other half make less than;The median income of males with earnings in group quarters;The middle value in the range of incomes for males with earnings in group quarters;the amount of money that half of men living in group quarters earn, and half earn less;the amount of money that half of men who live in group quarters earn more than, and the other half earn less than;the middle value of the earnings of men who live in group quarters;what is the median income for men who live in group quarters?" -Median_Earnings_Person_Male_ResidesInInstitutionalizedGroupQuarters,"1 The median income for men in institutionalized group quarters with earnings;Median Earnings for Males Living in Institutionalized Group Quarters;Median Earnings: Male, With Earnings, Institutionalized Group Quarters;Median earnings for males living in institutionalized group quarters;Median income for population identifying as Male, With Earnings, in Institutionalized Group Quarters;The middle value of the earnings of men in institutionalized group quarters" -Median_Earnings_Person_Male_ResidesInJuvenileFacilities,"Median Earnings for Males Living in Juvenile Facilities;Median Earnings: Male, With Earnings, Juvenile Facilities;Median earnings for males living in juvenile facilities;Median income for population identifying as Male, With Earnings, in Juvenile Facilities;what is the median income for males living in juvenile facilities?;what is the median income of males living in juvenile facilities?;what is the median salary for boys in juvenile detention centers?;what is the median salary for males living in juvenile facilities?" -Median_Earnings_Person_Male_ResidesInMilitaryQuartersOrMilitaryShips,"Median Earnings for Males Living in Military Quarters or Military Ships;Median Earnings: Male, With Earnings, Military Quarters or Military Ships;Median earnings for males living in military quarters or military ships;Median income for population identifying as Male, With Earnings, in Military Quarters or Military Ships;The median income for males living in military quarters or military ships;what is the median income for men who live in military quarters or military ships?;what is the median income for men who live in military quarters or on military ships?;what is the median salary for men living in military quarters or military ships?" -Median_Earnings_Person_Male_ResidesInNoninstitutionalizedGroupQuarters,"Median Earnings for Males Living in Noninstitutionalized Group Quarters;Median Earnings: Male, With Earnings, Noninstitutionalized Group Quarters;Median earnings for males living in noninstitutionalized group quarters;Median income for population identifying as Male, With Earnings, in Noninstitutionalized in Group Quarters" -Median_Earnings_Person_Male_ResidesInNursingFacilities,"Median Earnings for Males Living in Nursing Facilities;Median Earnings: Male, With Earnings, Nursing Facilities;Median earnings for males living in nursing facilities;Median income for population identifying as Male, With Earnings, in Nursing Facilities;The median income for males working in nursing facilities;What is the median income for males working in nursing facilities?;what is the median income of men living in nursing facilities?;what is the median salary for men living in nursing homes?;what is the middle value of the earnings of men living in nursing facilities?" -Median_GrossRent_HousingUnit_WithCashRent_OccupiedHousingUnit_RenterOccupied,Median Gross Rent of Housing Unit: With Cash Rent;Median Gross Rent of Housing Units With Cash Rent;the average monthly rent for housing units with cash rent;the half-way point of monthly rents for housing units with cash rent;the median gross rent of housing units with cash rent;the middle value of monthly rents for housing units with cash rent -Median_HomeValue_HousingUnit_OccupiedHousingUnit_OwnerOccupied,"Median Home Value of Housing Unit: Occupied Housing Unit, Owner Occupied;Median Home Value of Occupied Housing Units;the median home value for owner-occupied housing units is;the median value of a home that is occupied by its owner;the middle value of homes that are owned by their occupants;the price of a home that is in the middle of the range of all homes that are owned by their occupants" -Median_Income_Household,"Household income;Median Income for All Households;Median Income of Household;Median household income;Median income for all households;Middle household income;Typical household income;the amount of money that a typical household in the united states makes;the amount of money that half of all households in the united states make, with the other half making more or less;the income level at which half of all households in the united states earn more and half earn less;the middle value of all household incomes in the united states" -Median_Income_Household_FamilyHousehold,"Median Income for Family Households;Median Income of Household: Family Household, With Income;Median Income of Household: in a family household with Income;Median income for family households;The amount of money that half of all families in the United States make, with the other half making more or less;The income that divides households into two equal groups, half with higher incomes and half with lower incomes;The middle income of a household with income;The middle value of household income in the United States;in a family household with Income"" without repeating the reformulations or answering the question;the amount of money that half of all families in the us make;the amount of money that half of all family households in the us make, with the other half making more;the income that divides the family households in the us into two equal groups, half with higher incomes and half with lower incomes" -Median_Income_Household_ForeignBorn_PlaceOfBirthAfrica,"Households of Foreign-Born Population in Africa;Median Income of Household: Foreign Born, Africa;households headed by immigrants in africa;households with members who are immigrants to africa" -Median_Income_Household_ForeignBorn_PlaceOfBirthAsia,"Median Income of Household: Foreign Born, Asia;Median Income of Households of Foreign-Born Population in Asia;the amount of money that half of all households with foreign-born residents in asia make, with the other half making more or less;the average income of households with foreign-born residents in asia;the middle value of household incomes for people who were born in another country and now live in asia;the typical amount of money that households with foreign-born residents in asia make" -Median_Income_Household_ForeignBorn_PlaceOfBirthCaribbean,"Foreign-Born in the Caribbean Households;Median Income of Household: Foreign Born, Caribbean;caribbean households that include foreign-born people;caribbean households with foreign-born members;foreign-born people in caribbean households;people born outside of the caribbean who live in caribbean households" -Median_Income_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,"Median Income For Foreign-Born Population in Central America, Except Mexico Households;Median Income of Household: Foreign Born, Central America Except Mexico;the average income of households with foreign-born residents from central america, excluding mexico;the income level that half of households with foreign-born residents from central america, excluding mexico earn more than and half earn less than;the middle income of households with foreign-born residents from central america, excluding mexico;the midpoint of the income range of households with foreign-born residents from central america, excluding mexico" -Median_Income_Household_ForeignBorn_PlaceOfBirthEasternAsia,"Foreign-Born Population Median Income of Households in Eastern Asia;Median Income of Household: Foreign Born, Eastern Asia;average income of households headed by foreign-born people in eastern asia;median household income of foreign-born people in eastern asia;the average income of foreign-born households in eastern asia;the median household income of foreign-born people in eastern asia" -Median_Income_Household_ForeignBorn_PlaceOfBirthEurope,"Median Income of Household: Foreign Born, Europe;Median Income of Households of Foreign-Born Population in Europe;the average income of households with foreign-born members in europe;the median household income of foreign-born people in europe;the middle value of household incomes for people who were born outside of europe;what is the average income of foreign-born households in europe?" -Median_Income_Household_ForeignBorn_PlaceOfBirthLatinAmerica,"Median Income of Household: Foreign Born, Latin America;Median Income of Households of Foreign-Born Population in Latin America;the amount of money that half of households headed by foreign-born people in latin america make, while the other half make more;the amount of money that is typical for households headed by foreign-born people in latin america to make;the average amount of money that households headed by foreign-born people in latin america make;the middle value of the incomes of households headed by foreign-born people in latin america" -Median_Income_Household_ForeignBorn_PlaceOfBirthMexico,"Median Income of Household: Foreign Born, Country/MEX;Median Income of Households of Foreign-Born Population in Mexico;how much money do foreign-born households in mexico make, on average?;what is the average income of foreign-born households in mexico?;what is the median income of foreign-born households in mexico?;what is the typical income of foreign-born households in mexico?" -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthamerica,"Median Income of Foreign-Born Households in North America;Median Income of Household: Foreign Born, Northamerica;the amount of money that the typical immigrant household in north america makes;the average income of households headed by immigrants in north america;the median household income of immigrants in north america;the typical income of households headed by immigrants in north america" -Median_Income_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,"Median Income of Household: Foreign Born, Northern Western Europe;Population Foreign-Born in Northern Western Europe with Two Parents;foreign-born population in northern western europe with two parents;number of people born outside of northern western europe who live there with two parents;percentage of the population of northern western europe who were born abroad and have two parents;population of northern western europe with two parents who were born abroad" -Median_Income_Household_ForeignBorn_PlaceOfBirthOceania,"Median Income of Household: Foreign Born, Oceania;Median Income of Households Foreign-Born in Oceania;what is the average income of foreign-born households in oceania?;what is the median income of foreign-born households in oceania?;what is the middle-income of foreign-born households in oceania?;what is the typical income of foreign-born households in oceania?" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,"Foreign Borns In South Central Asia Median Income Household;Median Income of Household: Foreign Born, South Central Asia;household income of people who were born in south central asia but now live in another country;the middle 50% of household incomes for foreign-born people in south central asia;the middle-of-the-road income for households headed by foreign-born people in south central asia;the middle-of-the-road income of households in south central asia headed by a foreign-born person" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,"Median Income of Foreign-Born Households in South Eastern Asia;Median Income of Household: Foreign Born, South Eastern Asia;the amount of money that half of foreign-born households in south east asia earn more than, and half earn less than;the amount of money that is typical for foreign-born households in south east asia to earn;the average amount of money that foreign-born households earn in south east asia;the middle value of the incomes of foreign-born households in south east asia" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthamerica,"Median Income of Household: Foreign Born, Southamerica;South America Foreign Borns Median Household Income;the amount of money that half of all households in south america headed by a foreign-born person earn, with the other half earning more or less;the average income of a household in south america headed by a foreign-born person;the median household income of foreign-born people in south america;the middle 50% of household incomes in south america, for people who were born in another country" -Median_Income_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,"Median Income Of Foreign Born in Southern Eastern Europe Households;Median Income of Household: Foreign Born, Southern Eastern Europe;the average income of foreign-born households in southern eastern europe;the income that divides the foreign-born households in southern eastern europe into two equal groups, half with higher incomes and half with lower incomes;the income that half of foreign-born households in southern eastern europe earn more than, and half earn less than;the income that is in the middle of the range of incomes of foreign-born households in southern eastern europe" -Median_Income_Household_ForeignBorn_PlaceOfBirthWesternAsia,"1 the average income of households headed by foreign-born people in western asia;2 the middle value of the incomes of households headed by foreign-born people in western asia;3 the amount of money that half of the households headed by foreign-born people in western asia earn, while the other half earn more;5 the amount of money that most households headed by foreign-born people in western asia earn;Median Income of Household: Foreign Born, Western Asia;Median Income of Households of Foreign-Born Population in Western Asia" -Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Median Income of Households Identifying as American Indian or Alaska Native;Median income of households identifying as American Indian or Alaska Native;Median income of households with an American Indian or Alaska Native householder;The amount of money earned by a typical American Indian or Alaska Native household;The amount of money that most American Indian or Alaska Native households earn;The average amount of money earned by an American Indian or Alaska Native household;The average amount of money earned by households identifying as American Indian or Alaska Native;The typical income of an American Indian or Alaska Native household;the amount of money that the typical american indian or alaska native household makes;the average income of households identifying as american indian or alaska native;the median household income of american indians or alaska natives;the typical income of an american indian or alaska native household -Median_Income_Household_HouseholderRaceAsianAlone,How much money do Asian households make on average?;Median Income of Households Identifying as Asian;Median income of households identifying as Asian;Median income of households with an Asian householder;The average amount of money earned by households identifying as Asian;The average amount of money that Asian households make;The average income of households identifying as Asian;the amount of money that the average asian household makes;the average income of households identifying as asian;the middle-ground income of asian households;the typical income of an asian household -Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,"Median Income of Households Identifying as Black or African American;Median income of households identifying as Black or African American;Median income of households with a Black or African American householder;The amount of money that half of Black or African American households make more than, and the other half make less than;The amount of money that is earned by the typical Black or African American household;The median income of Black or African American households;The middle income of Black or African American households;The typical income of Black or African American households;the amount of money that black or african american households typically earn;the average income of black or african american households;the middle income of black or african american households;the typical income of black or african american households" -Median_Income_Household_HouseholderRaceHispanicOrLatino,How much money do Hispanic or Latino households make on average?;Median Income of Households Identifying as Hispanic or Latino;Median income of households identifying as Hispanic or Latino;Median income of households with a Hispanic or Latino householder;The amount of money that Hispanic or Latino households typically make;The average income of Hispanic or Latino households;The median household income for Hispanics or Latinos;the amount of money that the typical hispanic or latino household earns;the average income of hispanic or latino households;the median household income of hispanic or latino people;the typical income of hispanic or latino households -Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,"Median Income of Households Identifying as Native Hawaiian or Other Pacific Islander;Median income of households identifying as Native Hawaiian or other Pacific Islander;Median income of households with a Native Hawaiian or other Pacific Islander householder;The amount of money that half of Native Hawaiian or other Pacific Islander households earn more than, and half earn less than;The amount of money that the typical Native Hawaiian or other Pacific Islander household earns;The average household income of Native Hawaiian or other Pacific Islander people;The median annual household income of Native Hawaiian or other Pacific Islander people;The middle value in the distribution of household incomes among Native Hawaiian or other Pacific Islander people;how much money do native hawaiian or other pacific islander households make on average?;what is the average household income for native hawaiian or other pacific islanders?;what is the median household income for native hawaiian or other pacific islanders?;what is the typical income for a native hawaiian or other pacific islander household?" -Median_Income_Household_HouseholderRaceSomeOtherRaceAlone,Median Income of Household: Some Other Race Alone;Median Income of Some Other Races Households;how much money do households of other races make on average?;what is the average income of households of other races?;what is the median income of households of other races?;what is the typical income of households of other races? -Median_Income_Household_HouseholderRaceTwoOrMoreRaces,"1 the median household income for multiracial families;2 the amount of money that the typical multiracial family earns in a year;3 the middle point in the range of household incomes for multiracial families;4 the amount of money that half of all multiracial families earn more than, and half earn less than;Median Income of Household: Two or More Races;Multiracial Median Household Income" -Median_Income_Household_HouseholderRaceWhiteAlone,Household income of White Americans;Median Income of Households Identifying as White;Median income of households identifying as White;Median income of households with a White householder;The amount of money that a typical White household makes in a year;The average amount of money earned by households that identify as White;The average income of White households;The median household income of white Americans;the amount of money that half of white households make more than and half of white households make less than;the average amount of money that white households make;the middle value of the incomes of white households;the typical income of white households -Median_Income_Household_HouseholderRaceWhiteAloneNotHispanicOrLatino,"Median Income of Household: White Alone Not Hispanic or Latino;Median Income of White And Non-Hispanic Households;the amount of money that half of white and non-hispanic households make, with the other half making more;the amount of money that is typical for white and non-hispanic households to make;the average income of white and non-hispanic households;the middle income of white and non-hispanic households" -Median_Income_Household_MarriedCoupleFamilyHousehold,"Median Income for Married Couple Family Households;Median Income of Household: Married Couple Family Household, With Income;Median Income of Household: a Married Couple in a family household with Income;Median income for married couple family households;The median income of married couples in family households with income;The middle value of money made by married couples in family households with income;What is the median household income for a married couple in a family?;What is the median income for a married couple in a family household?;the half-way point in the income distribution of married couple family households;the income level at which half of married couple family households earn more and half earn less;the median income for married couple family households;the middle income of married couple family households" -Median_Income_Household_NoHealthInsurance,Median Income for Households Without Health Insurance;Median Income of Household: No Health Insurance;Median income for households without health insurance;The amount of money that half of households without health insurance make more than and half make less than;The average amount of money a household without health insurance makes;The middle amount of money a household without health insurance makes;the average income for households without health insurance;the middle-of-the-road income for households without health insurance;the most common income for households without health insurance;the typical income for households without health insurance -Median_Income_Household_NonfamilyHousehold,"Median Income for Nonfamily Households;Median Income of Household: Nonfamily Household, With Income;Median Income of Household: a Nonfamily Household, With Income;Median income for nonfamily households;The amount of money that half of nonfamily households with income make more than, and the other half make less than;The income that divides the nonfamily households with income into two equal groups, half with incomes above it and half with incomes below it;The median income of a nonfamily household with income;The middle value of the incomes of nonfamily households with income;the amount of money that half of nonfamily households in the united states earn, with the other half earning more;the amount of money that half of nonfamily households make more than and half make less than;the amount of money that is in the middle of the range of incomes for nonfamily households;the middle value of the incomes of all nonfamily households in the united states" -Median_Income_Household_WithFoodStampsInThePast12Months,Average income of households that received food stamps in the past 12 months;Median Income for Households With Food Stamps in the Past 12 Months;Median Income of Household: With Food Stamps in The Past 12 Months;Median income for households with food stamps in the past 12 months;The median household income of those who received food stamps in the past 12 months;The middle-income of households that received food stamps in the past year;The typical household income of those who received food stamps in the past year;the average amount of money earned by households that received food stamps in the past year;the middle value of the incomes of households that received food stamps in the last year;the middle value of the incomes of households that received food stamps in the past year;the typical income of households that received food stamps in the past year -Median_Income_Household_WithoutFoodStampsInThePast12Months,"Median Income for Households Without Food Stamps in the Past 12 Months;Median Income of Household: Without Food Stamps in The Past 12 Months;Median income for households without food stamps in the past 12 months;Without Food Stamps in The Past 12 Months"";Without Food Stamps in The Past 12 Months"" in a colloquial way;the middle income of households that did not receive food stamps in the past year;the middle income of households that did not use food stamps in the past year;the middle value of the incomes of households that did not use food stamps in the last year;the middle value of the incomes of households that did not use food stamps in the past year" -Median_Income_Person,Average income of the population;Halfway point between the highest and lowest incomes;Mean income of the population;Median Income;Median Income of a Population;Median income;Median income of the population;Median pay;Middle income in a population;Middle income of the population;Typical income of the population;the amount of money that half of the people in a population earn more than and the other half earn less than;the income that half of the population earns more than and half earns less than;the income that is in the middle of the income distribution;the middle income of a population -Median_Income_Person_15OrMoreYears_Female_WithIncome,Median Income of Women (15 Years or Older) With Income;Median income of women (15 years or older) with income;The amount of money that half of women (15 years or older) with income make more than and the other half make less than;The amount of money that is in the middle of the range of incomes for women (15 years or older) with income;The average amount of money that women (15 years or older) with income make;The median income of women aged 15 and older who have income;The middle amount of money that women (15 years or older) with income earn;the amount of money earned by women aged 15 or older who are in the 50th percentile of the income distribution;the amount of money earned by women aged 15 or older who are in the middle of the income distribution;the average amount of money earned by women aged 15 or older who have an income;the middle amount of money earned by women aged 15 or older who have an income -Median_Income_Person_15OrMoreYears_Male_WithIncome,Median Income of Men (15 Years or Older) With Income;Median income of men (15 years or older) with income;The average amount of money that men (15 years or older) make;The median income of men aged 15 and older who have income;the half-way point in the income distribution of men aged 15 and older who have an income;the income level at which half of men aged 15 and older who have an income earn more and half earn less;the median income of men aged 15 and older who have an income;the middle income of men aged 15 and older who have an income -Median_Income_Person_15OrMoreYears_WithIncome_BornInOtherStateInTheUnitedStates,Median Income For Population Born in Other States in The United States;Median Income: Born in Other State in The United States;income of people born in other states in the united states;the amount of money that people born in other states in the united states typically make;the average income of people born in other states in the united states;the typical income of people born in other states in the united states -Median_Income_Person_15OrMoreYears_WithIncome_BornInStateOfResidence,"Median Income Of Population Born in State Of Residence;Median Income: Born in State of Residence;average income of people born in the state they live in;how much money people born in the state they live in make, on average;income of people born in the state they live in, on average;the amount of money people born in the state they live in make, on average" -Median_Income_Person_15OrMoreYears_WithIncome_ForeignBorn,"Median Income of Foreign-Born Population;Median Income: Foreign Born;how much money do foreign-born people make?;the amount of money that half of all foreign-born people in the us make, with the other half making more or less;the typical income of people who were born in a different country;what is the average income of people who were born in another country?" -Median_Income_Person_15OrMoreYears_WithIncome_NativeBornOutsideTheUnitedStates,Median Income of Native-Born Population Outside The United States;Median Income: Native Born Outside The United States;how much money do native-born people living outside the united states make on average?;how much money do native-born people living outside the us make on average?;what is the median income of native-born americans living abroad?;what is the typical income of a native-born person living outside the united states? -Median_Income_Person_18OrMoreYears_Civilian_WithIncome,Civilians With Median Incomes;Median Income: Civilian;people who earn a median wage;people who earn an average income -Median_Income_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_WithIncome,Median Income of Population With Bachelor's Degrees;Median Income: Bachelors Degree;the average salary of people with a bachelor's degree;the median income of people with a bachelor's degree;the middle income of people with a bachelor's degree;the typical income of people with a bachelor's degree -Median_Income_Person_25OrMoreYears_EducationalAttainmentGraduateOrProfessionalDegree_WithIncome,Median Income of Population With Professional Degrees;Median Income: Graduate or Professional Degree;average salary of people with professional degrees;the amount of money that people with professional degrees typically earn;the median income of people with professional degrees;the typical income of people with professional degrees -Median_Income_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_WithIncome,"Median Income of High School Graduate Includes Equivalency;Median Income: High School Graduate Includes Equivalency;the average salary of a high school graduate, including equivalency, is;the expected earnings of a high school graduate, including equivalency, are;the median income of a high school graduate, including equivalency, is;the typical income of a high school graduate, including equivalency, is" -Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome,Median Income of Population Less High School Graduates;Median Income: Less Than High School Graduate;what is the average income of people who did not graduate from high school?;what is the average salary of people who did not graduate from high school?;what is the median income of people with less than a high school diploma?;what is the typical income of people who did not finish high school? -Median_Income_Person_25OrMoreYears_EducationalAttainmentSomeCollegeOrAssociatesDegree_WithIncome,Median Income of Population With Some College or Associate's Degree;Median Income: Some College or Associates Degree;the amount of money that half of people with some college or an associate's degree make;the average income of people with some college or an associate's degree;the median income of people with some college or an associate's degree;the typical income of people with some college or an associate's degree -Median_Income_Person_DifferentHouseAbroad,"Median Income: 15 Years or More, With Income, Different House Abroad;Medium Income for Population Aged 15 Years or More With Income Living in Different Houses Abroad;the average income of people aged 15 or more who live in different houses abroad;the median income of people aged 15 or more who live in different houses abroad;the typical income of people aged 15 or more who live in different houses abroad;the usual income of people aged 15 or more who live in different houses abroad" -Median_Income_Person_DifferentHouseInDifferentCountyDifferentState,"Median Income For Population Aged 15 Years or More Living in Different Houses in Different Counties in Different States With Income;Median Income: 15 Years or More, With Income, Different House in Different County Different State;average income for people aged 15 and over living in different households in different counties in different states with income;the amount of money that the average person aged 15 and over living in different households in different counties in different states with income makes;the middle amount of money that a person aged 15 and over living in different households in different counties in different states with income makes;the typical amount of money that a person aged 15 and over living in different households in different counties in different states with income makes" -Median_Income_Person_DifferentHouseInDifferentCountySameState,"Median Income of Population Aged 15 Years or More From Different Houses in Different County Same State;Median Income: 15 Years or More, With Income, Different House in Different County Same State;average income of people aged 15 or older from different households in different counties in the same state;the income level that divides the population aged 15 or older from different households in different counties in the same state into two equal groups, half having higher incomes and half having lower incomes;the income level that is higher than half of the incomes of people aged 15 or older from different households in different counties in the same state and lower than half of the incomes of people aged 15 or older from different households in different counties in the same state;the middle value of the incomes of people aged 15 or older from different households in different counties in the same state" -Median_Income_Person_DifferentHouseInSameCounty,"Median Income of Population Aged 15 Years or More With Income in Different Houses in Same County;Median Income: 15 Years or More, With Income, Different House in Same County;the average income of people aged 15 years or more who live in different houses in the same county;the half-way point of the income range of people aged 15 years or more who live in different houses in the same county;the income level that half of the people aged 15 years or more who live in different houses in the same county earn more than, and half earn less than;the middle income of people aged 15 years or more who live in different houses in the same county" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAfrica,"1 the average number of rooms in housing units occupied by foreign-born people in africa;2 the median number of rooms in housing units occupied by people born outside of africa;3 the middle number of rooms in housing units occupied by people who were not born in africa;4 the number of rooms in half of the housing units occupied by people who were not born in africa;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Africa;Median Number of Rooms of Housing Units of Foreign-Born Population Occupied Housing Unit In Africa" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Asia;Number Of Rooms In Housing Units Occupied By Population Foreign-Born In Asia;how many rooms are there in housing units occupied by foreign-born people from asia?;how many rooms do foreign-born people from asia occupy in housing units?;what is the number of rooms in housing units occupied by people who were born in asia?;what is the number of rooms occupied by foreign-born people from asia in housing units?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCaribbean,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Caribbean;Median Number of Rooms of Housing Units Occupied by Foreign-Born Population in the Caribbean;what is the average number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the median number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the middle number of rooms in housing units occupied by foreign-born people in the caribbean?;what is the most common number of rooms in housing units occupied by foreign-born people in the caribbean?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthCentralAmericaExceptMexico,"Median Number of Rooms For Foreign-Born Population Occupying Housing Units in Central America, Except Mexico;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Central America Except Mexico;the average number of rooms per housing unit occupied by foreign-born people in central america, excluding mexico;the number of rooms in the middle of the range of rooms per housing unit occupied by foreign-born people in central america, excluding mexico;the number of rooms that half of the foreign-born people in central america, excluding mexico, live in, and half live in more or fewer rooms;the number of rooms that is typical for housing units occupied by foreign-born people in central america, excluding mexico" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEasternAsia,"Median Number of Rooms of Foreign-Born in Eastern Asia Housing Unit With Occupied Housing Unit;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Eastern Asia;average number of rooms in housing units occupied by foreign-born people from eastern asia;the median number of rooms in housing units occupied by foreign-born people from eastern asia;the middle number of rooms in housing units occupied by foreign-born people from eastern asia;the number of rooms in housing units occupied by foreign-born people from eastern asia, on average" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthEurope,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Europe;Median Rooms Of Households Occupied By Foreign Born Population Born in Europe;how many rooms are there in the average occupied housing unit in europe that is occupied by a foreign-born person?;the median number of rooms in a housing unit occupied by people who were born outside of europe;the number of rooms in a housing unit occupied by people who are not native to europe, on average;what is the median number of rooms in a housing unit in europe that is occupied by a foreign-born person?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthLatinAmerica,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Latin America;Median Rooms Of Households Occupied By Foreign Born Population Born in Latin America;what is the average number of rooms in a housing unit occupied by a latin american immigrant?;what is the median number of rooms in a housing unit occupied by a person who was born in latin america but now lives in the united states?;what is the median number of rooms in a housing unit occupied by foreign-born latin americans?;what is the median number of rooms in housing units occupied by foreign-born latin americans?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthMexico,"Median Number of Rooms For Housing Units Occupied By Foreign-Born Population;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Country/MEX;how many rooms do foreign-born people live in on average?;what is the average number of rooms in housing units occupied by people who were born outside of the united states?;what is the median number of rooms in housing units occupied by foreign-born people?;what is the middle number of rooms in housing units occupied by people who were not born in the united states?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthamerica,"Median Number Of Rooms With Foreign Born Population In North America Occupied;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Northamerica;how many rooms do foreign-born people live in on average in north america?;how many rooms do most foreign-born people live in in north america?;what is the average number of rooms occupied by foreign-born people in north america?;what is the median number of rooms occupied by foreign-born people in north america?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthNorthernWesternEurope,"Housing Units with Median Number of Rooms Occupied by Foreign-Born Population in Northern Western Europe;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Northern Western Europe;the average number of rooms in housing units occupied by foreign-born people in northern western europe;the median number of rooms in housing units occupied by foreign-born people in northern western europe;the middle number of rooms in housing units occupied by foreign-born people in northern western europe;the number of rooms in housing units occupied by foreign-born people in northern western europe, on average" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthOceania,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Oceania;Number of Rooms of Housing Units Occupied by Foreign-Born Population in Oceania;how many rooms are in housing units occupied by foreign-born people in oceania?;how many rooms do foreign-born people in oceania live in on average?;what is the average number of rooms in housing units occupied by foreign-born people in oceania?;what is the number of rooms in housing units occupied by foreign-born people in oceania?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthCentralAsia,"Median Number of Rooms Occupied By Foreign-Born Population in South Central Asia;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, South Central Asia;how many rooms do foreign-born people in south central asia live in on average?;what is the average number of rooms occupied by foreign-born people in south central asia?;what is the median number of rooms occupied by foreign-born people in south central asia?;what is the typical number of rooms occupied by foreign-born people in south central asia?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthEasternAsia,"Median Number of Occupied Rooms for Foreign-Born Population in South Eastern Asia;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, South Eastern Asia;the average number of rooms occupied by foreign-born people in southeast asia;the typical number of rooms occupied by foreign-born people in southeast asia;what is the average number of rooms occupied by foreign-born people in southeast asia?;what is the typical number of rooms occupied by foreign-born people in southeast asia?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthamerica,"Median Number of Rooms of Housing Unit Occupied by Foreign Born Population in South America;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Southamerica;how many rooms do foreign-born people living in south america typically live in?;what is the average number of rooms in a housing unit occupied by foreign-born people in south america?;what is the median number of rooms in a housing unit occupied by foreign-born people in south america?;what is the typical number of rooms in a housing unit occupied by foreign-born people in south america?" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthSouthernEasternEurope,"Foreign-Born in Southern Eastern Europe Occupied Housing Units;Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Southern Eastern Europe;housing units occupied by foreign-born people from southern eastern europe;occupied housing units with foreign-born residents from southern eastern europe;occupied housing units with residents born in southern eastern europe;people born in southern eastern europe who live in occupied housing units" -Median_NumberOfRooms_HousingUnit_ForeignBorn_OccupiedHousingUnit_PlaceOfBirthWesternAsia,"Median Number of Rooms of Housing Unit: Foreign Born, Occupied Housing Unit, Western Asia;Median of Housing Units Occupied by Foreign Borns in Western Asia;the average number of housing units occupied by foreign-born people in western asia;the median number of housing units occupied by foreign-born people in western asia;the number of housing units occupied by foreign-born people in western asia that is in the middle 50% of the range;the number of housing units occupied by foreign-born people in western asia that is neither the highest nor the lowest" -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayADecade CMIP6 SSP245 -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayADecade CMIP6 SSP585 -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayAYear CMIP6 SSP245 -MinTemp_Daily_Hist_50PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 50PctProb LessThan Atleast1DayAYear CMIP6 SSP585 -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayADecade CMIP6 SSP245 -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayADecade_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayADecade CMIP6 SSP585 -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP245,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayAYear CMIP6 SSP245 -MinTemp_Daily_Hist_95PctProb_LessThan_Atleast1DayAYear_CMIP6_Ensemble_SSP585,MinTemp Ensemble Hist 95PctProb LessThan Atleast1DayAYear CMIP6 SSP585 -Min_Concentration_AirPollutant_CO,Min Concentration: Carbon Monoxide -Min_Concentration_AirPollutant_NO2,Min Concentration: Nitrogen Dioxide -Min_Concentration_AirPollutant_SO2,Min Concentration: Sulfur Dioxide -Min_Humidity_RelativeHumidity,Min Humidity: Relative Humidity;Minimum Relative Humidity;the least amount of humidity in the air;the lowest amount of moisture in the air;the lowest level of relative humidity in the air;the minimum relative humidity -Min_PrecipitableWater_Atmosphere,Min Precipitable Water;Minimum Water Precipitable in The Atmosphere;minimum precipitable water;minimum water content in the air;minimum water content in the atmosphere;minimum water vapor content -Min_Radiation_Downwelling_ShortwaveRadiation,"Min Radiation: Downwelling, Shortwave Radiation;Minimum Surface Downwelling Shortwave Radiation;minimum surface downwelling shortwave radiation;minimum surface irradiance;minimum surface solar irradiance;minimum surface solar radiation" -Min_Rainfall,Min Rainfall;Minimum Rainfall;least amount of rainfall;least rainfall;lowest rainfall;minimum rainfall -Min_Snowfall,Min Snowfall;Minimum Snowfall;the least amount of snow that falls;the lowest amount of snow that falls;the minimum amount of snow that falls;the smallest amount of snow that falls -Min_Temperature,Min Temperature;Minimum Temperature;least temperature;lowest temperature;minimum temperature -Min_WindSpeed_UComponent_Height10Meters,"Min Wind Speed: Meter 10, UComponent;Minimum Wind Speed;the least amount of wind needed;the least wind speed required;the lowest wind speed;the minimum wind velocity" -Min_WindSpeed_VComponent_Height10Meters,"Component 10 Meters Min Wind Speed;Min Wind Speed: Meter 10, VComponent;the wind speed at 10 meters, at its minimum;wind speed at 10 meters, lowest" -MonetaryValue_Farm_GovernmentPayment,How much money does the government give to farmers?;Monetary Value of Farm: Government Payment;Monetary Value of Government Payments to Farms;Monetary value of government payments received by farm;The amount of money that the government gives to farms;The amount of money that the government pays to farms;The amount of money the government gives to farms;how much money does the government give to farms?;how much money does the government spend on farm subsidies?;monetary value of government payments to farms;what is the monetary value of the government's subsidies to farmers?;what is the total amount of money that the government pays to farmers? -Monthly_Amount_FinancialTransaction_AadhaarEnabledPaymentSystemFundsTransfer,Total Value of Monthly Aadhaar Enabled Payment System Funds Transfer transactions;amount of aadhar enabled fund transfers -Monthly_Amount_FinancialTransaction_FinancialProduct_UPI,Total value of UPI transactions per month -Monthly_Count_ElectricityConsumer,"Number of customer accounts (all sectors) per month;Number of customer accounts, all sectors, monthly;Number of people who use electricity in a month;The amount of electricity used in a month;The monthly total of electricity consumption;The number of electricity users per month;The number of people using electricity each month;Total Electricity Consumers in a Month;Total electricity consumers in a month;electricity consumption per month;monthly electricity consumption;number of people using electricity in a month;total electricity usage in a month" -Monthly_Count_FinancialTransaction_AadhaarEnabledPaymentSystemFundsTransfer,Number of Monthly Aadhaar Enabled Payment System Funds Transfer transactions;number of aadhar enabled fund transfers -Monthly_Count_FinancialTransaction_FinancialProduct_UPI,Number of UPI transactions per month -MortalityRate_Person_Upto4Years_AsFractionOf_Count_BirthEvent_LiveBirth,Death Rate of Population Aged 4 Years or Less;Mortality Rate: 4 Years or Less (As Fraction of Count Birth Event Live Birth);number of children under 4 years old who die per 1000 live births;percentage of children who die before the age of 4;proportion of live births that result in death before the age of 4;proportion of live births that result in the death of a child under 4 years old -NetMeasure_Income_Farm,"Income of Farm (Net Measure);Net income earned by a farm after subtracting expenses;Total Farm Income Net Measure;Total farm income, net measure;net farm income;total farm income net measure" -Nominal_Amount_EconomicActivity_GrossValueAdded_Agriculture,Gross Value Added in Agriculture by Constant Prices.;value of goods produced in agriculture sector -Nominal_Amount_EconomicActivity_GrossValueAdded_BankingAndInsuranceSector,Gross Value Added in Banking and Insurance by Constant Prices.;value of goods produced in banking and insurance sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Construction,Gross Value Added in Construction by Constant Prices.;value of goods produced in construction sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Industry,Gross Value Added in Industry by Constant Prices.;value of goods produced in industry sector -Nominal_Amount_EconomicActivity_GrossValueAdded_ManufacturingSector,Gross Value Added in Manufacture by Constant Prices.;value of goods produced in manufacturing sector -Nominal_Amount_EconomicActivity_GrossValueAdded_Services,Gross Value Added in Services by Constant Prices.;value of goods produced in services sector -NumberOfDays_Concentration_SmokePM25_Above12PPM,Number of days where the Smoke PM2.5 concentration exceeded 12 ppm -NumberOfDays_Concentration_SmokePM25_Above150PPM,Number of days where the Smoke PM2.5 concentration exceeded 150 ppm -NumberOfDays_Concentration_SmokePM25_Above250PPM,Number of days where the Smoke PM2.5 concentration exceeded 250 ppm -NumberOfDays_Concentration_SmokePM25_Above35PPM,Number of days where the Smoke PM2.5 concentration exceeded 35 ppm -NumberOfDays_Concentration_SmokePM25_Above55PPM,Number of days where the Smoke PM2.5 concentration exceeded 55 ppm -NumberOfDays_HeatWaveEvent,Number of Days of Heat Wave Event;heat wave duration;number of days with a heat wave;number of days with extreme heat;number of days with high temperatures -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MaxRelativeHumidity,Maximum Relative Humidity 35 Celsius or More Based on RCP 4.5;Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Max Relative Humidity;maximum relative humidity of 35 degrees celsius or more based on rcp 45;maximum relative humidity of 35 degrees celsius or more based on the rcp 45 scenario;maximum relative humidity of 35 degrees celsius or more in the rcp 45 model;maximum relative humidity of 35 degrees celsius or more under the rcp 45 scenario -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MeanRelativeHumidity,Months with Mean Relative Humidity Based on RCP 4.5 35 Celsius or More;Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Mean Relative Humidity;months with mean relative humidity of 35 degrees celsius or more based on rcp 45;months with mean relative humidity of 35 degrees celsius or more in rcp 45;months with mean relative humidity of 95 degrees fahrenheit or more based on rcp 45;months with mean relative humidity of 95 degrees fahrenheit or more in rcp 45 -NumberOfMonths_WetBulbTemperature_35COrMore_RCP45_MinRelativeHumidity,"Months Based on RCP 4.5 Min Relative Humidity, 35 Celsius or More;Number of Months Reaching Wet Bulb Temperature based on RCP 4.5 Min Relative Humidity;months with a minimum relative humidity of 35% and a maximum temperature of 35 degrees celsius or more, based on rcp 45;months with a minimum relative humidity of 35% and a maximum temperature of 95 degrees fahrenheit or more, based on rcp 45;months with a relative humidity of at least 35% and a temperature of 35 degrees celsius or more, based on rcp 45;months with a relative humidity of at least 35% and a temperature of 95 degrees fahrenheit or more, based on rcp 45" -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MaxRelativeHumidity,Maximum Relative Humidity 35 Celsius Or More Based on RCP 6.0;Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Max Relative Humidity;the maximum relative humidity in rcp 60 is 35 degrees celsius or more;the maximum relative humidity in rcp 60 is at least 35 degrees celsius;the maximum relative humidity in rcp 60 is greater than 35 degrees celsius;the maximum relative humidity in rcp 60 is more than 35 degrees celsius -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MeanRelativeHumidity,Number of Months Based on RCP 6.0 Mean Relative Humidity 35 Celsius or More;Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Mean Relative Humidity;the number of months in which the mean relative humidity is 35 degrees celsius or more based on rcp 60;the number of months in which the mean relative humidity is at least 35 degrees celsius based on rcp 60;the number of months in which the mean relative humidity is greater than or equal to 35 degrees celsius based on rcp 60;the number of months in which the mean relative humidity is more than 35 degrees celsius based on rcp 60 -NumberOfMonths_WetBulbTemperature_35COrMore_RCP60_MinRelativeHumidity,Number of Months Based on RCP 6.0 Min Relative Humidity 35 Celsius or More;Number of Months Reaching Wet Bulb Temperature based on RCP 6.0 Min Relative Humidity;how many months will it be at least 35 degrees celsius and at least 35% humidity based on rcp 60;how many months will the temperature be at least 35 degrees celsius and the humidity at least 35% based on rcp 60;number of months with a minimum relative humidity of 35% and a maximum temperature of 35 degrees celsius;number of months with a minimum relative humidity of 35% and a maximum temperature of 95 degrees fahrenheit -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MaxRelativeHumidity,Number of Months Based on RCP 8.5;Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Max Relative Humidity -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MeanRelativeHumidity,"Months Based on RCP 8.5, Mean Relative Humidity, 35 Celsius or More;Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Mean Relative Humidity;months when the average relative humidity is 35 degrees celsius or more, based on rcp 85;months when the average relative humidity is 95 degrees fahrenheit or more, based on rcp 85;months when the mean relative humidity is 35 degrees celsius or more, based on rcp 85;months when the mean relative humidity is 95 degrees fahrenheit or more, based on rcp 85" -NumberOfMonths_WetBulbTemperature_35COrMore_RCP85_MinRelativeHumidity,Number of Months Reaching Wet Bulb Temperature based on RCP 8.5 Min Relative Humidity -PalmerDroughtSeverityIndex_Atmosphere,Palmer Drought Index;Palmer Drought Index for the Atmosphere;Palmer Drought Severity Index;Palmer Drought Severity Index for the Atmosphere;Palmer Drought Severity Index for the atmosphere;atmospheric drought severity index;drought index for the atmosphere;drought severity index for the atmosphere;palmer drought severity index (pdsi) -Percent_BurnedArea_FireEvent,Percent of area that burned;Percentage of Area Burned By Fire Event;how much of the area burned;percentage of area burned;what part of the area burned;what percentage of the area burned -Percent_BurnedArea_FireEvent_Forest,Percent of forest area that burned;Percentage of Forest Area Burned By Fire Event;percent of forested land that burned;percent of the forested area that was burned;percentage of forest area that burned;percentage of the forest that burned -Percent_BurnedArea_FireEvent_Forest_HighSeverity,Percent of forest area that experienced high-severity fire;Percentage of Forest Area That Experienced High-Severity Fire;the amount of forest area that experienced high-severity fire;the extent of forest area that experienced high-severity fire;the percentage of forest area that experienced high-severity fire;the proportion of forest area that experienced high-severity fire -Percent_Daily_TobaccoSmoking_Cigarettes_In_Count_Person,"Percentage Daily, Tobacco Smoking, Cigarettes Among Population;Percentage of Population Smoking Cigarettes Daily;what is the proportion of the population that smokes cigarettes daily?" -Percent_Daily_TobaccoUsing_In_Count_Person,Percentage of Population Smoking Daily;Prevalence of Daily Tobacco Use;how common is daily tobacco use?;how many people use tobacco every day?;how widespread is daily tobacco use?;what is the rate of daily tobacco use? -Percent_Daily_TobaccoUsing_In_Count_Person_Female,Percentage of Female Population Smoking Tobacco Daily;Prevalence of Daily Tobacco Use Among Females;how common is daily tobacco use among females?;what is the prevalence of daily tobacco use among females?;what is the rate of daily tobacco use among females?;what is the rate of daily tobacco use among women? -Percent_Daily_TobaccoUsing_In_Count_Person_Male,Percentage of Male Population Smoking Tobacco Daily;Prevalence of Daily Tobacco Use Among Males;how common is daily tobacco use among males?;what is the prevalence of daily tobacco use among males?;what is the rate of daily tobacco use among males?;what is the rate of daily tobacco use among men? -Percent_Person_18OrMoreYears_WithHighBloodPressure_ReceivedTakingBloodPressureMedication,"Percent of People With High Blood Pressure Who Are Taking Blood Pressure Medication Among People Who Are 18 Years or Older in Age;Prevalence: 18 Years or More, High Blood Pressure, Taking Blood Pressure Medication;What percentage of people aged 18 and older with high blood pressure are taking blood pressure medication?;What percentage of people aged 18 and older with high blood pressure are taking medication for it?;What percentage of people aged 18 and over with high blood pressure are taking blood pressure medication;What percentage of people with high blood pressure are taking blood pressure medication?;percent of people with high blood pressure who are taking blood pressure medication among people who are 18 years or older in age;the percentage of people with high blood pressure who are taking blood pressure medication among people who are 18 years or older;what number of people with high blood pressure are taking blood pressure medication?;what percentage of people with high blood pressure are taking blood pressure medication?;what proportion of people with high blood pressure are taking medication for their condition?;what's the percentage of people with high blood pressure who are taking medication for it?" -Percent_Person_18To64Years_Female_NoHealthInsurance,1 What percentage of women aged 18 to 64 are uninsured?;2 what is the percentage of women aged 18 to 64 who do not have health insurance?;3 what proportion of women aged 18 to 64 are without health insurance?;4 what is the proportion of women aged 18 to 64 who do not have health insurance?;5 what is the percentage of women aged 18 to 64 who are not covered by health insurance?;Percentage of Women (18 to 64 Years Old) Without Health Insurance;Percentage of women (18 to 64 years old) without health insurance;The number of women aged 18 to 64 who do not have health insurance;The percentage of women without health insurance in the United States;What percentage of women aged 18 to 64 are uninsured?;What percentage of women aged 18 to 64 don't have health insurance? -Percent_Person_18To64Years_Male_NoHealthInsurance,1 What percentage of men aged 18 to 64 do not have health insurance?;Percentage of Men (18 to 64 Years Old) Without Health Insurance;Percentage of men (18 to 64 years old) without health insurance;What percentage of men aged 18 to 64 are uninsured?;What percentage of men ages 18 to 64 are uninsured?;what is the number of men aged 18 to 64 who do not have health insurance as a percentage of all men in that age group?;what is the percentage of men aged 18 to 64 who are not covered by health insurance?;what is the percentage of men aged 18 to 64 who do not have health insurance;what proportion of men aged 18 to 64 do not have health insurance? -Percent_Person_18To64Years_NoHealthInsurance_BlackOrAfricanAmericanAlone,Percentage of Black or African American (18 to 64 years old) without health insurance;Percentage of Black or African American Population (18 to 64 Years Old) Without Health Insurance;What percentage of Black or African Americans aged 18 to 64 do not have health insurance?;What percentage of Black or African Americans aged 18 to 64 don't have health insurance?;what is the percentage of black or african americans aged 18 to 64 who do not have health insurance?;what is the rate of uninsurance among black or african americans aged 18 to 64?;what percentage of black or african americans aged 18 to 64 do not have health insurance?;what proportion of black or african americans aged 18 to 64 do not have health coverage? -Percent_Person_18To64Years_NoHealthInsurance_HispanicOrLatino,Percentage of Hispanic or Latino (18 to 64 years old) without health insurance;Percentage of Hispanic or Latino Population (18 to 64 Years Old) Without Health Insurance;What percentage of Hispanic or Latino people aged 18 to 64 are uninsured?;What percentage of Hispanic or Latino people aged 18 to 64 do not have health insurance?;What percentage of Hispanics or Latinos aged 18 to 64 do not have health insurance?;What percentage of the Hispanic or Latino population aged 18 to 64 is uninsured?;what is the percentage of hispanic or latino people aged 18 to 64 who are uninsured?;what is the rate of uninsurance among hispanic or latino people aged 18 to 64?;what percentage of hispanic or latino people aged 18 to 64 do not have health insurance?;what proportion of hispanic or latino people aged 18 to 64 do not have health insurance coverage? -Percent_Person_18To64Years_NoHealthInsurance_WhiteAlone,Percentage of White (18 to 64 years old) without health insurance;Percentage of White Population (18 to 64 Years Old) Without Health Insurance;What percentage of the white population aged 18 to 64 is uninsured?;What percentage of white people between the ages of 18 and 64 do not have health insurance?;what is the percentage of the white population aged 18 to 64 who do not have health insurance?;what is the percentage of the white population aged 18 to 64 without health insurance?;what is the percentage of white people aged 18 to 64 who do not have health insurance?;what proportion of white people aged 18 to 64 do not have health insurance? -Percent_Person_18To64Years_ReceivedNoHealthInsurance,"Percent of people without health insurance;Percentage of Population Aged 18-64 With No Health Insurance;Percentage of people aged 18-64 who are uninsured;Percentage of people aged 18-64 who aren't covered;Percentage of people aged 18-64 who don't have health insurance;Percentage of population aged 18-64 with no health insurance;Percentage of the population aged 18-64 with no health insurance;Percentage of young adults aged 18-64 who don't have insurance;Prevalence: 18 - 64 Years, No Health Insurance;What percentage of people are uninsured;What proportion of the population is uninsured;what is the percentage of the population aged 18-64 without health insurance;what is the proportion of the population aged 18-64 without health insurance;what percentage of people aged 18-64 do not have health insurance;what proportion of people aged 18-64 do not have health insurance" -Percent_Person_20OrMoreYears_WithDiabetes,"Percent of People 20 Years or Older With Diabetes;Prevalence: 20 Years or More, Diabetes;What percentage of people over 19 have diabetes?;how many people aged 20 or older have diabetes?;percent of people who are older than 19 years and have diabetes;the number of people over 19 with diabetes as a percentage of the total population;the percentage of people over 19 with diabetes;the prevalence of diabetes in people over 19;the proportion of people over 19 with diabetes;what is the rate of diabetes among people aged 20 or older?;what percentage of people aged 20 or older have diabetes?;what proportion of people aged 20 or older have diabetes?" -Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening,"Female Population Aged 21 to 65 Years Received Cervical Cancer Screening;Prevalence of 21 - 65 Years, Female, Received Cervical Cancer Screening;cervical cancer screening was performed on women aged 21 to 65 years;cervical cancer screening was received by women aged 21 to 65 years;women aged 21 to 65 years received cervical cancer screening;women aged 21 to 65 years were screened for cervical cancer" -Percent_Person_50To74Years_Female_ReceivedMammography,"Prevalence of Female Population Aged 50 to 74 Years who Received Mammography;Prevalence: 50 - 74 Years, Female, Mammography" -Percent_Person_50To75Years_ReceivedColorectalCancerScreening,"Colorectal Cancer Screening Prevalence for Population Aged 50 to 75 Years;Prevalence: 50 - 75 Years, Colorectal Cancer Screening;the number of people aged 50 to 75 who have had a colorectal cancer screening test;the percentage of people aged 50 to 75 who have been screened for colorectal cancer;the proportion of people aged 50 to 75 who have been screened for colorectal cancer;the rate of colorectal cancer screening among people aged 50 to 75" -Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices,"1 what percentage of women aged 65 and over received core preventive services?;2 what proportion of women aged 65 and over received core preventive services?;3 how many women aged 65 and over received core preventive services?;4 what is the rate of core preventive service receipt among women aged 65 and over?;Prevalence of Females Aged 65 Years or More Received Core Preventive Services;Prevalence: 65 Years or More, Female, Core Preventive Services" -Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,"Prevalence Preventive Services for Males Above 65 Years Old;Prevalence: 65 Years or More, Male, Core Preventive Services;how common are preventive services for men over 65?;how many men over 65 get preventive services?;what is the rate of preventive services for men over 65?;what percentage of men over 65 get preventive services?" -Percent_Person_65OrMoreYears_WithAllTeethLoss,"Percentage of Population Over 65 Years Old Who Have Complete Tooth Loss;Prevalence of 65 Or More Years, All Teeth Loss;What percentage of people aged 65 and older have lost all of their teeth?;What percentage of people aged 65 and older have lost all their teeth?;What percentage of people over the age of 65 have lost all their teeth?;percent of people that have all teeth loss among people who are 65 years or older in age;what is the percentage of people over 65 who have lost all their teeth?;what is the rate of complete tooth loss in people over 65?;what percentage of people over 65 have no teeth?;what percentage of the population over 65 is toothless?" -Percent_Person_BingeDrinking,How many people binge drink;Percentage of Population Who Engage in Binge Drinking;Percentage of people who engage in binge drinking;Percentage of population who engage in binge drinking;What is the prevalence of binge drinking;What is the rate of binge drinking;What percentage of the population binge drinks;What percentage of the population binge drinks?;how many people binge drink?;what is the rate of binge drinking in the population?;what percentage of the population binge drinks?;what proportion of people binge drink? -Percent_Person_Children_WithAsthma,How many children have asthma;Percent of Children That Have Asthma;Prevalence: Asthma in Children;What is the prevalence of asthma in children;What is the rate of asthma in children;What percentage of children have asthma;What proportion of children have asthma;how many children have asthma?;percent of children that have asthma;what is the prevalence of asthma in children?;what is the rate of asthma in children?;what percentage of children have asthma? -Percent_Person_Obesity,Obesity rate;Percent of fat people;Percentage of Population That Is Obese;Percentage of overweight people;Percentage of people who are classified as obese;Percentage of people who are obese;Percentage of people who are overweight;Percentage of people who have a BMI over 30;Percentage of population that is obese;Percentage of the population that is obese;Prevalence of obesity;Prevalence: Obesity;What percentage of people are obese?;What percentage of the population is obese?;how many people in the population are obese?;what is the obesity rate?;what is the proportion of the population that is obese?;what percentage of the population is obese? -Percent_Person_PhysicalInactivity,Percentage of Population Who Are Physically Inactive;Percentage of people who are physically inactive;Percentage of population who are physically inactive;The percentage of people who are not physically active;the percentage of people who are not active enough;the percentage of people who are not physically active;the percentage of people who are physically inactive;the percentage of people who are sedentary -Percent_Person_ReceivedAnnualCheckup,Percent of people with annual checkup;Percentage of Population That Has Received an Annual Checkup;Percentage of people who go to the doctor regularly;Percentage of people who have had a yearly check-up;Percentage of people who have had preventive care;Percentage of population that has an annual checkup;Percentage of population that keeps up with their health;Percentage of population that receives regular checkups;Prevalence: Annual Checkup;What percentage of people get an annual checkup?;What percentage of people get annual checkups?;What percentage of people have an annual checkup?;what is the number of people who have had an annual checkup as a percentage of the total population?;what is the percentage of people who have had an annual checkup?;what is the proportion of people who have had an annual checkup?;what percentage of the population has had an annual checkup? -Percent_Person_ReceivedCholesterolScreening,1 how common is cholesterol screening?;5 what is the prevalence of cholesterol screening?;Prevalence of Persons who Received Cholesterol Screening;Prevalence: Cholesterol Screening;how common is cholesterol screening?;what is the prevalence of cholesterol screening? -Percent_Person_ReceivedDentalVisit,Prevalence of Persons who Received Dental Visits;Prevalence: Dental Visit;what is the prevalence of dental visits? -Percent_Person_SleepLessThan7Hours,Percent of people that sleeps less than seven hours;Percent of sleep deprived people;Percentage of Population That Sleeps Less Than 7 Hours Per Night;Percentage of people who are chronically sleep-deprived;Percentage of people who are sleep deprived;Percentage of people who are sleep-deprived on a regular basis;Percentage of people who do not get enough sleep;Percentage of people who don't get enough sleep;Percentage of people who don't sleep enough;Percentage of people who sleep less than 7 hours;Percentage of people who sleep less than seven hours;Percentage of population that sleeps less than 7 hours per night;Percentage of the population that gets less than 7 hours of sleep a night;Percentage of the population that's sleep-deprived;Prevalence: Sleep Less Than 7 Hours;what is the percentage of people who sleep less than 7 hours per night?;what is the proportion of the population who sleep less than 7 hours per night?;what percentage of people sleep less than 7 hours per night?;what proportion of the population sleeps less than 7 hours per night? -Percent_Person_Smoking,Number of smokers;Percent of people that smoke;Percentage of Population That Smokes;Percentage of people who smoke;Percentage of people who smoke cigarettes;Percentage of people who use tobacco products;Percentage of population that smokes;Percentage of smokers;Percentage of the population that smokes;Prevalence: Smoking;Proportion of smokers;Share of smokers;Smoking rate;what is the proportion of smokers in the population?;what is the rate of smoking in the population?;what percentage of people smoke?;what percentage of the population smokes? -Percent_Person_WithAllTeethLoss,Prevalance of Complete Tooth Loss in the Population;Prevalence: All Teeth Loss;The rate of tooth loss in the population;how many people have lost all of their teeth?;prevalance of all teeth loss in the population;the degree to which tooth loss is a problem in the population;the extent to which tooth loss is present in the population;what is the prevalence of complete tooth loss in the population? -Percent_Person_WithArthritis,How common is arthritis;How many people have arthritis;Percentage of Population With Arthritis;Percentage of people with arthritis;Percentage of people with joint pain;Percentage of people with osteoarthritis;Percentage of people with rheumatoid arthritis;Percentage of population with arthritis;Percentage of the population with arthritis;Prevalence: Arthritis;What is the number of people with arthritis;What is the prevalence of arthritis;What percentage of people have arthritis;percent of people that have arthritis;what is the percentage of people with arthritis;what percent of people have arthritis;what percentage of the population has arthritis;what proportion of the population has arthritis -Percent_Person_WithAsthma,Percent of People That Have Asthma;Prevalence: Asthma;What is the percentage of people with asthma;What is the prevalence of asthma;What percentage of people have asthma;What percentage of people have asthma?;What proportion of people have asthma;how many people have asthma;percent of people that have asthma;what is the percentage of people with asthma;what is the prevalence of asthma;what percentage of people have asthma -Percent_Person_WithCancerExcludingSkinCancer,1 What percentage of people have a cancer other than skin cancer?;Percent of People That Have a Cancer Other Than Skin Cancer;Prevalence: Cancer Excluding Skin Cancer;What is the percentage of people who have a cancer other than skin cancer;What percentage of people have a cancer other than skin cancer;What percentage of people have cancer other than skin cancer?;percent of people that have a cancer other than skin cancer;the percentage of people who have cancer other than skin cancer;what is the number of people who have a cancer other than skin cancer as a percentage of the total population?;what is the percentage of people who have a cancer other than skin cancer?;what is the proportion of people who have a cancer other than skin cancer?;what percentage of people have a cancer other than skin cancer? -Percent_Person_WithChronicKidneyDisease,How many people have chronic kidney disease;Percent of People That Have Chronic Kidney Disease;Prevalence: Chronic Kidney Disease;What number of people have chronic kidney disease;What percentage of people have chronic kidney disease;What percentage of people have chronic kidney disease?;What proportion of people have chronic kidney disease;how many people have chronic kidney disease;percent of people that have chronic kidney disease;what is the number of people with chronic kidney disease;what is the prevalence of chronic kidney disease;what percentage of people have chronic kidney disease -Percent_Person_WithChronicObstructivePulmonaryDisease,Percent of People That Have Chronic Obstructive Pulmonary Disease;Prevalence: Chronic Obstructive Pulmonary Disease;The number of people with chronic obstructive pulmonary disease as a percentage of the total population;The percentage of people with chronic obstructive pulmonary disease;The percentage of the population with chronic obstructive pulmonary disease;The prevalence of chronic obstructive pulmonary disease;The proportion of people with chronic obstructive pulmonary disease;how many people have copd;percent of people that have chronic obstructive pulmonary disease;what is the prevalence of copd;what percentage of people have chronic obstructive pulmonary disease (copd);what proportion of people have copd -Percent_Person_WithCoronaryHeartDisease,Percentage of Population With Coronary Heart Disease;Percentage of people who have heart issues;Percentage of people with CHD;Percentage of people with coronary artery disease;Percentage of people with heart disease;Percentage of population with coronary heart disease;Percentage of the population with coronary heart disease;Prevalence: Coronary Heart Disease;What is the number of people with coronary heart disease as a percentage of the total population;What is the percentage of people with coronary heart disease;What is the prevalence of coronary heart disease;What is the proportion of people with coronary heart disease;What percentage of people have coronary heart disease;how many people in the population have coronary heart disease;percent of people that have coronary heart disease;what is the rate of coronary heart disease in the population;what percentage of the population has coronary heart disease;what proportion of the population has coronary heart disease -Percent_Person_WithDiabetes,How many people have diabetes;Percentage of Population With Diabetes;Percentage of diabetics;Percentage of people who have diabetes;Percentage of people with type 1 diabetes;Percentage of people with type 2 diabetes;Percentage of population with diabetes;Percentage of the population with diabetes;Prevalence: Diabetes;What is the percentage of people with diabetes;What is the prevalence of diabetes;What percentage of people have diabetes;What proportion of people have diabetes;percent of people that have diabetes;the percentage of people with diabetes;what is the prevalence of diabetes;what percentage of the population has diabetes;what proportion of the population has diabetes -Percent_Person_WithHighBloodPressure,How many people have high blood pressure;How many people have high blood pressure?;Percent of people with high blood pressure;Percentage of Population With High Blood Pressure;Percentage of individuals with high blood pressure;Percentage of people who have high blood pressure;Percentage of people with high BP;Percentage of people with high blood pressure;Percentage of people with hypertension;Percentage of people with uncontrolled hypertension;Percentage of population with high blood pressure;Percentage of the population that has high blood pressure;Percentage of the population with high blood pressure;Percentage of the population with hypertension;Prevalence: High Blood Pressure;Proportion of people with high blood pressure;What percentage of people have high blood pressure?;What proportion of people have high blood pressure?;how many people have high blood pressure?;percent of people that have high blood pressure;what is the number of people with high blood pressure?;what is the prevalence of high blood pressure?;what percentage of the population has high blood pressure? -Percent_Person_WithHighCholesterol,1 What percentage of people have high cholesterol?;How many people have high cholesterol;Percent of People With High Cholesterol;Prevalence: High Cholesterol;What is the percentage of people with high cholesterol;What percentage of people have high cholesterol;What proportion of the population has high cholesterol;percent of people that have high cholesterol;what is the number of people with high cholesterol as a percentage of the total population?;what is the percentage of people with high cholesterol?;what is the proportion of people with high cholesterol?;what percentage of people have high cholesterol? -Percent_Person_WithMentalHealthNotGood,1 what percentage of the population has poor mental health?;2 what is the percentage of people with poor mental health?;3 what proportion of the population has poor mental health?;4 how many people in the population have poor mental health?;How many people have poor mental health?;Percentage of Population With Poor Mental Health;Percentage of people who have mental health problems;Percentage of people who have poor mental well-being;Percentage of people with a mental illness;Percentage of people with mental health issues;Percentage of population with poor mental health;Percentage of the population with poor mental health;Prevalence: Mental Health Not Good;The percentage of people who have poor mental health;The percentage of people with poor mental health;What percentage of people have poor mental health?;percent of people whose mental health is not good -Percent_Person_WithPhysicalHealthNotGood,Percentage of Population With Poor Physical Health;Percentage of people who are in poor physical condition;Percentage of people who have physical health issues;Percentage of people with chronic health issues;Percentage of people with poor health;Percentage of population with poor physical health;Percentage of the population with poor physical health;Prevalence: Physical Health Not Good;how many people have poor physical health?;percent of people whose physical health is not good;the number of people who are not physically healthy;the percentage of people who are not physically healthy;the percentage of people who have poor physical health;the proportion of people who are not physically healthy;the share of people who are not physically healthy;what is the percentage of people with poor physical health?;what percentage of the population has poor physical health?;what proportion of the population has poor physical health? -Percent_Person_WithStroke,1 What percentage of people have had a stroke?;Percentage of Population That Has Experienced a Stroke;Percentage of people who have had a cerebrovascular accident;Percentage of people who have had a stroke;Percentage of people with a history of stroke;Percentage of people with a stroke history;Percentage of population that has had a stroke;Percentage of the population that has had a stroke;Prevalence: Stroke;percent of people that have had a stroke;what is the percentage of people who have had a stroke;what is the prevalence of stroke;what is the stroke rate;what percentage of people have experienced a stroke;what percentage of people have had a stroke;what percentage of the population has had a stroke -Percent_Student_AsAFractionOf_Count_Teacher,"Teacher to Student Ratio;number of students per teacher, how many students per teacher, each teacher has on average how many students;student-teacher ratio;students per teacher;teacher-student ratio;the ratio of teachers to students;the student-teacher ratio;the teacher-student ratio" -Percent_TobaccoSmoking_Cigarettes_In_Count_Person,Prevalence of Current Cigarette Smoking;Prevalence of Tobacco Smoking Population;how common is cigarette smoking? -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Female,Prevalence of Current Cigarette Smoking Among Females;Prevalence of Tobacco Smoking Female Population;what is the prevalence of cigarette smoking among females?;what is the prevalence of cigarette smoking among women;what is the prevalence of cigarette smoking among women? -Percent_TobaccoSmoking_Cigarettes_In_Count_Person_Male,Prevalence of Current Cigarette Smoking Among Males;Prevalence of Tobacco Smoking Male Population;what is the prevalence of cigarette smoking among men;what is the prevalence of cigarette smoking among men? -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person,Percentage Tobacco Smoking Among Population;Prevalence of Tobacco Smoking Tobacco Population;what is the proportion of the population that smokes tobacco?;what is the rate of tobacco smoking in the population?;what percentage of the population smokes tobacco? -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Female,Percentage Tobacco Smoking Among Female Population;what is the prevalence of tobacco smoking among women?;what is the proportion of women who smoke tobacco?;what is the rate of tobacco smoking among women?;what percentage of women smoke tobacco? -Percent_TobaccoSmoking_TobaccoProducts_In_Count_Person_Male,Percentage Tobacco Smoking Among Male Population;how many men smoke tobacco?;what is the proportion of men who smoke tobacco?;what is the rate of tobacco smoking among men?;what percentage of men smoke tobacco? -Percent_TobaccoUsing_In_Count_Person,Prevalence of Current Tobacco Use;Prevalence of Tobacco Using Population -Percent_TobaccoUsing_In_Count_Person_Female,Prevalence of Current Tobacco Use Among Females;Prevalence of Tobacco Using Female Population;how many females currently use tobacco? -Percent_TobaccoUsing_In_Count_Person_Male,Prevalence of Current Tobacco Use Among Males;Prevalence of Tobacco Using Male Population;how many males currently use tobacco? -Percent_TreeCanopy,Percent of Tree Canopy;Percent of land with tree canopy;percent of land with tree cover;percentage of land covered by trees;percentage of tree canopy;percentage of tree cover;the amount of tree cover;the percentage of an area covered by tree canopy;the percentage of land covered by trees;tree canopy;tree canopy cover;tree canopy coverage;tree canopy over land;tree cover;tree cover of land -PopulationWeighted_Concentration_AirPollutant_Ozone,Concentration of Ozone Pollutants Weighted by Population;Population-weighted Ozone Concentration;ozone concentration averaged over the population;ozone concentration normalized by population;ozone concentration per capita;ozone concentration weighted by population -PopulationWeighted_Concentration_AirPollutant_PM2.5,Concentration of PM2.5 Pollutants Weighted by Population;Population-weighted PM2.5 Concentration;average pm25 concentration per capita;average pm25 concentration weighted by population;population-weighted average pm25 concentration;population-weighted pm25 concentration -PopulationWeighted_Count_HeatWaveEvent,Heat Waves Weighted by Population;Population-weighted Number of Heat Waves;heat wave frequency per capita;heat wave incidence per capita;number of heat waves weighted by population;population-weighted heat wave occurrence -PopulationWeighted_Intensity_HeatWaveEvent,"Intensity of Heat Waves Weighted by Population;Population-weighted Intensity of Heat Waves;the average intensity of heat waves, weighted by population;the impact of heat waves, weighted by population;the intensity of heat waves, weighted by population;the severity of heat waves, weighted by population" -PopulationWeighted_NumerOfDays_HeatWaveEvent,Length of Heat Waves Weighted by Population;Population-weighted Length of Heat Waves;heat wave duration by population;heat wave duration weighted by population;heat wave length;heat wave length by population -PrecipitationRate,Precipitation Rate;amount of precipitation per unit area per unit time;precipitation intensity;rate of precipitation;the rate at which precipitation falls -QuantitySold_FarmInventory_CattleAndCalves,Number of Cattle And Calves sold as farm inventory;Number of cattle and calves sold as farm inventory;Quantity Sold of Farm Inventory: Cattle And Calves;Quantity of Cattle and Calves Sold From Farms;Quantity sold of cattle and calves from farms;The number of cattle and calves sold as farm inventory;The number of cattle and calves that were sold as farm inventory;amount of cattle and calves sold from farms;amount of cattle and calves sold from farms per year;cattle and calves sold from farms;the amount of cattle and calves sold from farms -QuantitySold_FarmInventory_HogsAndPigs,Number of hogs and pigs sold as farm inventory;Number of hogs and pigs sold by farmers;Number of hogs and pigs sold from agricultural operations;Number of hogs and pigs sold from livestock operations;Quantity Sold of Farm Inventory: Hogs And Pigs;Quantity of Hogs and Pigs Sold From Farms;Quantity sold of hogs and pigs from farms;The number of hogs and pigs sold as farm inventory;amount of hogs and pigs sold from farms;sum of hogs and pigs sold from farms;total hogs and pigs sold from farms;total number of hogs and pigs sold from farms -Radiation_Downwelling_LongwaveRadiation,"Downwelling And Longwave Radiation;Radiation: Downwelling, Longwave Radiation;radiation from the earth's surface that travels towards the atmosphere;radiation that goes from the earth to the sky;radiation that travels from the earth to the atmosphere;radiation that travels from the earth's surface to the atmosphere" -Radiation_Downwelling_ShortwaveRadiation,"Downwelling Shortwave Radiation;Radiation: Downwelling, Shortwave Radiation;shortwave radiation from the sun that reaches the earth's surface;shortwave radiation that travels from the sun to the earth's surface" -ReceiptsBillingsOrSales_Establishment_NAICSConstruction_WithPayroll,"Receipts Billings or Sales of Establishment: Construction (NAICS/23), With Payroll;Receipts of Construction Industries With Payroll;construction industry payroll receipts;construction industry receipts with payroll;payroll receipts from the construction industry;receipts from the construction industry with payroll" -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), With Payroll;Revenue of Arts, Entertainment, and Recreation Establishments With Payroll;money earned by businesses in the arts, entertainment, and recreation industries that have employees;revenue brought in by businesses in the arts, entertainment, and recreation industries that have payroll;the amount of money earned by arts, entertainment, and recreation establishments that have employees;the sales made by arts, entertainment, and recreation companies that have payroll" -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Exempt From Federal Income Tax;Revenue of Arts, Entertainment, And Recreation, Exempt From Federal Income Tax;arts, entertainment, and recreation revenue is exempt from federal income tax;federal income tax does not apply to revenue from arts, entertainment, and recreation;federal income tax is not levied on revenue from arts, entertainment, and recreation;revenue from arts, entertainment, and recreation is not subject to federal income tax" -ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Arts, Entertainment, And Recreation (NAICS/71), Subject To Federal Income Tax;Revenue of Arts Entertainment And Recreation Establishments, Subject To Federal Income Tax;federal income tax paid by arts, entertainment, and recreation businesses;income tax paid by arts, entertainment, and recreation establishments;revenue from arts, entertainment, and recreation establishments that is subject to federal income tax;the revenue of arts, entertainment, and recreation establishments that is taxable by the federal government" -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), With Payroll;Revenue of Educational Services WIth Payroll;earnings from educational establishments (naics/61) with payroll;income from educational establishments (naics/61) with payroll;receipts from educational establishments (naics/61) with payroll;revenue of educational establishments (naics/61) with payroll" -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), Exempt From Federal Income Tax;Revenue of Educational Services exempt from federal income tax;educational services revenue is exempt from federal income tax;educational services revenue is not subject to federal income tax;federal income tax does not apply to revenue from educational services;federal income tax does not apply to the revenue of educational services" -ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Educational Services (NAICS/61), Subject To Federal Income Tax;Revenue of Educational Services, Subject to Federal Income Tax;income from educational services that is subject to federal income tax;money earned from educational services that is subject to federal income tax;profit from educational services that is subject to federal income tax;revenue from educational services that is taxable by the federal government" -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), With Payroll;Revenue of Health Care and Social Assistance Establishments With Payroll;the amount of money that health care and social assistance establishments with payroll bring in;the earnings of health care and social assistance establishments with payroll;the gross receipts of health care and social assistance establishments with payroll;the total income of health care and social assistance establishments with payroll" -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), Exempt From Federal Income Tax;Revenue of Health Care And Social Assistance To Exempt From Federal Income Tax;federal income tax does not apply to revenue generated by healthcare and social assistance;federal income tax is not levied on revenue from healthcare and social assistance;healthcare and social assistance revenue is exempt from federal income tax;revenue from healthcare and social assistance is exempt from federal income tax" -ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Health Care And Social Assistance (NAICS/62), Subject To Federal Income Tax;Revenue from Health Care And Social Assistance, Subject To Federal Income Tax;federal income tax on health care and social assistance revenue;federal income tax on revenue from health care and social assistance;federal income tax revenue from health care and social assistance;revenue from health care and social assistance subject to federal income tax" -ReceiptsOrRevenue_Establishment_NAICSInformation_WithPayroll,"Receipts of Information Industries With Payroll;Receipts or Revenue of Establishment: Information (NAICS/51), With Payroll;earnings from information industries with payroll;income from information industries with payroll;revenue from information industries with payroll;sales from information industries with payroll" -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll,"Receipt Of Other Services, Except Public Administration With Payrolls;Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), With Payroll;earnings from other services, excluding public administration with payrolls;income from other services, excluding public administration with payrolls;receipts from other services, excluding public administration with payrolls;takings from other services, excluding public administration with payrolls" -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), Exempt From Federal Income Tax;Revenue From Other Services, Except Public Administration, Exempted From Federal Income Tax;revenue from other services, except public administration, is not included in federal taxable income;revenue from other services, except public administration, is not subject to federal income tax;revenue from other services, except public administration, is not subject to federal income tax withholding;revenue from other services, except public administration, is not subject to federal income taxation" -ReceiptsOrRevenue_Establishment_NAICSOtherServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts or Revenue of Establishment: Other Services, Except Public Administration (NAICS/81), Subject To Federal Income Tax;Revenue of Other Services, Except Public Administration, Subjected To Federal Income Tax;federal income tax revenue from services other than public administration;income tax revenue from non-public administration services;income tax revenue from services other than public administration;revenue from other services, excluding public administration, that is taxed by the federal government" -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,"Receipts of Professional Scientific And Technical Services With Payroll;Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), With Payroll;professional scientific and technical services with payroll;professional scientific and technical services with payroll receipts;receipts of professional scientific and technical services with payroll;receipts of professional scientific and technical services with payroll income" -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_ExemptFromFederalIncomeTax,"Receipts of Professional, Scientific, And Technical Services Exempt From Federal Income Tax;Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Exempt From Federal Income Tax;federal income tax does not apply to receipts from professional, scientific, and technical services;federal income tax is not levied on receipts from professional, scientific, and technical services;receipts from professional, scientific, and technical services are not subject to federal income tax" -ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll_SubjectToFederalIncomeTax,"Receipts of Professional, Scientific, and Technical Services Establishments Subject to Federal Income Tax;Receipts or Revenue of Establishment: Professional, Scientific, And Technical Services (NAICS/54), Subject To Federal Income Tax;revenue of professional, scientific, and technical services establishments that is subject to federal income tax;the amount of money that professional, scientific, and technical services establishments earned and were taxed on by the federal government;the total receipts of professional, scientific, and technical services establishments that were subject to federal income tax;the total revenue of professional, scientific, and technical services establishments that was subject to federal income tax" -Receipts_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,"Receipts of Administrative and Support and Waste Management Services Establishments;Receipts of Establishment: Administrative And Support And Waste Management Services (NAICS/56), With Payroll;income received by administrative and support and waste management services establishments;money earned by administrative and support and waste management services establishments;revenue generated by administrative and support and waste management services establishments;sales made by administrative and support and waste management services establishments" -RetailDrugDistribution_DrugDistribution_Alfentanil,Retail Drug Distribution of Alfentanil;Retail Drug Distribution of Drug Distribution: Drug/dea/9737 -RetailDrugDistribution_DrugDistribution_Amobarbital,Retail Drug Distribution of Amobarbital;Retail Drug Distribution of Drug Distribution: Drug/dea/2125 -RetailDrugDistribution_DrugDistribution_Amphetamine,Amount of Amphetamine Distributed Through Retail Drug Channels;Amount of amphetamine distributed through retail drug channels;How much amphetamine is distributed through retail drug channels;The amount of amphetamine distributed through retail drug channels;The quantity of amphetamine distributed through retail drug channels;how much amphetamine is distributed through retail drug channels;the amount of amphetamine distributed through retail drug channels;the quantity of amphetamine distributed through retail drug channels;the volume of amphetamine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_AnabolicSteroids,Retail Drug Distribution of Anabolic Steroids;Retail Drug Distribution of Drug Distribution: Drug/dea/4000 -RetailDrugDistribution_DrugDistribution_BarbituricAcidDerivativeOrSalt,Retail Drug Distribution of Barbituric Acid Derivative Or Salt;Retail Drug Distribution of Drug Distribution: Drug/dea/2100;drug distribution: 2100;drug distribution: dea 2100;drug distribution: drug/dea/2100 -RetailDrugDistribution_DrugDistribution_Buprenorphine,Retail Drug Distribution of Buprenorphine;Retail Drug Distribution of Drug Distribution: Drug/dea/9064 -RetailDrugDistribution_DrugDistribution_Butalbital,Retail Drug Distribution of Butalbital;Retail Drug Distribution of Drug Distribution: Drug/dea/2165 -RetailDrugDistribution_DrugDistribution_Cocaine,Retail Drug Distribution of Cocaine;Retail Drug Distribution of Drug Distribution: Drug/dea/9041 L;retail drug distribution of drug distribution: drug/dea/9041 l -RetailDrugDistribution_DrugDistribution_Codeine,1 The quantity of codeine distributed through retail drug channels;Amount of Codeine Distributed Through Retail Drug Channels;Amount of codeine distributed through retail drug channels;How much codeine is sold in stores?;The amount of codeine distributed through retail drug channels;The quantity of codeine dispensed through retail pharmacies;the amount of codeine that is sold through retail drug channels;the number of codeine pills that are sold through retail drug channels;the quantity of codeine distributed through retail drug channels;the volume of codeine that is sold through retail drug channels -RetailDrugDistribution_DrugDistribution_DMethamphetamine,Retail Drug Distribution of Drug Distribution: Drug/dea/1105 D;Retail Drug Distribution of Methamphetamine -RetailDrugDistribution_DrugDistribution_Dihydrocodeine,Retail Drug Distribution of Dihydrocodeine;Retail Drug Distribution of Drug Distribution: Drug/dea/9120 -RetailDrugDistribution_DrugDistribution_DlMethamphetamine,Retail Drug Distribution of DlMethamphetamine;Retail Drug Distribution of Drug Distribution: Drug/dea/1105 B -RetailDrugDistribution_DrugDistribution_Ecgonine,Retail Drug Distribution of Drug Distribution: Drug/dea/9180 L;Retail Drug Distribution of Ecgonine -RetailDrugDistribution_DrugDistribution_FDAApprovedGammaHydroxybutyricAcidPreparations,Retail Drug Distribution of Drug Distribution: Drug/dea/2012;Retail Drug Distribution of FDA Approved Gamma Hydroxybutyric Acid Preparations;the distribution of drugs to retail stores in 2012;the movement of drugs from manufacturers to retail stores in 2012;the sale of drugs to retail stores in 2012;the transfer of drugs from manufacturers to retail stores in 2012 -RetailDrugDistribution_DrugDistribution_Fentanyl,Retail Drug Distribution of Drug Distribution: Drug/dea/9801;Retail Drug Distribution of Fentanyl;retail drug distribution of drug distribution: drug/dea/9801;the distribution of drugs to retail outlets: drug/dea/9801;the distribution of drugs to stores: drug/dea/9801;the distribution of retail drugs: drug/dea/9801 -RetailDrugDistribution_DrugDistribution_GammaHydroxybutyricAcid,Retail Drug Distribution of Drug Distribution: Drug/dea/2010;Retail Drug Distribution of Gamma Hydroxybutyric Acid;the distribution of drugs to retail stores in 2010;the sale of drugs to retail stores in 2010;the way drugs are distributed to retail stores in 2010;the way drugs are sold to retail stores in 2010 -RetailDrugDistribution_DrugDistribution_Hydrocodone,Amount of Hydrocodone Distributed Through Retail Drug Channels;Amount of hydrocodone distributed through retail drug channels;How much hydrocodone is distributed through retail drug channels?;The amount of hydrocodone distributed through retail drug channels;The number of hydrocodone tablets sold through retail pharmacies;The quantity of hydrocodone sold through retail pharmacies;The volume of hydrocodone dispensed by retail pharmacies;the amount of hydrocodone sold through retail pharmacies;the number of hydrocodone pills sold through retail stores;the quantity of hydrocodone dispensed through retail drug channels;the volume of hydrocodone distributed through retail outlets -RetailDrugDistribution_DrugDistribution_Hydromorphone,Retail Drug Distribution of Drug Distribution: Drug/dea/9150;Retail Drug Distribution of Hydromorphone -RetailDrugDistribution_DrugDistribution_Levorphanol,Retail Drug Distribution of Drug Distribution: Drug/dea/9220 L;Retail Drug Distribution of Levorphanol;distribution of drugs -RetailDrugDistribution_DrugDistribution_Lisdexamfetamine,Retail Drug Distribution of Drug Distribution: Drug/dea/1205;Retail Drug Distribution of Lisdexamfetamine;drug distribution: drug/dea/1205 -RetailDrugDistribution_DrugDistribution_Lorazepam,Retail Drug Distribution of Drug Distribution: Drug/dea/2885;Retail Drug Distribution of Lorazepam;drug distribution -RetailDrugDistribution_DrugDistribution_MarketableOralDronabinol,Retail Drug Distribution of Drug Distribution: Drug/dea/7365;Retail Drug Distribution of Marketable Oral Dronabinol -RetailDrugDistribution_DrugDistribution_Methadone,Retail Drug Distribution of Drug Distribution: Drug/dea/9250 B;Retail Drug Distribution of Methadone -RetailDrugDistribution_DrugDistribution_Methylphenidate,Retail Drug Distribution of Drug Distribution: Drug/dea/1724;Retail Drug Distribution of Methylphenidate;the movement of drugs to retail stores -RetailDrugDistribution_DrugDistribution_Morphine,Amount of Morphine Distributed Through Retail Drug Channels;Amount of morphine distributed through retail drug channels;How much morphine is distributed through retail drug channels?;Morphine distributed through retail drug channels;The amount of morphine distributed through retail drug channels;the amount of morphine distributed through retail drug channels;the number of morphine doses distributed through retail drug channels;the quantity of morphine distributed through retail drug channels;the volume of morphine distributed through retail drug channels -RetailDrugDistribution_DrugDistribution_Nabilone,Retail Drug Distribution of Drug Distribution: Drug/dea/7379;Retail Drug Distribution of Nabilone;drug distribution to retail stores;drug distribution to retailers;the delivery of drugs to retail outlets -RetailDrugDistribution_DrugDistribution_Naloxone,Retail Drug Distribution of Drug Distribution: Drug/dea/9411;Retail Drug Distribution of Naloxone;drug distribution: drug/dea/9411 -RetailDrugDistribution_DrugDistribution_Noroxymorphone,Retail Drug Distribution of Drug Distribution: Drug/dea/9668;Retail Drug Distribution of Noroxymorphone -RetailDrugDistribution_DrugDistribution_Oxycodone,Amount of Oxycodone Distributed Through Retail Drug Channels;Amount of oxycodone distributed through retail drug channels;Number of oxycodone pills sold in the United States;The amount of oxycodone distributed through retail drug channels;The quantity of oxycodone dispensed through retail pharmacies;The quantity of oxycodone that is distributed through retail drug channels;the amount of oxycodone that was sold through retail drug channels;the number of oxycodone pills that were sold through retail drug channels;the quantity of oxycodone distributed through retail drug channels;the volume of oxycodone that was sold through retail drug channels -RetailDrugDistribution_DrugDistribution_Oxymorphone,"Retail Drug Distribution of Drug Distribution: Drug/dea/9652;Retail Drug Distribution of Oxymorphone;distribution of drugs to retail;distribution of drugs, retail;retail distribution of drugs" -RetailDrugDistribution_DrugDistribution_Paregoric,Retail Drug Distribution of Drug Distribution: Drug/dea/9655;Retail Drug Distribution of Paregoric -RetailDrugDistribution_DrugDistribution_Pentobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2270;Retail Drug Distribution of Pentobarbital -RetailDrugDistribution_DrugDistribution_Pethidine,Retail Drug Distribution of Drug Distribution: Drug/dea/9230;Retail Drug Distribution of Pethidine -RetailDrugDistribution_DrugDistribution_Phencyclidine,Retail Drug Distribution of Drug Distribution: Drug/dea/7471;Retail Drug Distribution of Phencyclidine -RetailDrugDistribution_DrugDistribution_Phendimetrazine,Retail Drug Distribution of Drug Distribution: Drug/dea/1615;Retail Drug Distribution of Phendimetrazine;drug distribution: drug/dea/1615 -RetailDrugDistribution_DrugDistribution_Phenobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2285;Retail Drug Distribution of Phenobarbital;retail drug distribution: drug/dea/2285 -RetailDrugDistribution_DrugDistribution_PoppyStrawConcentrate,Retail Drug Distribution of Drug Distribution: Drug/dea/9670;Retail Drug Distribution of Poppy Straw Concentrate -RetailDrugDistribution_DrugDistribution_PowderedOpium,Retail Drug Distribution of Drug Distribution: Drug/dea/9639;Retail Drug Distribution of Powdered Opium -RetailDrugDistribution_DrugDistribution_Remifentanil,Retail Drug Distribution of Drug Distribution: Drug/dea/9739;Retail Drug Distribution of Remifentanil -RetailDrugDistribution_DrugDistribution_Secobarbital,Retail Drug Distribution of Drug Distribution: Drug/dea/2315;Retail Drug Distribution of Secobarbital -RetailDrugDistribution_DrugDistribution_Sufentanil,Retail Drug Distribution of Drug Distribution: Drug/dea/9740;Retail Drug Distribution of Sufentanil -RetailDrugDistribution_DrugDistribution_Tapentadol,Retail Drug Distribution of Drug Distribution: Drug/dea/9780;Retail Drug Distribution of Tapentadol -RetailDrugDistribution_DrugDistribution_Testosterone,Retail Drug Distribution of Drug Distribution: Drug/dea/4187;Retail Drug Distribution of Testosterone -RetailDrugDistribution_DrugDistribution_TincuredOpium,Retail Drug Distribution of Drug Distribution: Drug/dea/9630;Retail Drug Distribution of Tincture Opium -RetailDrugDistribution_DrugDistribution_Zolpidem,Retail Drug Distribution of Drug Distribution: Drug/dea/2783;Retail Drug Distribution of Zolpidem -RetailDrugDistribution_DrugDistribution_dea/9809,Retail Drug Distribution of Drug Distribution: Drug/dea/9809;Retail Drug Distribution of Opium combination product 25 mg/du -Revenue_Establishment_NAICSFinanceInsurance_WithPayroll,"Revenue of Establishment: Finance And Insurance (NAICS/52), With Payroll;Revenue of Finance And Insurance With Payroll;finance and insurance payroll revenue;payroll revenue for finance and insurance;payroll revenue from finance and insurance;revenue from finance and insurance payroll" -Revenue_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,"Revenue in Management of Companies And Enterprises With Payroll;Revenue of Establishment: Management of Companies And Enterprises (NAICS/55), With Payroll;income from managing companies and enterprises with payroll;income in corporate management with payroll;profits in business administration with payroll;revenue in enterprise administration with payroll" -Revenue_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,"Revenue of Establishment: Real Estate And Rental And Leasing (NAICS/53), With Payroll;Revenue of Real Estate And Rental And Leasing Industries With Payroll;the amount of money earned by the real estate and rental and leasing industries, including payroll;the revenue of the real estate and rental and leasing industries, including payroll;the total earnings of the real estate and rental and leasing industries, including payroll;the total revenue of the real estate and rental and leasing industries, including payroll" -Sales_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll,"Sales Of Wholesale Trade Establishments;Sales of Establishment: Manufacturer Sales Branches And Offices, Wholesale Trade (NAICS/42);sales at wholesale establishments;sales of goods by wholesale establishments;sales of goods to other businesses;wholesale trade sales" -Sales_Establishment_NAICSAccommodationFoodServices_WithPayroll,"Sales of Accommodation and Food Services Establishments With Payroll;Sales of Establishment: Accommodation And Food Services (NAICS/72), With Payroll;sales of businesses in the accommodation and food services sector with employees;sales of businesses in the hospitality sector with employees;sales of food and accommodation businesses with employees;sales of hotels, restaurants, and other food and accommodation businesses with employees" -Sales_Establishment_NAICSWholesaleTrade_WithPayroll,"Sales of Establishment: Wholesale Trade (NAICS/42), With Payroll;Wholesale Trade Establishments With Payrolls;establishments in the wholesale trade sector that have paid employees;wholesale trade businesses with payrolls;wholesale trade companies that pay their employees;wholesale trade firms with paid workers" -Sales_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Sales of Establishment: Merchant Wholesalers, Wholesale Trade (NAICS/42);Wholesale Trade Merchant Wholesalers;wholesalers who sell to retailers" -SettlementAmount_NaturalHazardInsurance_BuildingContents_FloodEvent,"Settlement Amount of Flood Insurance for Building Contents in Floods Zone;Settlement Amount of Natural Hazard Insurance: Building Contents, Flood Event;how much money will i get from my natural hazard insurance for my building contents after a flood?;how much will my natural hazard insurance pay for my building contents after a flood?;what is the payout for my building contents after a flood from my natural hazard insurance?;what is the settlement amount for my building contents after a flood from my natural hazard insurance?" -SettlementAmount_NaturalHazardInsurance_BuildingStructureAndContents_FloodEvent,"Settlement Amount of Natural Hazard Insurance in Building Structure and Contents;Settlement Amount of Natural Hazard Insurance: Building Structure And Contents, Flood Event;the amount of money you will be compensated for if your building structure or contents are damaged or destroyed by a natural hazard;the amount of money you will be paid by your natural hazard insurance company if your building structure or contents are damaged or destroyed;the amount of money you will be reimbursed for if your building structure or contents are damaged or destroyed by a natural hazard;the amount of money you will receive from your natural hazard insurance policy if your building structure or contents are damaged or destroyed" -SettlementAmount_NaturalHazardInsurance_BuildingStructure_FloodEvent,"Settlement Amount Of Flood Insurance in Building Structures;Settlement Amount of Natural Hazard Insurance: Building Structure, Flood Event;the amount of money paid out by flood insurance for damage to building structures;the amount of money paid out by flood insurance for damage to buildings;the amount of money that a building owner can expect to receive from their flood insurance policy if their building is damaged by a flood;the amount of money that a flood insurance policy will pay out for damage to a building" -ShipmentsOrReceipts_Establishment_NAICSMiningQuarryingOilGasExtraction_WithPayroll,"Shipments of Mining, Quarrying, Oil and Gas Extraction With Payroll;Shipments or Receipts of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21), With Payroll;mining, quarrying, oil and gas extraction payroll shipments;payroll shipments for mining, quarrying, oil and gas extraction;payroll shipments of mining, quarrying, oil and gas extraction;shipments of mining, quarrying, oil and gas extraction with payroll" -StandardizedPrecipitationEvapotranspirationIndex_Atmosphere,Atmospheric Standardized Precipitation Evapotranspiration Index;Standardized Precipitation Evapotranspiration Index;standardized precipitation evapotranspiration;standardized precipitation evapotranspiration index;standardized precipitation evapotranspiration index (spi);standardized precipitation-evapotranspiration index -StandardizedPrecipitationIndex_Atmosphere,Atmospheric Standardized Precipitation Index;Standardized Precipitation Index;standard precipitation index;standard precipitation index (spi);standardized precipitation index;standardized precipitation index (spi) -StandardizedPrecipitationIndex_Atmosphere_1MonthPeriod,Standardized Precipitation Index Measured Over the Previous Month;Standardized Precipitation Index: Month 1;january precipitation index;january spi;january's spi;precipitation index for january -StandardizedPrecipitationIndex_Atmosphere_36MonthPeriod,Standardized Precipitation Index Measured Over the Previous 36 months;Standardized Precipitation Index: Month 36;how much precipitation was there in the 36th month?;how much rain fell in the 36th month?;standardized precipitation index (spi) for month 36;what was the average rainfall in the 36th month? -StandardizedPrecipitationIndex_Atmosphere_3MonthPeriod,Standardized Precipitation Index Measured Over the Previous 3 Months;Standardized Precipitation Index: Month 3;spi in month 3;spi of month 3;standardized precipitation index (spi) for month 3;standardized precipitation index for month 3 -StandardizedPrecipitationIndex_Atmosphere_6MonthPeriod,Standardized Precipitation Index Measured Over the Previous 6 Months;Standardized Precipitation Index: Month 6;standardized precipitation index (spi) for month 6;standardized precipitation index for month 6;standardized precipitation index for the 6th month of the year;standardized precipitation index in month 6 -StandardizedPrecipitationIndex_Atmosphere_72MonthPeriod,"Standardized Precipitation Index Measured Over the Previous 72 Months;Standardized Precipitation Index: Month 72;spi, month 72;spi: month 72;standardized precipitation index for month 72;standardized precipitation index, month 72" -StandardizedPrecipitationIndex_Atmosphere_9MonthPeriod,Standardized Precipitation Index Measured Over the Previous 9 Months;Standardized Precipitation Index: Month 9;month 9 standardized precipitation index;september standardized precipitation index;standardized precipitation index for month 9;standardized precipitation index in month 9 -Temperature,Temperature;Temperature in a Location -USStateQuarterlyIndustryGDP_NAICS_11,"Amount of Economic Activity (Nominal): Gross Domestic Production, Agriculture, Forestry, Fishing And Hunting (NAICS/11);Nominal Gross Domestic Production in Agriculture, Forestry, Fishing, And Hunting Industries;agriculture, forestry, fishing, and hunting industries' nominal gross domestic product;agriculture, forestry, fishing, and hunting industries' nominal gross domestic production;nominal gross domestic product of agriculture, forestry, fishing, and hunting industries;the nominal gross domestic product of agriculture, forestry, fishing, and hunting industries" -USStateQuarterlyIndustryGDP_NAICS_21,"Amount of Economic Activity (Nominal): Gross Domestic Production, Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Gross Domestic Production of Mining Quarrying And Oil And Gas Extraction;gdp from mining, quarrying, and oil and gas extraction;gdp generated by mining, quarrying, and oil and gas extraction;gdp of mining, quarrying, and oil and gas extraction;gdp of the mining, quarrying, and oil and gas extraction sector" -USStateQuarterlyIndustryGDP_NAICS_22,"Amount of Economic Activity (Nominal): Gross Domestic Production, Utilities (NAICS/22);Amount of Economic Activity in Utilities;the amount of economic activity in the utilities industry;the economic activity generated by the utilities sector;the economic activity in the utilities sector;the level of economic activity in the utilities sector" -USStateQuarterlyIndustryGDP_NAICS_23,"Amount of Economic Activity (Nominal): Gross Domestic Production, Construction (NAICS/23);Amount of Economic Activity in Construction;the amount of money spent on construction;the economic activity generated by the construction industry;the economic impact of construction;the level of construction activity" -USStateQuarterlyIndustryGDP_NAICS_311_316&322_326,"Amount of Economic Activity (Nominal): Gross Domestic Production, NAICS/311-316 & NAICS/322-326;Quarterly Gross Domestic Production of Nondurable Goods Manufacturing Industries" -USStateQuarterlyIndustryGDP_NAICS_31_33,"Amount of Economic Activity (Nominal): Gross Domestic Production, Manufacturing (NAICS/31-33);Amount of Gross Domestic Production Chemical Mechanical or Physical Transformation of Materials Manufacturing;amount of gross domestic production from chemical, mechanical, or physical transformation of materials;chemical, mechanical, or physical transformation of materials;production of goods and services by chemical, mechanical, or physical transformation of materials;the amount of gross domestic product (gdp) generated by the chemical, mechanical, or physical transformation of materials" -USStateQuarterlyIndustryGDP_NAICS_321&327_339,"Amount of Economic Activity (Nominal): Gross Domestic Production, Wood Product Manufacturing (NAICS/321) & NAICS/327-339;Quarterly Gross Domestic Production of Durable Goods Manufacturing Industries" -USStateQuarterlyIndustryGDP_NAICS_42,"Amount of Economic Activity (Nominal): Gross Domestic Production, Wholesale Trade (NAICS/42);Amount of Economic Activity For Gross Domestic Production And Wholesale Trade;how much economic activity is there in gross domestic production and wholesale trade?;what is the amount of economic activity in gross domestic production and wholesale trade?;what is the level of economic activity in gross domestic production and wholesale trade?;what is the scope of economic activity in gross domestic production and wholesale trade?" -USStateQuarterlyIndustryGDP_NAICS_44_45,"Amount of Economic Activity (Nominal): Gross Domestic Production, Retail Trade (NAICS/44-45);Gross Domestic Production in Retail Trade;gdp in retail trade;retail gdp;retail trade gdp;the total economic output of the retail sector" -USStateQuarterlyIndustryGDP_NAICS_48_49,"Amount of Economic Activity (Nominal): Gross Domestic Production, Transportation And Warehousing (NAICS/48-49);Amount of Economic Activity Of Gross Domestic Production And Transportation And Warehousing;the amount of economic activity in the transportation and warehousing field;the amount of economic activity in the transportation and warehousing industry;the amount of economic activity in the transportation and warehousing sector;the amount of economic activity in transportation and warehousing" -USStateQuarterlyIndustryGDP_NAICS_51,"Amount of Economic Activity (Nominal): Gross Domestic Production, Information (NAICS/51);Nominal Gross Domestic Production in Information Establishments;the total value of goods and services produced by information establishments, expressed in nominal terms;the total value of goods and services produced by information establishments, in current dollars;the total value of goods and services produced by information establishments, not adjusted for inflation;the value of goods and services produced by information establishments in a given year, not adjusted for inflation" -USStateQuarterlyIndustryGDP_NAICS_52,"Amount of Economic Activity (Nominal): Gross Domestic Production, Finance And Insurance (NAICS/52);Nominal Amount of Economic Activity in Gross Domestic Production, Finance And Insurance Industries;the amount of economic activity in the finance and insurance industries, as measured by the nominal gross domestic product;the total economic activity of the finance and insurance industries" -USStateQuarterlyIndustryGDP_NAICS_53,"Amount of Economic Activity (Nominal): Gross Domestic Production, Real Estate And Rental And Leasing (NAICS/53);Quarterly Gross Domestic Production of Real Estate And Rental And Leasing" -USStateQuarterlyIndustryGDP_NAICS_54,"Amount of Economic Activity (Nominal): Gross Domestic Production, Professional, Scientific, And Technical Services (NAICS/54);Amount of Economic Activity of Gross Domestic Production Professional, Scientific, And Technical Services Industries;the amount of economic activity generated by professional, scientific, and technical services industries;the amount of economic activity in professional, scientific, and technical services industries;the economic activity of professional, scientific, and technical services industries;the economic activity of the professional, scientific, and technical services industries" -USStateQuarterlyIndustryGDP_NAICS_55,"Amount of Economic Activity (Nominal): Gross Domestic Production, Management of Companies And Enterprises (NAICS/55);Gross Domestic Production in Management of Companies And Enterprises;gdp in business administration;gdp in business management;gross domestic product (gdp) in business management;how does gdp affect businesses and enterprises" -USStateQuarterlyIndustryGDP_NAICS_56,"Amount of Economic Activity (Nominal): Gross Domestic Production, Administrative And Support And Waste Management Services (NAICS/56);Nominal Amount of Economic Activity in Gross Domestic Production, Administrative, Support and Waste Management Service Industries;the amount of money generated by the administrative, support, and waste management service industries in the gross domestic product;the economic activity of the administrative, support, and waste management service industries;the economic activity of the administrative, support, and waste management service industries as measured by the gross domestic product;the economic output of the administrative, support, and waste management service industries" -USStateQuarterlyIndustryGDP_NAICS_61,"Amount of Economic Activity (Nominal): Gross Domestic Production, Educational Services (NAICS/61);Gross Domestic Production Educational Services;educational services as a percentage of gdp;the amount of gdp that is generated by the education sector;the amount of money that is spent on education as a proportion of the total economic output of a country;the share of gdp that comes from educational services" -USStateQuarterlyIndustryGDP_NAICS_62,"Amount of Economic Activity (Nominal): Gross Domestic Production, Health Care And Social Assistance (NAICS/62);Amount of Economic Activity Gross Domestic Production Health Care And Social Assistance;the amount of economic activity in the country is largely due to health care and social assistance" -USStateQuarterlyIndustryGDP_NAICS_71,"Amount of Economic Activity (Nominal): Gross Domestic Production, Arts, Entertainment, And Recreation (NAICS/71);Gross Domestic Production in Arts, Entertainment and Recreation Establishments;the gross domestic product (gdp) of arts, entertainment, and recreation establishments in the united states" -USStateQuarterlyIndustryGDP_NAICS_72,"Accommodation and Food Services;Amount of Economic Activity (Nominal): Gross Domestic Production, Accommodation And Food Services (NAICS/72)" -USStateQuarterlyIndustryGDP_NAICS_81,"Amount of Economic Activity (Nominal): Gross Domestic Production, Other Services, Except Public Administration (NAICS/81);Gross Domestic Production And Other Services Except Public Administration;gdp excluding government services;gdp excluding public administration;gdp minus public administration;gdp without public administration" -UnemploymentRate_Person,Jobless rate in the population;Number of people in the population who are unemployed;Percentage of labor force that is unemployed;Percentage of people in the population who don't have a job;Percentage of population without work;Rate of unemployment;The number of unemployed people as a percentage of the total labor force;The percentage of people who are unemployed;Unemployment Rate;Unemployment Rate of a Population;Unemployment rate;Unemployment rate in the population;the number of unemployed people divided by the total number of people in the labor force;the percentage of people who are actively looking for work but are unable to find a job;the proportion of the population that is out of work;unemployment;unemployment rate -UnemploymentRate_Person_Female,The number of unemployed women as a percentage of the female labor force;The percentage of women who are looking for work but have not been able to find a job;The percentage of women who are unemployed;The proportion of women who are not employed;The unemployment rate for women;Unemployment Rate of the Female Population;Unemployment Rate of the female population;Unemployment Rate: Female;female unemployment rate;unemployment rate among women;what is the rate of unemployment among women?;what is the unemployment rate for women? -UnemploymentRate_Person_Male,1 The percentage of men who are unemployed;Unemployment Rate of the Male Population;Unemployment Rate of the male population;Unemployment Rate: Male;What percentage of men are unemployed?;What's the unemployment rate for men?;the number of unemployed men as a percentage of the total male population;what is the male unemployment rate?;what is the number of unemployed men as a percentage of the male labor force?;what is the unemployment rate for men? -UnemploymentRate_Person_Rural,Unemployment Rate: Rural -UnemploymentRate_Person_Rural_Female,"Unemployment Rate: Female, Rural" -UnemploymentRate_Person_Rural_Male,"Unemployment Rate: Male, Rural" -UnemploymentRate_Person_Urban,Unemployment Rate: Urban -UnemploymentRate_Person_Urban_Female,"Unemployment Rate: Female, Urban" -UnemploymentRate_Person_Urban_Male,"Unemployment Rate: Male, Urban" -WHO/Adult_daily_tob_use,Percentage of Prevalence Of Daily Tobacco Use Among Adults;Prevalence Of Daily Tobacco Use Among Adults (%) -WHO/CM_01,Deaths of Population Under-Five Years;Number Of Under-Five Deaths -WHO/CM_02,Infant Deaths;Number Of Infant Deaths -WHO/CM_03,Number Of Neonatal Deaths;Number of Neonatal Deaths +MedianMothersAge_BirthEvent,Median Mother's Age at Birth +Median_Age_Person,Median age of people +Median_Age_Person_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native people +Median_Age_Person_AsianAlone,median age of asian people +Median_Age_Person_BlackOrAfricanAmericanAlone,median age of black or african american people +Median_Age_Person_Female,median age of females +Median_Age_Person_Female_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native females +Median_Age_Person_Female_AsianAlone,median age of asian females +Median_Age_Person_Female_BlackOrAfricanAmericanAlone,median age of black or african american females +Median_Age_Person_Female_ForeignBorn,median age of females who are foreign born +Median_Age_Person_Female_HispanicOrLatino,median age of hispanic or latino females +Median_Age_Person_Female_Native,median age of native born females +Median_Age_Person_Female_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander females +Median_Age_Person_Female_TwoOrMoreRaces,median age of multi-race females +Median_Age_Person_Female_WhiteAlone,median age of white females +Median_Age_Person_ForeignBorn,median age of foreign born people +Median_Age_Person_ForeignBorn_PlaceOfBirthAfrica,median age of foreign born people from africa +Median_Age_Person_ForeignBorn_PlaceOfBirthAsia,median age of foreign born people from asia +Median_Age_Person_ForeignBorn_PlaceOfBirthCaribbean,median age of foreign born people from caribbean +Median_Age_Person_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,median age of foreign born people from central america except mexico +Median_Age_Person_ForeignBorn_PlaceOfBirthEasternAsia,median age of foreign born people from eastern asia +Median_Age_Person_ForeignBorn_PlaceOfBirthEurope,median age of foreign born people from europe +Median_Age_Person_ForeignBorn_PlaceOfBirthLatinAmerica,median age of foreign born people from latin america +Median_Age_Person_ForeignBorn_PlaceOfBirthMexico,median age of foreign born people from mexico +Median_Age_Person_ForeignBorn_PlaceOfBirthNorthamerica,median age of foreign born people from north america +Median_Age_Person_ForeignBorn_PlaceOfBirthNorthernWesternEurope,median age of foreign born people from northern western europe +Median_Age_Person_ForeignBorn_PlaceOfBirthOceania,median age of foreign born people from oceania +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthCentralAsia,median age of foreign born people from south central asia +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthEasternAsia,median age of foreign born people from south eastern asia +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthamerica,median age of foreign born people from south america +Median_Age_Person_ForeignBorn_PlaceOfBirthSouthernEasternEurope,median age of foreign born people from southern eastern europe +Median_Age_Person_ForeignBorn_PlaceOfBirthWesternAsia,median age of foreign born people from western asia +Median_Age_Person_HispanicOrLatino,median age of hispanic or latino people +Median_Age_Person_Male,median age of males +Median_Age_Person_Male_AmericanIndianOrAlaskaNativeAlone,median age of american indian or alaska native males +Median_Age_Person_Male_AsianAlone,median age of asian males +Median_Age_Person_Male_BlackOrAfricanAmericanAlone,median age of black or african american males +Median_Age_Person_Male_ForeignBorn,median age of foreign born males +Median_Age_Person_Male_HispanicOrLatino,median age of hispanic or latino males +Median_Age_Person_Male_Native,median age of native males +Median_Age_Person_Male_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander males +Median_Age_Person_Male_TwoOrMoreRaces,median age of multi races males +Median_Age_Person_Male_WhiteAlone,median age of white males +Median_Age_Person_Native,median age of native people +Median_Age_Person_NativeHawaiianOrOtherPacificIslanderAlone,median age of native hawaiian or other pacific islander +Median_Age_Person_NoHealthInsurance,median age of people who have no health insurance +Median_Age_Person_ResidesInAdultCorrectionalFacilities,Median age of people residing in adult correctional facilities +Median_Age_Person_ResidesInCollegeOrUniversityStudentHousing,Median age of people residing in college or university student housing +Median_Age_Person_ResidesInGroupQuarters,Median age of people residing in group quarters +Median_Age_Person_ResidesInInstitutionalizedGroupQuarters,Median age of people residing in institutionalized group quarters +Median_Age_Person_ResidesInNoninstitutionalizedGroupQuarters,Median age of people residing in noninstitutionalized group quarters +Median_Age_Person_ResidesInNursingFacilities,Median age of people residing in nursing facilities +Median_Age_Person_TwoOrMoreRaces,Median age of people of multi races +Median_Age_Person_WhiteAlone,Median age of white people +Median_Age_Person_WorkedInThePast12Months,Median age of people who worked in the past 12 months +Median_Area_Farm,Median area of farm +Median_Earnings_Person,median earnings of people +Median_Earnings_Person_Female,median earnings of females +Median_Earnings_Person_Male,median earnings of males +Median_GrossRent_HousingUnit_WithCashRent_OccupiedHousingUnit_RenterOccupied,Median Gross Rent for Cash-Rent Housing Units +Median_HomeValue_HousingUnit_OccupiedHousingUnit_OwnerOccupied,Median home value for owner occupied housing units +Median_Income_Household,Median household income +Median_Income_Household_FamilyHousehold,Median household income for family households +Median_Income_Household_ForeignBorn_PlaceOfBirthAfrica,Median income of households with foreign born people from Africa +Median_Income_Household_ForeignBorn_PlaceOfBirthAsia,Median income of households with foreign born people from Asia +Median_Income_Household_ForeignBorn_PlaceOfBirthCaribbean,Median income of households with foreign born people from Caribbean +Median_Income_Household_ForeignBorn_PlaceOfBirthCentralAmericaExceptMexico,Median income of households with foreign born people from Central America Except Mexico +Median_Income_Household_ForeignBorn_PlaceOfBirthEasternAsia,Median income of households with foreign born people from Eastern Asia +Median_Income_Household_ForeignBorn_PlaceOfBirthEurope,Median income of households with foreign born people from Europe +Median_Income_Household_ForeignBorn_PlaceOfBirthLatinAmerica,Median income of households with foreign born people from Latin America +Median_Income_Household_ForeignBorn_PlaceOfBirthMexico,Median income of households with foreign born people from Mexico +Median_Income_Household_ForeignBorn_PlaceOfBirthNorthamerica,Median income of households with foreign born people from North America +Median_Income_Household_ForeignBorn_PlaceOfBirthNorthernWesternEurope,Median income of households with foreign born people from Northern Western Europe +Median_Income_Household_ForeignBorn_PlaceOfBirthOceania,Median income of households with foreign born people from Oceania +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthCentralAsia,Median income of households with foreign born people from South Central Asia +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthEasternAsia,Median income of households with foreign born people from South Eastern Asia +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthamerica,Median income of households with foreign born people from South America +Median_Income_Household_ForeignBorn_PlaceOfBirthSouthernEasternEurope,Median income of households with foreign born people from Southern Eastern Europe +Median_Income_Household_ForeignBorn_PlaceOfBirthWesternAsia,Median income of households with foreign born people from Western Asia +Median_Income_Household_HouseholderRaceAmericanIndianOrAlaskaNativeAlone,Median income for household with American Indian or Alaska Native householder +Median_Income_Household_HouseholderRaceAsianAlone,Median income for household with Asian householder +Median_Income_Household_HouseholderRaceBlackOrAfricanAmericanAlone,Median income for household with Black or African American householder +Median_Income_Household_HouseholderRaceHispanicOrLatino,Median income for household with Hispanic or Latino householder +Median_Income_Household_HouseholderRaceNativeHawaiianOrOtherPacificIslanderAlone,Median income for household with Native Hawaiian or other Pacific Islander householder +Median_Income_Household_HouseholderRaceTwoOrMoreRaces,Median income for household with muti races householder +Median_Income_Household_HouseholderRaceWhiteAlone,Median income for household with white householder +Median_Income_Household_MarriedCoupleFamilyHousehold,Median income for married couple family household +Median_Income_Household_NoHealthInsurance,Median income for household without health insurance +Median_Income_Household_NonfamilyHousehold,Median income for non family household +Median_Income_Household_WithFoodStampsInThePast12Months,Median Income for Households With Food Stamps in the Past Year +Median_Income_Household_WithoutFoodStampsInThePast12Months,Median Income for Households Without Food Stamps in the Past Year +Median_Income_Person,median individual income +Median_Income_Person_15OrMoreYears_Female_WithIncome,Median Income of females +Median_Income_Person_15OrMoreYears_Male_WithIncome,Median Income of males +Median_Income_Person_15OrMoreYears_WithIncome_ForeignBorn,Median Income of foreign born people +Median_Income_Person_18OrMoreYears_Civilian_WithIncome,Median Income of civilians +Median_Income_Person_25OrMoreYears_EducationalAttainmentBachelorsDegree_WithIncome,Median Income of people with bachelor's degree +Median_Income_Person_25OrMoreYears_EducationalAttainmentGraduateOrProfessionalDegree_WithIncome,Median Income of people with graduate or professional degree +Median_Income_Person_25OrMoreYears_EducationalAttainmentHighSchoolGraduateIncludesEquivalency_WithIncome,Median Income of people with high school graduate includes equivalency +Median_Income_Person_25OrMoreYears_EducationalAttainmentLessThanHighSchoolGraduate_WithIncome,Median Income of people with less than high school graduate +Median_Income_Person_25OrMoreYears_EducationalAttainmentSomeCollegeOrAssociatesDegree_WithIncome,Median Income of people with some college or associates degree +Min_Humidity_RelativeHumidity,Minimum Relative Humidity +Min_Rainfall,Minimal rainfall +Min_Snowfall,minimal snowfall +Min_Temperature,minimal Temperature +Monthly_Count_ElectricityConsumer,Monthly count of electricity consumers +MortalityRate_Person_Upto4Years_AsFractionOf_Count_BirthEvent_LiveBirth,Mortality Rate of Children Younger Than 4 Years +NetMeasure_Income_Farm,Total farm net income +NumberOfDays_HeatWaveEvent,Number of Heat Wave days in a year +PalmerDroughtSeverityIndex_Atmosphere,Palmer Drought Severity Index +Percent_BurnedArea_FireEvent,Percent of area that are burned in land fire +Percent_BurnedArea_FireEvent_Forest,Percent of forest area that burned +Percent_BurnedArea_FireEvent_Forest_HighSeverity,Percent of forest area that experienced high-severity fire +Percent_Daily_TobaccoUsing_In_Count_Person,Prevalence of Daily Tobacco Smoking +Percent_Daily_TobaccoUsing_In_Count_Person_Female,Prevalence of Daily Tobacco Use Among Females +Percent_Daily_TobaccoUsing_In_Count_Person_Male,Prevalence of Daily Tobacco Use Among Mmales +Percent_Person_18To64Years_Female_NoHealthInsurance,Percentage of working age females Without Health Insurance +Percent_Person_18To64Years_Male_NoHealthInsurance,Percentage of working age males Without Health Insurance +Percent_Person_18To64Years_ReceivedNoHealthInsurance,Percentage of working age population Without Health Insurance +Percent_Person_20OrMoreYears_WithDiabetes,Percentage of People Aged 20 and above With Diabetes +Percent_Person_21To65Years_Female_ReceivedCervicalCancerScreening,Percentage of females Aged 21 to 65 Received Cervical Cancer Screening +Percent_Person_50To74Years_Female_ReceivedMammography,Percentage of females Aged 50 to 74 Received Mammography +Percent_Person_50To75Years_ReceivedColorectalCancerScreening,Percentage of People Aged 50 to 75 Received Colorectal Cancer Screening +Percent_Person_65OrMoreYears_Female_ReceivedCorePreventiveServices,Percentage of elderly females Received Core Preventive Services +Percent_Person_65OrMoreYears_Male_ReceivedCorePreventiveServices,Percentage of elderly males Received Core Preventive Services +Percent_Person_65OrMoreYears_WithAllTeethLoss,Percentage of elderly people who have lost all their teeth +Percent_Person_BingeDrinking,prevalence of binge drinking +Percent_Person_Children_WithAsthma,prevalence of asthma among children +Percent_Person_Obesity,prevalence of obesity +Percent_Person_PhysicalInactivity,prevalence of physical inactivity +Percent_Person_ReceivedAnnualCheckup,Percentage of the population who receive an annual checkup +Percent_Person_ReceivedCholesterolScreening,Percentage of adults who Received Cholesterol Screening +Percent_Person_ReceivedDentalVisit,Percentage of adults who Received Dental Visit +Percent_Person_SleepLessThan7Hours,Percentage of adults who Sleep Less Than 7 Hours +Percent_Person_Smoking,Prevalence of Smoke among adults +Percent_Person_WithAllTeethLoss,Prevalence of All Teeth Loss among adults +Percent_Person_WithArthritis,Prevalence of Arthritis among adults +Percent_Person_WithAsthma,Prevalence of Asthma among adults +Percent_Person_WithCancerExcludingSkinCancer,Prevalence of Cancer Excluding Skin Cancer among adults +Percent_Person_WithChronicKidneyDisease,Prevalence of Chronic Kidney Disease among adults +Percent_Person_WithChronicObstructivePulmonaryDisease,Prevalence of Chronic Obstructive Pulmonary Disease among adults +Percent_Person_WithCoronaryHeartDisease,Prevalence of Coronary Heart Disease among adults +Percent_Person_WithDiabetes,Prevalence of Diabetes among adults +Percent_Person_WithHighBloodPressure,Prevalence of High Blood Pressure among adults +Percent_Person_WithHighCholesterol,Prevalence of High Cholesterol among adults +Percent_Person_WithMentalHealthNotGood,Prevalence of poor Mental Health among adults +Percent_Person_WithPhysicalHealthNotGood,Prevalence of poor Physical Health among adults +Percent_Person_WithStroke,Prevalence of Stroke among adults +Percent_Student_AsAFractionOf_Count_Teacher,Student to Teacher Ratio +Percent_TobaccoUsing_In_Count_Person,Prevalence of Tobacco Use +Percent_TobaccoUsing_In_Count_Person_Female,Prevalence of tobacco use among females +Percent_TobaccoUsing_In_Count_Person_Male,Prevalence of tobacco use among males +QuantitySold_FarmInventory_CattleAndCalves,Number of Cattle and Calves Sold From Farms +QuantitySold_FarmInventory_HogsAndPigs,Number of Hogs and Pigs Sold From Farms +ReceiptsBillingsOrSales_Establishment_NAICSConstruction_WithPayroll,Revenue of Construction Establishments +ReceiptsOrRevenue_Establishment_NAICSArtsEntertainmentRecreation_WithPayroll,"Revenue of Arts, Entertainment, and Recreation Establishments" +ReceiptsOrRevenue_Establishment_NAICSEducationalServices_WithPayroll,Revenue of Educational Services Establishments +ReceiptsOrRevenue_Establishment_NAICSHealthCareSocialAssistance_WithPayroll,Revenue of Health Care and Social Assistance Establishments +ReceiptsOrRevenue_Establishment_NAICSInformation_WithPayroll,Revenue of Information Establishments +ReceiptsOrRevenue_Establishment_NAICSProfessionalScientificTechnicalServices_WithPayroll,"Revenue of Professional, Scientific, and Technical Services Establishments" +Receipts_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices_WithPayroll,Revenue of Administrative And Support And Waste Management Services Establishments +RetailDrugDistribution_DrugDistribution_Alfentanil,amount of retail drug purchase of alfentanil +RetailDrugDistribution_DrugDistribution_Amphetamine,amount of retail drug purchase of Amphetamine +RetailDrugDistribution_DrugDistribution_AnabolicSteroids,amount of retail drug purchase of Anabolic Steroids +RetailDrugDistribution_DrugDistribution_BarbituricAcidDerivativeOrSalt,amount of retail drug purchase of Barbituric Acid Derivative Or Salt +RetailDrugDistribution_DrugDistribution_Buprenorphine,amount of retail drug purchase of Buprenorphine +RetailDrugDistribution_DrugDistribution_Butalbital,amount of retail drug purchase of Butalbital +RetailDrugDistribution_DrugDistribution_Cocaine,amount of retail drug purchase of Cocaine +RetailDrugDistribution_DrugDistribution_Codeine,amount of retail drug purchase of Codeine +RetailDrugDistribution_DrugDistribution_DMethamphetamine,amount of retail drug purchase of D-Methamphetamine +RetailDrugDistribution_DrugDistribution_Dihydrocodeine,amount of retail drug purchase of Dihydrocodeine +RetailDrugDistribution_DrugDistribution_DlMethamphetamine,amount of retail drug purchase of Dl-Methamphetamine +RetailDrugDistribution_DrugDistribution_Ecgonine,amount of retail drug purchase of Ecgonine +RetailDrugDistribution_DrugDistribution_FDAApprovedGammaHydroxybutyricAcidPreparations,amount of retail drug purchase of FDA Approved Gamma Hydroxybutyric Acid Preparations +RetailDrugDistribution_DrugDistribution_Fentanyl,amount of retail drug purchase of Fentanyl +RetailDrugDistribution_DrugDistribution_GammaHydroxybutyricAcid,amount of retail drug purchase of Gamma Hydroxybutyric Acid +RetailDrugDistribution_DrugDistribution_Hydrocodone,amount of retail drug purchase of Hydrocodone +RetailDrugDistribution_DrugDistribution_Hydromorphone,amount of retail drug purchase of Hydromorphone +RetailDrugDistribution_DrugDistribution_Levorphanol,amount of retail drug purchase of Levorphanol +RetailDrugDistribution_DrugDistribution_Lisdexamfetamine,amount of retail drug purchase of Lisdexamfetamine +RetailDrugDistribution_DrugDistribution_Lorazepam,amount of retail drug purchase of Lorazepam +RetailDrugDistribution_DrugDistribution_MarketableOralDronabinol,amount of retail drug purchase of Marketable Oral Dronabinol +RetailDrugDistribution_DrugDistribution_Methadone,amount of retail drug purchase of Methadone +RetailDrugDistribution_DrugDistribution_Methylphenidate,amount of retail drug purchase of Methylphenidate +RetailDrugDistribution_DrugDistribution_Morphine,amount of retail drug purchase of Morphine +RetailDrugDistribution_DrugDistribution_Nabilone,amount of retail drug purchase of Nabilone +RetailDrugDistribution_DrugDistribution_Naloxone,amount of retail drug purchase of Naloxone +RetailDrugDistribution_DrugDistribution_Noroxymorphone,amount of retail drug purchase of Noroxymorphone +RetailDrugDistribution_DrugDistribution_Oxycodone,amount of retail drug purchase of Oxycodone +RetailDrugDistribution_DrugDistribution_Oxymorphone,amount of retail drug purchase of Oxymorphone +RetailDrugDistribution_DrugDistribution_Paregoric,amount of retail drug purchase of Paregoric +RetailDrugDistribution_DrugDistribution_Pentobarbital,amount of retail drug purchase of Pentobarbital +RetailDrugDistribution_DrugDistribution_Pethidine,amount of retail drug purchase of Pethidine +RetailDrugDistribution_DrugDistribution_Phencyclidine,amount of retail drug purchase of Phencyclidine +RetailDrugDistribution_DrugDistribution_Phendimetrazine,amount of retail drug purchase of Phendimetrazine +RetailDrugDistribution_DrugDistribution_Phenobarbital,amount of retail drug purchase of Phenobarbital +RetailDrugDistribution_DrugDistribution_PoppyStrawConcentrate,amount of retail drug purchase of Poppy Straw Concentrate +RetailDrugDistribution_DrugDistribution_PowderedOpium,amount of retail drug purchase of Powdered Opium +RetailDrugDistribution_DrugDistribution_Remifentanil,amount of retail drug purchase of Remifentanil +RetailDrugDistribution_DrugDistribution_Secobarbital,amount of retail drug purchase of Secobarbital +RetailDrugDistribution_DrugDistribution_Sufentanil,amount of retail drug purchase of Sufentanil +RetailDrugDistribution_DrugDistribution_Tapentadol,amount of retail drug purchase of Tapentadol +RetailDrugDistribution_DrugDistribution_Testosterone,amount of retail drug purchase of Testosterone +RetailDrugDistribution_DrugDistribution_TincuredOpium,amount of retail drug purchase of Tincured Opium +RetailDrugDistribution_DrugDistribution_Zolpidem,amount of retail drug purchase of Zolpidem +RetailDrugDistribution_DrugDistribution_dea/9809,amount of retail drug purchase of Amobarbital +Revenue_Establishment_NAICSFinanceInsurance_WithPayroll,Revenue of Finance Insurance establishments +Revenue_Establishment_NAICSManagementOfCompaniesEnterprises_WithPayroll,Revenue of Management of Companies Enterprises establishments +Revenue_Establishment_NAICSRealEstateRentalLeasing_WithPayroll,Revenue of Real Estate Rental Leasing establishments +Sales_Establishment_ManufacturerSalesBranchesAndOffices_NAICSWholesaleTrade_WithPayroll,"Sales of Manufacturer Sales Branches And Offices, Wholesale Trade Establishments" +Sales_Establishment_NAICSAccommodationFoodServices_WithPayroll,Sales of Accommodation and Food Services Establishments +Sales_Establishment_NAICSWholesaleTrade_WithPayroll,Sales of Wholesale Trade Establishments +Sales_Establishment_USC_MerchantWholesalers_NAICSWholesaleTrade_WithPayroll,"Sales of USC Merchant Wholesalers, Wholesale Trade Establishments" +StandardizedPrecipitationEvapotranspirationIndex_Atmosphere,Standardized Precipitation Evapotranspiration Index (SPEI) +StandardizedPrecipitationIndex_Atmosphere,Standardized Precipitation Index (SPI) +Temperature,Temperature +USStateQuarterlyIndustryGDP_NAICS_11,"Amount of GDP for Agriculture, Forestry, Fishing And Hunting" +USStateQuarterlyIndustryGDP_NAICS_21,"Amount of GDP for Mining, Quarrying, Oil Gas Extraction" +USStateQuarterlyIndustryGDP_NAICS_22,Amount of GDP for Utilities +USStateQuarterlyIndustryGDP_NAICS_23,Amount of GDP for Construction +USStateQuarterlyIndustryGDP_NAICS_311_316&322_326,Amount of GDP for Manufacturing +USStateQuarterlyIndustryGDP_NAICS_42,Amount of GDP for Wholesale Trade +USStateQuarterlyIndustryGDP_NAICS_44_45,Amount of GDP for Retail Trade +USStateQuarterlyIndustryGDP_NAICS_48_49,Amount of GDP for Transportation and Warehousing +USStateQuarterlyIndustryGDP_NAICS_51,Amount of GDP for Information +USStateQuarterlyIndustryGDP_NAICS_52,Amount of GDP for Finance and Insurance +USStateQuarterlyIndustryGDP_NAICS_53,Amount of GDP for Real Estate and Rental and Leasing +USStateQuarterlyIndustryGDP_NAICS_54,"Amount of GDP for Professional, Scientific, and Technical Services" +USStateQuarterlyIndustryGDP_NAICS_55,Amount of GDP for Management of Companies and Enterprises +USStateQuarterlyIndustryGDP_NAICS_56,"Amount of GDP for Administrative Support, Waste Management and Remediation Services" +USStateQuarterlyIndustryGDP_NAICS_61,Amount of GDP for Educational Services +USStateQuarterlyIndustryGDP_NAICS_62,Amount of GDP for Health Care and Social Assistance +USStateQuarterlyIndustryGDP_NAICS_71,"Amount of GDP for Arts, Entertainment, and Recreation" +USStateQuarterlyIndustryGDP_NAICS_72,Amount of GDP for Accommodation and Food Services +UnemploymentRate_Person,unemployment rate +UnemploymentRate_Person_Female,female unemployment rate +UnemploymentRate_Person_Male,male unemployment rate +UnemploymentRate_Person_Rural,unemployment rate for people living in rural areas +UnemploymentRate_Person_Rural_Female,unemployment rate for female living in rural areas +UnemploymentRate_Person_Rural_Male,unemployment rate for male living in rural areas +UnemploymentRate_Person_Urban,unemployment rate for person in urban areas +UnemploymentRate_Person_Urban_Female,unemployment rate for female living in urban areas +UnemploymentRate_Person_Urban_Male,unemployment rate for male living in urban areas +WHO/Adult_daily_tob_use,Prevalence Of Daily Tobacco Use Among Adults +WHO/CM_01,Number Of under 5 years old Deaths +WHO/CM_02,Number Of Infant Deaths +WHO/CM_03,Number Of Neonatal Deaths WHO/GDO_q35,Estimated Population-Based Prevalence Of Depression -WHO/LBW_PREVALENCE,"Low Birth Weight Prevalence;Low Birth Weight, Prevalence (%)" -WHO/M_Est_smk_daily,Estimate Of Daily Tobacco Smoking Prevalence (%);Percentage Estimate Of Daily Tobacco Smoking Prevalences -WHO/NCD_BMI_18A,"Prevalence Of Underweight Among Adults, Bmi < 18 (Age-Standardized Estimate) (%)" -WHO/NCD_BMI_30A,"30 (Age-Standardized Estimate) (%);Prevalence Of Obesity Among Adults, Bmi &Greaterequal" -WHO/NCD_PAC,Percentage Prevalence Of Insufficient Physical Activity Among Adults Aged 18+ Years;Prevalence Of Insufficient Physical Activity Among Adults Aged 18+ Years (Crude Estimate) (%) -WHO/NTD_1,Number Of New Reported Cases Of Buruli Ulcer;Number of New Reported Cases of Buruli Ulcer +WHO/LBW_PREVALENCE,Low Birth Weight Prevalence +WHO/M_Est_smk_daily,Daily Tobacco Smoking Prevalence +WHO/NCD_BMI_18A,Prevalence Of Underweight Among Adults +WHO/NCD_BMI_30A,Prevalence Of Obesity Among Adults +WHO/NCD_PAC,Prevalence Of Insufficient Physical Activity Among Adults +WHO/NTD_1,Number Of New Reported Cases Of Buruli Ulcer WHO/NTD_4,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Gambiense) -WHO/NTD_5,New Reported Cases Of Human African Trypanosomiasis;Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Rhodesiense) -WHO/NTD_LEISHCNUM,Number Of Cases Of Cutaneous Leishmaniasis Reported;Reported Cases Of Cutaneous Leishmaniasis -WHO/NTD_LEISHVNUM,Number Of Cases Of Visceral Leishmaniasis Reported;Reported Cases of Visceral Leishmaniasis +WHO/NTD_5,Number Of New Reported Cases Of Human African Trypanosomiasis (T.B. Rhodesiense) +WHO/NTD_LEISHCNUM,Number Of Cases Of Cutaneous Leishmaniasis Reported +WHO/NTD_LEISHVNUM,Number Of Cases Of Visceral Leishmaniasis Reported WHO/NTD_LEPR5,Leprosy - Number Of New G2D Cases WHO/NTD_YAWSNUM,Number Of Cases Of Yaws Reported -WHO/NUTOVERWEIGHTPREV,Overweight Prevalence Among Children Under 5 Years Of Age (%);Percentage Of Overweight Prevalence Among Children Under 5 Years Old -WHO/NUTRITION_ANAEMIA_CHILDREN_PREV,Prevalence Of Anaemia In Children Aged 6-59 Months (%) -WHO/NUTRITION_WA_2,Prevalence Of Underweight Children Under 5 Years Of Age;Prevalence Of Underweight Children Under 5 Years Of Age (% Weight-For-Age <-2 Sd) (%) -WHO/NUTRITION_WH_2,Prevalence Of Wasted Children Under 5 Years Of Age (% Weight-For-Height <-2 Sd);Prevalence of Wasted Children Under 5 Years Old -WHO/NUTRITION_WH_3,Percentage Prevalence Of Severely Wasted Children Under 5 Years Of Age;Prevalence Of Severely Wasted Children Under 5 Years Of Age (% Weight-For-Height <-3 Sd) -WHO/NUTSTUNTINGPREV,Percentage of Stunting Prevalence Among Children Under 5 Years Of Age;Stunting Prevalence Among Children Under 5 Years Of Age (%) -WHO/SA_0000001418,"Age-Standardized DALYs in Alcohol Use Disorders;Age-Standardized DALYs, Alcohol Use Disorders, Per 100,000" -WHO/SA_0000001419,"Age-Standardized DALYs, Breast Cancer, Per 100,000;Age-Standardized Daily With Breast Cancer" -WHO/SA_0000001420,"Age-Standardized DALYs, Colon And Rectum Cancers, Per 100,000;Standardized Age Dalys for Colon And Rectum Cancer" -WHO/SA_0000001421,"Age-Standardized DALYs, Diabetes Mellitus, Per 100,000" -WHO/SA_0000001422,"Age-Standardized DALYs of Drownings;Age-Standardized DALYs, Drownings, Per 100,000" -WHO/SA_0000001423,"Age-Standardized DALYs, Falls, Per 100,000" -WHO/SA_0000001424,"Age-Standardized DALYs of Fires;Age-Standardized DALYs, Fires, Per 100,000" -WHO/SA_0000001425,"Age-Standardized DALYs for Heart Diseases;Age-Standardized DALYs, Ischaemic Heart Disease, Per 100,000" -WHO/SA_0000001426,"Age-Standardized DALYs, Liver Cancer, Per 100,000" -WHO/SA_0000001427,"Age-Standardized DALYs Caused By Liver Cirrhosis;Age-Standardized DALYs, Liver Cirrhosis, Per 100,000" -WHO/SA_0000001429,"Age-Standardized DALYs Due To Mouth And Oropharynx Cancer;Age-Standardized DALYs, Mouth And Oropharynx Cancer, Per 100,000" -WHO/SA_0000001430,"Age-Standardized DALYs, Oesophagus Cancer, Per 100,000" -WHO/SA_0000001431,"Age-Standardized DALYs Caused By Poisoning;Age-Standardized DALYs, Poisoning, Per 100,000" -WHO/SA_0000001432,"Age-Standardized DALYs, Prematurity And Low Birth Rate, Per 100,000;Prematurity And Low Birth Rate Due to Age-Standardized DALYs" -WHO/SA_0000001433,"Age-Standardized DALYs, Road Traffic Accidents, Per 100,000" -WHO/SA_0000001434,"Age-Standardized DALYs Caused by Self-Inflicted Injuries;Age-Standardized DALYs, Self-Inflicted Injury, Per 100,000" -WHO/SA_0000001435,"Age-Standardized DALYs of Other Unintentional Injuries;Age-Standardized DALYs, Other Unintentional Injuries, Per 100,000" -WHO/SA_0000001436,"Age-Standardized DALYs, Violence, Per 100,000" -WHO/SA_0000001437,"Age-Standardized Death Rates Of Alcohol Use Disorders;Age-Standardized Death Rates, Alcohol Use Disorders, Per 100,000" -WHO/SA_0000001438,"Age-Standardized Death Rates Caused By Breast Cancer Per 100,000;Age-Standardized Death Rates, Breast Cancer, Per 100,000" -WHO/SA_0000001439,"Age-Standardized Death Rates of Colon and Rectum Cancers;Age-Standardized Death Rates, Colon And Rectum Cancers, Per 100,000" -WHO/SA_0000001440,"Age-Standardized Death Rates Diabetes Mellitus;Age-Standardized Death Rates, Diabetes Mellitus, Per 100,000" -WHO/SA_0000001441,"Age-Standardized Death Rates Of Drownings;Age-Standardized Death Rates, Drownings, Per 100,000" -WHO/SA_0000001442,"Age-Standardized Death Rates Due to Falls;Age-Standardized Death Rates, Falls, Per 100,000" -WHO/SA_0000001443,"Age-Standardized Death Rates Caused By Fires;Age-Standardized Death Rates, Fires, Per 100,000" -WHO/SA_0000001444,"Age-Standardized Death Rates of Population with Ischaemic Heart Disease;Age-Standardized Death Rates, Ischaemic Heart Disease, Per 100,000" -WHO/SA_0000001445,"Age-Standardized Death Rates, Liver Cancer, Per 100,000" -WHO/SA_0000001446,"Age-Standardized Death Rates Due to Liver Cirrhosis;Age-Standardized Death Rates, Liver Cirrhosis, Per 100,000" -WHO/SA_0000001448,"Age-Standardized Death Rates Caused by Mouth and Oropharynx Cancer;Age-Standardized Death Rates, Mouth And Oropharynx Cancer, Per 100,000" -WHO/SA_0000001449,"Age-Standardized Death Rates, Oesophagus Cancer, Per 100,000;Deaths Caused by Oesophagus Cancer" -WHO/SA_0000001450,"Age-Standardized Death Rates, Poisoning, Per 100,000" -WHO/SA_0000001451,"Age-Standardized Death Rates Due to Prematurity And Low Birth Rate;Age-Standardized Death Rates, Prematurity And Low Birth Rate, Per 100,000" -WHO/SA_0000001452,"Age-Standardized Death Rates, Road Traffic Accidents, Per 100,000" -WHO/SA_0000001453,"Age-Standardized Death Rates By Self-Inflicted Injury;Age-Standardized Death Rates, Self-Inflicted Injury, Per 100,000" -WHO/SA_0000001454,"Age-Standardized Death Rates Caused By Unintentional Injuries;Age-Standardized Death Rates, Other Unintentional Injuries, Per 100,000" -WHO/SA_0000001455,"Age-Standardized Death Rates Caused by Violence;Age-Standardized Death Rates, Violence, Per 100,000" -WHO/SA_0000001456,"Age-Standardized Death Of Alcoholic Liver Disease;Age-Standardized Death Rates (15+ Years), Alcoholic Liver Disease, Per 100,000" -WHO/SA_0000001458,"Age-Standardized Death Rates (15+ Years), Poisoning, Per 100,000;Age-Standardized Deaths by Poisoning" -WHO/SA_0000001460,"Age-Standardized Death Rates (15+ Years), Violence, Per 100,000;Age-Standardized Death Rates Aged 15+ Years Violence Rate" -WHO/SA_0000001689,"Age-Standardized DALYs, Cerebrovascular Disease, Per 100,000" -WHO/SA_0000001690,"Age-Standardized Death Rates Due to Cerebrovascular Diseases;Age-Standardized Death Rates, Cerebrovascular Disease, Per 100,000" -WHO/SDG_SH_DTH_RNCOM_ChronicRespiratoryDiseases,"Deaths Attributed To Non-Communicable Diseases;Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Chronic Respiratory Diseases" -WHO/SDG_SH_DTH_RNCOM_DiabetesMellitus,"Deaths Attributed To Diabetes Mellitus;Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Diabetes Mellitus" -WHO/SDG_SH_DTH_RNCOM_MajorCardiovascularDiseases,"Deaths Attributed To Non-Communicable Diseases By Type Of Disease And Sex in Major Cardiovascular Diseases;Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Major Cardiovascular Diseases" -WHO/SDG_SH_DTH_RNCOM_MalignantNeoplasms,"Number Of Deaths Attributed To Malignant Neoplasms By Type Of Disease And Sex;Number Of Deaths Attributed To Non-Communicable Diseases, By Type Of Disease And Sex, Malignant Neoplasms" -WHO/bcgv_Female,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Female;Percentage of Bcg Immunization Coverage Among Female One-Year-Olds" -WHO/bcgv_Male,"Bcg Immunization Coverage Among One-Year-Old Male Population;Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Male" -WHO/bcgv_Rural,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Rural;Percentage Bcg Immunization Coverage Among One-Year-Olds in Rural Areas" -WHO/bcgv_Urban,"Bcg Immunization Coverage Among One-Year-Olds (%) (bcgv), Urban;Percentage of Urban Bcg Immunization Coverage Among One-Year-Olds" -WHO/dptv_Female,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Female;Percentage Dtp3 Immunization Coverage Among Female One-Year-Olds" -WHO/dptv_Male,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Male;Percentage of Male Population With Dtp3 Immunization Coverage Among One-Year-Olds" -WHO/dptv_Rural,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Rural;Percentage Dtp3 Immunization Coverage Among One-Year-Olds in Rural Areas" -WHO/dptv_Urban,"Dtp3 Immunization Coverage Among One-Year-Olds (%), Urban;Percentage of Dtp3 Immunization Coverage Among One-Year-Olds in Urban" -WHO/fullv_Female,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Female;Percentage Of Full Immunization Coverage Among Female One-Year-Olds" -WHO/fullv_Male,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Male;Percentage of Full Immunization Coverage Among Male Population Aged One-Year-Old" -WHO/fullv_Rural,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Rural;Percentage of Full Immunization Coverage Among One-Year-Olds in Rural Areas" -WHO/fullv_Urban,"Full Immunization Coverage Among One-Year-Olds (%) (fullv), Urban;Percentage Of Full Immunization Coverage Among One-Year-Old In Urban Areas" -WHO/mslv_Female,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Female;Percentage of Measles Immunization Coverage Among Female 1 Year Olds" -WHO/mslv_Male,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Male;Percentage of Measles Immunization Coverage Among Male Population Aged One-Year-Old" -WHO/mslv_Rural,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Rural;Percentage of Measles Immunization Coverage Among 1 Year Old" -WHO/mslv_Urban,"Measles Immunization Coverage Among One-Year-Olds (%) (mslv), Urban;Percentage of Measles Immunization Coverage Among One-Year-Olds in Urban" -WHO/poliov_Female,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Female;Polio Immunization Coverage Among One-Year-Olds Female Population" -WHO/poliov_Male,"Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Male" -WHO/poliov_Rural,"Percentage of Polio Immunization Coverage Among 1-Year-olds in Rural Areas;Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Rural" -WHO/poliov_Urban,"Percentage of Polio Immunization Coverage Among One-Year-Old in Urban Areas;Polio Immunization Coverage Among One-Year-Olds (%) (poliov), Urban" -WagesAnnual_Establishment,Annual Wages of Establishments;Wages Annual of Establishment;annual wages of an establishment;annual wages paid by an establishment;establishment's annual wages;wages paid to employees by an establishment in a year -WagesAnnual_Establishment_NAICSAccommodationFoodServices,2 what are the average annual wages in the accommodation and food services industry?;Annual Wages In Accommodation And Food Services;Wages Annual of Establishment: Accommodation And Food Services (NAICS/72);what are the annual wages for hospitality workers?;what are the average annual wages in the accommodation and food services industry?;what is the typical annual income for someone working in the accommodation and food services industry? -WagesAnnual_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,Annual Wages of Workers in Geographic Area Statistics;Wages Annual of Establishment: Administrative And Support And Waste Management Services (NAICS/56);annual wages of workers by geographic area;annual wages of workers by location;annual wages of workers in different geographic areas;annual wages of workers in different locations -WagesAnnual_Establishment_NAICSAgricultureForestryFishingHunting,"Wages Annual of Establishment: Agriculture, Forestry, Fishing And Hunting (NAICS/11);Wages Of Agriculture, Forestry, Fishing And, Hunting Establishments;pay for people who work in agriculture, forestry, fishing, and hunting;pay for workers in the agricultural, forestry, fishing, and hunting industries;pay in the agricultural, forestry, fishing, and hunting fields;wages in the agricultural, forestry, fishing, and hunting sectors" -WagesAnnual_Establishment_NAICSArtsEntertainmentRecreation,"Annual Wages of Arts, Entertainment, and Recreation Industries;Wages Annual of Establishment: Arts, Entertainment, And Recreation (NAICS/71);how much do people in the arts, entertainment, and recreation industries make per year?;what are the annual incomes for people in the arts, entertainment, and recreation industries?;what are the typical annual salaries for people in the arts, entertainment, and recreation industries?;what are the yearly earnings for people in the arts, entertainment, and recreation industries?" -WagesAnnual_Establishment_NAICSConstruction,Annual Wages in Construction Industries;Wages Annual of Establishment: Construction (NAICS/23);what are the annual salaries for construction workers?;what are the annual wages for construction workers?;what do construction workers earn per year?;what is the average annual salary for a construction worker? -WagesAnnual_Establishment_NAICSEducationalServices,Annual Wages of Educational Services Establishments;Wages Annual of Establishment: Educational Services (NAICS/61);annual pay in educational services;yearly wages in educational services -WagesAnnual_Establishment_NAICSFinanceInsurance,Annual Wages of Finance and Insurance Establishments;Wages Annual of Establishment: Finance And Insurance (NAICS/52);what are the annual earnings for finance and insurance workers?;what are the average annual wages in finance and insurance?;what are the typical annual salaries in finance and insurance?;what are the yearly incomes for finance and insurance professionals? -WagesAnnual_Establishment_NAICSHealthCareSocialAssistance,Annual Wages of Health Care and Social Assistance Industries;Wages Annual of Establishment: Health Care And Social Assistance (NAICS/62);how much do people in the healthcare and social assistance industries make each year?;what are the annual wages of people who work in the healthcare and social assistance industries?;what are the average annual salaries in the healthcare and social assistance industries?;what are the typical annual wages in the healthcare and social assistance industries? -WagesAnnual_Establishment_NAICSInformation,1 the average yearly salary of employees in information establishments;2 the amount of money that employees in information establishments earn per year on average;3 the typical annual income of workers in information establishments;4 the yearly earnings of people who work in information establishments;Annual Wages of Information Establishments;Wages Annual of Establishment: Information (NAICS/51) -WagesAnnual_Establishment_NAICSManagementOfCompaniesEnterprises,Annual Wages of Management of Companies And Enterprises;Wages Annual of Establishment: Management of Companies And Enterprises (NAICS/55);annual pay for company and enterprise managers;compensation for company and enterprise managers;salaries of company and enterprise managers;yearly pay for company and enterprise directors -WagesAnnual_Establishment_NAICSManufacturing,Annual Establishment of Manufacturing Industries;Wages Annual of Establishment: Manufacturing (NAICS/31);the annual number of manufacturing businesses that are established;the annual rate of new manufacturing businesses;the number of manufacturing businesses that are created in a year;the number of new manufacturing businesses that are created each year -WagesAnnual_Establishment_NAICSMiningQuarryingOilGasExtraction,"Annual Wages of Mining, Quarrying, And Oil And Gas Extraction Establishments;Wages Annual of Establishment: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);annual wages for mining, quarrying, and oil and gas extraction establishments (naics/21);the amount of money that mining, quarrying, and oil and gas extraction establishments (naics/21) pay their employees each year;the annual salary of employees at mining, quarrying, and oil and gas extraction establishments (naics/21);yearly pay for mining, quarrying, and oil and gas extraction businesses (naics/21)" -WagesAnnual_Establishment_NAICSNonclassifiable,Annual Wages of Unclassified Establishments;Wages Annual of Establishment: Unclassified (NAICS/99);annual salaries for workers at unclassified businesses;annual wages of businesses with no industry classification;wages paid to employees at establishments without a specific industry classification;wages paid to employees of establishments that are not classified by industry -WagesAnnual_Establishment_NAICSOtherServices,"Annual Wages of Workers in Other Services Except Public Administration;Wages Annual of Establishment: Other Services, Except Public Administration (NAICS/81);the average amount of money that workers in other services, excluding public administration, make in a year;the average annual salary for workers in other services, excluding public administration;the average yearly income for workers in other services, excluding public administration;wages of workers in other services, excluding public administration, per year" -WagesAnnual_Establishment_NAICSProfessionalScientificTechnicalServices,"Annual Wages of Workers in Professional, Scientific and Technical Service Industries;Wages Annual of Establishment: Professional, Scientific, And Technical Services (NAICS/54);annual salaries of employees in professional, scientific, and technical service industries;the amount of money that workers in professional, scientific, and technical service industries earn each year;the annual income of workers in professional, scientific, and technical service industries;yearly pay for workers in professional, scientific, and technical service industries" -WagesAnnual_Establishment_NAICSRealEstateRentalLeasing,Annual Wages of Real Estate And Rental And Leasing Establishments;Wages Annual of Establishment: Real Estate And Rental And Leasing (NAICS/53);what are the annual salaries of people in real estate and rental and leasing establishments?;what are the average annual wages for people in the real estate and rental and leasing industry?;what is the annual salary for someone working in the real estate and rental and leasing industry?;what is the typical annual wage for someone working in the real estate and rental and leasing industry? -WagesAnnual_Establishment_NAICSRetailTrade,Annual Establishment Wages in Retail Trade Sector;Wages Annual of Establishment: Retail Trade (NAICS/44);annual wages in the retail trade sector;retail trade sector annual wages;wages in the retail trade sector per year;yearly wages in the retail trade sector -WagesAnnual_Establishment_NAICSTransportationWarehousing,Annual Wages of Transportation And Warehousing Establishments;Wages Annual of Establishment: Transportation And Warehousing (NAICS/48);how much do people working in transportation and warehousing make per year?;what are the average annual wages for transportation and warehousing workers?;what is the annual income for people working in transportation and warehousing?;what is the average salary for people working in transportation and warehousing? -WagesAnnual_Establishment_NAICSUtilities,Annual Wages Of Utility Industries;Wages Annual of Establishment: Utilities (NAICS/22);what are the annual wages for utility workers?;what are the annual wages of utility workers?;what are the yearly salaries for utility workers?;what is the annual salary for utility workers? -WagesAnnual_Establishment_NAICSWholesaleTrade,Annual Establishment Wages in Wholesale Trade Sector;Wages Annual of Establishment: Wholesale Trade (NAICS/42);annual earnings in the wholesale trade sector;annual pay in the wholesale trade sector;annual salaries in the wholesale trade sector;annual wages in the wholesale trade sector -WagesTotal_Worker_NAICSAccommodationFoodServices,"The combined income of all people working in the accommodation and food services industry;The total amount of money earned by people in the accommodation and food services sector;The total amount of money paid to accommodation and food services workers;The total pay of the accommodation and food services labor force;The total salary paid to the accommodation and food services workforce;Total Wages Earned by People Working in the Accommodation and Food Services Industry;Total wages earned by people working in the accommodation and food services industry;Wages Total of Person: Accommodation And Food Services (NAICS/72);the amount of money earned by people who work in accommodation and food services;the total amount of money earned by people working in the accommodation and food services industry;the total amount of money paid to people who work in the hospitality industry;the total compensation of people who work in the accommodation and food services sector;the total earnings of people who work in hotels, restaurants, and other food service establishments;the total earnings of people working in the accommodation and food services industry;the total income of people working in the accommodation and food services industry;the total wages paid to people working in the accommodation and food services industry;total wages of accommodation and food services workers" -WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,"Administrative and support and waste management services workers' total wages;Earnings of those employed in waste management and support;How much money workers in administrative and support services bring in;Income for workers in the administrative and waste management sector;The total amount of money paid to administrative and support and waste management services workers;The total amount of money paid to administrative, support, and waste management services workers;The total wages of administrative and support and waste management services workers;Total Wages Earned by People Working in the Administrative and Support and Waste Management Services Industry;Total wages earned by people working in the administrative and support and waste management services industry;Wages Total of Person: Administrative And Support And Waste Management Services (NAICS/56);Wages for employees in the administrative and support and waste management services field.;earnings of employees in the administrative and support and waste management services industry;management services industry;pay of people employed in the administrative and support and waste management services industry;salaries of people working in the administrative and support and waste management services industry;total wages of administrative and support and waste management services workers;wages earned by workers in the administrative and support and waste management services industry" -WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"Earnings of those employed in forestry, fishing, and hunting;How much money workers in agriculture make;Income for workers in the agriculture, forestry, fishing, and hunting sector;The total amount of money earned by people who work in agriculture, forestry, fishing, and hunting;The total amount of money earned by workers in agriculture, forestry, fishing, and hunting;The total amount of money earned by workers in the agriculture, forestry, fishing, and hunting industries;The total amount of money paid to workers in the agriculture, forestry, fishing, and hunting industries;Total Wages Earned by People Working in the Agriculture, Forestry, Fishing, and Hunting Industry;Total wages earned by people working in the agriculture, forestry, fishing, and hunting industry;Wages Total of Person: Agriculture, Forestry, Fishing And Hunting (NAICS/11);Wages for employees in the agriculture, forestry, fishing, and hunting field.;the total amount of money earned by people working in the agriculture, forestry, fishing, and hunting industry;the total earnings of people working in the agriculture, forestry, fishing, and hunting industry;the total income earned by people working in the agriculture, forestry, fishing, and hunting industry;the total wages paid to people working in the agriculture, forestry, fishing, and hunting industry;total wages of agriculture, forestry, fishing and hunting workers" -WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"1 The total amount of money earned by workers in the arts, entertainment, and recreation industries;Earnings of those employed in entertainment and recreation;How much money workers in the arts make;Income for workers in the arts, entertainment, and recreation sector;The total amount of money earned by workers in the arts, entertainment, and recreation industries;The total amount of money paid to arts, entertainment, and recreation workers;Total Wages for People Working in the Arts, Entertainment, and Recreation Industry;Total wages for people working in the arts, entertainment, and recreation industry;Wages Total of Person: Arts, Entertainment, And Recreation (NAICS/71);Wages for employees in the arts, entertainment, and recreation field.;the total amount of money paid to people working in the arts, entertainment, and recreation industry;the total compensation of people working in the arts, entertainment, and recreation industry;the total earnings of people working in the arts, entertainment, and recreation industry;the total income of people working in the arts, entertainment, and recreation industry;total wages of arts, entertainment, and recreation workers" -WagesTotal_Worker_NAICSConstruction,Earnings of those employed in construction;How much money workers in construction make;Income for workers in the construction sector;The total amount of money construction workers earn;The total amount of money that construction workers earn;Total Wages for People Working in the Construction Industry;Total wages for people working in the construction industry;Wages Total of Person: Construction (NAICS/23);Wages for employees in the construction field.;how much do construction workers make?;how much money do construction workers earn?;total wages of construction workers;what are the average wages for construction workers?;what is the pay scale for construction workers? -WagesTotal_Worker_NAICSEducationalServices,Earnings of those employed in educational services;How much money workers in the education field make;Income for workers in the educational services sector;The total amount of money paid to educational services workers;The total amount of money that educational services workers earn;Total Wages for People Working in the Educational Services Industry;Total wages for people working in the educational services industry;Wages Total of Person: Educational Services (NAICS/61);Wages for employees in the education field.;how much do people working in the educational services industry make?;total wages of educational services workers;what are the wages for people working in the educational services industry?;what is the average salary for people working in the educational services industry?;what is the pay for people working in the educational services industry? -WagesTotal_Worker_NAICSFinanceInsurance,Earnings of those employed in finance and insurance;How much money workers in the finance and insurance make;Income for workers in the finance and insurance sector;The total amount of money paid to finance and insurance workers;Total Wages for People Working in the Finance and Insurance Industry;Total wages for people working in the finance and insurance industry;Wages Total of Person: Finance And Insurance (NAICS/52);Wages for employees in the finance and insurance field;how much do people in the finance and insurance industry earn?;total wages of finance and insurance workers;what are the average wages for people working in the finance and insurance industry?;what are the typical income levels for people working in the finance and insurance industry?;what are the typical salaries for people working in the finance and insurance industry? -WagesTotal_Worker_NAICSGoodsProducing,Total Wages of Workers in Goods-Producing Industries;Wages Total of Person: Goods-producing (NAICS/101);the total amount of money paid to workers in industries that make things;the total amount of money paid to workers in industries that manufacture products;the total amount of money paid to workers in industries that produce goods;the total amount of money paid to workers in industries that produce tangible goods -WagesTotal_Worker_NAICSHealthCareSocialAssistance,Earnings of those employed in health care and social assistance;How much money workers in the health care and social assistance make;Income for workers in the health care and social assistance sector;The total amount of money paid to health care and social assistance workers;Total Wages for People Working in the Health Care and Social Assistance Industry;Total wages for people working in the health care and social assistance industry;Wages Total of Person: Health Care And Social Assistance (NAICS/62);Wages for employees in the health care and social assistance field;how much do people working in the health care and social assistance industry earn?;total wages for employees in health care and social assistance;total wages of health care and social assistance workers;what are the typical wages for people working in the health care and social assistance industry?;what are the wages for people working in the health care and social assistance industry?;what is the average wage for people working in the health care and social assistance industry? -WagesTotal_Worker_NAICSInformation,Earnings of those employed in information;How much money workers in the information make;Income for workers in the information sector;The total amount of money paid to information workers;The total amount of money that information workers are paid;Total Wages for People Working in the Information Industry;Total wages for people working in the information industry;Wages Total of Person: Information (NAICS/51);Wages for employees in the information field;how much money do people in the information industry make?;total earnings for employees in the information industry;total wages for information industry employees;total wages of information workers;wages for employees information industry;what are the average wages for people in the information industry?;what are the incomes for people in the information industry?;what are the salaries for people in the information industry? -WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,Earnings of those employed in management of companies and enterprises;How much money workers in the management of companies and enterprises make;Income for workers in the management of companies and enterprises sector;The total amount of money paid to managers of companies and enterprises;The total amount of money paid to managers of companies and enterprises workers;Total Wages for People Working in the Management of Companies and Enterprises Industry;Total wages for people working in the management of companies and enterprises industry;Wages Total of Person: Management of Companies And Enterprises (NAICS/55);Wages for employees in the management of companies and enterprises field;how much do people working in the management of companies and enterprises industry make?;total wages of management of companies and enterprises workers;what are the average wages for people working in the management of companies and enterprises industry?;what are the typical salaries for people working in the management of companies and enterprises industry?;what is the total compensation for people working in the management of companies and enterprises industry? -WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"Earnings of those employed in mining, quarrying, and oil and gas extraction;How much money workers in the mining, quarrying, and oil and gas extraction make;Income for workers in the mining, quarrying, and oil and gas extraction sector;The total amount of money paid to mining, quarrying, and oil and gas extraction workers;The total amount of money paid to workers in the mining, quarrying, and oil and gas extraction industries;Total Wages for People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry;Total wages for people working in the mining, quarrying, and oil and gas extraction industry;Wages Total of Person: Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Wages for employees in the mining, quarrying, and oil and gas extraction field;the sum of all the wages paid to workers in the mining, quarrying, and oil and gas extraction industry;the total amount of money paid to workers in the mining, quarrying, and oil and gas extraction industry;the total compensation of workers in the mining, quarrying, and oil and gas extraction industry;the total earnings of workers in the mining, quarrying, and oil and gas extraction industry;total wages of mining, quarrying, and oil and gas extraction workers" -WagesTotal_Worker_NAICSNonclassifiable,1 The total amount of money paid to unclassified workers;Earnings of those employed in unclassified industries;How much money workers in unclassified industries make;Income for workers in unclassified sectors;The sum of all wages paid to unclassified workers;The total amount of money paid to unclassified workers;Total Wages Paid to Unclassified Workers;Total wages paid to unclassified workers;Wages Total of Person: Unclassified (NAICS/99);Wages for employees in unclassified fields;salaries paid to unclassified employees;the sum of all wages paid to workers who are not classified;total compensation paid to workers who are not classified by job title;total wages of unclassified workers;wages paid to unclassified workers -WagesTotal_Worker_NAICSOtherServices,"Amount earned by workers in other services excluding the public sector;Earnings of those employed in other services;How much money workers in the other services make;Income for workers in the other services sector;Sum of the earnings of workers in other services other than the public sector;The total amount of money paid to workers in non-public service industries;Total Wages for People Working in Other Services, Except Public Administration;Total pay of workers in other services other than the public sector;Total wages for people working in other services, except public administration;Wages Total of Person: Other Services, Except Public Administration (NAICS/81);Wages for employees in the other services field;Wages of workers in other services other than the public sector added together;total wages for people working in non-government services;total wages for people working in non-public services;total wages for people working in other services, excluding public administration;total wages of workers in other services except public administration;wages earned by people working in other services, excluding public administration" -WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"Earnings of those employed in professional, scientific, and technical services;How much money workers in the professional, scientific, and technical services make;Income for workers in the professional, scientific, and technical services sector;The total amount of money paid to professional, scientific, and technical services workers;The total amount of money that professional, scientific, and technical services workers earn;Total Wages Paid to Professional, Scientific, and Technical Services Workers;Total wages paid to professional, scientific, and technical services workers;Wages Total of Person: Professional, Scientific, And Technical Services (NAICS/54);Wages for employees in the professional, scientific, and technical services field;the sum of all wages paid to professional, scientific, and technical services workers;the total amount of money paid to professional, scientific, and technical services workers;the total compensation paid to professional, scientific, and technical services workers;the total earnings of professional, scientific, and technical services workers;total wages of professional, scientific, and technical services workers" -WagesTotal_Worker_NAICSPublicAdministration,1 The total amount of money paid to public administration workers;Earnings of those employed in public administration;How much money workers in the public administration make;Income for workers in the public administration sector;The total amount of money paid to public administration workers;The total amount of money that public administration workers earn;Total Wages Paid to Public Administration Workers;Total wages paid to public administration workers;Wages Total of Person: Public Administration (NAICS/92);Wages for employees in the public administration field;the total amount of money paid to public administration workers;the total earnings paid to public sector workers;the total sum of money paid to public administration workers;the total wages paid to public servants;total wages of public administration workers -WagesTotal_Worker_NAICSRealEstateRentalLeasing,Earnings of those employed in real estate and rental and leasing;How much money workers in the real estate and rental and leasing make;Income for workers in the real estate and rental and leasing sector;Total Wages Paid to Real Estate and Rental and Leasing Workers;Total wages paid to real estate and rental and leasing workers;Wages Total of Person: Real Estate And Rental And Leasing (NAICS/53);Wages for employees in the real estate and rental and leasing field;how much money did real estate and rental and leasing workers earn in total?;the total amount of money earned by real estate and rental and leasing workers;the total amount of money paid to real estate and rental and leasing workers;the total amount of money real estate and rental and leasing workers are paid;the total amount of money real estate and rental and leasing workers earn;the total compensation of real estate and rental and leasing workers;total wages of real estate and rental and leasing workers;what was the total amount of wages paid to real estate and rental and leasing workers?;what was the total compensation paid to real estate and rental and leasing workers?;what was the total income of real estate and rental and leasing workers? -WagesTotal_Worker_NAICSServiceProviding,Total Wages of People in Service-Providing Industries;Wages Total of Person: Service-providing (NAICS/102);total compensation of people working in the service sector;total earnings of people working in the service industry;total pay of people working in the service industry;total wages of people working in the service sector -WagesTotal_Worker_NAICSTotalAllIndustries,"1 the total amount of money paid to workers in all industries;2 the sum of all wages paid to workers in all industries;3 the total compensation paid to workers in all industries;4 the total earnings of workers in all industries;Earnings of those employed in all industries;How much money workers in all industries make;Income for workers in all sectors;The total amount of money earned by all workers in all industries;The total amount of money paid to all workers in all industries;The total compensation of all workers in all industries;The total earnings of all workers in all industries;The total wages of all workers in all industries;Total Wages Paid to Workers in All Industries;Total wages paid to workers in all industries;Wages Total of Person: Total, All Industries (NAICS/10);Wages for employees in all fields;total wages of total, all industries workers" -WagesTotal_Worker_NAICSUtilities,Earnings of those employed in utilities;How much money workers in the utilities make;Income for workers in the utilities sector;The total amount of money earned by utilities workers;The total amount of money paid to utilities workers;The total amount of money that utilities workers are paid;The total amount of money that utilities workers earn;Total Wages Paid to Utilities Workers;Total wages paid to utilities workers;Wages Total of Person: Utilities (NAICS/22);Wages for employees in the utilities field;the sum of all the wages paid to utility workers;the total amount of money paid to utility workers;the total compensation paid to utility workers;the total earnings of utility workers;total wages of utilities workers -WagesTotal_Worker_NAICSWholesaleTrade,Earnings of those employed in wholesale trade;How much money workers in the wholesale trade make;Income for workers in the wholesale trade sector;The amount of money that wholesale trade workers earn in total;The sum of all the wages paid to wholesale trade workers;The total amount of money earned by wholesale trade workers;The total amount of money that wholesale trade workers earn;Total Wages Paid to Wholesale Trade Workers;Total wages paid to wholesale trade workers;Wages Total of Person: Wholesale Trade (NAICS/42);Wages for employees in the wholesale trade field;the total amount of money paid to wholesale trade workers;the total compensation of wholesale trade workers;the total earnings of wholesale trade workers;the total sum of money paid to wholesale trade workers;total wages of wholesale trade workers -WindSpeed_UComponent_Height10Meters,"Wind Speed in Meters;Wind Speed: Meter 10, UComponent;how many meters per second is the wind blowing?;what is the velocity of the wind?;wind speed in meters per hour;wind speed in meters per second" -WindSpeed_VComponent_Height10Meters,"Component Wind Speed With 10 Meters;Wind Speed: Meter 10, VComponent;ten-meter wind speed;wind speed at 10 meters;wind speed at a height of 10 meters;wind speed at an elevation of 10 meters" -WithdrawalRate_Water,Rate at which water is withdrawn;Rate of Water Withdrawal;Rate of water abstraction;Rate of water removal;Rate of water usage;Rate of water withdrawal;Water consumption per capita;Water consumption rate;Water usage per capita;Water usage per person;Water withdraw rate;Water withdrawal rate;Withdrawal Rate of Water;the amount of water that is taken out of a source over a period of time;the rate at which water is taken out of a source;the rate of water consumption;the rate of water use -WithdrawalRate_Water_Aquaculture,Withdrawal Rate of Water For Aquaculture;Withdrawal Rate of Water: Aquaculture;how much water does aquaculture use?;what is the water consumption of aquaculture?;what is the water consumption rate for aquaculture?;what is the water withdrawal rate for aquaculture? -WithdrawalRate_Water_Aquaculture_FreshWater,"Withdrawal Rate of Fresh Water for Aquaculture;Withdrawal Rate of Water: Aquaculture, Fresh Water;how much fresh water is used for aquaculture?;how much fresh water is withdrawn from the environment for aquaculture?;what is the amount of fresh water used in aquaculture?;what is the rate of fresh water withdrawal for aquaculture?" -WithdrawalRate_Water_Aquaculture_GroundWater,"Withdrawal Rate of Ground Water for Aquaculture;Withdrawal Rate of Water: Aquaculture, Ground Water;the amount of groundwater that is used for aquaculture;the rate at which groundwater is removed for aquaculture;the rate at which groundwater is withdrawn for aquaculture;the rate of groundwater pumping for aquaculture" -WithdrawalRate_Water_Aquaculture_SalineWater,"Withdrawal Rate of Saline Water in Aquaculture;Withdrawal Rate of Water: Aquaculture, Saline Water" -WithdrawalRate_Water_Aquaculture_SurfaceWater,"Withdrawal Rate of Surface Water For Aquaculture;Withdrawal Rate of Water: Aquaculture, Surface Water;how much surface water is taken out of the environment for aquaculture?;how much surface water is used for aquaculture?;what is the amount of surface water that is withdrawn for aquaculture?;what is the rate of surface water withdrawal for aquaculture?" -WithdrawalRate_Water_Domestic,Withdrawal Rate of Water For Domestic Use;Withdrawal Rate of Water: Domestic;domestic water withdrawal rate;rate of water withdrawal for domestic purposes;water withdrawal for domestic use;water withdrawals for domestic purposes -WithdrawalRate_Water_Domestic_FreshWater,"Withdrawal Rate of Fresh Water Domestic;Withdrawal Rate of Water: Domestic, Fresh Water;rate of domestic water withdrawal;the withdrawal of fresh water for domestic purposes" -WithdrawalRate_Water_Domestic_GroundWater,"Withdrawal Rate of Water: Domestic, Ground Water;Withdrawal of Domestic Water From The Ground;drawing water from the ground;pumping water from the ground;removing water from the ground;taking water from the ground" -WithdrawalRate_Water_Domestic_SalineWater,"Withdrawal Rate of Saline Water for Domestic Use;Withdrawal Rate of Water: Domestic, Saline Water;the amount of saline water that is used for domestic purposes per unit of time;the quantity of saline water that is used for domestic purposes per unit of time;the rate at which saline water is used for domestic purposes;the volume of saline water that is used for domestic purposes per unit of time" -WithdrawalRate_Water_Domestic_SurfaceWater,"Withdrawal Rate of Domestic Surface Water;Withdrawal Rate of Water: Domestic, Surface Water;the amount of domestic surface water that is withdrawn per unit of time;the amount of surface water that is withdrawn for domestic use;the rate at which domestic surface water is withdrawn;the rate of domestic water withdrawal from surface water" -WithdrawalRate_Water_Industrial,Withdrawal Rate of Water For Industrial Use;Withdrawal Rate of Water: Industrial;industrial water withdrawal;water use in industry;water used by industry;water withdrawal for industrial use -WithdrawalRate_Water_Industrial_FreshWater,"Withdrawal Rate Of Fresh Water For Industrial Use;Withdrawal Rate of Water: Industrial, Fresh Water;how much fresh water is taken out of the environment for industrial use?;how much fresh water is used for industrial purposes?;what is the amount of fresh water that is used by industry?;what is the rate of fresh water withdrawal for industrial use?" -WithdrawalRate_Water_Industrial_GroundWater,"Withdrawal Rate of Groundwater For Industrial Use;Withdrawal Rate of Water: Industrial, Ground Water;amount of groundwater taken out for industrial purposes;quantity of groundwater taken for industrial use;rate at which groundwater is removed for industrial use;volume of groundwater extracted for industrial purposes" -WithdrawalRate_Water_Industrial_SalineWater,"Withdrawal Rate Of Saline Water;Withdrawal Rate of Water: Industrial, Saline Water;the amount of saline water that is taken out over a period of time;the amount of saline water that is taken out over time;the rate at which saline water is removed;the rate at which saline water is withdrawn" -WithdrawalRate_Water_Industrial_SurfaceWater,"Withdrawal Rate of Surface Water in Industrial;Withdrawal Rate of Water: Industrial, Surface Water;the amount of surface water that is used by industrial processes;the amount of surface water that is used by industry;the rate at which surface water is taken from industrial sources;the volume of surface water that is withdrawn from industrial sites" -WithdrawalRate_Water_Irrigation,Withdrawal Rate of Water For Irrigation;Withdrawal Rate of Water: Irrigation;irrigation water consumption;irrigation water demand;irrigation water use;water use for irrigation -WithdrawalRate_Water_Irrigation_FreshWater,"Withdrawal Rate of Irrigation Water;Withdrawal Rate of Water: Irrigation, Fresh Water;rate of water withdrawal for irrigation;the amount of irrigation water that is taken out of a source over a period of time;the rate at which irrigation water is withdrawn;the rate of water consumption for irrigation purposes" -WithdrawalRate_Water_Irrigation_GroundWater,"Withdrawal Rate of Groundwater For Irrigation;Withdrawal Rate of Water: Irrigation, Ground Water;how much water is taken out of the ground for irrigation and groundwater?" -WithdrawalRate_Water_Irrigation_SalineWater,"Withdrawal Rate of Water For Irrigation Saline Water;Withdrawal Rate of Water: Irrigation, Saline Water;rate of irrigation water withdrawal for saline water;rate of water withdrawal for irrigation with saline water;rate of water withdrawal for saline water irrigation;what is the rate of water withdrawal for saline irrigation?" -WithdrawalRate_Water_Irrigation_SurfaceWater,"Withdrawal Rate of Surface Water for Irrigation;Withdrawal Rate of Water: Irrigation, Surface Water;the amount of surface water that is withdrawn for irrigation;the quantity of surface water that is withdrawn for irrigation;the rate at which surface water is withdrawn for irrigation;the volume of surface water that is withdrawn for irrigation" -WithdrawalRate_Water_Livestock,Withdrawal Rate of Water For Livestock;Withdrawal Rate of Water: Livestock;how much water do livestock use?;how much water is used by livestock?;what is the amount of water used by livestock?;what is the water withdrawal rate for livestock? -WithdrawalRate_Water_Livestock_FreshWater,"Withdrawal Rate Of Livestock FreshWater;Withdrawal Rate of Water: Livestock, Fresh Water;how much freshwater do livestock use;how much freshwater is used by livestock;the amount of freshwater that livestock use;the amount of freshwater used by livestock" -WithdrawalRate_Water_Livestock_GroundWater,"Withdrawal Rate of Groundwater For Livestock;Withdrawal Rate of Water: Livestock, Ground Water;how much water do livestock and groundwater withdraw?" -WithdrawalRate_Water_Livestock_SalineWater,"Withdrawal Rate of Saline Water in Livestock;Withdrawal Rate of Water: Livestock, Saline Water;how much saline water can livestock drink?;the rate at which livestock drink saline water;what is the maximum amount of saline water that livestock can drink?;what is the safe level of saline water intake for livestock?" -WithdrawalRate_Water_Livestock_SurfaceWater,"Withdrawal Rate of Surface Water For Livestock;Withdrawal Rate of Water: Livestock, Surface Water;the amount of surface water that is withdrawn for livestock;the amount of surface water used for livestock;the rate at which surface water is used for livestock;the rate at which surface water is withdrawn for livestock" -WithdrawalRate_Water_Mining,Withdrawal Rate of Water For Mining;Withdrawal Rate of Water: Mining;rate of water withdrawal for mining;water consumption by mining;water usage in mining;what is the water withdrawal rate for mining? -WithdrawalRate_Water_Mining_FreshWater,"Withdrawal Rate of Fresh Water For Mining;Withdrawal Rate of Water: Mining, Fresh Water;the amount of fresh water that is taken out of a source for mining;the quantity of fresh water that is taken from a source for mining;the rate at which fresh water is used for mining;the rate at which fresh water is withdrawn for mining" -WithdrawalRate_Water_Mining_GroundWater,"Withdrawal Rate of Groundwater in Mining;Withdrawal Rate of Water: Mining, Ground Water" -WithdrawalRate_Water_Mining_SalineWater,"Withdrawal Rate of Saline Water in Mining;Withdrawal Rate of Water: Mining, Saline Water;the amount of saline water that is taken out of mines per unit of time;the rate at which saline water is withdrawn from mines;the rate of saline water extraction from mines;the speed at which saline water is removed from mines" -WithdrawalRate_Water_Mining_SurfaceWater,"Withdrawal Rate of Surface Water in Mining;Withdrawal Rate of Water: Mining, Surface Water;the amount of surface water that is used in mining operations;the rate at which surface water is withdrawn for mining purposes;the rate of water consumption by mining operations;the volume of surface water that is taken out of rivers, lakes, and other bodies of water for mining" -WithdrawalRate_Water_PublicSupply,Withdrawal Rate of Water For Public Supply;Withdrawal Rate of Water: Public Supply;public water withdrawal rate;rate of water withdrawal from public supplies;the flow of water that is withdrawn from public supplies per unit of time;the quantity of water that is withdrawn from public supplies per unit of time -WithdrawalRate_Water_PublicSupply_FreshWater,"Withdrawal Rate Of Public Supply Fresh Water;Withdrawal Rate of Water: Public Supply, Fresh Water;the consumption of fresh water from public supplies;the drawdown of fresh water from public supplies;the quantity of fresh water that is withdrawn from public supplies;the rate at which fresh water is withdrawn from public supplies" -WithdrawalRate_Water_PublicSupply_GroundWater,"Water Withdrawal Rate;Withdrawal Rate of Water: Public Supply, Ground Water" -WithdrawalRate_Water_PublicSupply_SalineWater,"Withdrawal Rate of Public Supply And Saline Water;Withdrawal Rate of Water: Public Supply, Saline Water;the amount of public supply and saline water that is taken out;the rate at which public supply and saline water are used up;the rate at which public supply and saline water are withdrawn;the rate of consumption of public supply and saline water" -WithdrawalRate_Water_PublicSupply_SurfaceWater,"Rate of Surface Water in Public Supply;Withdrawal Rate of Water: Public Supply, Surface Water;how much of the public water supply comes from surface water;percentage of public water supply that comes from surface water;what is the rate of surface water in public supply;what percentage of public water comes from surface water" -WithdrawalRate_Water_Thermoelectric,Withdrawal Rate of Water For Thermoelectric;Withdrawal Rate of Water: Thermoelectric;how much water is withdrawn by thermoelectric power plants;rate of water withdrawal by thermoelectric power plants;the amount of water withdrawn by thermoelectric power plants;thermoelectric water withdrawal rate -WithdrawalRate_Water_Thermoelectric_FreshWater,"Withdrawal Rate of Fresh Water For Thermoelectric;Withdrawal Rate of Water: Thermoelectric, Fresh Water;how much fresh water do thermoelectric power plants use?;how much fresh water is used by thermoelectric power plants?;what is the amount of fresh water that thermoelectric power plants use?;what is the rate of fresh water withdrawal by thermoelectric power plants?" -WithdrawalRate_Water_Thermoelectric_GroundWater,"Withdrawal Rate of Thermoelectric and Ground Water;Withdrawal Rate of Water: Thermoelectric, Ground Water;the amount of thermoelectric and ground water that is withdrawn per unit of time;the rate at which thermoelectric and ground water is withdrawn;the rate of consumption of thermoelectric and ground water;the rate of use of thermoelectric and ground water" -WithdrawalRate_Water_Thermoelectric_SalineWater,"Withdrawal Rate Of Saline Water For Thermoelectric Use;Withdrawal Rate of Water: Thermoelectric, Saline Water;the amount of saline water that is withdrawn for thermoelectric use per unit of time;the quantity of saline water that is withdrawn for thermoelectric use per unit of time;the rate at which saline water is withdrawn for thermoelectric use;the volume of saline water that is withdrawn for thermoelectric use per unit of time" -WithdrawalRate_Water_Thermoelectric_SurfaceWater,"Withdrawal Rate of Thermoelectric Surface Water;Withdrawal Rate of Water: Thermoelectric, Surface Water;the amount of thermoelectric surface water that is withdrawn per unit time;the rate at which thermoelectric surface water is withdrawn;the rate of consumption of thermoelectric surface water;the rate of depletion of thermoelectric surface water" -dc/00dyzp11kk35g,Count of Establishment: Geothermal Electric Power Generation (NAICS/221116);Geothermal Electric Power Generation -dc/015d58s9xh8kd,1 The average salary for real estate and rental and leasing workers;Average salary for workers in the real estate and rental and leasing field;How much money do real estate and rental and leasing workers make on average?;Income in the middle for the real estate and rental and leasing sector;Median Income (Real Individual Earnings Before Deductions): Real Estate And Rental And Leasing (NAICS/53);Median Income of Real Estate and Rental and Leasing Workers;Median income of real estate and rental and leasing workers;Median pay for real estate and rental and leasing industry;The average yearly salary for real estate and rental and leasing workers;Typical earnings for real estate and rental and leasing workers;What is the average salary for real estate and rental and leasing workers?;What is the median income for real estate and rental and leasing workers?;median income of real estate and rental and leasing workers;the average yearly income of real estate and rental and leasing workers;the middle value of the yearly incomes of real estate and rental and leasing workers;the typical salary of real estate and rental and leasing workers;what is the typical salary for real estate and rental and leasing workers? -dc/03ewbkyh6zey2,"Incarcerated Native Hawaiian or Other Pacific Islander Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, Native Hawaiian or Other Pacific Islander Alone;male native hawaiian or other pacific islander incarceration rate;number of native hawaiian or other pacific islander males in prison;percentage of native hawaiian or other pacific islander males who are incarcerated;proportion of native hawaiian or other pacific islander males who are in jail" -dc/03l0q0wyqrk39,"Incarcerated Male Population Measured Based on Jurisdiction;Population (Measured Based on Jurisdiction): Male, Incarcerated;male incarceration rates by jurisdiction;male incarceration statistics by jurisdiction;number of incarcerated men by jurisdiction;percentage of men incarcerated by jurisdiction" -dc/065dmg2ls1heb,"Count of Housing Unit: With Mortgage, 1,500 - 1,999 USD" -dc/06f0jf8xvzw4f,"Hispanic Female Population With Bachelor's Degrees;Population: Bachelors Degree or Higher, Female, Hispanic or Latino;hispanic women who have bachelor's degrees;hispanic women with bachelor's degrees;the number of hispanic women with bachelor's degrees;the percentage of hispanic women with bachelor's degrees" -dc/06m8j6xz3h0wf,"Population Working In Construction, And Maintenance Occupations Who Use Motorcycle Bicycles;Population: Taxicab Motorcycle Bicycle or Other Means, Natural Resources, Construction, And Maintenance Occupations;people who work in construction and maintenance and use motorcycles or bicycles;the number of people who work in construction and maintenance and use motorcycles or bicycles;the percentage of people who work in construction and maintenance and use motorcycles or bicycles;the proportion of people who work in construction and maintenance and use motorcycles or bicycles" -dc/079ewbkwfmswg,"Native Born Outside The United States Widowed;Population: Widowed, Native Born Outside The United States;a widow who was not born in the us;born outside the us and widowed;not a us native and widowed;not born in the us and a widow" -dc/0gettc3bc60cb,"Population Driving Car Truck or Van;Population: Car Truck or Van Drove Alone;number of people who drove alone in a car, truck, or van;number of people who drove by themselves in a car, truck, or van;number of people who drove solo in a car, truck, or van;number of people who were the only driver in a car, truck, or van" -dc/0hq9z5mspf73f,The amount of money that water transportation workers earn in total;The total amount of money earned by water transportation workers;The total amount of money that water transportation workers earn;Total Wages Paid to Water Transportation Workers;Total wages paid to water transportation workers;Wages Total of Person: Water Transportation (NAICS/483);the total amount of money paid to water transportation workers;the total earnings of water transportation workers;the total income of water transportation workers;the total sum of money paid to water transportation workers;total wages of water transportation workers -dc/0jtctjm33mgh1,"Hispanic Population Enrolled in College Undergraduate;Population: Enrolled in College Undergraduate Years, Hispanic or Latino;hispanic college enrollment;hispanic students enrolled in college;number of hispanic college students;undergraduate hispanic enrollment" -dc/0mz1rg7mm3y66,"Federally Operated And Incarcerated Population;Population (Measured Based on Jurisdiction): Federally Operated, Incarcerated;federally operated prison population;the number of people who are behind bars in federal prisons and jails;the number of people who are in prison or jail and are being held by the federal government;the number of people who are incarcerated in federal prisons and jails" -dc/0tn58fc77r0z6,"Incarcerated African Americans;Population (Measured Based on Jurisdiction): Incarcerated, Black or African American Alone;african americans who are in prison or jail;african americans who are in the criminal justice system;black people who are behind bars;black people who are incarcerated" -dc/0yv0ry7tjmwzc,"Female Population Enrolled in College, Undergraduate Years;Population: Female, Enrolled in College Undergraduate Years" -dc/107jnwnsh17xb,How many people work in food manufacturing?;How many people work in the food manufacturing industry?;Population of People Working in the Food Manufacturing Industry;Population of Person: Food Manufacturing (NAICS/311);Population of people working in the food manufacturing industry;how many people are employed in the food manufacturing industry;how many people are employed in the food processing industry;how many people work in food manufacturing;number of food manufacturing workers;number of people employed in the food manufacturing industry;number of people working in food processing;number of people working in food production;number of people working in the food industry -dc/10d542rs75l3g,"Incarcerated Female Population in Federally Operated;Population (Measured Based on Jurisdiction): Federally Operated, Female, Incarcerated;female inmates in federal prisons;the female prison population in the federal system;the number of incarcerated women in federal facilities;women incarcerated in federal prisons" -dc/15lrzqkb6n0y7,Population of Person: Crop Production (NAICS/111);Workers In Crop Production -dc/1c4zcyw02n71g,"Asians Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten, Asian Alone;number of asian children enrolled in kindergarten;percentage of asian children enrolled in kindergarten;proportion of asian children enrolled in kindergarten;share of asian children enrolled in kindergarten" -dc/1fw0t5m6459gb,Population With Commute Time of 10 to 14 Minutes;Population: 10 - 14 Minute -dc/1j7jmy39fwhw5,"Agriculture, Forestry, Fishing, And Hunting Establishments" -dc/1jqm2g7cm9m75,1 The total amount of money earned by textile and fabric finishing mills workers;The total amount of money earned by textile and fabric finishing mills workers;The total amount of money that textile and fabric finishing mills workers earn;Total Wages Paid to Textile and Fabric Finishing Mills Workers;Total wages paid to textile and fabric finishing mills workers;Wages Total of Person: Textile And Fabric Finishing Mills (NAICS/3133);the total amount of money paid to textile and fabric finishing mill workers;the total earnings of textile and fabric finishing mill workers;the total income of textile and fabric finishing mill workers;the total sum of money paid to textile and fabric finishing mill workers;total wages of textile and fabric finishing mills workers -dc/1kt512ynvpmc2,"Asian Population Enrolled In High School;Population: High School, Asian Alone;high school enrollment of asian americans;the number of asian americans enrolled in high school;the percentage of asian americans enrolled in high school;the proportion of asian americans enrolled in high school" -dc/1lm9k2vdxj4c6,"Foreign Born in Asian And Pacific Island Languages;Population: Asian And Pacific Island Languages, Foreign Born" -dc/1q3ker7zf14hf,The total amount of money earned by textile product mills workers;The total amount of money that textile product mills workers earn;Total Wages Paid to Textile Product Mills Workers;Total wages paid to textile product mills workers;Wages Total of Person: Textile Product Mills (NAICS/314);the total amount of money paid to textile product mills workers;the total earnings of textile product mills workers;the total income of textile product mills workers;the total sum of money paid to textile product mills workers;total wages of textile product mills workers -dc/1t989xd1tn701,"Native Hawaiian or Other Pacific Islander Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander college attendance;native hawaiian or other pacific islander college enrollment;native hawaiian or other pacific islander undergraduate population;number of native hawaiian or other pacific islander college students" -dc/1wf1h5esex2d,Count of Establishment: Manufacturing (NAICS/31-33);Establishments in The Manufacturing Industries -dc/1y59h5d6qjq91,"Native Population Born Outside The United States With Income;Population: With Income, Native Born Outside The United States;number of people in the united states who were born outside the country and have an income;people born outside the united states who have an income;people who were born in another country and now live in the united states and have an income;people who were born outside the united states and have an income" -dc/2487zfwx2423d,"Incarcerated American Indian or Alaska Native Female Population;Population (Measured Based on Jurisdiction): Female, Incarcerated, American Indian or Alaska Native Alone;american indian or alaska native women in correctional facilities;american indian or alaska native women in detention centers;american indian or alaska native women in jail;american indian or alaska native women in prison" -dc/273kn2nmgl4rf,"Population Born in Other State in The United States Without Income;Population: No Income, Born in Other State in The United States;people born in other states of the united states who have no income;people who were born in other states of the united states and are not employed;people who were born in other states of the united states and do not have an income;people who were born in other states of the united states and do not make any money" -dc/28nfbs113meqb,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Male, Incarcerated;Incarcerated Male Population in Judicial Execution;number of incarcerated males who have been sentenced to capital punishment;number of incarcerated men who are awaiting execution;number of male inmates awaiting execution;number of men in prison who have been convicted of a capital offense" -dc/29vy1f58gdm0g,"Foreign Born Multiracial Population;Population: Foreign Born, Two or More Races;multiracial people who were born in another country;people who were born in another country and identify as more than one race;people who were born in the united states and identify as more than one race, regardless of their parents' birthplace;people who were born in the united states to parents who are multiracial and identify as more than one race" -dc/2c2e9bn8p7xz6,Count of Establishment: Retail Trade (NAICS/44-45);Retail Trade -dc/2etwgx6vecreh,"How many people work in non-store retailing?;Number of workers in nonstore retailing;Population of People Working in Retail Outside of a Store;Population of Person: Nonstore Retailers (NAICS/454);Population of people working in nonstore retailers;number of nonstore retailers workers;number of people employed in retail outside of a store;number of people working in retail, but not in a brick-and-mortar store;number of people working in retail, but not in a store;number of people working in the retail industry, but not in a store;number of workers in nonstore retailing" -dc/2hhr4qp4b4r0b,"Population: Public Transportation Excluding Taxicab, Natural Resources, Construction, And Maintenance Occupations;Public Transportation Excluding Taxicab, Natural Resources, Construction And Maintenance Occupations Population;population of public transportation workers excluding taxicab, natural resources, construction, and maintenance occupations;public transportation workforce excluding taxicab, natural resources, construction, and maintenance occupations;size of the public transportation workforce excluding taxicab, natural resources, construction, and maintenance occupations" -dc/2r1c78wzvbq58,"Population Who Walked in Military Specific Occupations;Population: Walked, Military Specific Occupations;number of people who walked as part of their military-specific occupations;number of people who walked in military-specific occupations;number of people who walked while working in military-specific occupations;number of people who worked in military-specific occupations on foot" -dc/2r21y7g5j2fl2,"Population: Widowed, Born in Other State in The United States;Widowed Population Born in Other State in The United States;people who are widowed and were born in a state other than the one they currently live in;people who are widowed and were born in a state other than the one they were born in;people who are widowed and were born in another state in the united states;people who are widowed and were born in another state in the us" -dc/2s9jqlpe84dk,"Incarcerated Asian Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, Asian Alone;the incarcerated population of asian men;the number of asian men who are in prison or jail;the number of asian men who are in the criminal justice system;the percentage of asian men who are incarcerated" -dc/2wgh04kx6es88,Amount of wages earned by employees in the health care and social assistance industry;Median Income (Real Individual Earnings Before Deductions): Health Care And Social Assistance (NAICS/62);Median Income for People Working in the Health Care and Social Assistance Industry;Median income for people working in the health care and social assistance industry;Median income of individuals employed in the health care and social assistance sector;Median pay for those in the health care and social assistance industry;The average salary of people who work in health care and social assistance;how much do people in the health care and social assistance industry make on average?;how much money do people in the health care and social assistance industry make on average?;median income of employees in health care and social assistance;median income of health care and social assistance workers;the average amount of money that health care and social assistance workers make;what is the median income for people working in the health care and social assistance industry?;what is the typical income for people working in the health care and social assistance industry? -dc/2xd2ktjs23hk3,"Multiracial Native Population;Population: Native, Two or More Races;people who identify as native american and another race;people who identify as native american and two or more other races;people who identify as native american and two or more races;people who identify as two or more races, including native american" -dc/34t2kjrwbjd31,Population of People Working in the Petroleum and Coal Products Manufacturing Industry;Population of Person: Petroleum And Coal Products Manufacturing (NAICS/324);Population of people working in the petroleum and coal products manufacturing industry;The number of people who work in petroleum and coal products manufacturing;how many people are employed in the petroleum and coal products manufacturing sector?;how many people work in the petroleum and coal products manufacturing industry?;number of people employed in petroleum and coal products manufacturing;number of people working in the petroleum and coal products manufacturing sector;number of petroleum and coal products manufacturing workers;number of workers in the petroleum and coal products manufacturing industry;what is the number of people employed in the petroleum and coal products manufacturing industry?;what is the workforce size of the petroleum and coal products manufacturing industry? -dc/3bg4r46ly61q9,"African Americans In High School;Population: High School, Black or African American Alone;the challenges and opportunities faced by african american high school students;the experiences of african americans in high school;the lives of african american high school students;the struggles and triumphs of african american high school students" -dc/3ex11eg2q9hp6,"Average salary for workers in the manufacturing field;Income in the middle for the manufacturing sector;Median Income (Real Individual Earnings Before Deductions): Manufacturing (NAICS/31-33);Median Income of Manufacturing Workers;Median income of manufacturing workers;Median pay for manufacturing industry;Typical earnings for manufacturing workers;What do manufacturing workers make on average?;median income of manufacturing workers;the amount of money that half of manufacturing workers earn more than, and half earn less than;the average amount of money that manufacturing workers make;the average salary of manufacturing workers;the middle value of the salaries of manufacturing workers;the typical income of a manufacturing worker;the typical salary of manufacturing workers;what is the median income for manufacturing workers;what manufacturing workers make on average" -dc/3jr0p7yjw06z9,Betting parlors;Casinos;Count of BLS Establishment: Gambling Industries;Gambling Establishments;Gaming dens;Places to gamble;casinos;count of gambling facilities;how many gambling establishments are there;number of gambling establishments;the betting industry;the casino industry;the gambling business;the gaming industry -dc/3kk4xws30zxlb,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Incarcerated;Incarcerated Population Death Incidents from Other Cause of Death;deaths caused by inmates;deaths caused by people in jail;deaths caused by people in prison;deaths caused by prisoners" -dc/3kwcvm428wpq4,Number of Rail Transportation Workers;Number of people working in rail transportation;Number of rail transportation workers;Population of Person: Rail Transportation (NAICS/482);how many people are employed in the rail transportation industry?;how many people work in rail transportation?;number of people who work in rail transportation;number of people who work in the rail industry;number of people who work on trains;number of rail transportation employees;number of rail transportation workers;what is the number of people employed in rail transportation?;what is the workforce size of the rail transportation industry? -dc/3n8g9we5yv7th,"Multiracials Enrolled in Kindergartens;Population: Enrolled in Kindergarten, Two or More Races;kids of multiple races in kindergarten;kindergarteners of mixed race;kindergarteners of multiple ethnicities;kindergarteners who are multiracial" -dc/3s7lndm5j3wp4,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Incarcerated;Incarcerated Population Deaths From Illness or Natural Cause;deaths in jail from illness or natural causes;deaths in prison from illness or natural causes;deaths in the correctional population from illness or natural causes;deaths in the incarcerated population from illness or natural causes" -dc/3w039ndqy7qv1,"Hispanic Female Population With Some College or Associate's Degrees;Population: Some College or Associates Degree, Female, Hispanic or Latino;hispanic women with some college or associate's degrees;the number of hispanic women with some college or associate's degrees;the percentage of hispanic women with some college or associate's degrees;the proportion of hispanic women with some college or associate's degrees" -dc/3z6z9w930dl7b,"African American Population In Graduate School;Population: Graduate or Professional School, Black or African American Alone;the african american student body in graduate school;the number of african americans in graduate school;the percentage of african americans in graduate school;the proportion of african americans in graduate school" -dc/3zy5zptr0tsmg,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Male, Incarcerated;Deaths of Incercarated Male Population Due to Another Person;deaths of male incarcerated people;deaths of male inmates;male incarceration deaths;male prisoner deaths" -dc/40724bjd19ej7,"Foreign-Born Native Hawaiian or Other Pacific Islander Population;Population: Foreign Born, Native Hawaiian or Other Pacific Islander Alone;foreign-born people who identify as native hawaiian or other pacific islander;native hawaiians or other pacific islanders who were not born in the united states;number of native hawaiians or other pacific islanders born abroad;population of native hawaiians or other pacific islanders born outside the united states" -dc/4hzyqndyzntm,"Population: High School, White Alone;White Population In High School;the number of white students in high school;the percentage of white students in high school;the proportion of white students in high school;the share of white students in high school" -dc/4j5t00e5s5el3,Population: Pre Kindergarten And Kindergarten;Pre Kindergarten And Kindergarten Population;kids in pre-k and kindergarten;preschoolers and kindergarteners;the number of children in pre-k and kindergarten;the number of kids in pre-k and kindergarten -dc/4jqzmk4jtzwnb,"Incarcerated Hispanic Female Population;Population (Measured Based on Jurisdiction): Female, Incarcerated, Hispanic or Latino;hispanic female prisoners;hispanic women in prison;hispanic women who are in prison;hispanic women who are incarcerated" -dc/4kbb1mt42l0gf,"Native Population With Other European Indo Languages;Population: Other Indo European Languages, Native" -dc/4ky4sj05bw4nd,The total amount of money paid to air transportation workers;Total Wages Earned by People Working in the Air Transportation Industry;Total wages earned by people working in the air transportation industry;Wages Total of Person: Air Transportation (NAICS/481);the total amount of money paid to people who work in the air transportation industry;the total compensation of people who work in the air transportation industry;the total earnings of people who work in the air transportation industry;the total income of people who work in the air transportation industry;total wages of air transportation workers -dc/4lvmzr1h1ylk1,"Obesity Prevalence in Female Population;Prevalence: Female, Obesity;a large number of females are obese;obesity is a prevalent issue among females;obesity is common among females;women are disproportionately affected by obesity" -dc/4mm2p1rxr5wz4,Population of People Working in Miscellaneous Retail Stores;Population of Person: Miscellaneous Store Retailers (NAICS/453);Population of people working in miscellaneous store retailers;number of miscellaneous store retailers workers;number of people employed in miscellaneous retail stores;number of people employed in retail stores that sell a variety of products;number of people who work in retail;number of people working in miscellaneous retail stores;number of people working in retail stores that sell a variety of goods;number of workers in retail stores;salespeople;shop assistants;store employees -dc/4qtse8536dg63,"American Indian or Alaska Native Female Population with a Bachelor's Degree or Higher;Population: Bachelors Degree or Higher, Female, American Indian or Alaska Native Alone" -dc/4wdtyd2bbf9m9,"1 the number of students in school who identify as multiracial;2 the percentage of students in school who identify as multiracial;Multiracial Population Enrolled in School;Population: Two or More Races, Enrolled in School;multiracial students in school;students who identify as multiracial in school" -dc/4wkzsq23w6reb,"Population: Enrolled in College Undergraduate Years, White Alone Not Hispanic or Latino;White Non-Hispanic Population Enrolled in College Undergraduate Years;white non-hispanic college students;white non-hispanic students enrolled in college undergraduate years;white non-hispanic students in college;white non-hispanic undergraduates" -dc/4x1jbp34f4085,"Population (Measured Based on Jurisdiction): Female, Incarcerated, Two or More Races;Population of Incarcerated Multiracial Female Population;number of incarcerated multiracial women;number of multiracial women in jail;number of multiracial women in prison;number of multiracial women in the criminal justice system" -dc/4xklqxfc27w1f,"Population working In Management, Business, Science and Arts Occupations Who Use Public Transportation Excluding Taxicab;Population: Public Transportation Excluding Taxicab, Management, Business, Science, And Arts Occupations;number of people working in management, business, science, and arts occupations who use public transportation excluding taxis as a percentage of the total number of people working in those occupations;percentage of people working in management, business, science, and arts occupations who use public transportation excluding taxis;proportion of people working in management, business, science, and arts occupations who use public transportation excluding taxis;share of people working in management, business, science, and arts occupations who use public transportation excluding taxis" -dc/4z9xy6wn8xns1,Median Income (Real Individual Earnings Before Deductions): Administrative And Support And Waste Management Services (NAICS/56);Median Income of People Working in the Administrative and Support and Waste Management Services Industry;Median income of people working in the administrative and support and waste management services industry;The average income of those working in administrative and support and waste management services;The median salary of administrative and support and waste management services employees;The middle range of income for people in the administrative and support and waste management services sector;The typical pay for people working in the administrative and support and waste management services industry;What is the median income for administrative and support and waste management services workers;What is the typical income for administrative and support and waste management services workers;how much money do people in the administrative and support and waste management services industry make on average?;median income of administrative and support and waste management services workers;what is the average salary for people working in the administrative and support and waste management services industry?;what is the median income for administrative and support and waste management services workers;what is the median income for people working in the administrative and support and waste management services industry?;what is the typical salary for people working in the administrative and support and waste management services industry? -dc/50yq5l3ek70t7,"Other Race Population Enrolled In College Undergraduate Years;Population: Enrolled in College Undergraduate Years, Some Other Race Alone;enrollment of students of other races in college undergraduate years;number of students of other races enrolled in college undergraduate years;percentage of students of other races enrolled in college undergraduate years;proportion of students of other races enrolled in college undergraduate years" -dc/510pv6eq2vtw7,"Incarcerated Native Hawaiian Or Other Pacific Islander Population;Population (Measured Based on Jurisdiction): Incarcerated, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander prisoners;the incarceration rate of native hawaiian or other pacific islanders;the number of native hawaiian or other pacific islanders in prison;the percentage of native hawaiian or other pacific islanders in prison" -dc/51h3g4mcgj3w4,Construction of Buildings Establishments;Count of Establishment: Construction of Buildings (NAICS/236) -dc/556pqlh586bmc,"Native Hawaiian or Other Pacific Islander Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten, Native Hawaiian or Other Pacific Islander Alone;the native hawaiian or other pacific islander kindergarten enrollment rate;the number of native hawaiian or other pacific islander children enrolled in kindergarten;the percentage of native hawaiian or other pacific islander children enrolled in kindergarten;the proportion of native hawaiian or other pacific islander children enrolled in kindergarten" -dc/55d9n710f1l43,"Population: Enrolled in College Undergraduate Years, White Alone;White Population Enrolled in College Undergraduate Years;number of white students enrolled in college undergraduate programs;percentage of white students enrolled in college undergraduate programs;proportion of white students enrolled in college undergraduate programs;white student enrollment in college undergraduate programs" -dc/56md3ndhrmvm7,"1 the number of african american women with some college or associate's degrees;2 the percentage of african american women with some college or associate's degrees;3 the proportion of african american women with some college or associate's degrees;4 the share of african american women with some college or associate's degrees;African American Female Population With Some College or Associate's Degrees;Population: Some College or Associates Degree, Female, Black or African American Alone" -dc/59k03h1hvxp89,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Female, Incarcerated;Female Incarcerated Death Events Death Due To Another Person;female prisoners killed by other people;female prisoners who were killed by other people;incarcerated women who were killed by other people;women in prison killed by other people" -dc/5blsqw3w9jmnc,"Multiracial Population Not Enrolled In School;Population: Two or More Races, Not Enrolled in School;multiracial students not enrolled in school;the number of multiracial people not enrolled in school;the percentage of multiracial people not enrolled in school;the share of multiracial people not enrolled in school" -dc/5br285q68be6,Employees in Gambling Industry;People who work in the gambling industry;Population of Person: Gambling Industries;count of gambling workers;gambling industry employees;gambling industry staff;gambling industry workers;how many people work in the gambling industry;people who work in the gambling industry;people with jobs in the gambling industry;people working in gambling -dc/5f3gkej4mrq24,"1 The amount of money that retail trade workers make on average;Average salary for workers in the retail trade field;Income in the middle for the retail trade sector;Median Income (Real Individual Earnings Before Deductions): Retail Trade (NAICS/44-45);Median Income of Retail Trade Workers;Median income of retail trade workers;Median pay for retail trade industry;The average amount of money that retail trade workers make;The average salary for retail trade workers;Typical earnings for retail trade workers;What do retail trade workers make, on average?;median income of retail trade workers;what is the average income for retail trade workers?;what is the median income for retail trade workers?;what is the middle income for retail trade workers?;what is the typical salary for retail trade workers?" -dc/5g7vkrkzfre5g,"Married And Unseparated Foreign-Born Population;Population: Married And Not Separated, Foreign Born;foreign-born married population;foreign-born people who are married and not separated;foreign-born population who are married;population of foreign-born people who are married" -dc/5gtp8jjdzczh8,"Population Born in State of Residence Without Income;Population: No Income, Born in State of Residence;people who were born in the state they currently reside in and are not working;people who were born in the state they currently reside in and are unemployed;people who were born in the state they currently reside in and do not have a job;people who were born in the state they currently reside in and have no income" -dc/5hc4etrfyj9qg,"Population: Bachelors Degree or Higher, Female, White Alone;White Female Population With Bachelor's Degrees or Higher;the number of white women with bachelor's degrees or higher;the percentage of white women with bachelor's degrees or higher;the proportion of white women with bachelor's degrees or higher;the share of white women with bachelor's degrees or higher" -dc/5hv2p802zmh03,"Average salary for workers in the professional, scientific, and technical services field;How much money do professional, scientific, and technical services workers make?;Income in the middle for the professional, scientific, and technical services sector;Median Income (Real Individual Earnings Before Deductions): Professional, Scientific, And Technical Services (NAICS/54);Median Income of Professional, Scientific, and Technical Services Workers;Median income of professional, scientific, and technical services workers;Median pay for professional, scientific, and technical services industry;The average salary for people who work in professional, scientific, and technical services;The average salary of professional, scientific, and technical services workers;The middle income for workers in professional, scientific, and technical services;Typical earnings for professional, scientific, and technical services workers;What is the average salary of professional, scientific, and technical services workers?;median income of professional, scientific, and technical services workers;the average salary for professional, scientific, and technical services workers;the average salary of professional, scientific, and technical services workers;the middle income of professional, scientific, and technical services workers;the middle salary for professional, scientific, and technical services workers" -dc/5jy4dp16mtssg,"Count of Housing Unit: Without Mortgage, 0 USD" -dc/5pcx89t7j9bq,"Population Born in the State of Residence and Married and Not Separated;Population: Married And Not Separated, Born in State of Residence;people born in the state they currently live in who are married and not separated;people who are married and not separated and live in the state they were born in;people who are married and not separated and were born in the state they currently live in;people who were born in the state they currently live in and are married and not separated" -dc/5qnjtqc0w783b,"American Indian or Alaska Native Population Enrolled in School;Population: American Indian or Alaska Native Alone, Enrolled in School;american indian or alaska native school attendance;american indian or alaska native school enrollment;number of american indian or alaska native students enrolled in school;percentage of american indian or alaska native students enrolled in school" -dc/61t0et409x8ch,"Count of Establishment: Research And Development in The Physical, Engineering, And Life Sciences (NAICS/54171);Research And Development in The Physical Engineering And Life Sciences Establishments" -dc/62gn48xpbqew9,Population with Commute Time of 30 to 34 Minutes;Population: 30 - 34 Minute -dc/62n3z7mvfpjx1,"Amount of Economic Activity (Real Value): Gross Domestic Production, Manufacturing (NAICS/31-33);Gross Domestic Production in Manufacturing" -dc/63gkdt13bmsv8,Population of People Working in the Air Transportation Industry;Population of Person: Air Transportation (NAICS/481);Population of people working in the air transportation industry;how many people are employed in the air transportation sector?;how many people work in air transportation;how many people work in the air transportation industry?;number of air transportation workers;the number of air transportation workers;the number of employees in air transportation;the number of people employed in air transportation;the number of people working in the air transportation industry;what is the number of people employed in the air transportation industry?;what is the workforce size of the air transportation industry? -dc/66sy80vs0b8q7,"Divorced Population Born in Other States in The United States;Population: Divorced, Born in Other State in The United States;divorced people in the united states who were born in other states;number of divorced people born in other states in the united states;people born in other states who are divorced in the united states;population of divorced people born in other states in the united states" -dc/67ttwfn9dswch,Count of Mortality Event (Measured Based on Jurisdiction): Incarcerated;Deaths Among Incarcerated Population;number of deaths (measured by jurisdiction): incarcerated;the number of people who died while incarcerated -dc/68cg2z97cpl7d,"Hispanic Population In Primary Schools;Population: Primary School, Hispanic or Latino;the number of hispanic children in primary school;the number of hispanic students in elementary schools;the percentage of hispanic students in primary education;the proportion of hispanic students in k-5 schools" -dc/6bkn9vt30f5c1,"Foreign Born American Indian or Alaska Native Population;Population: Foreign Born, American Indian or Alaska Native Alone;number of american indians or alaska natives who were born in another country;number of american indians or alaska natives who were not born in the united states;population of american indians or alaska natives born outside the united states;total number of american indians or alaska natives who are foreign-born" -dc/6dqm6n76jg2gc,"Accidental Deaths of Incarcerated Female Population;Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Female, Incarcerated;female incarceration-related deaths;female inmate deaths;number of female prisoners who have died;number of incarcerated women who have died" -dc/6ets5evke9mw5,The total amount of money earned by miscellaneous store retailers workers;The total amount of money earned by workers in miscellaneous retail stores;The total amount of money paid to miscellaneous store retailers workers;The total amount of money paid to workers in miscellaneous retail stores;The total amount of money paid to workers in miscellaneous store retail;Total Wages for People Working in Miscellaneous Retail Stores;Total wages for people working in miscellaneous store retailers;Wages Total of Person: Miscellaneous Store Retailers (NAICS/453);how much money do people working in miscellaneous retail stores make?;total wages of miscellaneous store retailers workers;what are the average wages for people working in miscellaneous retail stores?;what are the salaries for people working in miscellaneous retail stores?;what is the pay range for people working in miscellaneous retail stores? -dc/6n6l2wrzv7473,Population of People Working in the Paper Manufacturing Industry;Population of Person: Paper Manufacturing (NAICS/322);Population of people working in the paper manufacturing industry;number of paper factory employees;number of paper manufacturing workers;number of paper mill workers;number of paper producers;number of people employed in the paper manufacturing industry;number of people employed in the production of paper;number of people who make paper;number of people who work in the paper manufacturing industry;number of people working in the paper industry;number of people working in the production of paper products -dc/6rltk4kf75612,Population Worked At Home;Population: Worked At Home;the number of people who worked from home;the percentage of people who worked from home;the proportion of people who worked from home;the share of people who worked from home -dc/6xg0t3qjdtqn5,"Incarcerated Native Hawaiian or Other Pacific Islander Female Population;Population (Measured Based on Jurisdiction): Female, Incarcerated, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander women who are in prison or jail;the number of native hawaiian or other pacific islander women who are in the criminal justice system;the percentage of native hawaiian or other pacific islander women who are incarcerated;the rate of incarceration for native hawaiian or other pacific islander women" -dc/6xlk95n27cn23,"Count of Mortality Event (Measured Based on Jurisdiction): Male, Incarcerated;Deaths Among Incarcerated Male Population;number of deaths (by jurisdiction): male detainees" -dc/6zbb7s5nx6rxb,"Other Race Middle School Population;Population: Middle School, Some Other Race Alone;number of middle school students who are not of the majority race;percentage of middle school students who are not of the majority race;population of middle school students who are not of the majority race" -dc/6zrlr86zt61yg,"Population Use Taxicab Motorcycle Bicycle;Population: Taxicab Motorcycle Bicycle or Other Means, Service Occupations;what is the prevalence of people who use taxis, motorcycles, and bicycles?" -dc/70zj83ev915f8,"Currently Married Male Population;Population: Male, Now Married" -dc/7bck6xpkc205c,Number of leather and allied product manufacturing employees;Number of leather and allied product manufacturing workers;Number of people employed in the leather and allied product manufacturing sector;Number of people working in the leather and allied product manufacturing field;Number of workers in the leather and allied product manufacturing industry;Population of People Working in the Leather and Allied Product Manufacturing Industry;Population of Person: Leather And Allied Product Manufacturing (NAICS/316);Population of people working in the leather and allied product manufacturing industry;number of leather and allied product manufacturing workers;number of people employed in the leather and allied product manufacturing industry;number of people working in the leather and allied product manufacturing business;number of people working in the leather and allied product manufacturing field;number of people working in the leather and allied product manufacturing sector -dc/7fdfhnnjr5sh8,"American Indian or Alaska Native Population with Graduate or Professional Schools;Population: Graduate or Professional School, American Indian or Alaska Native Alone;american indian or alaska native students enrolled in graduate or professional schools;american indian or alaska native students who have completed graduate or professional school;american indian or alaska native students who have earned a graduate or professional degree;the number of american indian or alaska native students enrolled in graduate or professional schools" -dc/7g77dy8hfb1rg,"Hispanic Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten, Hispanic or Latino;hispanic kindergarten attendance;hispanic kindergarten enrollment;number of hispanic children enrolled in kindergarten;percent of hispanic children enrolled in kindergarten" -dc/7g8v95ycwgwgg,"Incarcerated White Female Population;Population (Measured Based on Jurisdiction): Female, Incarcerated, White Alone;incarcerated white women;white female prisoners;white women in prison;white women who are incarcerated" -dc/7jqw95h5wbelb,Average salary for workers in the public administration field;Income in the middle for the public administration sector;Median Income (Real Individual Earnings Before Deductions): Public Administration (NAICS/92);Median Income of Public Administration Workers;Median income of public administration workers;Median pay for public administration industry;The average salary of public administration workers;The average salary of public servants;Typical earnings for public administration workers;What is the average salary of a public administration worker;What is the median income for public administration workers;What is the typical salary for a public administration worker;median income of public administration workers;what is the average salary for public administration workers?;what is the median income for public administration workers?;what is the pay range for public administration workers?;what is the typical salary for public administration workers? -dc/7nqp2vc6y6fef,"Native Hawaiian Population not Enrolled In School;Population: Native Hawaiian or Other Pacific Islander Alone, Not Enrolled in School;the number of native hawaiians not enrolled in school;the percentage of native hawaiians not enrolled in school;the proportion of native hawaiians not enrolled in school;the share of native hawaiians not enrolled in school" -dc/7w0e0p0dzj82g,The total amount of money earned by textile mills workers;The total amount of money paid to textile mill workers;The total amount of money that textile mills workers are paid;The total amount of money that textile mills workers earn;Total Wages Paid to Textile Mills Workers;Total wages paid to textile mills workers;Wages Total of Person: Textile Mills (NAICS/313);the sum of all the wages paid to textile mill workers;the total amount of money earned by textile mill workers;the total amount of money paid out in wages to textile mill workers;the total amount of money paid to textile mill workers;total wages of textile mills workers -dc/7wt44yv38rew,"1 the number of people working from home in sales and office occupations;2 the percentage of people working from home in sales and office occupations;3 the proportion of people working from home in sales and office occupations;4 the share of people working from home in sales and office occupations;Population Working At Home As Sales And Office Occupations;Population: Worked At Home, Sales And Office Occupations" -dc/7ykp70f9rtck9,Population: 20 - 24 Minute -dc/80q8jrnkvwtt3,"Population of Car Truck or Van Carpooled, Management, Business, Science in Arts Occupations;Population: Car Truck or Van Carpooled, Management, Business, Science, And Arts Occupations;number of people who carpool in management, business, science, and arts occupations;number of people who carpool to work in management, business, science, and arts occupations;percentage of people who carpool in management, business, science, and arts occupations;share of people who carpool in management, business, science, and arts occupations" -dc/80wsxnfj3secc,"Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Incarcerated;Deaths Of Incarcerated Population Caused by Unintentional Injuries;deaths from unintentional injuries in incarcerated people;incarcerated people who died from unintentional injuries;unintentional injuries that caused the deaths of incarcerated people;unintentional injury deaths in incarcerated populations" -dc/84czmnc1b6sp5,Earnings of those employed in transportation and warehousing;How much money workers in the transportation and warehousing make;Income for workers in the transportation and warehousing sector;The total amount of money paid to transportation and warehousing workers;Total Wages Paid to Transportation and Warehousing Workers;Total wages paid to transportation and warehousing workers;Wages Total of Person: Transportation And Warehousing (NAICS/48-49);Wages for employees in the transportation and warehousing field;the sum of all the wages paid to transportation and warehousing workers;the total amount of money paid to transportation and warehousing workers;the total compensation paid to transportation and warehousing workers;the total earnings of transportation and warehousing workers;total wages of transportation and warehousing workers -dc/88znpts47dszb,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Male, Incarcerated;Deaths of Incarcerated Male Population Caused by Illness;deaths of incarcerated males due to illness;illness as a cause of death in incarcerated males;illness-related deaths among incarcerated males;incarcerated males who died from illness" -dc/8b3gpw1zyr7bf,How many people work in textile mills?;Number of Textile Mills Workers;Number of textile mills workers;Population of Person: Textile Mills (NAICS/313);The number of people who work in textile mills;how many people work in textile mills?;how many textile mill workers are there?;number of textile mills workers;what is the number of textile mill workers?;what is the workforce of textile mills? -dc/8cnhmxe67qddf,"Native Hawaiian or Other Pacific Islander Population Enrolled in School;Population: Native Hawaiian or Other Pacific Islander Alone, Enrolled in School;native hawaiian or other pacific islander school enrollment;number of native hawaiian or other pacific islander students attending school;number of native hawaiian or other pacific islander students enrolled in school;percentage of native hawaiian or other pacific islander students enrolled in school" -dc/8cssekvykhys5,1 The total amount of money paid to petroleum and coal products manufacturing workers;The total amount of money earned by petroleum and coal products manufacturing workers;The total amount of money paid to petroleum and coal products manufacturing workers;The total amount of money paid to workers in the petroleum and coal products manufacturing industry;Total Wages for People Working in the Petroleum and Coal Products Manufacturing Industry;Total wages for people working in the petroleum and coal products manufacturing industry;Wages Total of Person: Petroleum And Coal Products Manufacturing (NAICS/324);the total amount of money earned by people working in the petroleum and coal products manufacturing industry;the total compensation of people working in the petroleum and coal products manufacturing industry;the total earnings of people working in the petroleum and coal products manufacturing industry;the total income of people working in the petroleum and coal products manufacturing industry;total wages of petroleum and coal products manufacturing workers -dc/8hy0p1ex5s2cb,1 How much money do wholesale trade workers make on average?;Average salary for workers in the wholesale trade field;How much money do wholesale trade workers make on average?;Income in the middle for the wholesale trade sector;Median Income (Real Individual Earnings Before Deductions): Wholesale Trade (NAICS/42);Median Income of Wholesale Trade Workers;Median income of wholesale trade workers;Median pay for wholesale trade industry;The average yearly salary of wholesale trade workers;Typical earnings for wholesale trade workers;What do wholesale trade workers make on average?;how much money do wholesale trade workers make on average?;median income of wholesale trade workers;what's the average salary for wholesale trade workers?;what's the median income for wholesale trade workers?;what's the typical salary for wholesale trade workers? -dc/8j8w7pf73ekn,Number of Postal Service Workers;Number of postal service workers;Population of Person: Postal Service (NAICS/491);how many people are employed by the postal service?;how many people work for the postal service?;number of people employed by the postal service;number of people who are employed by the United States Postal Service;number of people who work for the United States Postal Service;number of people who work for the post office;number of postal service workers;number of postal workers;what is the number of employees at the postal service?;what is the workforce size of the postal service? -dc/8lqwvg8m9x7z8,Cattle ranching and farming workers' total wages;The total amount of money paid to cattle ranching and farming workers;The total amount of money that cattle ranching and farming workers earn;Total Wages Earned by People Working in Cattle Ranching and Farming;Total wages earned by people working in cattle ranching and farming;Wages Total of Person: Cattle Ranching And Farming (NAICS/1121);the sum of all the wages earned by people working in cattle ranching and farming;the total amount of money earned by people working in cattle ranching and farming;the total earnings of people working in cattle ranching and farming;the total income of people working in cattle ranching and farming;total wages of cattle ranching and farming workers -dc/8p97n7l96lgg8,1 How many people work in transportation and warehousing?;Employment numbers in the transportation and warehousing industry;How many people work in transportation and warehousing?;Individuals employed in the transportation and warehousing sector;Number of Transportation and Warehousing Workers;Number of people who work in transportation and warehousing;Number of people working in transportation and warehousing;Number of transportation and warehousing workers;People working in the transportation and warehousing field;Population of Person: Transportation And Warehousing (NAICS/48-49);Workforce size for the transportation and warehousing industry;how many people are employed in the transportation and warehousing industry?;how many people work in transportation and warehousing?;number of transportation and warehousing workers;what is the number of people employed in transportation and warehousing?;what is the workforce size of transportation and warehousing? -dc/8pxklrk2q6453,The total amount of money that nonstore retailers workers earn;Total Wages for People Working in Retail Outside of a Store;Total wages for people working in nonstore retailers;Wages Total of Person: Nonstore Retailers (NAICS/454);how much do people working in retail outside of a store earn?;total wages of nonstore retailers workers;what are the wages for people working in retail outside of a store?;what is the average salary for people working in retail outside of a store?;what is the typical pay for people working in retail outside of a store? -dc/90nswpkp8wlw5,How many people work in nonmetallic mineral product manufacturing?;Number of workers employed in the manufacture of nonmetallic mineral products;Population of People Working in the Nonmetallic Mineral Product Manufacturing Industry;Population of Person: Nonmetallic Mineral Product Manufacturing (NAICS/327);Population of people working in the nonmetallic mineral product manufacturing industry;The number of people who work in the manufacturing of nonmetallic mineral products;number of nonmetallic mineral product manufacturing workers;the number of people employed in the nonmetallic mineral product manufacturing industry;the number of people who work in the nonmetallic mineral product manufacturing industry;the number of workers in the nonmetallic mineral product manufacturing industry;the workforce of the nonmetallic mineral product manufacturing industry -dc/91vy0sf20wlg9,"Out of State, State Operated Incarcerated Population;Population (Measured Based on Jurisdiction): Out-of-State, State Operated, Incarcerated" -dc/92sfrvdv82jh9,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Male, Incarcerated;Deaths of Incarcerated Male Population Caused By Other NPS;deaths of incarcerated males caused by other nps;deaths of incarcerated males due to other nps;other nps deaths in the incarcerated male population;other nps-related deaths in the incarcerated male population" -dc/95gev5g99r7nc,The total amount of money that couriers and messengers workers are paid;The total amount of money that couriers and messengers workers earn;Total Wages for People Working as Couriers and Messengers;Total wages for people working as couriers and messengers;Wages Total of Person: Couriers And Messengers (NAICS/492);how much do couriers and messengers make?;total wages of couriers and messengers workers;what are the wages for couriers and messengers?;what is the average salary for couriers and messengers?;what is the pay range for couriers and messengers? -dc/96b2ddmlpvq7f,"Geothermal Electric Power Generation Establishments With Payrolls;Revenue of Establishment: Geothermal Electric Power Generation (NAICS/221116), With Payroll" -dc/99t3dyzp34tg2,"Other Race Foreign-Born Population;Population: Foreign Born, Some Other Race Alone;foreign-born people of other races;foreign-born population of other races;immigrants of other races;people of other races who are immigrants" -dc/9b9gqxj27fqwc,"Count of Housing Unit: With Mortgage, 3,000 USD or More;Housing Units With 3,000 USD or More Mortgage" -dc/9cqv67nn7pn1b,"Hispanic Population with Graduates or Professional Schools;Population: Graduate or Professional School, Hispanic or Latino;the number of hispanic people with graduate or professional degrees;the percentage of hispanic people with graduate or professional degrees;the proportion of hispanic people with graduate or professional degrees;the share of hispanic people with graduate or professional degrees" -dc/9cztw75rt7qp7,"Married And Not Separated Population Born in Other States in The United States;Population: Married And Not Separated, Born in Other State in The United States;number of people living in the us who are married and were born in other states;the number of married and not separated people in the us who were born outside of the us;the number of people in the united states who are married and not separated and who were born in other states;the number of people in the us who are married and not separated and who were not born in the us" -dc/9kk3vkzn5v0fb,The total amount of money earned by beverage and tobacco product manufacturing workers;The total amount of money paid to beverage and tobacco product manufacturing workers;Total Wages for People Working in the Beverage and Tobacco Product Manufacturing Industry;Total wages for people working in the beverage and tobacco product manufacturing industry;Wages Total of Person: Beverage And Tobacco Product Manufacturing (NAICS/312);the average salary for people working in the beverage and tobacco product manufacturing industry;the average wage for people working in the beverage and tobacco product manufacturing industry;the total amount of money earned by people working in the beverage and tobacco product manufacturing industry;the total compensation for people working in the beverage and tobacco product manufacturing industry;total wages of beverage and tobacco product manufacturing workers -dc/9pmyhk89dj3pf,How much do accommodation and food services workers make on average?;How much money do accommodation and food services workers make on average?;Median Income (Real Individual Earnings Before Deductions): Accommodation And Food Services (NAICS/72);Median Income of Accommodation and Food Services Workers;Median income of accommodation and food services workers;Number of people working in wood product manufacturing;The average income of those working in accommodation and food services;The average wage for accommodation and food services workers;The median salary of accommodation and food services employees;The middle range of income for people in the accommodation and food services sector;The typical pay for people working in the accommodation and food services industry;how much money do accommodation and food services workers make on average?;median income of accommodation and food services workers;what is the average salary for accommodation and food services workers?;what is the median income for accommodation and food services workers?;what is the typical income for accommodation and food services workers? -dc/9pz1cse6yndtg,Management of Companies And Enterprise Industries -dc/9q73ecfhmd0y9,"Other Race High School Students;Population: High School, Some Other Race Alone;high school students of color;high school students who are not white;students of diverse backgrounds in high school;students of other races in high school" -dc/9sneyc8lpk8dc,"Population: Some College or Associates Degree, Female, White Alone;White Female Population with Some College or Associate's Degrees;the number of white women with some college or associate's degrees;the percentage of white women with some college or associate's degrees;the proportion of white women with some college or associate's degrees;the share of white women with some college or associate's degrees" -dc/9t5n4mk2fxzdg,The total amount of money paid to transit and ground passenger transportation workers;Total Wages Paid to Transit and Ground Passenger Transportation Workers;Total wages paid to transit and ground passenger transportation workers;Wages Total of Person: Transit And Ground Passenger Transportation (NAICS/485);the total amount of money paid to transit and ground passenger transportation workers;the total compensation paid to transit and ground passenger transportation workers;the total earnings of transit and ground passenger transportation workers;the total income of transit and ground passenger transportation workers;total wages of transit and ground passenger transportation workers -dc/9vlv8l9dbgsk7,"Population: Public Transportation Excluding Taxicab, Military Specific Occupations;Workers in Public Transportation Excluding Taxicab, Military Specific Occupations;employees in public transportation, other than taxi drivers and military personnel;people who work in public transportation, except for taxi drivers and members of the military;public transportation workers, excluding taxi drivers and military personnel;workers in the public transportation sector, excluding taxi drivers and military personnel" -dc/9yj0bdp6s4ml5,The total amount of money earned by plastics and rubber products manufacturing workers;The total amount of money earned by workers in the plastics and rubber products manufacturing industry;The total amount of money paid to plastics and rubber products manufacturing workers;The total amount of money paid to workers in the plastics and rubber products manufacturing industry;Total Wages for People Working in the Plastics and Rubber Products Manufacturing Industry;Total wages for people working in the plastics and rubber products manufacturing industry;Wages Total of Person: Plastics And Rubber Products Manufacturing (NAICS/326);the average salary for people working in the plastics and rubber products manufacturing industry;the sum of all the wages paid to people working in the plastics and rubber products manufacturing industry;the total amount of money that people working in the plastics and rubber products manufacturing industry earn;the total compensation for people working in the plastics and rubber products manufacturing industry;total wages of plastics and rubber products manufacturing workers -dc/b0npgpvp37mvf,"Accidental Deaths Among Incarcerated Male Population;Count of Mortality Event (Measured Based on Jurisdiction): Accidents(Unintentional Injuries), Male, Incarcerated;accidental deaths in male prisoners;accidental deaths of male prisoners;deaths caused by accidents in male inmates;deaths caused by accidents in male prisons" -dc/b18vkxwgc8xbd,"Native Hawaiian or Other Pacific Islander Population Who are Natives;Population: Native, Native Hawaiian or Other Pacific Islander Alone;what are the indigenous groups of hawaii and the pacific islands?;what are the native peoples of hawaii and the pacific islands called?;who are the indigenous people of hawaii and the pacific islands?;who are the native hawaiians and other pacific islanders?" -dc/b3jgznxenlrm2,"Non-US Citizens Incarcerated in State Operated, Federally Operated and Privately Operated;Population (Measured Based on Custody): Not A US Citizen, State Operated & Federally Operated & Privately Operated, Incarcerated;foreign nationals held in state, federal, and private prisons;individuals who are not us citizens and are incarcerated in state, federal, or privately operated detention centers;non-citizens imprisoned in state, federal, and private correctional facilities;people who are not us citizens and are in jails or prisons that are run by the state, federal government, or a private company" -dc/b3nmcj3w1lhed,"Multiracial Population In Middle Schools;Population: Middle School, Two or More Races;more and more students in middle school are coming from mixed-race families;the number of students in middle school who identify as multiracial is increasing;the percentage of students in middle school who identify as multiracial is on the rise;the racial makeup of middle schools is becoming more diverse" -dc/b4dj4sbgqybh7,"How much money do mining, quarrying, and oil and gas extraction workers make on average;Median Income (Real Individual Earnings Before Deductions): Mining, Quarrying, And Oil And Gas Extraction (NAICS/21);Median Income for People Working in the Mining, Quarrying, and Oil and Gas Extraction Industry;Median income for people working in the mining, quarrying, and oil and gas extraction industry;The median income for those working in the mining, quarrying, and oil and gas extraction industry;The median pay for mining, quarrying, and oil and gas extraction workers;The mid-point income for mining, quarrying, and oil and gas extraction workers;The middle income for mining, quarrying, and oil and gas extraction workers;The number of people employed in the mining, quarrying, and oil and gas extraction industry;The typical income for mining, quarrying, and oil and gas extraction workers;Total wages earned by employees in the mining, quarrying, and oil and gas extraction field.;median income of mining, quarrying, and oil and gas extraction workers;the amount of money that half of the people working in the mining, quarrying, and oil and gas extraction industry earn, and half earn less;the average yearly income for people working in the mining, quarrying, and oil and gas extraction industry;the middle income for people working in the mining, quarrying, and oil and gas extraction industry;what is the median income for people working in the mining, quarrying, and oil and gas extraction industry?" -dc/b6h698m2vmdcc,"Population: Primary School, White Alone Not Hispanic or Latino;White And Non-Hispanic Population In Primary School;the number of white and non-hispanic students in primary school;the percentage of white and non-hispanic students in primary school;the proportion of white and non-hispanic students in primary school;the share of white and non-hispanic students in primary school" -dc/b6z2v4t8cvcd5,"Revenue of Establishment: Wind Electric Power Generation (NAICS/221115), With Payroll;Revenue of Wind Electric Power Generation Industries With Payroll" -dc/b9plt3q5k6gyb,"Population Of Car Truck or Van Drove In Natural Resources, Construction And Maintenance Occupations;Population: Car Truck or Van Drove Alone, Natural Resources, Construction, And Maintenance Occupations;how many people in natural resources, construction, and maintenance occupations drive cars, trucks, or vans?;what is the number of people in natural resources, construction, and maintenance occupations who drive cars, trucks, or vans?;what is the proportion of people in natural resources, construction, and maintenance occupations who drive cars, trucks, or vans?;what percentage of people in natural resources, construction, and maintenance occupations drive cars, trucks, or vans?" -dc/bb2jpneq7n71f,"Foreign-Born Population With Other Languages;Population: Other Languages, Foreign Born;people who were born in other countries and speak other languages" -dc/bb4peddkgmqe7,Aids for transportation workers;Assistance for transportation workers;Help for transportation workers;Number of Support Activities for Transportation Workers;Number of support activities for transportation workers;Population of Person: Support Activities for Transportation (NAICS/488);Services for transportation workers;Support for transportation workers;how many people are employed in transportation support?;how many people support transportation workers?;how many people work in support roles for transportation?;how many people work in transportation-related support roles?;number of support activities for transportation workers -dc/bceet4dh33ev,The total amount of money paid to people who work in support roles for transportation workers;The total amount of money paid to support workers in the transportation industry;Total Wages Paid to Support Activities for Transportation Workers;Total wages paid to support activities for transportation workers;Wages Total of Person: Support Activities for Transportation (NAICS/488);Wages paid to support transportation workers;total wages of support activities for transportation workers;wages paid to support activities related to transportation;wages paid to support the transportation industry;wages paid to support the work of transportation workers;wages paid to support transportation workers -dc/bf85zc6wypd2h,"Population: Primary School, White Alone;White Population in Primary School;the number of white students in primary school;the percentage of white students in primary school;the proportion of white students in primary school;the share of white students in primary school" -dc/bhc16vntggjyd,"Population Using Taxicab Motorcycle Bicycles in Military-Specific Occupations;Population: Taxicab Motorcycle Bicycle or Other Means, Military Specific Occupations;how many people in military occupations use taxicabs, motorcycles, and bicycles?;how many people use taxicabs, motorcycles, and bicycles in military occupations?;what is the number of people who use taxicabs, motorcycles, and bicycles in military occupations?;what is the population of people who use taxicabs, motorcycles, and bicycles in military occupations?" -dc/br6elkd593zs1,"Mining, Quarrying, And Oil And Gas Extraction Industries" -dc/bre4whrdn7pt7,"Population Working in Service Occupations;Population: Walked, Service Occupations;the number of people who work in service jobs;the percentage of the workforce employed in service occupations;the proportion of the population working in service jobs;the proportion of workers in the service industry" -dc/bwr1l8y9we9k7,How many people work in transit and ground passenger transportation?;Number of Transit and Ground Passenger Transportation Workers;Number of people who work in transit and ground passenger transportation;Number of transit and ground passenger transportation workers;Population of Person: Transit And Ground Passenger Transportation (NAICS/485);The number of people who work in transit and ground passenger transportation;how many people are employed in the transit and ground passenger transportation industry?;how many people work in transit and ground passenger transportation?;number of transit and ground passenger transportation workers;what is the number of people employed in transit and ground passenger transportation?;what is the number of people working in the transit and ground passenger transportation sector? -dc/c0wxmt45gffxc,Number of general merchandise store employees;Number of people employed in general merchandise stores;Number of people who work in general merchandise stores;Number of workers in general merchandise stores;Number of workers in the general merchandise store industry;Population of People Working in General Merchandise Stores;Population of Person: General Merchandise Stores (NAICS/452);Population of people working in general merchandise stores;number of general merchandise store employees;number of general merchandise stores workers;number of people employed in general merchandise stores;number of people who work in general merchandise stores;number of people working in general merchandise stores -dc/c17kzp0zrfkq9,"Incarcerated Female Population Aged 0 to 17 Years;Population (Measured Based on Custody): 0 - 17 Years, Female, Incarcerated" -dc/c57vzg7l74577,"Native Hawaiian or Other Pacific Islander Population in Middle School;Population: Middle School, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander students in middle school;the number of native hawaiian or other pacific islander students in middle school;the percentage of native hawaiian or other pacific islander students in middle school;the proportion of native hawaiian or other pacific islander students in middle school" -dc/c58mvty4nhxdb,About: Mean Cohort Scale Achievement of Student;Average student achievement;How well students in a particular group are doing overall;Mean Cohort Scale Achievement of Students;Students' average grade on a standardized test;The average achievement of students in a cohort;average student achievement;best school performance;best schools in;highest quality education;how good are students doing on their education;how students are meeting academic standards;how students are performing academically;student educational output measurement;student test performance;the academic progress of students;the level of student achievement -dc/c684e489pk3t7,Annual Receipt of Coal in Electric Power;Annual Receipt of Coal: Electric Power -dc/c6n2z7vh9sy31,"Other Race Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten, Some Other Race Alone;students of other races enrolled in kindergarten;what is the percentage of kindergarteners who are from minority groups?;what is the percentage of kindergarteners who are not of the majority race?;what percentage of kindergarteners are from other races?" -dc/c70q24p6xgk33,"Population: Separated, Born in State of Residence;Separated Population Born in the State of Residence" -dc/c75qlm98pmcb2,"Population: Middle School, White Alone Not Hispanic or Latino;White and Non-Hispanic Population in Middle School;number of white and non-hispanic students in middle school;percentage of white and non-hispanic students in middle school;proportion of white and non-hispanic students in middle school;share of white and non-hispanic students in middle school" -dc/c9cl49nnrv5x4,"Count of Housing Unit: Without Mortgage, 1,500 - 1,999 USD;Housing Units Without Mortgage with a 1,500 to 1,999 USD" -dc/cb1jtf8j55xx9,"Population (Measured Based on Jurisdiction): Male, Incarcerated, Unsentenced;Unsentenced Incarcerated Male Population;number of unsentenced male inmates by jurisdiction;unsentenced male prisoners by jurisdiction" -dc/cc8wk2n0ywd9,"Hispanics Enrolled in High School;Population: High School, Hispanic or Latino;high school enrollment of hispanics;hispanics in high school;the number of hispanics enrolled in high school;the percentage of hispanics enrolled in high school" -dc/ck1emtds61j27,"Incarcerated Hispanic Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, Hispanic or Latino;hispanic men in jail;hispanic men in prison;hispanic men in the criminal justice system;hispanic men who are incarcerated" -dc/ck1ksqd8rgps6,Annual Wages Of Heavy and Civil Engineering Construction Establishments;Wages Annual of Establishment: Heavy And Civil Engineering Construction (NAICS/237) -dc/cs8fvwkmpmlpg,"Population Worked At Home in Production, Transportation, And Material Moving Occupations;Population: Worked At Home, Production, Transportation, And Material Moving Occupations;the number of people who had jobs in home-based, production, transportation, and material moving occupations;the number of people who were employed in home-based, production, transportation, and material moving occupations;the number of people who worked at home, in production, transportation, and material moving occupations;the number of people who worked in home-based, production, transportation, and material moving industries" -dc/dbe0drezxrpv6,Population: 5 - 9 Minute -dc/dchdrg93spxkf,How much money do general merchandise store workers make?;The sum of the earnings of all general merchandise store workers;The total amount of money earned by workers in general merchandise stores;The total amount of money paid to general merchandise store workers;Total Wages for People Working in General Merchandise Stores;Total wages for people working in general merchandise stores;Wages Total of Person: General Merchandise Stores (NAICS/452);how much do people working in general merchandise stores make?;total wages of general merchandise stores workers;what are the wages for people working in general merchandise stores?;what is the average salary for people working in general merchandise stores?;what is the pay for people working in general merchandise stores? -dc/dj7cvhr91sff5,"Divorced Population of Natives Born Outside The United States;Population: Divorced, Native Born Outside The United States" -dc/dj7khl7q78412,"Population Worked in Car Truck, Production, Transportation, And Material Moving Occupations;Population: Car Truck or Van Carpooled, Production, Transportation, And Material Moving Occupations;carpooling is most common in the production, transportation, and material moving occupations;more people in the production, transportation, and material moving occupations carpool than in any other occupation;the number of people who carpool in cars, trucks, or vans is highest in the production, transportation, and material moving occupations;the production, transportation, and material moving occupations have the highest rate of carpooling" -dc/dn2h9yfcgbkg2,"Population in Service Occupations Who Worked At Home;Population: Worked At Home, Service Occupations;number of people in service occupations who work from home;number of people in service occupations who worked from home;number of people working from home in service occupations;percentage of people in service occupations who work from home" -dc/drvcnjld04b06,"Divorced Population Born in The State of Residence;Population: Divorced, Born in State of Residence;number of divorced people who were born in the state they currently live in;percentage of divorced people who were born in the state they currently live in;population of divorced people who were born in the state they currently reside in;proportion of divorced people who were born in the state they currently live in" -dc/dxcbt2knrsgg9,Earnings of those employed in retail trade;How much money workers in the retail trade make;Income for workers in the retail trade sector;The amount of money that retail trade workers earn in total;The total amount of money earned by retail trade workers;The total amount of money paid to retail trade workers;The total amount of money that retail trade workers earn;Total Wages Paid to Retail Trade Workers;Total wages paid to retail trade workers;Wages Total of Person: Retail Trade (NAICS/44-45);Wages for employees in the retail trade field;the total amount of money paid to retail trade workers;the total compensation paid to retail trade workers;the total income of retail trade workers;the total pay of retail trade workers;total wages of retail trade workers -dc/dxq7vxxwvp7pg,"Incarcerated American Indian or Alaska Native Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, American Indian or Alaska Native Alone;the number of american indian or alaska native men who are in prison or jail;the number of american indian or alaska native men who have been incarcerated at some point in their lives;the percentage of american indian or alaska native men who are in prison or jail;the percentage of american indian or alaska native men who have been incarcerated at some point in their lives" -dc/dxsxcw009pdm4,"Native Hawaiian or Other Pacific Islander Population in HighSchool;Population: High School, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander students in high school;the number of native hawaiian or other pacific islander students in high school;the percentage of native hawaiian or other pacific islander students in high school;the proportion of native hawaiian or other pacific islander students in high school" -dc/dy2k68mmhenfd,Number of Textile Product Mills Workers;Number of textile product mills workers;Population of Person: Textile Product Mills (NAICS/314);number of textile product mills workers;the number of people who work in the production of textiles;the number of people who work in the textile manufacturing industry;the number of people who work in the textile production industry -dc/dyhxtqe2pxhl5,"Foreign Born Population Without Income;Population: No Income, Foreign Born;foreign-born individuals with no income;foreign-born people with no income;people who were born in another country and are unemployed;people who were born in another country and do not have an income" -dc/dzfdgrtcv5h7,"Population: High School, White Alone Not Hispanic or Latino;White Non-Hispanic Population in High School;high school students who are white and non-hispanic;the number of white non-hispanic students in high school;the percentage of white non-hispanic students in high school;white non-hispanic students in high school" -dc/e27c5t4tbplg,"Population Production Taxicab Motorcycle Bicycle or Other Means of Transportation;Population: Taxicab Motorcycle Bicycle or Other Means, Production, Transportation, And Material Moving Occupations;other ways to say ""population production taxicab motorcycle bicycle or other means of transportation"" include:" -dc/e2szvml8jkld8,"African American Population in Middle School;Population: Middle School, Black or African American Alone;the demographics of african american students in middle school;the number of african american students in middle school;the percentage of african american students in middle school;the proportion of african american students in middle school" -dc/e2zdnwjjhyj36,"How many different sports are there;How many sports are there;How many sports are there?;Number of Sports, Hobby, Music Instrument, and Book Stores Workers;Number of sports, hobby, music instrument, and book stores workers;Population of Person: Sports, Hobby, Music Instrument, Book Stores (NAICS/451);What are common hobbies;What is the number of sports;how many people are employed in sports, hobbies, music instruments, and bookstores?;how many people work in sports, hobbies, music instruments, and bookstores?;number of sports, hobby, music instrument, book stores workers;what is the number of people who work in sports, hobbies, music instruments, and bookstores?;what is the workforce of sports, hobbies, music instruments, and bookstores?" -dc/e3jblh1b616b5,"Population (Measured Based on Jurisdiction): Incarcerated, Unsentenced;Unsentenced and Incarcerated People;people who are in jail but haven't been convicted of a crime;people who are in jail or prison without having been convicted of a crime;people who are in pretrial detention;people who are in prison but haven't been sentenced" -dc/e4y4hqq6mjfsh,"African American Population in Primary Schools;Population: Primary School, Black or African American Alone;the number of african american children in primary school;the number of african american students in elementary schools;the percentage of african american students in primary education;the proportion of african american students in k-5 schools" -dc/e718gzyclkcq8,"Incarcerated Male Population Employed in Federally Operated;Population (Measured Based on Jurisdiction): Federally Operated, Male, Incarcerated" -dc/eg6rrdr1tkf76,"Asian Female Population With Bachelor's Degree or Higher;Population: Bachelors Degree or Higher, Female, Asian Alone;the number of asian females with a bachelor's degree or higher;the percentage of asian females with a bachelor's degree or higher;the proportion of asian females with a bachelor's degree or higher;the share of asian females with a bachelor's degree or higher" -dc/eh7s78v8s14l9,1 number of people employed in the chemical manufacturing industry;2 size of the workforce in the chemical manufacturing industry;3 number of people working in chemical manufacturing;4 number of people employed in the chemical industry;Population of People Working in the Chemical Manufacturing Industry;Population of Person: Chemical Manufacturing (NAICS/325);Population of people working in the chemical manufacturing industry;number of chemical manufacturing workers;the number of chemical manufacturing workers;the number of people who are employed in chemical manufacturing;the number of people who are employed in the chemical manufacturing sector;the number of people who work in chemical manufacturing;the number of people who work in the chemical manufacturing industry -dc/ejpm616jd1pq1,"Count of Housing Unit: With Mortgage, 2,000 - 2,999 USD" -dc/ekyc06n24txh2,"Population: Native, White Alone Not Hispanic or Latino;White Native Non Hispanic Population;non-hispanic white population;population of white people who are not hispanic;white population, non-hispanic;white, non-hispanic population" -dc/env3140jqssg8,"Population: Primary School, Some Other Race Alone;Some Other Race Population in Primary School;what is the diversity of primary school students?;what is the percentage of students in primary school who are not of the majority race?;what is the racial makeup of primary school students?;what percentage of primary school students are from minority groups?" -dc/ep052e5d1p2t4,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Male, Incarcerated;Deaths of Incarcerated Male Population Caused by Intentional Self-Harm" -dc/eptfljlz7bgbg,Count of Establishment: Nuclear Electric Power Generation (NAICS/221113);Nuclear Electric Power Generation Industries -dc/epw58ne8mytn5,"Female Population Of Some Other Race With College Degrees;Population: Some College or Associates Degree, Female, Some Other Race Alone;the number of females of other races with college degrees;the percentage of females of other races with college degrees;the proportion of females of other races with college degrees;the share of females of other races with college degrees" -dc/evcytmdmc9xgd,"Count of Establishment: Privately Owned, Wind Electric Power Generation (NAICS/221115);Privately Owned Wind Electric Power Generation" -dc/exr9t81en1h34,Population in 25 - 29 Minute;Population: 25 - 29 Minute -dc/fcn7wgvcwtsj2,1 How much do warehousing and storage workers get paid?;The amount of money that warehousing and storage workers earn in total;The total amount of money earned by warehousing and storage workers;The total amount of money paid to warehousing and storage workers;Total Wages Paid to Warehousing and Storage Workers;Total wages paid to warehousing and storage workers;Wages Total of Person: Warehousing And Storage (NAICS/493);the total amount of money paid to warehousing and storage workers;the total compensation paid to warehousing and storage workers;the total earnings of warehousing and storage workers;the total pay of warehousing and storage workers;total wages of warehousing and storage workers -dc/fetj39pqls2df,The total amount of money earned by leather and allied product manufacturing workers;The total amount of money paid to leather and allied product manufacturing workers;The total amount of money paid to workers in the leather and allied product manufacturing industry;Total Wages for People Working in the Leather and Allied Product Manufacturing Industry;Total wages for people working in the leather and allied product manufacturing industry;Wages Total of Person: Leather And Allied Product Manufacturing (NAICS/316);how much do people working in the leather and allied product manufacturing industry make?;total wages of leather and allied product manufacturing workers;what are the earnings for people working in the leather and allied product manufacturing industry?;what are the salaries for people working in the leather and allied product manufacturing industry?;what are the wages for people working in the leather and allied product manufacturing industry? -dc/fgt7thnws9vx9,"Population Walking to Production, Transportation, And Material Moving Occupations;Population: Walked, Production, Transportation, And Material Moving Occupations;the number of people who walk to work in production, transportation, and material moving occupations;the percentage of people who walk to work in production, transportation, and material moving occupations;the proportion of people who walk to work in production, transportation, and material moving occupations;the share of people who walk to work in production, transportation, and material moving occupations" -dc/fh4td3znm3l4g,"American Indian or Alaska Native Population in HighSchool;Population: High School, American Indian or Alaska Native Alone;number of american indian or alaska native students in high school;percentage of american indian or alaska native students in high school;proportion of american indian or alaska native students in high school;share of american indian or alaska native students in high school" -dc/fmx7fkrpd3jl2,"Native Hawaiian or Other Pacific Islander Graduates;Population: Graduate or Professional School, Native Hawaiian or Other Pacific Islander Alone;graduates of native hawaiian or other pacific islander descent;graduates who are members of native hawaiian or other pacific islander communities;graduates who are native hawaiian or other pacific islander;graduates who identify as native hawaiian or other pacific islander" -dc/fs27m9j4vpvc7,"Incarcerated American Indian or Alaska Native Population;Population (Measured Based on Jurisdiction): Incarcerated, American Indian or Alaska Native Alone;american indian or alaska native incarceration rate by jurisdiction;number of american indians and alaska natives incarcerated per 100,000 people by jurisdiction;percentage of american indians and alaska natives incarcerated by jurisdiction;rate of incarceration of american indians and alaska natives by jurisdiction" -dc/fyc3yvjy0xw6g,Population: 5 Minute or Less -dc/g0yn22m8r3639,"800 USD or Less Housing Units With Mortgage;Count of Housing Unit: With Mortgage, 800 USD or Less" -dc/g4fthg3t3y5td,"Asian Population In Middle School;Population: Middle School, Asian Alone;the demographics of asian students in middle school;the number of asian students in middle school;the percentage of asian students in middle school;the proportion of asian students in middle school" -dc/g8537zqf45wl3,"Multiracial Population Enrolled In High School;Population: High School, Two or More Races;high school enrollment of multiracial students;number of multiracial students enrolled in high school;percentage of multiracial students enrolled in high school;proportion of multiracial students enrolled in high school" -dc/g8kg52zcxzw9f,"Female Population Enrolled in Kindergarten;Population: Female, Enrolled in Kindergarten" -dc/gb0b3cwxyfsh9,"Count of Mortality Event (Measured Based on Jurisdiction): Female, Incarcerated;Deaths of Incarcerated Female Population;number of deaths among incarcerated females;number of incarcerated females who have died" -dc/gr3zem8shyhbf,"Population: Enrolled in Kindergarten, White Alone;Whites Enrolled in Kindergarten;white children in kindergarten;white kids in kindergarten;white pupils in kindergarten;white students in kindergarten" -dc/gvnh5cpl9h1rf,"1 population by income and foreign born status;3 population by income and country of birth;4 population by income and immigrant status;Foreign Born Population with Income;Population: With Income, Foreign Born;population by income and foreign born status" -dc/h1jy2glt2m7e6,1 How many people work in water transportation?;1 how many people work in water transportation?;2 what is the number of water transportation workers?;3 what is the workforce in water transportation?;4 how many people are employed in water transportation?;How many people work in water transportation?;Number of Water Transportation Workers;Number of water transportation workers;Population of Person: Water Transportation (NAICS/483);number of water transportation workers;the number of people who work in water transportation -dc/h34ge8t21h9m1,"Count of Housing Unit: With Mortgage, 800 - 1,499 USD" -dc/h77bt8rxcjve3,How much do truck drivers make?;The amount of money that truck transportation workers earn in total;The total amount of money that truck transportation workers are paid;The total amount of money that truck transportation workers earn;Total Wages Paid to Truck Transportation Workers;Total wages paid to truck transportation workers;Wages Total of Person: Truck Transportation (NAICS/484);the total amount of money paid to truck transportation workers;the total compensation of truck transportation workers;the total earnings of truck transportation workers;the total income of truck transportation workers;total wages of truck transportation workers -dc/h7ft916g93ys2,Population: 90 Minute or More -dc/h8p2m5rx43j3b,"Population: Graduate or Professional School, White Alone;White Population in Graduate or Professional Schools;the number of white students in graduate or professional schools;the percentage of white students in graduate or professional schools;the proportion of white students in graduate or professional schools;the share of white students in graduate or professional schools" -dc/hbkh95kc7pkb6,Population Worked in Public Transportation Excluding Taxicab;Population: Public Transportation Excluding Taxicab;how many people use public transportation other than taxis;number of public transportation users excluding taxis;public transportation ridership excluding taxis;public transportation users excluding taxis -dc/hg63vjs5wes3b,"Native Population Speaking Other Languages;Population: Other Languages, Native" -dc/hlxvn1t8b9bhh,How many farmers and cattle ranchers are there?;Number of Farmers and Cattle Ranchers;Population of Person: Cattle Ranching And Farming;The number of farmers and cattle ranchers;agriculture workers;cattle ranchers;farmers;how many farmers and cattle ranchers are there?;number of agricultural workers;number of agriculture workers;number of cattle ranchers;number of farmers;number of farmers and cattle ranchers;number of workers in agriculture;people who are farming and cattle ranching;what is the agricultural workforce?;what is the number of farmers and cattle ranchers?;what is the number of people employed in farming and ranching?;workers in agriculture -dc/hxsdmw575en24,Incarcerated Population;Population (Measured Based on Jurisdiction): Incarcerated;convicts who have jobs;people who are incarcerated;people who are locked up and have jobs;prisoners who work -dc/hyfn2tlyz48lb,"Multiracial Population With Bachelor's Degrees or Higher;Population: Bachelors Degree or Higher, Female, Two or More Races;people of multiple races with bachelor's degrees or higher;people who identify as multiracial and have a bachelor's degree or higher;the number of people who identify as multiracial and have a bachelor's degree or higher;the percentage of people who identify as multiracial and have a bachelor's degree or higher" -dc/j5fv028n7nhe4,Wages Annual of Establishment: Residential Building Construction (NAICS/2361);Wages of People in Residential Building Construction Industries -dc/j7lkt2ww5qsn5,"Population in Public Transportation Excluding Taxicab, Production And Material Moving Occupations;Population: Public Transportation Excluding Taxicab, Production, Transportation, And Material Moving Occupations;number of people working in public transportation excluding taxicab, production, and material moving occupations;number of public transportation workers excluding taxicab, production, and material moving occupations;public transportation workers excluding taxicab, production, and material moving occupations;public transportation workforce excluding taxicab, production, and material moving occupations" -dc/j7pej9wer7lkd,"Population: Car Truck or Van Carpooled, Natural Resources, Construction, And Maintenance Occupations;Workers in Car Trucks or Van Carpooled With Natural Resources, Construction, And Maintenance Occupations;car, truck, or van commuters in natural resources, construction, and maintenance occupations;natural resources, construction, and maintenance workers who carpool in cars, trucks, or vans;workers in natural resources, construction, and maintenance occupations who share rides in cars, trucks, or vans;workers in natural resources, construction, and maintenance occupations who travel together in cars, trucks, or vans" -dc/jbv3zc0ezvcyc,"Other Race Population Enrolled in School;Population: Some Other Race Alone, Enrolled in School;number of students enrolled in school who identify as other race;percentage of students enrolled in school who identify as other race;population of students enrolled in school who identify as other race;students enrolled in school who identify as other race" -dc/jceld0k7ysbw3,"Foreign-Born Separated Population;Population: Separated, Foreign Born" -dc/jefhcs9qxc971,Average earnings of those employed in educational services;How much money on average workers in the education field make;Median Income (Real Individual Earnings Before Deductions): Educational Services (NAICS/61);Median Income for People Working in the Educational Services Industry;Median income for people working in the educational services industry;Middle percentile income for workers in the educational services sector;What's the typical salary for people working in the education field.;how much money do people in the educational services industry make on average?;median income of educational services workers;what is the median income for educational services workers;what is the median income for people working in the educational services industry?;what is the typical income for people working in the educational services industry? -dc/jh0nks36n1jc1,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Female, Incarcerated;Deaths of Incarcerated Female Population Due to Judicial Execution;female prisoners executed by the us;number of female prisoners executed in the united states;number of women executed in the us;the number of incarcerated women who have been executed by the state" -dc/jhjdplbeg26k1,"Multiracial Population In Primary Schools;Population: Primary School, Two or More Races;the diversity of students in primary schools;the number of students in primary schools who identify as multiracial;the percentage of students in primary schools who identify as multiracial;the proportion of students in primary schools who identify as multiracial" -dc/jngmh68j9z4q,The total amount of money earned by food manufacturing workers;The total amount of money paid to food manufacturing workers;The total amount of money that food manufacturing workers earn;Total Wages for People Working in the Food Manufacturing Industry;Total wages for people working in the food manufacturing industry;Wages Total of Person: Food Manufacturing (NAICS/311);how much do people working in the food manufacturing industry make?;total wages of food manufacturing workers;what are the average wages for people working in the food manufacturing industry?;what are the wages for people working in the food manufacturing industry?;what is the average salary for people working in the food manufacturing industry? -dc/jszfr5wd4f7pb,"Population Using Car Truck or Van Driving in Management Business Science And Arts Occupations;Population: Car Truck or Van Drove Alone, Management, Business, Science, And Arts Occupations;the number of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the percentage of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the proportion of people who drive cars, trucks, or vans in management, business, science, and arts occupations;the share of people who drive cars, trucks, or vans in management, business, science, and arts occupations" -dc/jte92xq8qsgtd,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Incarcerated;Deaths of Incarcerated Population Caused by Intentional Self-Harm;number of deaths due to intentional self-harm (suicide) among incarcerated people;number of incarcerated people who died by suicide;number of people who died by suicide while incarcerated;number of suicides among incarcerated people" -dc/jtf63bh66k41g,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Incarcerated;Deaths of Incarcerated Population Caused by Assault;number of deaths and incarcerations due to assault (homicide), by jurisdiction;number of deaths from assault (homicide) and incarceration, by jurisdiction;number of people who died from assault (homicide) or were incarcerated, by jurisdiction;number of people who died or were incarcerated due to assault (homicide), by jurisdiction" -dc/jxd329x7k27fb,"Native White Population;Population: Native, White Alone;white people in the united states;white people in the us" -dc/jxsx1rb4xg84f,"Population in Sales and Office Occupations who Use Car Trucks;Population: Car Truck or Van Carpooled, Sales And Office Occupations;the number of people in sales and office occupations who use car trucks;the percentage of people in sales and office occupations who use car trucks;the proportion of people in sales and office occupations who use car trucks;the share of people in sales and office occupations who use car trucks" -dc/k33ngtzpqxql6,"Population With Car Truck or Van Drove Service Occupations;Population: Car Truck or Van Drove Alone, Service Occupations;number of people in service occupations who drive cars, trucks, or vans;number of people who drive cars, trucks, or vans as part of their job;number of people who drive cars, trucks, or vans for work;number of people who drive cars, trucks, or vans in service occupations" -dc/k3hehk50ch012,1 how many people work in the trucking industry?;2 what is the number of truck drivers in the united states?;3 how many people are employed in truck transportation?;5 how many people work as truck drivers?;Number of Truck Transportation Workers;Number of truck transportation workers;Population of Person: Truck Transportation (NAICS/484);number of people who drive trucks;number of people who work in truck transportation;number of truck drivers;number of truck operators;number of truck transportation employees;number of truck transportation workers -dc/k4grzkjq201xh,"1 What do sports, hobby, music instrument, and bookstore workers earn in total?;How much do sports, hobby, music instrument, and book store workers earn in total?;The combined earnings of sports, hobby, music instrument, and bookstore workers;The total amount of money earned by sports, hobby, music instrument, and bookstore workers;Total Wages Paid to Sports, Hobby, Music Instrument, and Book Stores Workers;Total wages paid to sports, hobby, music instrument, and book stores workers;Wages Total of Person: Sports, Hobby, Music Instrument, Book Stores (NAICS/451);the total amount of money earned by workers in sports, hobby, music instrument, and book stores;the total amount of money paid to workers in sports, hobby, music instrument, and book stores;the total compensation paid to workers in sports, hobby, music instrument, and book stores;the total wages paid to workers in the sports, hobby, music instrument, and book stores industries;total wages of sports, hobby, music instrument, book stores workers" -dc/kcns4cvt14zx2,Educational Services Establishments -dc/kfr6chpkw90e3,Population: 60 - 89 Minute -dc/kl7t3p3de7tlh,The total amount of money paid to paper manufacturing workers;The total amount of money that paper manufacturing workers earn;Total Wages for People Working in the Paper Manufacturing Industry;Total wages for people working in the paper manufacturing industry;Wages Total of Person: Paper Manufacturing (NAICS/322);how much money do people working in the paper manufacturing industry make?;total wages of paper manufacturing workers;what are the average wages for people working in the paper manufacturing industry?;what are the salaries for people working in the paper manufacturing industry?;what is the pay scale for people working in the paper manufacturing industry? -dc/km8en9ep7bwh6,"Asians Enrolled in School;Population: Asian Alone, Enrolled in School;asian students enrolled in school;asian students in school;the number of asian students enrolled in school;the percentage of asian students enrolled in school" -dc/knhvyxwsd3y6h,"Average salary for workers in the other services field;Income in the middle for the other services sector;Median Income (Real Individual Earnings Before Deductions): Other Services, Except Public Administration (NAICS/81);Median Income for People Working in Other Services, Except Public Administration;Median income for people working in other services, except public administration;Median pay for other services industry;The median income of workers in other services, excluding public administration;Typical earnings for other services workers;median income of workers in other services except public administration;the 50th percentile for people working in other services, excluding public administration;the amount of money that most people working in other services, excluding public administration, earn;the average income for service workers in other sectors;the median pay for people in service jobs other than public administration;the median wage for people working in other services, excluding public administration;the middle income for people working in other services, excluding public administration;the middle income for service workers in other sectors;what people in non-public-sector service jobs earn on average" -dc/kpcfmb6lp3zpd,"Native Hawaiian or Other Pacific Islander Female Population with Some Colleges or Associate's Degrees;Population: Some College or Associates Degree, Female, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander women who have some college education;native hawaiian or other pacific islander women who have some college experience;native hawaiian or other pacific islander women who have some college or associate's degrees;native hawaiian or other pacific islander women with some college or associate's degrees" -dc/ksynl8pj8w5t5,How much do rail transportation workers earn?;How much money do rail transportation workers make?;The amount of money that rail transportation workers earn in total;The total amount of money earned by rail transportation workers;The total amount of money paid to rail transportation workers;Total Wages Paid to Rail Transportation Workers;Total wages paid to rail transportation workers;Wages Total of Person: Rail Transportation (NAICS/482);the total amount of money paid to rail transportation workers;the total compensation paid to rail transportation workers;the total earnings of rail transportation workers;the total income of rail transportation workers;total wages of rail transportation workers -dc/kt900ezddrf79,"Population Commuting by Car Truck or Van in Sales And Office Occupations;Population: Car Truck or Van Drove Alone, Sales And Office Occupations;the number of people who commute by car, truck, or van in sales and office occupations;the percentage of people who commute by car, truck, or van in sales and office occupations;the proportion of people who commute by car, truck, or van in sales and office occupations;the share of people who commute by car, truck, or van in sales and office occupations" -dc/ktf5098lxb8sc,"Native And African American Population;Population: Native, Black or African American Alone;african americans and native americans;black and indigenous people;black and native american people;people of african descent and native american descent" -dc/ktmr6ngnsqxmf,"Revenue of Establishment: Nuclear Electric Power Generation (NAICS/221113), With Payroll;Revenue of Nuclear Electric Power Generation Establishments with Payroll" -dc/kz9r60zp6s32b,"Multiracial Graduates;Population: Graduate or Professional School, Two or More Races;graduates who identify as more than one race" -dc/l2pbn6flhhmq,"Population: Separated, Native Born Outside The United States;Separated Native Population Born Outside The US" -dc/lk9fd4v63ke94,"Incarcerated Multiracial Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, Two or More Races;incarcerated men who are of mixed race;male prisoners of mixed race;men of mixed race who are incarcerated;multiracial men in prison" -dc/lnp5g90fwpct8,"Female Population Incarcerated;Population (Measured Based on Jurisdiction): Female, Incarcerated;the female prison population;the incarcerated female population;the number of incarcerated women;women in jail" -dc/lsf00jqxjp9r8,Biomass Electric Power Generation Establishments;Count of Establishment: Biomass Electric Power Generation (NAICS/221117) -dc/ltwqwtxcq9l23,Count of Establishment: Heavy And Civil Engineering Construction (NAICS/237);Heavy And Civil Engineering Construction Establishments -dc/lygznlxpkj318,The amount of money that apparel manufacturing workers earn in total;The total amount of money paid to apparel manufacturing workers;Total Wages Earned by People Working in the Apparel Manufacturing Industry;Total wages earned by people working in the apparel manufacturing industry;Wages Total of Person: Apparel Manufacturing (NAICS/315);the total amount of money earned by people working in the apparel manufacturing industry;the total compensation of people working in the apparel manufacturing industry;the total earnings of people working in the apparel manufacturing industry;the total income of people working in the apparel manufacturing industry;total wages of apparel manufacturing workers -dc/m07n4w3ywjzs3,Average earnings of those employed in construction;How much money on average workers in construction make;Median Income (Real Individual Earnings Before Deductions): Construction (NAICS/23);Median Income for People Working in the Construction Industry;Median income for people working in the construction industry;Middle percentile income for workers in the construction sector;What's the typical salary for people working in construction.;how much money do construction workers make on average;median income of construction workers;what is the median income for a construction worker;what's the average salary for construction workers?;what's the median income for a construction worker;what's the pay for construction workers?;what's the typical income for construction workers?;what's the typical salary for construction workers? -dc/m54m06x6r5xm9,"Population with Car Truck or Van Carpooled in Military Specific Occupation Industries;Population: Car Truck or Van Carpooled, Military Specific Occupations;number of people who carpool in military-specific occupation industries;number of people who carpool in military-specific occupations;number of people who carpool to work in military-specific occupations;percentage of people who carpool in military-specific occupation industries" -dc/m5ltqeg1src,"Female Population Who are Incarcerated and Unsentenced;Population (Measured Based on Jurisdiction): Female, Incarcerated, Unsentenced;female prisoners who have not been sentenced;unsentenced female prisoners;women who are incarcerated but have not been found guilty;women who are incarcerated but not yet sentenced" -dc/m60n94sqql2d3,"Count of Housing Unit: Without Mortgage, 3,000 USD or More;Housing Units Without a Mortgage of 3,000 USD or More" -dc/m615rq99fwf2c,"Population: Car Truck or Van Carpooled, Service Occupations;Service Occupation Workers Who Carpool;people who work in service jobs and carpool;service workers who carpool;service workers who share rides;workers in the service industry who carpool" -dc/mbn7jcx896cd8,Count of Establishment: Hydroelectric Power Generation (NAICS/221111);Hydroelectric Power Generation -dc/mfz54y2skbpeh,"Average earnings of those employed in entertainment and recreation;How much money on average workers in the arts make;Median Income (Real Individual Earnings Before Deductions): Arts, Entertainment, And Recreation (NAICS/71);Median Income for People Working in the Arts, Entertainment, and Recreation Industry;Median income for people working in the arts, entertainment, and recreation industry;Middle percentile Income for workers in the arts, entertainment, and recreation sector;The average income of people who work in the arts, entertainment, and recreation industries;The average salary of people who work in arts, entertainment, and recreation;The average yearly income of people who work in the arts, entertainment, and recreation industries;What's the typical salary for people working in the arts, entertainment, and recreation.;how much money do people in the arts, entertainment, and recreation industry make?;median income of arts, entertainment, and recreation workers;what is the average salary for people in the arts, entertainment, and recreation industry?;what is the median income for people in the arts, entertainment, and recreation industry?;what is the typical income for people in the arts, entertainment, and recreation industry?" -dc/mjqlm4q2efmvh,"Count of Mortality Event (Measured Based on Jurisdiction): Illness or Natural Cause, Female, Incarcerated;Deaths of Incarcerated Female Population Due to Illness or Natural Cause;female inmates who died of illness or natural causes;female prisoners who died of illness or natural causes;incarcerated women who died of illness or natural causes;women in prison who died of illness or natural causes" -dc/mlf5e4m68h2k7,"Professional, Scientific and Technical Services" -dc/mqxdr821c7kw3,"Female American Indian or Alaska Native Population With Some College or Associate's Degree;Population: Some College or Associates Degree, Female, American Indian or Alaska Native Alone;the number of american indian or alaska native women who have some college or an associate's degree;the percentage of american indian or alaska native women who have some college or an associate's degree;the proportion of american indian or alaska native women who have some college or an associate's degree;the share of american indian or alaska native women who have some college or an associate's degree" -dc/mr1f76pb6yq98,"Population: White Alone, Not Enrolled in School;White Population Who Have Not Enrolled in School;the number of white people who are not enrolled in school;the percentage of white people who are not enrolled in school;the proportion of white people who are not enrolled in school;white people who are not enrolled in school" -dc/msz3yy4p50yyf,"Annual Wages of Workers in Research And Development in The Physical Engineering And Life Sciences;Wages Annual of Establishment: Research And Development in The Physical, Engineering, And Life Sciences (NAICS/54171)" -dc/mwbmxs2q9zcgd,"American Indian or Alaska Native Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years, American Indian or Alaska Native Alone;american indian or alaska native student enrollment in college undergraduate programs;number of american indian or alaska native students enrolled in college undergraduate programs;percentage of american indian or alaska native students enrolled in college undergraduate programs;proportion of american indian or alaska native students enrolled in college undergraduate programs" -dc/mwcnlh5bmdk63,Count of Establishment: Electric Power Transmission And Distribution (NAICS/22112);Electric Power Transmission And Distribution Establishments -dc/n0m3e2r3pxb21,How much do pipeline transportation workers make?;How much money do pipeline transportation workers make?;The amount of money that pipeline transportation workers earn in total;The total amount of money that pipeline transportation workers earn;Total Wages for People Working in Pipeline Transportation;Total wages for people working in pipeline transportation;Wages Total of Person: Pipeline Transportation (NAICS/486);how much money do pipeline workers make?;total wages of pipeline transportation workers;what are the wages for pipeline workers?;what do pipeline workers make?;what is the average salary for a pipeline worker? -dc/n11nnhnf54h78,"African American Female Population Who are Incarcerated;Population (Measured Based on Jurisdiction): Female, Incarcerated, Black or African American Alone;african american women in prison;african american women who are behind bars;african american women who are in jail;african american women who are incarcerated" -dc/n18hgz310vw83,"Revenue of Establishment: Hydroelectric Power Generation (NAICS/221111), With Payroll;Revenue of Hydroelectric Power Generation Establishments With Payroll" -dc/n2vhkpw0slkv5,"Population in Public Transportation Excluding Taxicab Service Occupations;Population: Public Transportation Excluding Taxicab, Service Occupations;number of people employed in public transportation excluding taxicab service occupations;number of people working in public transportation excluding taxicab service occupations;number of public transportation workers excluding taxicab service occupations;public transportation workforce excluding taxicab service occupations" -dc/n5fmmhn8w641g,"Population: Separated, Born in Other State in The United States;Separated Population Born in Other States in The United States" -dc/n87t9dkckzxc8,Number of couriers and messengers;Population of People Working as Couriers and Messengers;Population of Person: Couriers And Messengers (NAICS/492);Population of people working as couriers and messengers;number of couriers and messengers;number of couriers and messengers workers;number of people employed as couriers and messengers;number of people in the courier and messenger industry;number of people who are employed as couriers or messengers;number of people who deliver packages or messages for a living;number of people who work as couriers or messengers;number of people working as couriers and messengers -dc/n92hgh8ned7k5,"Population (Measured Based on Jurisdiction): In-State, Privately Operated, Incarcerated;Population Incarcerated in In-State and Privately Operated Correctional Facilities;the number of people who are in prison or jail in state and private facilities;the number of people who are incarcerated in state and private correctional facilities;the number of people who are locked up in state and privately run prisons;the number of people who are serving time in state and private jails" -dc/n99t0lnl3fch6,"Population Worked in Natural Resources, Construction, And Maintenance Occupations;Population: Walked, Natural Resources, Construction, And Maintenance Occupations;the number of people who work in the following occupations: walking, natural resources, construction, and maintenance;the people who are employed in the following occupations: walking, natural resources, construction, and maintenance;the people who work in the following occupations: walking, natural resources, construction, and maintenance;the population of people who work in the following occupations: walking, natural resources, construction, and maintenance" -dc/ndg1xk1e9frc2,Employment numbers in the manufacturing industry;How many people work in manufacturing?;Individuals employed in the manufacturing sector;Number of Manufacturing Workers;Number of manufacturing workers;Number of people employed in manufacturing;Number of people who work in manufacturing;People working in the manufacturing field;Population of Person: Manufacturing (NAICS/31-33);Workforce size for the manufacturing industry;how many people are employed in the manufacturing sector?;how many people work in manufacturing?;number of manufacturing workers;number of people who work in manufacturing;what is the number of people employed in manufacturing?;what is the workforce in manufacturing? -dc/nesnbmrncfjrb,The sum of the wages of wood product manufacturing workers;The total amount of money earned by wood product manufacturing workers;The total earnings of wood product manufacturing workers;The total pay of wood product manufacturing workers;Total Wages Paid to Wood Product Manufacturing Workers;Total wages paid to wood product manufacturing workers;Wages Total of Person: Wood Product Manufacturing (NAICS/321);Wood product manufacturing workers' total wages;the total amount of money paid to wood product manufacturing workers;the total compensation paid to wood product manufacturing workers;the total earnings of wood product manufacturing workers;the total income of wood product manufacturing workers;total wages of wood product manufacturing workers -dc/nfdf9rt7kbggb,"Population: Worked At Home, Management, Business, Science, And Arts Occupations;Workers in Home For Management, Business, Science, And Arts Occupations;home-based employees in management, business, science, and arts occupations;home-based workers in management, business, science, and arts occupations;people who work in management, business, science, and arts occupations at home;workers in management, business, science, and arts occupations who work from home" -dc/nh3s4skee5483,"Percent of Females That Have Diabetes;Prevalence: Female, Diabetes;What is the percentage of females with diabetes;What is the prevalence of diabetes in women;What is the proportion of females with diabetes;What percentage of the female population has diabetes;What percentage of women have diabetes;how many women have diabetes?;percent of females that have diabetes;what is the rate of diabetes among women?;what percentage of women have diabetes?;what proportion of women have diabetes?" -dc/nhecfv83n1nt9,"American Indian or Alaska Native Population;Population: Native, American Indian or Alaska Native Alone;alaska native;alaska native population;native alaskan;native peoples of alaska" -dc/nhmjhp72kjr48,"Asian Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years, Asian Alone;how many asian students are enrolled in college undergraduate programs?;how many asian students are enrolled in college?;what is the number of asian students enrolled in college undergraduate years?;what is the percentage of asian students enrolled in college?" -dc/njgzb8knf11n8,"American Indian or Alaska Native Population Enrolled in Middle School;Population: Middle School, American Indian or Alaska Native Alone;number of american indian or alaska native students enrolled in middle school;percentage of american indian or alaska native students enrolled in middle school;proportion of american indian or alaska native students enrolled in middle school;share of american indian or alaska native students enrolled in middle school" -dc/nm9hcklgg5zb3,Population Who are Employed;Population: Employed -dc/nrh9sl7zy12bf,"800 to 1,499 USD Housing Units Without Mortgage;Count of Housing Unit: Without Mortgage, 800 - 1,499 USD" -dc/ns1rqx6wy9909,"African American Population Enrolled in Kindergarten;Population: Enrolled in Kindergarten, Black or African American Alone;black or african american kindergarten enrollment;number of black or african american kindergarten students;number of black or african american kindergarteners;number of black or african american students in kindergarten" -dc/nt9cq96phw6nf,"Population: Enrolled in Kindergarten, White Alone Not Hispanic or Latino;White Non-Hispanic Population Enrolled in Kindergarten;number of white non-hispanic students enrolled in kindergarten;percentage of white non-hispanic students enrolled in kindergarten;proportion of white non-hispanic students enrolled in kindergarten;share of white non-hispanic students enrolled in kindergarten" -dc/ntpwcslsbjfc8,The total amount of money paid to postal service workers;The total amount of money that postal service workers earn;Total Wages Paid to Postal Service Workers;Total wages paid to postal service workers;Wages Total of Person: Postal Service (NAICS/491);the total amount of money paid to postal service workers;the total compensation paid to postal service workers;the total earnings of postal service workers;the total income of postal service workers;total wages of postal service workers -dc/nvfkved5p7pv1,"Asian Population Not Enrolled in School;Population: Asian Alone, Not Enrolled in School;the number of asians not enrolled in school;the number of asians not enrolled in school, as a percentage of the total asian population;the percentage of asians not enrolled in school;the proportion of asians not enrolled in school" -dc/nvrxn11yxlen2,"Population Using Public Transportation;Population: Public Transportation Excluding Taxicab, Sales And Office Occupations;the number of people who use public transportation;the percentage of people who use public transportation;the proportion of people who use public transportation;the share of people who use public transportation" -dc/nz8kmke5yqvn,"Count of Mortality Event (Measured Based on Jurisdiction): Death Due To Another Person, Incarcerated;Deaths Among Incarcerated Population Caused by Another Person;deaths caused by other incarcerated people, measured by jurisdiction;deaths caused by other inmates, measured by jurisdiction;incarcerated person-on-incarcerated person deaths, by jurisdiction;inmate-on-inmate deaths, by jurisdiction" -dc/p34mhcpgtth76,"Male Population Enrolled In Kindergarten;Population: Male, Enrolled in Kindergarten" -dc/p3vqwthpjtdw,"Population: Graduate or Professional School, Some Other Race Alone;Some Other Race Population in Graduate or Professional Schools;number of people of other races in graduate or professional schools;percentage of people of other races in graduate or professional schools;population of people of other races in graduate or professional schools;proportion of people of other races in graduate or professional schools" -dc/p4jzvj8q1lnmd,"American Indians Enrolled in Primary Schools;Population: Primary School, American Indian or Alaska Native Alone;american indian children in primary school;american indian students in elementary school;indigenous students in elementary school;native american students in primary school" -dc/p69tpsldf99h7,Employment numbers in the retail trade industry;Individuals employed in the retail trade sector;Number of Retail Trade Workers;Number of retail trade workers;People working in the retail trade field;Population of Person: Retail Trade (NAICS/44-45);Workforce size for the retail trade industry;how many people are employed in the retail sector?;number of retail trade workers;the number of people employed in retail;the number of people who have retail jobs;the number of retail workers;what is the number of people employed in retail?;what is the number of retail workers?;what is the workforce size of the retail industry? -dc/pltrqb2ng8dp8,"Population: Male, Enrolled in College Undergraduate Years" -dc/ppe3pntdhnb4d,"Population Born in Other State in The United States with Income;Population: With Income, Born in Other State in The United States;number of people born in other states living in the us with income;number of people born in other states with income in the us;number of people living in the us with income who were born in other states;number of people with income in the us who were born in other states" -dc/pplpj0y0mzd3g,Population: 40 - 44 Minute -dc/ptp31y11913b6,"1 the percentage of african american men who are incarcerated;2 the number of african american men who are in prison or jail;3 the rate of incarceration among african american men;5 the number of african american men who are serving time in the criminal justice system;African American Male Population Incarcerated;Population (Measured Based on Jurisdiction): Male, Incarcerated, Black or African American Alone" -dc/pwpgqvlz3zxtc,"Count of Mortality Event (Measured Based on Jurisdiction): NPSOther Cause of Death, Female, Incarcerated;Incarcerated Female Deaths Caused by NPS Other;causes of death for incarcerated females other than nps;causes of death for incarcerated females that are not nps;death rates for incarcerated females due to causes other than nps;deaths of incarcerated females due to causes other than nps" -dc/q0p7fcll1lv8c,"800 USD or Less Housing Units Without Mortgage;Count of Housing Unit: Without Mortgage, 800 USD or Less" -dc/q2pgyz35p79l4,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Female, Incarcerated;Deaths of Incarcerated Female Population Due to Assaults;deaths of female inmates due to assaults;deaths of female prisoners due to assaults;deaths of incarcerated females due to assaults;deaths of incarcerated women due to assaults" -dc/q779fwy6k8skd,"Female Population Worked Full Time;Population: Female, Worked Full Time;the number of full-time female workers increased;the number of women working full-time has increased;the number of women working full-time is on the rise;the percentage of women working full-time increased" -dc/q98jxycvs422f,"Multiracial Female Population With Some College or Associate's Degree;Population: Some College or Associates Degree, Female, Two or More Races;female multiracial college students;multiracial women with some college experience;women of multiple races who have some college or an associate's degree;women who are multiracial and have some college or associate's degree" -dc/qcj421m935ppd,Annual Receipt of Coal by Other Industrial;Annual Receipt of Coal: Other Industrial;coal received by other industries annually;coal received by other industries each year;the annual receipt of coal by industries other than mining -dc/qgpqqfzwz03d,The total amount of money paid to scenic and sightseeing transportation workers;The total amount of money that scenic and sightseeing transportation workers earn;Total Wages Paid to Scenic and Sightseeing Transportation Workers;Total wages paid to scenic and sightseeing transportation workers;Wages Total of Person: Scenic And Sightseeing Transportation (NAICS/487);the total amount of money paid to scenic and sightseeing transportation workers;the total compensation paid to scenic and sightseeing transportation workers;the total earnings of scenic and sightseeing transportation workers;the total income of scenic and sightseeing transportation workers;total wages of scenic and sightseeing transportation workers -dc/qgv9d3frn35qc,"Incarcerated Population Of Privately Operated Out Of State Correctional Facilities;Population (Measured Based on Jurisdiction): Out-of-State, Privately Operated, Incarcerated;number of people held in privately operated out-of-state correctional facilities;number of people in privately operated out-of-state correctional facilities;population of privately operated out-of-state prisons;total number of people incarcerated in privately operated out-of-state prisons" -dc/qj9v0vqzp9vlg,"Population: Widowed, Foreign Born;Widowed Foreign-Born Population;foreign-born people who are widowed;people who are widowed and were born in another country;people who have been widowed and were born in another country;people who were born in another country and whose spouse has died" -dc/qnnbzwrjn50jh,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Female, Incarcerated;Incarcerated Female Deaths Caused by AIDS;aids-related deaths among incarcerated females;deaths of incarcerated females due to aids;female prisoners who died of aids;women in prison who died of aids" -dc/qnphlls92tvs9,"American Indians Enrolled In Kindergarten;Population: Enrolled in Kindergarten, American Indian or Alaska Native Alone;american indian children attending kindergarten;american indian children enrolled in kindergarten;american indian kindergarteners;american indian students enrolled in kindergarten" -dc/qnz3rlypmfvw6,How many people work in the plastics and rubber products manufacturing industry?;Number of people who work in the plastics and rubber products manufacturing industry;Number of workers in the plastics and rubber products manufacturing industry;Population of People Working in the Plastics and Rubber Products Manufacturing Industry;Population of Person: Plastics And Rubber Products Manufacturing (NAICS/326);Population of people working in the plastics and rubber products manufacturing industry;number of people employed in the manufacturing of plastics and rubber products;number of people employed in the plastics and rubber products manufacturing industry;number of people working in the manufacturing of plastics and rubber products;number of people working in the plastics and rubber products manufacturing industry;number of plastics and rubber products manufacturing workers -dc/qt7ewllmt3826,"Amount of Economic Activity (Real Value): Gross Domestic Production, Retail Trade (NAICS/44-45);Amount of Economic Activity in Gross Domestic Production And Retail Trade Industries" -dc/qvf1yrhwzp8rd,"Population: Middle School, White Alone;White Middle Schoolers;caucasian middle school students;middle school kids who are white;middle school students of caucasian descent;white kids in middle school" -dc/qzjpw3tj2wxw7,"Foreign-Born White Non-Hispanic Population;Population: Foreign Born, White Alone Not Hispanic or Latino;white immigrants who are not hispanic;white immigrants who are not latino;white immigrants who are not of hispanic origin;white immigrants who are not of latino origin" -dc/r0delcsw86kc6,"Population: Car Truck or Van Drove Alone, Production, Transportation, And Material Moving Occupations;Workers Employed by Car Truck or Van Drove, Production, Transportation And Material Moving Occupations;car, truck, or van drivers in production, transportation, and material moving occupations;drivers of cars, trucks, or vans in production, transportation, and material moving occupations;workers in production, transportation, and material moving occupations who drive cars, trucks, or vans;workers who drive cars, trucks, or vans in the production, transportation, and material moving industries" -dc/r5ebll5x2zxfg,"Local, Locally Operated Incarcerated Population;Population (Measured Based on Jurisdiction): Local, Locally Operated, Incarcerated" -dc/rfdrfdc164y3b,The total amount of money earned by chemical manufacturing workers;The total amount of money paid to chemical manufacturing workers;The total amount of money that chemical manufacturing workers earn;Total Wages for People Working in the Chemical Manufacturing Industry;Total wages for people working in the chemical manufacturing industry;Wages Total of Person: Chemical Manufacturing (NAICS/325);how much do people working in the chemical manufacturing industry make?;total wages of chemical manufacturing workers;what are the wages for people working in the chemical manufacturing industry?;what is the average salary for people working in the chemical manufacturing industry?;what is the pay for people working in the chemical manufacturing industry? -dc/rkq1jgk08zfs7,"Count of Housing Unit: With Mortgage, 0 USD" -dc/rkxgse26ln224,"Never Married Natives Foreign-Born Outside The US;Population: Never Married, Native Born Outside The United States;never married, born in the us, born outside the us;never married, natives, foreign-born, outside the us;never married, us citizens, not us citizens;never married, us residents, not us residents" -dc/rlk1yxmkk1qqg,1 The number of people who work in the manufacturing of beverages and tobacco products;How many people work in the beverage and tobacco product manufacturing industry?;Number of people who work in the manufacturing of beverages and tobacco products;Population of People Working in the Beverage and Tobacco Product Manufacturing Industry;Population of Person: Beverage And Tobacco Product Manufacturing (NAICS/312);Population of people working in the beverage and tobacco product manufacturing industry;number of beverage and tobacco product manufacturing workers;number of employees in the beverage and tobacco product manufacturing sector;number of people employed in the beverage and tobacco product manufacturing industry;number of people who work in the beverage and tobacco product manufacturing industry;number of people working in the beverage and tobacco product manufacturing sector;number of workers in the beverage and tobacco product manufacturing industry -dc/rmwl11tzy7vkh,"Incarcerated Multiracial Population;Population (Measured Based on Jurisdiction): Incarcerated, Two or More Races;multiracial incarceration rates by jurisdiction;the number of incarcerated multiracial people by jurisdiction;the percentage of incarcerated people who identify as multiracial in different jurisdictions;the rate of incarceration for multiracial people in different jurisdictions" -dc/rn90czcrqcv06,Mean Price of Medicare Enrollee;the average cost of medicare coverage;the standard price of medicare;the typical price of medicare;the usual cost of medicare -dc/rppnrs4s3lhn9,"Population: Never Married, Born in State of Residence;Unmarried Population Based in the State of Residence;distribution of unmarried people by state;number of unmarried people in each state;percentage of unmarried people in each state;population of unmarried people by state" -dc/ry2tnmstly7wd,"Native Population Born Outside The United States Without Income;Population: No Income, Native Born Outside The United States;people who were born outside the united states and do not have an income;people who were born outside the united states and don't have an income;people who were born outside the us and don't have any source of income;people who were born outside the us and don't make any money" -dc/s0kcbjef3zxrc,"Foreign Born in United States Population Who are Never Married;Population: Never Married, Born in Other State in The United States;the number of people in the united states who are foreign born and never married;the percentage of the united states population that is foreign born and never married;the proportion of the united states population that is foreign born and never married;the share of the united states population that is foreign born and never married" -dc/s9cn1zj5fv5cc,"Revenue of Electric Power Distribution Establishments With Payroll;Revenue of Establishment: Electric Power Distribution (NAICS/221122), With Payroll" -dc/scnp6d6sv1jqd,"Native Hispanic Population;Population: Native, Hispanic or Latino" -dc/shgj6xwg96pp3,"Count of Mortality Event (Measured Based on Jurisdiction): Intentional Self-Harm(Suicide), Female, Incarcerated;Deaths of Female Population Who are Incarcerated Caused by Intentional Self-Harm;deaths of incarcerated women by self-harm;female inmates who commit suicide;self-harm deaths of female prisoners;suicides among incarcerated women" -dc/skv4cd74gsnpf,"Population: Bachelors Degree or Higher, Female, Some Other Race Alone;Some Other Race Female Population with Bachelor's Degree or Higher;women with a bachelor's degree or higher who are of mixed race;women with a bachelor's degree or higher who identify as some other race alone" -dc/slp5hywj7b9c1,"Population Employed by Taxicab Motorcycle Bicycle or Other Means Sales And Office Occupations;Population: Taxicab Motorcycle Bicycle or Other Means, Sales And Office Occupations;number of people employed in sales and office occupations who use taxicabs, motorcycles, bicycles, or other means of transportation;the number of people employed in sales and office occupations who commute by taxicab, motorcycle, bicycle, or other means;the number of people working in sales and office occupations who travel to work by taxicab, motorcycle, bicycle, or other means;the number of people working in sales and office occupations who use taxicabs, motorcycles, bicycles, or other means of transportation" -dc/stp8qcer02x07,"Native Born Outside The United States Population Married And Not Separated;Population: Married And Not Separated, Native Born Outside The United States" -dc/sxlzxvkfby3yh,Annual Stock of Coal for Electric Power;Annual Stock of Coal: Electric Power -dc/t0hh9jhx104k7,Population From 45 to 59 Minutes;Population: 45 - 59 Minute -dc/t14epl3f66wn,"Incarcerated Male Population Aged 0 to 17 Years;Population (Measured Based on Custody): 0 - 17 Years, Male, Incarcerated" -dc/t6m99mqmqxjbc,"Median Income (Real Individual Earnings Before Deductions): Management of Companies And Enterprises (NAICS/55);Median Income for People Working in the Management of Companies and Enterprises Industry;Median income for people working in the management of companies and enterprises industry;Median salary for people working in the management of companies and enterprises sector;Number of people employed in the management of companies and enterprises industry;The median compensation of management in companies and enterprises;The median income of management in companies and enterprises;Total earnings for employees in the management of companies and enterprises sector;median income of management of companies and enterprises workers;the amount of money that half of the people working in the management of companies and enterprises industry earn, and half earn less;the average salary for people working in the management of companies and enterprises industry;the middle value of salaries for people working in the management of companies and enterprises industry;the typical salary for people working in the management of companies and enterprises industry" -dc/t7403chwvspm,"African American Female Population With Bachelor's Degrees Or Higher;Population: Bachelors Degree or Higher, Female, Black or African American Alone;number of african american women with bachelor's degrees or higher;percentage of african american women with bachelor's degrees or higher;proportion of african american women with bachelor's degrees or higher;share of african american women with bachelor's degrees or higher" -dc/tcqb49dvg7k53,"Prevalence of Female Population Who are Physical Inactivity;Prevalence: Female, Physical Inactivity;a large number of women are not active enough;a large percentage of women are not meeting the physical activity guidelines;a significant proportion of women are not getting the recommended amount of physical activity;many women are not getting enough exercise" -dc/te4lvw7tlnfv9,"Revenue of Establishment: Solar Electric Power Generation (NAICS/221114), With Payroll;Revenue of Solar Electric Power Generation Industries With Payroll" -dc/tm2h6clmndl3b,"Foreign-Born Population Who Were Never Married;Population: Never Married, Foreign Born;the number of foreign-born people who are not married, expressed as a percentage of the total foreign-born population;the number of foreign-born people who have never been married;the percentage of the foreign-born population who have never been married;the share of the foreign-born population who are not married" -dc/tn5kxlgy0shl4,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Incarcerated;Deaths of Incarcerated Population Caused by AIDS" +WHO/NUTOVERWEIGHTPREV,Overweight Prevalence Among Children Under 5 Years old +WHO/NUTRITION_ANAEMIA_CHILDREN_PREV,Prevalence Of Anaemia In Children Aged 6-59 Months +WHO/NUTRITION_WA_2,Prevalence Of Underweight Children Under 5 Years Of Age +WHO/NUTRITION_WH_2,Prevalence Of Wasted Children Under 5 Years Of Age +WHO/NUTRITION_WH_3,Prevalence Of Severely Wasted Children Under 5 Years Of Age +WHO/NUTSTUNTINGPREV,Stunting Prevalence Among Children Under 5 Years Of Age +WHO/SA_0000001418,Disability-Adjusted Life Years Due to Alcohol Use Disorders +WHO/SA_0000001419,Disability-Adjusted Life Years Due to Breast Cancer +WHO/SA_0000001420,Disability-Adjusted Life Years Due to Colon and Rectum Cancer +WHO/SA_0000001421,Disability-Adjusted Life Years Due to Diabetes +WHO/SA_0000001422,Disability-Adjusted Life Years Due to Drownings +WHO/SA_0000001423,Disability-Adjusted Life Years Due to Falls +WHO/SA_0000001424,Disability-Adjusted Life Years Due to Fires +WHO/SA_0000001425,Disability-Adjusted Life Years Due to Ischaemic Heart Disease +WHO/SA_0000001426,Disability-Adjusted Life Years Due to Liver Cancer +WHO/SA_0000001427,Disability-Adjusted Life Years Due to Liver Cirrhosis +WHO/SA_0000001429,Disability-Adjusted Life Years Due to Mouth and Oropharynx Cancer +WHO/SA_0000001430,Disability-Adjusted Life Years Due to Esophagus Cancer +WHO/SA_0000001431,Disability-Adjusted Life Years Due to Poisoning +WHO/SA_0000001432,Disability-Adjusted Life Years Due to Prematurity and Low Birth Weight +WHO/SA_0000001433,Disability-Adjusted Life Years Due to Road Traffic Accidents +WHO/SA_0000001434,Disability-Adjusted Life Years Due to Self-Inflicted Injuries +WHO/SA_0000001435,Disability-Adjusted Life Years Due to Unintentional Injuries +WHO/SA_0000001436,Disability-Adjusted Life Years Due to Violence +WHO/SA_0000001437,Alcohol Use Disorder Death Rate +WHO/SA_0000001438,Breast Cancer Death Rate +WHO/SA_0000001439,Colon and Rectum Cancer Death Rate +WHO/SA_0000001440,Diabetes Death Rate +WHO/SA_0000001441,Death Rate from Drownings +WHO/SA_0000001442,Death Rate from Falls +WHO/SA_0000001443,Death Rate from Fires +WHO/SA_0000001444,Ischemic Heart Disease Death Rate +WHO/SA_0000001445,Liver Cancer Death Rate +WHO/SA_0000001446,Liver Cirrhosis Death Rate +WHO/SA_0000001448,Mouth and Oropharynx Cancer Death Rate +WHO/SA_0000001449,Esophagus Cancer Death Rate +WHO/SA_0000001450,Death Rate from Poisoning +WHO/SA_0000001451,Death Rate from Prematurity and Low Birth Weight +WHO/SA_0000001452,Age-Standardized Death Rates from Road Traffic Accidents +WHO/SA_0000001453,Age-Standardized Death Rates from Self-Inflicted Injury +WHO/SA_0000001455,Age-Standardized Death Rates from Violence +WHO/SA_0000001456,Age-Standardized Death Rates due to Alcoholic Liver Disease +WHO/SA_0000001458,Age-Standardized Death Rates from Poisoning +WHO/SDG_SH_DTH_RNCOM_ChronicRespiratoryDiseases,Number Of Deaths Attributed Chronic Respiratory Diseases +WHO/SDG_SH_DTH_RNCOM_DiabetesMellitus,Number Of Deaths Attributed Diabetes Mellitus +WHO/SDG_SH_DTH_RNCOM_MajorCardiovascularDiseases,Number Of Deaths Attributed Major Cardiovascular Diseases +WHO/SDG_SH_DTH_RNCOM_MalignantNeoplasms,Number Of Deaths Attributed Malignant Neoplasms +WHO/bcgv_Female,Percentage of Bcg Immunization Coverage Among 1 Year Old female +WHO/bcgv_Male,Percentage of Bcg Immunization Coverage Among 1 Year Old male +WHO/bcgv_Rural,Percentage of Bcg Immunization Coverage Among 1 Year Old in Rural Areas +WHO/bcgv_Urban,Percentage of Bcg Immunization Coverage Among 1 Year Old in Urban areas +WHO/dptv_Female,Percentage of Dtp3 Immunization Coverage Among 1 Year Old female +WHO/dptv_Male,Percentage of Dtp3 Immunization Coverage Among 1 Year Old male +WHO/dptv_Rural,Percentage of Dtp3 Immunization Coverage Among 1 Year Old in Rural Areas +WHO/dptv_Urban,Percentage of Dtp3 Immunization Coverage Among 1 Year Old in Urban areas +WHO/fullv_Female,Percentage of Full Immunization Coverage Among 1 Year Old female +WHO/fullv_Male,Percentage of Full Immunization Coverage Among 1 Year Old male +WHO/fullv_Rural,Percentage of Full Immunization Coverage Among 1 Year Old in Rural Areas +WHO/fullv_Urban,Percentage of Full Immunization Coverage Among 1 Year Old in Urban areas +WHO/mslv_Female,Measles Immunization Coverage Among 1 year old female +WHO/mslv_Male,Measles Immunization Coverage Among 1 year old male +WHO/mslv_Rural,Measles Immunization Coverage Among 1 year old in Rural Areas +WHO/mslv_Urban,Measles Immunization Coverage Among 1 year old in Urban areas +WHO/poliov_Female,Polio Immunization Coverage Among 1 year old female +WHO/poliov_Male,Polio Immunization Coverage Among 1 year old male +WHO/poliov_Rural,Polio Immunization Coverage Among 1 year old in rural area +WHO/poliov_Urban,Polio Immunization Coverage Among 1 year old in urban area +WagesAnnual_Establishment,total annual payroll amount of all establishments +WagesAnnual_Establishment_NAICSAccommodationFoodServices,total annual payroll amount of Accommodation and Food Services establishments +WagesAnnual_Establishment_NAICSAdministrativeSupportWasteManagementRemediationServices,"total annual payroll amount of Administrative Support, Waste Management and Remediation Services establishments" +WagesAnnual_Establishment_NAICSAgricultureForestryFishingHunting,"total annual payroll amount of Agriculture, Forestry, Fishing and Hunting establishments" +WagesAnnual_Establishment_NAICSArtsEntertainmentRecreation,"total annual payroll amount of Arts, Entertainment and Recreation establishments" +WagesAnnual_Establishment_NAICSConstruction,total annual payroll amount of Construction establishments +WagesAnnual_Establishment_NAICSEducationalServices,total annual payroll amount of Educational Services establishments +WagesAnnual_Establishment_NAICSFinanceInsurance,total annual payroll amount of Finance and Insurance establishments +WagesAnnual_Establishment_NAICSHealthCareSocialAssistance,total annual payroll amount of Health Care and Social Assistance establishments +WagesAnnual_Establishment_NAICSInformation,total annual payroll amount of Information establishments +WagesAnnual_Establishment_NAICSManagementOfCompaniesEnterprises,total annual payroll amount of Management of Companies and Enterprises establishments +WagesAnnual_Establishment_NAICSManufacturing,total annual payroll amount of Manufacturing establishments +WagesAnnual_Establishment_NAICSMiningQuarryingOilGasExtraction,"total annual payroll amount of Mining, Quarrying, and Oil and Gas Extraction establishments" +WagesAnnual_Establishment_NAICSNonclassifiable,total annual payroll amount of Nonclassifiable establishments +WagesAnnual_Establishment_NAICSOtherServices,total annual payroll amount of Other Services establishments +WagesAnnual_Establishment_NAICSProfessionalScientificTechnicalServices,"total annual payroll amount of Professional, Scientific, and Technical Services establishments" +WagesAnnual_Establishment_NAICSRealEstateRentalLeasing,total annual payroll amount of Real Estate and Rental and Leasing establishments +WagesAnnual_Establishment_NAICSRetailTrade,total annual payroll amount of Retail Trade establishments +WagesAnnual_Establishment_NAICSTransportationWarehousing,total annual payroll amount of Transportation and Warehousing establishments +WagesAnnual_Establishment_NAICSUtilities,total annual payroll amount of Utilities establishments +WagesAnnual_Establishment_NAICSWholesaleTrade,total annual payroll amount of Wholesale Trade +WagesTotal_Worker_NAICSAccommodationFoodServices,Total Wages of Workers in the Accommodation and Food Services Industry +WagesTotal_Worker_NAICSAdministrativeSupportWasteManagementRemediationServices,Total Wages of Workers in the Administrative and Support and Waste Management Services Industry +WagesTotal_Worker_NAICSAgricultureForestryFishingHunting,"Total wages of workers in the agriculture, forestry, fishing, & hunting industry" +WagesTotal_Worker_NAICSArtsEntertainmentRecreation,"total wages of Arts, Entertainment, and Recreation workers" +WagesTotal_Worker_NAICSConstruction,total wages of Construction workers +WagesTotal_Worker_NAICSEducationalServices,total wages of Educational Services workers +WagesTotal_Worker_NAICSFinanceInsurance,total wages of Finance and Insurance workers +WagesTotal_Worker_NAICSGoodsProducing,total wages of Goods Producing workers +WagesTotal_Worker_NAICSHealthCareSocialAssistance,total wages of Health Care and Social Assistance workers +WagesTotal_Worker_NAICSInformation,total wages of Information workers +WagesTotal_Worker_NAICSManagementOfCompaniesEnterprises,total wages of workers in Management of Companies and Enterprises +WagesTotal_Worker_NAICSMiningQuarryingOilGasExtraction,"total wages of workers in Mining, Quarrying, and Oil and Gas Extraction" +WagesTotal_Worker_NAICSNonclassifiable,total wages of workers in Nonclassifiable Establishments +WagesTotal_Worker_NAICSProfessionalScientificTechnicalServices,"total wages of workers in Professional, Scientific, and Technical Services" +WagesTotal_Worker_NAICSPublicAdministration,total wages of workers in Public Administration +WagesTotal_Worker_NAICSRealEstateRentalLeasing,total wages of workers in Real Estate and Rental and Leasing +WagesTotal_Worker_NAICSServiceProviding,total wages of workers in Service Providing +WagesTotal_Worker_NAICSTotalAllIndustries,total wages of workers in all industries +WagesTotal_Worker_NAICSUtilities,total wages of workers in Utilities industry +WagesTotal_Worker_NAICSWholesaleTrade,Total wages of workers in wholesale trade industry +WithdrawalRate_Water,Water Withdrawal rate +WithdrawalRate_Water_Domestic,Withdrawal Rate of Water used for domestic needs +WithdrawalRate_Water_Industrial,Withdrawal Rate of Water used for industrial needs +WithdrawalRate_Water_Irrigation,Withdrawal Rate of Water used for Irrigation +WithdrawalRate_Water_Livestock,Withdrawal Rate of Water used for live stock +WithdrawalRate_Water_Mining,Withdrawal Rate of Water used for mining +WithdrawalRate_Water_PublicSupply,Withdrawal Rate of Water used for public supply +WithdrawalRate_Water_Thermoelectric,Withdrawal Rate of Water used for Thermo electric +dc/00dyzp11kk35g,Number of Establishments in Geothermal Electric Power Generation +dc/015d58s9xh8kd,Median income of people working in the Real Estate Rental & Leasing Industry +dc/03l0q0wyqrk39,Number of Incarcerated males +dc/06f0jf8xvzw4f,Number of female hispanic or latino With Bachelor or higher Degree +dc/0gettc3bc60cb,Number of peole who drive to work +dc/0hq9z5mspf73f,Total wages of workers in transportation and warehousing industry +dc/0jtctjm33mgh1,Number of Hispanic or Latino people enrolled in college or undergraduate years +dc/0yv0ry7tjmwzc,Number of females enrolled in college undergraduate years +dc/107jnwnsh17xb,Number of people who work in food manufacturing +dc/15lrzqkb6n0y7,Number of people who work in crop production +dc/1c4zcyw02n71g,Number of asian people enrolled in kindergarten +dc/1jqm2g7cm9m75,total wages of workers in Textile Fabric Finishing and Fabric Coating Mills +dc/1kt512ynvpmc2,Number of asian people enrolled in high school +dc/1lm9k2vdxj4c6,Number of foreign born people who speak Asian and Pacific Island languages at home +dc/1q3ker7zf14hf,total wages of workers in Textile Product Mills +dc/1t989xd1tn701,Number of Native Hawaiian or other Pacific Islander people enrolled in college or undergraduate years +dc/29vy1f58gdm0g,Number of foreign-born multi races people +dc/2etwgx6vecreh,Number of people who work in nonstore retailers +dc/2wgh04kx6es88,Median income of people working in the Health Care & Social Assistance Industry +dc/2xd2ktjs23hk3,Number of multi races people who are citizens at birth +dc/34t2kjrwbjd31,Number of people who work in petroleum and coal products manufacturing +dc/3bg4r46ly61q9,Number of Black Or African American people enrolled in high school +dc/3ex11eg2q9hp6,Median income of people working in the Manufacturing Industry +dc/3jr0p7yjw06z9,Number of gambling establishments in gambling industries +dc/3kwcvm428wpq4,Number of people who work in rail transportation +dc/3n8g9we5yv7th,Number of people of multi races enrolled in kindergarten +dc/3w039ndqy7qv1,Number of Hispanic or Latino females who have attended some college +dc/3z6z9w930dl7b,Number of Black Or African American people enrolled in graduate or professional school +dc/40724bjd19ej7,Number of foreign-born Native Hawaiian or other Pacific Islander people +dc/4hzyqndyzntm,Number of white people enrolled in high school +dc/4j5t00e5s5el3,Number of people aged 25 and older with an education level of kindergarten or lower +dc/4ky4sj05bw4nd,total wages of Air Transportation workers +dc/4lvmzr1h1ylk1,Prevalence of adult female obesity +dc/4mm2p1rxr5wz4,Number of people who work in store retailers +dc/4qtse8536dg63,Number of female American Indian Or Alaska Native With Bachelor or higher Degree +dc/4wdtyd2bbf9m9,Number of multi races people currently enrolled in school +dc/4z9xy6wn8xns1,"Median income of people working in the Administrative Support, Waste Management & Remediation Services Industry" +dc/51h3g4mcgj3w4,Number of Construction of Buildings establishments +dc/556pqlh586bmc,Number of Native Hawaiian or other Pacific Islander people enrolled in kindergarten +dc/55d9n710f1l43,Number of white people enrolled in college undergraduate years +dc/56md3ndhrmvm7,Number of Black or African American females who have attended some college +dc/5blsqw3w9jmnc,Number of multi races people not currently enrolled in school +dc/5br285q68be6,Number of people who work in Gambling Industries +dc/5f3gkej4mrq24,Median income of people working in the Retail Trade Industry +dc/5hc4etrfyj9qg,Number of white female With Bachelor or higher Degree +dc/5hv2p802zmh03,Median income of people working in the Professional Scientific & Technical Services Industry +dc/5qnjtqc0w783b,Number of American Indian or Alaska Native people currently enrolled in school +dc/61t0et409x8ch,Number of Research And Development In The Physical Engineering And Life Sciences establishments +dc/63gkdt13bmsv8,Number of people who work in air transportation +dc/67ttwfn9dswch,Number of deaths of incarcerated people +dc/68cg2z97cpl7d,Number of hispanic or latino people enrolled in primary school +dc/6bkn9vt30f5c1,Number of foreign born American Indian or Alaska Native people +dc/6ets5evke9mw5,total wages of workers in Miscellaneous Store Retailers +dc/6n6l2wrzv7473,Number of people who work in paper manufacturing +dc/6rltk4kf75612,Number of People working at home +dc/6xlk95n27cn23,Number of deaths of incarcerated males +dc/70zj83ev915f8,Number of males who are married +dc/7bck6xpkc205c,number of workers in the leather and allied product manufacturing industry +dc/7fdfhnnjr5sh8,Number of American Indian or Alaska Native people enrolled in graduate or professional school +dc/7g77dy8hfb1rg,Number of Hispanic or Latino people enrolled in kindergarten +dc/7jqw95h5wbelb,Median income of people working in the Public Administration Industry +dc/7nqp2vc6y6fef,Number of native hawaiian or other pacific islander people not currently enrolled in school +dc/7w0e0p0dzj82g,total wages of workers in Textile Mills +dc/84czmnc1b6sp5,total wages of workers in Transportation Warehousing industry +dc/8b3gpw1zyr7bf,Number of people who work in textile mills +dc/8cnhmxe67qddf,Number of native hawaiian or other pacific islander people currently enrolled in school +dc/8cssekvykhys5,total wages of workers in Petroleum and Coal Products Manufacturing +dc/8hy0p1ex5s2cb,Median income of people working in the Wholesale Trade Industry +dc/8j8w7pf73ekn,Number of people who work in postal service +dc/8lqwvg8m9x7z8,total wages of Cattle Ranching and Farming workers +dc/8p97n7l96lgg8,Number of people who work in transportation and warehousing +dc/8pxklrk2q6453,total wages of workers in Nonstore Retailers +dc/90nswpkp8wlw5,Number of people who work in nonmetallic mineral product manufacturing +dc/95gev5g99r7nc,total wages of Couriers and Messengers workers +dc/96b2ddmlpvq7f,Revenue of Geothermal Electric Power Generation establishments +dc/9cqv67nn7pn1b,Number of Hispanic or Latino people enrolled in graduate or professional school +dc/9kk3vkzn5v0fb,total wages of Beverage and Tobacco Product Manufacturing workers +dc/9pmyhk89dj3pf,Median income of people working in the Accommodation & Food Services Industry +dc/9sneyc8lpk8dc,Number of White females who have attended some college +dc/9t5n4mk2fxzdg,total wages of workers in Transit Ground Passenger Transportation industry +dc/9yj0bdp6s4ml5,total wages of workers in Plastics and Rubber Products Manufacturing +dc/b18vkxwgc8xbd,Number of Native Hawaiian or Other Pacific Islander who are citizens at birth +dc/b3nmcj3w1lhed,Number of multi races people enrolled in middle school +dc/b4dj4sbgqybh7,Median income of people working in the Mining Quarrying Oil & Gas Extraction Industry +dc/b6z2v4t8cvcd5,Revenue of Wind Electric Power Generation establishments +dc/bb4peddkgmqe7,Number of workers working in support activities for transportation +dc/bceet4dh33ev,total wages of workers in Support Activities for Transportation +dc/bf85zc6wypd2h,Number of white people enrolled in primary school +dc/bwr1l8y9we9k7,Number of people who work in transit and ground passenger transportation +dc/c0wxmt45gffxc,Number of people who work in general merchandise stores +dc/c57vzg7l74577,Number of native hawaiian or other pacific islander people enrolled in middle school +dc/c58mvty4nhxdb,Student test performance +dc/cc8wk2n0ywd9,Number of Hispanic or Latino people enrolled in high school +dc/ck1ksqd8rgps6,total annual payroll amount of Heavy and Civil Engineering Construction establishments +dc/dchdrg93spxkf,total wages of General Merchandise Stores workers +dc/dxcbt2knrsgg9,total wages of workers in Retail Trade +dc/dxsxcw009pdm4,Number of Native Hawaiian or other Pacific Islander people enrolled in high school +dc/dy2k68mmhenfd,Number of people who work in textile product mills +dc/dyhxtqe2pxhl5,Number of foreign born people with no income +dc/e2szvml8jkld8,Number of Black Or African American people enrolled in middle school +dc/e2zdnwjjhyj36,"Number of people working in sports, hobby, music instruments, and book stores" +dc/e4y4hqq6mjfsh,Number of Black Or African American people enrolled in primary school +dc/eg6rrdr1tkf76,Number of female asian With Bachelor or higher Degree +dc/eh7s78v8s14l9,Number of people who work in chemical manufacturing +dc/ep052e5d1p2t4,Number of suicides of incarcerated males +dc/eptfljlz7bgbg,Number of Nuclear Electric Power Generation establishments +dc/epw58ne8mytn5,Number of females of some other race who have attended some college +dc/evcytmdmc9xgd,Number of privately owned Wind Electric Power Generation establishments +dc/fcn7wgvcwtsj2,total wages of workers in Warehousing Storage industry +dc/fetj39pqls2df,total wages of Leather and Allied Product Manufacturing workers +dc/fh4td3znm3l4g,Number of American Indian or Alaska Native people enrolled in high school +dc/fmx7fkrpd3jl2,Number of Native Hawaiian or other Pacific Islander people enrolled in graduate or professional school +dc/fyc3yvjy0xw6g,Number of people whose commute time to work is 5 minutes or less +dc/g4fthg3t3y5td,Number of asian people currently enrolled in middle school +dc/g8537zqf45wl3,Number of people of multi races enrolled in high school +dc/g8kg52zcxzw9f,Number of females enrolled in kindergarten +dc/gb0b3cwxyfsh9,Number of deaths of incarcerated females +dc/gr3zem8shyhbf,Number of white people enrolled in kindergarten +dc/gvnh5cpl9h1rf,Number of people with income who are foreign born +dc/h1jy2glt2m7e6,Number of people who work in water transportation +dc/h77bt8rxcjve3,total wages of workers in Truck Transportation industry +dc/h7ft916g93ys2,Number of people whose commute time to work is 90 minutes or longer +dc/h8p2m5rx43j3b,Number of white people enrolled in graduate or professional school +dc/hbkh95kc7pkb6,Number of people who take public transportation to work +dc/hlxvn1t8b9bhh,Number of people who work in cattle ranching and farming +dc/hxsdmw575en24,Number of Incarcerated people +dc/hyfn2tlyz48lb,Number of multi races female With Bachelor or higher Degree +dc/j5fv028n7nhe4,total annual payroll amount of Residential Building Construction establishments +dc/jefhcs9qxc971,Median income of people working in the Educational Services Industry +dc/jhjdplbeg26k1,Number of multi races people enrolled in primary school +dc/jngmh68j9z4q,total wages of Food Manufacturing workers +dc/jte92xq8qsgtd,Number of suicides of incarcerated people +dc/jtf63bh66k41g,Number of homicides of incarcerated people +dc/jxd329x7k27fb,Number of white people who are citizens at birth +dc/k3hehk50ch012,Number of people who work in truck transportation +dc/k4grzkjq201xh,"total wages of workers in Sporting Goods, Hobby, Musical Instrument, and Book Stores" +dc/kl7t3p3de7tlh,total wages of workers in Paper Manufacturing +dc/km8en9ep7bwh6,Number of asian people currently enrolled in school +dc/kpcfmb6lp3zpd,Number of Native Hawaiian or Other Pacific Islander females who have attended some college +dc/ksynl8pj8w5t5,total wages of workers in Rail Transportation +dc/ktf5098lxb8sc,Number of Black Or African American people who are citizens at birth +dc/ktmr6ngnsqxmf,Revenue of Nuclear Electric Power Generation establishments +dc/kz9r60zp6s32b,Number of people of multi races enrolled in graduate or professional school +dc/lnp5g90fwpct8,Number of Incarcerated females +dc/lsf00jqxjp9r8,Number of Biomass Electric Power Generation Establishments +dc/ltwqwtxcq9l23,Number of Heavy Civil Engineering Construction establishments +dc/lygznlxpkj318,total wages of Apparel Manufacturing workers +dc/m07n4w3ywjzs3,Median income of people working in the Construction Industry +dc/mbn7jcx896cd8,Number of Hydroelectric Power Generation establishments +dc/mfz54y2skbpeh,"Median income of people working in the Arts, Entertainment & Recreation Industry" +dc/mqxdr821c7kw3,Number of American Indian Or Alaska Native females with some college education +dc/mr1f76pb6yq98,Number of white people not currently enrolled in school +dc/msz3yy4p50yyf,"total annual payroll amount of Research and Development in the Physical, Engineering, and Life Sciences establishments" +dc/mwbmxs2q9zcgd,Number of American Indian or Alaska Native people enrolled in college or undergraduate years +dc/mwcnlh5bmdk63,Number of Electric Power Transmission And Distribution establishments +dc/n0m3e2r3pxb21,total wages of workers in Pipeline Transportation +dc/n18hgz310vw83,Revenue of Hydroelectric Power Generation establishments +dc/n87t9dkckzxc8,Number of people who work as couriers and messengers +dc/ndg1xk1e9frc2,Number of people employed in the manufacturing sector +dc/nesnbmrncfjrb,Total wages of workers in wood product manufacturing industry +dc/nh3s4skee5483,Prevalence of adult female diabetes +dc/nhecfv83n1nt9,Number of American Indian or Alaska Native people who were citizens at birth +dc/nhmjhp72kjr48,Number of asian people enrolled in college or undergraduate years +dc/njgzb8knf11n8,Number of american indian or alaska native people enrolled in middle school +dc/ns1rqx6wy9909,Number of Black Or African American people enrolled in kindergarten +dc/ntpwcslsbjfc8,total wages of workers in Postal Service +dc/nvfkved5p7pv1,Number of asian people not currently enrolled in school +dc/p34mhcpgtth76,Number of males enrolled in kindergarten +dc/p4jzvj8q1lnmd,Number of American Indian or Alaska Native people enrolled in primary school +dc/p69tpsldf99h7,Number of people working in the retail trade industry +dc/pltrqb2ng8dp8,Number of males enrolled in college undergraduate years +dc/q2pgyz35p79l4,Number of homicides of incarcerated females +dc/q98jxycvs422f,Number of muti races females who have attended some college +dc/qgpqqfzwz03d,total wages of workers in Scenic and Sightseeing Transportation +dc/qj9v0vqzp9vlg,Number of foreign born widowed people +dc/qnphlls92tvs9,Number of American Indian or Alaska Native people enrolled in kindergarten +dc/qnz3rlypmfvw6,Number of people who work in plastics and rubber products manufacturing +dc/qvf1yrhwzp8rd,Number of white people enrolled in middle school +dc/rfdrfdc164y3b,total wages of Chemical Manufacturing workers +dc/rlk1yxmkk1qqg,Number of people who work in beverage and tobacco product manufacturing +dc/s9cn1zj5fv5cc,Revenue of Electric Power Distribution establishments +dc/scnp6d6sv1jqd,Number of Hispanic or Latino people who are citizens at birth +dc/shgj6xwg96pp3,Number of suicides of incarcerated females +dc/t6m99mqmqxjbc,Median income of people working in the Management of Companies & Enterprises Industry +dc/t7403chwvspm,Number of female Black Or African American With Bachelor or higher Degree +dc/tcqb49dvg7k53,Prevalence of adult female physical inactivity +dc/te4lvw7tlnfv9,Revenue of Solar Electric Power Generation establishments dc/topic/AdolescentBirthRate,Adolescent Birth Rate dc/topic/AdultCorrectionalFacilitiesResidents,Adult Correctional Facilities Residents dc/topic/Age,Age -dc/topic/AgeDistribution,Age Distribution;population by age +dc/topic/AgeDistribution,Age based demographic breakdown dc/topic/AgeMedians,Age Medians dc/topic/AgriculturalProduction,Agricultural Output;Agricultural Production;Output from agricultural activities;Total agricultural output dc/topic/Agriculture,Agriculture;Agriculture data;Agriculture statistics;Data related to agriculture;Farming;Farming information;Information on farming dc/topic/AgricultureEmissionsByGas,Amount of gases emitted by agricultural sector;Emissions from agriculture;Quantity of greenhouse gases emitted by the agricultural sector;The sum of all gases released by the agricultural industry;The volume of emissions produced by agriculture;Total amount of gas emissions from farming practices;Total quantity of gases released by the farming industry -dc/topic/AirQualityIndex,Air Quality Index;air quality level +dc/topic/AirQualityIndex,AQI;Air Quality Index;air quality level dc/topic/AlcoholIndustry,Alcohol Industry dc/topic/AmbientAirPollution,Ambient Air Pollution dc/topic/AmericanIndianAndAlaskaNativeAloneFemalePopulationByAge,American Indian And Alaska Native Female Population By Age @@ -5930,6 +3469,7 @@ dc/topic/CitizenshipStatus,Citizenship Status dc/topic/ClimateChange,Climate Change;Climate Change impact;Global Warming;Impact of Climate Change dc/topic/CoastalFlood,Coastal Flood dc/topic/ColdEvent,Cold Event;excessive cold;freezing;very cold +dc/topic/CollegeEducationAttainment,College Education Attainment dc/topic/CollegeOrUniversityStudentHousingResidents,College Or University Student Housing Residents dc/topic/CommuteMode,Commute Modes;modes of commute dc/topic/CommuteModeByOccupation,Commute Mode By Occupation;commute options by occupation @@ -5994,14 +3534,14 @@ dc/topic/Flood,Floods;flood dc/topic/FoodInsecurity,Food Insecurity;access to food;food insecure;food security;lack of access to the food dc/topic/Forest,Forest dc/topic/FossilFuelOperationsEmissionsByGas,Amount of gases emitted in fossil fuel operations;Emissions from fossil fuel operations;Quantity of greenhouse gases emitted by the burning of fossil fuels;The sum of all gases released by the use of fossil fuels;The volume of emissions produced by the use of fossil fuels;Total amount of gas emissions from fossil fuel operations;Total quantity of gases released by fossil fuel operations -dc/topic/GDP,gross domestic production +dc/topic/GDP,GDP;gross domestic production dc/topic/GDPByIndustry,GDP By Industry;gross domestic product breakdown by industry;gross domestic product by industry dc/topic/Gender,Gender;gender of population dc/topic/GlobalEconomicActivity,Global Economic Activity dc/topic/GlobalElectricityAccess,Access To Electricity;Percentage of People with access to Electricity;electricity access;electrification;people with access to electricity dc/topic/GlobalHealth,Global health;World health;health conditions in the world;health in the world dc/topic/GreenJobs,Green Jobs;environmentally friendly jobs;sustainable jobs -dc/topic/GreenhouseGasEmissions,GHG emissions;Greenhouse Gas Emission;greenhouse gasses emissions;sources of GHG emissions;sources of greenhouse gas emissions +dc/topic/GreenhouseGasEmissions,GHG emissions;Greenhouse Gas Emission;Greenhouse Gas Emissions;greenhouse gasses emissions;sources of GHG emissions;sources of greenhouse gas emissions dc/topic/GroupQuartersResidents,Group Quarters Residents dc/topic/HIV,HIV dc/topic/HateCrimes,Hate Crimes @@ -6010,8 +3550,8 @@ dc/topic/HealthBehavior,Health behavior;Health behaviors;Healthy behaviors;Unhea dc/topic/HealthConditions,Health conditions dc/topic/HealthEquity,Health equity;fairness in health;fairness of health conditions dc/topic/HealthInsurance,Health Insurance -dc/topic/HealthInsuranceByGender,Health Insurance by gender;Health Insurance split by gender;health insurance breakdown by gender;health insurance distribution by gender -dc/topic/HealthInsuranceByRace,Health Insurance by race;Health insurance split by race;health insurance breakdown by race;health insurance distribution by race +dc/topic/HealthInsuranceByGender,Breakdown of health insurance coverage by gender +dc/topic/HealthInsuranceByRace,Breakdown of health insurance coverage by race dc/topic/HealthInsuranceType,Health Insurance types;Health insurance by types;types of health insurance dc/topic/HealthWorkerDensity,Health Worker Density dc/topic/HealthcareExpenditure,Healthcare Expenditure;amount spent on health;health expenses @@ -6025,11 +3565,11 @@ dc/topic/HispanicOrLatinoPopulationByAge,Hispanic Or Latino Population By Age dc/topic/HomeOwnership,Home Ownership;house ownership;housing owners;owners of houses dc/topic/HouseFeatures,House Features;features in a home;features of a house dc/topic/HouseOccupants,House Occupants;home occupants;people living in the house -dc/topic/HouseholdIncomeDistribution,Household Income Distribution;income distribution for households +dc/topic/HouseholdIncomeDistribution,Breakdown of Household Income by household types dc/topic/HousesByDateofBuild,Houses by Date Built;build date of houses;date built of houses;houses by date build dc/topic/HousesByFacilities,Houses by Facilities;facilities in houses dc/topic/HousesByHomeValue,Houses by Home Value;home value of houses -dc/topic/HousesByHouseholderAge,Houses by Age of Residents;age distribution of house residents;home residents age distribution +dc/topic/HousesByHouseholderAge,breakdown of houses by the householder age dc/topic/HousesByHouseholderEducationalAttainment,Houses by Educational Attainment of Owner;education attainment of home owners;education level of home owner;home owner's education;houses by home owner's education level dc/topic/HousesByHouseholderRace,Houses by Race of Occupants;home residents race;houses by resident race;racial breakdown of house residents dc/topic/HousesByOwnershipCost,Houses by Ownership Cost;cost of home ownership;cost of owning a home;cost of owning a house;housing cost @@ -6042,16 +3582,15 @@ dc/topic/Incarceration,Incarceration dc/topic/Income,Earnings;Income;Income from Earnings;Salary;compensation;pay dc/topic/IncomeEquity,Income Equity;equity of income distribution;fairness of income distribution;fariness in income dc/topic/IndividualIncomeByIndustry,Individual Income By Industry;individual income across industries -dc/topic/IndividualIncomeDistribution,Individual Income Distribution +dc/topic/IndividualIncomeDistribution,Population breakdown by income level dc/topic/IndustriesByGDP,GDP contribution by industries;Industries By GDP Contribution;contribution to the GDP by industries dc/topic/IndustriesByRevenue,Industries By Revenue;revenue across industries;revenue breakdown by industries dc/topic/InfantMortality,Infant Mortality;death among infants;infant deaths;mortality among infants -dc/topic/InflationAdjustedGDP,Inflation Adjusted GDP;inflation adjusted gross domestic production dc/topic/InstitutionalizedGroupQuartersResidents,Institutionalized Group Quarters Residents dc/topic/Internet,Internet dc/topic/InternetAccess,Internet Access;digital access;digital equity;digital penetration;internet penetration dc/topic/InternetPublishingAndBroadcastingIndustry,Internet Publishing And Broadcasting Industry -dc/topic/Jobs,Careers;Employment Positions;Job Roles;Jobs;Occupational professions;Professions;Work Occupations;distribution of jobs;distribution of workers +dc/topic/Jobs,Careers;Employment Positions;Job Roles;Jobs;Occupational professions;Professions;Work Occupations;breakdown of workers by jobs dc/topic/JusticeSystemEquity,Equity of the justice system;Justice System Equity;equity in the justice system;fariness in the justice system dc/topic/JuvenileFacilitiesResidents,Juvenile Facilities Residents dc/topic/KidneyDisease,Kidney Disease @@ -6061,10 +3600,10 @@ dc/topic/LandCover,Land Cover dc/topic/LandUseAndCoverage,Land Use And Coverage;land use dc/topic/Landslide,Landslide dc/topic/Language,Language -dc/topic/LanguageSpokenAtHome_ForeignBorn,Language Spoken At Home By Immigrants;immigrants language at home;language at home for foreign born +dc/topic/LanguageSpokenAtHome_ForeignBorn,breakdown of foreign born people by language at home dc/topic/LevelOfEducationalAttainment,Level Of Educational Attainment;level of qualification dc/topic/LifeExpectancy,Life Expectancy -dc/topic/Literacy,Literacy;how many people can read or not;how many people cannot read or write;how well read is the population;level of literacy;literacy rate;population's ability to read and write;where can i find the most well read population in +dc/topic/Literacy,Literacy dc/topic/LungConditionFemalePopulationByAge,Female Population With Lung Condition By Age dc/topic/LungConditionMalePopulationByAge,Male Population With Lung Condition By Age dc/topic/Malaria,Malaria @@ -6093,7 +3632,7 @@ dc/topic/MobilePhoneOwnership,Mobile Phone Ownership dc/topic/MobilePhoneUsage,Mobile Phone Usage dc/topic/Mortality,Death;Issues relating to death;Mortality dc/topic/MortalityAmongIncarcerated,Mortality among incarcerated;Mortality among those in jail;deaths among those in jail;deaths of incarcerated;incarcerated deaths -dc/topic/MortalityByGender,Mortality by gender;Mortality split by gender;mortality breakdown by gender;mortality distribution by gender +dc/topic/MortalityByGender,Mortality by gender;Mortality split by gender;mortality breakdown by gender dc/topic/MortalityByRace,Mortality by race;deaths by race;mortality breakdown by race;racial breakdown of mortality dc/topic/Nationality,Nationality dc/topic/NativeHawaiianAndOtherPacificIslanderAloneFemalePopulationByAge,Native Hawaiian And Other Pacific Islander Female Population By Age @@ -6107,7 +3646,7 @@ dc/topic/NeverMarriedPopulationByAge,Never Married Population By Age dc/topic/NeverMarriedPopulationByDemographic,Never Married Population by Demographic;demographics of people who never married;demographics of the never married population dc/topic/NitrogenDioxide,NO2;NO2 pollutant;Nitrogen Dioxide dc/topic/NoHealthInsurance,No Health Insurance;people with no health insurance;people without access to health insurance;without health insurance -dc/topic/NoHealthInsuranceByGender,No Health Insurance by gender;distribution of no health insurance by gender;without health insurnace for gender +dc/topic/NoHealthInsuranceByGender,No Health Insurance by gender;breakdown of population without health insurance by gender dc/topic/NoHealthInsuranceByIncome,No Health Insurance by income;no health insurance across income levels;no health insurance split by income dc/topic/NoHealthInsuranceByRace,No Health Insurance by race;no health insurance across race;no health insurance by race;racial breakdown of those without health insurance dc/topic/NonEnglishLanguageAtHome,Non-English Languages Spoken At Home;non-english at home;non-english language at home;other languages spoken at home;spoken language at home is not English @@ -6130,13 +3669,11 @@ dc/topic/PhysicalActivity,Physical Activity dc/topic/Physicians,Physicians dc/topic/PlaceOfBirth,Place of Birth dc/topic/Pollutants,Pollutants -dc/topic/PopulationByAgeDistribution,Population By Age Distribution;population distribution by age dc/topic/PopulationEnrolledInSchoolTypeByRace,Population Enrolled In School Type By Race;students enrolled in school type by race dc/topic/PopulationFormerSmoker,Population Former Smoker dc/topic/PopulationNonsmokingTobaccoUser,Population Nonsmoking Tobacco User dc/topic/PopulationNormalWeight,Population Normal Weight dc/topic/PopulationWithArthritisByAge,Population With Arthritis By Age -dc/topic/PopulationWithAsthmaByAge,Population With Asthma By Age dc/topic/PopulationWithCancerByAge,Population With Cancer By Age dc/topic/PopulationWithDementiaByAge,Population With Dementia By Age dc/topic/PopulationWithDiabetesByAge,Population With Diabetes By Age @@ -6157,9 +3694,9 @@ dc/topic/PreventativeHealth,Preventative Health dc/topic/PreventativeHealthAndBehavior,Preventative health and behavior dc/topic/PrivateHealthInsuranceType,Private health insurance;health insurance private type;people with private health insurance dc/topic/ProductionConsumptionandWaste,Production and Consumption Waste;Waste due to production and consumption -dc/topic/ProjectedClimateExtremes,Climate Extremes;Projected Climate Extremes;What are the projected temperature extremes across;how crazy is the climate supposed to get in the future;projected temperature;projected temperature extremes;tell me about projecte temperature extremes for;what are predicted extreme temperatures for +dc/topic/ProjectedClimateExtremes,Climate Extremes;Projected Climate Extremes dc/topic/PublicHealthInsuranceType,Public health insurance;health insurance public type;people with public health insurance -dc/topic/Race,Race;racial breakdown +dc/topic/Race,Race;population by race dc/topic/Rainfall,Rainfall;rain dc/topic/Religion,Religion dc/topic/Remittance,Remittance;remittances @@ -6182,29 +3719,29 @@ dc/topic/SmokePM2.5,Smoke PM2.5;particulate matter 2.5;smoke particulate matter dc/topic/Snowfall,Snowfall dc/topic/SocialSupport,Social Support dc/topic/SolarConsumption,Solar Consumption -dc/topic/SolarPotential,Solar Potential;Solar potential;ability to support solar panels;amount of solar potential;potential for solar energy;solar potential +dc/topic/SolarPotential,Solar Potential;Solar potential dc/topic/Storm,Storm dc/topic/Stroke,Stroke;heart attack;stroke attack dc/topic/StrokeFemalePopulationByAge,Female Population With Stroke By Age dc/topic/StrokeMalePopulationByAge,Male Population With Stroke By Age dc/topic/StudentEnrollmentLevels,Student Enrollment Levels;enrollement levels of students;number of students enrolled;students currently enrolled dc/topic/StudentLunchEligibility,Student Lunch Eligibility;lunch eligibility of students;students eligible for lunch -dc/topic/StudentPopulation,Students +dc/topic/StudentPopulation,Student Population;Students dc/topic/StudentPopulationDemographics,Student Population Demographics;Student demographics dc/topic/StudentTeacherRatio,Student Teacher Ratio;ratio of students to teachers dc/topic/StudentsInCollege,Students in College;college students;undergrad students;undergrads;undergraduate students -dc/topic/StudentsInGraduateOrProfessionalSchool,PE students;Students in Graduate or Professional School;grad students;students enrolled in grad school;students in graduate school;students in professional school -dc/topic/StudentsInHighSchool,Student in High School;students enrolled in high schools +dc/topic/StudentsInGraduateOrProfessionalSchool,race breakdown of students in Graduate or Professional School +dc/topic/StudentsInHighSchool,Student in High School;high school students;students enrolled in high schools dc/topic/StudentsInKindergarten,KG students;Students in Kindergarten;kindergarten students;students in KG -dc/topic/StudentsInMiddleSchool,Students in Middle School -dc/topic/StudentsInPrimarySchool,Students in Primary School;students enrolled in primary school +dc/topic/StudentsInMiddleSchool,Students in Middle School;middle school students +dc/topic/StudentsInPrimarySchool,Students in Primary School;primary school students;students enrolled in primary school dc/topic/Suicide,Suicide dc/topic/SupportServicesStaffInSchools,Support Services Staff In Schools dc/topic/Sustainability,Sustainability;green;sustainable dc/topic/Tariffs,Tariffs dc/topic/Teacher,Teacher;teachers dc/topic/TemperaturePredictions,Temperature Predicitions;max temp forecast;min temp forecast;predict temperature;temp forecast;temperature forecasts;temperature prediction -dc/topic/Temperatures,max temp;maximum temperature;min temp;temperatures +dc/topic/Temperatures,max temp;maximum temperature;min temp;minimum temperature;temperatures dc/topic/Tornado,Tornado dc/topic/TransportationEmissionsByGas,Amount of gases emitted by the transportation sector;Emissions from transportation;Quantity of greenhouse gases emitted by vehicles and transportation systems;The sum of all gases released by transportation activities;The volume of emissions produced by transportation activities;Total amount of gas emissions from the transportation industry;Total quantity of gases released by the transportation sector dc/topic/Tsunami,Tsunami @@ -6212,7 +3749,7 @@ dc/topic/Tuberculosis,Tuberculosis dc/topic/TwoOrMoreRacesFemalePopulationByAge,Two Or More Races Female Population By Age dc/topic/TwoOrMoreRacesMalePopulationByAge,Two Or More Races Male Population By Age dc/topic/TwoOrMoreRacesPopulationByAge,Two Or More Races Population By Age -dc/topic/UnemploymentRate,rate of unemployment +dc/topic/UnemploymentRate,Unemployment Rate;rate of unemployment;unemployment dc/topic/UnintentionalPoisonings,Unintentional Poisonings dc/topic/UnpaidFamilyWorkers,Unpaid Family Workers dc/topic/UrbanFemalePopulationByAge,Urban Female Population By Age @@ -6231,7 +3768,7 @@ dc/topic/Voting,Voting dc/topic/WHOChildImmunization,Child immunization rates;Global Child Immunization;WHO child immunization dc/topic/WHOChildImmunizationsByGender,Child Immunization by gender;Global Child Immunization by gender;WHO child immunization by gender;child immunization split by gender dc/topic/WHOChildImmunizationsByUrbanRural,Child Immunization by urban or rural;Global Child Immunization by urban or rural;WHO child immunization across urban or rural;child immunizations across rural and urban;rural or urban child immunization -dc/topic/WHOChildMortality,Child Mortality;Global Child Mortality;WHO child mortality +dc/topic/WHOChildMortality,Child Mortality;Global Child Mortality;WHO child mortality;deaths among children dc/topic/WHOChildrenNonCommunicableDiseases,Childen with Non Communicable Diseases;Global Childen with Non Communicable Diseases;WHO Childen with Non Communicable Diseases dc/topic/WHODALYByCauses,Disability adjusted life years by causes;Global DALY causes;WHO DALY causes;WHO Disability adjusted life years by causes dc/topic/WHOHealthBehavior,Global Health behaviors;Health behaviors WHO;WHO Health behaviors @@ -6511,7 +4048,7 @@ dc/topic/sdg_2.c,"Adopt measures to ensure the proper functioning of food commod dc/topic/sdg_2.c.1,Indicator of food price anomalies;sdg 2 c 1;sdg 2.c.1;sdg 2c1;sdg Indicator of food price anomalies;sdg2c1;sustainable development goal Indicator of food price anomalies dc/topic/sdg_3,SDG Good Health and Well-being;sdg 3;sdg Good Health and Well-being;sdg3;sustainable development goal Good Health and Well-being dc/topic/sdg_3.1,"By 2030, reduce the global maternal mortality ratio to less than 70 per 100K live births;sdg 3 1;sdg 3.1;sdg 31;sdg By 2030, reduce the global maternal mortality ratio to less than 70 per 100K live births;sdg31;sustainable development goal By 2030, reduce the global maternal mortality ratio to less than 70 per 100K live births" -dc/topic/sdg_3.1.1,Maternal mortality ratio;sdg 3 1 1;sdg 3.1.1;sdg 311;sdg Maternal mortality ratio;sdg311;sustainable development goal Maternal mortality ratio +dc/topic/sdg_3.1.1,sdg 3 1 1;sdg 3.1.1;sdg 311;sdg Maternal mortality ratio;sdg311;sustainable development goal Maternal mortality ratio dc/topic/sdg_3.1.2,Proportion of births attended by skilled health personnel;sdg 3 1 2;sdg 3.1.2;sdg 312;sdg Proportion of births attended by skilled health personnel;sdg312;sustainable development goal Proportion of births attended by skilled health personnel dc/topic/sdg_3.2,"By 2030, end preventable deaths of newborns and children under 5 years of age, with all countries aiming to reduce neonatal mortality to at least as low as 12 per 1,000 live births and under-5 mortality to at least as low as 25 per 1,000 live births;sdg 3 2;sdg 3.2;sdg 32;sdg By 2030, end preventable deaths of newborns and children under 5 years of age, with all countries aiming to reduce neonatal mortality to at least as low as 12 per 1,000 live births and under-5 mortality to at least as low as 25 per 1,000 live births;sdg32;sustainable development goal By 2030, end preventable deaths of newborns and children under 5 years of age, with all countries aiming to reduce neonatal mortality to at least as low as 12 per 1,000 live births and under-5 mortality to at least as low as 25 per 1,000 live births" dc/topic/sdg_3.2.1,Under‑5 mortality rate;sdg 3 2 1;sdg 3.2.1;sdg 321;sdg Under‑5 mortality rate;sdg321;sustainable development goal Under‑5 mortality rate @@ -6632,7 +4169,7 @@ dc/topic/sdg_7.b,"By 2030, expand infrastructure and upgrade technology for supp dc/topic/sdg_7.b.1,Installed renewable energy-generating capacity in developing countries (in watts per capita);sdg 7 b 1;sdg 7.b.1;sdg 7b1;sdg Installed renewable energy-generating capacity in developing countries (in watts per capita);sdg7b1;sustainable development goal Installed renewable energy-generating capacity in developing countries (in watts per capita) dc/topic/sdg_8,SDG Decent Work and Economic Growth;sdg 8;sdg Decent Work and Economic Growth;sdg8;sustainable development goal Decent Work and Economic Growth dc/topic/sdg_8.1,"Sustain per capita economic growth in accordance with national circumstances and, in particular, at least 7 per cent gross domestic product growth per annum in the least developed countries;sdg 8 1;sdg 8.1;sdg 81;sdg Sustain per capita economic growth in accordance with national circumstances and, in particular, at least 7 per cent gross domestic product growth per annum in the least developed countries;sdg81;sustainable development goal Sustain per capita economic growth in accordance with national circumstances and, in particular, at least 7 per cent gross domestic product growth per annum in the least developed countries" -dc/topic/sdg_8.1.1,Annual growth rate of real GDP per capita;sdg 8 1 1;sdg 8.1.1;sdg 811;sdg Annual growth rate of real GDP per capita;sdg811;sustainable development goal Annual growth rate of real GDP per capita +dc/topic/sdg_8.1.1,Annual growth rate of real GDP per capita;GDP per capita;sdg 8 1 1;sdg 8.1.1;sdg 811;sdg Annual growth rate of real GDP per capita;sdg811;sustainable development goal Annual growth rate of real GDP per capita dc/topic/sdg_8.10,"Strengthen the capacity of domestic financial institutions to encourage and expand access to banking, insurance and financial services for all;sdg 8 10;sdg 8.10;sdg 810;sdg Strengthen the capacity of domestic financial institutions to encourage and expand access to banking, insurance and financial services for all;sdg810;sustainable development goal Strengthen the capacity of domestic financial institutions to encourage and expand access to banking, insurance and financial services for all" dc/topic/sdg_8.10.1,(a) Number of commercial bank branches per 100K adults and (b) number of automated teller machines (ATMs) per 100K adults dc/topic/sdg_8.10.2,Proportion of adults (15 years and older) with an account at a bank or other financial institution or with a mobile-money-service provider;sdg 8 10 2;sdg 8.10.2;sdg 8102;sdg Proportion of adults (15 years and older) with an account at a bank or other financial institution or with a mobile-money-service provider;sdg8102;sustainable development goal Proportion of adults (15 years and older) with an account at a bank or other financial institution or with a mobile-money-service provider @@ -6680,216 +4217,131 @@ dc/topic/sdg_9.b,"Support domestic technology development, research and innovati dc/topic/sdg_9.b.1,Proportion of medium and high-tech industry value added in total value added;sdg 9 b 1;sdg 9.b.1;sdg 9b1;sdg Proportion of medium and high-tech industry value added in total value added;sdg9b1;sustainable development goal Proportion of medium and high-tech industry value added in total value added dc/topic/sdg_9.c,Significantly increase access to information and communications technology and strive to provide universal and affordable access to the Internet in least developed countries by 2020;sdg 9 c;sdg 9.c;sdg 9c;sdg Significantly increase access to information and communications technology and strive to provide universal and affordable access to the Internet in least developed countries by 2020;sdg9c;sustainable development goal Significantly increase access to information and communications technology and strive to provide universal and affordable access to the Internet in least developed countries by 2020 dc/topic/sdg_9.c.1,"2G network;3G network;4G network;LTE network;Proportion of population covered by a mobile network, by technology;cell phones;mobile network;mobile phones;sdg 9 c 1;sdg 9.c.1;sdg 9c1;sdg Proportion of population covered by a mobile network, by technology;sdg9c1;sustainable development goal Proportion of population covered by a mobile network, by technology" -dc/tqgf8zv96r5t8,How many people work in textile and fabric finishing mills?;Number of Textile and Fabric Finishing Mills Workers;Number of textile and fabric finishing mills workers;Population of Person: Textile And Fabric Finishing Mills (NAICS/3133);The number of people who work in textile and fabric finishing mills;how many people are employed in textile and fabric finishing mills?;how many people work in textile and fabric finishing mills?;number of textile and fabric finishing mills workers;the number of people who work in textile and fabric finishing mills;what is the number of textile and fabric finishing mill workers?;what is the workforce of textile and fabric finishing mills? -dc/twlffl9b5vgn3,"Foreign Born Divorced People;Population: Divorced, Foreign Born;people who were born in a country other than the united states and are now divorced from their partner;people who were born in a different country and are now divorced from their significant other;people who were born in a foreign country and are now divorced from their spouse;people who were born in another country and are now divorced" -dc/ty7pq88d26963,"Prevalence of Male Who are Physical Inactivity;Prevalence: Male, Physical Inactivity;a high proportion of men are not physically active;a large proportion of men are not physically active;most men are not active enough;the majority of men are physically inactive" -dc/tz59wt1hkl4y,Health Care And Social Assistance Establishments -dc/v33p7mwnpe9vb,"Population: Walked, Management, Business, Science, And Arts Occupations;Walked, Management, Business, Science And Arts Occupations Population;the number of people who work in management, business, science, and the arts;the percentage of people who work in management, business, science, and the arts;the population of people who work in management, business, science, and arts occupations;the workforce in management, business, science, and the arts" -dc/v3qgyhwx13m44,How many people work in scenic and sightseeing transportation?;Number of Scenic and Sightseeing Transportation Workers;Number of scenic and sightseeing transportation workers;Population of Person: Scenic And Sightseeing Transportation (NAICS/487);The number of people who work in scenic and sightseeing transportation;how many people are employed in scenic and sightseeing transportation?;how many people work in scenic and sightseeing transportation;how many people work in scenic and sightseeing transportation?;number of scenic and sightseeing transportation workers;what is the number of scenic and sightseeing transportation workers?;what is the workforce size of scenic and sightseeing transportation? -dc/v78t45118s0bb,"Population Born in State of Residence with Income;Population: With Income, Born in State of Residence;demographics of population by income and state of birth;distribution of population by income and state of birth;number of people by income and state of birth;population by income and state of birth" -dc/v7bhlqc1lfxlg,"African American Foreign-Born Population;Population: Foreign Born, Black or African American Alone;african american immigrants;black immigrants;black immigrants to the united states;foreign-born african americans" -dc/v7yl3k9w3h7e8,"Native Hawaiian or Other Pacific Islander Female Population With Bachelor's Degree or Higher;Population: Bachelors Degree or Higher, Female, Native Hawaiian or Other Pacific Islander Alone;the number of native hawaiian or other pacific islander women with a bachelor's degree or higher;the percentage of native hawaiian or other pacific islander women with a bachelor's degree or higher;the proportion of native hawaiian or other pacific islander women with a bachelor's degree or higher;the share of native hawaiian or other pacific islander women with a bachelor's degree or higher" -dc/vfs5dgtzhp4j4,Population: 35 - 39 Minute -dc/vgwx3kjjzz8wf,People Commuting in 15 to 19 Minutes;Population: 15 - 19 Minute -dc/vh36nvvkwxz5g,"Population That Worked at Home in Natural Resources, Construction and Maintenance Occupation;Population: Worked At Home, Natural Resources, Construction, And Maintenance Occupations;people who worked from home, in natural resources, construction, and maintenance occupations made up the population;people who worked from home, in natural resources, construction, and maintenance occupations were part of the population;the population consisted of people who worked from home, in natural resources, construction, and maintenance occupations;the population was made up of people who worked from home, in natural resources, construction, and maintenance occupations" -dc/vp4cplffwv86g,Number of Printing and Related Support Activities Workers;Number of people who work in printing and related support activities;Number of people working in printing and related support activities;Number of printing and related support activities workers;Number of workers in printing and related support activities;Number of workers in the printing and related support activities industry;Population of Person: Printing And Related Support Activities (NAICS/323);number of people employed in printing and related support activities;number of people who have jobs in printing and related support activities;number of people who work in printing and related support activities;number of printing and related support activities workers;number of workers in the printing and related support activities industry -dc/vp8cbt6k79t94,Population That Walked;Population: Walked;people walked;the number of people who took a stroll;the number of people who walked;the number of people who went for a walk -dc/vqmpm1kxknhlg,"Population: Some Other Race Alone, Not Enrolled in School;Some Other Race Population Not Enrolled in School;population of students who are not enrolled in school and identify as ""some other race"";the number of people of some other race who are not enrolled in school;the number of people of some other race who are not enrolled in school, as a percentage of the total population;the percentage of people of some other race who are not enrolled in school" -dc/vt2q292eme79f,"Population That Uses Taxicab, Motorcycle, Bicycle or Other Means;Population: Taxicab Motorcycle Bicycle or Other Means;how many people get around by taxicab, motorcycle, bicycle, or other means?;what is the number of people who use taxicabs, motorcycles, bicycles, or other means of transportation?;what is the population of people who use taxicabs, motorcycles, bicycles, or other means of transportation?;what is the population of people who use taxis, motorcycles, bicycles, or other means of transportation?" -dc/vxhvgzjhwwmj6,"Asian Native Population;Population: Native, Asian Alone;asian people living in the united states;people of asian ethnicity;population of asian descent;the asian population in the united states" -dc/w1tfjz3h6138,How many people work in warehousing and storage?;Number of Warehousing and Storage Workers;Number of warehousing and storage workers;Population of Person: Warehousing And Storage (NAICS/493);The number of people who work in warehousing and storage;how many people are employed in the warehousing and storage sector?;how many people work in warehousing and storage?;number of people who work in warehousing and storage;number of warehousing and storage workers;what is the number of people employed in warehousing and storage?;what is the workforce size of the warehousing and storage industry? -dc/w8gp902jnk426,Accommodation and Food Services Establishments -dc/wbjmvkyqf6dm3,"Native Population That Speaks Asian and Pacific Island Languages;Population: Asian And Pacific Island Languages, Native;languages spoken by indigenous peoples of asia and the pacific;languages spoken by indigenous peoples of the asia-pacific region;native asian and pacific islander languages;people who speak asian and pacific island languages as their first language" -dc/wc8q05drd74bd,"Population with Car Truck or Van Carpooled;Population: Car Truck or Van Carpooled;car, truck, or van carpooling population;how many people carpooled in a car, truck, or van;number of people who carpooled in a car, truck, or van;population of car, truck, or van carpoolers" -dc/wd5g31pcj0zr3,"Population: Bachelors Degree or Higher, Female, White Alone Not Hispanic or Latino;White Non Hispanic Female Population with Bachelor's Degrees or Higher;females with a bachelor's degree or higher who are white alone and not hispanic or latino;women who are white alone and not hispanic or latino with a bachelor's degree or higher;women with a bachelor's degree or higher who are white alone and not hispanic or latino" -dc/wfktw3b5c50h1,"Count of Establishment: Privately Owned, Solar Electric Power Generation (NAICS/221114);Privately Owned Solar Electric Power Generation Establishments" -dc/whn99h1l0xgth,"Asian Female Population with Some College or Associate's Degrees;Population: Some College or Associates Degree, Female, Asian Alone;women who identify as asian alone and have some college or an associate's degree;women with some college or an associate's degree who identify as asian alone" -dc/wj5l0n6wkep45,"Foreign-Born Population Speaking Other Indo-European Languages;Population: Other Indo European Languages, Foreign Born;foreign-born people who speak languages from the indo-european language family;people who were born in other countries and speak indo-european languages;people who were born outside the us and speak indo-european languages;population of foreign-born people who speak indo-european languages" -dc/wjtdrd9wq4m2g,"African American Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years, Black or African American Alone;african american college undergraduate enrollment;number of african americans enrolled in college undergraduate programs;percentage of african americans enrolled in college undergraduate programs;proportion of african americans enrolled in college undergraduate programs" -dc/wk2vjrzfgyq5d,"Native Hawaiians or Other Pacific Islanders in Primary Schools;Population: Primary School, Native Hawaiian or Other Pacific Islander Alone;native hawaiian or other pacific islander children in primary education;native hawaiian or other pacific islander learners in primary education;native hawaiian or other pacific islander pupils in primary school;native hawaiian or other pacific islander students in elementary schools" -dc/wp843855b1r4c,"1 the number of white people in prison;2 the percentage of white people in prison;3 the proportion of white people in prison;4 the white prison population;Incarcerated White Population;Population (Measured Based on Jurisdiction): Incarcerated, White Alone" -dc/wpkpr906ft37g,"Hispanic Foreign Borns;Population: Foreign Born, Hispanic or Latino;hispanic foreign-borns;hispanic immigrants;hispanics born outside the united states;people of hispanic descent who were born in another country" -dc/wqbf0ppbmly7,"Population with Car Truck or Van Drove Residing in Military Specific Occupations;Population: Car Truck or Van Drove Alone, Military Specific Occupations;number of people in military occupations who drive cars, trucks, or vans;number of people who drive cars, trucks, or vans and live in military occupations;number of people who live in military occupations and drive cars, trucks, or vans;number of people who live in military occupations and drive vehicles" -dc/ws19bm1hl105b,How many people work in wood product manufacturing?;Number of Wood Product Manufacturing Workers;Number of people who work in wood product manufacturing;Number of wood product manufacturing workers;Population of Person: Wood Product Manufacturing (NAICS/321);The number of people who work in wood product manufacturing;Wood product manufacturing employment;how many people are employed in wood product manufacturing?;how many people work in wood product manufacturing?;number of people who work in wood product manufacturing;number of wood product manufacturing workers;what is the number of wood product manufacturing workers?;what is the workforce size of wood product manufacturing? -dc/wv0mr2t2f5rj9,1 The total amount of money paid to printing and related support activities workers;The total amount of money earned by printing and related support activities workers;The total amount of money paid to printing and related support activities workers;Total Wages Paid to Printing and Related Support Activities Workers;Total wages paid to printing and related support activities workers;Wages Total of Person: Printing And Related Support Activities (NAICS/323);the total amount of money paid to printing and related support activities workers;the total compensation paid to printing and related support activities workers;the total earnings of printing and related support activities workers;the total income of printing and related support activities workers;total wages of printing and related support activities workers -dc/wyxmw2dy6t2xh,"Population: Graduate or Professional School, White Alone Not Hispanic or Latino;White Non-Hispanic Population Who are Graduates or in Profession School;white non-hispanics who are college-educated or in school to become so;white non-hispanics who are pursuing a professional degree;white non-hispanics who have graduated from college or are currently enrolled in a professional school;white non-hispanics with a post-secondary education" -dc/wzz9t818m1gk8,Earnings of those employed in manufacturing;How much money workers in the manufacturing make;Income for workers in the manufacturing sector;The total amount of money earned by manufacturing workers;The total amount of money paid to manufacturing workers;The total amount of money that manufacturing workers earn;Total Wages Paid to Manufacturing Workers;Total wages paid to manufacturing workers;Wages Total of Person: Manufacturing (NAICS/31-33);Wages for employees in the manufacturing field;the total amount of money paid to manufacturing workers;the total amount of salaries paid to manufacturing workers;the total amount of wages paid to manufacturing workers;the total compensation paid to manufacturing workers;total wages of manufacturing workers -dc/x13tvt8jsgrm4,"Prevalence of Male Population with Obesity;Prevalence: Male, Obesity;obesity is a common problem among men;the incidence of obesity in males;the number of obese males;the prevalence of obesity in males is high" -dc/x3gghqtglpr59,Median Income (Real Individual Earnings Before Deductions): Finance And Insurance (NAICS/52);Median Income for People Working in the Finance and Insurance Industry;Median income for people working in the finance and insurance industry;Number of people working in the finance and insurance industry;The average salary for individuals employed in the finance and insurance sector;The median wage of finance and insurance workers;The middle income of finance and insurance workers;Total pay earned by employees in the finance and insurance field;how much money do people in the finance and insurance industry make on average?;median income of finance and insurance workers;the median salary for finance and insurance workers;what is the average salary for people working in the finance and insurance industry?;what is the median income for finance and insurance workers;what is the median income for people working in the finance and insurance industry?;what is the typical salary for people working in the finance and insurance industry? -dc/x4jl7c411edy9,"American Indian or Alaska Native Population Not Enrolled in School;Population: American Indian or Alaska Native Alone, Not Enrolled in School;the number of american indians or alaska natives not enrolled in school;the percentage of american indians or alaska natives not enrolled in school;the proportion of american indians or alaska natives not enrolled in school;the share of american indians or alaska natives not enrolled in school" -dc/x52jxxbwspczh,Count of Establishment: Transportation And Warehousing (NAICS/48-49);Transportation and Warehousing -dc/x95kmng969n42,Average salary for workers in the utilities field;Income in the middle for the utilities sector;Median Income (Real Individual Earnings Before Deductions): Utilities (NAICS/22);Median Income of Utilities Workers;Median income of utilities workers;Median pay for utilities industry;The amount of money that the middle 50% of utilities workers make;Typical earnings for utilities workers;What is the average salary of a utility worker?;What is the median income for utilities workers?;average salary of utilities workers;median income of utilities workers;what's the average salary for utilities workers?;what's the median income for utilities workers?;what's the pay range for utilities workers?;what's the typical income for utilities workers? -dc/x9e7150515yt7,"Asian Population In Primary School;Population: Primary School, Asian Alone;what is the number of asian students in elementary school?;what is the percentage of asian students in primary school?;what is the proportion of asian students in primary school?;what's the percentage of asian students in primary school?" -dc/xdfcsgf05b4mc,"Asian Foreign-Born Population;Population: Foreign Born, Asian Alone;population of asian immigrants;the asian immigrant population in the united states;the number of asian immigrants in the united states" -dc/xefh58ckxwk7b,"Incarcerated Asian Female Population;Population (Measured Based on Jurisdiction): Female, Incarcerated, Asian Alone;asian female prisoners;asian women in prison;asian women incarcerated;female asian prisoners" -dc/xewq6n5r3nzch,"Count of Mortality Event (Measured Based on Jurisdiction): Judicial Execution, Incarcerated;Incarcerated Population Deaths From Judicial Execution;number of people in detention who died from being put to death by the justice system;number of people in jail who died from being put to death by the state;number of people in prison who died from being executed by the courts;number of people in prison who died from being executed by the government" -dc/xj2nk2bg60fg,Median Income (Real Individual Earnings Before Deductions): Information (NAICS/51);Median Income for People Working in the Information Industry;Median income for people working in the information industry;Middle income for those working in the information sector;Number of people employed in the information industry;Total pay earned by those working in the information sector;how much money do people in the information industry make on average?;median income of information workers;the median salary for information workers;the middle ground of income for information workers;the typical income of information workers;what is the median income for information workers;what is the median income for people working in the information industry?;what is the typical income for people working in the information industry?;what is the usual income for people working in the information industry? -dc/xmpy89x1nh8cg,"Percent of Males That Have Diabetes;Prevalence: Male, Diabetes;What is the percentage of males diagnosed with diabetes;What is the percentage of males who have diabetes;What is the prevalence of diabetes in males;What percentage of males have diabetes;What proportion of males have diabetes;percent of males that have diabetes;what is the percentage of males with diabetes?;what is the proportion of males with diabetes?;what is the rate of diabetes among males?;what percentage of males have diabetes?" -dc/xx3v7dmqp95h3,"Revenue Of Biomass Electric Power Generation Industries With Payroll;Revenue of Establishment: Biomass Electric Power Generation (NAICS/221117), With Payroll" -dc/y9yb58snpfzw5,"Population: Taxicab Motorcycle Bicycle or Other Means, Management, Business, Science, And Arts Occupations;Taxicab Motorcycle Bicycle or Other Means, Management, Business, Science And Arts Occupations Population;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, management, business, science, and arts;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, management, business, science, and the arts;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, or in management, business, science, or the arts;population of people who work in taxicabs, motorcycles, bicycles, or other means of transportation, or in management, business, science, or the arts fields" -dc/ye0f3ej72hhj7,"Count of Housing Unit: Without Mortgage, 2,000 - 2,999 USD;Housing Units Without Mortgage Earning 2,000 to 2,999 USD" -dc/yf4jd2tbl49cc,"Male Population Who Did Not Work Full Time;Population: Male, Not Worked Full Time;the male population who did not work full time;the number of men who did not work full time;the percentage of men who did not work full time;the proportion of men who did not work full time" -dc/yfk47wfg2dqh7,Annual Stock of Coal For Other Industrial Use;Annual Stock of Coal: Other Industrial;coal inventory for other industrial use;coal reserves for other industrial use;coal stockpile for other industrial use;coal supply for other industrial use -dc/yksgwhwsbtv9c,"Incarcerated Asians;Population (Measured Based on Jurisdiction): Incarcerated, Asian Alone;asian prisoners;asians who are behind bars;asians who are incarcerated;people of asian descent who are in prison" -dc/ym3bfmz5e91gg,"Foreign Born White Population;Population: Foreign Born, White Alone;population of white people born outside of the united states;the number of white people in the united states who are foreign-born;the number of white people who were born in another country and now live in the united states;white population of foreign origin" -dc/yn0h4nw4k23f1,How many people work in pipeline transportation?;Population of People Working in Pipeline Transportation;Population of Person: Pipeline Transportation (NAICS/486);Population of people working in pipeline transportation;number of people employed in pipeline transportation;number of people employed in the pipeline transportation industry;number of people working in pipeline transportation;number of people working in the pipeline transportation industry;number of pipeline transportation workers -dc/yneg81m4e49z6,"Incarcerated White Male Population;Population (Measured Based on Jurisdiction): Male, Incarcerated, White Alone;the incarcerated white male population;the number of white men in jail;the percentage of white men who are incarcerated;white men in prison" -dc/yw52qqrrb2w11,"Average earnings of those employed in forestry, fishing, and hunting;How much money on average workers in agriculture make;Median Income (Real Individual Earnings Before Deductions): Agriculture, Forestry, Fishing And Hunting (NAICS/11);Median Income of People Working in the Agriculture, Forestry, Fishing, and Hunting Industry;Median income of people working in the agriculture, forestry, fishing, and hunting industry;Middle percentile income for workers in the agriculture, forestry, fishing, and hunting sector;The median income of workers in agriculture, forestry, fishing, and hunting;The mid-point income of workers in agriculture, forestry, fishing, and hunting;The middle income of workers in agriculture, forestry, fishing, and hunting;What's the typical salary for people working in agriculture, forestry, fishing, and hunting.;how much money do people in the agriculture, forestry, fishing, and hunting industry make on average?;median income of agriculture, forestry, fishing and hunting workers;the average salary of people working in the agriculture, forestry, fishing, and hunting industry;the average yearly income of people working in the agriculture, forestry, fishing, and hunting industry;the average yearly income of workers in the agriculture, forestry, fishing, and hunting industries;the middle value of the salaries of people working in the agriculture, forestry, fishing, and hunting industry;what is the median salary for workers in agriculture, forestry, fishing, and hunting" -dc/yxxs3hh2g2shd,How much do nonmetallic mineral product manufacturing workers make?;The total amount of money earned by nonmetallic mineral product manufacturing workers;The total amount of money paid to nonmetallic mineral product manufacturing workers;Total Wages for People Working in the Nonmetallic Mineral Product Manufacturing Industry;Total wages for people working in the nonmetallic mineral product manufacturing industry;Wages Total of Person: Nonmetallic Mineral Product Manufacturing (NAICS/327);the average salary for people working in the nonmetallic mineral product manufacturing industry;the average wage for people working in the nonmetallic mineral product manufacturing industry;the total amount of money earned by people working in the nonmetallic mineral product manufacturing industry;the total amount of money paid to people working in the nonmetallic mineral product manufacturing industry;total wages of nonmetallic mineral product manufacturing workers -dc/z27q5dymqyrnf,How many people work in the apparel manufacturing industry?;Population of People Working in the Apparel Manufacturing Industry;Population of Person: Apparel Manufacturing (NAICS/315);Population of people working in the apparel manufacturing industry;The number of people who make clothes;The number of people who work in the apparel manufacturing industry;how many people are employed in the apparel manufacturing sector?;how many people work in the apparel manufacturing industry?;number of apparel manufacturing workers;what is the number of people employed in the apparel manufacturing industry?;what is the size of the apparel manufacturing workforce? -dc/z29z7w7ldnwl4,"Count of Mortality Event (Measured Based on Jurisdiction): Assault(Homicide), Male, Incarcerated;Death of Incarcerated Male Population Caused By Assault" -dc/z6w4rxbxb4eg8,"Population (Measured Based on Custody): 0 - 17 Years, Incarcerated;Population Aged 0 to 17 Years Who are Incarcerated;number of children in prison;number of incarcerated minors;number of incarcerated people aged 0 to 17;number of incarcerated youth" -dc/zbpsz8dg01nh2,1 The average yearly salary of transportation and warehousing workers;Average salary for workers in the transportation and warehousing field;Income in the middle for the transportation and warehousing sector;Median Income (Real Individual Earnings Before Deductions): Transportation And Warehousing (NAICS/48-49);Median Income of Transportation and Warehousing Workers;Median income of transportation and warehousing workers;Median pay for transportation and warehousing industry;The average amount of money that transportation and warehousing workers make;The average yearly income of transportation and warehousing workers;The average yearly salary of transportation and warehousing workers;Typical earnings for transportation and warehousing workers;median income of transportation and warehousing workers;the average salary of transportation and warehousing workers;the median pay of transportation and warehousing workers;the mid-point income of transportation and warehousing workers;the middle salary of transportation and warehousing workers -dc/zcth2y8fqte1f,"Population Walking in Sales And Office Occupations;Population: Walked, Sales And Office Occupations;how many people in sales and office occupations walk?;how many sales and office workers walk?;what is the number of people in sales and office occupations who walk?;what is the number of sales and office workers who walk?" -dc/zdb0f7sj2419d,"Incarcerated Hispanic Population;Population (Measured Based on Jurisdiction): Incarcerated, Hispanic or Latino;hispanic inmates;hispanic people in jail;hispanic people in prison;hispanic prisoners" -dc/zf0wjwwyddbj4,"Number of Military-Specific Occupations Worked at Home;Population: Worked At Home, Military Specific Occupations;number of military occupations that can be done from home;number of military occupations that can be done remotely;number of people who work in the military and telecommute;number of people who work in the military and work from home" -dc/zgct0hgv0l8zf,"Count of Mortality Event (Measured Based on Jurisdiction): AIDS, Male, Incarcerated;Deaths of Incarcerated Male Population Caused by AIDS;aids deaths in the male prison population;aids-related deaths in incarcerated males;aids-related deaths in male prisons;male prisoners who died of aids" -dc/zkwm5fc58dy17,"Population: Widowed, Born in State of Residence;Widowed Population Born in the State of Residence;people who are widowed and are residents of the state they were born in;people who are widowed and live in the state they were born in;people who are widowed and were born in the same state they currently live in;people who are widowed and were born in the state they currently live in" -dc/zmp6qzgzp7ly2,"Asian Graduates In Professional Schools;Population: Graduate or Professional School, Asian Alone;asian graduates of professional schools;asian people who have completed their education at professional schools;asian people who have earned degrees from professional schools;asian students who have graduated from professional schools" -dc/zq864lhfql079,"Population: White Alone, Enrolled in School;White Population Enrolled in School;number of white students in school;percentage of white students in school;white school enrollment;white school population" -dc/ztt7qcdctxdv6,"Population of Other Native Races;Population: Native, Some Other Race Alone;other native populations;the number of people of other native races;the number of people who identify as other native races;the population of other native peoples" -dc/zv5g19y8dl9r1,"Multiracial Population Enrolled in College Undergraduate Years;Population: Enrolled in College Undergraduate Years, Two or More Races;multiracial students in college;the number of multiracial students enrolled in college undergraduate programs;the percentage of multiracial students enrolled in college undergraduate programs;the proportion of multiracial students enrolled in college undergraduate programs" -dc/zvr6djt1p9gj3,"Hispanic Population in Middle School;Population: Middle School, Hispanic or Latino;the number of hispanic students in middle school;the percentage of hispanic students in middle school;the proportion of hispanic students in middle school;the share of hispanic students in middle school" -dc/zz6gwv838v9w,"Amount of Economic Activity (Real Value): Gross Domestic Production, Transportation And Warehousing (NAICS/48-49);Gross Domestic Production Transportation And Warehousing" -indianCensus/Count_Person_Religion_Buddhist,Buddhist Population;Population: Buddhism;how many buddhists are there in the world?;what is the global buddhist population?;what is the number of buddhists in the world?;what is the worldwide buddhist population? -indianCensus/Count_Person_Religion_Buddhist_Female,"Buddhist Female Population;Population: Female, Buddhism;the female buddhist population;the number of buddhist women;the number of women who are buddhist;the population of buddhist women" -indianCensus/Count_Person_Religion_Buddhist_Illiterate,"Illiterates Buddhists;Population: Illiterate, Buddhism;buddhists who are illiterate;illiterate buddhists;illiterate people who practice buddhism;people who are illiterate and follow buddhism" -indianCensus/Count_Person_Religion_Buddhist_Literate,"Literate Buddhist Population;Population: Literate, Buddhism;the literacy rate of buddhists;the number of buddhists who can read and write;the percentage of buddhists who can read and write;the proportion of buddhists who can read and write" -indianCensus/Count_Person_Religion_Buddhist_MainWorker,"Buddhist Main Workers;Main Worker Buddhists;Population: Buddhism, Main Worker;buddhists who are employed;buddhists who are main workers;buddhists who have jobs;buddhists who work full-time" -indianCensus/Count_Person_Religion_Buddhist_Male,"Male Buddhists;Population: Male, Buddhism;buddhist men;male followers of buddhism;men who follow the teachings of buddha;men who practice buddhism" -indianCensus/Count_Person_Religion_Buddhist_MarginalWorker,"Buddhism Marginal Workers;Population: Buddhism, Marginal Worker;buddhism and marginal workers;buddhism's relationship with marginal workers;how buddhism can help marginal workers;the role of buddhism in the lives of marginal workers" -indianCensus/Count_Person_Religion_Buddhist_NonWorker,"Buddhist Non-Workers;Population: Buddhism, Non Worker;buddhist non-clergy;buddhist non-monks;people who don't work in buddhism;those who don't work in the buddhist faith" -indianCensus/Count_Person_Religion_Buddhist_Rural,"Population Buddhist In Rural Areas;Population: Rural, Buddhism;buddhist population in rural areas;number of buddhists in rural areas;what is the buddhist population in rural areas;what percentage of the population in rural areas is buddhist" -indianCensus/Count_Person_Religion_Buddhist_Urban,"Population: Urban, Buddhism;Urban Buddhists;buddhists who live in cities;buddhists who live in urban areas;city-dwelling buddhists;urbanites who practice buddhism" -indianCensus/Count_Person_Religion_Buddhist_Workers,"Buddhist Total Workers;Population: Buddhism, Worker;the number of buddhist workers;the number of people who are buddhist and who are also workers;the number of people who are employed and who are also buddhist;the total number of workers who are buddhist" -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6,"Buddhist Population Below 6 Years Old;Population: 6 Years or Less, Buddhism;number of buddhists aged 0-5;number of buddhists aged 0-6;number of buddhists under 6 years old;number of buddhists younger than 6 years old" -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Female,"Buddhist Female Population Aged 6 Years or Less;Population: 6 Years or Less, Female, Buddhism;buddhist female population under 6;number of buddhist females aged 6 or less;number of buddhist females under 6 years old;number of buddhist girls under 6" -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Male,"Buddhist Male Population Aged 6 Years or Less;Population: 6 Years or Less, Male, Buddhism;count of buddhist boys under 6;number of buddhist boys aged 0-5;number of buddhist males aged 0-5;number of buddhist males under 6 years old" -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural,"Buddhist Population Aged 6 Years or Less in Rural Areas;Population: 6 Years or Less, Rural, Buddhism;the number of buddhists in rural areas who are under the age of 6;the number of buddhists in rural areas who are younger than 6;the number of buddhists under the age of 6 in rural areas;the percentage of the buddhist population in rural areas who are under the age of 6" -indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban,"Buddhists Aged 6 Years or Less In Urban Areas;Population: 6 Years or Less, Urban, Buddhism;buddhists aged 6 and under living in urban areas;buddhists in urban areas aged 6 and under;urban buddhists aged 6 and younger;urban buddhists under the age of 6" -indianCensus/Count_Person_Religion_Christian,Christian Population;Population: Christianity;the christian population of the united states;the number of christians in the united states;the percentage of people in the united states who are christian;the proportion of the united states population that is christian -indianCensus/Count_Person_Religion_Christian_Female,"1 female christians;3 women who identify as christian;4 the number of women who are christian;5 the female christian community;Christian Female Population;Population: Female, Christianity" -indianCensus/Count_Person_Religion_Christian_Illiterate,"Illiterate Christian Population;Population: Illiterate, Christianity;the number of christians who cannot read;the number of christians who cannot read or write;the percentage of christians who are illiterate;the proportion of christians who cannot read or write" -indianCensus/Count_Person_Religion_Christian_Literate,"Literate Christians;Population: Literate, Christianity;christians who are educated;christians who are literate;christians who are well-read;christians who can read" -indianCensus/Count_Person_Religion_Christian_MainWorker,"Population: Christianity, Main Worker" -indianCensus/Count_Person_Religion_Christian_Male,"Christian Male Population;Population: Male, Christianity;population of men who are christian;the male christian demographic;the male christian population;the number of christian men" -indianCensus/Count_Person_Religion_Christian_MarginalWorker,"Christian Marginal Workers Population;Population: Christianity, Marginal Worker;population of christian marginal workers;population of christian workers who are marginalized;population of christian workers who are on the margins;population of christian workers who are working in low-wage jobs" -indianCensus/Count_Person_Religion_Christian_NonWorker,"Christian Non-Workers;Population: Christianity, Non Worker;christians who are unemployed;christians who aren't employed;christians who don't have jobs;people who are christian and don't work" -indianCensus/Count_Person_Religion_Christian_Rural,"Christians in Rural Areas;Population: Rural, Christianity;christians who live in rural areas;people who live in rural areas and are christian;people who practice christianity in rural areas;rural christians" -indianCensus/Count_Person_Religion_Christian_Urban,"Christian Population in Urban Areas;Population: Urban, Christianity;the distribution of christians in urban areas;the number of christians in cities;the percentage of christians in urban areas;the prevalence of christianity in cities" -indianCensus/Count_Person_Religion_Christian_Workers,"Christian Workers;Population: Christianity, Worker;christian employees;christian laborers;christian people who work;christian workers" -indianCensus/Count_Person_Religion_Christian_YearsUpto6,"Christian Population Below 6 Years Old;Population: 6 Years or Less, Christianity;the christian population aged 0-5;the number of christians under the age of 6;the percentage of christians who are under the age of 6;the proportion of christians who are under the age of 6" -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Female,"Christian Female Population Aged 6 Years or Less;Christian Female Population Aged Below 6 Years;Population: 6 Years or Less, Female, Christianity;the christian female population aged 6 and younger;the christian female population under the age of 6;the number of christian females aged 6 and under;the number of christian females aged 6 or less" -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Male,"Christian Male Population Aged 6 Years or Less;Population: 6 Years or Less, Male, Christianity;christian males aged 6 and under;christian males under the age of 6;the number of christian males aged 6 or younger;the population of christian males aged 6 or younger" -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Christianity" -indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Christianity;Urban Christians Aged 6 Years Or Less;christians in urban areas who are six years old or less;christians in urban areas who are six years old or younger;urban christians aged six and under;urban christians under the age of six" -indianCensus/Count_Person_Religion_Hindu,Hinduism Population;Population: Hinduism;hinduism's population;the global hindu population;the number of people who follow hinduism;the number of people who practice hinduism -indianCensus/Count_Person_Religion_Hindu_Female,"Population of Female Hindus;Population: Female, Hinduism;the female population of hindus;the number of female hindus in the world;the number of female hindus worldwide;the number of women who practice hinduism" -indianCensus/Count_Person_Religion_Hindu_Illiterate,"Population of Illiterate Hinduism;Population: Illiterate, Hinduism;how many hindus are illiterate?;number of illiterate hindus;percentage of hindus who are illiterate;what is the percentage of hindus who are illiterate?" -indianCensus/Count_Person_Religion_Hindu_Literate,"Literate Hindus;Population: Literate, Hinduism;hindus who are learned;hindus who are literate;hindus who are well-read;hindus who can read and write" -indianCensus/Count_Person_Religion_Hindu_MainWorker,"Hindu Main Workers;Population: Hinduism, Main Worker;hindu workers" -indianCensus/Count_Person_Religion_Hindu_Male,"Hinduism Male Population;Population: Male, Hinduism;male hindu population;the male followers of hinduism;the male population of hindus;the number of men who practice hinduism" -indianCensus/Count_Person_Religion_Hindu_MarginalWorker,"Hindu Marginal Workers;Population: Hinduism, Marginal Worker;hindu workers on the margins of society;hindu workers who are marginalized" -indianCensus/Count_Person_Religion_Hindu_NonWorker,"Non-Working Hindus;Population: Hinduism, Non Worker;hindus who are not employed;hindus who are not in the workforce;hindus who are not working;hindus who are unemployed" -indianCensus/Count_Person_Religion_Hindu_Rural,"Hindu Population In Rural Areas;Population: Rural, Hinduism;the distribution of hindus across rural and urban areas;the number of hindus living in rural areas;the percentage of hindus living in rural areas;the rural hindu population" -indianCensus/Count_Person_Religion_Hindu_Urban,"Population: Urban, Hinduism;Total Hindu Population in Urban Areas;the number of hindus living in cities;the number of hindus living in metropolitan areas;the number of hindus living in urban areas;the number of hindus living in urban centers" -indianCensus/Count_Person_Religion_Hindu_Workers,"Population of Hindu Workers;Population: Hinduism, Worker;number of hindu workers;number of people who are both hindu and working;number of people who identify as hindu and have a job;number of people who practice hinduism and are employed" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6,"Hindu Population Below 6 Years Old;Population: 6 Years or Less, Hinduism;number of hindu children aged 0-5;number of hindu children under 6 years old;number of hindus below 6 years old;population of hindus under 6 years old" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Female,"Hindu Female Population Aged 6 Years Less;Population: 6 Years or Less, Female, Hinduism;hindu females are, on average, 6 years younger than the average female;hindu females are, on average, 6 years younger than the general population;the average age of a hindu female is 6 years less than the average age of a female in the general population;the female hindu population is 6 years younger" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Male,"Hindu Male Population Aged 6 Years or Less;Population: 6 Years or Less, Male, Hinduism;hindu male population under 6 years of age;hindu male population under 6 years old;number of hindu boys aged 6 years or less;number of hindu males aged 6 years or less" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Hinduism;Rural Hindus Aged 6 Years or Less;hindus living in rural areas who are 6 years old or younger;hindus under the age of 6 who live in rural areas;hindus who are 6 years old or younger and are rural residents;hindus who are 6 years old or younger and live in rural areas" -indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban,"Hindus Aged 6 Years or More in Urban Areas;Population: 6 Years or Less, Urban, Hinduism;hindus aged 6 years or older living in urban areas;hindus in urban areas aged 6 years or older;hindus living in urban areas who are aged 6 years or older;urban hindus aged 6 years or older" -indianCensus/Count_Person_Religion_Jain,Jainism Population;Population: Jainism;how many jains are there in the world?;how many people practice jainism?;what is the number of jains?;what is the population of jains? -indianCensus/Count_Person_Religion_Jain_Female,"Female Jainists;Population: Female, Jainism;jain female followers;jain women;jainism practitioners who are women;women who follow jainism" -indianCensus/Count_Person_Religion_Jain_Illiterate,"Illiterate Jain Population;Population: Illiterate, Jainism;the number of jains who cannot read or write;the number of jains who do not have basic literacy skills;the percentage of jains who are illiterate;the proportion of jains who are illiterate" -indianCensus/Count_Person_Religion_Jain_Literate,"Population: Literate, Jainism" -indianCensus/Count_Person_Religion_Jain_MainWorker,"Jain Main Workers Population;Population: Jainism, Main Worker;jain population in the workforce;number of jains in the workforce" -indianCensus/Count_Person_Religion_Jain_Male,"Population of Male Jains;Population: Male, Jainism;count of male jains;how many jains are male;how many male jains are there;number of male jains" -indianCensus/Count_Person_Religion_Jain_MarginalWorker,"Marginal Jain Workers;Population: Jainism, Marginal Worker;jain workers who are not given equal opportunities;jain workers who are not given the same opportunities as other workers;jain workers who are not treated fairly" -indianCensus/Count_Person_Religion_Jain_NonWorker,"Jainist Non-Workers;Population: Jainism, Non Worker;jainist people who are not employed;jainist people who are not in the workforce;jainist people who are unemployed;jainist people who don't work" -indianCensus/Count_Person_Religion_Jain_Rural,"Jain Population in Rural Areas;Population: Rural, Jainism;how many jains live in rural areas?;how many people in rural areas are jains?;what is the jain population in rural areas?;what is the number of jains in rural areas?" -indianCensus/Count_Person_Religion_Jain_Urban,"Population: Urban, Jainism;Total Jain Population in Urban;the number of jains in urban areas;the number of jains in urban settings;the number of jains living in urban areas;the population of jains in cities" -indianCensus/Count_Person_Religion_Jain_Workers,"Jain Workers;Population: Jainism, Worker;jain employees;jain people who work;jain workers;jains who work" -indianCensus/Count_Person_Religion_Jain_YearsUpto6,"Jainist Population Aged 6 Years or Less;Population: 6 Years or Less, Jainism;jain population aged 6 and below;jain population under 6 years old;jains aged 6 and under;number of jains aged 6 or younger" -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Female,"Jain Female Population Aged Below 6 Years;Population: 6 Years or Less, Female, Jainism;jain female population aged 0-5;jain female population under 6 years old;jain female population under the age of 6;number of jain girls under 6 years old" -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Male,"Male Jainists Aged Upto 6 Years In Urban Areas;Population: 6 Years or Less, Male, Jainism;male jainists aged 6 and under in urban areas;urban male jainists up to 6 years old" -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural,"Jainists Aged 6 Years or Less In Rural Areas;Population: 6 Years or Less, Rural, Jainism;jain children under 6 in rural areas;jain kids under 6 in rural areas;jain under-6s in rural areas;jains under 6 in rural areas" -indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban,"Jainist Population Aged 6 Years or Less In Urban Areas;Population: 6 Years or Less, Urban, Jainism;jain population aged 6 or less in urban areas;jains aged 6 or younger in urban areas;number of jains aged 6 or younger in urban areas;number of jains aged 6 years or less in urban areas" -indianCensus/Count_Person_Religion_Muslim,Islam Population;Population: Islam;the global muslim population;the number of muslims in the world;the number of people who follow islam;the number of people who practice islam -indianCensus/Count_Person_Religion_Muslim_Female,"Muslim Female Population;Population: Female, Islam;the muslim female demographic;the muslim female population;the number of muslim women;the number of women who identify as muslim" -indianCensus/Count_Person_Religion_Muslim_Illiterate,"Illiterate Muslim Population;Population: Illiterate, Islam;the muslim population that is illiterate;the number of muslims who cannot read or write;the percentage of muslims who are illiterate;the proportion of muslims who are illiterate" -indianCensus/Count_Person_Religion_Muslim_Literate,"Literate Muslims;Population: Literate, Islam;muslims who are educated;muslims who are literate;muslims who are well-read;muslims who can read and write" -indianCensus/Count_Person_Religion_Muslim_MainWorker,"Muslim Main Workers;Population: Islam, Main Worker" -indianCensus/Count_Person_Religion_Muslim_Male,"Islamic Male Population;Population: Male, Islam;the male population of muslims;the number of men who practice islam;the population of muslim males;the total population of muslim men" -indianCensus/Count_Person_Religion_Muslim_MarginalWorker,"Marginal Islamic Workers;Population: Islam, Marginal Worker;islamic workers who are disadvantaged;islamic workers who are marginalized;islamic workers who are not well-off;islamic workers who are struggling" -indianCensus/Count_Person_Religion_Muslim_NonWorker,"Muslim Non-Worker Population;Population: Islam, Non Worker;number of muslims who are not working;population of muslims who are not employed;the number of muslims who are not in the workforce;the percentage of muslims who are not employed" -indianCensus/Count_Person_Religion_Muslim_Rural,"Muslim Population in Rural Areas;Population: Rural, Islam;the muslim population of rural areas;the number of muslims living in rural areas;the percentage of muslims living in rural areas;the proportion of muslims living in rural areas" -indianCensus/Count_Person_Religion_Muslim_Urban,"Population: Urban, Islam;Urban Islamic Population;number of muslims living in cities;number of muslims living in urban areas;population of muslims in urban areas;proportion of muslims living in cities" -indianCensus/Count_Person_Religion_Muslim_Workers,"Muslim Workers;Population: Islam, Worker;muslim employees;muslim workers in the united states;muslim workers in the workforce;muslim workers in the workplace" -indianCensus/Count_Person_Religion_Muslim_YearsUpto6,"Islam Population Aged 6 Years or Less;Population: 6 Years or Less, Islam;the muslim population under 6 years old;the number of muslims under the age of 6;the number of muslims who are 6 years old or younger;the number of people who practice islam and are under 6 years old" -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Female,"Islam Female Population Below 6 Years;Population: 6 Years or Less, Female, Islam;female population of islam below 6 years;islam female population aged 0-5 years;islam female population under 6 years;number of islam female population below 6 years" -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Male,"Muslim Male Population Below 6 Years Old in Urban Areas;Population: 6 Years or Less, Male, Islam;muslim boys under 6 in urban areas;muslim male children under 6 in urban areas;muslim male population under 6 in cities;muslim male population under 6 in urban areas" -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural,"Islamic Population Aged Less Than 6 Years in Rural Areas;Population: 6 Years or Less, Rural, Islam;the number of islamic people aged 0-5 in rural areas;the number of islamic people under 6 years old in rural areas;the percentage of islamic people aged 0-5 in rural areas;the percentage of islamic people under 6 years old in rural areas" -indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban,"Muslim Population Aged 6 Years or Less in Urban Areas;Population: 6 Years or Less, Urban, Islam;the muslim population under the age of 6 in urban areas;the number of muslims aged 6 years or less in urban areas;the number of muslims aged 6 years or less in urban areas as a percentage of the total population;the percentage of muslims aged 6 years or less in urban areas" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions,Other Religion and Persuasions Population;Population: India Census_Other Religion And Persuasions;other beliefs in india;other faiths in india;other religions and beliefs in india;other religious groups in india -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Female,"Population: Female, India Census_Other Religion And Persuasions;Total Female Population of Other Religions and Persuasions;female population who practice other religions or persuasions;number of women who follow other religions or persuasions;the number of women who practice other religions or persuasions;total number of female adherents to other religions or persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Illiterate,"Other Religion and Persuasions Illiterate Population;Population: Illiterate, India Census_Other Religion And Persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Literate,"Other Religion and Persuasions Literate Population;Population: Literate, India Census_Other Religion And Persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MainWorker,"Main Workers of Other Religions And Persuasions;Population: India Census_Other Religion And Persuasions, Main Worker" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Male,"Male Population of Other Religion And Persuasions;Population: Male, India Census_Other Religion And Persuasions;male population of other beliefs;men who have a different religious belief system;number of men with other religions and persuasions;the number of men who identify with a religion other than christianity" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_MarginalWorker,"Marginal Workers of Other Religions And Persuasions;Population: India Census_Other Religion And Persuasions, Marginal Worker;workers of other religions and persuasions who are marginalized" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_NonWorker,"Other Religion and Persuasions Non-Workers;Population: India Census_Other Religion And Persuasions, Non Worker;people who are not employed and do not belong to any religion or persuasion;people who are not employed and do not identify with any religion or religious persuasion;people who are not in the workforce and have other religious persuasions;people who are unemployed and have other religions or persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Rural,"Population: Rural, India Census_Other Religion And Persuasions;Total Population of Other Religions And Persuasions in Rural Areas;how many people in rural areas practice other religions or persuasions?;number of people in rural areas who practice other religions and persuasions;what is the number of people in rural areas who identify with other religions or persuasions?;what is the total population of people in rural areas who practice other religions or persuasions?" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Urban,"People Of Other Religion And Persuasions in Urban Areas;Population: Urban, India Census_Other Religion And Persuasions;people of different religions and beliefs in cities;people of different religions and beliefs in urban areas;people of minority religions in urban areas;people of other faiths and creeds in cities" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_Workers,"Population: India Census_Other Religion And Persuasions, Worker" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6,"Persuaded Indians To Other Religions Aged 6 Years or Less;Population: 6 Years or Less, India Census_Other Religion And Persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Female,"Other Religion Female Population Aged 6 Years or Less;Population: 6 Years or Less, Female, India Census_Other Religion And Persuasions;female population under 6 years of age with other religions;number of female children under 6 years of age with other religions;number of females under 6 years of age with other religions;number of girls under 6 years of age with other religions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Male,"Male Population of Other Religion And Persuasions Aged 6 Years or Less;Population: 6 Years or Less, Male, India Census_Other Religion And Persuasions;male population aged 6 or less with other religions or persuasions;number of males aged 6 years or less who are not affiliated with any religion;number of males under 6 with non-christian religions or persuasions;number of males under 6 years old with other religions or persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Rural,"Population Aged 6 Years Or Less of Other Religions and Persuasions in Rural Areas;Population: 6 Years or Less, Rural, India Census_Other Religion And Persuasions;number of children under 6 in rural areas who identify with a non-christian persuasion;number of children under 6 years old in rural areas who identify with other religions or persuasions;number of people under 6 years old in rural areas who are not affiliated with any religion;number of people under 6 years old in rural areas who follow other religions and persuasions" -indianCensus/Count_Person_Religion_OtherReligionsAndPersuasions_YearsUpto6_Urban,"Other Religions And Persuasions Population Aged 6 Years or Less in Urban Areas;Population: 6 Years or Less, Urban, India Census_Other Religion And Persuasions;people aged 6 years or less in urban areas who follow other religions or persuasions;the number of people aged 6 years or less in urban areas who practice other religions or persuasions;the percentage of the urban population aged 6 years or less who practice other religions or persuasions;urban population aged 6 years or less who practice other religions or persuasions" -indianCensus/Count_Person_Religion_ReligionNotStated,Population with Unstated Religion;Population: Religion Not Stated;no religion stated;religion not reported;the number of people who have not stated their religion;the number of people whose religion is not stated -indianCensus/Count_Person_Religion_ReligionNotStated_Female,"Female Population of Unstated Religion;Population: Female, Religion Not Stated;female non-religious population;female population with no religion;number of females who do not identify with a religion;number of women with no religious affiliation" -indianCensus/Count_Person_Religion_ReligionNotStated_Illiterate,"Illiterates Of Unstated Religion;Population: Illiterate, Religion Not Stated;illiterate people who don't identify with a religion;people who can't read or write and are not religious;people who can't read or write and don't have a religious affiliation;those who can't read or write and don't identify with a religion" -indianCensus/Count_Person_Religion_ReligionNotStated_Literate,"Literate Population Of Unstated Religion;Literate Religion Not Stated Population;Population: Literate, Religion Not Stated;number of literate people whose religion is not stated;number of literate people with no stated religion;number of people who can read and write and do not have a religion;number of people who can read and write and have not stated their religion" -indianCensus/Count_Person_Religion_ReligionNotStated_MainWorker,"Main Workers of Unstated Religion;Population: Religion Not Stated, Main Worker" -indianCensus/Count_Person_Religion_ReligionNotStated_Male,"Male Population of Unstated Religion;Population: Male, Religion Not Stated;number of men who are not religious;number of men who have not stated their religion;number of men with no religion;number of men with no religious affiliation" -indianCensus/Count_Person_Religion_ReligionNotStated_MarginalWorker,"Marginal Workers of Unstated Religion;Population: Religion Not Stated, Marginal Worker;here are five different ways of saying ""marginal workers of unstated religion"":" -indianCensus/Count_Person_Religion_ReligionNotStated_NonWorker,"Population of Non-Workers With Unstated Religion;Population: Religion Not Stated, Non Worker;number of non-working people with no religious affiliation;number of people who are not employed and do not identify with any religion;number of people who are not in the workforce and do not have a religious belief;number of people who do not work and have no religion" -indianCensus/Count_Person_Religion_ReligionNotStated_Rural,"Population: Rural, Religion Not Stated;Total Population in unstated Religion in Rural;number of people in rural areas who did not identify with any religion;number of people in rural areas who did not state their religion;number of people in rural areas who have no religion;number of people with unstated religion in rural areas" -indianCensus/Count_Person_Religion_ReligionNotStated_Urban,"Population Of Unstated Religion In Urban Areas;Population: Urban, Religion Not Stated;what percentage of people in urban areas don't state a religion?;what's the number of people in cities who don't identify as religious?;what's the number of people in urban areas who don't have a religion?;what's the percentage of people in cities who don't identify with a religion?" -indianCensus/Count_Person_Religion_ReligionNotStated_Workers,"Population: Religion Not Stated, Worker;Workers With Unstated Religion;workers who do not identify with any religion;workers who have chosen not to disclose their religion;workers who have not stated their religion;workers with no religion" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6,"People Of Unstated Religion Below 6 Years;Population: 6 Years or Less, Religion Not Stated;people below the age of 6 who do not follow any religion;people below the age of 6 who have not declared a religion;people who have not stated their religion and are below the age of 6;people who have not stated their religion and are under the age of 6" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Female,"Non-Religious Female Population Below 6 Years;Population: 6 Years or Less, Female, Religion Not Stated;the number of female people under 6 who do not believe in a god or gods;the number of non-religious females below 6 years old;the percentage of non-religious females below 6 years old;the population of non-religious females below 6 years old" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Male,"Population: 6 Years or Less, Male, Religion Not Stated;Unstated Religious Males Below 6 Years Old;boys under 6 who don't have a religion;boys under 6 who don't identify with any religion;boys under 6 who haven't chosen a religion;little boys with no stated religion" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Rural,"6 and under, rural, no religion;6 and under, rural, religion not specified;6 years or less, rural, no religious affiliation;Population: 6 Years or Less, Rural, Religion Not Stated;Unstated Religion with Population Aged 6 Years or Less" -indianCensus/Count_Person_Religion_ReligionNotStated_YearsUpto6_Urban,"Population Aged 0 to 6 Years of Unstated Religion in Urban Areas;Population: 6 Years or Less, Urban, Religion Not Stated;how many people aged 0 to 6 years old in urban areas have no stated religion?;what is the number of people aged 0 to 6 years old in urban areas who do not state a religion?;what is the percentage of people aged 0 to 6 years old in urban areas who do not have a religion?;what is the population of people aged 0 to 6 years old in urban areas who have no religious affiliation?" -indianCensus/Count_Person_Religion_Sikh,Population of Sikhs;Population: Sikhism;how many people are sikh?;how many people follow sikhism?;how many people practice sikhism?;what is the population of sikhs? -indianCensus/Count_Person_Religion_Sikh_Female,"Population of Female Sikhs;Population: Female, Sikhism;how many female sikhs are there?;how many women are sikhs?;what is the number of female sikhs?;what is the population of female sikhs?" -indianCensus/Count_Person_Religion_Sikh_Illiterate,"Population: Illiterate, Sikhism;Sikh Illiterates;illiterate sikhs;people who are illiterate and are sikhs;sikhs who are illiterate;sikhs who cannot read or write" -indianCensus/Count_Person_Religion_Sikh_Literate,"Literate Sikhism Population;Population: Literate, Sikhism;the literacy rate of sikhs;the number of literate sikhs;the percentage of sikhs who are literate;the proportion of sikhs who can read and write" -indianCensus/Count_Person_Religion_Sikh_MainWorker,"Main Workers Sikh Population;Population: Sikhism, Main Worker;the majority of sikh workers;the majority of the working population in the sikh community" -indianCensus/Count_Person_Religion_Sikh_Male,"Population: Male, Sikhism;Sikh Males;males who practice sikhism;men who are sikh;people of the male gender who are sikh;sikh men" -indianCensus/Count_Person_Religion_Sikh_MarginalWorker,"Population: Sikhism, Marginal Worker;Sikh Marginal Workers;sikh workers who are marginalized;sikh workers who are on the fringes;sikh workers who are on the periphery" -indianCensus/Count_Person_Religion_Sikh_NonWorker,"Population: Sikhism, Non Worker;Sikh Non-Workers;sikhs who are not employed;sikhs who are not working;sikhs who are unemployed;sikhs who do not have a job" -indianCensus/Count_Person_Religion_Sikh_Rural,"Population: Rural, Sikhism;Sikhism Population in Rural Areas;number of sikhs living in rural areas;percentage of sikhs living in rural areas;population of sikhs in rural areas;rural sikh population" -indianCensus/Count_Person_Religion_Sikh_Urban,"Population: Urban, Sikhism;Sikh Population Urban Areas;what are some cities with a large sikh population?;what are some urban areas with a high percentage of sikhs?;what are some urban areas with a large sikh population?;where do most sikhs live?" -indianCensus/Count_Person_Religion_Sikh_Workers,"Population: Sikhism, Worker;Total Sikh Workers;number of sikh employees;number of sikh workers;the number of sikh workers;the total number of sikh workers" -indianCensus/Count_Person_Religion_Sikh_YearsUpto6,"Population: 6 Years or Less, Sikhism;Sikhs Aged Below 6 Years Old;kids under 6 who are sikh;sikh children under 6;under-6 sikh children;young sikhs under 6" -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Female,"Female Sikhs Aged 6 Years or Less;Population: 6 Years or Less, Female, Sikhism;female sikhs under the age of 6;female sikhs who are 6 years old or younger;girls who are sikh and are 6 years old or younger;sikh girls under the age of 6" -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Male,"Male Sikhs Aged 6 Years Old or Less;Population: 6 Years or Less, Male, Sikhism;male sikhs under 6 years old;sikh boys aged 6 or younger;sikh boys under 6;sikh boys under 6 years old" -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural,"Population: 6 Years or Less, Rural, Sikhism;Sikh Population Aged 6 Years or Less;population of sikhs aged 6 or younger;the number of people aged 6 or less who are sikh;the population of sikhs aged 6 or less;the population of sikhs aged 6 years or less" -indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban,"Population: 6 Years or Less, Urban, Sikhism;Sikh Population Aged 6 Years or Less in Urban Areas;count of sikhs under 6 years old in urban areas;number of people who are sikh and under 6 years old in urban areas;number of sikhs under 6 years old in urban areas;population of sikhs under 6 years old in urban areas" -sdg/AG_FOOD_WST,Food waste +dc/tqgf8zv96r5t8,Number of people who work in textile fabric finishing and fabric coating mills +dc/twlffl9b5vgn3,Number of divorced people who are foreign born +dc/ty7pq88d26963,Prevalence of adult male physical inactivity +dc/v7bhlqc1lfxlg,Number of foreign-born Black Or African American people +dc/v7yl3k9w3h7e8,Number of female Native Hawaiian Or Other Pacific Islander With Bachelor or higher Degree +dc/vp4cplffwv86g,Number of people who work in printing and related support activities +dc/vp8cbt6k79t94,Number of people walking to work +dc/vxhvgzjhwwmj6,Number of asian people who are citizens at birth +dc/w1tfjz3h6138,Number of people who work in warehousing and storage +dc/wbjmvkyqf6dm3,Number of native born people who speak Asian and Pacific Island languages at home +dc/wfktw3b5c50h1,Number of establishments owned by private entities in the Solar Electric Power Generation industry +dc/whn99h1l0xgth,Number of Asian females who have attended some college +dc/wjtdrd9wq4m2g,Number of Black Or African American people enrolled in college or undergraduate years +dc/wk2vjrzfgyq5d,Number of native hawaiian or other pacific islander people enrolled in primary school +dc/wpkpr906ft37g,Number of foreign-born Hispanic or Latino people +dc/ws19bm1hl105b,Number of people who work in wood product manufacturing +dc/wv0mr2t2f5rj9,total wages of workers in Printing and Related Support Activities +dc/wzz9t818m1gk8,total wages of workers in Manufacturing +dc/x13tvt8jsgrm4,Prevalence of adult male obesity +dc/x3gghqtglpr59,Median income of people working in the Finance & Insurance Industry +dc/x95kmng969n42,Median income of people working in the Utilities Industry +dc/x9e7150515yt7,Number of asian people enrolled in primary school +dc/xdfcsgf05b4mc,Number of foreign born asian people +dc/xj2nk2bg60fg,Median income of people working in the Information Industry +dc/xmpy89x1nh8cg,Prevalence of adult male diabetes +dc/xx3v7dmqp95h3,Revenue of Biomass Electric Power Generation establishments +dc/ym3bfmz5e91gg,Number of foreign-born white people +dc/yn0h4nw4k23f1,Number of people who work in pipeline transportation +dc/yw52qqrrb2w11,"Median income of people working in the Agriculture, Forestry, Fishing & Hunting Industry" +dc/yxxs3hh2g2shd,total wages of workers in Nonmetallic Mineral Product Manufacturing +dc/z27q5dymqyrnf,Number of people who work in apparel manufacturing +dc/z29z7w7ldnwl4,Number of homicides of incarcerated males +dc/zbpsz8dg01nh2,Median income of people working in the Transportation & Warehousing Industry +dc/zmp6qzgzp7ly2,Number of asian people enrolled in graduate or professional school +dc/zq864lhfql079,Number of white people currently enrolled in school +dc/zv5g19y8dl9r1,Number of people of multi races enrolled in college undergraduate years +dc/zvr6djt1p9gj3,Number of hispanic or latino people enrolled in middle school +indianCensus/Count_Person_Religion_Buddhist,Number of Buddhist people +indianCensus/Count_Person_Religion_Buddhist_Female,Number of Buddhist females +indianCensus/Count_Person_Religion_Buddhist_Illiterate,Number of illiterate Buddhist people +indianCensus/Count_Person_Religion_Buddhist_Literate,Number of literate Buddhist people +indianCensus/Count_Person_Religion_Buddhist_Male,Number of Buddhist males +indianCensus/Count_Person_Religion_Buddhist_Rural,Number of Buddhist people who live in rural areas +indianCensus/Count_Person_Religion_Buddhist_Urban,Number of Buddhist people who live in urban areas +indianCensus/Count_Person_Religion_Buddhist_Workers,Number of Buddhist workers +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6,Number of Buddhist children +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Female,Number of Buddhist girls +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Male,Number of Buddhist boys +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Rural,Number of Buddhist children in rural areas +indianCensus/Count_Person_Religion_Buddhist_YearsUpto6_Urban,Number of Buddhist children in urban areas +indianCensus/Count_Person_Religion_Christian,Number of Christian people +indianCensus/Count_Person_Religion_Christian_Female,Number of Christian females +indianCensus/Count_Person_Religion_Christian_Illiterate,Number of illiterate Christians +indianCensus/Count_Person_Religion_Christian_Literate,Number of literate Christians +indianCensus/Count_Person_Religion_Christian_Male,Number of Christian males +indianCensus/Count_Person_Religion_Christian_Rural,Number of Christians who live in rural areas +indianCensus/Count_Person_Religion_Christian_Urban,Number of Christians who live in urban areas +indianCensus/Count_Person_Religion_Christian_Workers,Number of Christian workers +indianCensus/Count_Person_Religion_Christian_YearsUpto6,Number of Christian children +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Female,Number of Christian girls +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Male,Number of Christian boys +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Rural,Number of Christian children in rural areas +indianCensus/Count_Person_Religion_Christian_YearsUpto6_Urban,Number of Christian children in urban areas +indianCensus/Count_Person_Religion_Hindu,Number of Hindus +indianCensus/Count_Person_Religion_Hindu_Female,Number of Hindu females +indianCensus/Count_Person_Religion_Hindu_Illiterate,Number of Hindu males +indianCensus/Count_Person_Religion_Hindu_Literate,Number of literate Hindus +indianCensus/Count_Person_Religion_Hindu_Male,Number of Hindu men +indianCensus/Count_Person_Religion_Hindu_Rural,Number of Hindus who live in rural areas +indianCensus/Count_Person_Religion_Hindu_Urban,Number of Hindus who live in urban areas +indianCensus/Count_Person_Religion_Hindu_Workers,Number of Hindu workers +indianCensus/Count_Person_Religion_Hindu_YearsUpto6,Number of Hindu children +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Female,Number of Hindu girls +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Male,Number of Hindu boys +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Rural,Number of Hindu children in rural areas +indianCensus/Count_Person_Religion_Hindu_YearsUpto6_Urban,Number of Hindu children in urban areas +indianCensus/Count_Person_Religion_Jain,Number of Jains +indianCensus/Count_Person_Religion_Jain_Female,Number of Jain females +indianCensus/Count_Person_Religion_Jain_Illiterate,Number of illiterate Jains +indianCensus/Count_Person_Religion_Jain_Literate,Number of literate Jains +indianCensus/Count_Person_Religion_Jain_Male,Number of Jain males +indianCensus/Count_Person_Religion_Jain_Rural,Number of Jains who live in rural areas +indianCensus/Count_Person_Religion_Jain_Urban,Number of Jains who live in urban areas +indianCensus/Count_Person_Religion_Jain_Workers,Number of Jain workers +indianCensus/Count_Person_Religion_Jain_YearsUpto6,Number of Jain children +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Female,Number of Jain girls +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Male,Number of Jain boys +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Rural,Number of Jain children in rural areas +indianCensus/Count_Person_Religion_Jain_YearsUpto6_Urban,Number of Jain children urban areas +indianCensus/Count_Person_Religion_Muslim,Number of Muslims +indianCensus/Count_Person_Religion_Muslim_Female,Number of Muslim females +indianCensus/Count_Person_Religion_Muslim_Illiterate,Number of illiterate Muslims +indianCensus/Count_Person_Religion_Muslim_Literate,Number of literate Muslims +indianCensus/Count_Person_Religion_Muslim_Male,Number of Muslim males +indianCensus/Count_Person_Religion_Muslim_Rural,Number of Muslims who live in rural areas +indianCensus/Count_Person_Religion_Muslim_Urban,Number of Muslims who live in urban areas +indianCensus/Count_Person_Religion_Muslim_Workers,Number of Muslim workers +indianCensus/Count_Person_Religion_Muslim_YearsUpto6,Number of Muslim children +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Female,Number of Muslim girls +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Male,Number of Muslim boys +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Rural,Number of Muslim children in rural areas +indianCensus/Count_Person_Religion_Muslim_YearsUpto6_Urban,Number of Muslim children in urban areas +indianCensus/Count_Person_Religion_Sikh,Number of Sikhs +indianCensus/Count_Person_Religion_Sikh_Female,Number of Sikh females +indianCensus/Count_Person_Religion_Sikh_Illiterate,Number of illiterate Sikhs +indianCensus/Count_Person_Religion_Sikh_Literate,Number of literate Sikhs +indianCensus/Count_Person_Religion_Sikh_Male,Number of Sikh males +indianCensus/Count_Person_Religion_Sikh_Rural,Number of Sikhs who live in rural areas +indianCensus/Count_Person_Religion_Sikh_Urban,Number of Sikhs who live in urban areas +indianCensus/Count_Person_Religion_Sikh_Workers,Number of Sikh workers +indianCensus/Count_Person_Religion_Sikh_YearsUpto6,Number of Sikh children +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Female,Number of Sikh girls +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Male,Number of Sikh boys +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Rural,Number of Sikh children in rural areas +indianCensus/Count_Person_Religion_Sikh_YearsUpto6_Urban,Number of Sikh children in urban areas +sdg/AG_FOOD_WST,Total food waste sdg/AG_FOOD_WST_PC,Food waste per capita sdg/AG_LND_FRST,Forest area as a proportion of total land area sdg/AG_LND_FRSTBIOPHA,Above-ground biomass in forest -sdg/AG_LND_FRSTCERT,Forest area under an independently verified forest management certification scheme sdg/AG_LND_FRSTCHG,Annual forest area change rate sdg/AG_LND_FRSTN,Forest area sdg/AG_LND_FRSTPRCT,Proportion of forest area within legally established protected areas sdg/DC_ODA_BDVDL,Total official development assistance for biodiversity sdg/EG_FEC_RNEW,Renewable energy share in the total final energy consumption -sdg/EN_EWT_GENPCAP,"Electronic waste generated, per capita" +sdg/EN_EWT_GENPCAP,Electronic waste generated per capita sdg/EN_EWT_GENV,Electronic waste generated sdg/EN_MAR_BEALITSQ,Beach litter per square kilometer sdg/EN_MAR_BEALIT_BP,Beach litter originating from national land-based sources that ends in the beach @@ -6897,12 +4349,12 @@ sdg/EN_MAR_BEALIT_OP,Beach litter originating from national land-based sources t sdg/EN_MAR_PLASDD,Floating plastic debris density sdg/EN_MAT_DOMCMPG,Domestic material consumption per unit of GDP sdg/EN_MAT_DOMCMPT,Domestic material consumption -sdg/EN_MAT_DOMCMPT.PRODUCT--MF1,Domestic material consumption [Type of product = Biomass] -sdg/EN_MAT_DOMCMPT.PRODUCT--MF11,Domestic material consumption [Type of product = Crops] -sdg/EN_MAT_DOMCMPT.PRODUCT--MF13,Domestic material consumption [Type of product = Wood] -sdg/EN_MAT_DOMCMPT.PRODUCT--MF14,Domestic material consumption [Type of product = Wild catch and harvest] -sdg/EN_MAT_DOMCMPT.PRODUCT--MF2,Domestic material consumption [Type of product = Metal ores] -sdg/EN_MAT_DOMCMPT.PRODUCT--MF3,Domestic material consumption [Type of product = Non-metallic minerals] +sdg/EN_MAT_DOMCMPT.PRODUCT--MF1,Domestic Biomass material consumption +sdg/EN_MAT_DOMCMPT.PRODUCT--MF11,Domestic crops consumption +sdg/EN_MAT_DOMCMPT.PRODUCT--MF13,Domestic Wood consumption +sdg/EN_MAT_DOMCMPT.PRODUCT--MF14,Domestic Wild catch and harvest consumption +sdg/EN_MAT_DOMCMPT.PRODUCT--MF2,Domestic Metal ores consumption +sdg/EN_MAT_DOMCMPT.PRODUCT--MF3,Domestic Non-metallic minerals consumption sdg/EN_SCP_FRMN,Number of companies publishing sustainability reports with disclosure by dimension sdg/EN_SCP_FSHGDP,Sustainable fisheries as a proportion of GDP sdg/ER_FFS_CMPT_GDP,Fossil-fuel subsidies as a proportion of total GDP @@ -6913,20 +4365,20 @@ sdg/ER_PTD_FRHWTR,Average proportion of Freshwater Key Biodiversity Areas covere sdg/ER_PTD_MTN,Average proportion of Mountain Key Biodiversity Areas covered by protected areas sdg/ER_PTD_TERR,Average proportion of Terrestrial Key Biodiversity Areas covered by protected areas sdg/ER_RSK_LST,Red List Index -sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F,Proportion of women of reproductive age who have their need for family planning satisfied with modern methods [Age = 15 to 49 years old | Sex = Female] -sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F,Proportion of women aged 15-49 years with anaemia [Age = 15 to 49 years old | Sex = Female] -sdg/SH_STA_MORT.SEX--F,Maternal mortality ratio [Sex = Female] -sdg/SH_STA_STNT.AGE--Y0T4,Proportion of children moderately or severely stunted [Age = under 5 years old] -sdg/SH_STA_WAST.AGE--Y0T4,Proportion of children moderately or severely wasted [Age = under 5 years old] +sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F,Proportion of females of reproductive age who have their need for family planning satisfied with modern methods +sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F,Proportion of females aged 15-49 years with anaemia +sdg/SH_STA_MORT.SEX--F,Maternal mortality ratio +sdg/SH_STA_STNT.AGE--Y0T4,Proportion of children under 5 who are moderately or severely stunted +sdg/SH_STA_WAST.AGE--Y0T4,Proportion of children under 5 who are moderately or severely wasted sdg/SI_POV_DAY1,Proportion of population below international poverty line -sdg/SI_POV_EMP1.AGE--Y_GE15,Employed population below international poverty line [Age = 15 years old and over] +sdg/SI_POV_EMP1.AGE--Y_GE15,Employed population below international poverty line sdg/SN_ITK_DEFC,Prevalence of undernourishment sdg/SP_ACS_BSRVH2O,Proportion of population using basic drinking water services sdg/SP_ACS_BSRVSAN,Proportion of population using basic sanitation services -sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F,Adolescent birth rate [Age = 15 to 19 years old | Sex = Female] -worldBank/4_1_1_TOTAL_ELECTRICITY_OUTPUT,Total electricity output;Total electricity output (GWh);total energy output;total energy produced -worldBank/4_1_2_REN_ELECTRICITY_OUTPUT,Renewable electricity output;Renewable electricity output (GWh);energy produced from renewables;renewable energy output -worldBank/4_1_SHARE_RE_IN_ELECTRICITY,Renewable electricity proportion in total output;Renewable electricity share of total electricity output (%);electricity output from renewables;fraction of electricity output due to renewables;renewable electricity as a percentage of total output -worldBank/EG_ELC_ACCS_RU_ZS,"Access to electricity in rural area;Access to electricity, rural (% of rural population);Percent of rural people with access to electricity;fraction of rural population with access to electrcity;rural population with electricty access" -worldBank/EG_ELC_ACCS_UR_ZS,"Access to electricity in urban areas;Access to electricity, urban (% of urban population);Percent of urban people with access to electricity;fraction of urban population with access to electrcity;urban population with electricty access" -worldBank/EG_ELC_ACCS_ZS,Access to electricity;Access to electricity (% of population);Percent of people with access to electricity;fraction of population with access to electrcity;population with electricity access +sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F,Adolescent (15 to 19 years old) birth rate +worldBank/4_1_1_TOTAL_ELECTRICITY_OUTPUT,Total electricity output +worldBank/4_1_2_REN_ELECTRICITY_OUTPUT,Renewable electricity output +worldBank/4_1_SHARE_RE_IN_ELECTRICITY,Renewable electricity share of total electricity output +worldBank/EG_ELC_ACCS_RU_ZS,percentage of rural population with access to electricity +worldBank/EG_ELC_ACCS_UR_ZS,percentage of urban population with access to electricity +worldBank/EG_ELC_ACCS_ZS,percentage of population with access to electricity From 6dd42538e0a9ad256aa260d7c82e6d906cdcc0b5 Mon Sep 17 00:00:00 2001 From: Keyur Shah Date: Wed, 15 May 2024 11:13:37 -0700 Subject: [PATCH 25/28] Don't load custom dc topic cache if path does not exist. (#4244) --- server/lib/topic_cache.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/server/lib/topic_cache.py b/server/lib/topic_cache.py index 10e314a59c..a74e04b4a0 100644 --- a/server/lib/topic_cache.py +++ b/server/lib/topic_cache.py @@ -18,6 +18,7 @@ from dataclasses import dataclass import json import logging +import os from typing import Dict, List, Self, Set from server.lib.nl.common import utils @@ -232,10 +233,21 @@ def _load_custom_dc_topic_cache(name_overrides: Dict) -> tuple[str, TopicCache]: def _get_local_custom_dc_topic_cache_path() -> str: path = get_custom_dc_topic_cache_path() + if not path: logging.info("No Custom DC topic cache path specified.") return path + logging.info("Custom DC topic cache will be loaded from: %s", path) + if is_gcs_path(path): return download_gcs_file(path) + + if not os.path.exists(path): + logging.warning( + "Custom DC topic cache path %s does not exist and will be skipped.", + path) + # Loading topic cache is skipped if path is empty so return an empty path in this case. + return "" + return path From f7433df7f18fb0b306b7d04b101fe4701dfcf5eb Mon Sep 17 00:00:00 2001 From: Keyur Shah Date: Wed, 15 May 2024 13:08:59 -0700 Subject: [PATCH 26/28] Update submods. (#4245) --- import | 2 +- mixer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/import b/import index 25aa84df40..7d197583b6 160000 --- a/import +++ b/import @@ -1 +1 @@ -Subproject commit 25aa84df40a85c2bfec09b209bd33df2d89bd2e4 +Subproject commit 7d197583b6ad0dfe0568532f919482527c004a8e diff --git a/mixer b/mixer index 21b0e4a4bf..478cd499d4 160000 --- a/mixer +++ b/mixer @@ -1 +1 @@ -Subproject commit 21b0e4a4bf52c7aeb7eef91d77f74b9d67cc2627 +Subproject commit 478cd499d4841a14efaf96ccf71bd36b74604486 From 3a2854f075b4614baea488410469ba2feffd16e2 Mon Sep 17 00:00:00 2001 From: chejennifer <69875368+chejennifer@users.noreply.github.com> Date: Wed, 15 May 2024 16:12:20 -0700 Subject: [PATCH 27/28] [nl server] get default and enabled indexes from deployment (#4243) Get default index and enabled indexes from deployment because this could be instance specific --- .../dc_website/templates/config_maps.yaml | 2 +- deploy/helm_charts/dc_website/values.yaml | 6 +- deploy/helm_charts/envs/autopush.yaml | 55 +++++--- deploy/helm_charts/envs/bard.yaml | 8 ++ deploy/helm_charts/envs/biomedical.yaml | 8 ++ deploy/helm_charts/envs/climate_trace.yaml | 8 ++ deploy/helm_charts/envs/dev.yaml | 55 +++++--- deploy/helm_charts/envs/internal.yaml | 8 ++ deploy/helm_charts/envs/magic_eye.yaml | 8 ++ deploy/helm_charts/envs/prod.yaml | 8 ++ deploy/helm_charts/envs/staging.yaml | 8 ++ deploy/helm_charts/envs/unsdg.yaml | 8 ++ deploy/helm_charts/envs/unsdg_staging.yaml | 8 ++ deploy/helm_charts/envs/worldbank.yaml | 8 ++ nl_server/config.py | 122 +++++++----------- nl_server/custom_dc_constants.py | 22 ++++ nl_server/embeddings_map.py | 16 +-- nl_server/loader.py | 105 ++++++++++----- nl_server/routes.py | 12 +- nl_server/tests/custom_embeddings_test.py | 113 ++++++++-------- nl_server/tests/embeddings_test.py | 19 ++- 21 files changed, 384 insertions(+), 223 deletions(-) create mode 100644 nl_server/custom_dc_constants.py diff --git a/deploy/helm_charts/dc_website/templates/config_maps.yaml b/deploy/helm_charts/dc_website/templates/config_maps.yaml index 1b0e825f66..76d91b9514 100644 --- a/deploy/helm_charts/dc_website/templates/config_maps.yaml +++ b/deploy/helm_charts/dc_website/templates/config_maps.yaml @@ -81,7 +81,7 @@ metadata: data: embeddings.yaml: {{ required "NL embeddings file is required" .Values.nl.embeddings | quote }} models.yaml: {{ required "NL models file is required" .Values.nl.models | quote }} - vertex_ai_models.json: {{ .Values.nl.vertex_ai_models | toJson | quote }} + embeddings_spec.json: {{ .Values.nl.embeddingsSpec | toJson | quote }} {{- end }} {{- if .Values.website.redis.enabled }} diff --git a/deploy/helm_charts/dc_website/values.yaml b/deploy/helm_charts/dc_website/values.yaml index ffe2caf537..f579816a0c 100644 --- a/deploy/helm_charts/dc_website/values.yaml +++ b/deploy/helm_charts/dc_website/values.yaml @@ -136,7 +136,11 @@ nl: models: memory: "2G" workers: 1 - vertex_ai_models: + embeddingsSpec: + defaultIndex: "" + enabledIndexes: [] + vertexAIModels: + enableReranking: false ############################################################################### diff --git a/deploy/helm_charts/envs/autopush.yaml b/deploy/helm_charts/envs/autopush.yaml index ea15278681..5b9ca739cf 100644 --- a/deploy/helm_charts/envs/autopush.yaml +++ b/deploy/helm_charts/envs/autopush.yaml @@ -44,27 +44,40 @@ serviceAccount: nl: enabled: true - vertex_ai_models: - dc-all-minilm-l6-v2-model: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "8518340991868993536" - uae-large-v1-model: - project_id: datcom-nl - location: us-central1 - prediction_endpoint_id: "8110162693219942400" - sfr-embedding-mistral-model: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "224012300019826688" - cross-encoder-ms-marco-miniilm-l6-v2: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "3977846152316846080" - cross-encoder-mxbai-rerank-base-v1: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "284894457873039360" + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "base_uae_mem", + "bio_ft", + "medium_ft", + "medium_lance_ft", + "medium_vertex_ft", + "medium_vertex_mistral", + "sdg_ft", + "undata_ft", + ] + vertexAIModels: + dc-all-minilm-l6-v2-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "8518340991868993536" + uae-large-v1-model: + project_id: datcom-nl + location: us-central1 + prediction_endpoint_id: "8110162693219942400" + sfr-embedding-mistral-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "224012300019826688" + cross-encoder-ms-marco-miniilm-l6-v2: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "3977846152316846080" + cross-encoder-mxbai-rerank-base-v1: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "284894457873039360" + enableReranking: true serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/bard.yaml b/deploy/helm_charts/envs/bard.yaml index 36513bdb44..0ba2a1c282 100644 --- a/deploy/helm_charts/envs/bard.yaml +++ b/deploy/helm_charts/envs/bard.yaml @@ -44,6 +44,14 @@ nl: enabled: true memory: "10G" workers: 3 + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] nodejs: enabled: true diff --git a/deploy/helm_charts/envs/biomedical.yaml b/deploy/helm_charts/envs/biomedical.yaml index 3ada5b2df3..73d73c7a52 100644 --- a/deploy/helm_charts/envs/biomedical.yaml +++ b/deploy/helm_charts/envs/biomedical.yaml @@ -42,3 +42,11 @@ serviceGroups: nl: enabled: true + embeddingsSpec: + defaultIndex: "bio_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] diff --git a/deploy/helm_charts/envs/climate_trace.yaml b/deploy/helm_charts/envs/climate_trace.yaml index 6aa16898c4..02d4494f64 100644 --- a/deploy/helm_charts/envs/climate_trace.yaml +++ b/deploy/helm_charts/envs/climate_trace.yaml @@ -34,6 +34,14 @@ serviceAccount: nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/dev.yaml b/deploy/helm_charts/envs/dev.yaml index cbd16ee4e1..3b610f9255 100644 --- a/deploy/helm_charts/envs/dev.yaml +++ b/deploy/helm_charts/envs/dev.yaml @@ -41,27 +41,40 @@ serviceGroups: nl: enabled: true - vertex_ai_models: - dc-all-minilm-l6-v2-model: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "8518340991868993536" - uae-large-v1-model: - project_id: datcom-nl - location: us-central1 - prediction_endpoint_id: "1400502935879680000" - sfr-embedding-mistral-model: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "224012300019826688" - cross-encoder-ms-marco-miniilm-l6-v2: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "3977846152316846080" - cross-encoder-mxbai-rerank-base-v1: - project_id: datcom-website-dev - location: us-central1 - prediction_endpoint_id: "284894457873039360" + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "base_uae_mem", + "bio_ft", + "medium_ft", + "medium_lance_ft", + "medium_vertex_ft", + "medium_vertex_mistral", + "sdg_ft", + "undata_ft", + ] + vertexAIModels: + dc-all-minilm-l6-v2-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "8518340991868993536" + uae-large-v1-model: + project_id: datcom-nl + location: us-central1 + prediction_endpoint_id: "8110162693219942400" + sfr-embedding-mistral-model: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "224012300019826688" + cross-encoder-ms-marco-miniilm-l6-v2: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "3977846152316846080" + cross-encoder-mxbai-rerank-base-v1: + project_id: datcom-website-dev + location: us-central1 + prediction_endpoint_id: "284894457873039360" + enableReranking: true nodejs: enabled: true diff --git a/deploy/helm_charts/envs/internal.yaml b/deploy/helm_charts/envs/internal.yaml index 6adc298a88..520f05374d 100644 --- a/deploy/helm_charts/envs/internal.yaml +++ b/deploy/helm_charts/envs/internal.yaml @@ -36,6 +36,14 @@ ingress: certName: website-ssl-certificate nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/magic_eye.yaml b/deploy/helm_charts/envs/magic_eye.yaml index 06fee9be2f..7cb44d73c3 100644 --- a/deploy/helm_charts/envs/magic_eye.yaml +++ b/deploy/helm_charts/envs/magic_eye.yaml @@ -37,6 +37,14 @@ ingress: nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/prod.yaml b/deploy/helm_charts/envs/prod.yaml index 4f6b3807d8..8f4c0f9374 100644 --- a/deploy/helm_charts/envs/prod.yaml +++ b/deploy/helm_charts/envs/prod.yaml @@ -41,6 +41,14 @@ serviceAccount: nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/staging.yaml b/deploy/helm_charts/envs/staging.yaml index 183abbff24..81cf36eab8 100644 --- a/deploy/helm_charts/envs/staging.yaml +++ b/deploy/helm_charts/envs/staging.yaml @@ -32,6 +32,14 @@ serviceAccount: nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/unsdg.yaml b/deploy/helm_charts/envs/unsdg.yaml index 2cc8306c66..04edf82e9d 100644 --- a/deploy/helm_charts/envs/unsdg.yaml +++ b/deploy/helm_charts/envs/unsdg.yaml @@ -40,6 +40,14 @@ ingress: nl: enabled: true + embeddingsSpec: + defaultIndex: "sdg_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/unsdg_staging.yaml b/deploy/helm_charts/envs/unsdg_staging.yaml index 1739517e7e..144839cbef 100644 --- a/deploy/helm_charts/envs/unsdg_staging.yaml +++ b/deploy/helm_charts/envs/unsdg_staging.yaml @@ -37,6 +37,14 @@ mixer: nl: enabled: true + embeddingsSpec: + defaultIndex: "sdg_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] serviceGroups: recon: null diff --git a/deploy/helm_charts/envs/worldbank.yaml b/deploy/helm_charts/envs/worldbank.yaml index 0a6736d31b..419ce03369 100644 --- a/deploy/helm_charts/envs/worldbank.yaml +++ b/deploy/helm_charts/envs/worldbank.yaml @@ -49,6 +49,14 @@ serviceGroups: memoryLimit: "8G" nl: enabled: true + embeddingsSpec: + defaultIndex: "medium_ft" + enabledIndexes: [ + "bio_ft" + "medium_ft", + "sdg_ft", + "undata_ft", + ] svg: blocklistFile: ["dc/g/Uncategorized", "oecd/g/OECD"] diff --git a/nl_server/config.py b/nl_server/config.py index 3e09114691..ca08aea855 100644 --- a/nl_server/config.py +++ b/nl_server/config.py @@ -15,28 +15,18 @@ from abc import ABC from dataclasses import dataclass from enum import Enum -import json -import logging -import os -from pathlib import Path from typing import Dict -import yaml - from shared.lib import constants -from shared.lib.custom_dc_util import is_custom_dc # Index constants. Passed in `url=` CUSTOM_DC_INDEX: str = 'custom_ft' -DEFAULT_INDEX_TYPE: str = 'medium_ft' # App Config constants. ATTRIBUTE_MODEL_KEY: str = 'ATTRIBUTE_MODEL' NL_EMBEDDINGS_KEY: str = 'NL_EMBEDDINGS' NL_EMBEDDINGS_VERSION_KEY: str = 'NL_EMBEDDINGS_VERSION_MAP' -VERTEX_AI_MODELS_KEY: str = 'VERTEX_AI_MODELS' - -_VERTEX_AI_MODEL_CONFIG_PATH: str = '/datacommons/nl/vertex_ai_models.json' +EMBEDDINGS_SPEC_KEY: str = 'EMBEDDINGS_SPEC' class StoreType(str, Enum): @@ -106,81 +96,42 @@ class EmbeddingsConfig: models: Dict[str, ModelConfig] -# -# Get Dict of vertex ai model to its info -# -def _get_vertex_ai_model_info() -> Dict[str, any]: - # Custom DC doesn't use vertex ai so just return an empty dict - # TODO: if we want to use vertex ai for custom dc, can add a file with the - # config to the custom dc docker image here: https://github.com/datacommonsorg/website/blob/master/build/web_compose/Dockerfile#L67 - if is_custom_dc(): - return {} - - # This is the path to model info when deployed in gke. - if os.path.exists(_VERTEX_AI_MODEL_CONFIG_PATH): - with open(_VERTEX_AI_MODEL_CONFIG_PATH) as f: - return json.load(f) or {} - # If that path doesn't exist, assume we are running locally and use the values - # from autopush. - else: - current_file_path = Path(__file__) - autopush_env_values = f'{current_file_path.parent.parent}/deploy/helm_charts/envs/autopush.yaml' - with open(autopush_env_values) as f: - autopush_env = yaml.full_load(f) - return autopush_env['nl']['vertex_ai_models'] +# Determines whether model is enabled +def _is_model_enabled(model_name: str, model_info: Dict[str, str], + used_models: set[str], reranking_enabled: bool): + if model_name in used_models: + return True + if model_info['usage'] == ModelUsage.RERANKING and reranking_enabled: + return True + return False # -# Parse the input `embeddings.yaml` dict representation into EmbeddingsInfo +# Parse the input `embeddings.yaml` dict representation into EmbeddingsConfig # object. # -def parse(embeddings_map: Dict[str, any]) -> EmbeddingsConfig: - get_vertex_ai_model_info = _get_vertex_ai_model_info() +def parse(embeddings_map: Dict[str, any], vertex_ai_model_info: Dict[str, any], + reranking_enabled: bool) -> EmbeddingsConfig: if embeddings_map['version'] == 1: - return parse_v1(embeddings_map, get_vertex_ai_model_info) + return parse_v1(embeddings_map, vertex_ai_model_info, reranking_enabled) else: raise AssertionError('Could not parse embeddings map: unsupported version.') # # Parses the v1 version of the `embeddings.yaml` dict representation into -# EmbeddingsInfo object. +# EmbeddingsConfig object. # -def parse_v1(embeddings_map: Dict[str, any], - vertex_ai_model_info: Dict[str, any]) -> EmbeddingsConfig: - # parse the models - models = {} - for model_name, model_info in embeddings_map.get('models', {}).items(): - model_type = model_info['type'] - score_threshold = model_info.get('score_threshold', - constants.SV_SCORE_DEFAULT_THRESHOLD) - if model_type == ModelType.LOCAL: - models[model_name] = LocalModelConfig(type=model_type, - score_threshold=score_threshold, - usage=model_info['usage'], - gcs_folder=model_info['gcs_folder']) - elif model_type == ModelType.VERTEXAI: - if model_name not in vertex_ai_model_info: - logging.error( - f'Could not find vertex ai model information for {model_name}') - continue - models[model_name] = VertexAIModelConfig( - type=model_type, - score_threshold=score_threshold, - usage=model_info['usage'], - project_id=vertex_ai_model_info[model_name]['project_id'], - prediction_endpoint_id=vertex_ai_model_info[model_name] - ['prediction_endpoint_id'], - location=vertex_ai_model_info[model_name]['location']) - else: - raise AssertionError( - 'Error parsing information for model {model_name}: unsupported type {model_type}' - ) +def parse_v1(embeddings_map: Dict[str, any], vertex_ai_model_info: Dict[str, + any], + reranking_enabled: bool) -> EmbeddingsConfig: + used_models = set() # parse the indexes indexes = {} for index_name, index_info in embeddings_map.get('indexes', {}).items(): store_type = index_info['store'] + used_models.add(index_info['model']) if store_type == StoreType.MEMORY: indexes[index_name] = MemoryIndexConfig( store_type=store_type, @@ -205,11 +156,32 @@ def parse_v1(embeddings_map: Dict[str, any], 'Error parsing information for index {index_name}: unsupported store type {store_type}' ) - return EmbeddingsConfig(indexes=indexes, models=models) - + # parse the models + models = {} + for model_name, model_info in embeddings_map.get('models', {}).items(): + if not _is_model_enabled(model_name, model_info, used_models, + reranking_enabled): + continue -# Returns true if VERTEXAI type models and VERTEXAI type stores are allowed -def allow_vertex_ai() -> bool: - return os.environ.get('FLASK_ENV') in [ - 'local', 'test', 'integration_test', 'autopush', 'dev' - ] + model_type = model_info['type'] + score_threshold = model_info.get('score_threshold', + constants.SV_SCORE_DEFAULT_THRESHOLD) + if model_type == ModelType.LOCAL: + models[model_name] = LocalModelConfig(type=model_type, + score_threshold=score_threshold, + usage=model_info['usage'], + gcs_folder=model_info['gcs_folder']) + elif model_type == ModelType.VERTEXAI: + models[model_name] = VertexAIModelConfig( + type=model_type, + score_threshold=score_threshold, + usage=model_info['usage'], + project_id=vertex_ai_model_info[model_name]['project_id'], + prediction_endpoint_id=vertex_ai_model_info[model_name] + ['prediction_endpoint_id'], + location=vertex_ai_model_info[model_name]['location']) + else: + raise AssertionError( + 'Error parsing information for model {model_name}: unsupported type {model_type}' + ) + return EmbeddingsConfig(indexes=indexes, models=models) diff --git a/nl_server/custom_dc_constants.py b/nl_server/custom_dc_constants.py new file mode 100644 index 0000000000..d40b326d95 --- /dev/null +++ b/nl_server/custom_dc_constants.py @@ -0,0 +1,22 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Constants used for custom dc instances +TODO: should be moved to be part of deployment""" + +# TODO: move this to be part of custom dc deployment +CUSTOM_DC_EMBEDDINGS_SPEC = { + 'defaultIndex': 'medium_ft', + 'enabledIndexes': ['medium_ft'], + 'enableReranking': False +} diff --git a/nl_server/embeddings_map.py b/nl_server/embeddings_map.py index ae084085d6..5b01520951 100644 --- a/nl_server/embeddings_map.py +++ b/nl_server/embeddings_map.py @@ -15,14 +15,11 @@ import logging from typing import Dict -from nl_server.config import allow_vertex_ai -from nl_server.config import DEFAULT_INDEX_TYPE from nl_server.config import EmbeddingsConfig from nl_server.config import IndexConfig from nl_server.config import ModelConfig from nl_server.config import ModelType from nl_server.config import ModelUsage -from nl_server.config import parse from nl_server.config import StoreType from nl_server.embeddings import Embeddings from nl_server.embeddings import EmbeddingsModel @@ -40,17 +37,16 @@ # class EmbeddingsMap: - # Input is the in-memory representation of `embeddings.yaml` structure. - def __init__(self, embeddings_dict: dict[str, dict[str, str]]): + # Input is parsed embeddings config. + def __init__(self, embeddings_config: EmbeddingsConfig): self.embeddings_map: dict[str, Embeddings] = {} self.name_to_emb_model: Dict[str, EmbeddingsModel] = {} self.name_to_rank_model: Dict[str, RerankingModel] = {} - embeddings_info = parse(embeddings_dict) - self.reset_index(embeddings_info) + self.reset_index(embeddings_config) # Note: The caller takes care of exceptions. - def get_index(self, index_type: str = DEFAULT_INDEX_TYPE) -> Embeddings: + def get_index(self, index_type: str) -> Embeddings: return self.embeddings_map.get(index_type) def get_reranking_model(self, model_name: str) -> RerankingModel: @@ -73,7 +69,7 @@ def _load_models(self, models: dict[str, ModelConfig]): # try creating a model object from the model info try: - if (allow_vertex_ai() and model_info.type == ModelType.VERTEXAI): + if model_info.type == ModelType.VERTEXAI: if model_info.usage == ModelUsage.EMBEDDINGS: model = VertexAIEmbeddingsModel(model_info) self.name_to_emb_model[model_name] = model @@ -105,7 +101,7 @@ def _set_embeddings(self, idx_name: str, idx_info: IndexConfig): else: logging.info('Not loading LanceDB in Custom DC environment!') return - elif idx_info.store_type == StoreType.VERTEXAI and allow_vertex_ai(): + elif idx_info.store_type == StoreType.VERTEXAI: store = VertexAIStore(idx_info) except Exception as e: logging.error(f'error loading index {idx_name}: {str(e)} ') diff --git a/nl_server/loader.py b/nl_server/loader.py index e019a5455c..8c9db212f9 100644 --- a/nl_server/loader.py +++ b/nl_server/loader.py @@ -12,23 +12,38 @@ # See the License for the specific language governing permissions and # limitations under the License. +from dataclasses import dataclass +import json import logging import os -from typing import Dict +from pathlib import Path +from typing import Dict, List from flask import Flask import yaml from nl_server import config +from nl_server.custom_dc_constants import CUSTOM_DC_EMBEDDINGS_SPEC import nl_server.embeddings_map as emb_map from nl_server.nl_attribute_model import NLAttributeModel from shared.lib.custom_dc_util import get_custom_dc_user_data_path +from shared.lib.custom_dc_util import is_custom_dc from shared.lib.gcs import download_gcs_file from shared.lib.gcs import is_gcs_path from shared.lib.gcs import join_gcs_path _EMBEDDINGS_YAML = 'embeddings.yaml' _CUSTOM_EMBEDDINGS_YAML_PATH = 'datacommons/nl/custom_embeddings.yaml' +_EMBEDDINGS_SPEC_PATH: str = '/datacommons/nl/embeddings_spec.json' +_LOCAL_ENV_VALUES_PATH: str = f'{Path(__file__).parent.parent}/deploy/helm_charts/envs/autopush.yaml' + + +@dataclass +class EmbeddingsSpec: + default_index: str + enabled_indexes: List[str] + vertex_ai_model_info: Dict[str, any] + enable_reranking: bool # @@ -37,10 +52,15 @@ def load_server_state(app: Flask): flask_env = os.environ.get('FLASK_ENV') - embeddings_dict = _load_yaml(flask_env) - nl_embeddings = emb_map.EmbeddingsMap(embeddings_dict) + embeddings_spec = _get_embeddings_spec() + embeddings_dict = _load_yaml(flask_env, embeddings_spec.enabled_indexes) + parsed_embeddings_dict = config.parse(embeddings_dict, + embeddings_spec.vertex_ai_model_info, + embeddings_spec.enable_reranking) + nl_embeddings = emb_map.EmbeddingsMap(parsed_embeddings_dict) attribute_model = NLAttributeModel() - _update_app_config(app, attribute_model, nl_embeddings, embeddings_dict) + _update_app_config(app, attribute_model, nl_embeddings, embeddings_dict, + embeddings_spec) def load_custom_embeddings(app: Flask): @@ -54,13 +74,16 @@ def load_custom_embeddings(app: Flask): on a local path. """ flask_env = os.environ.get('FLASK_ENV') - embeddings_map = _load_yaml(flask_env) + embeddings_spec = _get_embeddings_spec() + embeddings_map = _load_yaml(flask_env, embeddings_spec.enabled_indexes) # This lookup will raise an error if embeddings weren't already initialized previously. # This is intentional. nl_embeddings: emb_map.EmbeddingsMap = app.config[config.NL_EMBEDDINGS_KEY] try: - embeddings_info = config.parse(embeddings_map) + embeddings_info = config.parse(embeddings_map, + embeddings_spec.vertex_ai_model_info, + embeddings_spec.enable_reranking) # Reset the custom DC index. nl_embeddings.reset_index(embeddings_info) except Exception as e: @@ -68,33 +91,24 @@ def load_custom_embeddings(app: Flask): # Update app config. _update_app_config(app, app.config[config.ATTRIBUTE_MODEL_KEY], nl_embeddings, - embeddings_map) + embeddings_map, embeddings_spec) # Takes an embeddings map and returns a version that only has the default -# index and its model info -def _get_default_only_emb_map(embeddings_map: Dict[str, any]) -> Dict[str, any]: - default_model_name = embeddings_map['indexes'][ - config.DEFAULT_INDEX_TYPE]['model'] - return { - 'version': embeddings_map['version'], - 'indexes': { - config.DEFAULT_INDEX_TYPE: - embeddings_map['indexes'][config.DEFAULT_INDEX_TYPE] - }, - 'models': { - default_model_name: embeddings_map['models'][default_model_name] - } - } - - -def _load_yaml(flask_env: str) -> Dict[str, any]: +# enabled indexes and its model info +def _get_enabled_only_emb_map(embeddings_map: Dict[str, any], + enabled_indexes: List[str]) -> Dict[str, any]: + indexes = {} + for index_name in enabled_indexes: + indexes[index_name] = embeddings_map['indexes'][index_name] + embeddings_map['indexes'] = indexes + return embeddings_map + + +def _load_yaml(flask_env: str, enabled_indexes: List[str]) -> Dict[str, any]: with open(get_env_path(flask_env, _EMBEDDINGS_YAML)) as f: embeddings_map = yaml.full_load(f) - - # For custom DC dev env, only keep the default index. - if _is_custom_dc_dev(flask_env): - embeddings_map = _get_default_only_emb_map(embeddings_map) + embeddings_map = _get_enabled_only_emb_map(embeddings_map, enabled_indexes) assert embeddings_map, 'No embeddings.yaml found!' @@ -107,15 +121,14 @@ def _load_yaml(flask_env: str) -> Dict[str, any]: return embeddings_map -def _update_app_config(app: Flask, - attribute_model: NLAttributeModel, +def _update_app_config(app: Flask, attribute_model: NLAttributeModel, nl_embeddings: emb_map.EmbeddingsMap, embeddings_version_map: Dict[str, any], - vertex_ai_models: Dict[str, Dict] = None): + embeddings_spec: EmbeddingsSpec): app.config[config.ATTRIBUTE_MODEL_KEY] = attribute_model app.config[config.NL_EMBEDDINGS_KEY] = nl_embeddings app.config[config.NL_EMBEDDINGS_VERSION_KEY] = embeddings_version_map - app.config[config.VERTEX_AI_MODELS_KEY] = vertex_ai_models or {} + app.config[config.EMBEDDINGS_SPEC_KEY] = embeddings_spec def _maybe_load_custom_dc_yaml(): @@ -166,3 +179,31 @@ def get_env_path(flask_env: str, file_name: str) -> str: def _is_custom_dc_dev(flask_env: str) -> bool: return flask_env == 'custom_dev' + + +# Get embedding index information for an instance +# +def _get_embeddings_spec() -> EmbeddingsSpec: + embeddings_spec_dict = None + + # If custom dc, get from constant + if is_custom_dc(): + embeddings_spec_dict = CUSTOM_DC_EMBEDDINGS_SPEC + # otherwise try to get from gke. + elif os.path.exists(_EMBEDDINGS_SPEC_PATH): + with open(_EMBEDDINGS_SPEC_PATH) as f: + embeddings_spec_dict = json.load(f) or {} + # If that path doesn't exist, assume we are running locally and use the values + # from autopush. + else: + with open(_LOCAL_ENV_VALUES_PATH) as f: + env_values = yaml.full_load(f) + embeddings_spec_dict = env_values['nl']['embeddingsSpec'] + + return EmbeddingsSpec( + embeddings_spec_dict.get('defaultIndex', ''), + embeddings_spec_dict.get('enabledIndexes', []), + # When vertexAIModels the key exists, the value can be None. If value is + # None, we still want to use an empty object. + vertex_ai_model_info=embeddings_spec_dict.get('vertexAIModels') or {}, + enable_reranking=embeddings_spec_dict.get('enableReranking', False)) diff --git a/nl_server/routes.py b/nl_server/routes.py index 1b90a0f089..e8a7a07368 100644 --- a/nl_server/routes.py +++ b/nl_server/routes.py @@ -35,8 +35,12 @@ @bp.route('/healthz') def healthz(): + default_index_type = current_app.config[ + config.EMBEDDINGS_SPEC_KEY].default_index + if not default_index_type: + return 'Service Unavailable', 500 nl_embeddings = current_app.config[config.NL_EMBEDDINGS_KEY].get_index( - config.DEFAULT_INDEX_TYPE) + default_index_type) if nl_embeddings: result: VarCandidates = search.search_vars( [nl_embeddings], ['life expectancy'])['life expectancy'] @@ -58,9 +62,11 @@ def search_vars(): queries = request.json.get('queries', []) queries = [str(escape(q)) for q in queries] - idx = str(escape(request.args.get('idx', config.DEFAULT_INDEX_TYPE))) + default_index_type = current_app.config[ + config.EMBEDDINGS_SPEC_KEY].default_index + idx = str(escape(request.args.get('idx', default_index_type))) if not idx: - idx = config.DEFAULT_INDEX_TYPE + idx = default_index_type emb_map: EmbeddingsMap = current_app.config[config.NL_EMBEDDINGS_KEY] diff --git a/nl_server/tests/custom_embeddings_test.py b/nl_server/tests/custom_embeddings_test.py index 170292a8f6..6addc49caa 100644 --- a/nl_server/tests/custom_embeddings_test.py +++ b/nl_server/tests/custom_embeddings_test.py @@ -64,28 +64,30 @@ def setUpClass(cls) -> None: cls.default_file = _copy(_DEFAULT_FILE) cls.custom_file = _copy(_CUSTOM_FILE) - cls.custom = emb_map.EmbeddingsMap({ - 'version': 1, - 'indexes': { - 'medium_ft': { - 'embeddings': cls.default_file, - 'store': 'MEMORY', - 'model': _TUNED_MODEL_NAME - }, - 'custom_ft': { - 'embeddings': cls.custom_file, - 'store': 'MEMORY', - 'model': _TUNED_MODEL_NAME - } - }, - 'models': { - _TUNED_MODEL_NAME: { - 'type': 'LOCAL', - 'usage': 'EMBEDDINGS', - 'gcs_folder': _TUNED_MODEL_GCS - } - } - }) + cls.custom = emb_map.EmbeddingsMap( + parse( + { + 'version': 1, + 'indexes': { + 'medium_ft': { + 'embeddings': cls.default_file, + 'store': 'MEMORY', + 'model': _TUNED_MODEL_NAME + }, + 'custom_ft': { + 'embeddings': cls.custom_file, + 'store': 'MEMORY', + 'model': _TUNED_MODEL_NAME + } + }, + 'models': { + _TUNED_MODEL_NAME: { + 'type': 'LOCAL', + 'usage': 'EMBEDDINGS', + 'gcs_folder': _TUNED_MODEL_GCS + } + } + }, {}, False)) def test_entries(self): self.assertEqual(1, len(self.custom.get_index('medium_ft').store.dcids)) @@ -113,46 +115,49 @@ def test_queries(self, query: str, index: str, expected: str): _test_query(self, indexes, query, expected) def test_merge_custom_embeddings(self): - embeddings = emb_map.EmbeddingsMap({ - 'version': 1, - 'indexes': { - 'medium_ft': { - 'embeddings': self.default_file, - 'store': 'MEMORY', - 'model': _TUNED_MODEL_NAME - }, - }, - 'models': { - _TUNED_MODEL_NAME: { - 'type': 'LOCAL', - 'usage': 'EMBEDDINGS', - 'gcs_folder': _TUNED_MODEL_GCS - } - } - }) + embeddings = emb_map.EmbeddingsMap( + parse( + { + 'version': 1, + 'indexes': { + 'medium_ft': { + 'embeddings': self.default_file, + 'store': 'MEMORY', + 'model': _TUNED_MODEL_NAME + }, + }, + 'models': { + _TUNED_MODEL_NAME: { + 'type': 'LOCAL', + 'usage': 'EMBEDDINGS', + 'gcs_folder': _TUNED_MODEL_GCS + } + } + }, {}, False)) _test_query(self, [embeddings.get_index("medium_ft")], "money", "dc/topic/sdg_1") _test_query(self, [embeddings.get_index("medium_ft")], "food", "") embeddings.reset_index( - parse({ - 'version': 1, - 'indexes': { - 'custom_ft': { - 'embeddings': self.custom_file, - 'store': 'MEMORY', - 'model': _TUNED_MODEL_NAME + parse( + { + 'version': 1, + 'indexes': { + 'custom_ft': { + 'embeddings': self.custom_file, + 'store': 'MEMORY', + 'model': _TUNED_MODEL_NAME + }, }, - }, - 'models': { - _TUNED_MODEL_NAME: { - 'type': 'LOCAL', - 'usage': 'EMBEDDINGS', - 'gcs_folder': _TUNED_MODEL_GCS + 'models': { + _TUNED_MODEL_NAME: { + 'type': 'LOCAL', + 'usage': 'EMBEDDINGS', + 'gcs_folder': _TUNED_MODEL_GCS + } } - } - })) + }, {}, False)) emb_list = [ embeddings.get_index("custom_ft"), diff --git a/nl_server/tests/embeddings_test.py b/nl_server/tests/embeddings_test.py index a5feb4afe8..893e8e8440 100644 --- a/nl_server/tests/embeddings_test.py +++ b/nl_server/tests/embeddings_test.py @@ -20,7 +20,6 @@ from parameterized import parameterized import yaml -from nl_server import embeddings_map as emb_map from nl_server.config import parse from nl_server.embeddings import Embeddings from nl_server.model.sentence_transformer import LocalSentenceTransformerModel @@ -32,11 +31,20 @@ os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -def _get_embeddings_info(): +def _get_embeddings_spec(): + autopush_values_path = os.path.join(_root_dir, + 'deploy/helm_charts/envs/autopush.yaml') + with open(autopush_values_path) as f: + autopush_values = yaml.full_load(f) + return autopush_values['nl']['embeddingsSpec'] + + +def _get_embeddings_info(embeddings_spec): embeddings_config_path = os.path.join(_root_dir, 'deploy/nl/embeddings.yaml') with open(embeddings_config_path) as f: embeddings_map = yaml.full_load(f) - return parse(embeddings_map) + return parse(embeddings_map, embeddings_spec['vertexAIModels'], + embeddings_spec['enableReranking']) def _get_contents( @@ -48,9 +56,10 @@ class TestEmbeddings(unittest.TestCase): @classmethod def setUpClass(cls) -> None: - embeddings_info = _get_embeddings_info() + embeddings_spec = _get_embeddings_spec() + embeddings_info = _get_embeddings_info(embeddings_spec) # TODO(pradh): Expand tests to other index sizes. - idx_info = embeddings_info.indexes[emb_map.DEFAULT_INDEX_TYPE] + idx_info = embeddings_info.indexes[embeddings_spec['defaultIndex']] model_info = embeddings_info.models[idx_info.model] cls.nl_embeddings = Embeddings( model=LocalSentenceTransformerModel(model_info), From dd5bdc54054538b4ac30d1307f54a2e389371e93 Mon Sep 17 00:00:00 2001 From: Dan Noble Date: Thu, 16 May 2024 03:34:20 -0400 Subject: [PATCH 28/28] Updated UN ILO topic generation script, added variable groupings (#4242) * Updated UN ILO topic generation script * Added `dc/g/Custom_UN` variable grouping root to un staging environment * Fixed some typos in undata who variable groupings * Updated un staging ILO bt version * added undata_ilo search index * added undata_ilo embeddings and topic cache --- deploy/helm_charts/envs/autopush.yaml | 22 +- deploy/helm_charts/envs/unsdg_staging.yaml | 3 +- deploy/nl/embeddings.yaml | 4 + server/app_env/unsdg_staging.py | 6 +- .../nl_page/undata_ilo_non_country_vars.json | 3 + .../nl_page/undata_ilo_topic_cache.json | 168102 +++++++++++++++ server/config/nl_page/undata_topic_cache.json | 4 +- server/integration_tests/explore_test.py | 6 + .../chart_config.json | 40 + server/lib/nl/explore/params.py | 7 +- server/lib/topic_cache.py | 3 + tools/nl/embeddings/README.md | 6 + .../alternatives/undata_ilo/alternatives.csv | 1 + .../curated_input/undata_ilo/sheets_svs.csv | 86 + .../preindex/undata_ilo/duplicate_names.csv | 2 + .../preindex/undata_ilo/sv_descriptions.csv | 85 + .../testdata/custom_dc/input/embeddings.yaml | 6 +- tools/sdg/topics/README.md | 13 +- tools/sdg/topics/core_topics.py | 77 +- tools/sdg/topics/un_ilo_series_topics.csv | 1 + .../topics/undata_ilo_variable_grouping.csv | 26727 +++ tools/sdg/topics/undata_variable_grouping.csv | 8 +- 22 files changed, 195166 insertions(+), 46 deletions(-) create mode 100644 server/config/nl_page/undata_ilo_non_country_vars.json create mode 100644 server/config/nl_page/undata_ilo_topic_cache.json create mode 100644 server/integration_tests/test_data/detection_api_undata_ilo_idx/chart_config.json create mode 100644 tools/nl/embeddings/data/alternatives/undata_ilo/alternatives.csv create mode 100644 tools/nl/embeddings/data/curated_input/undata_ilo/sheets_svs.csv create mode 100644 tools/nl/embeddings/data/preindex/undata_ilo/duplicate_names.csv create mode 100644 tools/nl/embeddings/data/preindex/undata_ilo/sv_descriptions.csv create mode 100644 tools/sdg/topics/un_ilo_series_topics.csv create mode 100644 tools/sdg/topics/undata_ilo_variable_grouping.csv diff --git a/deploy/helm_charts/envs/autopush.yaml b/deploy/helm_charts/envs/autopush.yaml index 5b9ca739cf..cf38ca052e 100644 --- a/deploy/helm_charts/envs/autopush.yaml +++ b/deploy/helm_charts/envs/autopush.yaml @@ -46,16 +46,18 @@ nl: enabled: true embeddingsSpec: defaultIndex: "medium_ft" - enabledIndexes: [ - "base_uae_mem", - "bio_ft", - "medium_ft", - "medium_lance_ft", - "medium_vertex_ft", - "medium_vertex_mistral", - "sdg_ft", - "undata_ft", - ] + enabledIndexes: + [ + "base_uae_mem", + "bio_ft", + "medium_ft", + "medium_lance_ft", + "medium_vertex_ft", + "medium_vertex_mistral", + "sdg_ft", + "undata_ft", + "undata_ilo_ft", + ] vertexAIModels: dc-all-minilm-l6-v2-model: project_id: datcom-website-dev diff --git a/deploy/helm_charts/envs/unsdg_staging.yaml b/deploy/helm_charts/envs/unsdg_staging.yaml index 144839cbef..a631f35fe3 100644 --- a/deploy/helm_charts/envs/unsdg_staging.yaml +++ b/deploy/helm_charts/envs/unsdg_staging.yaml @@ -44,6 +44,7 @@ nl: "medium_ft", "sdg_ft", "undata_ft", + "undata_ilo_ft", ] serviceGroups: @@ -63,7 +64,7 @@ kgStoreConfig: project: datcom-un-staging instance: dc-graph tables: - - ilo_2024_05_06_15_04_35 + - ilo_2024_05_15_14_43_26 svg: blocklistFile: ["dc/g/Uncategorized", "oecd/g/OECD"] diff --git a/deploy/nl/embeddings.yaml b/deploy/nl/embeddings.yaml index 3d4b520dab..43150d98f4 100644 --- a/deploy/nl/embeddings.yaml +++ b/deploy/nl/embeddings.yaml @@ -27,6 +27,10 @@ indexes: store: MEMORY embeddings: gs://datcom-nl-models/embeddings_undata_2024_03_20_11_01_12.ft_final_v20230717230459.all-MiniLM-L6-v2.csv model: ft-final-v20230717230459-all-MiniLM-L6-v2 + undata_ilo_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_undata_ilo_2024_05_15_11_18_05.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft-final-v20230717230459-all-MiniLM-L6-v2 bio_ft: store: MEMORY embeddings: gs://datcom-nl-models/embeddings_bio_2024_03_19_16_39_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv diff --git a/server/app_env/unsdg_staging.py b/server/app_env/unsdg_staging.py index 47685cf170..fdc55fe89d 100644 --- a/server/app_env/unsdg_staging.py +++ b/server/app_env/unsdg_staging.py @@ -31,11 +31,15 @@ class Config(_base.Config): GEO_JSON_PROP = "geoJsonCoordinatesUN" CUSTOM_DC_TEMPLATE_FOLDER = "unsdg" STAT_VAR_HIERARCHY_CONFIG = { - "disableSearch": True, + "disableSearch": + True, "nodes": [{ "dcid": "dc/g/SDG" }, { "dcid": "dc/g/UN" + }, { + "dcid": "dc/g/Custom_UN", + "name": "12 UN Data Thematic Areas (ILO)" }] } diff --git a/server/config/nl_page/undata_ilo_non_country_vars.json b/server/config/nl_page/undata_ilo_non_country_vars.json new file mode 100644 index 0000000000..fcd03b96e7 --- /dev/null +++ b/server/config/nl_page/undata_ilo_non_country_vars.json @@ -0,0 +1,3 @@ +{ + "variables": [] +} \ No newline at end of file diff --git a/server/config/nl_page/undata_ilo_topic_cache.json b/server/config/nl_page/undata_ilo_topic_cache.json new file mode 100644 index 0000000000..94bfd44569 --- /dev/null +++ b/server/config/nl_page/undata_ilo_topic_cache.json @@ -0,0 +1,168102 @@ +{ + "nodes": [ + { + "dcid": [ + "dc/svpg/ILOCPINCYRRT.002" + ], + "name": [ + "Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)" + ], + "memberList": [ + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP01", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP02", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP03", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP04", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP05", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP06", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP07", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP08", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP09", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP10", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP11", + "ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOCPINWGTRT.001" + ], + "name": [ + "National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)" + ], + "memberList": [ + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP01", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP02", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP03", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP04", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP05", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP06", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP07", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP08", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP09", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP10", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP11", + "ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOCPIXCPIRT.002" + ], + "name": [ + "National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP)" + ], + "memberList": [ + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP01", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP02", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP03", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP04", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP05", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP06", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP07", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP08", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP09", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP10", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP11", + "ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.002" + ], + "name": [ + "Labour force (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.AGE--Y15T24", + "ilo/EAP_2EAP_NB.AGE--Y15T64", + "ilo/EAP_2EAP_NB.AGE--Y_GE15", + "ilo/EAP_2EAP_NB.AGE--Y25T54", + "ilo/EAP_2EAP_NB.AGE--Y_GE25", + "ilo/EAP_2EAP_NB.AGE--Y55T64", + "ilo/EAP_2EAP_NB.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.003" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.004" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T64", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.005" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.006" + ], + "name": [ + "Labour force (ILO modelled estimates) (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y25T54", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y25T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.007" + ], + "name": [ + "Labour force (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.008" + ], + "name": [ + "Labour force (ILO modelled estimates) (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y55T64", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y55T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.009" + ], + "name": [ + "Labour force (ILO modelled estimates) (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE65", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.010" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.AGE--Y15T24__URBANISATION--R", + "ilo/EAP_2EAP_NB.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.011" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.AGE--Y_GE15__URBANISATION--R", + "ilo/EAP_2EAP_NB.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.012" + ], + "name": [ + "Labour force (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.AGE--Y_GE25__URBANISATION--R", + "ilo/EAP_2EAP_NB.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.013" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.014" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.015" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.016" + ], + "name": [ + "Labour force (ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.017" + ], + "name": [ + "Labour force (ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.018" + ], + "name": [ + "Labour force (ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2EAPNB.019" + ], + "name": [ + "Labour force (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/EAP_2EAP_NB.SEX--F", + "ilo/EAP_2EAP_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.002" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.AGE--Y15T24", + "ilo/EAP_2WAP_RT.AGE--Y15T64", + "ilo/EAP_2WAP_RT.AGE--Y_GE15", + "ilo/EAP_2WAP_RT.AGE--Y25T54", + "ilo/EAP_2WAP_RT.AGE--Y_GE25", + "ilo/EAP_2WAP_RT.AGE--Y55T64", + "ilo/EAP_2WAP_RT.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.007" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.008" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T64", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.009" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.010" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y25T54", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y25T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.011" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.012" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y55T64", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y55T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.013" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE65", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.014" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.AGE--Y15T24__URBANISATION--R", + "ilo/EAP_2WAP_RT.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.015" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/EAP_2WAP_RT.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.016" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/EAP_2WAP_RT.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.017" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.018" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.019" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.020" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.021" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.022" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP2WAPRT.023" + ], + "name": [ + "Labour force participation rate (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/EAP_2WAP_RT.SEX--F", + "ilo/EAP_2WAP_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.001" + ], + "name": [ + "Youth labour force by Age group" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T19", + "ilo/EAP_3EAP_NB.AGE--Y15T29", + "ilo/EAP_3EAP_NB.AGE--Y20T24", + "ilo/EAP_3EAP_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.002" + ], + "name": [ + "Youth labour force (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.003" + ], + "name": [ + "Youth labour force (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.004" + ], + "name": [ + "Youth labour force (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.005" + ], + "name": [ + "Youth labour force (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.006" + ], + "name": [ + "Youth labour force (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.007" + ], + "name": [ + "Youth labour force (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.008" + ], + "name": [ + "Youth labour force (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.009" + ], + "name": [ + "Youth labour force (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.010" + ], + "name": [ + "Youth labour force (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.011" + ], + "name": [ + "Youth labour force (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.012" + ], + "name": [ + "Youth labour force (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.013" + ], + "name": [ + "Youth labour force (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.014" + ], + "name": [ + "Youth labour force (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.015" + ], + "name": [ + "Youth labour force (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.016" + ], + "name": [ + "Youth labour force (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.017" + ], + "name": [ + "Youth labour force (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.018" + ], + "name": [ + "Youth labour force (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.019" + ], + "name": [ + "Youth labour force (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.020" + ], + "name": [ + "Youth labour force (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.021" + ], + "name": [ + "Youth labour force (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.022" + ], + "name": [ + "Youth labour force (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.023" + ], + "name": [ + "Youth labour force (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.024" + ], + "name": [ + "Youth labour force (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.025" + ], + "name": [ + "Youth labour force (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.026" + ], + "name": [ + "Youth labour force (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.027" + ], + "name": [ + "Youth labour force (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.028" + ], + "name": [ + "Youth labour force (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.029" + ], + "name": [ + "Youth labour force (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.030" + ], + "name": [ + "Youth labour force (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.031" + ], + "name": [ + "Youth labour force (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.032" + ], + "name": [ + "Youth labour force (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.033" + ], + "name": [ + "Youth labour force (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.034" + ], + "name": [ + "Youth labour force (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.035" + ], + "name": [ + "Youth labour force (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29", + "ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.036" + ], + "name": [ + "Youth labour force (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24", + "ilo/EAP_3EAP_NB.SEX--O__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.037" + ], + "name": [ + "Youth labour force (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.038" + ], + "name": [ + "Youth labour force (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.039" + ], + "name": [ + "Youth labour force (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.040" + ], + "name": [ + "Youth labour force (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.041" + ], + "name": [ + "Youth labour force (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.042" + ], + "name": [ + "Youth labour force (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.043" + ], + "name": [ + "Youth labour force (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.044" + ], + "name": [ + "Youth labour force (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.045" + ], + "name": [ + "Youth labour force (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.046" + ], + "name": [ + "Youth labour force (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--R", + "ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--U", + "ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.047" + ], + "name": [ + "Youth labour force (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--U", + "ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.048" + ], + "name": [ + "Youth labour force (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--R", + "ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--U", + "ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.049" + ], + "name": [ + "Youth labour force (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--R", + "ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--U", + "ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.050" + ], + "name": [ + "Youth labour force (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.051" + ], + "name": [ + "Youth labour force (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.052" + ], + "name": [ + "Youth labour force (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.053" + ], + "name": [ + "Youth labour force (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.054" + ], + "name": [ + "Youth labour force (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.055" + ], + "name": [ + "Youth labour force (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.056" + ], + "name": [ + "Youth labour force (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.057" + ], + "name": [ + "Youth labour force (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.058" + ], + "name": [ + "Youth labour force (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.059" + ], + "name": [ + "Youth labour force (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.060" + ], + "name": [ + "Youth labour force (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3EAPNB.061" + ], + "name": [ + "Youth labour force (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.001" + ], + "name": [ + "Youth labour force participation rate by Age group" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T19", + "ilo/EAP_3WAP_RT.AGE--Y15T29", + "ilo/EAP_3WAP_RT.AGE--Y20T24", + "ilo/EAP_3WAP_RT.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.002" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.003" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.004" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.005" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.006" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.007" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.008" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.009" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.010" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.011" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.012" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.013" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.014" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.015" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.016" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.017" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.018" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.019" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.020" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.021" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.022" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.023" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.024" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.025" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.026" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.027" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.028" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.029" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.030" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.031" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.032" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.033" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.034" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.035" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29", + "ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.036" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24", + "ilo/EAP_3WAP_RT.SEX--O__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.037" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.038" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.039" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.040" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.041" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.042" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.043" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.044" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.045" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.046" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--R", + "ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--U", + "ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.047" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--U", + "ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.048" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--R", + "ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--U", + "ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.049" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--R", + "ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--U", + "ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.050" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.051" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.052" + ], + "name": [ + "Youth labour force participation rate (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.053" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.054" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R", + "ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.055" + ], + "name": [ + "Youth labour force participation rate (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.056" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.057" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.058" + ], + "name": [ + "Youth labour force participation rate (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.059" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.060" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAP3WAPRT.061" + ], + "name": [ + "Youth labour force participation rate (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEAR4MMNNB.001" + ], + "name": [ + "Monthly minimum wage by Currency" + ], + "memberList": [ + "ilo/EAR_4MMN_NB.CURRENCY--CUR_TYPE_PPP", + "ilo/EAR_4MMN_NB.CURRENCY--CUR_TYPE_USD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEARXTLPRT.002" + ], + "name": [ + "Low pay rate by Sex" + ], + "memberList": [ + "ilo/EAR_XTLP_RT.SEX--F", + "ilo/EAR_XTLP_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.001" + ], + "name": [ + "Youth employees by Age group" + ], + "memberList": [ + "ilo/EES_3EES_NB.AGE--Y15T19", + "ilo/EES_3EES_NB.AGE--Y15T29", + "ilo/EES_3EES_NB.AGE--Y20T24", + "ilo/EES_3EES_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.002" + ], + "name": [ + "Youth employees (15 to 19 years old) by Contract type" + ], + "memberList": [ + "ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.003" + ], + "name": [ + "Youth employees (15 to 29 years old) by Contract type" + ], + "memberList": [ + "ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.004" + ], + "name": [ + "Youth employees (20 to 24 years old) by Contract type" + ], + "memberList": [ + "ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.005" + ], + "name": [ + "Youth employees (25 to 29 years old) by Contract type" + ], + "memberList": [ + "ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.006" + ], + "name": [ + "Youth employees (15 to 19 years old, Permanent contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--PERM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.007" + ], + "name": [ + "Youth employees (15 to 19 years old, Temporary contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--TEMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.008" + ], + "name": [ + "Youth employees (15 to 19 years old, Unknown type of contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--_X", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.009" + ], + "name": [ + "Youth employees (15 to 29 years old, Permanent contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--PERM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.010" + ], + "name": [ + "Youth employees (15 to 29 years old, Temporary contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--TEMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.011" + ], + "name": [ + "Youth employees (15 to 29 years old, Unknown type of contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--_X", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--_X", + "ilo/EES_3EES_NB.SEX--O__AGE--Y15T29__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.012" + ], + "name": [ + "Youth employees (20 to 24 years old, Permanent contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--PERM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.013" + ], + "name": [ + "Youth employees (20 to 24 years old, Temporary contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--TEMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.014" + ], + "name": [ + "Youth employees (20 to 24 years old, Unknown type of contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--_X", + "ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.015" + ], + "name": [ + "Youth employees (25 to 29 years old, Permanent contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--PERM", + "ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--PERM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.016" + ], + "name": [ + "Youth employees (25 to 29 years old, Temporary contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--TEMP", + "ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--TEMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.017" + ], + "name": [ + "Youth employees (25 to 29 years old, Unknown type of contract) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--_X", + "ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.018" + ], + "name": [ + "Youth employees (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T19", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.019" + ], + "name": [ + "Youth employees (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y15T29", + "ilo/EES_3EES_NB.SEX--M__AGE--Y15T29", + "ilo/EES_3EES_NB.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.020" + ], + "name": [ + "Youth employees (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y20T24", + "ilo/EES_3EES_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEES3EESNB.021" + ], + "name": [ + "Youth employees (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EES_3EES_NB.SEX--F__AGE--Y25T29", + "ilo/EES_3EES_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEESXTMPRT.002" + ], + "name": [ + "Share of temporary employees by Sex" + ], + "memberList": [ + "ilo/EES_XTMP_RT.SEX--F", + "ilo/EES_XTMP_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2EIPNB.001" + ], + "name": [ + "Persons outside the labour force (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EIP_2EIP_NB.AGE--Y15T24", + "ilo/EIP_2EIP_NB.AGE--Y_GE15", + "ilo/EIP_2EIP_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2EIPNB.006" + ], + "name": [ + "Persons outside the labour force (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_2EIP_NB.SEX--F__AGE--Y15T24", + "ilo/EIP_2EIP_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2EIPNB.007" + ], + "name": [ + "Persons outside the labour force (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE15", + "ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2EIPNB.008" + ], + "name": [ + "Persons outside the labour force (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE25", + "ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2JOBNB.002" + ], + "name": [ + "Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/EIP_2JOB_NB.SEX--F", + "ilo/EIP_2JOB_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2JOBRT.002" + ], + "name": [ + "Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/EIP_2JOB_RT.SEX--F", + "ilo/EIP_2JOB_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2PLFRT.001" + ], + "name": [ + "Potential labour force rate (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EIP_2PLF_RT.AGE--Y15T24", + "ilo/EIP_2PLF_RT.AGE--Y_GE15", + "ilo/EIP_2PLF_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2PLFRT.002" + ], + "name": [ + "Potential labour force rate (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_2PLF_RT.SEX--F__AGE--Y15T24", + "ilo/EIP_2PLF_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2PLFRT.003" + ], + "name": [ + "Potential labour force rate (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2PLF_RT.SEX--F__AGE--Y_GE15", + "ilo/EIP_2PLF_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2PLFRT.004" + ], + "name": [ + "Potential labour force rate (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2PLF_RT.SEX--F__AGE--Y_GE25", + "ilo/EIP_2PLF_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.001" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.AGE--Y15T24", + "ilo/EIP_2WAP_RT.AGE--Y_GE15", + "ilo/EIP_2WAP_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.002" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.003" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.004" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.005" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.AGE--Y15T24__URBANISATION--R", + "ilo/EIP_2WAP_RT.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.006" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/EIP_2WAP_RT.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.007" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/EIP_2WAP_RT.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.008" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.009" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.010" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.011" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.012" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP2WAPRT.013" + ], + "name": [ + "Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.001" + ], + "name": [ + "Youth outside the labour force by Age group" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T19", + "ilo/EIP_3EIP_NB.AGE--Y15T29", + "ilo/EIP_3EIP_NB.AGE--Y20T24", + "ilo/EIP_3EIP_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.002" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.003" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.004" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.005" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.006" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.007" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.008" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.009" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.010" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.011" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.012" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.013" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.014" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.015" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.016" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.017" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.018" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.019" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.020" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.021" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.022" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.023" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.024" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.025" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.026" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.027" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.028" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.029" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.030" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.031" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.032" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.033" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.034" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.035" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.036" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.037" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.038" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.039" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.041" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.042" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.043" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.044" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.045" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.046" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.047" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.048" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.049" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.050" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--R", + "ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--U", + "ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.051" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--R", + "ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--U", + "ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.052" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.053" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.054" + ], + "name": [ + "Youth outside the labour force (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.055" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.056" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.057" + ], + "name": [ + "Youth outside the labour force (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.058" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.059" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.060" + ], + "name": [ + "Youth outside the labour force (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.061" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.062" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3EIPNB.063" + ], + "name": [ + "Youth outside the labour force (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.001" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) by Age group" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T19", + "ilo/EIP_3WAP_RT.AGE--Y15T29", + "ilo/EIP_3WAP_RT.AGE--Y20T24", + "ilo/EIP_3WAP_RT.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.002" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.003" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.004" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.005" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.006" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.007" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.008" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.009" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.010" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.011" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.012" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.013" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.014" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.015" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.016" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.017" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.018" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.019" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.020" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.021" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.022" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.023" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.024" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.025" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.026" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.027" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.028" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.029" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.030" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.031" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.032" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.033" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.034" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.035" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.036" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.037" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.038" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.039" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.041" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.042" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.043" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.044" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.045" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.046" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.047" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.048" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.049" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.050" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--R", + "ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--U", + "ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.051" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--R", + "ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--U", + "ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.052" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.053" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.054" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.055" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.056" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.057" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.058" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.059" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.060" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.061" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.062" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP3WAPRT.063" + ], + "name": [ + "Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EETNB.002" + ], + "name": [ + "Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex" + ], + "memberList": [ + "ilo/EIP_5EET_NB.SEX--F", + "ilo/EIP_5EET_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EETRT.002" + ], + "name": [ + "Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex" + ], + "memberList": [ + "ilo/EIP_5EET_RT.SEX--F", + "ilo/EIP_5EET_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EIPNB.001" + ], + "name": [ + "Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EIP_5EIP_NB.AGE--Y15T24", + "ilo/EIP_5EIP_NB.AGE--Y_GE15", + "ilo/EIP_5EIP_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EIPNB.002" + ], + "name": [ + "Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_5EIP_NB.SEX--F__AGE--Y15T24", + "ilo/EIP_5EIP_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EIPNB.003" + ], + "name": [ + "Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_5EIP_NB.SEX--F__AGE--Y_GE15", + "ilo/EIP_5EIP_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5EIPNB.004" + ], + "name": [ + "Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_5EIP_NB.SEX--F__AGE--Y_GE25", + "ilo/EIP_5EIP_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5PLFNB.001" + ], + "name": [ + "Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EIP_5PLF_NB.AGE--Y15T24", + "ilo/EIP_5PLF_NB.AGE--Y_GE15", + "ilo/EIP_5PLF_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5PLFNB.002" + ], + "name": [ + "Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EIP_5PLF_NB.SEX--F__AGE--Y15T24", + "ilo/EIP_5PLF_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5PLFNB.003" + ], + "name": [ + "Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_5PLF_NB.SEX--F__AGE--Y_GE15", + "ilo/EIP_5PLF_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEIP5PLFNB.004" + ], + "name": [ + "Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EIP_5PLF_NB.SEX--F__AGE--Y_GE25", + "ilo/EIP_5PLF_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2FTENB.001" + ], + "name": [ + "Full-time equivalent employment by Workweek hours" + ], + "memberList": [ + "ilo/EMP_2FTE_NB.WORKWEEK_HOURS--FTE40", + "ilo/EMP_2FTE_NB.WORKWEEK_HOURS--FTE48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2FTENB.002" + ], + "name": [ + "Full-time equivalent employment (Based on 40 hours per week) by Sex" + ], + "memberList": [ + "ilo/EMP_2FTE_NB.SEX--F__WORKWEEK_HOURS--FTE40", + "ilo/EMP_2FTE_NB.SEX--M__WORKWEEK_HOURS--FTE40" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2FTENB.003" + ], + "name": [ + "Full-time equivalent employment (Based on 48 hours per week) by Sex" + ], + "memberList": [ + "ilo/EMP_2FTE_NB.SEX--F__WORKWEEK_HOURS--FTE48", + "ilo/EMP_2FTE_NB.SEX--M__WORKWEEK_HOURS--FTE48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2NIFNB.002" + ], + "name": [ + "Informal employment (ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/EMP_2NIF_NB.SEX--F", + "ilo/EMP_2NIF_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2NIFRT.002" + ], + "name": [ + "Informal employment rate (ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/EMP_2NIF_RT.SEX--F", + "ilo/EMP_2NIF_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2TRURT.001" + ], + "name": [ + "Time-related underemployment rate (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EMP_2TRU_RT.AGE--Y15T24", + "ilo/EMP_2TRU_RT.AGE--Y_GE15", + "ilo/EMP_2TRU_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2TRURT.002" + ], + "name": [ + "Time-related underemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_2TRU_RT.SEX--F__AGE--Y15T24", + "ilo/EMP_2TRU_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2TRURT.003" + ], + "name": [ + "Time-related underemployment rate (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_2TRU_RT.SEX--F__AGE--Y_GE15", + "ilo/EMP_2TRU_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2TRURT.004" + ], + "name": [ + "Time-related underemployment rate (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_2TRU_RT.SEX--F__AGE--Y_GE25", + "ilo/EMP_2TRU_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.001" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.AGE--Y15T24", + "ilo/EMP_2WAP_RT.AGE--Y_GE15", + "ilo/EMP_2WAP_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.006" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.007" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.008" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.009" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.AGE--Y15T24__URBANISATION--R", + "ilo/EMP_2WAP_RT.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.010" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_2WAP_RT.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.011" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_2WAP_RT.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.012" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.013" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.014" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.015" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.016" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP2WAPRT.017" + ], + "name": [ + "Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.001" + ], + "name": [ + "Youth employment by Age group" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19", + "ilo/EMP_3EMP_NB.AGE--Y15T29", + "ilo/EMP_3EMP_NB.AGE--Y20T24", + "ilo/EMP_3EMP_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.002" + ], + "name": [ + "Youth employment (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.003" + ], + "name": [ + "Youth employment (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.004" + ], + "name": [ + "Youth employment (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.005" + ], + "name": [ + "Youth employment (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.006" + ], + "name": [ + "Youth employment (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.007" + ], + "name": [ + "Youth employment (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.008" + ], + "name": [ + "Youth employment (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.009" + ], + "name": [ + "Youth employment (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.010" + ], + "name": [ + "Youth employment (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.011" + ], + "name": [ + "Youth employment (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.012" + ], + "name": [ + "Youth employment (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.013" + ], + "name": [ + "Youth employment (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.014" + ], + "name": [ + "Youth employment (15 to 19 years old) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.015" + ], + "name": [ + "Youth employment (15 to 29 years old) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.016" + ], + "name": [ + "Youth employment (20 to 24 years old) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.017" + ], + "name": [ + "Youth employment (25 to 29 years old) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.018" + ], + "name": [ + "Youth employment (15 to 19 years old) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.019" + ], + "name": [ + "Youth employment (15 to 29 years old) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.020" + ], + "name": [ + "Youth employment (20 to 24 years old) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.021" + ], + "name": [ + "Youth employment (25 to 29 years old) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.022" + ], + "name": [ + "Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.023" + ], + "name": [ + "Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.024" + ], + "name": [ + "Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.025" + ], + "name": [ + "Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.026" + ], + "name": [ + "Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.027" + ], + "name": [ + "Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.028" + ], + "name": [ + "Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.029" + ], + "name": [ + "Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.034" + ], + "name": [ + "Youth employment (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.035" + ], + "name": [ + "Youth employment (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.036" + ], + "name": [ + "Youth employment (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.037" + ], + "name": [ + "Youth employment (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.038" + ], + "name": [ + "Youth employment (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.039" + ], + "name": [ + "Youth employment (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.040" + ], + "name": [ + "Youth employment (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.041" + ], + "name": [ + "Youth employment (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.042" + ], + "name": [ + "Youth employment (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.043" + ], + "name": [ + "Youth employment (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.044" + ], + "name": [ + "Youth employment (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.045" + ], + "name": [ + "Youth employment (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.046" + ], + "name": [ + "Youth employment (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.047" + ], + "name": [ + "Youth employment (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.048" + ], + "name": [ + "Youth employment (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.049" + ], + "name": [ + "Youth employment (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.050" + ], + "name": [ + "Youth employment (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.051" + ], + "name": [ + "Youth employment (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.052" + ], + "name": [ + "Youth employment (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.053" + ], + "name": [ + "Youth employment (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.054" + ], + "name": [ + "Youth employment (15 to 19 years old) by Hours worked" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.055" + ], + "name": [ + "Youth employment (15 to 29 years old) by Hours worked" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.056" + ], + "name": [ + "Youth employment (20 to 24 years old) by Hours worked" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.057" + ], + "name": [ + "Youth employment (25 to 29 years old) by Hours worked" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.058" + ], + "name": [ + "Youth employment (15 to 19 years old, 01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.059" + ], + "name": [ + "Youth employment (15 to 19 years old, 15-24 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.060" + ], + "name": [ + "Youth employment (15 to 19 years old, 15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.061" + ], + "name": [ + "Youth employment (15 to 19 years old, 25-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.062" + ], + "name": [ + "Youth employment (15 to 19 years old, 30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.063" + ], + "name": [ + "Youth employment (15 to 19 years old, 35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.064" + ], + "name": [ + "Youth employment (15 to 19 years old, 40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.065" + ], + "name": [ + "Youth employment (15 to 19 years old, 49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.066" + ], + "name": [ + "Youth employment (15 to 19 years old, 49-59 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H49T59" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.067" + ], + "name": [ + "Youth employment (15 to 19 years old, 60+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--HGE60" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.068" + ], + "name": [ + "Youth employment (15 to 19 years old, No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.069" + ], + "name": [ + "Youth employment (15 to 19 years old, No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.070" + ], + "name": [ + "Youth employment (15 to 29 years old, 01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.071" + ], + "name": [ + "Youth employment (15 to 29 years old, 15-24 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.072" + ], + "name": [ + "Youth employment (15 to 29 years old, 15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.073" + ], + "name": [ + "Youth employment (15 to 29 years old, 25-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.074" + ], + "name": [ + "Youth employment (15 to 29 years old, 30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.075" + ], + "name": [ + "Youth employment (15 to 29 years old, 35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.076" + ], + "name": [ + "Youth employment (15 to 29 years old, 40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.077" + ], + "name": [ + "Youth employment (15 to 29 years old, 49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.078" + ], + "name": [ + "Youth employment (15 to 29 years old, 49-59 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H49T59" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.079" + ], + "name": [ + "Youth employment (15 to 29 years old, 60+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--HGE60" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.080" + ], + "name": [ + "Youth employment (15 to 29 years old, No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.081" + ], + "name": [ + "Youth employment (15 to 29 years old, No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.082" + ], + "name": [ + "Youth employment (20 to 24 years old, 01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.083" + ], + "name": [ + "Youth employment (20 to 24 years old, 15-24 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.084" + ], + "name": [ + "Youth employment (20 to 24 years old, 15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.085" + ], + "name": [ + "Youth employment (20 to 24 years old, 25-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.086" + ], + "name": [ + "Youth employment (20 to 24 years old, 30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.087" + ], + "name": [ + "Youth employment (20 to 24 years old, 35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.088" + ], + "name": [ + "Youth employment (20 to 24 years old, 40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.089" + ], + "name": [ + "Youth employment (20 to 24 years old, 49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.090" + ], + "name": [ + "Youth employment (20 to 24 years old, 49-59 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H49T59" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.091" + ], + "name": [ + "Youth employment (20 to 24 years old, 60+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--HGE60" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.092" + ], + "name": [ + "Youth employment (20 to 24 years old, No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.093" + ], + "name": [ + "Youth employment (20 to 24 years old, No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.094" + ], + "name": [ + "Youth employment (25 to 29 years old, 01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H1T14", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.095" + ], + "name": [ + "Youth employment (25 to 29 years old, 15-24 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H15T24", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.096" + ], + "name": [ + "Youth employment (25 to 29 years old, 15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H15T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.097" + ], + "name": [ + "Youth employment (25 to 29 years old, 25-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H25T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.098" + ], + "name": [ + "Youth employment (25 to 29 years old, 30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H30T34", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.099" + ], + "name": [ + "Youth employment (25 to 29 years old, 35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H35T39", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.100" + ], + "name": [ + "Youth employment (25 to 29 years old, 40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H40T48", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.101" + ], + "name": [ + "Youth employment (25 to 29 years old, 49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--HGE49", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.102" + ], + "name": [ + "Youth employment (25 to 29 years old, 49-59 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H49T59", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H49T59" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.103" + ], + "name": [ + "Youth employment (25 to 29 years old, 60+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--HGE60", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--HGE60" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.104" + ], + "name": [ + "Youth employment (25 to 29 years old, No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.105" + ], + "name": [ + "Youth employment (25 to 29 years old, No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.106" + ], + "name": [ + "Youth employment (15 to 19 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.107" + ], + "name": [ + "Youth employment (15 to 29 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.108" + ], + "name": [ + "Youth employment (20 to 24 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.109" + ], + "name": [ + "Youth employment (25 to 29 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.110" + ], + "name": [ + "Youth employment (15 to 19 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.111" + ], + "name": [ + "Youth employment (15 to 19 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.112" + ], + "name": [ + "Youth employment (15 to 19 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.113" + ], + "name": [ + "Youth employment (15 to 29 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.114" + ], + "name": [ + "Youth employment (15 to 29 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.115" + ], + "name": [ + "Youth employment (15 to 29 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.116" + ], + "name": [ + "Youth employment (20 to 24 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.117" + ], + "name": [ + "Youth employment (20 to 24 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.118" + ], + "name": [ + "Youth employment (20 to 24 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.119" + ], + "name": [ + "Youth employment (25 to 29 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--FULL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.120" + ], + "name": [ + "Youth employment (25 to 29 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.121" + ], + "name": [ + "Youth employment (25 to 29 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--PART", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.126" + ], + "name": [ + "Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.127" + ], + "name": [ + "Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.128" + ], + "name": [ + "Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.129" + ], + "name": [ + "Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.130" + ], + "name": [ + "Youth employment (15 to 19 years old) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.131" + ], + "name": [ + "Youth employment (15 to 29 years old) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.132" + ], + "name": [ + "Youth employment (20 to 24 years old) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.133" + ], + "name": [ + "Youth employment (25 to 29 years old) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.134" + ], + "name": [ + "Youth employment (15 to 19 years old) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.135" + ], + "name": [ + "Youth employment (15 to 29 years old) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.136" + ], + "name": [ + "Youth employment (20 to 24 years old) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.137" + ], + "name": [ + "Youth employment (25 to 29 years old) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.138" + ], + "name": [ + "Youth employment (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.139" + ], + "name": [ + "Youth employment (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29", + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.140" + ], + "name": [ + "Youth employment (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.141" + ], + "name": [ + "Youth employment (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.142" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.143" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.144" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.145" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.146" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.147" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.148" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.149" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.150" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.151" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.152" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.153" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.154" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.155" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.156" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.157" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Economic sector" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.158" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.159" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.160" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.161" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.162" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.163" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.164" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.165" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.166" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.167" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.168" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.169" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.170" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.171" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.172" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.173" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.182" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.183" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.184" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.185" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.186" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.187" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.188" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.189" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.198" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.199" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.200" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.201" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.202" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.203" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.204" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.205" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.206" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.207" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.208" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.209" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.210" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.211" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.212" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.213" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_0", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_7", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_8", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_9", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.214" + ], + "name": [ + "Youth employment (15 to 19 years old, Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.215" + ], + "name": [ + "Youth employment (15 to 19 years old, Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.216" + ], + "name": [ + "Youth employment (15 to 29 years old, Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.217" + ], + "name": [ + "Youth employment (15 to 29 years old, Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.219" + ], + "name": [ + "Youth employment (20 to 24 years old, Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.220" + ], + "name": [ + "Youth employment (20 to 24 years old, Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.221" + ], + "name": [ + "Youth employment (25 to 29 years old, Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.222" + ], + "name": [ + "Youth employment (25 to 29 years old, Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.223" + ], + "name": [ + "Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.224" + ], + "name": [ + "Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.225" + ], + "name": [ + "Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.226" + ], + "name": [ + "Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.227" + ], + "name": [ + "Youth employment (15 to 19 years old) by Employment status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.228" + ], + "name": [ + "Youth employment (15 to 29 years old) by Employment status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.229" + ], + "name": [ + "Youth employment (20 to 24 years old) by Employment status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.230" + ], + "name": [ + "Youth employment (25 to 29 years old) by Employment status" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.231" + ], + "name": [ + "Youth employment (15 to 19 years old, Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.232" + ], + "name": [ + "Youth employment (15 to 19 years old, Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.233" + ], + "name": [ + "Youth employment (15 to 19 years old, Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.234" + ], + "name": [ + "Youth employment (15 to 19 years old, Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.235" + ], + "name": [ + "Youth employment (15 to 19 years old, Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.236" + ], + "name": [ + "Youth employment (15 to 19 years old, Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.237" + ], + "name": [ + "Youth employment (15 to 19 years old, Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.238" + ], + "name": [ + "Youth employment (15 to 19 years old, Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.239" + ], + "name": [ + "Youth employment (15 to 19 years old, Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.240" + ], + "name": [ + "Youth employment (15 to 29 years old, Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.241" + ], + "name": [ + "Youth employment (15 to 29 years old, Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.242" + ], + "name": [ + "Youth employment (15 to 29 years old, Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.243" + ], + "name": [ + "Youth employment (15 to 29 years old, Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.244" + ], + "name": [ + "Youth employment (15 to 29 years old, Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.245" + ], + "name": [ + "Youth employment (15 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.246" + ], + "name": [ + "Youth employment (15 to 29 years old, Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.247" + ], + "name": [ + "Youth employment (15 to 29 years old, Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.248" + ], + "name": [ + "Youth employment (15 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.249" + ], + "name": [ + "Youth employment (20 to 24 years old, Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.250" + ], + "name": [ + "Youth employment (20 to 24 years old, Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.251" + ], + "name": [ + "Youth employment (20 to 24 years old, Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.252" + ], + "name": [ + "Youth employment (20 to 24 years old, Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.253" + ], + "name": [ + "Youth employment (20 to 24 years old, Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.254" + ], + "name": [ + "Youth employment (20 to 24 years old, Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.255" + ], + "name": [ + "Youth employment (20 to 24 years old, Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.256" + ], + "name": [ + "Youth employment (20 to 24 years old, Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.257" + ], + "name": [ + "Youth employment (20 to 24 years old, Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.258" + ], + "name": [ + "Youth employment (25 to 29 years old, Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.259" + ], + "name": [ + "Youth employment (25 to 29 years old, Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.260" + ], + "name": [ + "Youth employment (25 to 29 years old, Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.261" + ], + "name": [ + "Youth employment (25 to 29 years old, Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.262" + ], + "name": [ + "Youth employment (25 to 29 years old, Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.263" + ], + "name": [ + "Youth employment (25 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.264" + ], + "name": [ + "Youth employment (25 to 29 years old, Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.265" + ], + "name": [ + "Youth employment (25 to 29 years old, Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.266" + ], + "name": [ + "Youth employment (25 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.267" + ], + "name": [ + "Youth employment (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--R", + "ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--U", + "ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.268" + ], + "name": [ + "Youth employment (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--R", + "ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--U", + "ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.269" + ], + "name": [ + "Youth employment (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--R", + "ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--U", + "ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.270" + ], + "name": [ + "Youth employment (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--R", + "ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--U", + "ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.271" + ], + "name": [ + "Youth employment (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.272" + ], + "name": [ + "Youth employment (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.273" + ], + "name": [ + "Youth employment (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.274" + ], + "name": [ + "Youth employment (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.275" + ], + "name": [ + "Youth employment (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.276" + ], + "name": [ + "Youth employment (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.277" + ], + "name": [ + "Youth employment (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.278" + ], + "name": [ + "Youth employment (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.279" + ], + "name": [ + "Youth employment (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.280" + ], + "name": [ + "Youth employment (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.281" + ], + "name": [ + "Youth employment (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3EMPNB.282" + ], + "name": [ + "Youth employment (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.001" + ], + "name": [ + "Youth employment-to-population ratio by Age group" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T19", + "ilo/EMP_3WAP_RT.AGE--Y15T29", + "ilo/EMP_3WAP_RT.AGE--Y20T24", + "ilo/EMP_3WAP_RT.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.002" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.003" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.004" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.005" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.006" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.007" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.008" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.009" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.010" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.011" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.012" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.013" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.014" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.015" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.016" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.017" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.018" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.019" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.020" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.021" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.022" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.023" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.024" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.025" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.026" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.027" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.028" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.029" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.030" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.031" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.032" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.033" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.034" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.035" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29", + "ilo/EMP_3WAP_RT.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.036" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.037" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.038" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.039" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.040" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.041" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.042" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.043" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.044" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.045" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.046" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--R", + "ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--U", + "ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.047" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--R", + "ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--U", + "ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.048" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--R", + "ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--U", + "ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.049" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--R", + "ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--U", + "ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.050" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.051" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.052" + ], + "name": [ + "Youth employment-to-population ratio (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.053" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.054" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.055" + ], + "name": [ + "Youth employment-to-population ratio (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.056" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.057" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.058" + ], + "name": [ + "Youth employment-to-population ratio (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.059" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.060" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP3WAPRT.061" + ], + "name": [ + "Youth employment-to-population ratio (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFNB.001" + ], + "name": [ + "Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EMP_5NIF_NB.AGE--Y15T24", + "ilo/EMP_5NIF_NB.AGE--Y_GE15", + "ilo/EMP_5NIF_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFNB.002" + ], + "name": [ + "Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_NB.SEX--F__AGE--Y15T24", + "ilo/EMP_5NIF_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFNB.003" + ], + "name": [ + "Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_NB.SEX--F__AGE--Y_GE15", + "ilo/EMP_5NIF_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFNB.004" + ], + "name": [ + "Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_NB.SEX--F__AGE--Y_GE25", + "ilo/EMP_5NIF_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFRT.001" + ], + "name": [ + "Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EMP_5NIF_RT.AGE--Y15T24", + "ilo/EMP_5NIF_RT.AGE--Y_GE15", + "ilo/EMP_5NIF_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFRT.002" + ], + "name": [ + "Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_RT.SEX--F__AGE--Y15T24", + "ilo/EMP_5NIF_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFRT.003" + ], + "name": [ + "Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_RT.SEX--F__AGE--Y_GE15", + "ilo/EMP_5NIF_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5NIFRT.004" + ], + "name": [ + "Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5NIF_RT.SEX--F__AGE--Y_GE25", + "ilo/EMP_5NIF_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFNB.001" + ], + "name": [ + "Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EMP_5PIF_NB.AGE--Y15T24", + "ilo/EMP_5PIF_NB.AGE--Y_GE15", + "ilo/EMP_5PIF_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFNB.002" + ], + "name": [ + "Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_NB.SEX--F__AGE--Y15T24", + "ilo/EMP_5PIF_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFNB.003" + ], + "name": [ + "Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_NB.SEX--F__AGE--Y_GE15", + "ilo/EMP_5PIF_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFNB.004" + ], + "name": [ + "Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_NB.SEX--F__AGE--Y_GE25", + "ilo/EMP_5PIF_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFRT.001" + ], + "name": [ + "Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/EMP_5PIF_RT.AGE--Y15T24", + "ilo/EMP_5PIF_RT.AGE--Y_GE15", + "ilo/EMP_5PIF_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFRT.002" + ], + "name": [ + "Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_RT.SEX--F__AGE--Y15T24", + "ilo/EMP_5PIF_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFRT.003" + ], + "name": [ + "Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_RT.SEX--F__AGE--Y_GE15", + "ilo/EMP_5PIF_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMP5PIFRT.004" + ], + "name": [ + "Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_5PIF_RT.SEX--F__AGE--Y_GE25", + "ilo/EMP_5PIF_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.002" + ], + "name": [ + "Informal employment by Age group" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T19", + "ilo/EMP_NIFL_NB.AGE--Y15T24", + "ilo/EMP_NIFL_NB.AGE--Y15T64", + "ilo/EMP_NIFL_NB.AGE--Y_GE15", + "ilo/EMP_NIFL_NB.AGE--Y20T24", + "ilo/EMP_NIFL_NB.AGE--Y25T29", + "ilo/EMP_NIFL_NB.AGE--Y25T34", + "ilo/EMP_NIFL_NB.AGE--Y25T54", + "ilo/EMP_NIFL_NB.AGE--Y_GE25", + "ilo/EMP_NIFL_NB.AGE--Y30T34", + "ilo/EMP_NIFL_NB.AGE--Y35T39", + "ilo/EMP_NIFL_NB.AGE--Y35T44", + "ilo/EMP_NIFL_NB.AGE--Y40T44", + "ilo/EMP_NIFL_NB.AGE--Y45T49", + "ilo/EMP_NIFL_NB.AGE--Y45T54", + "ilo/EMP_NIFL_NB.AGE--Y50T54", + "ilo/EMP_NIFL_NB.AGE--Y55T59", + "ilo/EMP_NIFL_NB.AGE--Y55T64", + "ilo/EMP_NIFL_NB.AGE--Y60T64", + "ilo/EMP_NIFL_NB.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.003" + ], + "name": [ + "Informal employment (15 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.004" + ], + "name": [ + "Informal employment (15 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.005" + ], + "name": [ + "Informal employment (15 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.006" + ], + "name": [ + "Informal employment (25 to 54 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.007" + ], + "name": [ + "Informal employment (25 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.008" + ], + "name": [ + "Informal employment (55 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.009" + ], + "name": [ + "Informal employment (65 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.036" + ], + "name": [ + "Informal employment (15 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.037" + ], + "name": [ + "Informal employment (15 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.038" + ], + "name": [ + "Informal employment (15 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.039" + ], + "name": [ + "Informal employment (15 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.040" + ], + "name": [ + "Informal employment (15 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.041" + ], + "name": [ + "Informal employment (15 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.042" + ], + "name": [ + "Informal employment (25 to 54 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.043" + ], + "name": [ + "Informal employment (25 to 54 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.044" + ], + "name": [ + "Informal employment (25 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.045" + ], + "name": [ + "Informal employment (25 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.046" + ], + "name": [ + "Informal employment (55 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.047" + ], + "name": [ + "Informal employment (55 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.048" + ], + "name": [ + "Informal employment (65 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.049" + ], + "name": [ + "Informal employment (65 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.053" + ], + "name": [ + "Informal employment (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.054" + ], + "name": [ + "Informal employment (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.055" + ], + "name": [ + "Informal employment (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.056" + ], + "name": [ + "Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.057" + ], + "name": [ + "Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.058" + ], + "name": [ + "Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.059" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.060" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.061" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.062" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.063" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.064" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.071" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.072" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.073" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.074" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.075" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.076" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.080" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.081" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.082" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.086" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.087" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.088" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.089" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.090" + ], + "name": [ + "Informal employment (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.091" + ], + "name": [ + "Informal employment (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.092" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.093" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.094" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.095" + ], + "name": [ + "Informal employment (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.096" + ], + "name": [ + "Informal employment (15 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.097" + ], + "name": [ + "Informal employment (25 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1004" + ], + "name": [ + "Informal employment (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1005" + ], + "name": [ + "Informal employment (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1006" + ], + "name": [ + "Informal employment (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1007" + ], + "name": [ + "Informal employment (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.101" + ], + "name": [ + "Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1010" + ], + "name": [ + "Informal employment (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1011" + ], + "name": [ + "Informal employment (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1012" + ], + "name": [ + "Informal employment (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1013" + ], + "name": [ + "Informal employment (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1014" + ], + "name": [ + "Informal employment (Female) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1015" + ], + "name": [ + "Informal employment (Male) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.102" + ], + "name": [ + "Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1024" + ], + "name": [ + "Informal employment (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1025" + ], + "name": [ + "Informal employment (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1026" + ], + "name": [ + "Informal employment (Female) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1027" + ], + "name": [ + "Informal employment (Male) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1028" + ], + "name": [ + "Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1029" + ], + "name": [ + "Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.103" + ], + "name": [ + "Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1031" + ], + "name": [ + "Informal employment (Female) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1032" + ], + "name": [ + "Informal employment (Male) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1033" + ], + "name": [ + "Informal employment (Female) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1034" + ], + "name": [ + "Informal employment (Male) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1035" + ], + "name": [ + "Informal employment (Female) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1036" + ], + "name": [ + "Informal employment (Male) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1037" + ], + "name": [ + "Informal employment (Female) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1038" + ], + "name": [ + "Informal employment (Male) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1041" + ], + "name": [ + "Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1042" + ], + "name": [ + "Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1043" + ], + "name": [ + "Informal employment (Female) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1044" + ], + "name": [ + "Informal employment (Male) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1049" + ], + "name": [ + "Informal employment (Female) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1050" + ], + "name": [ + "Informal employment (Male) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1051" + ], + "name": [ + "Informal employment (Female) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1052" + ], + "name": [ + "Informal employment (Male) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1053" + ], + "name": [ + "Informal employment (Female) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1054" + ], + "name": [ + "Informal employment (Male) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1064" + ], + "name": [ + "Informal employment (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1065" + ], + "name": [ + "Informal employment (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1066" + ], + "name": [ + "Informal employment (Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1067" + ], + "name": [ + "Informal employment (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1068" + ], + "name": [ + "Informal employment (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1069" + ], + "name": [ + "Informal employment (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.107" + ], + "name": [ + "Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1070" + ], + "name": [ + "Informal employment (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1072" + ], + "name": [ + "Informal employment (Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1073" + ], + "name": [ + "Informal employment (Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1074" + ], + "name": [ + "Informal employment (Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1075" + ], + "name": [ + "Informal employment (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1076" + ], + "name": [ + "Informal employment (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1078" + ], + "name": [ + "Informal employment (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1079" + ], + "name": [ + "Informal employment (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.108" + ], + "name": [ + "Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.109" + ], + "name": [ + "Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.110" + ], + "name": [ + "Informal employment (15 to 24 years old) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1101" + ], + "name": [ + "Informal employment (Female, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1102" + ], + "name": [ + "Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1103" + ], + "name": [ + "Informal employment (Female, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1104" + ], + "name": [ + "Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1105" + ], + "name": [ + "Informal employment (Female, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1106" + ], + "name": [ + "Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1107" + ], + "name": [ + "Informal employment (Female, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1108" + ], + "name": [ + "Informal employment (Female, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1109" + ], + "name": [ + "Informal employment (Male, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.111" + ], + "name": [ + "Informal employment (15 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1110" + ], + "name": [ + "Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1111" + ], + "name": [ + "Informal employment (Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1112" + ], + "name": [ + "Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1113" + ], + "name": [ + "Informal employment (Male, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1114" + ], + "name": [ + "Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1115" + ], + "name": [ + "Informal employment (Male, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1116" + ], + "name": [ + "Informal employment (Male, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1117" + ], + "name": [ + "Informal employment (Sex other than Female or Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1118" + ], + "name": [ + "Informal employment (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1119" + ], + "name": [ + "Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.112" + ], + "name": [ + "Informal employment (25 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1120" + ], + "name": [ + "Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1121" + ], + "name": [ + "Informal employment (Female, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1122" + ], + "name": [ + "Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1123" + ], + "name": [ + "Informal employment (Female, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1124" + ], + "name": [ + "Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1125" + ], + "name": [ + "Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1126" + ], + "name": [ + "Informal employment (Female, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1127" + ], + "name": [ + "Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1128" + ], + "name": [ + "Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1129" + ], + "name": [ + "Informal employment (Male, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.113" + ], + "name": [ + "Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1130" + ], + "name": [ + "Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1131" + ], + "name": [ + "Informal employment (Male, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1132" + ], + "name": [ + "Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1133" + ], + "name": [ + "Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1134" + ], + "name": [ + "Informal employment (Male, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1135" + ], + "name": [ + "Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1136" + ], + "name": [ + "Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1137" + ], + "name": [ + "Informal employment (Female, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1138" + ], + "name": [ + "Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1139" + ], + "name": [ + "Informal employment (Female, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.114" + ], + "name": [ + "Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1140" + ], + "name": [ + "Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1141" + ], + "name": [ + "Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1142" + ], + "name": [ + "Informal employment (Female, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1143" + ], + "name": [ + "Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1144" + ], + "name": [ + "Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1145" + ], + "name": [ + "Informal employment (Male, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1146" + ], + "name": [ + "Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1147" + ], + "name": [ + "Informal employment (Male, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1148" + ], + "name": [ + "Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1149" + ], + "name": [ + "Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.115" + ], + "name": [ + "Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1150" + ], + "name": [ + "Informal employment (Male, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1155" + ], + "name": [ + "Informal employment (Female) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1156" + ], + "name": [ + "Informal employment (Male) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1157" + ], + "name": [ + "Informal employment (Female) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1158" + ], + "name": [ + "Informal employment (Male) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1159" + ], + "name": [ + "Informal employment (Female) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1160" + ], + "name": [ + "Informal employment (Male) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1161" + ], + "name": [ + "Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1162" + ], + "name": [ + "Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1163" + ], + "name": [ + "Informal employment (Female) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1164" + ], + "name": [ + "Informal employment (Male) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1165" + ], + "name": [ + "Informal employment (Female) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1166" + ], + "name": [ + "Informal employment (Male) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1167" + ], + "name": [ + "Informal employment (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1168" + ], + "name": [ + "Informal employment (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1169" + ], + "name": [ + "Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1170" + ], + "name": [ + "Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1171" + ], + "name": [ + "Informal employment (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1172" + ], + "name": [ + "Informal employment (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1173" + ], + "name": [ + "Informal employment (Female) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1174" + ], + "name": [ + "Informal employment (Male) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1179" + ], + "name": [ + "Informal employment (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1180" + ], + "name": [ + "Informal employment (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1181" + ], + "name": [ + "Informal employment (Female) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1182" + ], + "name": [ + "Informal employment (Male) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1183" + ], + "name": [ + "Informal employment (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1184" + ], + "name": [ + "Informal employment (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1185" + ], + "name": [ + "Informal employment (Female) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1186" + ], + "name": [ + "Informal employment (Male) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1187" + ], + "name": [ + "Informal employment (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1188" + ], + "name": [ + "Informal employment (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1190" + ], + "name": [ + "Informal employment (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1191" + ], + "name": [ + "Informal employment (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1193" + ], + "name": [ + "Informal employment (Female) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1194" + ], + "name": [ + "Informal employment (Male) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1195" + ], + "name": [ + "Informal employment (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1196" + ], + "name": [ + "Informal employment (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1197" + ], + "name": [ + "Informal employment (Female) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1198" + ], + "name": [ + "Informal employment (Male) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1199" + ], + "name": [ + "Informal employment by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1200" + ], + "name": [ + "Informal employment by Employment status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1201" + ], + "name": [ + "Informal employment (Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1202" + ], + "name": [ + "Informal employment (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1203" + ], + "name": [ + "Informal employment (Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1204" + ], + "name": [ + "Informal employment (Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1205" + ], + "name": [ + "Informal employment (Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1206" + ], + "name": [ + "Informal employment (Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1207" + ], + "name": [ + "Informal employment (Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1208" + ], + "name": [ + "Informal employment (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1209" + ], + "name": [ + "Informal employment (Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1210" + ], + "name": [ + "Informal employment by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--R", + "ilo/EMP_NIFL_NB.URBANISATION--U", + "ilo/EMP_NIFL_NB.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1211" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1212" + ], + "name": [ + "Informal employment (Rural) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1213" + ], + "name": [ + "Informal employment (Urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1214" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1215" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1216" + ], + "name": [ + "Informal employment (Rural, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1217" + ], + "name": [ + "Informal employment (Rural, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1218" + ], + "name": [ + "Informal employment (Urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1219" + ], + "name": [ + "Informal employment (Urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1222" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1223" + ], + "name": [ + "Informal employment (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1224" + ], + "name": [ + "Informal employment (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1225" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1226" + ], + "name": [ + "Informal employment (Rural) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1227" + ], + "name": [ + "Informal employment (Urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1228" + ], + "name": [ + "Informal employment (Rural) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1229" + ], + "name": [ + "Informal employment (Urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1230" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1231" + ], + "name": [ + "Informal employment (Rural) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1232" + ], + "name": [ + "Informal employment (Urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1233" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1234" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1235" + ], + "name": [ + "Informal employment (Rural, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1236" + ], + "name": [ + "Informal employment (Rural, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1237" + ], + "name": [ + "Informal employment (Rural, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1238" + ], + "name": [ + "Informal employment (Urban, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1239" + ], + "name": [ + "Informal employment (Urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1240" + ], + "name": [ + "Informal employment (Urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1241" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1242" + ], + "name": [ + "Informal employment (Rural) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1243" + ], + "name": [ + "Informal employment (Urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1244" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1245" + ], + "name": [ + "Informal employment (Rural) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1246" + ], + "name": [ + "Informal employment (Urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1247" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1248" + ], + "name": [ + "Informal employment (Rural) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1249" + ], + "name": [ + "Informal employment (Urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.125" + ], + "name": [ + "Informal employment (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1252" + ], + "name": [ + "Informal employment (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1253" + ], + "name": [ + "Informal employment (Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1254" + ], + "name": [ + "Informal employment (Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.126" + ], + "name": [ + "Informal employment (15 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1260" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1261" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1262" + ], + "name": [ + "Informal employment (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1263" + ], + "name": [ + "Informal employment (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1264" + ], + "name": [ + "Informal employment (Rural, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1265" + ], + "name": [ + "Informal employment (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1266" + ], + "name": [ + "Informal employment (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1267" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1268" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1269" + ], + "name": [ + "Informal employment (Rural, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.127" + ], + "name": [ + "Informal employment (25 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1270" + ], + "name": [ + "Informal employment (Rural, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1271" + ], + "name": [ + "Informal employment (Urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1272" + ], + "name": [ + "Informal employment (Urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1273" + ], + "name": [ + "Informal employment (Rural, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1274" + ], + "name": [ + "Informal employment (Rural, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1276" + ], + "name": [ + "Informal employment (Urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1277" + ], + "name": [ + "Informal employment (Urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1278" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1279" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.128" + ], + "name": [ + "Informal employment (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1280" + ], + "name": [ + "Informal employment (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1281" + ], + "name": [ + "Informal employment (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1282" + ], + "name": [ + "Informal employment (Rural, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1283" + ], + "name": [ + "Informal employment (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1284" + ], + "name": [ + "Informal employment (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1286" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1287" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1288" + ], + "name": [ + "Informal employment (Rural, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1289" + ], + "name": [ + "Informal employment (Rural, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.129" + ], + "name": [ + "Informal employment (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1290" + ], + "name": [ + "Informal employment (Urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1291" + ], + "name": [ + "Informal employment (Urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1293" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1294" + ], + "name": [ + "Informal employment (Not classsified as rural or urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1295" + ], + "name": [ + "Informal employment (Rural, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1296" + ], + "name": [ + "Informal employment (Rural, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1298" + ], + "name": [ + "Informal employment (Urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.1299" + ], + "name": [ + "Informal employment (Urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.130" + ], + "name": [ + "Informal employment (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.137" + ], + "name": [ + "Informal employment (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.138" + ], + "name": [ + "Informal employment (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.139" + ], + "name": [ + "Informal employment (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.140" + ], + "name": [ + "Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.141" + ], + "name": [ + "Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.142" + ], + "name": [ + "Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.143" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.144" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.145" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.146" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.147" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.148" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.155" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.156" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.157" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.158" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.159" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.160" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.164" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.165" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.166" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.167" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.168" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.169" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.170" + ], + "name": [ + "Informal employment (15 to 24 years old) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.171" + ], + "name": [ + "Informal employment (15 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.172" + ], + "name": [ + "Informal employment (25 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.185" + ], + "name": [ + "Informal employment (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.186" + ], + "name": [ + "Informal employment (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.187" + ], + "name": [ + "Informal employment (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.188" + ], + "name": [ + "Informal employment (15 to 24 years old) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.189" + ], + "name": [ + "Informal employment (15 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.190" + ], + "name": [ + "Informal employment (25 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.191" + ], + "name": [ + "Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.192" + ], + "name": [ + "Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.193" + ], + "name": [ + "Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.194" + ], + "name": [ + "Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.195" + ], + "name": [ + "Informal employment (15 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.196" + ], + "name": [ + "Informal employment (25 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.197" + ], + "name": [ + "Informal employment (15 to 24 years old) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.198" + ], + "name": [ + "Informal employment (15 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.199" + ], + "name": [ + "Informal employment (25 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.200" + ], + "name": [ + "Informal employment (15 to 24 years old) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.201" + ], + "name": [ + "Informal employment (15 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.202" + ], + "name": [ + "Informal employment (25 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.203" + ], + "name": [ + "Informal employment (15 to 24 years old) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.204" + ], + "name": [ + "Informal employment (15 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.205" + ], + "name": [ + "Informal employment (25 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.209" + ], + "name": [ + "Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.210" + ], + "name": [ + "Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.211" + ], + "name": [ + "Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.212" + ], + "name": [ + "Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.213" + ], + "name": [ + "Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.214" + ], + "name": [ + "Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.221" + ], + "name": [ + "Informal employment (15 to 24 years old) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.222" + ], + "name": [ + "Informal employment (15 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.223" + ], + "name": [ + "Informal employment (25 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.224" + ], + "name": [ + "Informal employment (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.225" + ], + "name": [ + "Informal employment (15 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.226" + ], + "name": [ + "Informal employment (25 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.227" + ], + "name": [ + "Informal employment (15 to 24 years old) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.228" + ], + "name": [ + "Informal employment (15 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.229" + ], + "name": [ + "Informal employment (25 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.249" + ], + "name": [ + "Informal employment (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.250" + ], + "name": [ + "Informal employment (15 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.251" + ], + "name": [ + "Informal employment (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.252" + ], + "name": [ + "Informal employment (25 to 34 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.253" + ], + "name": [ + "Informal employment (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.254" + ], + "name": [ + "Informal employment (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.255" + ], + "name": [ + "Informal employment (35 to 44 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.256" + ], + "name": [ + "Informal employment (45 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.257" + ], + "name": [ + "Informal employment (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.258" + ], + "name": [ + "Informal employment (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.259" + ], + "name": [ + "Informal employment (15 to 24 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.260" + ], + "name": [ + "Informal employment (15 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.261" + ], + "name": [ + "Informal employment (15 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.262" + ], + "name": [ + "Informal employment (25 to 34 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.263" + ], + "name": [ + "Informal employment (25 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.264" + ], + "name": [ + "Informal employment (25 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.265" + ], + "name": [ + "Informal employment (35 to 44 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.266" + ], + "name": [ + "Informal employment (45 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.267" + ], + "name": [ + "Informal employment (55 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.268" + ], + "name": [ + "Informal employment (65 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.269" + ], + "name": [ + "Informal employment (15 to 24 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.270" + ], + "name": [ + "Informal employment (15 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.271" + ], + "name": [ + "Informal employment (15 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.272" + ], + "name": [ + "Informal employment (25 to 34 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.273" + ], + "name": [ + "Informal employment (25 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.274" + ], + "name": [ + "Informal employment (25 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.275" + ], + "name": [ + "Informal employment (35 to 44 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.276" + ], + "name": [ + "Informal employment (45 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.277" + ], + "name": [ + "Informal employment (55 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.278" + ], + "name": [ + "Informal employment (65 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.279" + ], + "name": [ + "Informal employment (15 to 24 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.280" + ], + "name": [ + "Informal employment (15 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.281" + ], + "name": [ + "Informal employment (15 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.282" + ], + "name": [ + "Informal employment (25 to 34 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.283" + ], + "name": [ + "Informal employment (25 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.284" + ], + "name": [ + "Informal employment (25 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.285" + ], + "name": [ + "Informal employment (35 to 44 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.286" + ], + "name": [ + "Informal employment (45 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.287" + ], + "name": [ + "Informal employment (55 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.288" + ], + "name": [ + "Informal employment (65 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.289" + ], + "name": [ + "Informal employment (15 to 24 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.290" + ], + "name": [ + "Informal employment (15 to 24 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.291" + ], + "name": [ + "Informal employment (15 to 24 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.292" + ], + "name": [ + "Informal employment (15 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.293" + ], + "name": [ + "Informal employment (15 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.294" + ], + "name": [ + "Informal employment (15 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.295" + ], + "name": [ + "Informal employment (15 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.296" + ], + "name": [ + "Informal employment (15 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.297" + ], + "name": [ + "Informal employment (15 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.298" + ], + "name": [ + "Informal employment (25 to 34 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.299" + ], + "name": [ + "Informal employment (25 to 34 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.300" + ], + "name": [ + "Informal employment (25 to 34 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.301" + ], + "name": [ + "Informal employment (25 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.302" + ], + "name": [ + "Informal employment (25 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.303" + ], + "name": [ + "Informal employment (25 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.304" + ], + "name": [ + "Informal employment (25 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.305" + ], + "name": [ + "Informal employment (25 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.306" + ], + "name": [ + "Informal employment (25 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.307" + ], + "name": [ + "Informal employment (35 to 44 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.308" + ], + "name": [ + "Informal employment (35 to 44 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.309" + ], + "name": [ + "Informal employment (35 to 44 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.310" + ], + "name": [ + "Informal employment (45 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.311" + ], + "name": [ + "Informal employment (45 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.312" + ], + "name": [ + "Informal employment (45 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.313" + ], + "name": [ + "Informal employment (55 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.314" + ], + "name": [ + "Informal employment (55 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.315" + ], + "name": [ + "Informal employment (55 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.316" + ], + "name": [ + "Informal employment (65 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.317" + ], + "name": [ + "Informal employment (65 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.318" + ], + "name": [ + "Informal employment (65 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.319" + ], + "name": [ + "Informal employment (15 to 24 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.320" + ], + "name": [ + "Informal employment (15 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.321" + ], + "name": [ + "Informal employment (15 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.322" + ], + "name": [ + "Informal employment (25 to 34 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.323" + ], + "name": [ + "Informal employment (25 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.324" + ], + "name": [ + "Informal employment (25 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.325" + ], + "name": [ + "Informal employment (35 to 44 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.326" + ], + "name": [ + "Informal employment (45 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.327" + ], + "name": [ + "Informal employment (55 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.328" + ], + "name": [ + "Informal employment (65 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.329" + ], + "name": [ + "Informal employment (15 to 24 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.330" + ], + "name": [ + "Informal employment (15 to 24 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.331" + ], + "name": [ + "Informal employment (15 to 24 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.332" + ], + "name": [ + "Informal employment (15 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.333" + ], + "name": [ + "Informal employment (15 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.334" + ], + "name": [ + "Informal employment (15 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.335" + ], + "name": [ + "Informal employment (15 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.336" + ], + "name": [ + "Informal employment (15 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.337" + ], + "name": [ + "Informal employment (15 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.338" + ], + "name": [ + "Informal employment (25 to 34 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.339" + ], + "name": [ + "Informal employment (25 to 34 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.340" + ], + "name": [ + "Informal employment (25 to 34 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.341" + ], + "name": [ + "Informal employment (25 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.342" + ], + "name": [ + "Informal employment (25 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.343" + ], + "name": [ + "Informal employment (25 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.344" + ], + "name": [ + "Informal employment (25 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.345" + ], + "name": [ + "Informal employment (25 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.346" + ], + "name": [ + "Informal employment (25 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.347" + ], + "name": [ + "Informal employment (35 to 44 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.348" + ], + "name": [ + "Informal employment (35 to 44 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.349" + ], + "name": [ + "Informal employment (35 to 44 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.350" + ], + "name": [ + "Informal employment (45 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.351" + ], + "name": [ + "Informal employment (45 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.352" + ], + "name": [ + "Informal employment (45 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.353" + ], + "name": [ + "Informal employment (55 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.354" + ], + "name": [ + "Informal employment (55 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.355" + ], + "name": [ + "Informal employment (55 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.356" + ], + "name": [ + "Informal employment (65 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.357" + ], + "name": [ + "Informal employment (65 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.358" + ], + "name": [ + "Informal employment (65 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.359" + ], + "name": [ + "Informal employment (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.360" + ], + "name": [ + "Informal employment (15 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.361" + ], + "name": [ + "Informal employment (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.362" + ], + "name": [ + "Informal employment (25 to 34 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.363" + ], + "name": [ + "Informal employment (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.364" + ], + "name": [ + "Informal employment (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.365" + ], + "name": [ + "Informal employment (35 to 44 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.366" + ], + "name": [ + "Informal employment (45 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.367" + ], + "name": [ + "Informal employment (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.368" + ], + "name": [ + "Informal employment (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.369" + ], + "name": [ + "Informal employment (15 to 24 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.370" + ], + "name": [ + "Informal employment (15 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.371" + ], + "name": [ + "Informal employment (15 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.372" + ], + "name": [ + "Informal employment (25 to 34 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.373" + ], + "name": [ + "Informal employment (25 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.374" + ], + "name": [ + "Informal employment (25 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.375" + ], + "name": [ + "Informal employment (35 to 44 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.376" + ], + "name": [ + "Informal employment (45 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.377" + ], + "name": [ + "Informal employment (55 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.378" + ], + "name": [ + "Informal employment (65 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.379" + ], + "name": [ + "Informal employment (15 to 24 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.380" + ], + "name": [ + "Informal employment (15 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.381" + ], + "name": [ + "Informal employment (15 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.382" + ], + "name": [ + "Informal employment (25 to 34 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.383" + ], + "name": [ + "Informal employment (25 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.384" + ], + "name": [ + "Informal employment (25 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.385" + ], + "name": [ + "Informal employment (35 to 44 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.386" + ], + "name": [ + "Informal employment (45 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.387" + ], + "name": [ + "Informal employment (55 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.388" + ], + "name": [ + "Informal employment (65 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.402" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.403" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.404" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.405" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.406" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.407" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.408" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.409" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.410" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.411" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.412" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.413" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.414" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.415" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.416" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.417" + ], + "name": [ + "Informal employment (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.418" + ], + "name": [ + "Informal employment (15 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.419" + ], + "name": [ + "Informal employment (25 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.420" + ], + "name": [ + "Informal employment (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.421" + ], + "name": [ + "Informal employment (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.422" + ], + "name": [ + "Informal employment (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.423" + ], + "name": [ + "Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.424" + ], + "name": [ + "Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.425" + ], + "name": [ + "Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.426" + ], + "name": [ + "Informal employment (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.427" + ], + "name": [ + "Informal employment (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.428" + ], + "name": [ + "Informal employment (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.429" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.430" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.431" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.438" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.439" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.440" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.441" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.442" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.443" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.444" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.445" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.446" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.447" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.448" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.449" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.450" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.451" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.452" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.453" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.454" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.455" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.456" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.457" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.458" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.459" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.460" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.461" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.462" + ], + "name": [ + "Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.463" + ], + "name": [ + "Informal employment (15 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.464" + ], + "name": [ + "Informal employment (25 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.465" + ], + "name": [ + "Informal employment (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T19__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y15T19__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.466" + ], + "name": [ + "Informal employment (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.467" + ], + "name": [ + "Informal employment (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.468" + ], + "name": [ + "Informal employment (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.469" + ], + "name": [ + "Informal employment (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y20T24__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y20T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.470" + ], + "name": [ + "Informal employment (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T29__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y25T29__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.471" + ], + "name": [ + "Informal employment (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.472" + ], + "name": [ + "Informal employment (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.473" + ], + "name": [ + "Informal employment (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.474" + ], + "name": [ + "Informal employment (30 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.475" + ], + "name": [ + "Informal employment (35 to 39 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.476" + ], + "name": [ + "Informal employment (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.477" + ], + "name": [ + "Informal employment (40 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--M", + "ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.478" + ], + "name": [ + "Informal employment (45 to 49 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T49__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y45T49__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.479" + ], + "name": [ + "Informal employment (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.480" + ], + "name": [ + "Informal employment (50 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y50T54__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y50T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.481" + ], + "name": [ + "Informal employment (55 to 59 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T59__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y55T59__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.482" + ], + "name": [ + "Informal employment (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.483" + ], + "name": [ + "Informal employment (60 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y60T64__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y60T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.484" + ], + "name": [ + "Informal employment (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.508" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.509" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.510" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.511" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.512" + ], + "name": [ + "Informal employment (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.513" + ], + "name": [ + "Informal employment (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.514" + ], + "name": [ + "Informal employment (15 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.515" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.516" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.517" + ], + "name": [ + "Informal employment (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.518" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.519" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.520" + ], + "name": [ + "Informal employment (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.521" + ], + "name": [ + "Informal employment (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.522" + ], + "name": [ + "Informal employment (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.523" + ], + "name": [ + "Informal employment (25 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.524" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.525" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.526" + ], + "name": [ + "Informal employment (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.527" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.528" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.529" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.530" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.531" + ], + "name": [ + "Informal employment (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.532" + ], + "name": [ + "Informal employment (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.533" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.534" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.535" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.536" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.537" + ], + "name": [ + "Informal employment (15 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.538" + ], + "name": [ + "Informal employment (15 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.539" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.540" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.541" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.542" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.543" + ], + "name": [ + "Informal employment (25 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.544" + ], + "name": [ + "Informal employment (25 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.545" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.546" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.547" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.548" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.549" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.550" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.551" + ], + "name": [ + "Informal employment (65 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.552" + ], + "name": [ + "Informal employment (65 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.553" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.554" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.555" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.556" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.557" + ], + "name": [ + "Informal employment (15 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.558" + ], + "name": [ + "Informal employment (15 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.560" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.561" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.563" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.564" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.566" + ], + "name": [ + "Informal employment (25 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.567" + ], + "name": [ + "Informal employment (25 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.569" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.570" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.571" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.572" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.573" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.574" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.575" + ], + "name": [ + "Informal employment (65 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.576" + ], + "name": [ + "Informal employment (65 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.577" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.578" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.579" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.580" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.581" + ], + "name": [ + "Informal employment (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.582" + ], + "name": [ + "Informal employment (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.583" + ], + "name": [ + "Informal employment (15 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.584" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.585" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.587" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.588" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.589" + ], + "name": [ + "Informal employment (25 to 54 years old, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.590" + ], + "name": [ + "Informal employment (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.591" + ], + "name": [ + "Informal employment (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.592" + ], + "name": [ + "Informal employment (25 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.593" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.594" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.596" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.597" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.598" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.599" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.600" + ], + "name": [ + "Informal employment (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.601" + ], + "name": [ + "Informal employment (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.602" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.603" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.604" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.605" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.606" + ], + "name": [ + "Informal employment (15 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.607" + ], + "name": [ + "Informal employment (15 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.609" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.610" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.611" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.612" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.614" + ], + "name": [ + "Informal employment (25 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.615" + ], + "name": [ + "Informal employment (25 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.617" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.618" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.619" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.620" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.621" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.622" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.623" + ], + "name": [ + "Informal employment (65 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.624" + ], + "name": [ + "Informal employment (65 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.625" + ], + "name": [ + "Informal employment (15 to 24 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.626" + ], + "name": [ + "Informal employment (15 to 24 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.627" + ], + "name": [ + "Informal employment (15 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.628" + ], + "name": [ + "Informal employment (15 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.629" + ], + "name": [ + "Informal employment (15 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.630" + ], + "name": [ + "Informal employment (15 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.632" + ], + "name": [ + "Informal employment (25 to 34 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.633" + ], + "name": [ + "Informal employment (25 to 34 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.635" + ], + "name": [ + "Informal employment (25 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.636" + ], + "name": [ + "Informal employment (25 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.638" + ], + "name": [ + "Informal employment (25 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.639" + ], + "name": [ + "Informal employment (25 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.641" + ], + "name": [ + "Informal employment (35 to 44 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.642" + ], + "name": [ + "Informal employment (35 to 44 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.644" + ], + "name": [ + "Informal employment (45 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.645" + ], + "name": [ + "Informal employment (45 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.646" + ], + "name": [ + "Informal employment (55 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.647" + ], + "name": [ + "Informal employment (55 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.648" + ], + "name": [ + "Informal employment (65 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.649" + ], + "name": [ + "Informal employment (65 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.670" + ], + "name": [ + "Informal employment (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.671" + ], + "name": [ + "Informal employment (15 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.672" + ], + "name": [ + "Informal employment (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.673" + ], + "name": [ + "Informal employment (25 to 34 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.674" + ], + "name": [ + "Informal employment (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.675" + ], + "name": [ + "Informal employment (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.676" + ], + "name": [ + "Informal employment (35 to 44 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.677" + ], + "name": [ + "Informal employment (45 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.678" + ], + "name": [ + "Informal employment (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.679" + ], + "name": [ + "Informal employment (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.680" + ], + "name": [ + "Informal employment (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.681" + ], + "name": [ + "Informal employment (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.682" + ], + "name": [ + "Informal employment (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.683" + ], + "name": [ + "Informal employment (15 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.684" + ], + "name": [ + "Informal employment (15 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.685" + ], + "name": [ + "Informal employment (15 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.686" + ], + "name": [ + "Informal employment (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.687" + ], + "name": [ + "Informal employment (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.688" + ], + "name": [ + "Informal employment (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.689" + ], + "name": [ + "Informal employment (25 to 34 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.690" + ], + "name": [ + "Informal employment (25 to 34 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.691" + ], + "name": [ + "Informal employment (25 to 34 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.692" + ], + "name": [ + "Informal employment (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.693" + ], + "name": [ + "Informal employment (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.694" + ], + "name": [ + "Informal employment (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.695" + ], + "name": [ + "Informal employment (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.696" + ], + "name": [ + "Informal employment (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.697" + ], + "name": [ + "Informal employment (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.698" + ], + "name": [ + "Informal employment (35 to 44 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.699" + ], + "name": [ + "Informal employment (35 to 44 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.700" + ], + "name": [ + "Informal employment (35 to 44 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.701" + ], + "name": [ + "Informal employment (45 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.702" + ], + "name": [ + "Informal employment (45 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.703" + ], + "name": [ + "Informal employment (45 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.704" + ], + "name": [ + "Informal employment (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.705" + ], + "name": [ + "Informal employment (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.706" + ], + "name": [ + "Informal employment (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.707" + ], + "name": [ + "Informal employment (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.708" + ], + "name": [ + "Informal employment (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.709" + ], + "name": [ + "Informal employment (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.710" + ], + "name": [ + "Informal employment by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.711" + ], + "name": [ + "Informal employment (Persons with disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.712" + ], + "name": [ + "Informal employment (Persons without disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.713" + ], + "name": [ + "Informal employment (Persons with disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.714" + ], + "name": [ + "Informal employment (Persons without disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.715" + ], + "name": [ + "Informal employment (Persons with disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.716" + ], + "name": [ + "Informal employment (Persons with disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.717" + ], + "name": [ + "Informal employment (Persons with disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.718" + ], + "name": [ + "Informal employment (Persons without disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.719" + ], + "name": [ + "Informal employment (Persons without disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.720" + ], + "name": [ + "Informal employment (Persons without disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.721" + ], + "name": [ + "Informal employment (Persons with disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.722" + ], + "name": [ + "Informal employment (Persons without disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.723" + ], + "name": [ + "Informal employment (Persons with disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.724" + ], + "name": [ + "Informal employment (Persons without disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.725" + ], + "name": [ + "Informal employment (Persons with disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.726" + ], + "name": [ + "Informal employment (Persons without disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.729" + ], + "name": [ + "Informal employment (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.730" + ], + "name": [ + "Informal employment (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.731" + ], + "name": [ + "Informal employment (Persons with disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.732" + ], + "name": [ + "Informal employment (Persons with disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.733" + ], + "name": [ + "Informal employment (Persons without disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.734" + ], + "name": [ + "Informal employment (Persons without disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.736" + ], + "name": [ + "Informal employment (Persons with disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.737" + ], + "name": [ + "Informal employment (Persons with disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.738" + ], + "name": [ + "Informal employment (Persons without disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.739" + ], + "name": [ + "Informal employment (Persons without disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.741" + ], + "name": [ + "Informal employment (Persons with disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.742" + ], + "name": [ + "Informal employment (Persons with disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.743" + ], + "name": [ + "Informal employment (Persons without disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.744" + ], + "name": [ + "Informal employment (Persons without disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.745" + ], + "name": [ + "Informal employment (Persons with disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.746" + ], + "name": [ + "Informal employment (Persons with disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.747" + ], + "name": [ + "Informal employment (Persons without disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.748" + ], + "name": [ + "Informal employment (Persons without disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.755" + ], + "name": [ + "Informal employment in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.756" + ], + "name": [ + "Informal employment in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.757" + ], + "name": [ + "Informal employment in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.758" + ], + "name": [ + "Informal employment in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.761" + ], + "name": [ + "Informal employment in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.762" + ], + "name": [ + "Informal employment in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.764" + ], + "name": [ + "Informal employment in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.766" + ], + "name": [ + "Informal employment in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.767" + ], + "name": [ + "Informal employment in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.768" + ], + "name": [ + "Informal employment in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.769" + ], + "name": [ + "Informal employment in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.771" + ], + "name": [ + "Informal employment in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.773" + ], + "name": [ + "Informal employment in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.774" + ], + "name": [ + "Informal employment in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.775" + ], + "name": [ + "Informal employment in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.779" + ], + "name": [ + "Informal employment in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.780" + ], + "name": [ + "Informal employment in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.783" + ], + "name": [ + "Informal employment in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.784" + ], + "name": [ + "Informal employment in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.785" + ], + "name": [ + "Informal employment in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.786" + ], + "name": [ + "Informal employment in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.789" + ], + "name": [ + "Informal employment in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.790" + ], + "name": [ + "Informal employment in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.792" + ], + "name": [ + "Informal employment in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.793" + ], + "name": [ + "Informal employment in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.794" + ], + "name": [ + "Informal employment in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.799" + ], + "name": [ + "Informal employment in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.800" + ], + "name": [ + "Informal employment in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.801" + ], + "name": [ + "Informal employment in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.802" + ], + "name": [ + "Informal employment in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.803" + ], + "name": [ + "Informal employment in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.804" + ], + "name": [ + "Informal employment in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.805" + ], + "name": [ + "Informal employment in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.807" + ], + "name": [ + "Informal employment in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.808" + ], + "name": [ + "Informal employment in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.811" + ], + "name": [ + "Informal employment in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.812" + ], + "name": [ + "Informal employment in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.813" + ], + "name": [ + "Informal employment in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.818" + ], + "name": [ + "Informal employment by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.819" + ], + "name": [ + "Informal employment by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.820" + ], + "name": [ + "Informal employment by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.821" + ], + "name": [ + "Informal employment by Hours worked" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.HOUR_BANDS--H0", + "ilo/EMP_NIFL_NB.HOUR_BANDS--H1T14", + "ilo/EMP_NIFL_NB.HOUR_BANDS--H15T29", + "ilo/EMP_NIFL_NB.HOUR_BANDS--H30T34", + "ilo/EMP_NIFL_NB.HOUR_BANDS--H35T39", + "ilo/EMP_NIFL_NB.HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_NB.HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_NB.HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.822" + ], + "name": [ + "Informal employment (01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H1T14", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.823" + ], + "name": [ + "Informal employment (15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H15T29", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.824" + ], + "name": [ + "Informal employment (30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H30T34", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.825" + ], + "name": [ + "Informal employment (35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H35T39", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.826" + ], + "name": [ + "Informal employment (40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_NB.SEX--O__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.827" + ], + "name": [ + "Informal employment (49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_NB.SEX--O__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.828" + ], + "name": [ + "Informal employment (No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H0", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.829" + ], + "name": [ + "Informal employment (No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--_X", + "ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.830" + ], + "name": [ + "Informal employment by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.831" + ], + "name": [ + "Informal employment (Institutional sector not classified) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.832" + ], + "name": [ + "Informal employment (Private sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.833" + ], + "name": [ + "Informal employment (Public sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.834" + ], + "name": [ + "Informal employment (Institutional sector not classified) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.835" + ], + "name": [ + "Informal employment (Private sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.836" + ], + "name": [ + "Informal employment (Public sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.837" + ], + "name": [ + "Informal employment (Institutional sector not classified) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.838" + ], + "name": [ + "Informal employment (Private sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.839" + ], + "name": [ + "Informal employment (Public sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.843" + ], + "name": [ + "Informal employment (Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.844" + ], + "name": [ + "Informal employment (Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.845" + ], + "name": [ + "Informal employment (Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.846" + ], + "name": [ + "Informal employment (Institutional sector not classified, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.847" + ], + "name": [ + "Informal employment (Institutional sector not classified, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.848" + ], + "name": [ + "Informal employment (Private sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.849" + ], + "name": [ + "Informal employment (Private sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.850" + ], + "name": [ + "Informal employment (Public sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.851" + ], + "name": [ + "Informal employment (Public sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.852" + ], + "name": [ + "Informal employment (Institutional sector not classified, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.853" + ], + "name": [ + "Informal employment (Institutional sector not classified, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.854" + ], + "name": [ + "Informal employment (Private sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.855" + ], + "name": [ + "Informal employment (Private sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.856" + ], + "name": [ + "Informal employment (Public sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.857" + ], + "name": [ + "Informal employment (Public sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.858" + ], + "name": [ + "Informal employment (Institutional sector not classified, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.859" + ], + "name": [ + "Informal employment (Institutional sector not classified, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.860" + ], + "name": [ + "Informal employment (Private sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.861" + ], + "name": [ + "Informal employment (Private sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.862" + ], + "name": [ + "Informal employment (Public sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.863" + ], + "name": [ + "Informal employment (Public sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.870" + ], + "name": [ + "Informal employment by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.JOB_TIME--PART", + "ilo/EMP_NIFL_NB.JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.871" + ], + "name": [ + "Informal employment (Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_NB.SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.872" + ], + "name": [ + "Informal employment (Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.873" + ], + "name": [ + "Informal employment (Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.874" + ], + "name": [ + "Informal employment by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.875" + ], + "name": [ + "Informal employment Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.876" + ], + "name": [ + "Informal employment Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.886" + ], + "name": [ + "Informal employment (Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.887" + ], + "name": [ + "Informal employment (Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.888" + ], + "name": [ + "Informal employment (Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.889" + ], + "name": [ + "Informal employment (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.890" + ], + "name": [ + "Informal employment (Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.891" + ], + "name": [ + "Informal employment (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.892" + ], + "name": [ + "Informal employment (Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.893" + ], + "name": [ + "Informal employment (Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.894" + ], + "name": [ + "Informal employment (Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.895" + ], + "name": [ + "Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.896" + ], + "name": [ + "Informal employment (Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.897" + ], + "name": [ + "Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.898" + ], + "name": [ + "Informal employment (Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.899" + ], + "name": [ + "Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.900" + ], + "name": [ + "Informal employment (Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.901" + ], + "name": [ + "Informal employment (Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.902" + ], + "name": [ + "Informal employment (Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.903" + ], + "name": [ + "Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.904" + ], + "name": [ + "Informal employment (Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.905" + ], + "name": [ + "Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.906" + ], + "name": [ + "Informal employment (Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.907" + ], + "name": [ + "Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.908" + ], + "name": [ + "Informal employment (Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.909" + ], + "name": [ + "Informal employment (Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.911" + ], + "name": [ + "Informal employment by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.912" + ], + "name": [ + "Informal employment by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.913" + ], + "name": [ + "Informal employment by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.914" + ], + "name": [ + "Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.915" + ], + "name": [ + "Informal employment by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.916" + ], + "name": [ + "Informal employment by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.917" + ], + "name": [ + "Informal employment by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.918" + ], + "name": [ + "Informal employment by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.919" + ], + "name": [ + "Informal employment by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.920" + ], + "name": [ + "Informal employment by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.923" + ], + "name": [ + "Informal employment by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.924" + ], + "name": [ + "Informal employment by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.925" + ], + "name": [ + "Informal employment by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.926" + ], + "name": [ + "Informal employment by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.927" + ], + "name": [ + "Informal employment by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.928" + ], + "name": [ + "Informal employment by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.929" + ], + "name": [ + "Informal employment by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.930" + ], + "name": [ + "Informal employment by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.931" + ], + "name": [ + "Informal employment by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.932" + ], + "name": [ + "Informal employment by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.SEX--F", + "ilo/EMP_NIFL_NB.SEX--M", + "ilo/EMP_NIFL_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.935" + ], + "name": [ + "Informal employment (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.936" + ], + "name": [ + "Informal employment (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.937" + ], + "name": [ + "Informal employment (Female) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.938" + ], + "name": [ + "Informal employment (Male) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.939" + ], + "name": [ + "Informal employment (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.940" + ], + "name": [ + "Informal employment (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.941" + ], + "name": [ + "Informal employment (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.942" + ], + "name": [ + "Informal employment (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.947" + ], + "name": [ + "Informal employment (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.948" + ], + "name": [ + "Informal employment (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.949" + ], + "name": [ + "Informal employment (Female) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.950" + ], + "name": [ + "Informal employment (Male) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.953" + ], + "name": [ + "Informal employment (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.954" + ], + "name": [ + "Informal employment (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.957" + ], + "name": [ + "Informal employment (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.958" + ], + "name": [ + "Informal employment (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.959" + ], + "name": [ + "Informal employment (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.960" + ], + "name": [ + "Informal employment (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.961" + ], + "name": [ + "Informal employment (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.962" + ], + "name": [ + "Informal employment (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.963" + ], + "name": [ + "Informal employment (Female) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.964" + ], + "name": [ + "Informal employment (Male) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.967" + ], + "name": [ + "Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.968" + ], + "name": [ + "Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.971" + ], + "name": [ + "Informal employment (Female) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.972" + ], + "name": [ + "Informal employment (Male) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.973" + ], + "name": [ + "Informal employment (Female) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.974" + ], + "name": [ + "Informal employment (Male) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.975" + ], + "name": [ + "Informal employment (Female) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.976" + ], + "name": [ + "Informal employment (Male) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.983" + ], + "name": [ + "Informal employment (Female) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.984" + ], + "name": [ + "Informal employment (Male) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.985" + ], + "name": [ + "Informal employment (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.986" + ], + "name": [ + "Informal employment (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.991" + ], + "name": [ + "Informal employment (Female) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.992" + ], + "name": [ + "Informal employment (Male) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.994" + ], + "name": [ + "Informal employment (Female) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.995" + ], + "name": [ + "Informal employment (Male) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.996" + ], + "name": [ + "Informal employment (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.997" + ], + "name": [ + "Informal employment (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.998" + ], + "name": [ + "Informal employment (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLNB.999" + ], + "name": [ + "Informal employment (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.002" + ], + "name": [ + "Informal employment rate by Age group" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T19", + "ilo/EMP_NIFL_RT.AGE--Y15T24", + "ilo/EMP_NIFL_RT.AGE--Y_GE15", + "ilo/EMP_NIFL_RT.AGE--Y20T24", + "ilo/EMP_NIFL_RT.AGE--Y25T29", + "ilo/EMP_NIFL_RT.AGE--Y25T34", + "ilo/EMP_NIFL_RT.AGE--Y25T54", + "ilo/EMP_NIFL_RT.AGE--Y_GE25", + "ilo/EMP_NIFL_RT.AGE--Y30T34", + "ilo/EMP_NIFL_RT.AGE--Y35T39", + "ilo/EMP_NIFL_RT.AGE--Y35T44", + "ilo/EMP_NIFL_RT.AGE--Y40T44", + "ilo/EMP_NIFL_RT.AGE--Y45T49", + "ilo/EMP_NIFL_RT.AGE--Y45T54", + "ilo/EMP_NIFL_RT.AGE--Y50T54", + "ilo/EMP_NIFL_RT.AGE--Y55T59", + "ilo/EMP_NIFL_RT.AGE--Y55T64", + "ilo/EMP_NIFL_RT.AGE--Y60T64", + "ilo/EMP_NIFL_RT.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.003" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.004" + ], + "name": [ + "Informal employment rate (15 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.005" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.006" + ], + "name": [ + "Informal employment rate (25 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.007" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.008" + ], + "name": [ + "Informal employment rate (65 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.011" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.012" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.013" + ], + "name": [ + "Informal employment rate (15 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.014" + ], + "name": [ + "Informal employment rate (15 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.015" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.016" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.017" + ], + "name": [ + "Informal employment rate (25 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.018" + ], + "name": [ + "Informal employment rate (25 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.019" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.020" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.021" + ], + "name": [ + "Informal employment rate (65 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.022" + ], + "name": [ + "Informal employment rate (65 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.026" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.027" + ], + "name": [ + "Informal employment rate (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.028" + ], + "name": [ + "Informal employment rate (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.029" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.030" + ], + "name": [ + "Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.031" + ], + "name": [ + "Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.032" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.033" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.034" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.035" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.036" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.037" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.044" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.045" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.046" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.047" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.048" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.049" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.053" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.054" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.055" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.059" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.060" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.061" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.062" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.063" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.064" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.065" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.066" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.067" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.068" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.069" + ], + "name": [ + "Informal employment rate (15 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.070" + ], + "name": [ + "Informal employment rate (25 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.074" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.075" + ], + "name": [ + "Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.076" + ], + "name": [ + "Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.080" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.081" + ], + "name": [ + "Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.082" + ], + "name": [ + "Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.083" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.084" + ], + "name": [ + "Informal employment rate (15 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.085" + ], + "name": [ + "Informal employment rate (25 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.086" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.087" + ], + "name": [ + "Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.088" + ], + "name": [ + "Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.098" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.099" + ], + "name": [ + "Informal employment rate (15 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.100" + ], + "name": [ + "Informal employment rate (25 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1000" + ], + "name": [ + "Informal employment rate (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1001" + ], + "name": [ + "Informal employment rate (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1002" + ], + "name": [ + "Informal employment rate (Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1003" + ], + "name": [ + "Informal employment rate (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1004" + ], + "name": [ + "Informal employment rate (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1005" + ], + "name": [ + "Informal employment rate (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1006" + ], + "name": [ + "Informal employment rate (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1008" + ], + "name": [ + "Informal employment rate (Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1009" + ], + "name": [ + "Informal employment rate (Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.101" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1010" + ], + "name": [ + "Informal employment rate (Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1011" + ], + "name": [ + "Informal employment rate (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1012" + ], + "name": [ + "Informal employment rate (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1014" + ], + "name": [ + "Informal employment rate (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1015" + ], + "name": [ + "Informal employment rate (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.102" + ], + "name": [ + "Informal employment rate (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.103" + ], + "name": [ + "Informal employment rate (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1037" + ], + "name": [ + "Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1038" + ], + "name": [ + "Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1039" + ], + "name": [ + "Informal employment rate (Female, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1040" + ], + "name": [ + "Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1041" + ], + "name": [ + "Informal employment rate (Female, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1042" + ], + "name": [ + "Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1043" + ], + "name": [ + "Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1044" + ], + "name": [ + "Informal employment rate (Female, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1045" + ], + "name": [ + "Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1046" + ], + "name": [ + "Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1047" + ], + "name": [ + "Informal employment rate (Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1048" + ], + "name": [ + "Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1049" + ], + "name": [ + "Informal employment rate (Male, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1050" + ], + "name": [ + "Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1051" + ], + "name": [ + "Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1052" + ], + "name": [ + "Informal employment rate (Male, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1053" + ], + "name": [ + "Informal employment rate (Sex other than Female or Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1054" + ], + "name": [ + "Informal employment rate (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1055" + ], + "name": [ + "Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1056" + ], + "name": [ + "Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1057" + ], + "name": [ + "Informal employment rate (Female, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1058" + ], + "name": [ + "Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1059" + ], + "name": [ + "Informal employment rate (Female, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1060" + ], + "name": [ + "Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1061" + ], + "name": [ + "Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1062" + ], + "name": [ + "Informal employment rate (Female, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1063" + ], + "name": [ + "Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1064" + ], + "name": [ + "Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1065" + ], + "name": [ + "Informal employment rate (Male, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1066" + ], + "name": [ + "Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1067" + ], + "name": [ + "Informal employment rate (Male, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1068" + ], + "name": [ + "Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1069" + ], + "name": [ + "Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1070" + ], + "name": [ + "Informal employment rate (Male, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1071" + ], + "name": [ + "Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1072" + ], + "name": [ + "Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1073" + ], + "name": [ + "Informal employment rate (Female, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1074" + ], + "name": [ + "Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1075" + ], + "name": [ + "Informal employment rate (Female, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1076" + ], + "name": [ + "Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1077" + ], + "name": [ + "Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1078" + ], + "name": [ + "Informal employment rate (Female, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1079" + ], + "name": [ + "Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1080" + ], + "name": [ + "Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1081" + ], + "name": [ + "Informal employment rate (Male, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1082" + ], + "name": [ + "Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1083" + ], + "name": [ + "Informal employment rate (Male, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1084" + ], + "name": [ + "Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1085" + ], + "name": [ + "Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1086" + ], + "name": [ + "Informal employment rate (Male, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1091" + ], + "name": [ + "Informal employment rate (Female) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1092" + ], + "name": [ + "Informal employment rate (Male) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1093" + ], + "name": [ + "Informal employment rate (Female) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1094" + ], + "name": [ + "Informal employment rate (Male) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1095" + ], + "name": [ + "Informal employment rate (Female) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1096" + ], + "name": [ + "Informal employment rate (Male) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1097" + ], + "name": [ + "Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1098" + ], + "name": [ + "Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1099" + ], + "name": [ + "Informal employment rate (Female) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.110" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1100" + ], + "name": [ + "Informal employment rate (Male) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1101" + ], + "name": [ + "Informal employment rate (Female) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1102" + ], + "name": [ + "Informal employment rate (Male) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1103" + ], + "name": [ + "Informal employment rate (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1104" + ], + "name": [ + "Informal employment rate (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1105" + ], + "name": [ + "Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1106" + ], + "name": [ + "Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1107" + ], + "name": [ + "Informal employment rate (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1108" + ], + "name": [ + "Informal employment rate (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1109" + ], + "name": [ + "Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.111" + ], + "name": [ + "Informal employment rate (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1110" + ], + "name": [ + "Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1115" + ], + "name": [ + "Informal employment rate (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1116" + ], + "name": [ + "Informal employment rate (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1117" + ], + "name": [ + "Informal employment rate (Female) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1118" + ], + "name": [ + "Informal employment rate (Male) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1119" + ], + "name": [ + "Informal employment rate (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.112" + ], + "name": [ + "Informal employment rate (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1120" + ], + "name": [ + "Informal employment rate (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1121" + ], + "name": [ + "Informal employment rate (Female) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1122" + ], + "name": [ + "Informal employment rate (Male) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1123" + ], + "name": [ + "Informal employment rate (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1124" + ], + "name": [ + "Informal employment rate (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1126" + ], + "name": [ + "Informal employment rate (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1127" + ], + "name": [ + "Informal employment rate (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1129" + ], + "name": [ + "Informal employment rate (Female) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.113" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1130" + ], + "name": [ + "Informal employment rate (Male) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1131" + ], + "name": [ + "Informal employment rate (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1132" + ], + "name": [ + "Informal employment rate (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1133" + ], + "name": [ + "Informal employment rate (Female) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1134" + ], + "name": [ + "Informal employment rate (Male) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1135" + ], + "name": [ + "Informal employment rate by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1136" + ], + "name": [ + "Informal employment rate by Employment status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1137" + ], + "name": [ + "Informal employment rate (Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1138" + ], + "name": [ + "Informal employment rate (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1139" + ], + "name": [ + "Informal employment rate (Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.114" + ], + "name": [ + "Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1140" + ], + "name": [ + "Informal employment rate (Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1141" + ], + "name": [ + "Informal employment rate (Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1142" + ], + "name": [ + "Informal employment rate (Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1143" + ], + "name": [ + "Informal employment rate (Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1144" + ], + "name": [ + "Informal employment rate (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1145" + ], + "name": [ + "Informal employment rate (Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1146" + ], + "name": [ + "Informal employment rate by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--R", + "ilo/EMP_NIFL_RT.URBANISATION--U", + "ilo/EMP_NIFL_RT.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1147" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1148" + ], + "name": [ + "Informal employment rate (Rural) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1149" + ], + "name": [ + "Informal employment rate (Urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.115" + ], + "name": [ + "Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1150" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1151" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1152" + ], + "name": [ + "Informal employment rate (Rural, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1153" + ], + "name": [ + "Informal employment rate (Rural, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1154" + ], + "name": [ + "Informal employment rate (Urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1155" + ], + "name": [ + "Informal employment rate (Urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1158" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1159" + ], + "name": [ + "Informal employment rate (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.116" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1160" + ], + "name": [ + "Informal employment rate (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1161" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1162" + ], + "name": [ + "Informal employment rate (Rural) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1163" + ], + "name": [ + "Informal employment rate (Urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1164" + ], + "name": [ + "Informal employment rate (Rural) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1165" + ], + "name": [ + "Informal employment rate (Urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1166" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1167" + ], + "name": [ + "Informal employment rate (Rural) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1168" + ], + "name": [ + "Informal employment rate (Urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1169" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.117" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1170" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1171" + ], + "name": [ + "Informal employment rate (Rural, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1172" + ], + "name": [ + "Informal employment rate (Rural, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1173" + ], + "name": [ + "Informal employment rate (Rural, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1174" + ], + "name": [ + "Informal employment rate (Urban, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1175" + ], + "name": [ + "Informal employment rate (Urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1176" + ], + "name": [ + "Informal employment rate (Urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1177" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1178" + ], + "name": [ + "Informal employment rate (Rural) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1179" + ], + "name": [ + "Informal employment rate (Urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.118" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1180" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1181" + ], + "name": [ + "Informal employment rate (Rural) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1182" + ], + "name": [ + "Informal employment rate (Urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1183" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1184" + ], + "name": [ + "Informal employment rate (Rural) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1185" + ], + "name": [ + "Informal employment rate (Urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1188" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1189" + ], + "name": [ + "Informal employment rate (Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.119" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1190" + ], + "name": [ + "Informal employment rate (Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1196" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1197" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1198" + ], + "name": [ + "Informal employment rate (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1199" + ], + "name": [ + "Informal employment rate (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.120" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1200" + ], + "name": [ + "Informal employment rate (Rural, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1201" + ], + "name": [ + "Informal employment rate (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1202" + ], + "name": [ + "Informal employment rate (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1203" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1204" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1205" + ], + "name": [ + "Informal employment rate (Rural, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1206" + ], + "name": [ + "Informal employment rate (Rural, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1207" + ], + "name": [ + "Informal employment rate (Urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1208" + ], + "name": [ + "Informal employment rate (Urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1209" + ], + "name": [ + "Informal employment rate (Rural, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.121" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1210" + ], + "name": [ + "Informal employment rate (Rural, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1212" + ], + "name": [ + "Informal employment rate (Urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1213" + ], + "name": [ + "Informal employment rate (Urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1214" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1215" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1216" + ], + "name": [ + "Informal employment rate (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1217" + ], + "name": [ + "Informal employment rate (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1218" + ], + "name": [ + "Informal employment rate (Rural, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1219" + ], + "name": [ + "Informal employment rate (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1220" + ], + "name": [ + "Informal employment rate (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1222" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1223" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1224" + ], + "name": [ + "Informal employment rate (Rural, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1225" + ], + "name": [ + "Informal employment rate (Rural, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1226" + ], + "name": [ + "Informal employment rate (Urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1227" + ], + "name": [ + "Informal employment rate (Urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1229" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1230" + ], + "name": [ + "Informal employment rate (Not classsified as rural or urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1231" + ], + "name": [ + "Informal employment rate (Rural, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1232" + ], + "name": [ + "Informal employment rate (Rural, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1234" + ], + "name": [ + "Informal employment rate (Urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.1235" + ], + "name": [ + "Informal employment rate (Urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.128" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.129" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.130" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.131" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.132" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.133" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.137" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.138" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.139" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.140" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.141" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.142" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.143" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.144" + ], + "name": [ + "Informal employment rate (15 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.145" + ], + "name": [ + "Informal employment rate (25 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.158" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.159" + ], + "name": [ + "Informal employment rate (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.160" + ], + "name": [ + "Informal employment rate (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.161" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.162" + ], + "name": [ + "Informal employment rate (15 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.163" + ], + "name": [ + "Informal employment rate (25 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.164" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.165" + ], + "name": [ + "Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.166" + ], + "name": [ + "Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.167" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.168" + ], + "name": [ + "Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.169" + ], + "name": [ + "Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.170" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.171" + ], + "name": [ + "Informal employment rate (15 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.172" + ], + "name": [ + "Informal employment rate (25 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.173" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.174" + ], + "name": [ + "Informal employment rate (15 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.175" + ], + "name": [ + "Informal employment rate (25 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.176" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.177" + ], + "name": [ + "Informal employment rate (15 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.178" + ], + "name": [ + "Informal employment rate (25 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.182" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.183" + ], + "name": [ + "Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.184" + ], + "name": [ + "Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.185" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.186" + ], + "name": [ + "Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.187" + ], + "name": [ + "Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.194" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.195" + ], + "name": [ + "Informal employment rate (15 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.196" + ], + "name": [ + "Informal employment rate (25 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.197" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.198" + ], + "name": [ + "Informal employment rate (15 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.199" + ], + "name": [ + "Informal employment rate (25 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.200" + ], + "name": [ + "Informal employment rate (15 to 24 years old) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.201" + ], + "name": [ + "Informal employment rate (15 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.202" + ], + "name": [ + "Informal employment rate (25 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.221" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.222" + ], + "name": [ + "Informal employment rate (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.223" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.224" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.225" + ], + "name": [ + "Informal employment rate (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.226" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.227" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.228" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.229" + ], + "name": [ + "Informal employment rate (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.230" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.231" + ], + "name": [ + "Informal employment rate (15 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.232" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.233" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.234" + ], + "name": [ + "Informal employment rate (25 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.235" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.236" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.237" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.238" + ], + "name": [ + "Informal employment rate (65 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.239" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.240" + ], + "name": [ + "Informal employment rate (15 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.241" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.242" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.243" + ], + "name": [ + "Informal employment rate (25 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.244" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.245" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.246" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.247" + ], + "name": [ + "Informal employment rate (65 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.248" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.249" + ], + "name": [ + "Informal employment rate (15 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.250" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.251" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.252" + ], + "name": [ + "Informal employment rate (25 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.253" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.254" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.255" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.256" + ], + "name": [ + "Informal employment rate (65 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.257" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.258" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.259" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.260" + ], + "name": [ + "Informal employment rate (15 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.261" + ], + "name": [ + "Informal employment rate (15 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.262" + ], + "name": [ + "Informal employment rate (15 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.263" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.264" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.265" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.266" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.267" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.268" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.269" + ], + "name": [ + "Informal employment rate (25 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.270" + ], + "name": [ + "Informal employment rate (25 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.271" + ], + "name": [ + "Informal employment rate (25 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.272" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.273" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.274" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.275" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.276" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.277" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.278" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.279" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.280" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.281" + ], + "name": [ + "Informal employment rate (65 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.282" + ], + "name": [ + "Informal employment rate (65 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.283" + ], + "name": [ + "Informal employment rate (65 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.284" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.285" + ], + "name": [ + "Informal employment rate (15 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.286" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.287" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.288" + ], + "name": [ + "Informal employment rate (25 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.289" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.290" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.291" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.292" + ], + "name": [ + "Informal employment rate (65 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.293" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.294" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.295" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.296" + ], + "name": [ + "Informal employment rate (15 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.297" + ], + "name": [ + "Informal employment rate (15 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.298" + ], + "name": [ + "Informal employment rate (15 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.299" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.300" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.301" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.302" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.303" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.304" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.305" + ], + "name": [ + "Informal employment rate (25 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.306" + ], + "name": [ + "Informal employment rate (25 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.307" + ], + "name": [ + "Informal employment rate (25 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.308" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.309" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.310" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.311" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.312" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.313" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.314" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.315" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.316" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.317" + ], + "name": [ + "Informal employment rate (65 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.318" + ], + "name": [ + "Informal employment rate (65 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.319" + ], + "name": [ + "Informal employment rate (65 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.320" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.321" + ], + "name": [ + "Informal employment rate (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.322" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.323" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.324" + ], + "name": [ + "Informal employment rate (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.325" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.326" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.327" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.328" + ], + "name": [ + "Informal employment rate (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.329" + ], + "name": [ + "Informal employment rate (15 to 24 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.330" + ], + "name": [ + "Informal employment rate (15 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.331" + ], + "name": [ + "Informal employment rate (25 to 34 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.332" + ], + "name": [ + "Informal employment rate (25 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.333" + ], + "name": [ + "Informal employment rate (25 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.334" + ], + "name": [ + "Informal employment rate (35 to 44 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.335" + ], + "name": [ + "Informal employment rate (45 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.336" + ], + "name": [ + "Informal employment rate (55 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.337" + ], + "name": [ + "Informal employment rate (65 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.338" + ], + "name": [ + "Informal employment rate (15 to 24 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.339" + ], + "name": [ + "Informal employment rate (15 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.340" + ], + "name": [ + "Informal employment rate (25 to 34 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.341" + ], + "name": [ + "Informal employment rate (25 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.342" + ], + "name": [ + "Informal employment rate (25 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.343" + ], + "name": [ + "Informal employment rate (35 to 44 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.344" + ], + "name": [ + "Informal employment rate (45 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.345" + ], + "name": [ + "Informal employment rate (55 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.346" + ], + "name": [ + "Informal employment rate (65 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.359" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.360" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.361" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.362" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.363" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.364" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.365" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.366" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.367" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.368" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.369" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.370" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.371" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.372" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.373" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.374" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.375" + ], + "name": [ + "Informal employment rate (15 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.376" + ], + "name": [ + "Informal employment rate (25 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.377" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.378" + ], + "name": [ + "Informal employment rate (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.379" + ], + "name": [ + "Informal employment rate (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.380" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.381" + ], + "name": [ + "Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.382" + ], + "name": [ + "Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.383" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.384" + ], + "name": [ + "Informal employment rate (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.385" + ], + "name": [ + "Informal employment rate (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.386" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.387" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.388" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.395" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.396" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.397" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.398" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.399" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.400" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.401" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.402" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.403" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.404" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.405" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.406" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.407" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.408" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.409" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.410" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.411" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.412" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.413" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.414" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.415" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.416" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.417" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.418" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.419" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.420" + ], + "name": [ + "Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.421" + ], + "name": [ + "Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.422" + ], + "name": [ + "Informal employment rate (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T19__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y15T19__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.423" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.424" + ], + "name": [ + "Informal employment rate (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.425" + ], + "name": [ + "Informal employment rate (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y20T24__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y20T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.426" + ], + "name": [ + "Informal employment rate (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T29__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y25T29__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.427" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.428" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.429" + ], + "name": [ + "Informal employment rate (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.430" + ], + "name": [ + "Informal employment rate (30 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.431" + ], + "name": [ + "Informal employment rate (35 to 39 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.432" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.433" + ], + "name": [ + "Informal employment rate (40 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--M", + "ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.434" + ], + "name": [ + "Informal employment rate (45 to 49 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T49__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y45T49__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.435" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.436" + ], + "name": [ + "Informal employment rate (50 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y50T54__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y50T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.437" + ], + "name": [ + "Informal employment rate (55 to 59 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T59__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y55T59__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.438" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.439" + ], + "name": [ + "Informal employment rate (60 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y60T64__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y60T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.440" + ], + "name": [ + "Informal employment rate (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.462" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.463" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.464" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.465" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.466" + ], + "name": [ + "Informal employment rate (15 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.467" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.468" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.469" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.470" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.471" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.472" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.473" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.474" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.475" + ], + "name": [ + "Informal employment rate (25 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.476" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.477" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.478" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.479" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.480" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.481" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.482" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.483" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.484" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.485" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.486" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.487" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.488" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.489" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.490" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.491" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.492" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.493" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.494" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.495" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.496" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.497" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.498" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.499" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.500" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.501" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.502" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.503" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.504" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.505" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.506" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.508" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.509" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.511" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.512" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.514" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.515" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.517" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.518" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.519" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.520" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.521" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.522" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.523" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.524" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.525" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.526" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.527" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.528" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.529" + ], + "name": [ + "Informal employment rate (15 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.530" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.531" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.533" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.534" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.535" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.536" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.537" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.538" + ], + "name": [ + "Informal employment rate (25 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.539" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.540" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.542" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.543" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.544" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.545" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.546" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.547" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.548" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.549" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.550" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.551" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.553" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.554" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.555" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.556" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.558" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.559" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.561" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.562" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.563" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.564" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.565" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.566" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.567" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.568" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.569" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.570" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.571" + ], + "name": [ + "Informal employment rate (15 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.572" + ], + "name": [ + "Informal employment rate (15 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.574" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.575" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.577" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.578" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.580" + ], + "name": [ + "Informal employment rate (25 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.581" + ], + "name": [ + "Informal employment rate (25 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.583" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.584" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.586" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.587" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.588" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.589" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.590" + ], + "name": [ + "Informal employment rate (65 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.591" + ], + "name": [ + "Informal employment rate (65 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.610" + ], + "name": [ + "Informal employment rate (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.611" + ], + "name": [ + "Informal employment rate (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.612" + ], + "name": [ + "Informal employment rate (25 to 34 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.613" + ], + "name": [ + "Informal employment rate (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.614" + ], + "name": [ + "Informal employment rate (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.615" + ], + "name": [ + "Informal employment rate (35 to 44 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.616" + ], + "name": [ + "Informal employment rate (45 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.617" + ], + "name": [ + "Informal employment rate (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.618" + ], + "name": [ + "Informal employment rate (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.619" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.620" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.621" + ], + "name": [ + "Informal employment rate (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.622" + ], + "name": [ + "Informal employment rate (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.623" + ], + "name": [ + "Informal employment rate (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.624" + ], + "name": [ + "Informal employment rate (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.625" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.626" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.627" + ], + "name": [ + "Informal employment rate (25 to 34 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.628" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.629" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.630" + ], + "name": [ + "Informal employment rate (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.631" + ], + "name": [ + "Informal employment rate (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.632" + ], + "name": [ + "Informal employment rate (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.633" + ], + "name": [ + "Informal employment rate (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.634" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.635" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.636" + ], + "name": [ + "Informal employment rate (35 to 44 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.637" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.638" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.639" + ], + "name": [ + "Informal employment rate (45 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.640" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.641" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.642" + ], + "name": [ + "Informal employment rate (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.643" + ], + "name": [ + "Informal employment rate (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.644" + ], + "name": [ + "Informal employment rate (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--R", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.645" + ], + "name": [ + "Informal employment rate (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--U", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.646" + ], + "name": [ + "Informal employment rate by Disability status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.647" + ], + "name": [ + "Informal employment rate (Persons with disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.648" + ], + "name": [ + "Informal employment rate (Persons without disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.649" + ], + "name": [ + "Informal employment rate (Persons with disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.650" + ], + "name": [ + "Informal employment rate (Persons without disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.651" + ], + "name": [ + "Informal employment rate (Persons with disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.652" + ], + "name": [ + "Informal employment rate (Persons with disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.653" + ], + "name": [ + "Informal employment rate (Persons with disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.654" + ], + "name": [ + "Informal employment rate (Persons without disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.655" + ], + "name": [ + "Informal employment rate (Persons without disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.656" + ], + "name": [ + "Informal employment rate (Persons without disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.657" + ], + "name": [ + "Informal employment rate (Persons with disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.658" + ], + "name": [ + "Informal employment rate (Persons without disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.659" + ], + "name": [ + "Informal employment rate (Persons with disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.660" + ], + "name": [ + "Informal employment rate (Persons without disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.661" + ], + "name": [ + "Informal employment rate (Persons with disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.662" + ], + "name": [ + "Informal employment rate (Persons without disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.665" + ], + "name": [ + "Informal employment rate (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.666" + ], + "name": [ + "Informal employment rate (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.667" + ], + "name": [ + "Informal employment rate (Persons with disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.668" + ], + "name": [ + "Informal employment rate (Persons with disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.669" + ], + "name": [ + "Informal employment rate (Persons without disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.670" + ], + "name": [ + "Informal employment rate (Persons without disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.672" + ], + "name": [ + "Informal employment rate (Persons with disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.673" + ], + "name": [ + "Informal employment rate (Persons with disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.674" + ], + "name": [ + "Informal employment rate (Persons without disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.675" + ], + "name": [ + "Informal employment rate (Persons without disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.677" + ], + "name": [ + "Informal employment rate (Persons with disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.678" + ], + "name": [ + "Informal employment rate (Persons with disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.679" + ], + "name": [ + "Informal employment rate (Persons without disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.680" + ], + "name": [ + "Informal employment rate (Persons without disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.681" + ], + "name": [ + "Informal employment rate (Persons with disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.682" + ], + "name": [ + "Informal employment rate (Persons with disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.683" + ], + "name": [ + "Informal employment rate (Persons without disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.684" + ], + "name": [ + "Informal employment rate (Persons without disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.691" + ], + "name": [ + "Informal employment rate in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.692" + ], + "name": [ + "Informal employment rate in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.693" + ], + "name": [ + "Informal employment rate in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.694" + ], + "name": [ + "Informal employment rate in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.697" + ], + "name": [ + "Informal employment rate in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.698" + ], + "name": [ + "Informal employment rate in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.700" + ], + "name": [ + "Informal employment rate in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.702" + ], + "name": [ + "Informal employment rate in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.703" + ], + "name": [ + "Informal employment rate in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.704" + ], + "name": [ + "Informal employment rate in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.705" + ], + "name": [ + "Informal employment rate in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.707" + ], + "name": [ + "Informal employment rate in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.709" + ], + "name": [ + "Informal employment rate in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.710" + ], + "name": [ + "Informal employment rate in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.711" + ], + "name": [ + "Informal employment rate in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.715" + ], + "name": [ + "Informal employment rate in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.716" + ], + "name": [ + "Informal employment rate in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.719" + ], + "name": [ + "Informal employment rate in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.720" + ], + "name": [ + "Informal employment rate in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.721" + ], + "name": [ + "Informal employment rate in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.722" + ], + "name": [ + "Informal employment rate in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.725" + ], + "name": [ + "Informal employment rate in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.726" + ], + "name": [ + "Informal employment rate in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.728" + ], + "name": [ + "Informal employment rate in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.729" + ], + "name": [ + "Informal employment rate in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.730" + ], + "name": [ + "Informal employment rate in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.735" + ], + "name": [ + "Informal employment rate in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.736" + ], + "name": [ + "Informal employment rate in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.737" + ], + "name": [ + "Informal employment rate in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.738" + ], + "name": [ + "Informal employment rate in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.739" + ], + "name": [ + "Informal employment rate in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.740" + ], + "name": [ + "Informal employment rate in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.741" + ], + "name": [ + "Informal employment rate in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.743" + ], + "name": [ + "Informal employment rate in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.744" + ], + "name": [ + "Informal employment rate in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.747" + ], + "name": [ + "Informal employment rate in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.748" + ], + "name": [ + "Informal employment rate in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.749" + ], + "name": [ + "Informal employment rate in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.754" + ], + "name": [ + "Informal employment rate by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.755" + ], + "name": [ + "Informal employment rate by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.756" + ], + "name": [ + "Informal employment rate by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.757" + ], + "name": [ + "Informal employment rate by Hours worked" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.HOUR_BANDS--H0", + "ilo/EMP_NIFL_RT.HOUR_BANDS--H1T14", + "ilo/EMP_NIFL_RT.HOUR_BANDS--H15T29", + "ilo/EMP_NIFL_RT.HOUR_BANDS--H30T34", + "ilo/EMP_NIFL_RT.HOUR_BANDS--H35T39", + "ilo/EMP_NIFL_RT.HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_RT.HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_RT.HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.758" + ], + "name": [ + "Informal employment rate (01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H1T14", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.759" + ], + "name": [ + "Informal employment rate (15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H15T29", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.760" + ], + "name": [ + "Informal employment rate (30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H30T34", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.761" + ], + "name": [ + "Informal employment rate (35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H35T39", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.762" + ], + "name": [ + "Informal employment rate (40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H40T48", + "ilo/EMP_NIFL_RT.SEX--O__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.763" + ], + "name": [ + "Informal employment rate (49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--HGE49", + "ilo/EMP_NIFL_RT.SEX--O__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.764" + ], + "name": [ + "Informal employment rate (No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H0", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.765" + ], + "name": [ + "Informal employment rate (No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--_X", + "ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.766" + ], + "name": [ + "Informal employment rate by Institutional sector" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.767" + ], + "name": [ + "Informal employment rate (Institutional sector not classified) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.768" + ], + "name": [ + "Informal employment rate (Private sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.769" + ], + "name": [ + "Informal employment rate (Public sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.770" + ], + "name": [ + "Informal employment rate (Institutional sector not classified) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.771" + ], + "name": [ + "Informal employment rate (Private sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.772" + ], + "name": [ + "Informal employment rate (Public sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.773" + ], + "name": [ + "Informal employment rate (Institutional sector not classified) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.774" + ], + "name": [ + "Informal employment rate (Private sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.775" + ], + "name": [ + "Informal employment rate (Public sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.779" + ], + "name": [ + "Informal employment rate (Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.780" + ], + "name": [ + "Informal employment rate (Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.781" + ], + "name": [ + "Informal employment rate (Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.782" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.783" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.784" + ], + "name": [ + "Informal employment rate (Private sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.785" + ], + "name": [ + "Informal employment rate (Private sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.786" + ], + "name": [ + "Informal employment rate (Public sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.787" + ], + "name": [ + "Informal employment rate (Public sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.788" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.789" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.790" + ], + "name": [ + "Informal employment rate (Private sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.791" + ], + "name": [ + "Informal employment rate (Private sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.792" + ], + "name": [ + "Informal employment rate (Public sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.793" + ], + "name": [ + "Informal employment rate (Public sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.794" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.795" + ], + "name": [ + "Informal employment rate (Institutional sector not classified, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.796" + ], + "name": [ + "Informal employment rate (Private sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.797" + ], + "name": [ + "Informal employment rate (Private sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.798" + ], + "name": [ + "Informal employment rate (Public sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.799" + ], + "name": [ + "Informal employment rate (Public sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.806" + ], + "name": [ + "Informal employment rate by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.JOB_TIME--PART", + "ilo/EMP_NIFL_RT.JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.807" + ], + "name": [ + "Informal employment rate (Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--FULL", + "ilo/EMP_NIFL_RT.SEX--O__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.808" + ], + "name": [ + "Informal employment rate (Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--_X", + "ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.809" + ], + "name": [ + "Informal employment rate (Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--PART", + "ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.810" + ], + "name": [ + "Informal employment rate by Marital Status" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.811" + ], + "name": [ + "Informal employment rate Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.812" + ], + "name": [ + "Informal employment rate Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.822" + ], + "name": [ + "Informal employment rate (Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.823" + ], + "name": [ + "Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.824" + ], + "name": [ + "Informal employment rate (Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.825" + ], + "name": [ + "Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.826" + ], + "name": [ + "Informal employment rate (Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.827" + ], + "name": [ + "Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.828" + ], + "name": [ + "Informal employment rate (Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.829" + ], + "name": [ + "Informal employment rate (Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.830" + ], + "name": [ + "Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.831" + ], + "name": [ + "Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.832" + ], + "name": [ + "Informal employment rate (Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.833" + ], + "name": [ + "Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.834" + ], + "name": [ + "Informal employment rate (Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.835" + ], + "name": [ + "Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.836" + ], + "name": [ + "Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.837" + ], + "name": [ + "Informal employment rate (Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.838" + ], + "name": [ + "Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.839" + ], + "name": [ + "Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.840" + ], + "name": [ + "Informal employment rate (Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.841" + ], + "name": [ + "Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.842" + ], + "name": [ + "Informal employment rate (Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.843" + ], + "name": [ + "Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.844" + ], + "name": [ + "Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.845" + ], + "name": [ + "Informal employment rate (Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.847" + ], + "name": [ + "Informal employment rate by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.848" + ], + "name": [ + "Informal employment rate by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.849" + ], + "name": [ + "Informal employment rate by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.850" + ], + "name": [ + "Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.851" + ], + "name": [ + "Informal employment rate by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.852" + ], + "name": [ + "Informal employment rate by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.853" + ], + "name": [ + "Informal employment rate by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.854" + ], + "name": [ + "Informal employment rate by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.855" + ], + "name": [ + "Informal employment rate by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.856" + ], + "name": [ + "Informal employment rate by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.859" + ], + "name": [ + "Informal employment rate by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.860" + ], + "name": [ + "Informal employment rate by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.861" + ], + "name": [ + "Informal employment rate by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.862" + ], + "name": [ + "Informal employment rate by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.863" + ], + "name": [ + "Informal employment rate by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.864" + ], + "name": [ + "Informal employment rate by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.865" + ], + "name": [ + "Informal employment rate by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.866" + ], + "name": [ + "Informal employment rate by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.867" + ], + "name": [ + "Informal employment rate by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.868" + ], + "name": [ + "Informal employment rate by Sex" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.SEX--F", + "ilo/EMP_NIFL_RT.SEX--M", + "ilo/EMP_NIFL_RT.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.871" + ], + "name": [ + "Informal employment rate (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.872" + ], + "name": [ + "Informal employment rate (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.873" + ], + "name": [ + "Informal employment rate (Female) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.874" + ], + "name": [ + "Informal employment rate (Male) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.875" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.876" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.877" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.878" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.883" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.884" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.885" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.886" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.889" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.890" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.893" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.894" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.895" + ], + "name": [ + "Informal employment rate (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.896" + ], + "name": [ + "Informal employment rate (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.897" + ], + "name": [ + "Informal employment rate (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.898" + ], + "name": [ + "Informal employment rate (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.899" + ], + "name": [ + "Informal employment rate (Female) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.900" + ], + "name": [ + "Informal employment rate (Male) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.903" + ], + "name": [ + "Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.904" + ], + "name": [ + "Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.907" + ], + "name": [ + "Informal employment rate (Female) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.908" + ], + "name": [ + "Informal employment rate (Male) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.909" + ], + "name": [ + "Informal employment rate (Female) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.910" + ], + "name": [ + "Informal employment rate (Male) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.911" + ], + "name": [ + "Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.912" + ], + "name": [ + "Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.919" + ], + "name": [ + "Informal employment rate (Female) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.920" + ], + "name": [ + "Informal employment rate (Male) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.921" + ], + "name": [ + "Informal employment rate (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.922" + ], + "name": [ + "Informal employment rate (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.927" + ], + "name": [ + "Informal employment rate (Female) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.928" + ], + "name": [ + "Informal employment rate (Male) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.930" + ], + "name": [ + "Informal employment rate (Female) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.931" + ], + "name": [ + "Informal employment rate (Male) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.932" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.933" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.934" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.935" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.940" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.941" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.942" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.943" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.946" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.947" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.948" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.949" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.950" + ], + "name": [ + "Informal employment rate (Female) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.951" + ], + "name": [ + "Informal employment rate (Male) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.960" + ], + "name": [ + "Informal employment rate (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.961" + ], + "name": [ + "Informal employment rate (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.962" + ], + "name": [ + "Informal employment rate (Female) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.963" + ], + "name": [ + "Informal employment rate (Male) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.964" + ], + "name": [ + "Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.965" + ], + "name": [ + "Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.967" + ], + "name": [ + "Informal employment rate (Female) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.968" + ], + "name": [ + "Informal employment rate (Male) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.969" + ], + "name": [ + "Informal employment rate (Female) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.970" + ], + "name": [ + "Informal employment rate (Male) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.971" + ], + "name": [ + "Informal employment rate (Female) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.972" + ], + "name": [ + "Informal employment rate (Male) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.973" + ], + "name": [ + "Informal employment rate (Female) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.974" + ], + "name": [ + "Informal employment rate (Male) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.977" + ], + "name": [ + "Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.978" + ], + "name": [ + "Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.979" + ], + "name": [ + "Informal employment rate (Female) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.980" + ], + "name": [ + "Informal employment rate (Male) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.985" + ], + "name": [ + "Informal employment rate (Female) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.986" + ], + "name": [ + "Informal employment rate (Male) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.987" + ], + "name": [ + "Informal employment rate (Female) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.988" + ], + "name": [ + "Informal employment rate (Male) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.989" + ], + "name": [ + "Informal employment rate (Female) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNIFLRT.990" + ], + "name": [ + "Informal employment rate (Male) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.002" + ], + "name": [ + "Employment, normative approach by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F", + "ilo/EMP_NORM_NB.SEX--M", + "ilo/EMP_NORM_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.003" + ], + "name": [ + "Employment, normative approach by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.004" + ], + "name": [ + "Employment, normative approach (Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.005" + ], + "name": [ + "Employment, normative approach (Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.006" + ], + "name": [ + "Employment, normative approach (Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.007" + ], + "name": [ + "Employment, normative approach by Employment status" + ], + "memberList": [ + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.008" + ], + "name": [ + "Employment, normative approach (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.009" + ], + "name": [ + "Employment, normative approach (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.010" + ], + "name": [ + "Employment, normative approach (Employees) by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.011" + ], + "name": [ + "Employment, normative approach (Self-employed) by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.012" + ], + "name": [ + "Employment, normative approach (Employees, Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.013" + ], + "name": [ + "Employment, normative approach (Employees, Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.014" + ], + "name": [ + "Employment, normative approach (Employees, Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.015" + ], + "name": [ + "Employment, normative approach (Self-employed, Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.016" + ], + "name": [ + "Employment, normative approach (Self-employed, Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPNORMNB.017" + ], + "name": [ + "Employment, normative approach (Self-employed, Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.002" + ], + "name": [ + "Employment outside the formal sector by Age group" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T19", + "ilo/EMP_PIFL_NB.AGE--Y15T24", + "ilo/EMP_PIFL_NB.AGE--Y15T64", + "ilo/EMP_PIFL_NB.AGE--Y_GE15", + "ilo/EMP_PIFL_NB.AGE--Y20T24", + "ilo/EMP_PIFL_NB.AGE--Y25T29", + "ilo/EMP_PIFL_NB.AGE--Y25T34", + "ilo/EMP_PIFL_NB.AGE--Y25T54", + "ilo/EMP_PIFL_NB.AGE--Y_GE25", + "ilo/EMP_PIFL_NB.AGE--Y30T34", + "ilo/EMP_PIFL_NB.AGE--Y35T39", + "ilo/EMP_PIFL_NB.AGE--Y35T44", + "ilo/EMP_PIFL_NB.AGE--Y40T44", + "ilo/EMP_PIFL_NB.AGE--Y45T49", + "ilo/EMP_PIFL_NB.AGE--Y45T54", + "ilo/EMP_PIFL_NB.AGE--Y50T54", + "ilo/EMP_PIFL_NB.AGE--Y55T59", + "ilo/EMP_PIFL_NB.AGE--Y55T64", + "ilo/EMP_PIFL_NB.AGE--Y60T64", + "ilo/EMP_PIFL_NB.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.003" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.004" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.005" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.006" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.007" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.008" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.009" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.010" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.011" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.012" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.013" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.014" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.015" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.016" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.017" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.018" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.019" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.020" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.021" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.022" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.023" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.027" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.028" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.029" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.030" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.031" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.032" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.033" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.034" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.035" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.036" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.037" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.038" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.045" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.046" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.047" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.048" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.049" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.050" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.054" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.055" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.056" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.060" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.061" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.062" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.063" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.064" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.065" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.066" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.067" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.068" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.069" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.070" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.071" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.075" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.076" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.077" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.081" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.082" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.083" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.084" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.085" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.086" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.087" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.088" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.089" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.099" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.100" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1000" + ], + "name": [ + "Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1002" + ], + "name": [ + "Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1003" + ], + "name": [ + "Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1004" + ], + "name": [ + "Employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1005" + ], + "name": [ + "Employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1006" + ], + "name": [ + "Employment outside the formal sector (Female) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1007" + ], + "name": [ + "Employment outside the formal sector (Male) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1008" + ], + "name": [ + "Employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1009" + ], + "name": [ + "Employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.101" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1012" + ], + "name": [ + "Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1013" + ], + "name": [ + "Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1014" + ], + "name": [ + "Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1015" + ], + "name": [ + "Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.102" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1020" + ], + "name": [ + "Employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1021" + ], + "name": [ + "Employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1022" + ], + "name": [ + "Employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1023" + ], + "name": [ + "Employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1024" + ], + "name": [ + "Employment outside the formal sector (Female) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1025" + ], + "name": [ + "Employment outside the formal sector (Male) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.103" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1035" + ], + "name": [ + "Employment outside the formal sector (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1036" + ], + "name": [ + "Employment outside the formal sector (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1037" + ], + "name": [ + "Employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1038" + ], + "name": [ + "Employment outside the formal sector (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1039" + ], + "name": [ + "Employment outside the formal sector (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.104" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1040" + ], + "name": [ + "Employment outside the formal sector (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1041" + ], + "name": [ + "Employment outside the formal sector (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1043" + ], + "name": [ + "Employment outside the formal sector (Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1044" + ], + "name": [ + "Employment outside the formal sector (Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1045" + ], + "name": [ + "Employment outside the formal sector (Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1046" + ], + "name": [ + "Employment outside the formal sector (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1047" + ], + "name": [ + "Employment outside the formal sector (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1049" + ], + "name": [ + "Employment outside the formal sector (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1050" + ], + "name": [ + "Employment outside the formal sector (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1072" + ], + "name": [ + "Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1073" + ], + "name": [ + "Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1074" + ], + "name": [ + "Employment outside the formal sector (Female, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1075" + ], + "name": [ + "Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1076" + ], + "name": [ + "Employment outside the formal sector (Female, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1077" + ], + "name": [ + "Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1078" + ], + "name": [ + "Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1079" + ], + "name": [ + "Employment outside the formal sector (Female, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1080" + ], + "name": [ + "Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1081" + ], + "name": [ + "Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1082" + ], + "name": [ + "Employment outside the formal sector (Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1083" + ], + "name": [ + "Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1084" + ], + "name": [ + "Employment outside the formal sector (Male, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1085" + ], + "name": [ + "Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1086" + ], + "name": [ + "Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1087" + ], + "name": [ + "Employment outside the formal sector (Male, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1088" + ], + "name": [ + "Employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1089" + ], + "name": [ + "Employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1090" + ], + "name": [ + "Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1091" + ], + "name": [ + "Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1092" + ], + "name": [ + "Employment outside the formal sector (Female, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1093" + ], + "name": [ + "Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1094" + ], + "name": [ + "Employment outside the formal sector (Female, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1095" + ], + "name": [ + "Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1096" + ], + "name": [ + "Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1097" + ], + "name": [ + "Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1098" + ], + "name": [ + "Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1099" + ], + "name": [ + "Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1100" + ], + "name": [ + "Employment outside the formal sector (Male, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1101" + ], + "name": [ + "Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1102" + ], + "name": [ + "Employment outside the formal sector (Male, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1103" + ], + "name": [ + "Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1104" + ], + "name": [ + "Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1105" + ], + "name": [ + "Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1106" + ], + "name": [ + "Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1107" + ], + "name": [ + "Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1108" + ], + "name": [ + "Employment outside the formal sector (Female, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1109" + ], + "name": [ + "Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.111" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1110" + ], + "name": [ + "Employment outside the formal sector (Female, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1111" + ], + "name": [ + "Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1112" + ], + "name": [ + "Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1113" + ], + "name": [ + "Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1114" + ], + "name": [ + "Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1115" + ], + "name": [ + "Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1116" + ], + "name": [ + "Employment outside the formal sector (Male, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1117" + ], + "name": [ + "Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1118" + ], + "name": [ + "Employment outside the formal sector (Male, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1119" + ], + "name": [ + "Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.112" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1120" + ], + "name": [ + "Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1121" + ], + "name": [ + "Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1126" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1127" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1128" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1129" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.113" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1130" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1131" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1132" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1133" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1134" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1135" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1136" + ], + "name": [ + "Employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1137" + ], + "name": [ + "Employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1138" + ], + "name": [ + "Employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1139" + ], + "name": [ + "Employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.114" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1140" + ], + "name": [ + "Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1141" + ], + "name": [ + "Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1142" + ], + "name": [ + "Employment outside the formal sector (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1143" + ], + "name": [ + "Employment outside the formal sector (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1144" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1145" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.115" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1150" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1151" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1152" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1153" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1154" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1155" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1156" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1157" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1158" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1159" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.116" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1161" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1162" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1164" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1165" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1166" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1167" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1168" + ], + "name": [ + "Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1169" + ], + "name": [ + "Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.117" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1170" + ], + "name": [ + "Employment outside the formal sector by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1171" + ], + "name": [ + "Employment outside the formal sector by Employment status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1172" + ], + "name": [ + "Employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1173" + ], + "name": [ + "Employment outside the formal sector (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1174" + ], + "name": [ + "Employment outside the formal sector (Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1175" + ], + "name": [ + "Employment outside the formal sector (Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1176" + ], + "name": [ + "Employment outside the formal sector (Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1177" + ], + "name": [ + "Employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1178" + ], + "name": [ + "Employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1179" + ], + "name": [ + "Employment outside the formal sector (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.118" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1180" + ], + "name": [ + "Employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1181" + ], + "name": [ + "Employment outside the formal sector by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--R", + "ilo/EMP_PIFL_NB.URBANISATION--U", + "ilo/EMP_PIFL_NB.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1182" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1183" + ], + "name": [ + "Employment outside the formal sector (Rural) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1184" + ], + "name": [ + "Employment outside the formal sector (Urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1185" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1186" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1187" + ], + "name": [ + "Employment outside the formal sector (Rural, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1188" + ], + "name": [ + "Employment outside the formal sector (Rural, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1189" + ], + "name": [ + "Employment outside the formal sector (Urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.119" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1190" + ], + "name": [ + "Employment outside the formal sector (Urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1193" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1194" + ], + "name": [ + "Employment outside the formal sector (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1195" + ], + "name": [ + "Employment outside the formal sector (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1196" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1197" + ], + "name": [ + "Employment outside the formal sector (Rural) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1198" + ], + "name": [ + "Employment outside the formal sector (Urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1199" + ], + "name": [ + "Employment outside the formal sector (Rural) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.120" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1200" + ], + "name": [ + "Employment outside the formal sector (Urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1202" + ], + "name": [ + "Employment outside the formal sector (Rural) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1203" + ], + "name": [ + "Employment outside the formal sector (Urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1204" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1205" + ], + "name": [ + "Employment outside the formal sector (Rural, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1206" + ], + "name": [ + "Employment outside the formal sector (Rural, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1207" + ], + "name": [ + "Employment outside the formal sector (Rural, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1208" + ], + "name": [ + "Employment outside the formal sector (Urban, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1209" + ], + "name": [ + "Employment outside the formal sector (Urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.121" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1210" + ], + "name": [ + "Employment outside the formal sector (Urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1211" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1212" + ], + "name": [ + "Employment outside the formal sector (Rural) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1213" + ], + "name": [ + "Employment outside the formal sector (Urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1214" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1215" + ], + "name": [ + "Employment outside the formal sector (Rural) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1216" + ], + "name": [ + "Employment outside the formal sector (Urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1217" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1218" + ], + "name": [ + "Employment outside the formal sector (Rural) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1219" + ], + "name": [ + "Employment outside the formal sector (Urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.122" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1222" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1223" + ], + "name": [ + "Employment outside the formal sector (Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1224" + ], + "name": [ + "Employment outside the formal sector (Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1230" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1231" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1232" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1233" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1234" + ], + "name": [ + "Employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1235" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1236" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1237" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1238" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1239" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1240" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1241" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1242" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1243" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1244" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1246" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1247" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1248" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1249" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1250" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1251" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1253" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1254" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1255" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1256" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1257" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1258" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1259" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1260" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1261" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1262" + ], + "name": [ + "Employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1263" + ], + "name": [ + "Employment outside the formal sector (Rural, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1264" + ], + "name": [ + "Employment outside the formal sector (Rural, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1266" + ], + "name": [ + "Employment outside the formal sector (Urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.1267" + ], + "name": [ + "Employment outside the formal sector (Urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.129" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.130" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.131" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.132" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.133" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.134" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.138" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.139" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.140" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.141" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.142" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.143" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.144" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.145" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.146" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.159" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.160" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.161" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.162" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.163" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.164" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.165" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.166" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.167" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.168" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.169" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.170" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.171" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.172" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.173" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.174" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.175" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.176" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.177" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.178" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.179" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.183" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.184" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.185" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.186" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.187" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.188" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.195" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.196" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.197" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.198" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.199" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.200" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.201" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.202" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.203" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.223" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.224" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.225" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.226" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.227" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.228" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.229" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.230" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.231" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.232" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.233" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.234" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.235" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.236" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.237" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.238" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.239" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.240" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.241" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.242" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.243" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.244" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.245" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.246" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.247" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.248" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.249" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.250" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.251" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.252" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.253" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.254" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.255" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.256" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.257" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.258" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.259" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.260" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.261" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.262" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.263" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.264" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.265" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.266" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.267" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.268" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.269" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.270" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.271" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.272" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.273" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.274" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.275" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.276" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.277" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.278" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.279" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.280" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.281" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.282" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.283" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.284" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.285" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.286" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.287" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.288" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.289" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.290" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.291" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.292" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.293" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.294" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.295" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.296" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.297" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.298" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.299" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.300" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.301" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.302" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.303" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.304" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.305" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.306" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.307" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.308" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.309" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.310" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.311" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.312" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.313" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.314" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.315" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.316" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.317" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.318" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.319" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.320" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.321" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.322" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.323" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.324" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.325" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.326" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.327" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.328" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.329" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.330" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.331" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.332" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.333" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.334" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.335" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.336" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.337" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.338" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.339" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.340" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.341" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.342" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.343" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.344" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.345" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.346" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.347" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.348" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.349" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.350" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.351" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.352" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.353" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.354" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.355" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.356" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.357" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.358" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.359" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.360" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.361" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.362" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.376" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.377" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.378" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.379" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.380" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.381" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.382" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.383" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.384" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.385" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.386" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.387" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.388" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.389" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.390" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.391" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.392" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.393" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.394" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.395" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.396" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.397" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.398" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.399" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.400" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.401" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.402" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.403" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.404" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.405" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.412" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.413" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.414" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.415" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.416" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.417" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.418" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.419" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.420" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.421" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.422" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.423" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.424" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.425" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.426" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.427" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.428" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.429" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.430" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.431" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.432" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.433" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.434" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.435" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.436" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.437" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.438" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.439" + ], + "name": [ + "Employment outside the formal sector (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T19__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y15T19__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.440" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.441" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.442" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.443" + ], + "name": [ + "Employment outside the formal sector (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y20T24__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y20T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.444" + ], + "name": [ + "Employment outside the formal sector (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T29__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y25T29__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.445" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.446" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.447" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.448" + ], + "name": [ + "Employment outside the formal sector (30 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.449" + ], + "name": [ + "Employment outside the formal sector (35 to 39 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.450" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.451" + ], + "name": [ + "Employment outside the formal sector (40 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--M", + "ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.452" + ], + "name": [ + "Employment outside the formal sector (45 to 49 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T49__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y45T49__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.453" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.454" + ], + "name": [ + "Employment outside the formal sector (50 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y50T54__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y50T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.455" + ], + "name": [ + "Employment outside the formal sector (55 to 59 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T59__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y55T59__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.456" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.457" + ], + "name": [ + "Employment outside the formal sector (60 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y60T64__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y60T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.458" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.482" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.483" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.484" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.485" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.486" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.487" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.488" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.489" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.490" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.492" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.493" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.494" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.495" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.496" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.497" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.498" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.499" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.500" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.501" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.502" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.503" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.504" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.505" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.506" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.507" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.508" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.509" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.510" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.511" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.512" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.513" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.514" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.515" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.516" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.517" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.518" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.519" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.520" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.521" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.522" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.523" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.524" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.525" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.526" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.527" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.528" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.529" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.530" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.531" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.532" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.534" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.535" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.536" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.537" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.539" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.540" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.542" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.543" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.544" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.545" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.546" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.547" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.548" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.549" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.550" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.551" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.552" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.553" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.554" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.555" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.556" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.557" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.558" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.560" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.561" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.562" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.563" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.564" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.565" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.566" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.567" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.569" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.570" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.571" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.572" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.573" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.574" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.575" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.576" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.577" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.578" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.579" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.580" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.582" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.583" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.584" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.585" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.587" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.588" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.590" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.591" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.592" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.593" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.594" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.595" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.596" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.597" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.598" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.599" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.600" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.601" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.602" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.603" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.605" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.606" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.608" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.609" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.611" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.612" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.614" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.615" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.617" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.618" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.619" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.620" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.621" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.622" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.643" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.644" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.645" + ], + "name": [ + "Employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.646" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.647" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.648" + ], + "name": [ + "Employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.649" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.650" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.651" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.652" + ], + "name": [ + "Employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.653" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.654" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.655" + ], + "name": [ + "Employment outside the formal sector (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.656" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.657" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.658" + ], + "name": [ + "Employment outside the formal sector (15 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.659" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.660" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.661" + ], + "name": [ + "Employment outside the formal sector (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.662" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.663" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.664" + ], + "name": [ + "Employment outside the formal sector (25 to 34 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.665" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.666" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.667" + ], + "name": [ + "Employment outside the formal sector (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.668" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.669" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.670" + ], + "name": [ + "Employment outside the formal sector (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.671" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.672" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.673" + ], + "name": [ + "Employment outside the formal sector (35 to 44 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.674" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.675" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.676" + ], + "name": [ + "Employment outside the formal sector (45 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.677" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.678" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.679" + ], + "name": [ + "Employment outside the formal sector (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.680" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.681" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.682" + ], + "name": [ + "Employment outside the formal sector (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.683" + ], + "name": [ + "Employment outside the formal sector by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.684" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.685" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.686" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.687" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.688" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.689" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.690" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.691" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.692" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.693" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.694" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.695" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.696" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.697" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.698" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.699" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.702" + ], + "name": [ + "Employment outside the formal sector (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.703" + ], + "name": [ + "Employment outside the formal sector (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.704" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.705" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.706" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.707" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.708" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.709" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.710" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.711" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.713" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.714" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.715" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.716" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.717" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.718" + ], + "name": [ + "Employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.719" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.720" + ], + "name": [ + "Employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.727" + ], + "name": [ + "Employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.728" + ], + "name": [ + "Employment outside the formal sector in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.729" + ], + "name": [ + "Employment outside the formal sector in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.730" + ], + "name": [ + "Employment outside the formal sector in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.733" + ], + "name": [ + "Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.734" + ], + "name": [ + "Employment outside the formal sector in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.736" + ], + "name": [ + "Employment outside the formal sector in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.738" + ], + "name": [ + "Employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.739" + ], + "name": [ + "Employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.740" + ], + "name": [ + "Employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.741" + ], + "name": [ + "Employment outside the formal sector in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.743" + ], + "name": [ + "Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.745" + ], + "name": [ + "Employment outside the formal sector in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.746" + ], + "name": [ + "Employment outside the formal sector in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.747" + ], + "name": [ + "Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.751" + ], + "name": [ + "Employment outside the formal sector in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.752" + ], + "name": [ + "Employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.755" + ], + "name": [ + "Employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.756" + ], + "name": [ + "Employment outside the formal sector in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.757" + ], + "name": [ + "Employment outside the formal sector in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.758" + ], + "name": [ + "Employment outside the formal sector in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.761" + ], + "name": [ + "Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.762" + ], + "name": [ + "Employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.764" + ], + "name": [ + "Employment outside the formal sector in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.765" + ], + "name": [ + "Employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.766" + ], + "name": [ + "Employment outside the formal sector in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.771" + ], + "name": [ + "Employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.772" + ], + "name": [ + "Employment outside the formal sector in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.773" + ], + "name": [ + "Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.774" + ], + "name": [ + "Employment outside the formal sector in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.775" + ], + "name": [ + "Employment outside the formal sector in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.776" + ], + "name": [ + "Employment outside the formal sector in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.777" + ], + "name": [ + "Employment outside the formal sector in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.779" + ], + "name": [ + "Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.780" + ], + "name": [ + "Employment outside the formal sector in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.783" + ], + "name": [ + "Employment outside the formal sector in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.784" + ], + "name": [ + "Employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.785" + ], + "name": [ + "Employment outside the formal sector in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.790" + ], + "name": [ + "Employment outside the formal sector by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.791" + ], + "name": [ + "Employment outside the formal sector by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.792" + ], + "name": [ + "Employment outside the formal sector by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.793" + ], + "name": [ + "Employment outside the formal sector by Hours worked" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.HOUR_BANDS--H0", + "ilo/EMP_PIFL_NB.HOUR_BANDS--H1T14", + "ilo/EMP_PIFL_NB.HOUR_BANDS--H15T29", + "ilo/EMP_PIFL_NB.HOUR_BANDS--H30T34", + "ilo/EMP_PIFL_NB.HOUR_BANDS--H35T39", + "ilo/EMP_PIFL_NB.HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_NB.HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_NB.HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.794" + ], + "name": [ + "Employment outside the formal sector (01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H1T14", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.795" + ], + "name": [ + "Employment outside the formal sector (15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H15T29", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.796" + ], + "name": [ + "Employment outside the formal sector (30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H30T34", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.797" + ], + "name": [ + "Employment outside the formal sector (35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H35T39", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.798" + ], + "name": [ + "Employment outside the formal sector (40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_NB.SEX--O__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.799" + ], + "name": [ + "Employment outside the formal sector (49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_NB.SEX--O__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.800" + ], + "name": [ + "Employment outside the formal sector (No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H0", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.801" + ], + "name": [ + "Employment outside the formal sector (No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--_X", + "ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.802" + ], + "name": [ + "Employment outside the formal sector by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.803" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.804" + ], + "name": [ + "Employment outside the formal sector (Private sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.805" + ], + "name": [ + "Employment outside the formal sector (Public sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.806" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.807" + ], + "name": [ + "Employment outside the formal sector (Private sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.808" + ], + "name": [ + "Employment outside the formal sector (Public sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.809" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.810" + ], + "name": [ + "Employment outside the formal sector (Private sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.811" + ], + "name": [ + "Employment outside the formal sector (Public sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.815" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.816" + ], + "name": [ + "Employment outside the formal sector (Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.817" + ], + "name": [ + "Employment outside the formal sector (Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.818" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.819" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.820" + ], + "name": [ + "Employment outside the formal sector (Private sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.821" + ], + "name": [ + "Employment outside the formal sector (Private sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.822" + ], + "name": [ + "Employment outside the formal sector (Public sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.823" + ], + "name": [ + "Employment outside the formal sector (Public sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.824" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.825" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.826" + ], + "name": [ + "Employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.827" + ], + "name": [ + "Employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.828" + ], + "name": [ + "Employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.829" + ], + "name": [ + "Employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.830" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.831" + ], + "name": [ + "Employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.832" + ], + "name": [ + "Employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.833" + ], + "name": [ + "Employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.834" + ], + "name": [ + "Employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.835" + ], + "name": [ + "Employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.841" + ], + "name": [ + "Employment outside the formal sector by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.JOB_TIME--PART", + "ilo/EMP_PIFL_NB.JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.842" + ], + "name": [ + "Employment outside the formal sector (Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.843" + ], + "name": [ + "Employment outside the formal sector (Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.844" + ], + "name": [ + "Employment outside the formal sector (Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.845" + ], + "name": [ + "Employment outside the formal sector by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.846" + ], + "name": [ + "Employment outside the formal sector Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.847" + ], + "name": [ + "Employment outside the formal sector Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.857" + ], + "name": [ + "Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.858" + ], + "name": [ + "Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.859" + ], + "name": [ + "Employment outside the formal sector (Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.860" + ], + "name": [ + "Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.861" + ], + "name": [ + "Employment outside the formal sector (Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.862" + ], + "name": [ + "Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.863" + ], + "name": [ + "Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.864" + ], + "name": [ + "Employment outside the formal sector (Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.865" + ], + "name": [ + "Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.866" + ], + "name": [ + "Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.867" + ], + "name": [ + "Employment outside the formal sector (Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.868" + ], + "name": [ + "Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.869" + ], + "name": [ + "Employment outside the formal sector (Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.870" + ], + "name": [ + "Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.871" + ], + "name": [ + "Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.872" + ], + "name": [ + "Employment outside the formal sector (Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.873" + ], + "name": [ + "Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.874" + ], + "name": [ + "Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.875" + ], + "name": [ + "Employment outside the formal sector (Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.876" + ], + "name": [ + "Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.877" + ], + "name": [ + "Employment outside the formal sector (Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.878" + ], + "name": [ + "Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.879" + ], + "name": [ + "Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.880" + ], + "name": [ + "Employment outside the formal sector (Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.882" + ], + "name": [ + "Employment outside the formal sector by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.883" + ], + "name": [ + "Employment outside the formal sector by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.884" + ], + "name": [ + "Employment outside the formal sector by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.885" + ], + "name": [ + "Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.886" + ], + "name": [ + "Employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.887" + ], + "name": [ + "Employment outside the formal sector by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.888" + ], + "name": [ + "Employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.889" + ], + "name": [ + "Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.890" + ], + "name": [ + "Employment outside the formal sector by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.891" + ], + "name": [ + "Employment outside the formal sector by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.894" + ], + "name": [ + "Employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.895" + ], + "name": [ + "Employment outside the formal sector by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.896" + ], + "name": [ + "Employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.897" + ], + "name": [ + "Employment outside the formal sector by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.898" + ], + "name": [ + "Employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.899" + ], + "name": [ + "Employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.900" + ], + "name": [ + "Employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.901" + ], + "name": [ + "Employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.902" + ], + "name": [ + "Employment outside the formal sector by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.903" + ], + "name": [ + "Employment outside the formal sector by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.SEX--F", + "ilo/EMP_PIFL_NB.SEX--M", + "ilo/EMP_PIFL_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.906" + ], + "name": [ + "Employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.907" + ], + "name": [ + "Employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.908" + ], + "name": [ + "Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.909" + ], + "name": [ + "Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.910" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.911" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.912" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.913" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.918" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.919" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.920" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.921" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.924" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.925" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.928" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.929" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.930" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.931" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.932" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.933" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.934" + ], + "name": [ + "Employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.935" + ], + "name": [ + "Employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.938" + ], + "name": [ + "Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.939" + ], + "name": [ + "Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.942" + ], + "name": [ + "Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.943" + ], + "name": [ + "Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.944" + ], + "name": [ + "Employment outside the formal sector (Female) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.945" + ], + "name": [ + "Employment outside the formal sector (Male) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.946" + ], + "name": [ + "Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.947" + ], + "name": [ + "Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.954" + ], + "name": [ + "Employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.955" + ], + "name": [ + "Employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.956" + ], + "name": [ + "Employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.957" + ], + "name": [ + "Employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.962" + ], + "name": [ + "Employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.963" + ], + "name": [ + "Employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.965" + ], + "name": [ + "Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.966" + ], + "name": [ + "Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.967" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.968" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.969" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.970" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.975" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.976" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.977" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.978" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.981" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.982" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.983" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.984" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.985" + ], + "name": [ + "Employment outside the formal sector (Female) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.986" + ], + "name": [ + "Employment outside the formal sector (Male) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.995" + ], + "name": [ + "Employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.996" + ], + "name": [ + "Employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.997" + ], + "name": [ + "Employment outside the formal sector (Female) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.998" + ], + "name": [ + "Employment outside the formal sector (Male) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLNB.999" + ], + "name": [ + "Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.002" + ], + "name": [ + "Share of employment outside the formal sector by Age group" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T19", + "ilo/EMP_PIFL_RT.AGE--Y15T24", + "ilo/EMP_PIFL_RT.AGE--Y_GE15", + "ilo/EMP_PIFL_RT.AGE--Y20T24", + "ilo/EMP_PIFL_RT.AGE--Y25T29", + "ilo/EMP_PIFL_RT.AGE--Y25T34", + "ilo/EMP_PIFL_RT.AGE--Y25T54", + "ilo/EMP_PIFL_RT.AGE--Y_GE25", + "ilo/EMP_PIFL_RT.AGE--Y30T34", + "ilo/EMP_PIFL_RT.AGE--Y35T39", + "ilo/EMP_PIFL_RT.AGE--Y35T44", + "ilo/EMP_PIFL_RT.AGE--Y40T44", + "ilo/EMP_PIFL_RT.AGE--Y45T49", + "ilo/EMP_PIFL_RT.AGE--Y45T54", + "ilo/EMP_PIFL_RT.AGE--Y50T54", + "ilo/EMP_PIFL_RT.AGE--Y55T59", + "ilo/EMP_PIFL_RT.AGE--Y55T64", + "ilo/EMP_PIFL_RT.AGE--Y60T64", + "ilo/EMP_PIFL_RT.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.003" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.004" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.005" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.006" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.007" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.008" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.009" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.010" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.011" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.012" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.013" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.014" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.015" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.016" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.017" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.018" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.019" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.020" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.024" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.025" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.026" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.027" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.028" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.029" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.030" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.031" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.032" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.033" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.034" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.035" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.042" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.043" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.044" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.045" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.046" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.047" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.051" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.052" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.053" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.057" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.058" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.059" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.060" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.061" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.062" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.063" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.064" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.065" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.066" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.067" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.068" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.072" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.073" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.074" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.078" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.079" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.080" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.081" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.082" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.083" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.084" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.085" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.086" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.096" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.097" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.098" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.099" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.100" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1000" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1001" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1003" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1004" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1005" + ], + "name": [ + "Share of employment outside the formal sector (Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1006" + ], + "name": [ + "Share of employment outside the formal sector (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1007" + ], + "name": [ + "Share of employment outside the formal sector (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1009" + ], + "name": [ + "Share of employment outside the formal sector (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.101" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1010" + ], + "name": [ + "Share of employment outside the formal sector (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1032" + ], + "name": [ + "Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1033" + ], + "name": [ + "Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1034" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1035" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1036" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1037" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1038" + ], + "name": [ + "Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1039" + ], + "name": [ + "Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1040" + ], + "name": [ + "Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1041" + ], + "name": [ + "Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1042" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1043" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1044" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1045" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1046" + ], + "name": [ + "Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1047" + ], + "name": [ + "Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1048" + ], + "name": [ + "Share of employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1049" + ], + "name": [ + "Share of employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1050" + ], + "name": [ + "Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1051" + ], + "name": [ + "Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1052" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1053" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1054" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1055" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1056" + ], + "name": [ + "Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1057" + ], + "name": [ + "Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1058" + ], + "name": [ + "Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1059" + ], + "name": [ + "Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1060" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1061" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1062" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1063" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1064" + ], + "name": [ + "Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1065" + ], + "name": [ + "Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1066" + ], + "name": [ + "Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1067" + ], + "name": [ + "Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1068" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1069" + ], + "name": [ + "Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1070" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1071" + ], + "name": [ + "Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1072" + ], + "name": [ + "Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1073" + ], + "name": [ + "Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1074" + ], + "name": [ + "Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1075" + ], + "name": [ + "Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1076" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1077" + ], + "name": [ + "Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1078" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1079" + ], + "name": [ + "Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.108" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1080" + ], + "name": [ + "Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1081" + ], + "name": [ + "Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1086" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1087" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1088" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1089" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.109" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1090" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1091" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1092" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1093" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1094" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1095" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1096" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1097" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1098" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1099" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.110" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1100" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1101" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1102" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1103" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1104" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1105" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.111" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1110" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1111" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1112" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1113" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1114" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1115" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1116" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1117" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1118" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1119" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.112" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1121" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1122" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1124" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1125" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1126" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1127" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1128" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1129" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.113" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1130" + ], + "name": [ + "Share of employment outside the formal sector by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1131" + ], + "name": [ + "Share of employment outside the formal sector by Employment status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1132" + ], + "name": [ + "Share of employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1133" + ], + "name": [ + "Share of employment outside the formal sector (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1134" + ], + "name": [ + "Share of employment outside the formal sector (Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1135" + ], + "name": [ + "Share of employment outside the formal sector (Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1136" + ], + "name": [ + "Share of employment outside the formal sector (Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--_X", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1137" + ], + "name": [ + "Share of employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1138" + ], + "name": [ + "Share of employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1139" + ], + "name": [ + "Share of employment outside the formal sector (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.114" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1140" + ], + "name": [ + "Share of employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1141" + ], + "name": [ + "Share of employment outside the formal sector by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--R", + "ilo/EMP_PIFL_RT.URBANISATION--U", + "ilo/EMP_PIFL_RT.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1142" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1143" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1144" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1145" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1146" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1147" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1148" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1149" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.115" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1150" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1153" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1154" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1155" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1156" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1157" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1158" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1159" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.116" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1160" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1162" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1163" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1164" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1165" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1166" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1167" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1168" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1169" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.117" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1170" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1171" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1172" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1173" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1174" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1175" + ], + "name": [ + "Share of employment outside the formal sector (Rural) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1176" + ], + "name": [ + "Share of employment outside the formal sector (Urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1177" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1178" + ], + "name": [ + "Share of employment outside the formal sector (Rural) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1179" + ], + "name": [ + "Share of employment outside the formal sector (Urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.118" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1182" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1183" + ], + "name": [ + "Share of employment outside the formal sector (Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1184" + ], + "name": [ + "Share of employment outside the formal sector (Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.119" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1190" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1191" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1192" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1193" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1194" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1195" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1196" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1197" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1198" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1199" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1200" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1201" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1202" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1203" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1204" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1206" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1207" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1208" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1209" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1210" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1211" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1213" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1214" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1215" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1216" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1217" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1218" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1219" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1220" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1221" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1222" + ], + "name": [ + "Share of employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1223" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1224" + ], + "name": [ + "Share of employment outside the formal sector (Rural, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1226" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.1227" + ], + "name": [ + "Share of employment outside the formal sector (Urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.126" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.127" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.128" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.129" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.130" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.131" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.135" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.136" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.137" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.138" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.139" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.140" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.141" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.142" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.143" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.156" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.157" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.158" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.159" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.160" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.161" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.162" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.163" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.164" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.165" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.166" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.167" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.168" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.169" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.170" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.171" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.172" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.173" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.174" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.175" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.176" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.180" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.181" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.182" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.183" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.184" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.185" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.192" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.193" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.194" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.195" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.196" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.197" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.198" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.199" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.200" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.219" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.220" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.221" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.222" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.223" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.224" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.225" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.226" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.227" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.228" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.229" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.230" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.231" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.232" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.233" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.234" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.235" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.236" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.237" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.238" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.239" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.240" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.241" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.242" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.243" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.244" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.245" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.246" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.247" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.248" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.249" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.250" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.251" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.252" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.253" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.254" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.255" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.256" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.257" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.258" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.259" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.260" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.261" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.262" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.263" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.264" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.265" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.266" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.267" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.268" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.269" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.270" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.271" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.272" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.273" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.274" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.275" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.276" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.277" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.278" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.279" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.280" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.281" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.282" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.283" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.284" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.285" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.286" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.287" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.288" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.289" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.290" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.291" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.292" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.293" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.294" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.295" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.296" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.297" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.298" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.299" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.300" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.301" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.302" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.303" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.304" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.305" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.306" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.307" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.308" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.309" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.310" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.311" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.312" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.313" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.314" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.315" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.316" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.317" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.318" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.319" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.320" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.321" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.322" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.323" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.324" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.325" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.326" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.327" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.328" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.329" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.330" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.331" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.332" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.333" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.334" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.335" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.336" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.337" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.338" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.339" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.340" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.341" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.342" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.343" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.344" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.357" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.358" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.359" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.360" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.361" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.362" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.363" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.364" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.365" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.366" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.367" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.368" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.369" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.370" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.371" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.372" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.373" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.374" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.375" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.376" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.377" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.378" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.379" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.380" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.381" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.382" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.383" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.384" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.385" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.386" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.393" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.394" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.395" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.396" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.397" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.398" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.399" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.400" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.401" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.402" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.403" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.404" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.405" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.406" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.407" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.408" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.409" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.410" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.411" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.412" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.413" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.414" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.415" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.416" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.417" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.418" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.419" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.420" + ], + "name": [ + "Share of employment outside the formal sector (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T19__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y15T19__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.421" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.422" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.423" + ], + "name": [ + "Share of employment outside the formal sector (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y20T24__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y20T24__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.424" + ], + "name": [ + "Share of employment outside the formal sector (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T29__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y25T29__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.425" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.426" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.427" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.428" + ], + "name": [ + "Share of employment outside the formal sector (30 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.429" + ], + "name": [ + "Share of employment outside the formal sector (35 to 39 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.430" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.431" + ], + "name": [ + "Share of employment outside the formal sector (40 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--M", + "ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.432" + ], + "name": [ + "Share of employment outside the formal sector (45 to 49 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T49__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y45T49__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.433" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.434" + ], + "name": [ + "Share of employment outside the formal sector (50 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y50T54__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y50T54__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.435" + ], + "name": [ + "Share of employment outside the formal sector (55 to 59 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T59__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y55T59__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.436" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.437" + ], + "name": [ + "Share of employment outside the formal sector (60 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y60T64__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y60T64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.438" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.460" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.461" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.462" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.463" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.464" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.465" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.466" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.468" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.469" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.470" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.471" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.472" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.473" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.474" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.475" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.476" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.477" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.478" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.479" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.480" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.481" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.482" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.483" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.484" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.485" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.486" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.487" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.488" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.489" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.490" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.491" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.492" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.493" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.494" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.495" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.496" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.497" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.498" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.499" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.500" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.501" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.502" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.503" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.504" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.506" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.507" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.508" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.509" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.511" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.512" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.514" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.515" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.516" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.517" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.518" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.519" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.520" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.521" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.522" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.523" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.524" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.525" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.526" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.527" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.528" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.530" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.531" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.532" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.533" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.534" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.535" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.536" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.537" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.539" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.540" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.541" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.542" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.543" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.544" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.545" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.546" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.547" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.548" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.550" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.551" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.552" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.553" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.555" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.556" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.558" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.559" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.560" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.561" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.562" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.563" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.564" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.565" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.566" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.567" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.568" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.569" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.571" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.572" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.574" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.575" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.577" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.578" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.580" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.581" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.583" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.584" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.585" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.586" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.587" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.588" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.607" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.608" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.609" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.610" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.611" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.612" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.613" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.614" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.615" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.616" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.617" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.618" + ], + "name": [ + "Share of employment outside the formal sector (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.619" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.620" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.621" + ], + "name": [ + "Share of employment outside the formal sector (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.622" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.623" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.624" + ], + "name": [ + "Share of employment outside the formal sector (25 to 34 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.625" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.626" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.627" + ], + "name": [ + "Share of employment outside the formal sector (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.628" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.629" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.630" + ], + "name": [ + "Share of employment outside the formal sector (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.631" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.632" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.633" + ], + "name": [ + "Share of employment outside the formal sector (35 to 44 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.634" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.635" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.636" + ], + "name": [ + "Share of employment outside the formal sector (45 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.637" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.638" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.639" + ], + "name": [ + "Share of employment outside the formal sector (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.640" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.641" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--R", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.642" + ], + "name": [ + "Share of employment outside the formal sector (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--U", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.643" + ], + "name": [ + "Share of employment outside the formal sector by Disability status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.644" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.645" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.646" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.647" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.648" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.649" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.650" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.651" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.652" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.653" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.654" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.655" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.656" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.657" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.658" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.659" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.662" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.663" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD", + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.664" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.665" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.666" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.667" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.668" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.669" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.670" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.671" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.673" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.674" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.675" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.676" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.677" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.678" + ], + "name": [ + "Share of employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.679" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.680" + ], + "name": [ + "Share of employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.687" + ], + "name": [ + "Share of employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.688" + ], + "name": [ + "Share of employment outside the formal sector in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.689" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.690" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.693" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.694" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.696" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.698" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.699" + ], + "name": [ + "Share of employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.700" + ], + "name": [ + "Share of employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.701" + ], + "name": [ + "Share of employment outside the formal sector in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.703" + ], + "name": [ + "Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.705" + ], + "name": [ + "Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.706" + ], + "name": [ + "Share of employment outside the formal sector in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.707" + ], + "name": [ + "Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.711" + ], + "name": [ + "Share of employment outside the formal sector in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.712" + ], + "name": [ + "Share of employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.715" + ], + "name": [ + "Share of employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.716" + ], + "name": [ + "Share of employment outside the formal sector in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.717" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.718" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.721" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.722" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.724" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.725" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.726" + ], + "name": [ + "Share of employment outside the formal sector in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.731" + ], + "name": [ + "Share of employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.732" + ], + "name": [ + "Share of employment outside the formal sector in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.733" + ], + "name": [ + "Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.734" + ], + "name": [ + "Share of employment outside the formal sector in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.735" + ], + "name": [ + "Share of employment outside the formal sector in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.736" + ], + "name": [ + "Share of employment outside the formal sector in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.737" + ], + "name": [ + "Share of employment outside the formal sector in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.739" + ], + "name": [ + "Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.740" + ], + "name": [ + "Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.743" + ], + "name": [ + "Share of employment outside the formal sector in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.744" + ], + "name": [ + "Share of employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.745" + ], + "name": [ + "Share of employment outside the formal sector in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.750" + ], + "name": [ + "Share of employment outside the formal sector by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.751" + ], + "name": [ + "Share of employment outside the formal sector by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.752" + ], + "name": [ + "Share of employment outside the formal sector by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.753" + ], + "name": [ + "Share of employment outside the formal sector by Hours worked" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.HOUR_BANDS--H0", + "ilo/EMP_PIFL_RT.HOUR_BANDS--H1T14", + "ilo/EMP_PIFL_RT.HOUR_BANDS--H15T29", + "ilo/EMP_PIFL_RT.HOUR_BANDS--H30T34", + "ilo/EMP_PIFL_RT.HOUR_BANDS--H35T39", + "ilo/EMP_PIFL_RT.HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_RT.HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_RT.HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.754" + ], + "name": [ + "Share of employment outside the formal sector (01-14 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H1T14", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H1T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.755" + ], + "name": [ + "Share of employment outside the formal sector (15-29 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H15T29", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.756" + ], + "name": [ + "Share of employment outside the formal sector (30-34 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H30T34", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.757" + ], + "name": [ + "Share of employment outside the formal sector (35-39 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H35T39", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.758" + ], + "name": [ + "Share of employment outside the formal sector (40-48 hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H40T48", + "ilo/EMP_PIFL_RT.SEX--O__HOUR_BANDS--H40T48" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.759" + ], + "name": [ + "Share of employment outside the formal sector (49+ hours worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--HGE49", + "ilo/EMP_PIFL_RT.SEX--O__HOUR_BANDS--HGE49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.760" + ], + "name": [ + "Share of employment outside the formal sector (No hours actually worked) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H0", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.761" + ], + "name": [ + "Share of employment outside the formal sector (No. of hours worked not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--_X", + "ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.762" + ], + "name": [ + "Share of employment outside the formal sector by Institutional sector" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.763" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.764" + ], + "name": [ + "Share of employment outside the formal sector (Private sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.765" + ], + "name": [ + "Share of employment outside the formal sector (Public sector) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.766" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.767" + ], + "name": [ + "Share of employment outside the formal sector (Private sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.768" + ], + "name": [ + "Share of employment outside the formal sector (Public sector) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.769" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.770" + ], + "name": [ + "Share of employment outside the formal sector (Private sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.771" + ], + "name": [ + "Share of employment outside the formal sector (Public sector) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.775" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.776" + ], + "name": [ + "Share of employment outside the formal sector (Private sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.777" + ], + "name": [ + "Share of employment outside the formal sector (Public sector) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.778" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.779" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.780" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.781" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.782" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Female) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.783" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Male) by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.784" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.785" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.786" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.787" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.788" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.789" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.790" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.791" + ], + "name": [ + "Share of employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.792" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.793" + ], + "name": [ + "Share of employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.794" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.795" + ], + "name": [ + "Share of employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.801" + ], + "name": [ + "Share of employment outside the formal sector by Full / part-time job" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.JOB_TIME--PART", + "ilo/EMP_PIFL_RT.JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.802" + ], + "name": [ + "Share of employment outside the formal sector (Full-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--FULL", + "ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--FULL" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.803" + ], + "name": [ + "Share of employment outside the formal sector (Job time unknown) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--_X", + "ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.804" + ], + "name": [ + "Share of employment outside the formal sector (Part-time) by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--PART", + "ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--PART" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.805" + ], + "name": [ + "Share of employment outside the formal sector by Marital Status" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.806" + ], + "name": [ + "Share of employment outside the formal sector Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.807" + ], + "name": [ + "Share of employment outside the formal sector Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.817" + ], + "name": [ + "Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.818" + ], + "name": [ + "Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.819" + ], + "name": [ + "Share of employment outside the formal sector (Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.820" + ], + "name": [ + "Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.821" + ], + "name": [ + "Share of employment outside the formal sector (Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.822" + ], + "name": [ + "Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.823" + ], + "name": [ + "Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.824" + ], + "name": [ + "Share of employment outside the formal sector (Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.825" + ], + "name": [ + "Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.826" + ], + "name": [ + "Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.827" + ], + "name": [ + "Share of employment outside the formal sector (Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.828" + ], + "name": [ + "Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.829" + ], + "name": [ + "Share of employment outside the formal sector (Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.830" + ], + "name": [ + "Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.831" + ], + "name": [ + "Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.832" + ], + "name": [ + "Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.833" + ], + "name": [ + "Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.834" + ], + "name": [ + "Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.835" + ], + "name": [ + "Share of employment outside the formal sector (Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.836" + ], + "name": [ + "Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.837" + ], + "name": [ + "Share of employment outside the formal sector (Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.838" + ], + "name": [ + "Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.839" + ], + "name": [ + "Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.840" + ], + "name": [ + "Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.842" + ], + "name": [ + "Share of employment outside the formal sector by Categories of armed forces occupations (ISCO08_0)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.843" + ], + "name": [ + "Share of employment outside the formal sector by Categories of managerial occupations (ISCO08_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.844" + ], + "name": [ + "Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.845" + ], + "name": [ + "Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.846" + ], + "name": [ + "Share of employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.847" + ], + "name": [ + "Share of employment outside the formal sector by Service and sales workers' occupations (ISCO08_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.848" + ], + "name": [ + "Share of employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.849" + ], + "name": [ + "Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.850" + ], + "name": [ + "Share of employment outside the formal sector by Plant and machine operators' and assemblers' occupations (ISCO08_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.851" + ], + "name": [ + "Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.854" + ], + "name": [ + "Share of employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.855" + ], + "name": [ + "Share of employment outside the formal sector by Categories of professional occupations (ISCO88_2)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.856" + ], + "name": [ + "Share of employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.857" + ], + "name": [ + "Share of employment outside the formal sector by Categories of clerical occupations (ISCO88_4)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.858" + ], + "name": [ + "Share of employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.859" + ], + "name": [ + "Share of employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.860" + ], + "name": [ + "Share of employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.861" + ], + "name": [ + "Share of employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.862" + ], + "name": [ + "Share of employment outside the formal sector by Categories of elementary occupations (ISCO88_9)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.863" + ], + "name": [ + "Share of employment outside the formal sector by Sex" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F", + "ilo/EMP_PIFL_RT.SEX--M", + "ilo/EMP_PIFL_RT.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.866" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.867" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.868" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.869" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.870" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.871" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.872" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.873" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.878" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.879" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.880" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.881" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.884" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.885" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.888" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.889" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.890" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.891" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.892" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.893" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.894" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.895" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.898" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.899" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.902" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.903" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.904" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.905" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Financial intermediation (ISIC3_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.906" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.907" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.914" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.915" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.916" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.917" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.922" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.923" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.925" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.926" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.927" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.928" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.929" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.930" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.935" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.936" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.937" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.938" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.941" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.942" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.943" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.944" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.945" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.946" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Manufacture of transport equipment" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.955" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.956" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.957" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.958" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Construction (ISIC4_F)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.959" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.960" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.962" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.963" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.964" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.965" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.966" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.967" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.968" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.969" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.972" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.973" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.974" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.975" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.980" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.981" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.982" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.983" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.984" + ], + "name": [ + "Share of employment outside the formal sector (Female) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.985" + ], + "name": [ + "Share of employment outside the formal sector (Male) in Other service activities (ISIC4_S)" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.995" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.996" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.997" + ], + "name": [ + "Share of employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.998" + ], + "name": [ + "Share of employment outside the formal sector (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPPIFLRT.999" + ], + "name": [ + "Share of employment outside the formal sector (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.002" + ], + "name": [ + "Employment, statistical approach by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F", + "ilo/EMP_STAT_NB.SEX--M", + "ilo/EMP_STAT_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.003" + ], + "name": [ + "Employment, statistical approach by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.004" + ], + "name": [ + "Employment, statistical approach (Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.005" + ], + "name": [ + "Employment, statistical approach (Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.006" + ], + "name": [ + "Employment, statistical approach (Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.007" + ], + "name": [ + "Employment, statistical approach by Employment status" + ], + "memberList": [ + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.008" + ], + "name": [ + "Employment, statistical approach (Employees) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.009" + ], + "name": [ + "Employment, statistical approach (Self-employed) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.010" + ], + "name": [ + "Employment, statistical approach (Employees) by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.011" + ], + "name": [ + "Employment, statistical approach (Self-employed) by Job/Skill match" + ], + "memberList": [ + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.012" + ], + "name": [ + "Employment, statistical approach (Employees, Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.013" + ], + "name": [ + "Employment, statistical approach (Employees, Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.014" + ], + "name": [ + "Employment, statistical approach (Employees, Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.015" + ], + "name": [ + "Employment, statistical approach (Self-employed, Education matches job) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH", + "ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.016" + ], + "name": [ + "Employment, statistical approach (Self-employed, Overeducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER", + "ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOEMPSTATNB.017" + ], + "name": [ + "Employment, statistical approach (Self-employed, Undereducated) by Sex" + ], + "memberList": [ + "ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER", + "ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOGED2LFPNB.002" + ], + "name": [ + "Prime-age labour force of couple households with children under 6 (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/GED_2LFP_NB.SEX--F", + "ilo/GED_2LFP_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOGED2LFPRT.002" + ], + "name": [ + "Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/GED_2LFP_RT.SEX--F", + "ilo/GED_2LFP_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOHOW2EMPNB.002" + ], + "name": [ + "Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/HOW_2EMP_NB.SEX--F", + "ilo/HOW_2EMP_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOHOW2TDPRT.002" + ], + "name": [ + "Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/HOW_2TDP_RT.SEX--F", + "ilo/HOW_2TDP_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOHOW2TOTNB.002" + ], + "name": [ + "Total weekly hours worked of employed persons (ILO modelled estimates) by Sex" + ], + "memberList": [ + "ilo/HOW_2TOT_NB.SEX--F", + "ilo/HOW_2TOT_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.002" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.003" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.004" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.005" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.007" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Migratory status" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_DAYS_NB.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_DAYS_NB.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.008" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work (Migrants) by Sex" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.009" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.010" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJDAYSNB.011" + ], + "name": [ + "Days lost due to cases of occupational injury with temporary incapacity for work by Sex" + ], + "memberList": [ + "ilo/INJ_DAYS_NB.SEX--F", + "ilo/INJ_DAYS_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.002" + ], + "name": [ + "Cases of fatal occupational injury by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.003" + ], + "name": [ + "Cases of fatal occupational injury by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.004" + ], + "name": [ + "Cases of fatal occupational injury by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.005" + ], + "name": [ + "Cases of fatal occupational injury by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.007" + ], + "name": [ + "Cases of fatal occupational injury by Migratory status" + ], + "memberList": [ + "ilo/INJ_FATL_NB.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_FATL_NB.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_FATL_NB.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.008" + ], + "name": [ + "Cases of fatal occupational injury (Migrants) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.009" + ], + "name": [ + "Cases of fatal occupational injury (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.010" + ], + "name": [ + "Cases of fatal occupational injury (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLNB.011" + ], + "name": [ + "Cases of fatal occupational injury by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_NB.SEX--F", + "ilo/INJ_FATL_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.002" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.003" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.004" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.005" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.007" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers by Migratory status" + ], + "memberList": [ + "ilo/INJ_FATL_RT.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_FATL_RT.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_FATL_RT.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.008" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (Migrants) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.009" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.010" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJFATLRT.011" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers by Sex" + ], + "memberList": [ + "ilo/INJ_FATL_RT.SEX--F", + "ilo/INJ_FATL_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.002" + ], + "name": [ + "Cases of non-fatal occupational injury by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.003" + ], + "name": [ + "Cases of non-fatal occupational injury by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.004" + ], + "name": [ + "Cases of non-fatal occupational injury by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.005" + ], + "name": [ + "Cases of non-fatal occupational injury by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.007" + ], + "name": [ + "Cases of non-fatal occupational injury by Migratory status" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_NB.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_NB.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.008" + ], + "name": [ + "Cases of non-fatal occupational injury (Migrants) by Type of occupational injuries" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.009" + ], + "name": [ + "Cases of non-fatal occupational injury (Non-migrant) by Type of occupational injuries" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.010" + ], + "name": [ + "Cases of non-fatal occupational injury (Unknown migratory status) by Type of occupational injuries" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--_X", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.011" + ], + "name": [ + "Cases of non-fatal occupational injury (Migrants, Permanent incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.012" + ], + "name": [ + "Cases of non-fatal occupational injury (Migrants, Temporary incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.013" + ], + "name": [ + "Cases of non-fatal occupational injury (Non-migrant, Permanent incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.014" + ], + "name": [ + "Cases of non-fatal occupational injury (Non-migrant, Temporary incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.015" + ], + "name": [ + "Cases of non-fatal occupational injury (Unknown migratory status, Permanent incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.016" + ], + "name": [ + "Cases of non-fatal occupational injury (Unknown migratory status, Temporary incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.017" + ], + "name": [ + "Cases of non-fatal occupational injury (Migrants) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.018" + ], + "name": [ + "Cases of non-fatal occupational injury (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.019" + ], + "name": [ + "Cases of non-fatal occupational injury (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.020" + ], + "name": [ + "Cases of non-fatal occupational injury by Type of occupational injuries" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.021" + ], + "name": [ + "Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.022" + ], + "name": [ + "Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.023" + ], + "name": [ + "Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.024" + ], + "name": [ + "Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.025" + ], + "name": [ + "Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.026" + ], + "name": [ + "Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.027" + ], + "name": [ + "Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.028" + ], + "name": [ + "Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.031" + ], + "name": [ + "Cases of non-fatal occupational injury (Permanent incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.032" + ], + "name": [ + "Cases of non-fatal occupational injury (Temporary incapacity) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F", + "ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLNB.033" + ], + "name": [ + "Cases of non-fatal occupational injury by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_NB.SEX--F", + "ilo/INJ_NFTL_NB.SEX--M", + "ilo/INJ_NFTL_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.002" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers by Aggregate economic activities" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MANEL", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.003" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.004" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.005" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.007" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers by Migratory status" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_RT.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_RT.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.008" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (Migrants) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.009" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.010" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--_X", + "ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOINJNFTLRT.011" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers by Sex" + ], + "memberList": [ + "ilo/INJ_NFTL_RT.SEX--F", + "ilo/INJ_NFTL_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.001" + ], + "name": [ + "Mean nominal hourly labour cost per employee by Currency" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.CURRENCY--CUR_TYPE_USD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.002" + ], + "name": [ + "Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__CURRENCY--CUR_TYPE_PPP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.004" + ], + "name": [ + "Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__CURRENCY--CUR_TYPE_USD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.005" + ], + "name": [ + "Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_A__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_B__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_C__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_D__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_E__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_F__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_G__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_H__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_I__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_J__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_K__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_L__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_M__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_N__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_O__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_P__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__CURRENCY--CUR_TYPE_PPP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.007" + ], + "name": [ + "Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_A__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_B__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_C__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_D__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_E__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_F__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_G__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_H__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_I__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_J__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_K__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_L__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_M__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_N__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_O__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_P__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__CURRENCY--CUR_TYPE_USD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.008" + ], + "name": [ + "Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_A__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_B__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_C__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_D__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_E__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_F__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_G__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_H__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_I__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_J__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_K__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_L__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_M__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_N__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_O__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_P__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_R__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_S__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_U__CURRENCY--CUR_TYPE_PPP", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_X__CURRENCY--CUR_TYPE_PPP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAC4HRLNB.010" + ], + "name": [ + "Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_A__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_B__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_C__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_D__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_E__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_F__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_G__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_H__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_I__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_J__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_K__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_L__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_M__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_N__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_O__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_P__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_R__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_S__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_U__CURRENCY--CUR_TYPE_USD", + "ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_X__CURRENCY--CUR_TYPE_USD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAIINSPNB.002" + ], + "name": [ + "Number of labour inspectors by Sex" + ], + "memberList": [ + "ilo/LAI_INSP_NB.SEX--F", + "ilo/LAI_INSP_NB.SEX--M", + "ilo/LAI_INSP_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLAP2LIDRT.001" + ], + "name": [ + "Labour income distribution (ILO modelled estimates) by Decile" + ], + "memberList": [ + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_01", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_02", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_03", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_04", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_05", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_06", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_07", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_08", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_09", + "ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_10" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LU4NB.001" + ], + "name": [ + "Composite measure of labour underutilization (LU4) (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/LUU_2LU4_NB.AGE--Y15T24", + "ilo/LUU_2LU4_NB.AGE--Y_GE15", + "ilo/LUU_2LU4_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LU4NB.002" + ], + "name": [ + "Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_2LU4_NB.SEX--F__AGE--Y15T24", + "ilo/LUU_2LU4_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LU4NB.003" + ], + "name": [ + "Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_2LU4_NB.SEX--F__AGE--Y_GE15", + "ilo/LUU_2LU4_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LU4NB.004" + ], + "name": [ + "Composite measure of labour underutilization (LU4) (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_2LU4_NB.SEX--F__AGE--Y_GE25", + "ilo/LUU_2LU4_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LUXNB.002" + ], + "name": [ + "Jobs gap(ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/LUU_2LUX_NB.SEX--F", + "ilo/LUU_2LUX_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU2LUXRT.002" + ], + "name": [ + "Jobs gap rate(ILO modelled estimates, as of Nov. 2023) by Sex" + ], + "memberList": [ + "ilo/LUU_2LUX_RT.SEX--F", + "ilo/LUU_2LUX_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU2RT.001" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/LUU_5LU2_RT.AGE--Y15T24", + "ilo/LUU_5LU2_RT.AGE--Y_GE15", + "ilo/LUU_5LU2_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU2RT.002" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU2_RT.SEX--F__AGE--Y15T24", + "ilo/LUU_5LU2_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU2RT.003" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU2_RT.SEX--F__AGE--Y_GE15", + "ilo/LUU_5LU2_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU2RT.004" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU2_RT.SEX--F__AGE--Y_GE25", + "ilo/LUU_5LU2_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU3RT.001" + ], + "name": [ + "Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/LUU_5LU3_RT.AGE--Y15T24", + "ilo/LUU_5LU3_RT.AGE--Y_GE15", + "ilo/LUU_5LU3_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU3RT.002" + ], + "name": [ + "Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU3_RT.SEX--F__AGE--Y15T24", + "ilo/LUU_5LU3_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU3RT.003" + ], + "name": [ + "Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU3_RT.SEX--F__AGE--Y_GE15", + "ilo/LUU_5LU3_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU3RT.004" + ], + "name": [ + "Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU3_RT.SEX--F__AGE--Y_GE25", + "ilo/LUU_5LU3_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU4RT.001" + ], + "name": [ + "Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/LUU_5LU4_RT.AGE--Y15T24", + "ilo/LUU_5LU4_RT.AGE--Y_GE15", + "ilo/LUU_5LU4_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU4RT.002" + ], + "name": [ + "Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU4_RT.SEX--F__AGE--Y15T24", + "ilo/LUU_5LU4_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU4RT.003" + ], + "name": [ + "Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU4_RT.SEX--F__AGE--Y_GE15", + "ilo/LUU_5LU4_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUU5LU4RT.004" + ], + "name": [ + "Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_5LU4_RT.SEX--F__AGE--Y_GE25", + "ilo/LUU_5LU4_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.002" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Age group" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T24", + "ilo/LUU_XLU2_RT.AGE--Y15T64", + "ilo/LUU_XLU2_RT.AGE--Y_GE15", + "ilo/LUU_XLU2_RT.AGE--Y25T34", + "ilo/LUU_XLU2_RT.AGE--Y25T54", + "ilo/LUU_XLU2_RT.AGE--Y_GE25", + "ilo/LUU_XLU2_RT.AGE--Y35T44", + "ilo/LUU_XLU2_RT.AGE--Y45T54", + "ilo/LUU_XLU2_RT.AGE--Y55T64", + "ilo/LUU_XLU2_RT.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.003" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.004" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.005" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.006" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.007" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.008" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.009" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.010" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.011" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y15T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.012" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.013" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.014" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.015" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.016" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.024" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.025" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.026" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.027" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T34", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.028" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.029" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.030" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y35T44", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y35T44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.031" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y45T54", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y45T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.032" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.033" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.034" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.035" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.036" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.037" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.038" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.039" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.040" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.041" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.042" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.043" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.044" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.045" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.046" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.047" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.048" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.049" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.050" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.051" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.052" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.053" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.054" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.055" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.056" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.057" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.058" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.059" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.060" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.061" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.076" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.077" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.078" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.079" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.080" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.081" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.082" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--R", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--U", + "ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.083" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.084" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.085" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.086" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.087" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.088" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.089" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.090" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.091" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.092" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.093" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.094" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.095" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.096" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.097" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.098" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.099" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.100" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.101" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.102" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.103" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.104" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Disability status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.DISABILITY_STATUS--PD", + "ilo/LUU_XLU2_RT.DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.105" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__DISABILITY_STATUS--PD", + "ilo/LUU_XLU2_RT.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.106" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__DISABILITY_STATUS--PWD", + "ilo/LUU_XLU2_RT.SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.108" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.109" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_0", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_3", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_4", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_5", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_6", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_7", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_8", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_9", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.110" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_0", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_3", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_4", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_5", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.111" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.112" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_SGLE", + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_WID", + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.113" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_MRD", + "ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.116" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.117" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.118" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F", + "ilo/LUU_XLU2_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.121" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.122" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.123" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.124" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.125" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.126" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.127" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.128" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.129" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.130" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.131" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.132" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.136" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.137" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.139" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.140" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.141" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.URBANISATION--R", + "ilo/LUU_XLU2_RT.URBANISATION--U", + "ilo/LUU_XLU2_RT.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.142" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.143" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.144" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.145" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.146" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.URBANISATION--R__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.147" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.URBANISATION--U__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.151" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.152" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.153" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Sex" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.154" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.155" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.156" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.157" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.158" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.159" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.160" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.161" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.162" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.163" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.164" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLU2RT.165" + ], + "name": [ + "Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLUXNB.002" + ], + "name": [ + "Jobs gap by Sex" + ], + "memberList": [ + "ilo/LUU_XLUX_NB.SEX--F", + "ilo/LUU_XLUX_NB.SEX--M", + "ilo/LUU_XLUX_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOLUUXLUXRT.002" + ], + "name": [ + "Jobs gap rate by Sex" + ], + "memberList": [ + "ilo/LUU_XLUX_RT.SEX--F", + "ilo/LUU_XLUX_RT.SEX--M", + "ilo/LUU_XLUX_RT.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.002" + ], + "name": [ + "Youth working-age population (thousands) by Age group" + ], + "memberList": [ + "ilo/POP_3FOR_NB.AGE--Y15T19", + "ilo/POP_3FOR_NB.AGE--Y15T29", + "ilo/POP_3FOR_NB.AGE--Y20T24", + "ilo/POP_3FOR_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.003" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.004" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.005" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.006" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.007" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.008" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.009" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.010" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.011" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.012" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.013" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.014" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.015" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.016" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.017" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.018" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.019" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.020" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.021" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.022" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.023" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.024" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.025" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.026" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.027" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.028" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.029" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.030" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.031" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.032" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.033" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.034" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.035" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.036" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.037" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.038" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.039" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.040" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.041" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.042" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.043" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.044" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.045" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.046" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.047" + ], + "name": [ + "Youth working-age population (thousands) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.048" + ], + "name": [ + "Youth working-age population (thousands) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F", + "ilo/POP_3FOR_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.049" + ], + "name": [ + "Youth working-age population (thousands) (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.050" + ], + "name": [ + "Youth working-age population (thousands) (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.051" + ], + "name": [ + "Youth working-age population (thousands) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.052" + ], + "name": [ + "Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.053" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.054" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.055" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.056" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.057" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.058" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.059" + ], + "name": [ + "Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.060" + ], + "name": [ + "Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.061" + ], + "name": [ + "Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.062" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.063" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.064" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.065" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.066" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.067" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.068" + ], + "name": [ + "Youth working-age population (thousands) (Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.069" + ], + "name": [ + "Youth working-age population (thousands) (Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.070" + ], + "name": [ + "Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.071" + ], + "name": [ + "Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.072" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.073" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.074" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.075" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.076" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.077" + ], + "name": [ + "Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.078" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.079" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.080" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.081" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.082" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.083" + ], + "name": [ + "Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.084" + ], + "name": [ + "Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.085" + ], + "name": [ + "Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.086" + ], + "name": [ + "Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.087" + ], + "name": [ + "Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.088" + ], + "name": [ + "Youth working-age population (thousands) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3FOR_NB.URBANISATION--R", + "ilo/POP_3FOR_NB.URBANISATION--U", + "ilo/POP_3FOR_NB.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.089" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.090" + ], + "name": [ + "Youth working-age population (thousands) (Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.091" + ], + "name": [ + "Youth working-age population (thousands) (Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.092" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.093" + ], + "name": [ + "Youth working-age population (thousands) (Rural) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.094" + ], + "name": [ + "Youth working-age population (thousands) (Urban) by Form of transition to work" + ], + "memberList": [ + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U", + "ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.095" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.096" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.097" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.098" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.099" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.100" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.101" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.102" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.103" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.104" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.105" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.106" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.107" + ], + "name": [ + "Youth working-age population (thousands) (Rural, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.108" + ], + "name": [ + "Youth working-age population (thousands) (Rural, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.109" + ], + "name": [ + "Youth working-age population (thousands) (Rural, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.110" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.111" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.112" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Form of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.113" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.114" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Outside the labour force - school leavers with no intention of looking for work) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.115" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Outside the labour force - students) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.116" + ], + "name": [ + "Youth working-age population (thousands) (Urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.117" + ], + "name": [ + "Youth working-age population (thousands) (Urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.118" + ], + "name": [ + "Youth working-age population (thousands) (Urban, School leavers in stable employment) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.119" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Students in the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3FORNB.120" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Unemployed school leavers) by Sex" + ], + "memberList": [ + "ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U", + "ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.002" + ], + "name": [ + "Youth working-age population (thousands) by Age group" + ], + "memberList": [ + "ilo/POP_3STG_NB.AGE--Y15T19", + "ilo/POP_3STG_NB.AGE--Y15T29", + "ilo/POP_3STG_NB.AGE--Y20T24", + "ilo/POP_3STG_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.003" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T19", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.004" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T29", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.005" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y20T24", + "ilo/POP_3STG_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.006" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y25T29", + "ilo/POP_3STG_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.007" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.008" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.009" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.010" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.011" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.012" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.013" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.014" + ], + "name": [ + "Youth working-age population (thousands) (15 to 19 years old, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.015" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.016" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.017" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.018" + ], + "name": [ + "Youth working-age population (thousands) (15 to 29 years old, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.019" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.020" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X", + "ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.021" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.022" + ], + "name": [ + "Youth working-age population (thousands) (20 to 24 years old, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.023" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.024" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X", + "ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.025" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.026" + ], + "name": [ + "Youth working-age population (thousands) (25 to 29 years old, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.027" + ], + "name": [ + "Youth working-age population (thousands) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.028" + ], + "name": [ + "Youth working-age population (thousands) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F", + "ilo/POP_3STG_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.029" + ], + "name": [ + "Youth working-age population (thousands) (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.030" + ], + "name": [ + "Youth working-age population (thousands) (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.031" + ], + "name": [ + "Youth working-age population (thousands) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.032" + ], + "name": [ + "Youth working-age population (thousands) (In transition to work) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.033" + ], + "name": [ + "Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.034" + ], + "name": [ + "Youth working-age population (thousands) (Transited to work) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.035" + ], + "name": [ + "Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.036" + ], + "name": [ + "Youth working-age population (thousands) (In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.037" + ], + "name": [ + "Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.038" + ], + "name": [ + "Youth working-age population (thousands) (Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.039" + ], + "name": [ + "Youth working-age population (thousands) (Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.040" + ], + "name": [ + "Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.041" + ], + "name": [ + "Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.042" + ], + "name": [ + "Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.043" + ], + "name": [ + "Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.044" + ], + "name": [ + "Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.045" + ], + "name": [ + "Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.046" + ], + "name": [ + "Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.047" + ], + "name": [ + "Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.048" + ], + "name": [ + "Youth working-age population (thousands) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3STG_NB.URBANISATION--R", + "ilo/POP_3STG_NB.URBANISATION--U", + "ilo/POP_3STG_NB.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.049" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__URBANISATION--_X", + "ilo/POP_3STG_NB.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.050" + ], + "name": [ + "Youth working-age population (thousands) (Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__URBANISATION--R", + "ilo/POP_3STG_NB.SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.051" + ], + "name": [ + "Youth working-age population (thousands) (Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__URBANISATION--U", + "ilo/POP_3STG_NB.SEX--M__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.052" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.053" + ], + "name": [ + "Youth working-age population (thousands) (Rural) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.054" + ], + "name": [ + "Youth working-age population (thousands) (Urban) by Transition to work stage" + ], + "memberList": [ + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U", + "ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.055" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.056" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.057" + ], + "name": [ + "Youth working-age population (thousands) (Not classsified as rural or urban, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.058" + ], + "name": [ + "Youth working-age population (thousands) (Rural, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.059" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.060" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.061" + ], + "name": [ + "Youth working-age population (thousands) (Rural, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.062" + ], + "name": [ + "Youth working-age population (thousands) (Urban, In transition to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.063" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Stage of transition to work not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.064" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Transited to work) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3STGNB.065" + ], + "name": [ + "Youth working-age population (thousands) (Urban, Transition to work not yet started) by Sex" + ], + "memberList": [ + "ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U", + "ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.002" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities" + ], + "memberList": [ + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.003" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector" + ], + "memberList": [ + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.006" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_0", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_1", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_2", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_3", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_4", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_5", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_6", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_7", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_8", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_9", + "ilo/POP_3TED_NB.OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.007" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_0", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_1", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_2", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_3", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_4", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_5", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_6", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_7", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_8", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_9", + "ilo/POP_3TED_NB.OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.008" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/POP_3TED_NB.OCCUPATION--SKILL_L1", + "ilo/POP_3TED_NB.OCCUPATION--SKILL_L2", + "ilo/POP_3TED_NB.OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.009" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F", + "ilo/POP_3TED_NB.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.010" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.011" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.012" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.013" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.018" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_0", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_1", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_2", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_3", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_4", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_5", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_6", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_7", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_8", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_9", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.019" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_0", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_1", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_2", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_3", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_4", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_5", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_6", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_7", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_8", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_9", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.020" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_0", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_1", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_2", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_3", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_4", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_5", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_6", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_7", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_8", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_9", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.021" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_0", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_1", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_2", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_3", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_4", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_5", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_6", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_7", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_8", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_9", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.022" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L1", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L2", + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.023" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L1", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L2", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.024" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93" + ], + "memberList": [ + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.025" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status" + ], + "memberList": [ + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.026" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Contributing family workers (ICSE93_5)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.027" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.028" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees (ICSE93_1)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.029" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employers (ICSE93_2)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.030" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Emplyment status not elsewhere classified) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.031" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Members of producers' cooperatives (ICSE93_4)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.032" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Own-account workers (ICSE93_3)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.033" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Self-employed) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3TEDNB.034" + ], + "name": [ + "Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Workers not classifiable by status (ICSE93_6)) by Sex" + ], + "memberList": [ + "ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6", + "ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.001" + ], + "name": [ + "Youth working-age population by Age group" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19", + "ilo/POP_3WAP_NB.AGE--Y15T29", + "ilo/POP_3WAP_NB.AGE--Y20T24", + "ilo/POP_3WAP_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.002" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.003" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.004" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.005" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.006" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.007" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.009" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.010" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.011" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.012" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.013" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.014" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.015" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.016" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.017" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.018" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.019" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.020" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.021" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.022" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.023" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.024" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.025" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.026" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.027" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.028" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.029" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.030" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.031" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.032" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.033" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.034" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.035" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Labour market status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.036" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Labour market status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.037" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Labour market status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.038" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Labour market status" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.039" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Employed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--EMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.040" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Outside the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.041" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Unemployed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--UNE", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.042" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Employed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.043" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Outside the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.044" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Unemployed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--UNE", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.045" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Employed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--EMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.046" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Outside the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.047" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Unemployed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--UNE", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.048" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Employed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--EMP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--EMP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.049" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Outside the labour force) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.050" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Unemployed) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--UNE", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--UNE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.051" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.052" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.053" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.054" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.055" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.056" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.058" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.059" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.060" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.061" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.062" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.064" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.065" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.067" + ], + "name": [ + "Youth working-age population (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--R", + "ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--U", + "ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.068" + ], + "name": [ + "Youth working-age population (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--R", + "ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--U", + "ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.069" + ], + "name": [ + "Youth working-age population (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--R", + "ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--U", + "ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.070" + ], + "name": [ + "Youth working-age population (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--R", + "ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--U", + "ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.071" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.072" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.073" + ], + "name": [ + "Youth working-age population (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.074" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.075" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.076" + ], + "name": [ + "Youth working-age population (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.077" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.078" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.079" + ], + "name": [ + "Youth working-age population (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.080" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.081" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--R", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPOP3WAPNB.082" + ], + "name": [ + "Youth working-age population (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--U", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPSETPSENB.002" + ], + "name": [ + "Public sector employment by Total public sector" + ], + "memberList": [ + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GG", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGLOCAL", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGREGION", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGCENTRAL", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGSS", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PUBCORP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOPSETPSENB.003" + ], + "name": [ + "Public sector employment by Institutional sector" + ], + "memberList": [ + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PSE", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PRV", + "ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0111RT.001" + ], + "name": [ + "Proportion of population below the international poverty line (SDG indicator 1.1.1) by Age group" + ], + "memberList": [ + "ilo/SDG_0111_RT.AGE--Y15T24", + "ilo/SDG_0111_RT.AGE--Y_GE15", + "ilo/SDG_0111_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0111RT.002" + ], + "name": [ + "Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/SDG_0111_RT.SEX--F__AGE--Y15T24", + "ilo/SDG_0111_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0111RT.003" + ], + "name": [ + "Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/SDG_0111_RT.SEX--F__AGE--Y_GE15", + "ilo/SDG_0111_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0111RT.004" + ], + "name": [ + "Proportion of population below the international poverty line (SDG indicator 1.1.1) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/SDG_0111_RT.SEX--F__AGE--Y_GE25", + "ilo/SDG_0111_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.008" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) by Agriculture / Non-agriculture" + ], + "memberList": [ + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGNAG_AGR", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGNAG_NAG" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.009" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities" + ], + "memberList": [ + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.010" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic sector" + ], + "memberList": [ + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.012" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) by Sex" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--F", + "ilo/SDG_0831_RT.SEX--M", + "ilo/SDG_0831_RT.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.013" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Agriculture / Non-agriculture" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.014" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Agriculture / Non-agriculture" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.015" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Agriculture / Non-agriculture" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR", + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.016" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.017" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.018" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.019" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic sector" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.020" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic sector" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0831RT.021" + ], + "name": [ + "Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Economic sector" + ], + "memberList": [ + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_SER" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDG0861RT.002" + ], + "name": [ + "Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) by Sex" + ], + "memberList": [ + "ilo/SDG_0861_RT.SEX--F", + "ilo/SDG_0861_RT.SEX--M", + "ilo/SDG_0861_RT.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGF881RT.002" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status" + ], + "memberList": [ + "ilo/SDG_F881_RT.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/SDG_F881_RT.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/SDG_F881_RT.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGF881RT.003" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex" + ], + "memberList": [ + "ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGF881RT.004" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGF881RT.005" + ], + "name": [ + "Fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--_X", + "ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGF881RT.006" + ], + "name": [ + "Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex" + ], + "memberList": [ + "ilo/SDG_F881_RT.SEX--F", + "ilo/SDG_F881_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGN881RT.002" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status" + ], + "memberList": [ + "ilo/SDG_N881_RT.MIGRATORY_STATUS--MS_MIGRANT", + "ilo/SDG_N881_RT.MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/SDG_N881_RT.MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGN881RT.003" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex" + ], + "memberList": [ + "ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT", + "ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGN881RT.004" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex" + ], + "memberList": [ + "ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT", + "ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGN881RT.005" + ], + "name": [ + "Non-fatal occupational injuries per 100\\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex" + ], + "memberList": [ + "ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--_X", + "ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSDGN881RT.006" + ], + "name": [ + "Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex" + ], + "memberList": [ + "ilo/SDG_N881_RT.SEX--F", + "ilo/SDG_N881_RT.SEX--M" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSNB.002" + ], + "name": [ + "Days not worked due to strikes and lockouts by Aggregate economic activities" + ], + "memberList": [ + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSNB.003" + ], + "name": [ + "Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSNB.004" + ], + "name": [ + "Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSNB.005" + ], + "name": [ + "Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSRT.002" + ], + "name": [ + "Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSRT.003" + ], + "name": [ + "Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRDAYSRT.004" + ], + "name": [ + "Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRTSTRNB.002" + ], + "name": [ + "Strikes and lockouts by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRTSTRNB.003" + ], + "name": [ + "Strikes and lockouts by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRTSTRNB.004" + ], + "name": [ + "Strikes and lockouts by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRWORKNB.002" + ], + "name": [ + "Workers involved in strikes and lockouts by Aggregate economic activities" + ], + "memberList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRWORKNB.003" + ], + "name": [ + "Workers involved in strikes and lockouts by Economic sector" + ], + "memberList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRWORKNB.004" + ], + "name": [ + "Workers involved in strikes and lockouts by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRWORKNB.005" + ], + "name": [ + "Workers involved in strikes and lockouts by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOSTRWORKNB.006" + ], + "name": [ + "Workers involved in strikes and lockouts by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.001" + ], + "name": [ + "Youth time-related underemployment by Age group" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.AGE--Y15T19", + "ilo/TRU_3TRU_NB.AGE--Y15T29", + "ilo/TRU_3TRU_NB.AGE--Y20T24", + "ilo/TRU_3TRU_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.002" + ], + "name": [ + "Youth time-related underemployment (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.003" + ], + "name": [ + "Youth time-related underemployment (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.004" + ], + "name": [ + "Youth time-related underemployment (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.005" + ], + "name": [ + "Youth time-related underemployment (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.006" + ], + "name": [ + "Youth time-related underemployment (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--R", + "ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--U", + "ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.007" + ], + "name": [ + "Youth time-related underemployment (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--R", + "ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--U", + "ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.008" + ], + "name": [ + "Youth time-related underemployment (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--R", + "ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--U", + "ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.009" + ], + "name": [ + "Youth time-related underemployment (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--R", + "ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--U", + "ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.010" + ], + "name": [ + "Youth time-related underemployment (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.011" + ], + "name": [ + "Youth time-related underemployment (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.012" + ], + "name": [ + "Youth time-related underemployment (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.013" + ], + "name": [ + "Youth time-related underemployment (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.014" + ], + "name": [ + "Youth time-related underemployment (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.015" + ], + "name": [ + "Youth time-related underemployment (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.016" + ], + "name": [ + "Youth time-related underemployment (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.017" + ], + "name": [ + "Youth time-related underemployment (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.018" + ], + "name": [ + "Youth time-related underemployment (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.019" + ], + "name": [ + "Youth time-related underemployment (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.020" + ], + "name": [ + "Youth time-related underemployment (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU3TRUNB.021" + ], + "name": [ + "Youth time-related underemployment (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5EMPRT.001" + ], + "name": [ + "Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/TRU_5EMP_RT.AGE--Y15T24", + "ilo/TRU_5EMP_RT.AGE--Y_GE15", + "ilo/TRU_5EMP_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5EMPRT.002" + ], + "name": [ + "Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_5EMP_RT.SEX--F__AGE--Y15T24", + "ilo/TRU_5EMP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5EMPRT.003" + ], + "name": [ + "Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/TRU_5EMP_RT.SEX--F__AGE--Y_GE15", + "ilo/TRU_5EMP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5EMPRT.004" + ], + "name": [ + "Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/TRU_5EMP_RT.SEX--F__AGE--Y_GE25", + "ilo/TRU_5EMP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5TRUNB.001" + ], + "name": [ + "Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/TRU_5TRU_NB.AGE--Y15T24", + "ilo/TRU_5TRU_NB.AGE--Y_GE15", + "ilo/TRU_5TRU_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5TRUNB.002" + ], + "name": [ + "Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/TRU_5TRU_NB.SEX--F__AGE--Y15T24", + "ilo/TRU_5TRU_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5TRUNB.003" + ], + "name": [ + "Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/TRU_5TRU_NB.SEX--F__AGE--Y_GE15", + "ilo/TRU_5TRU_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOTRU5TRUNB.004" + ], + "name": [ + "Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/TRU_5TRU_NB.SEX--F__AGE--Y_GE25", + "ilo/TRU_5TRU_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.001" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.AGE--Y15T24", + "ilo/UNE_2EAP_RT.AGE--Y_GE15", + "ilo/UNE_2EAP_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.002" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.003" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.004" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.005" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.AGE--Y15T24__URBANISATION--R", + "ilo/UNE_2EAP_RT.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.006" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_2EAP_RT.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.007" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_2EAP_RT.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.008" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.009" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.010" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.011" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.012" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2EAPRT.013" + ], + "name": [ + "Unemployment rate (ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.001" + ], + "name": [ + "Unemployment (ILO modelled estimates) by Age group" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.AGE--Y15T24", + "ilo/UNE_2UNE_NB.AGE--Y_GE15", + "ilo/UNE_2UNE_NB.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.006" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.007" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.008" + ], + "name": [ + "Unemployment (ILO modelled estimates) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.009" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.AGE--Y15T24__URBANISATION--R", + "ilo/UNE_2UNE_NB.AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.010" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_2UNE_NB.AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.011" + ], + "name": [ + "Unemployment (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_2UNE_NB.AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.012" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.013" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.014" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.015" + ], + "name": [ + "Unemployment (ILO modelled estimates) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.016" + ], + "name": [ + "Unemployment (ILO modelled estimates) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE2UNENB.017" + ], + "name": [ + "Unemployment (ILO modelled estimates) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.001" + ], + "name": [ + "Youth unemployment rate by Age group" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T19", + "ilo/UNE_3EAP_RT.AGE--Y15T29", + "ilo/UNE_3EAP_RT.AGE--Y20T24", + "ilo/UNE_3EAP_RT.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.002" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.003" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.004" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.005" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.006" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.007" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.008" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.009" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.010" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.011" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.012" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.013" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.014" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.015" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.016" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.017" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.018" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.019" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.020" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.021" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.022" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.023" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.024" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.025" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.026" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.027" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.028" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.029" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.030" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.031" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.032" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.033" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.034" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.035" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.036" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.037" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.038" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.039" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.040" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.041" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.042" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.043" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.044" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.045" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.046" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.047" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.048" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.049" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.050" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.051" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.052" + ], + "name": [ + "Youth unemployment rate (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.053" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.054" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.055" + ], + "name": [ + "Youth unemployment rate (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.056" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.057" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.058" + ], + "name": [ + "Youth unemployment rate (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.059" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.060" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3EAPRT.061" + ], + "name": [ + "Youth unemployment rate (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.001" + ], + "name": [ + "Youth unemployment by Age group" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19", + "ilo/UNE_3UNE_NB.AGE--Y15T29", + "ilo/UNE_3UNE_NB.AGE--Y20T24", + "ilo/UNE_3UNE_NB.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.002" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.003" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.004" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.005" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.006" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.007" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.008" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.009" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.010" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.011" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.012" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.013" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.014" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Category of unemployed" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.015" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Category of unemployed" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.016" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Category of unemployed" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.017" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Category of unemployed" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.018" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Category of unemployment not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.019" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Unemployed previously employed) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.020" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Unemployed seeking their first job) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.021" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Category of unemployment not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.022" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Unemployed previously employed) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.023" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Unemployed seeking their first job) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.024" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Category of unemployment not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.025" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Unemployed previously employed) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.026" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Unemployed seeking their first job) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.027" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Category of unemployment not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.028" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Unemployed previously employed) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.029" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Unemployed seeking their first job) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.030" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M0T6", + "ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M0T11", + "ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M6T11", + "ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--MGE12", + "ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.031" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M0T6", + "ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M0T11", + "ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M6T11", + "ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--MGE12", + "ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.032" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M0T6", + "ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M0T11", + "ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M6T11", + "ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--MGE12", + "ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.033" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M0T6", + "ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M0T11", + "ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M6T11", + "ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--MGE12", + "ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.034" + ], + "name": [ + "Youth unemployment (15 to 19 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--MGE12", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.035" + ], + "name": [ + "Youth unemployment (15 to 19 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M6T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.036" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.037" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M0T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M0T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.038" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M0T6", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.039" + ], + "name": [ + "Youth unemployment (15 to 29 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--MGE12", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.040" + ], + "name": [ + "Youth unemployment (15 to 29 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M6T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.041" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.042" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M0T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M0T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.043" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M0T6", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.044" + ], + "name": [ + "Youth unemployment (20 to 24 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--MGE12", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.045" + ], + "name": [ + "Youth unemployment (20 to 24 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M6T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.046" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.047" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M0T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M0T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.048" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M0T6", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.049" + ], + "name": [ + "Youth unemployment (25 to 29 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--MGE12", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.050" + ], + "name": [ + "Youth unemployment (25 to 29 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M6T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.051" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.052" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M0T11", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M0T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.053" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M0T6", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.054" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.055" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.056" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.057" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.058" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.059" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.060" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.061" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.062" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.063" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.064" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.065" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.066" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.067" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.068" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.069" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.070" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.071" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.072" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.073" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.074" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.075" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.076" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.077" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.078" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.079" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.080" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.081" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.082" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.083" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.084" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.085" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.086" + ], + "name": [ + "Youth unemployment (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.087" + ], + "name": [ + "Youth unemployment (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.088" + ], + "name": [ + "Youth unemployment (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.089" + ], + "name": [ + "Youth unemployment (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.090" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.091" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.092" + ], + "name": [ + "Youth unemployment (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.093" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.094" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.095" + ], + "name": [ + "Youth unemployment (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.096" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.097" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.098" + ], + "name": [ + "Youth unemployment (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.099" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.100" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3UNENB.101" + ], + "name": [ + "Youth unemployment (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.001" + ], + "name": [ + "Youth unemployment-to-population ratio by Age group" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T19", + "ilo/UNE_3WAP_RT.AGE--Y15T29", + "ilo/UNE_3WAP_RT.AGE--Y20T24", + "ilo/UNE_3WAP_RT.AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.002" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.003" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.004" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.005" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.006" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.007" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.008" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.009" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.010" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.011" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.012" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.013" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.014" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.015" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.016" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.017" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.018" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.019" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.020" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.021" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old) by Educational attendance status" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.022" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.023" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.024" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.025" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.026" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.027" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.028" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.029" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.030" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.031" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.032" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.033" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Not attending education) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.034" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.035" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.036" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.037" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.038" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.039" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.040" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.041" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.042" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.043" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.044" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.045" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.046" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.047" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.048" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.049" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.050" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.051" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.052" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 19 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.053" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.054" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.055" + ], + "name": [ + "Youth unemployment-to-population ratio (15 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.056" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.057" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.058" + ], + "name": [ + "Youth unemployment-to-population ratio (20 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.059" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.060" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE3WAPRT.061" + ], + "name": [ + "Youth unemployment-to-population ratio (25 to 29 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U", + "ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE5EAPRT.001" + ], + "name": [ + "Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group" + ], + "memberList": [ + "ilo/UNE_5EAP_RT.AGE--Y15T24", + "ilo/UNE_5EAP_RT.AGE--Y15T64", + "ilo/UNE_5EAP_RT.AGE--Y_GE15", + "ilo/UNE_5EAP_RT.AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE5EAPRT.002" + ], + "name": [ + "Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_5EAP_RT.SEX--F__AGE--Y15T24", + "ilo/UNE_5EAP_RT.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE5EAPRT.003" + ], + "name": [ + "Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_5EAP_RT.SEX--F__AGE--Y15T64", + "ilo/UNE_5EAP_RT.SEX--M__AGE--Y15T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE5EAPRT.004" + ], + "name": [ + "Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_5EAP_RT.SEX--F__AGE--Y_GE15", + "ilo/UNE_5EAP_RT.SEX--M__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNE5EAPRT.005" + ], + "name": [ + "Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_5EAP_RT.SEX--F__AGE--Y_GE25", + "ilo/UNE_5EAP_RT.SEX--M__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.002" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Age group" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y0T14", + "ilo/UNE_TUNE_NB.AGE--Y5T9", + "ilo/UNE_TUNE_NB.AGE--Y10T14", + "ilo/UNE_TUNE_NB.AGE--Y15T19", + "ilo/UNE_TUNE_NB.AGE--Y15T24", + "ilo/UNE_TUNE_NB.AGE--Y15T64", + "ilo/UNE_TUNE_NB.AGE--Y_GE15", + "ilo/UNE_TUNE_NB.AGE--Y20T24", + "ilo/UNE_TUNE_NB.AGE--Y25T29", + "ilo/UNE_TUNE_NB.AGE--Y25T34", + "ilo/UNE_TUNE_NB.AGE--Y25T54", + "ilo/UNE_TUNE_NB.AGE--Y_GE25", + "ilo/UNE_TUNE_NB.AGE--Y30T34", + "ilo/UNE_TUNE_NB.AGE--Y35T39", + "ilo/UNE_TUNE_NB.AGE--Y35T44", + "ilo/UNE_TUNE_NB.AGE--Y40T44", + "ilo/UNE_TUNE_NB.AGE--Y45T49", + "ilo/UNE_TUNE_NB.AGE--Y45T54", + "ilo/UNE_TUNE_NB.AGE--Y50T54", + "ilo/UNE_TUNE_NB.AGE--Y55T59", + "ilo/UNE_TUNE_NB.AGE--Y55T64", + "ilo/UNE_TUNE_NB.AGE--Y60T64", + "ilo/UNE_TUNE_NB.AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.003" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.004" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.005" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.006" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.007" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.008" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.009" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.043" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.044" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.045" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.046" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.047" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.048" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.049" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.050" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.051" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.052" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.053" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.054" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.055" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.056" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.057" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T11", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.058" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T11", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.059" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T11", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.060" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.061" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.062" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.063" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.064" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.065" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.066" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0T6", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M1T2", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M3T5", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M6T11", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M12T23", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--MGE12", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--MGE24", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.067" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.068" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.069" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.070" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.071" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.072" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.073" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.074" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.075" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.076" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.077" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.078" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.079" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.080" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.081" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.082" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.083" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.084" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.085" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.086" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.087" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.088" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.089" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.090" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.091" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.092" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.093" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.094" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.095" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.096" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.097" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.098" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.099" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.100" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.101" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.102" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.103" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.104" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.105" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.106" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.107" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.108" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.109" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.110" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.111" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.112" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.113" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.114" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.115" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.116" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.117" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.118" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.119" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.120" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.121" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.122" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.123" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.124" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.125" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.126" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.127" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.128" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.129" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.130" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.131" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.132" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.133" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.134" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.135" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.136" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.137" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.138" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.139" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.140" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.141" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.142" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.143" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.144" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.145" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.146" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.147" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.148" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.149" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.150" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.151" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.152" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.153" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.154" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.155" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.156" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.157" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.158" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.159" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.160" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.161" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.162" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.163" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.164" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.165" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.166" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.179" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.180" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.181" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.182" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.183" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.184" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.185" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.186" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.187" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.188" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.189" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.190" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.191" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.192" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.193" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.194" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.195" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.196" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.197" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.198" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.199" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.200" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.201" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.202" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.203" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.204" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.205" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.206" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.207" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.208" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.211" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.212" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.213" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.214" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.215" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.216" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.217" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.218" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.219" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.220" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.221" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.222" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.223" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.224" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.225" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.226" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.227" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.228" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.229" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.230" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.231" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.232" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.233" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.234" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.235" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.236" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.237" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.238" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.239" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.240" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.251" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (10 to 14 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y10T14", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y10T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.252" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 19 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T19", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T19" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.253" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.254" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.255" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.256" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (20 to 24 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y20T24", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y20T24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.257" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 29 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T29", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T29" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.258" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.259" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.260" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.261" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (30 to 34 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y30T34", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y30T34" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.262" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 39 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T39", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T39" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.263" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.264" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (40 to 44 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y40T44", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y40T44" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.265" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 49 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T49", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T49" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.266" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.267" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (5 to 9 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y5T9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y5T9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.268" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (50 to 54 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y50T54", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y50T54" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.269" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 59 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T59", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T59" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.270" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.271" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (60 to 64 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y60T64", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y60T64" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.272" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.273" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (under 15 years old) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y0T14", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.294" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.295" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.296" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.297" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.298" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y15T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.299" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.300" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.301" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.302" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.303" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.304" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.305" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.306" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.307" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.308" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.309" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Sex other than Female or Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.310" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.311" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.312" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.313" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.314" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.315" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.316" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.317" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.318" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.319" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.320" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.321" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.322" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.323" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.324" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.325" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.326" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.327" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.328" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.329" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.330" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.331" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.332" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.333" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.334" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.335" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.336" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.337" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.338" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.339" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.340" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.341" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.342" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.343" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.344" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.345" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.346" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.347" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.348" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.349" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.350" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.351" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.352" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.353" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.354" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.355" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.356" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.357" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.358" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.359" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.360" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.361" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.362" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.363" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.365" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.366" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.367" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.368" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.370" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.371" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.373" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.374" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.375" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.376" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.377" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.378" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.379" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.380" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.381" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.382" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.383" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.384" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.385" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.386" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.388" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.389" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.390" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.391" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.393" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.394" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.396" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.397" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.398" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.399" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.400" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.401" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.402" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.403" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.404" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.405" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.406" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.407" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.408" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.409" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.410" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.411" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.412" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.413" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.414" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.415" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.416" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.417" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.418" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.419" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.420" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.421" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.422" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.423" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.444" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.445" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.446" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.447" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.448" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.449" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.450" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.451" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.452" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.453" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--R", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--U", + "ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.454" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.455" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.456" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.457" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.458" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.459" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.460" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.461" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.462" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (15 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.463" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.464" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.465" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.466" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.467" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.468" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.469" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.470" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.471" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (25 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.472" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.473" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.474" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.475" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.476" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.477" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.478" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.479" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.480" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.481" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.482" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.483" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (65 years old and over, Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.484" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.485" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.486" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.489" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.490" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.491" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.492" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.493" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.494" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.497" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Disability status not specified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--_X", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.498" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.499" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.500" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.501" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.502" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.503" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.504" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.505" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.506" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.507" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.508" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.509" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.510" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.511" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.512" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.513" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.514" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.515" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.519" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Category of unemployed" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.520" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Category of unemployment not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK", + "ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.521" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Unemployed previously employed) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE", + "ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.522" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Unemployed seeking their first job) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS", + "ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.523" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M0", + "ilo/UNE_TUNE_NB.DURATION--M0T2", + "ilo/UNE_TUNE_NB.DURATION--M0T6", + "ilo/UNE_TUNE_NB.DURATION--M0T11", + "ilo/UNE_TUNE_NB.DURATION--M1T2", + "ilo/UNE_TUNE_NB.DURATION--M3T5", + "ilo/UNE_TUNE_NB.DURATION--M6T11", + "ilo/UNE_TUNE_NB.DURATION--M12T23", + "ilo/UNE_TUNE_NB.DURATION--MGE12", + "ilo/UNE_TUNE_NB.DURATION--MGE24", + "ilo/UNE_TUNE_NB.DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.524" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (12 months or more) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--MGE12__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DURATION--MGE12__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.525" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M6T11__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DURATION--M6T11__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.526" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DURATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.527" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M0T6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.DURATION--M0T6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.532" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (1 month to less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M1T2", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M1T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.533" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.534" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (12 months to less than 24 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M12T23", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M12T23" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.535" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (24 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE24", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE24" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.536" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (3 months to less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M3T5", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M3T5" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.537" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.538" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.539" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 1 month) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.540" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 3 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T2", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.541" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.542" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (12 months or more, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.543" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (12 months or more, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.544" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.545" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.546" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Duration not classified, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.547" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Duration not classified, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.548" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.549" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.558" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.559" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.560" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.561" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.562" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.565" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.566" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.567" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5A", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5B", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.568" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.569" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.570" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.571" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.572" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.573" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.574" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.575" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.576" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.577" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.588" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.589" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.590" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.591" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.592" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.593" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.594" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.595" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.605" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.606" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.607" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.608" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.609" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.610" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.611" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.612" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.613" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.614" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.615" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.616" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.617" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.618" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.619" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.620" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.621" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.622" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.623" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.624" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.625" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.626" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.627" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.628" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.630" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_0", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_1", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_2", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_3", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_4", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_5", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_6", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_7", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_8", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_9", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.631" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_0AND1", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_2", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_3", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_4", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_5", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_6", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_7T9", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.632" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_0", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_1", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_2", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_3", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_4", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_5", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_6", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_7", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_8", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_9", + "ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.633" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.634" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F", + "ilo/UNE_TUNE_NB.SEX--M", + "ilo/UNE_TUNE_NB.SEX--O" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.635" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.636" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.637" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.638" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.639" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.640" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_0", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_1", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_2", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_3", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_4", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_5", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_6", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_7", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_8", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_9" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.641" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.642" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_A", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_B", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_C", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_D", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_E", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_F", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_G", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_H", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_I", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_J", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_K", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_L", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_M", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_N", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_O", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_P", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_Q" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.643" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.644" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_A", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_B", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_C", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_D", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_E", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_F", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_G", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_H", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_I", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_J", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_K", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_L", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_M", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_N", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_O", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_P", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_Q", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_R", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_S", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_U", + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.649" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.650" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.651" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.652" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.653" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5A", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5B", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.654" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5A", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5B", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.655" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.656" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.657" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.658" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.659" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.660" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.661" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.662" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.663" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.664" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.665" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.666" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.667" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.668" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.669" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.670" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.671" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.672" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.673" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.674" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.695" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.696" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.697" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.698" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.699" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.700" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.701" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.702" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.703" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.704" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.705" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.706" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.708" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.709" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.711" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.712" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.731" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.732" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.733" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.734" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.735" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.736" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.737" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.738" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.739" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.740" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.741" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.742" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.743" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.744" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.745" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.746" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.747" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.748" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.749" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.750" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.751" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.752" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.753" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.754" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.755" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.756" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.757" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.758" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.759" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.760" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.761" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.762" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.763" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.764" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.765" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.766" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.767" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.768" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.769" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.770" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.771" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.772" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.773" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.774" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.775" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.776" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.777" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.778" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.781" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_0", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_1", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_2", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_3", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_4", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_5", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_6", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_7", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_8", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_9", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.782" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_0", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_1", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_2", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_3", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_4", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_5", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_6", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_7", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_8", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_9", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.783" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_0AND1", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_2", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_3", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_4", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_5", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_6", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_7T9", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.784" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_0AND1", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_2", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_3", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_4", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_5", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_6", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_7T9", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.785" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_0", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_1", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_2", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_3", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_4", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_5", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_6", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_7", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_8", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_9", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.786" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_0", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_1", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_2", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_3", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_4", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_5", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_6", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_7", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_8", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_9", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.787" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.788" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to skill" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L1", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L2", + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L3-4" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.789" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Urbanization (Rural/Urban)" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--R", + "ilo/UNE_TUNE_NB.URBANISATION--U", + "ilo/UNE_TUNE_NB.URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.790" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.791" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.792" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Disability status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.793" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.794" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.795" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.796" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.797" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Persons with disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.798" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Persons without disability) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.799" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--_X", + "ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--_X", + "ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--_X", + "ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.800" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--R", + "ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--R", + "ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--R", + "ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.801" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Duration" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--U", + "ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--U", + "ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--U", + "ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.802" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.803" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.804" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.805" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.806" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.807" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.808" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.809" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.810" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, 12 months or more) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.811" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, 6 months to less than 12 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.812" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Duration not classified) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.813" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Less than 6 months) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.817" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.818" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.819" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.820" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.821" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.822" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.823" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.824" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.825" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.826" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.827" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.828" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.829" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.830" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.831" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.832" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.833" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.834" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.838" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.839" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.840" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban) by Sex" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.846" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.847" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.848" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.849" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.850" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.851" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.852" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.853" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.854" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.855" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.856" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.857" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.858" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.859" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.860" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.861" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.862" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.863" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.864" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.865" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.866" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.867" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.868" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.869" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Marital Status" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.871" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.872" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.873" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.874" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.875" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.876" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) Single / Widowed / Divorced" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.878" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.879" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.880" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.881" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Rural, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.882" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Female) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/svpg/ILOUNETUNENB.883" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) (Urban, Male) Married / Union / Cohabiting" + ], + "memberList": [ + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION" + ], + "typeOf": [ + "StatVarPeerGroup" + ] + }, + { + "dcid": [ + "dc/topic/ILOCPINCYRRT" + ], + "name": [ + "Consumer Price Index (CPI), Percentage Change From Previous Year" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/CPI_NCYR_RT", + "dc/svpg/ILOCPINCYRRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOCPINWGTRT" + ], + "name": [ + "National Consumer Price Index (CPI), Country Weights" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOCPINWGTRT.001" + ] + }, + { + "dcid": [ + "dc/topic/ILOCPIXCPIRT" + ], + "name": [ + "National Consumer Price Index (CPI)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/CPI_XCPI_RT", + "dc/svpg/ILOCPIXCPIRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEAP2EAPNB" + ], + "name": [ + "Labour Force (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EAP_2EAP_NB", + "dc/svpg/ILOEAP2EAPNB.002", + "dc/svpg/ILOEAP2EAPNB.003", + "dc/svpg/ILOEAP2EAPNB.004", + "dc/svpg/ILOEAP2EAPNB.005", + "dc/svpg/ILOEAP2EAPNB.006", + "dc/svpg/ILOEAP2EAPNB.007", + "dc/svpg/ILOEAP2EAPNB.008", + "dc/svpg/ILOEAP2EAPNB.009", + "dc/svpg/ILOEAP2EAPNB.010", + "dc/svpg/ILOEAP2EAPNB.011", + "dc/svpg/ILOEAP2EAPNB.012", + "dc/svpg/ILOEAP2EAPNB.013", + "dc/svpg/ILOEAP2EAPNB.014", + "dc/svpg/ILOEAP2EAPNB.015", + "dc/svpg/ILOEAP2EAPNB.016", + "dc/svpg/ILOEAP2EAPNB.017", + "dc/svpg/ILOEAP2EAPNB.018", + "dc/svpg/ILOEAP2EAPNB.019" + ] + }, + { + "dcid": [ + "dc/topic/ILOEAP2WAPRT" + ], + "name": [ + "Labour Force Participation Rate (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EAP_2WAP_RT", + "dc/svpg/ILOEAP2WAPRT.002", + "dc/svpg/ILOEAP2WAPRT.007", + "dc/svpg/ILOEAP2WAPRT.008", + "dc/svpg/ILOEAP2WAPRT.009", + "dc/svpg/ILOEAP2WAPRT.010", + "dc/svpg/ILOEAP2WAPRT.011", + "dc/svpg/ILOEAP2WAPRT.012", + "dc/svpg/ILOEAP2WAPRT.013", + "dc/svpg/ILOEAP2WAPRT.014", + "dc/svpg/ILOEAP2WAPRT.015", + "dc/svpg/ILOEAP2WAPRT.016", + "dc/svpg/ILOEAP2WAPRT.017", + "dc/svpg/ILOEAP2WAPRT.018", + "dc/svpg/ILOEAP2WAPRT.019", + "dc/svpg/ILOEAP2WAPRT.020", + "dc/svpg/ILOEAP2WAPRT.021", + "dc/svpg/ILOEAP2WAPRT.022", + "dc/svpg/ILOEAP2WAPRT.023" + ] + }, + { + "dcid": [ + "dc/topic/ILOEAP3EAPNB" + ], + "name": [ + "Youth Labour Force" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEAP3EAPNB.001", + "dc/svpg/ILOEAP3EAPNB.002", + "dc/svpg/ILOEAP3EAPNB.003", + "dc/svpg/ILOEAP3EAPNB.004", + "dc/svpg/ILOEAP3EAPNB.005", + "dc/svpg/ILOEAP3EAPNB.006", + "dc/svpg/ILOEAP3EAPNB.007", + "dc/svpg/ILOEAP3EAPNB.008", + "dc/svpg/ILOEAP3EAPNB.009", + "dc/svpg/ILOEAP3EAPNB.010", + "dc/svpg/ILOEAP3EAPNB.011", + "dc/svpg/ILOEAP3EAPNB.012", + "dc/svpg/ILOEAP3EAPNB.013", + "dc/svpg/ILOEAP3EAPNB.014", + "dc/svpg/ILOEAP3EAPNB.015", + "dc/svpg/ILOEAP3EAPNB.016", + "dc/svpg/ILOEAP3EAPNB.017", + "dc/svpg/ILOEAP3EAPNB.018", + "dc/svpg/ILOEAP3EAPNB.019", + "dc/svpg/ILOEAP3EAPNB.020", + "dc/svpg/ILOEAP3EAPNB.021", + "dc/svpg/ILOEAP3EAPNB.022", + "dc/svpg/ILOEAP3EAPNB.023", + "dc/svpg/ILOEAP3EAPNB.024", + "dc/svpg/ILOEAP3EAPNB.025", + "dc/svpg/ILOEAP3EAPNB.026", + "dc/svpg/ILOEAP3EAPNB.027", + "dc/svpg/ILOEAP3EAPNB.028", + "dc/svpg/ILOEAP3EAPNB.029", + "dc/svpg/ILOEAP3EAPNB.030", + "dc/svpg/ILOEAP3EAPNB.031", + "dc/svpg/ILOEAP3EAPNB.032", + "dc/svpg/ILOEAP3EAPNB.033", + "dc/svpg/ILOEAP3EAPNB.034", + "dc/svpg/ILOEAP3EAPNB.035", + "dc/svpg/ILOEAP3EAPNB.036", + "dc/svpg/ILOEAP3EAPNB.037", + "dc/svpg/ILOEAP3EAPNB.038", + "dc/svpg/ILOEAP3EAPNB.039", + "dc/svpg/ILOEAP3EAPNB.040", + "dc/svpg/ILOEAP3EAPNB.041", + "dc/svpg/ILOEAP3EAPNB.042", + "dc/svpg/ILOEAP3EAPNB.043", + "dc/svpg/ILOEAP3EAPNB.044", + "dc/svpg/ILOEAP3EAPNB.045", + "dc/svpg/ILOEAP3EAPNB.046", + "dc/svpg/ILOEAP3EAPNB.047", + "dc/svpg/ILOEAP3EAPNB.048", + "dc/svpg/ILOEAP3EAPNB.049", + "dc/svpg/ILOEAP3EAPNB.050", + "dc/svpg/ILOEAP3EAPNB.051", + "dc/svpg/ILOEAP3EAPNB.052", + "dc/svpg/ILOEAP3EAPNB.053", + "dc/svpg/ILOEAP3EAPNB.054", + "dc/svpg/ILOEAP3EAPNB.055", + "dc/svpg/ILOEAP3EAPNB.056", + "dc/svpg/ILOEAP3EAPNB.057", + "dc/svpg/ILOEAP3EAPNB.058", + "dc/svpg/ILOEAP3EAPNB.059", + "dc/svpg/ILOEAP3EAPNB.060", + "dc/svpg/ILOEAP3EAPNB.061" + ] + }, + { + "dcid": [ + "dc/topic/ILOEAP3WAPRT" + ], + "name": [ + "Youth Labour Force Participation Rate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEAP3WAPRT.001", + "dc/svpg/ILOEAP3WAPRT.002", + "dc/svpg/ILOEAP3WAPRT.003", + "dc/svpg/ILOEAP3WAPRT.004", + "dc/svpg/ILOEAP3WAPRT.005", + "dc/svpg/ILOEAP3WAPRT.006", + "dc/svpg/ILOEAP3WAPRT.007", + "dc/svpg/ILOEAP3WAPRT.008", + "dc/svpg/ILOEAP3WAPRT.009", + "dc/svpg/ILOEAP3WAPRT.010", + "dc/svpg/ILOEAP3WAPRT.011", + "dc/svpg/ILOEAP3WAPRT.012", + "dc/svpg/ILOEAP3WAPRT.013", + "dc/svpg/ILOEAP3WAPRT.014", + "dc/svpg/ILOEAP3WAPRT.015", + "dc/svpg/ILOEAP3WAPRT.016", + "dc/svpg/ILOEAP3WAPRT.017", + "dc/svpg/ILOEAP3WAPRT.018", + "dc/svpg/ILOEAP3WAPRT.019", + "dc/svpg/ILOEAP3WAPRT.020", + "dc/svpg/ILOEAP3WAPRT.021", + "dc/svpg/ILOEAP3WAPRT.022", + "dc/svpg/ILOEAP3WAPRT.023", + "dc/svpg/ILOEAP3WAPRT.024", + "dc/svpg/ILOEAP3WAPRT.025", + "dc/svpg/ILOEAP3WAPRT.026", + "dc/svpg/ILOEAP3WAPRT.027", + "dc/svpg/ILOEAP3WAPRT.028", + "dc/svpg/ILOEAP3WAPRT.029", + "dc/svpg/ILOEAP3WAPRT.030", + "dc/svpg/ILOEAP3WAPRT.031", + "dc/svpg/ILOEAP3WAPRT.032", + "dc/svpg/ILOEAP3WAPRT.033", + "dc/svpg/ILOEAP3WAPRT.034", + "dc/svpg/ILOEAP3WAPRT.035", + "dc/svpg/ILOEAP3WAPRT.036", + "dc/svpg/ILOEAP3WAPRT.037", + "dc/svpg/ILOEAP3WAPRT.038", + "dc/svpg/ILOEAP3WAPRT.039", + "dc/svpg/ILOEAP3WAPRT.040", + "dc/svpg/ILOEAP3WAPRT.041", + "dc/svpg/ILOEAP3WAPRT.042", + "dc/svpg/ILOEAP3WAPRT.043", + "dc/svpg/ILOEAP3WAPRT.044", + "dc/svpg/ILOEAP3WAPRT.045", + "dc/svpg/ILOEAP3WAPRT.046", + "dc/svpg/ILOEAP3WAPRT.047", + "dc/svpg/ILOEAP3WAPRT.048", + "dc/svpg/ILOEAP3WAPRT.049", + "dc/svpg/ILOEAP3WAPRT.050", + "dc/svpg/ILOEAP3WAPRT.051", + "dc/svpg/ILOEAP3WAPRT.052", + "dc/svpg/ILOEAP3WAPRT.053", + "dc/svpg/ILOEAP3WAPRT.054", + "dc/svpg/ILOEAP3WAPRT.055", + "dc/svpg/ILOEAP3WAPRT.056", + "dc/svpg/ILOEAP3WAPRT.057", + "dc/svpg/ILOEAP3WAPRT.058", + "dc/svpg/ILOEAP3WAPRT.059", + "dc/svpg/ILOEAP3WAPRT.060", + "dc/svpg/ILOEAP3WAPRT.061" + ] + }, + { + "dcid": [ + "dc/topic/ILOEAR4MMNNB" + ], + "name": [ + "Monthly Minimum Wage" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEAR4MMNNB.001" + ] + }, + { + "dcid": [ + "dc/topic/ILOEARXTLPRT" + ], + "name": [ + "Low Pay Rate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EAR_XTLP_RT", + "dc/svpg/ILOEARXTLPRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEES3EESNB" + ], + "name": [ + "Youth Employees" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEES3EESNB.001", + "dc/svpg/ILOEES3EESNB.002", + "dc/svpg/ILOEES3EESNB.003", + "dc/svpg/ILOEES3EESNB.004", + "dc/svpg/ILOEES3EESNB.005", + "dc/svpg/ILOEES3EESNB.006", + "dc/svpg/ILOEES3EESNB.007", + "dc/svpg/ILOEES3EESNB.008", + "dc/svpg/ILOEES3EESNB.009", + "dc/svpg/ILOEES3EESNB.010", + "dc/svpg/ILOEES3EESNB.011", + "dc/svpg/ILOEES3EESNB.012", + "dc/svpg/ILOEES3EESNB.013", + "dc/svpg/ILOEES3EESNB.014", + "dc/svpg/ILOEES3EESNB.015", + "dc/svpg/ILOEES3EESNB.016", + "dc/svpg/ILOEES3EESNB.017", + "dc/svpg/ILOEES3EESNB.018", + "dc/svpg/ILOEES3EESNB.019", + "dc/svpg/ILOEES3EESNB.020", + "dc/svpg/ILOEES3EESNB.021" + ] + }, + { + "dcid": [ + "dc/topic/ILOEESXTMPRT" + ], + "name": [ + "Share of Temporary Employees" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EES_XTMP_RT", + "dc/svpg/ILOEESXTMPRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP2EIPNB" + ], + "name": [ + "Persons Outside The Labour Force (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEIP2EIPNB.001", + "dc/svpg/ILOEIP2EIPNB.006", + "dc/svpg/ILOEIP2EIPNB.007", + "dc/svpg/ILOEIP2EIPNB.008" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP2JOBNB" + ], + "name": [ + "Potential Labour Force And Willing Non-jobseekers (ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_2JOB_NB", + "dc/svpg/ILOEIP2JOBNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP2JOBRT" + ], + "name": [ + "Potential Labour Force And Willing Non-jobseekers Rate (ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_2JOB_RT", + "dc/svpg/ILOEIP2JOBRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP2PLFRT" + ], + "name": [ + "Potential Labour Force Rate (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEIP2PLFRT.001", + "dc/svpg/ILOEIP2PLFRT.002", + "dc/svpg/ILOEIP2PLFRT.003", + "dc/svpg/ILOEIP2PLFRT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP2WAPRT" + ], + "name": [ + "Number of Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Inactivity Rate, ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEIP2WAPRT.001", + "dc/svpg/ILOEIP2WAPRT.002", + "dc/svpg/ILOEIP2WAPRT.003", + "dc/svpg/ILOEIP2WAPRT.004", + "dc/svpg/ILOEIP2WAPRT.005", + "dc/svpg/ILOEIP2WAPRT.006", + "dc/svpg/ILOEIP2WAPRT.007", + "dc/svpg/ILOEIP2WAPRT.008", + "dc/svpg/ILOEIP2WAPRT.009", + "dc/svpg/ILOEIP2WAPRT.010", + "dc/svpg/ILOEIP2WAPRT.011", + "dc/svpg/ILOEIP2WAPRT.012", + "dc/svpg/ILOEIP2WAPRT.013" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB" + ], + "name": [ + "Youth Outside The Labour Force" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel", + "dc/topic/ILOEIP3EIPNB_iloobservationStatus", + "dc/topic/ILOEIP3EIPNB_ilosex", + "dc/svpg/ILOEIP3EIPNB.001", + "dc/svpg/ILOEIP3EIPNB.002", + "dc/svpg/ILOEIP3EIPNB.003", + "dc/svpg/ILOEIP3EIPNB.004", + "dc/svpg/ILOEIP3EIPNB.005", + "dc/svpg/ILOEIP3EIPNB.006", + "dc/svpg/ILOEIP3EIPNB.007", + "dc/svpg/ILOEIP3EIPNB.008", + "dc/svpg/ILOEIP3EIPNB.009", + "dc/svpg/ILOEIP3EIPNB.010", + "dc/svpg/ILOEIP3EIPNB.011", + "dc/svpg/ILOEIP3EIPNB.012", + "dc/svpg/ILOEIP3EIPNB.013", + "dc/svpg/ILOEIP3EIPNB.014", + "dc/svpg/ILOEIP3EIPNB.015", + "dc/svpg/ILOEIP3EIPNB.016", + "dc/svpg/ILOEIP3EIPNB.017", + "dc/svpg/ILOEIP3EIPNB.018", + "dc/svpg/ILOEIP3EIPNB.019", + "dc/svpg/ILOEIP3EIPNB.020", + "dc/svpg/ILOEIP3EIPNB.021", + "dc/svpg/ILOEIP3EIPNB.022", + "dc/svpg/ILOEIP3EIPNB.023", + "dc/svpg/ILOEIP3EIPNB.024", + "dc/svpg/ILOEIP3EIPNB.025", + "dc/svpg/ILOEIP3EIPNB.026", + "dc/svpg/ILOEIP3EIPNB.027", + "dc/svpg/ILOEIP3EIPNB.028", + "dc/svpg/ILOEIP3EIPNB.029", + "dc/svpg/ILOEIP3EIPNB.030", + "dc/svpg/ILOEIP3EIPNB.031", + "dc/svpg/ILOEIP3EIPNB.032", + "dc/svpg/ILOEIP3EIPNB.033", + "dc/svpg/ILOEIP3EIPNB.034", + "dc/svpg/ILOEIP3EIPNB.035", + "dc/svpg/ILOEIP3EIPNB.036", + "dc/svpg/ILOEIP3EIPNB.037", + "dc/svpg/ILOEIP3EIPNB.038", + "dc/svpg/ILOEIP3EIPNB.039", + "dc/svpg/ILOEIP3EIPNB.041", + "dc/svpg/ILOEIP3EIPNB.042", + "dc/svpg/ILOEIP3EIPNB.043", + "dc/svpg/ILOEIP3EIPNB.044", + "dc/svpg/ILOEIP3EIPNB.045", + "dc/svpg/ILOEIP3EIPNB.046", + "dc/svpg/ILOEIP3EIPNB.047", + "dc/svpg/ILOEIP3EIPNB.048", + "dc/svpg/ILOEIP3EIPNB.049", + "dc/svpg/ILOEIP3EIPNB.050", + "dc/svpg/ILOEIP3EIPNB.051", + "dc/svpg/ILOEIP3EIPNB.052", + "dc/svpg/ILOEIP3EIPNB.053", + "dc/svpg/ILOEIP3EIPNB.054", + "dc/svpg/ILOEIP3EIPNB.055", + "dc/svpg/ILOEIP3EIPNB.056", + "dc/svpg/ILOEIP3EIPNB.057", + "dc/svpg/ILOEIP3EIPNB.058", + "dc/svpg/ILOEIP3EIPNB.059", + "dc/svpg/ILOEIP3EIPNB.060", + "dc/svpg/ILOEIP3EIPNB.061", + "dc/svpg/ILOEIP3EIPNB.062", + "dc/svpg/ILOEIP3EIPNB.063" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age" + ], + "name": [ + "Youth Outside The Labour Force by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel", + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus", + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age = 15 To 19 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Outside The Labour Force With Age, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Age, Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age, Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age, Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel" + ], + "name": [ + "Youth Outside The Labour Force by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus" + ], + "name": [ + "Youth Outside The Labour Force by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Outside The Labour Force With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Outside The Labour Force With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_ilosex" + ], + "name": [ + "Youth Outside The Labour Force by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3EIPNB_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Outside The Labour Force With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3EIPNB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3EIPNB_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3EIPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel", + "dc/topic/ILOEIP3WAPRT_iloobservationStatus", + "dc/topic/ILOEIP3WAPRT_ilosex", + "dc/svpg/ILOEIP3WAPRT.001", + "dc/svpg/ILOEIP3WAPRT.002", + "dc/svpg/ILOEIP3WAPRT.003", + "dc/svpg/ILOEIP3WAPRT.004", + "dc/svpg/ILOEIP3WAPRT.005", + "dc/svpg/ILOEIP3WAPRT.006", + "dc/svpg/ILOEIP3WAPRT.007", + "dc/svpg/ILOEIP3WAPRT.008", + "dc/svpg/ILOEIP3WAPRT.009", + "dc/svpg/ILOEIP3WAPRT.010", + "dc/svpg/ILOEIP3WAPRT.011", + "dc/svpg/ILOEIP3WAPRT.012", + "dc/svpg/ILOEIP3WAPRT.013", + "dc/svpg/ILOEIP3WAPRT.014", + "dc/svpg/ILOEIP3WAPRT.015", + "dc/svpg/ILOEIP3WAPRT.016", + "dc/svpg/ILOEIP3WAPRT.017", + "dc/svpg/ILOEIP3WAPRT.018", + "dc/svpg/ILOEIP3WAPRT.019", + "dc/svpg/ILOEIP3WAPRT.020", + "dc/svpg/ILOEIP3WAPRT.021", + "dc/svpg/ILOEIP3WAPRT.022", + "dc/svpg/ILOEIP3WAPRT.023", + "dc/svpg/ILOEIP3WAPRT.024", + "dc/svpg/ILOEIP3WAPRT.025", + "dc/svpg/ILOEIP3WAPRT.026", + "dc/svpg/ILOEIP3WAPRT.027", + "dc/svpg/ILOEIP3WAPRT.028", + "dc/svpg/ILOEIP3WAPRT.029", + "dc/svpg/ILOEIP3WAPRT.030", + "dc/svpg/ILOEIP3WAPRT.031", + "dc/svpg/ILOEIP3WAPRT.032", + "dc/svpg/ILOEIP3WAPRT.033", + "dc/svpg/ILOEIP3WAPRT.034", + "dc/svpg/ILOEIP3WAPRT.035", + "dc/svpg/ILOEIP3WAPRT.036", + "dc/svpg/ILOEIP3WAPRT.037", + "dc/svpg/ILOEIP3WAPRT.038", + "dc/svpg/ILOEIP3WAPRT.039", + "dc/svpg/ILOEIP3WAPRT.041", + "dc/svpg/ILOEIP3WAPRT.042", + "dc/svpg/ILOEIP3WAPRT.043", + "dc/svpg/ILOEIP3WAPRT.044", + "dc/svpg/ILOEIP3WAPRT.045", + "dc/svpg/ILOEIP3WAPRT.046", + "dc/svpg/ILOEIP3WAPRT.047", + "dc/svpg/ILOEIP3WAPRT.048", + "dc/svpg/ILOEIP3WAPRT.049", + "dc/svpg/ILOEIP3WAPRT.050", + "dc/svpg/ILOEIP3WAPRT.051", + "dc/svpg/ILOEIP3WAPRT.052", + "dc/svpg/ILOEIP3WAPRT.053", + "dc/svpg/ILOEIP3WAPRT.054", + "dc/svpg/ILOEIP3WAPRT.055", + "dc/svpg/ILOEIP3WAPRT.056", + "dc/svpg/ILOEIP3WAPRT.057", + "dc/svpg/ILOEIP3WAPRT.058", + "dc/svpg/ILOEIP3WAPRT.059", + "dc/svpg/ILOEIP3WAPRT.060", + "dc/svpg/ILOEIP3WAPRT.061", + "dc/svpg/ILOEIP3WAPRT.062", + "dc/svpg/ILOEIP3WAPRT.063" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel", + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus", + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age = 15 To 19 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_ilosex" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP3WAPRT_ilosex-ILOSexEnumO" + ], + "name": [ + "Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population (Youth Inactivity Rate) With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3WAPRT_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEIP3WAPRT_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP5EETNB" + ], + "name": [ + "Youth Not in Employment, Education or Training (NEET) According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_5EET_NB", + "dc/svpg/ILOEIP5EETNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP5EETRT" + ], + "name": [ + "Share of Youth Not in Employment, Education or Training (NEET), According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EIP_5EET_RT", + "dc/svpg/ILOEIP5EETRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP5EIPNB" + ], + "name": [ + "Persons Outside The Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEIP5EIPNB.001", + "dc/svpg/ILOEIP5EIPNB.002", + "dc/svpg/ILOEIP5EIPNB.003", + "dc/svpg/ILOEIP5EIPNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEIP5PLFNB" + ], + "name": [ + "Potential Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEIP5PLFNB.001", + "dc/svpg/ILOEIP5PLFNB.002", + "dc/svpg/ILOEIP5PLFNB.003", + "dc/svpg/ILOEIP5PLFNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP2FTENB" + ], + "name": [ + "Full-time Equivalent Employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP2FTENB.001", + "dc/svpg/ILOEMP2FTENB.002", + "dc/svpg/ILOEMP2FTENB.003" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP2NIFNB" + ], + "name": [ + "Informal Employment (ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_2NIF_NB", + "dc/svpg/ILOEMP2NIFNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP2NIFRT" + ], + "name": [ + "Informal Employment Rate (ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_2NIF_RT", + "dc/svpg/ILOEMP2NIFRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP2TRURT" + ], + "name": [ + "Time-related Underemployment Rate (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP2TRURT.001", + "dc/svpg/ILOEMP2TRURT.002", + "dc/svpg/ILOEMP2TRURT.003", + "dc/svpg/ILOEMP2TRURT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP2WAPRT" + ], + "name": [ + "Employment-to-population Ratio (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP2WAPRT.001", + "dc/svpg/ILOEMP2WAPRT.006", + "dc/svpg/ILOEMP2WAPRT.007", + "dc/svpg/ILOEMP2WAPRT.008", + "dc/svpg/ILOEMP2WAPRT.009", + "dc/svpg/ILOEMP2WAPRT.010", + "dc/svpg/ILOEMP2WAPRT.011", + "dc/svpg/ILOEMP2WAPRT.012", + "dc/svpg/ILOEMP2WAPRT.013", + "dc/svpg/ILOEMP2WAPRT.014", + "dc/svpg/ILOEMP2WAPRT.015", + "dc/svpg/ILOEMP2WAPRT.016", + "dc/svpg/ILOEMP2WAPRT.017" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB" + ], + "name": [ + "Youth Employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_ilooccupation", + "dc/topic/ILOEMP3EMPNB_ilosex", + "dc/svpg/ILOEMP3EMPNB.001", + "dc/svpg/ILOEMP3EMPNB.002", + "dc/svpg/ILOEMP3EMPNB.003", + "dc/svpg/ILOEMP3EMPNB.004", + "dc/svpg/ILOEMP3EMPNB.005", + "dc/svpg/ILOEMP3EMPNB.006", + "dc/svpg/ILOEMP3EMPNB.007", + "dc/svpg/ILOEMP3EMPNB.008", + "dc/svpg/ILOEMP3EMPNB.009", + "dc/svpg/ILOEMP3EMPNB.010", + "dc/svpg/ILOEMP3EMPNB.011", + "dc/svpg/ILOEMP3EMPNB.012", + "dc/svpg/ILOEMP3EMPNB.013", + "dc/svpg/ILOEMP3EMPNB.014", + "dc/svpg/ILOEMP3EMPNB.015", + "dc/svpg/ILOEMP3EMPNB.016", + "dc/svpg/ILOEMP3EMPNB.017", + "dc/svpg/ILOEMP3EMPNB.018", + "dc/svpg/ILOEMP3EMPNB.019", + "dc/svpg/ILOEMP3EMPNB.020", + "dc/svpg/ILOEMP3EMPNB.021", + "dc/svpg/ILOEMP3EMPNB.022", + "dc/svpg/ILOEMP3EMPNB.023", + "dc/svpg/ILOEMP3EMPNB.024", + "dc/svpg/ILOEMP3EMPNB.025", + "dc/svpg/ILOEMP3EMPNB.026", + "dc/svpg/ILOEMP3EMPNB.027", + "dc/svpg/ILOEMP3EMPNB.028", + "dc/svpg/ILOEMP3EMPNB.029", + "dc/svpg/ILOEMP3EMPNB.034", + "dc/svpg/ILOEMP3EMPNB.035", + "dc/svpg/ILOEMP3EMPNB.036", + "dc/svpg/ILOEMP3EMPNB.037", + "dc/svpg/ILOEMP3EMPNB.038", + "dc/svpg/ILOEMP3EMPNB.039", + "dc/svpg/ILOEMP3EMPNB.040", + "dc/svpg/ILOEMP3EMPNB.041", + "dc/svpg/ILOEMP3EMPNB.042", + "dc/svpg/ILOEMP3EMPNB.043", + "dc/svpg/ILOEMP3EMPNB.044", + "dc/svpg/ILOEMP3EMPNB.045", + "dc/svpg/ILOEMP3EMPNB.046", + "dc/svpg/ILOEMP3EMPNB.047", + "dc/svpg/ILOEMP3EMPNB.048", + "dc/svpg/ILOEMP3EMPNB.049", + "dc/svpg/ILOEMP3EMPNB.050", + "dc/svpg/ILOEMP3EMPNB.051", + "dc/svpg/ILOEMP3EMPNB.052", + "dc/svpg/ILOEMP3EMPNB.053", + "dc/svpg/ILOEMP3EMPNB.054", + "dc/svpg/ILOEMP3EMPNB.055", + "dc/svpg/ILOEMP3EMPNB.056", + "dc/svpg/ILOEMP3EMPNB.057", + "dc/svpg/ILOEMP3EMPNB.058", + "dc/svpg/ILOEMP3EMPNB.059", + "dc/svpg/ILOEMP3EMPNB.060", + "dc/svpg/ILOEMP3EMPNB.061", + "dc/svpg/ILOEMP3EMPNB.062", + "dc/svpg/ILOEMP3EMPNB.063", + "dc/svpg/ILOEMP3EMPNB.064", + "dc/svpg/ILOEMP3EMPNB.065", + "dc/svpg/ILOEMP3EMPNB.066", + "dc/svpg/ILOEMP3EMPNB.067", + "dc/svpg/ILOEMP3EMPNB.068", + "dc/svpg/ILOEMP3EMPNB.069", + "dc/svpg/ILOEMP3EMPNB.070", + "dc/svpg/ILOEMP3EMPNB.071", + "dc/svpg/ILOEMP3EMPNB.072", + "dc/svpg/ILOEMP3EMPNB.073", + "dc/svpg/ILOEMP3EMPNB.074", + "dc/svpg/ILOEMP3EMPNB.075", + "dc/svpg/ILOEMP3EMPNB.076", + "dc/svpg/ILOEMP3EMPNB.077", + "dc/svpg/ILOEMP3EMPNB.078", + "dc/svpg/ILOEMP3EMPNB.079", + "dc/svpg/ILOEMP3EMPNB.080", + "dc/svpg/ILOEMP3EMPNB.081", + "dc/svpg/ILOEMP3EMPNB.082", + "dc/svpg/ILOEMP3EMPNB.083", + "dc/svpg/ILOEMP3EMPNB.084", + "dc/svpg/ILOEMP3EMPNB.085", + "dc/svpg/ILOEMP3EMPNB.086", + "dc/svpg/ILOEMP3EMPNB.087", + "dc/svpg/ILOEMP3EMPNB.088", + "dc/svpg/ILOEMP3EMPNB.089", + "dc/svpg/ILOEMP3EMPNB.090", + "dc/svpg/ILOEMP3EMPNB.091", + "dc/svpg/ILOEMP3EMPNB.092", + "dc/svpg/ILOEMP3EMPNB.093", + "dc/svpg/ILOEMP3EMPNB.094", + "dc/svpg/ILOEMP3EMPNB.095", + "dc/svpg/ILOEMP3EMPNB.096", + "dc/svpg/ILOEMP3EMPNB.097", + "dc/svpg/ILOEMP3EMPNB.098", + "dc/svpg/ILOEMP3EMPNB.099", + "dc/svpg/ILOEMP3EMPNB.100", + "dc/svpg/ILOEMP3EMPNB.101", + "dc/svpg/ILOEMP3EMPNB.102", + "dc/svpg/ILOEMP3EMPNB.103", + "dc/svpg/ILOEMP3EMPNB.104", + "dc/svpg/ILOEMP3EMPNB.105", + "dc/svpg/ILOEMP3EMPNB.106", + "dc/svpg/ILOEMP3EMPNB.107", + "dc/svpg/ILOEMP3EMPNB.108", + "dc/svpg/ILOEMP3EMPNB.109", + "dc/svpg/ILOEMP3EMPNB.110", + "dc/svpg/ILOEMP3EMPNB.111", + "dc/svpg/ILOEMP3EMPNB.112", + "dc/svpg/ILOEMP3EMPNB.113", + "dc/svpg/ILOEMP3EMPNB.114", + "dc/svpg/ILOEMP3EMPNB.115", + "dc/svpg/ILOEMP3EMPNB.116", + "dc/svpg/ILOEMP3EMPNB.117", + "dc/svpg/ILOEMP3EMPNB.118", + "dc/svpg/ILOEMP3EMPNB.119", + "dc/svpg/ILOEMP3EMPNB.120", + "dc/svpg/ILOEMP3EMPNB.121", + "dc/svpg/ILOEMP3EMPNB.126", + "dc/svpg/ILOEMP3EMPNB.127", + "dc/svpg/ILOEMP3EMPNB.128", + "dc/svpg/ILOEMP3EMPNB.129", + "dc/svpg/ILOEMP3EMPNB.130", + "dc/svpg/ILOEMP3EMPNB.131", + "dc/svpg/ILOEMP3EMPNB.132", + "dc/svpg/ILOEMP3EMPNB.133", + "dc/svpg/ILOEMP3EMPNB.134", + "dc/svpg/ILOEMP3EMPNB.135", + "dc/svpg/ILOEMP3EMPNB.136", + "dc/svpg/ILOEMP3EMPNB.137", + "dc/svpg/ILOEMP3EMPNB.138", + "dc/svpg/ILOEMP3EMPNB.139", + "dc/svpg/ILOEMP3EMPNB.140", + "dc/svpg/ILOEMP3EMPNB.141", + "dc/svpg/ILOEMP3EMPNB.142", + "dc/svpg/ILOEMP3EMPNB.143", + "dc/svpg/ILOEMP3EMPNB.144", + "dc/svpg/ILOEMP3EMPNB.145", + "dc/svpg/ILOEMP3EMPNB.146", + "dc/svpg/ILOEMP3EMPNB.147", + "dc/svpg/ILOEMP3EMPNB.148", + "dc/svpg/ILOEMP3EMPNB.149", + "dc/svpg/ILOEMP3EMPNB.150", + "dc/svpg/ILOEMP3EMPNB.151", + "dc/svpg/ILOEMP3EMPNB.152", + "dc/svpg/ILOEMP3EMPNB.153", + "dc/svpg/ILOEMP3EMPNB.154", + "dc/svpg/ILOEMP3EMPNB.155", + "dc/svpg/ILOEMP3EMPNB.156", + "dc/svpg/ILOEMP3EMPNB.157", + "dc/svpg/ILOEMP3EMPNB.158", + "dc/svpg/ILOEMP3EMPNB.159", + "dc/svpg/ILOEMP3EMPNB.160", + "dc/svpg/ILOEMP3EMPNB.161", + "dc/svpg/ILOEMP3EMPNB.162", + "dc/svpg/ILOEMP3EMPNB.163", + "dc/svpg/ILOEMP3EMPNB.164", + "dc/svpg/ILOEMP3EMPNB.165", + "dc/svpg/ILOEMP3EMPNB.166", + "dc/svpg/ILOEMP3EMPNB.167", + "dc/svpg/ILOEMP3EMPNB.168", + "dc/svpg/ILOEMP3EMPNB.169", + "dc/svpg/ILOEMP3EMPNB.170", + "dc/svpg/ILOEMP3EMPNB.171", + "dc/svpg/ILOEMP3EMPNB.172", + "dc/svpg/ILOEMP3EMPNB.173", + "dc/svpg/ILOEMP3EMPNB.182", + "dc/svpg/ILOEMP3EMPNB.183", + "dc/svpg/ILOEMP3EMPNB.184", + "dc/svpg/ILOEMP3EMPNB.185", + "dc/svpg/ILOEMP3EMPNB.186", + "dc/svpg/ILOEMP3EMPNB.187", + "dc/svpg/ILOEMP3EMPNB.188", + "dc/svpg/ILOEMP3EMPNB.189", + "dc/svpg/ILOEMP3EMPNB.198", + "dc/svpg/ILOEMP3EMPNB.199", + "dc/svpg/ILOEMP3EMPNB.200", + "dc/svpg/ILOEMP3EMPNB.201", + "dc/svpg/ILOEMP3EMPNB.202", + "dc/svpg/ILOEMP3EMPNB.203", + "dc/svpg/ILOEMP3EMPNB.204", + "dc/svpg/ILOEMP3EMPNB.205", + "dc/svpg/ILOEMP3EMPNB.206", + "dc/svpg/ILOEMP3EMPNB.207", + "dc/svpg/ILOEMP3EMPNB.208", + "dc/svpg/ILOEMP3EMPNB.209", + "dc/svpg/ILOEMP3EMPNB.210", + "dc/svpg/ILOEMP3EMPNB.211", + "dc/svpg/ILOEMP3EMPNB.212", + "dc/svpg/ILOEMP3EMPNB.213", + "dc/svpg/ILOEMP3EMPNB.214", + "dc/svpg/ILOEMP3EMPNB.215", + "dc/svpg/ILOEMP3EMPNB.216", + "dc/svpg/ILOEMP3EMPNB.217", + "dc/svpg/ILOEMP3EMPNB.219", + "dc/svpg/ILOEMP3EMPNB.220", + "dc/svpg/ILOEMP3EMPNB.221", + "dc/svpg/ILOEMP3EMPNB.222", + "dc/svpg/ILOEMP3EMPNB.223", + "dc/svpg/ILOEMP3EMPNB.224", + "dc/svpg/ILOEMP3EMPNB.225", + "dc/svpg/ILOEMP3EMPNB.226", + "dc/svpg/ILOEMP3EMPNB.227", + "dc/svpg/ILOEMP3EMPNB.228", + "dc/svpg/ILOEMP3EMPNB.229", + "dc/svpg/ILOEMP3EMPNB.230", + "dc/svpg/ILOEMP3EMPNB.231", + "dc/svpg/ILOEMP3EMPNB.232", + "dc/svpg/ILOEMP3EMPNB.233", + "dc/svpg/ILOEMP3EMPNB.234", + "dc/svpg/ILOEMP3EMPNB.235", + "dc/svpg/ILOEMP3EMPNB.236", + "dc/svpg/ILOEMP3EMPNB.237", + "dc/svpg/ILOEMP3EMPNB.238", + "dc/svpg/ILOEMP3EMPNB.239", + "dc/svpg/ILOEMP3EMPNB.240", + "dc/svpg/ILOEMP3EMPNB.241", + "dc/svpg/ILOEMP3EMPNB.242", + "dc/svpg/ILOEMP3EMPNB.243", + "dc/svpg/ILOEMP3EMPNB.244", + "dc/svpg/ILOEMP3EMPNB.245", + "dc/svpg/ILOEMP3EMPNB.246", + "dc/svpg/ILOEMP3EMPNB.247", + "dc/svpg/ILOEMP3EMPNB.248", + "dc/svpg/ILOEMP3EMPNB.249", + "dc/svpg/ILOEMP3EMPNB.250", + "dc/svpg/ILOEMP3EMPNB.251", + "dc/svpg/ILOEMP3EMPNB.252", + "dc/svpg/ILOEMP3EMPNB.253", + "dc/svpg/ILOEMP3EMPNB.254", + "dc/svpg/ILOEMP3EMPNB.255", + "dc/svpg/ILOEMP3EMPNB.256", + "dc/svpg/ILOEMP3EMPNB.257", + "dc/svpg/ILOEMP3EMPNB.258", + "dc/svpg/ILOEMP3EMPNB.259", + "dc/svpg/ILOEMP3EMPNB.260", + "dc/svpg/ILOEMP3EMPNB.261", + "dc/svpg/ILOEMP3EMPNB.262", + "dc/svpg/ILOEMP3EMPNB.263", + "dc/svpg/ILOEMP3EMPNB.264", + "dc/svpg/ILOEMP3EMPNB.265", + "dc/svpg/ILOEMP3EMPNB.266", + "dc/svpg/ILOEMP3EMPNB.267", + "dc/svpg/ILOEMP3EMPNB.268", + "dc/svpg/ILOEMP3EMPNB.269", + "dc/svpg/ILOEMP3EMPNB.270", + "dc/svpg/ILOEMP3EMPNB.271", + "dc/svpg/ILOEMP3EMPNB.272", + "dc/svpg/ILOEMP3EMPNB.273", + "dc/svpg/ILOEMP3EMPNB.274", + "dc/svpg/ILOEMP3EMPNB.275", + "dc/svpg/ILOEMP3EMPNB.276", + "dc/svpg/ILOEMP3EMPNB.277", + "dc/svpg/ILOEMP3EMPNB.278", + "dc/svpg/ILOEMP3EMPNB.279", + "dc/svpg/ILOEMP3EMPNB.280", + "dc/svpg/ILOEMP3EMPNB.281", + "dc/svpg/ILOEMP3EMPNB.282" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age" + ], + "name": [ + "Youth Employment by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 19 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumSKILLL2", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumSKILLL2" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation = ILO_Occupation Enum_SKILL_L 2" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumSKILLL2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumSKILLL2_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation = ILO_Occupation Enum_SKILL_L 2, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Age = 15 To 29 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 20 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age = 25 To 29 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Age, Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloeconomicActivity-ILOEconomicActivityEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_iloeconomicActivity-ILOEconomicActivityEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age, Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age, Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age, Economic Activity = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age, Economic Activity = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumSKILLL2" + ], + "name": [ + "Youth Employment With Age, Occupation = ILO_Occupation Enum_SKILL_L 2" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumSKILLL2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Age, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age, Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age, Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--_X", + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity" + ], + "name": [ + "Youth Employment by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Economic Activity = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOEMP3EMPNB_age_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus" + ], + "name": [ + "Youth Employment by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2", + "dc/topic/ILOEMP3EMPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation" + ], + "name": [ + "Youth Employment by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumSKILLL2", + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumSKILLL2" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_SKILL_L 2" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2", + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumSKILLL2", + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumSKILLL2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumSKILLL2_ilosex" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_SKILL_L 2, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilosex" + ], + "name": [ + "Youth Employment by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Employment With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMP3EMPNB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Employment With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMP3EMPNB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3EMPNB_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Employment With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2", + "dc/topic/ILOEMP3EMPNB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEMP3EMPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP3WAPRT" + ], + "name": [ + "Youth Employment-to-population Ratio" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP3WAPRT.001", + "dc/svpg/ILOEMP3WAPRT.002", + "dc/svpg/ILOEMP3WAPRT.003", + "dc/svpg/ILOEMP3WAPRT.004", + "dc/svpg/ILOEMP3WAPRT.005", + "dc/svpg/ILOEMP3WAPRT.006", + "dc/svpg/ILOEMP3WAPRT.007", + "dc/svpg/ILOEMP3WAPRT.008", + "dc/svpg/ILOEMP3WAPRT.009", + "dc/svpg/ILOEMP3WAPRT.010", + "dc/svpg/ILOEMP3WAPRT.011", + "dc/svpg/ILOEMP3WAPRT.012", + "dc/svpg/ILOEMP3WAPRT.013", + "dc/svpg/ILOEMP3WAPRT.014", + "dc/svpg/ILOEMP3WAPRT.015", + "dc/svpg/ILOEMP3WAPRT.016", + "dc/svpg/ILOEMP3WAPRT.017", + "dc/svpg/ILOEMP3WAPRT.018", + "dc/svpg/ILOEMP3WAPRT.019", + "dc/svpg/ILOEMP3WAPRT.020", + "dc/svpg/ILOEMP3WAPRT.021", + "dc/svpg/ILOEMP3WAPRT.022", + "dc/svpg/ILOEMP3WAPRT.023", + "dc/svpg/ILOEMP3WAPRT.024", + "dc/svpg/ILOEMP3WAPRT.025", + "dc/svpg/ILOEMP3WAPRT.026", + "dc/svpg/ILOEMP3WAPRT.027", + "dc/svpg/ILOEMP3WAPRT.028", + "dc/svpg/ILOEMP3WAPRT.029", + "dc/svpg/ILOEMP3WAPRT.030", + "dc/svpg/ILOEMP3WAPRT.031", + "dc/svpg/ILOEMP3WAPRT.032", + "dc/svpg/ILOEMP3WAPRT.033", + "dc/svpg/ILOEMP3WAPRT.034", + "dc/svpg/ILOEMP3WAPRT.035", + "dc/svpg/ILOEMP3WAPRT.036", + "dc/svpg/ILOEMP3WAPRT.037", + "dc/svpg/ILOEMP3WAPRT.038", + "dc/svpg/ILOEMP3WAPRT.039", + "dc/svpg/ILOEMP3WAPRT.040", + "dc/svpg/ILOEMP3WAPRT.041", + "dc/svpg/ILOEMP3WAPRT.042", + "dc/svpg/ILOEMP3WAPRT.043", + "dc/svpg/ILOEMP3WAPRT.044", + "dc/svpg/ILOEMP3WAPRT.045", + "dc/svpg/ILOEMP3WAPRT.046", + "dc/svpg/ILOEMP3WAPRT.047", + "dc/svpg/ILOEMP3WAPRT.048", + "dc/svpg/ILOEMP3WAPRT.049", + "dc/svpg/ILOEMP3WAPRT.050", + "dc/svpg/ILOEMP3WAPRT.051", + "dc/svpg/ILOEMP3WAPRT.052", + "dc/svpg/ILOEMP3WAPRT.053", + "dc/svpg/ILOEMP3WAPRT.054", + "dc/svpg/ILOEMP3WAPRT.055", + "dc/svpg/ILOEMP3WAPRT.056", + "dc/svpg/ILOEMP3WAPRT.057", + "dc/svpg/ILOEMP3WAPRT.058", + "dc/svpg/ILOEMP3WAPRT.059", + "dc/svpg/ILOEMP3WAPRT.060", + "dc/svpg/ILOEMP3WAPRT.061" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP5NIFNB" + ], + "name": [ + "Informal Employment, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP5NIFNB.001", + "dc/svpg/ILOEMP5NIFNB.002", + "dc/svpg/ILOEMP5NIFNB.003", + "dc/svpg/ILOEMP5NIFNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP5NIFRT" + ], + "name": [ + "Informal Employment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP5NIFRT.001", + "dc/svpg/ILOEMP5NIFRT.002", + "dc/svpg/ILOEMP5NIFRT.003", + "dc/svpg/ILOEMP5NIFRT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP5PIFNB" + ], + "name": [ + "Employment Outside The Formal Sector, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP5PIFNB.001", + "dc/svpg/ILOEMP5PIFNB.002", + "dc/svpg/ILOEMP5PIFNB.003", + "dc/svpg/ILOEMP5PIFNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMP5PIFRT" + ], + "name": [ + "Share of Employment Outside The Formal Secto, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOEMP5PIFRT.001", + "dc/svpg/ILOEMP5PIFRT.002", + "dc/svpg/ILOEMP5PIFRT.003", + "dc/svpg/ILOEMP5PIFRT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB" + ], + "name": [ + "Informal Employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB", + "dc/topic/ILOEMPNIFLNB_age", + "dc/topic/ILOEMPNIFLNB_disabilityStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilooccupation", + "dc/topic/ILOEMPNIFLNB_ilosex", + "dc/topic/ILOEMPNIFLNB_ilourbanisation", + "dc/svpg/ILOEMPNIFLNB.002", + "dc/svpg/ILOEMPNIFLNB.003", + "dc/svpg/ILOEMPNIFLNB.004", + "dc/svpg/ILOEMPNIFLNB.005", + "dc/svpg/ILOEMPNIFLNB.006", + "dc/svpg/ILOEMPNIFLNB.007", + "dc/svpg/ILOEMPNIFLNB.008", + "dc/svpg/ILOEMPNIFLNB.009", + "dc/svpg/ILOEMPNIFLNB.036", + "dc/svpg/ILOEMPNIFLNB.037", + "dc/svpg/ILOEMPNIFLNB.038", + "dc/svpg/ILOEMPNIFLNB.039", + "dc/svpg/ILOEMPNIFLNB.040", + "dc/svpg/ILOEMPNIFLNB.041", + "dc/svpg/ILOEMPNIFLNB.042", + "dc/svpg/ILOEMPNIFLNB.043", + "dc/svpg/ILOEMPNIFLNB.044", + "dc/svpg/ILOEMPNIFLNB.045", + "dc/svpg/ILOEMPNIFLNB.046", + "dc/svpg/ILOEMPNIFLNB.047", + "dc/svpg/ILOEMPNIFLNB.048", + "dc/svpg/ILOEMPNIFLNB.049", + "dc/svpg/ILOEMPNIFLNB.053", + "dc/svpg/ILOEMPNIFLNB.054", + "dc/svpg/ILOEMPNIFLNB.055", + "dc/svpg/ILOEMPNIFLNB.056", + "dc/svpg/ILOEMPNIFLNB.057", + "dc/svpg/ILOEMPNIFLNB.058", + "dc/svpg/ILOEMPNIFLNB.059", + "dc/svpg/ILOEMPNIFLNB.060", + "dc/svpg/ILOEMPNIFLNB.061", + "dc/svpg/ILOEMPNIFLNB.062", + "dc/svpg/ILOEMPNIFLNB.063", + "dc/svpg/ILOEMPNIFLNB.064", + "dc/svpg/ILOEMPNIFLNB.071", + "dc/svpg/ILOEMPNIFLNB.072", + "dc/svpg/ILOEMPNIFLNB.073", + "dc/svpg/ILOEMPNIFLNB.074", + "dc/svpg/ILOEMPNIFLNB.075", + "dc/svpg/ILOEMPNIFLNB.076", + "dc/svpg/ILOEMPNIFLNB.080", + "dc/svpg/ILOEMPNIFLNB.081", + "dc/svpg/ILOEMPNIFLNB.082", + "dc/svpg/ILOEMPNIFLNB.086", + "dc/svpg/ILOEMPNIFLNB.087", + "dc/svpg/ILOEMPNIFLNB.088", + "dc/svpg/ILOEMPNIFLNB.089", + "dc/svpg/ILOEMPNIFLNB.090", + "dc/svpg/ILOEMPNIFLNB.091", + "dc/svpg/ILOEMPNIFLNB.092", + "dc/svpg/ILOEMPNIFLNB.093", + "dc/svpg/ILOEMPNIFLNB.094", + "dc/svpg/ILOEMPNIFLNB.095", + "dc/svpg/ILOEMPNIFLNB.096", + "dc/svpg/ILOEMPNIFLNB.097", + "dc/svpg/ILOEMPNIFLNB.101", + "dc/svpg/ILOEMPNIFLNB.102", + "dc/svpg/ILOEMPNIFLNB.103", + "dc/svpg/ILOEMPNIFLNB.107", + "dc/svpg/ILOEMPNIFLNB.108", + "dc/svpg/ILOEMPNIFLNB.109", + "dc/svpg/ILOEMPNIFLNB.110", + "dc/svpg/ILOEMPNIFLNB.111", + "dc/svpg/ILOEMPNIFLNB.112", + "dc/svpg/ILOEMPNIFLNB.113", + "dc/svpg/ILOEMPNIFLNB.114", + "dc/svpg/ILOEMPNIFLNB.115", + "dc/svpg/ILOEMPNIFLNB.125", + "dc/svpg/ILOEMPNIFLNB.126", + "dc/svpg/ILOEMPNIFLNB.127", + "dc/svpg/ILOEMPNIFLNB.128", + "dc/svpg/ILOEMPNIFLNB.129", + "dc/svpg/ILOEMPNIFLNB.130", + "dc/svpg/ILOEMPNIFLNB.137", + "dc/svpg/ILOEMPNIFLNB.138", + "dc/svpg/ILOEMPNIFLNB.139", + "dc/svpg/ILOEMPNIFLNB.140", + "dc/svpg/ILOEMPNIFLNB.141", + "dc/svpg/ILOEMPNIFLNB.142", + "dc/svpg/ILOEMPNIFLNB.143", + "dc/svpg/ILOEMPNIFLNB.144", + "dc/svpg/ILOEMPNIFLNB.145", + "dc/svpg/ILOEMPNIFLNB.146", + "dc/svpg/ILOEMPNIFLNB.147", + "dc/svpg/ILOEMPNIFLNB.148", + "dc/svpg/ILOEMPNIFLNB.155", + "dc/svpg/ILOEMPNIFLNB.156", + "dc/svpg/ILOEMPNIFLNB.157", + "dc/svpg/ILOEMPNIFLNB.158", + "dc/svpg/ILOEMPNIFLNB.159", + "dc/svpg/ILOEMPNIFLNB.160", + "dc/svpg/ILOEMPNIFLNB.164", + "dc/svpg/ILOEMPNIFLNB.165", + "dc/svpg/ILOEMPNIFLNB.166", + "dc/svpg/ILOEMPNIFLNB.167", + "dc/svpg/ILOEMPNIFLNB.168", + "dc/svpg/ILOEMPNIFLNB.169", + "dc/svpg/ILOEMPNIFLNB.170", + "dc/svpg/ILOEMPNIFLNB.171", + "dc/svpg/ILOEMPNIFLNB.172", + "dc/svpg/ILOEMPNIFLNB.185", + "dc/svpg/ILOEMPNIFLNB.186", + "dc/svpg/ILOEMPNIFLNB.187", + "dc/svpg/ILOEMPNIFLNB.188", + "dc/svpg/ILOEMPNIFLNB.189", + "dc/svpg/ILOEMPNIFLNB.190", + "dc/svpg/ILOEMPNIFLNB.191", + "dc/svpg/ILOEMPNIFLNB.192", + "dc/svpg/ILOEMPNIFLNB.193", + "dc/svpg/ILOEMPNIFLNB.194", + "dc/svpg/ILOEMPNIFLNB.195", + "dc/svpg/ILOEMPNIFLNB.196", + "dc/svpg/ILOEMPNIFLNB.197", + "dc/svpg/ILOEMPNIFLNB.198", + "dc/svpg/ILOEMPNIFLNB.199", + "dc/svpg/ILOEMPNIFLNB.200", + "dc/svpg/ILOEMPNIFLNB.201", + "dc/svpg/ILOEMPNIFLNB.202", + "dc/svpg/ILOEMPNIFLNB.203", + "dc/svpg/ILOEMPNIFLNB.204", + "dc/svpg/ILOEMPNIFLNB.205", + "dc/svpg/ILOEMPNIFLNB.209", + "dc/svpg/ILOEMPNIFLNB.210", + "dc/svpg/ILOEMPNIFLNB.211", + "dc/svpg/ILOEMPNIFLNB.212", + "dc/svpg/ILOEMPNIFLNB.213", + "dc/svpg/ILOEMPNIFLNB.214", + "dc/svpg/ILOEMPNIFLNB.221", + "dc/svpg/ILOEMPNIFLNB.222", + "dc/svpg/ILOEMPNIFLNB.223", + "dc/svpg/ILOEMPNIFLNB.224", + "dc/svpg/ILOEMPNIFLNB.225", + "dc/svpg/ILOEMPNIFLNB.226", + "dc/svpg/ILOEMPNIFLNB.227", + "dc/svpg/ILOEMPNIFLNB.228", + "dc/svpg/ILOEMPNIFLNB.229", + "dc/svpg/ILOEMPNIFLNB.249", + "dc/svpg/ILOEMPNIFLNB.250", + "dc/svpg/ILOEMPNIFLNB.251", + "dc/svpg/ILOEMPNIFLNB.252", + "dc/svpg/ILOEMPNIFLNB.253", + "dc/svpg/ILOEMPNIFLNB.254", + "dc/svpg/ILOEMPNIFLNB.255", + "dc/svpg/ILOEMPNIFLNB.256", + "dc/svpg/ILOEMPNIFLNB.257", + "dc/svpg/ILOEMPNIFLNB.258", + "dc/svpg/ILOEMPNIFLNB.259", + "dc/svpg/ILOEMPNIFLNB.260", + "dc/svpg/ILOEMPNIFLNB.261", + "dc/svpg/ILOEMPNIFLNB.262", + "dc/svpg/ILOEMPNIFLNB.263", + "dc/svpg/ILOEMPNIFLNB.264", + "dc/svpg/ILOEMPNIFLNB.265", + "dc/svpg/ILOEMPNIFLNB.266", + "dc/svpg/ILOEMPNIFLNB.267", + "dc/svpg/ILOEMPNIFLNB.268", + "dc/svpg/ILOEMPNIFLNB.269", + "dc/svpg/ILOEMPNIFLNB.270", + "dc/svpg/ILOEMPNIFLNB.271", + "dc/svpg/ILOEMPNIFLNB.272", + "dc/svpg/ILOEMPNIFLNB.273", + "dc/svpg/ILOEMPNIFLNB.274", + "dc/svpg/ILOEMPNIFLNB.275", + "dc/svpg/ILOEMPNIFLNB.276", + "dc/svpg/ILOEMPNIFLNB.277", + "dc/svpg/ILOEMPNIFLNB.278", + "dc/svpg/ILOEMPNIFLNB.279", + "dc/svpg/ILOEMPNIFLNB.280", + "dc/svpg/ILOEMPNIFLNB.281", + "dc/svpg/ILOEMPNIFLNB.282", + "dc/svpg/ILOEMPNIFLNB.283", + "dc/svpg/ILOEMPNIFLNB.284", + "dc/svpg/ILOEMPNIFLNB.285", + "dc/svpg/ILOEMPNIFLNB.286", + "dc/svpg/ILOEMPNIFLNB.287", + "dc/svpg/ILOEMPNIFLNB.288", + "dc/svpg/ILOEMPNIFLNB.289", + "dc/svpg/ILOEMPNIFLNB.290", + "dc/svpg/ILOEMPNIFLNB.291", + "dc/svpg/ILOEMPNIFLNB.292", + "dc/svpg/ILOEMPNIFLNB.293", + "dc/svpg/ILOEMPNIFLNB.294", + "dc/svpg/ILOEMPNIFLNB.295", + "dc/svpg/ILOEMPNIFLNB.296", + "dc/svpg/ILOEMPNIFLNB.297", + "dc/svpg/ILOEMPNIFLNB.298", + "dc/svpg/ILOEMPNIFLNB.299", + "dc/svpg/ILOEMPNIFLNB.300", + "dc/svpg/ILOEMPNIFLNB.301", + "dc/svpg/ILOEMPNIFLNB.302", + "dc/svpg/ILOEMPNIFLNB.303", + "dc/svpg/ILOEMPNIFLNB.304", + "dc/svpg/ILOEMPNIFLNB.305", + "dc/svpg/ILOEMPNIFLNB.306", + "dc/svpg/ILOEMPNIFLNB.307", + "dc/svpg/ILOEMPNIFLNB.308", + "dc/svpg/ILOEMPNIFLNB.309", + "dc/svpg/ILOEMPNIFLNB.310", + "dc/svpg/ILOEMPNIFLNB.311", + "dc/svpg/ILOEMPNIFLNB.312", + "dc/svpg/ILOEMPNIFLNB.313", + "dc/svpg/ILOEMPNIFLNB.314", + "dc/svpg/ILOEMPNIFLNB.315", + "dc/svpg/ILOEMPNIFLNB.316", + "dc/svpg/ILOEMPNIFLNB.317", + "dc/svpg/ILOEMPNIFLNB.318", + "dc/svpg/ILOEMPNIFLNB.319", + "dc/svpg/ILOEMPNIFLNB.320", + "dc/svpg/ILOEMPNIFLNB.321", + "dc/svpg/ILOEMPNIFLNB.322", + "dc/svpg/ILOEMPNIFLNB.323", + "dc/svpg/ILOEMPNIFLNB.324", + "dc/svpg/ILOEMPNIFLNB.325", + "dc/svpg/ILOEMPNIFLNB.326", + "dc/svpg/ILOEMPNIFLNB.327", + "dc/svpg/ILOEMPNIFLNB.328", + "dc/svpg/ILOEMPNIFLNB.329", + "dc/svpg/ILOEMPNIFLNB.330", + "dc/svpg/ILOEMPNIFLNB.331", + "dc/svpg/ILOEMPNIFLNB.332", + "dc/svpg/ILOEMPNIFLNB.333", + "dc/svpg/ILOEMPNIFLNB.334", + "dc/svpg/ILOEMPNIFLNB.335", + "dc/svpg/ILOEMPNIFLNB.336", + "dc/svpg/ILOEMPNIFLNB.337", + "dc/svpg/ILOEMPNIFLNB.338", + "dc/svpg/ILOEMPNIFLNB.339", + "dc/svpg/ILOEMPNIFLNB.340", + "dc/svpg/ILOEMPNIFLNB.341", + "dc/svpg/ILOEMPNIFLNB.342", + "dc/svpg/ILOEMPNIFLNB.343", + "dc/svpg/ILOEMPNIFLNB.344", + "dc/svpg/ILOEMPNIFLNB.345", + "dc/svpg/ILOEMPNIFLNB.346", + "dc/svpg/ILOEMPNIFLNB.347", + "dc/svpg/ILOEMPNIFLNB.348", + "dc/svpg/ILOEMPNIFLNB.349", + "dc/svpg/ILOEMPNIFLNB.350", + "dc/svpg/ILOEMPNIFLNB.351", + "dc/svpg/ILOEMPNIFLNB.352", + "dc/svpg/ILOEMPNIFLNB.353", + "dc/svpg/ILOEMPNIFLNB.354", + "dc/svpg/ILOEMPNIFLNB.355", + "dc/svpg/ILOEMPNIFLNB.356", + "dc/svpg/ILOEMPNIFLNB.357", + "dc/svpg/ILOEMPNIFLNB.358", + "dc/svpg/ILOEMPNIFLNB.359", + "dc/svpg/ILOEMPNIFLNB.360", + "dc/svpg/ILOEMPNIFLNB.361", + "dc/svpg/ILOEMPNIFLNB.362", + "dc/svpg/ILOEMPNIFLNB.363", + "dc/svpg/ILOEMPNIFLNB.364", + "dc/svpg/ILOEMPNIFLNB.365", + "dc/svpg/ILOEMPNIFLNB.366", + "dc/svpg/ILOEMPNIFLNB.367", + "dc/svpg/ILOEMPNIFLNB.368", + "dc/svpg/ILOEMPNIFLNB.369", + "dc/svpg/ILOEMPNIFLNB.370", + "dc/svpg/ILOEMPNIFLNB.371", + "dc/svpg/ILOEMPNIFLNB.372", + "dc/svpg/ILOEMPNIFLNB.373", + "dc/svpg/ILOEMPNIFLNB.374", + "dc/svpg/ILOEMPNIFLNB.375", + "dc/svpg/ILOEMPNIFLNB.376", + "dc/svpg/ILOEMPNIFLNB.377", + "dc/svpg/ILOEMPNIFLNB.378", + "dc/svpg/ILOEMPNIFLNB.379", + "dc/svpg/ILOEMPNIFLNB.380", + "dc/svpg/ILOEMPNIFLNB.381", + "dc/svpg/ILOEMPNIFLNB.382", + "dc/svpg/ILOEMPNIFLNB.383", + "dc/svpg/ILOEMPNIFLNB.384", + "dc/svpg/ILOEMPNIFLNB.385", + "dc/svpg/ILOEMPNIFLNB.386", + "dc/svpg/ILOEMPNIFLNB.387", + "dc/svpg/ILOEMPNIFLNB.388", + "dc/svpg/ILOEMPNIFLNB.402", + "dc/svpg/ILOEMPNIFLNB.403", + "dc/svpg/ILOEMPNIFLNB.404", + "dc/svpg/ILOEMPNIFLNB.405", + "dc/svpg/ILOEMPNIFLNB.406", + "dc/svpg/ILOEMPNIFLNB.407", + "dc/svpg/ILOEMPNIFLNB.408", + "dc/svpg/ILOEMPNIFLNB.409", + "dc/svpg/ILOEMPNIFLNB.410", + "dc/svpg/ILOEMPNIFLNB.411", + "dc/svpg/ILOEMPNIFLNB.412", + "dc/svpg/ILOEMPNIFLNB.413", + "dc/svpg/ILOEMPNIFLNB.414", + "dc/svpg/ILOEMPNIFLNB.415", + "dc/svpg/ILOEMPNIFLNB.416", + "dc/svpg/ILOEMPNIFLNB.417", + "dc/svpg/ILOEMPNIFLNB.418", + "dc/svpg/ILOEMPNIFLNB.419", + "dc/svpg/ILOEMPNIFLNB.420", + "dc/svpg/ILOEMPNIFLNB.421", + "dc/svpg/ILOEMPNIFLNB.422", + "dc/svpg/ILOEMPNIFLNB.423", + "dc/svpg/ILOEMPNIFLNB.424", + "dc/svpg/ILOEMPNIFLNB.425", + "dc/svpg/ILOEMPNIFLNB.426", + "dc/svpg/ILOEMPNIFLNB.427", + "dc/svpg/ILOEMPNIFLNB.428", + "dc/svpg/ILOEMPNIFLNB.429", + "dc/svpg/ILOEMPNIFLNB.430", + "dc/svpg/ILOEMPNIFLNB.431", + "dc/svpg/ILOEMPNIFLNB.438", + "dc/svpg/ILOEMPNIFLNB.439", + "dc/svpg/ILOEMPNIFLNB.440", + "dc/svpg/ILOEMPNIFLNB.441", + "dc/svpg/ILOEMPNIFLNB.442", + "dc/svpg/ILOEMPNIFLNB.443", + "dc/svpg/ILOEMPNIFLNB.444", + "dc/svpg/ILOEMPNIFLNB.445", + "dc/svpg/ILOEMPNIFLNB.446", + "dc/svpg/ILOEMPNIFLNB.447", + "dc/svpg/ILOEMPNIFLNB.448", + "dc/svpg/ILOEMPNIFLNB.449", + "dc/svpg/ILOEMPNIFLNB.450", + "dc/svpg/ILOEMPNIFLNB.451", + "dc/svpg/ILOEMPNIFLNB.452", + "dc/svpg/ILOEMPNIFLNB.453", + "dc/svpg/ILOEMPNIFLNB.454", + "dc/svpg/ILOEMPNIFLNB.455", + "dc/svpg/ILOEMPNIFLNB.456", + "dc/svpg/ILOEMPNIFLNB.457", + "dc/svpg/ILOEMPNIFLNB.458", + "dc/svpg/ILOEMPNIFLNB.459", + "dc/svpg/ILOEMPNIFLNB.460", + "dc/svpg/ILOEMPNIFLNB.461", + "dc/svpg/ILOEMPNIFLNB.462", + "dc/svpg/ILOEMPNIFLNB.463", + "dc/svpg/ILOEMPNIFLNB.464", + "dc/svpg/ILOEMPNIFLNB.465", + "dc/svpg/ILOEMPNIFLNB.466", + "dc/svpg/ILOEMPNIFLNB.467", + "dc/svpg/ILOEMPNIFLNB.468", + "dc/svpg/ILOEMPNIFLNB.469", + "dc/svpg/ILOEMPNIFLNB.470", + "dc/svpg/ILOEMPNIFLNB.471", + "dc/svpg/ILOEMPNIFLNB.472", + "dc/svpg/ILOEMPNIFLNB.473", + "dc/svpg/ILOEMPNIFLNB.474", + "dc/svpg/ILOEMPNIFLNB.475", + "dc/svpg/ILOEMPNIFLNB.476", + "dc/svpg/ILOEMPNIFLNB.477", + "dc/svpg/ILOEMPNIFLNB.478", + "dc/svpg/ILOEMPNIFLNB.479", + "dc/svpg/ILOEMPNIFLNB.480", + "dc/svpg/ILOEMPNIFLNB.481", + "dc/svpg/ILOEMPNIFLNB.482", + "dc/svpg/ILOEMPNIFLNB.483", + "dc/svpg/ILOEMPNIFLNB.484", + "dc/svpg/ILOEMPNIFLNB.508", + "dc/svpg/ILOEMPNIFLNB.509", + "dc/svpg/ILOEMPNIFLNB.510", + "dc/svpg/ILOEMPNIFLNB.511", + "dc/svpg/ILOEMPNIFLNB.512", + "dc/svpg/ILOEMPNIFLNB.513", + "dc/svpg/ILOEMPNIFLNB.514", + "dc/svpg/ILOEMPNIFLNB.515", + "dc/svpg/ILOEMPNIFLNB.516", + "dc/svpg/ILOEMPNIFLNB.517", + "dc/svpg/ILOEMPNIFLNB.518", + "dc/svpg/ILOEMPNIFLNB.519", + "dc/svpg/ILOEMPNIFLNB.520", + "dc/svpg/ILOEMPNIFLNB.521", + "dc/svpg/ILOEMPNIFLNB.522", + "dc/svpg/ILOEMPNIFLNB.523", + "dc/svpg/ILOEMPNIFLNB.524", + "dc/svpg/ILOEMPNIFLNB.525", + "dc/svpg/ILOEMPNIFLNB.526", + "dc/svpg/ILOEMPNIFLNB.527", + "dc/svpg/ILOEMPNIFLNB.528", + "dc/svpg/ILOEMPNIFLNB.529", + "dc/svpg/ILOEMPNIFLNB.530", + "dc/svpg/ILOEMPNIFLNB.531", + "dc/svpg/ILOEMPNIFLNB.532", + "dc/svpg/ILOEMPNIFLNB.533", + "dc/svpg/ILOEMPNIFLNB.534", + "dc/svpg/ILOEMPNIFLNB.535", + "dc/svpg/ILOEMPNIFLNB.536", + "dc/svpg/ILOEMPNIFLNB.537", + "dc/svpg/ILOEMPNIFLNB.538", + "dc/svpg/ILOEMPNIFLNB.539", + "dc/svpg/ILOEMPNIFLNB.540", + "dc/svpg/ILOEMPNIFLNB.541", + "dc/svpg/ILOEMPNIFLNB.542", + "dc/svpg/ILOEMPNIFLNB.543", + "dc/svpg/ILOEMPNIFLNB.544", + "dc/svpg/ILOEMPNIFLNB.545", + "dc/svpg/ILOEMPNIFLNB.546", + "dc/svpg/ILOEMPNIFLNB.547", + "dc/svpg/ILOEMPNIFLNB.548", + "dc/svpg/ILOEMPNIFLNB.549", + "dc/svpg/ILOEMPNIFLNB.550", + "dc/svpg/ILOEMPNIFLNB.551", + "dc/svpg/ILOEMPNIFLNB.552", + "dc/svpg/ILOEMPNIFLNB.553", + "dc/svpg/ILOEMPNIFLNB.554", + "dc/svpg/ILOEMPNIFLNB.555", + "dc/svpg/ILOEMPNIFLNB.556", + "dc/svpg/ILOEMPNIFLNB.557", + "dc/svpg/ILOEMPNIFLNB.558", + "dc/svpg/ILOEMPNIFLNB.560", + "dc/svpg/ILOEMPNIFLNB.561", + "dc/svpg/ILOEMPNIFLNB.563", + "dc/svpg/ILOEMPNIFLNB.564", + "dc/svpg/ILOEMPNIFLNB.566", + "dc/svpg/ILOEMPNIFLNB.567", + "dc/svpg/ILOEMPNIFLNB.569", + "dc/svpg/ILOEMPNIFLNB.570", + "dc/svpg/ILOEMPNIFLNB.571", + "dc/svpg/ILOEMPNIFLNB.572", + "dc/svpg/ILOEMPNIFLNB.573", + "dc/svpg/ILOEMPNIFLNB.574", + "dc/svpg/ILOEMPNIFLNB.575", + "dc/svpg/ILOEMPNIFLNB.576", + "dc/svpg/ILOEMPNIFLNB.577", + "dc/svpg/ILOEMPNIFLNB.578", + "dc/svpg/ILOEMPNIFLNB.579", + "dc/svpg/ILOEMPNIFLNB.580", + "dc/svpg/ILOEMPNIFLNB.581", + "dc/svpg/ILOEMPNIFLNB.582", + "dc/svpg/ILOEMPNIFLNB.583", + "dc/svpg/ILOEMPNIFLNB.584", + "dc/svpg/ILOEMPNIFLNB.585", + "dc/svpg/ILOEMPNIFLNB.587", + "dc/svpg/ILOEMPNIFLNB.588", + "dc/svpg/ILOEMPNIFLNB.589", + "dc/svpg/ILOEMPNIFLNB.590", + "dc/svpg/ILOEMPNIFLNB.591", + "dc/svpg/ILOEMPNIFLNB.592", + "dc/svpg/ILOEMPNIFLNB.593", + "dc/svpg/ILOEMPNIFLNB.594", + "dc/svpg/ILOEMPNIFLNB.596", + "dc/svpg/ILOEMPNIFLNB.597", + "dc/svpg/ILOEMPNIFLNB.598", + "dc/svpg/ILOEMPNIFLNB.599", + "dc/svpg/ILOEMPNIFLNB.600", + "dc/svpg/ILOEMPNIFLNB.601", + "dc/svpg/ILOEMPNIFLNB.602", + "dc/svpg/ILOEMPNIFLNB.603", + "dc/svpg/ILOEMPNIFLNB.604", + "dc/svpg/ILOEMPNIFLNB.605", + "dc/svpg/ILOEMPNIFLNB.606", + "dc/svpg/ILOEMPNIFLNB.607", + "dc/svpg/ILOEMPNIFLNB.609", + "dc/svpg/ILOEMPNIFLNB.610", + "dc/svpg/ILOEMPNIFLNB.611", + "dc/svpg/ILOEMPNIFLNB.612", + "dc/svpg/ILOEMPNIFLNB.614", + "dc/svpg/ILOEMPNIFLNB.615", + "dc/svpg/ILOEMPNIFLNB.617", + "dc/svpg/ILOEMPNIFLNB.618", + "dc/svpg/ILOEMPNIFLNB.619", + "dc/svpg/ILOEMPNIFLNB.620", + "dc/svpg/ILOEMPNIFLNB.621", + "dc/svpg/ILOEMPNIFLNB.622", + "dc/svpg/ILOEMPNIFLNB.623", + "dc/svpg/ILOEMPNIFLNB.624", + "dc/svpg/ILOEMPNIFLNB.625", + "dc/svpg/ILOEMPNIFLNB.626", + "dc/svpg/ILOEMPNIFLNB.627", + "dc/svpg/ILOEMPNIFLNB.628", + "dc/svpg/ILOEMPNIFLNB.629", + "dc/svpg/ILOEMPNIFLNB.630", + "dc/svpg/ILOEMPNIFLNB.632", + "dc/svpg/ILOEMPNIFLNB.633", + "dc/svpg/ILOEMPNIFLNB.635", + "dc/svpg/ILOEMPNIFLNB.636", + "dc/svpg/ILOEMPNIFLNB.638", + "dc/svpg/ILOEMPNIFLNB.639", + "dc/svpg/ILOEMPNIFLNB.641", + "dc/svpg/ILOEMPNIFLNB.642", + "dc/svpg/ILOEMPNIFLNB.644", + "dc/svpg/ILOEMPNIFLNB.645", + "dc/svpg/ILOEMPNIFLNB.646", + "dc/svpg/ILOEMPNIFLNB.647", + "dc/svpg/ILOEMPNIFLNB.648", + "dc/svpg/ILOEMPNIFLNB.649", + "dc/svpg/ILOEMPNIFLNB.670", + "dc/svpg/ILOEMPNIFLNB.671", + "dc/svpg/ILOEMPNIFLNB.672", + "dc/svpg/ILOEMPNIFLNB.673", + "dc/svpg/ILOEMPNIFLNB.674", + "dc/svpg/ILOEMPNIFLNB.675", + "dc/svpg/ILOEMPNIFLNB.676", + "dc/svpg/ILOEMPNIFLNB.677", + "dc/svpg/ILOEMPNIFLNB.678", + "dc/svpg/ILOEMPNIFLNB.679", + "dc/svpg/ILOEMPNIFLNB.680", + "dc/svpg/ILOEMPNIFLNB.681", + "dc/svpg/ILOEMPNIFLNB.682", + "dc/svpg/ILOEMPNIFLNB.683", + "dc/svpg/ILOEMPNIFLNB.684", + "dc/svpg/ILOEMPNIFLNB.685", + "dc/svpg/ILOEMPNIFLNB.686", + "dc/svpg/ILOEMPNIFLNB.687", + "dc/svpg/ILOEMPNIFLNB.688", + "dc/svpg/ILOEMPNIFLNB.689", + "dc/svpg/ILOEMPNIFLNB.690", + "dc/svpg/ILOEMPNIFLNB.691", + "dc/svpg/ILOEMPNIFLNB.692", + "dc/svpg/ILOEMPNIFLNB.693", + "dc/svpg/ILOEMPNIFLNB.694", + "dc/svpg/ILOEMPNIFLNB.695", + "dc/svpg/ILOEMPNIFLNB.696", + "dc/svpg/ILOEMPNIFLNB.697", + "dc/svpg/ILOEMPNIFLNB.698", + "dc/svpg/ILOEMPNIFLNB.699", + "dc/svpg/ILOEMPNIFLNB.700", + "dc/svpg/ILOEMPNIFLNB.701", + "dc/svpg/ILOEMPNIFLNB.702", + "dc/svpg/ILOEMPNIFLNB.703", + "dc/svpg/ILOEMPNIFLNB.704", + "dc/svpg/ILOEMPNIFLNB.705", + "dc/svpg/ILOEMPNIFLNB.706", + "dc/svpg/ILOEMPNIFLNB.707", + "dc/svpg/ILOEMPNIFLNB.708", + "dc/svpg/ILOEMPNIFLNB.709", + "dc/svpg/ILOEMPNIFLNB.710", + "dc/svpg/ILOEMPNIFLNB.711", + "dc/svpg/ILOEMPNIFLNB.712", + "dc/svpg/ILOEMPNIFLNB.713", + "dc/svpg/ILOEMPNIFLNB.714", + "dc/svpg/ILOEMPNIFLNB.715", + "dc/svpg/ILOEMPNIFLNB.716", + "dc/svpg/ILOEMPNIFLNB.717", + "dc/svpg/ILOEMPNIFLNB.718", + "dc/svpg/ILOEMPNIFLNB.719", + "dc/svpg/ILOEMPNIFLNB.720", + "dc/svpg/ILOEMPNIFLNB.721", + "dc/svpg/ILOEMPNIFLNB.722", + "dc/svpg/ILOEMPNIFLNB.723", + "dc/svpg/ILOEMPNIFLNB.724", + "dc/svpg/ILOEMPNIFLNB.725", + "dc/svpg/ILOEMPNIFLNB.726", + "dc/svpg/ILOEMPNIFLNB.729", + "dc/svpg/ILOEMPNIFLNB.730", + "dc/svpg/ILOEMPNIFLNB.731", + "dc/svpg/ILOEMPNIFLNB.732", + "dc/svpg/ILOEMPNIFLNB.733", + "dc/svpg/ILOEMPNIFLNB.734", + "dc/svpg/ILOEMPNIFLNB.736", + "dc/svpg/ILOEMPNIFLNB.737", + "dc/svpg/ILOEMPNIFLNB.738", + "dc/svpg/ILOEMPNIFLNB.739", + "dc/svpg/ILOEMPNIFLNB.741", + "dc/svpg/ILOEMPNIFLNB.742", + "dc/svpg/ILOEMPNIFLNB.743", + "dc/svpg/ILOEMPNIFLNB.744", + "dc/svpg/ILOEMPNIFLNB.745", + "dc/svpg/ILOEMPNIFLNB.746", + "dc/svpg/ILOEMPNIFLNB.747", + "dc/svpg/ILOEMPNIFLNB.748", + "dc/svpg/ILOEMPNIFLNB.755", + "dc/svpg/ILOEMPNIFLNB.756", + "dc/svpg/ILOEMPNIFLNB.757", + "dc/svpg/ILOEMPNIFLNB.758", + "dc/svpg/ILOEMPNIFLNB.761", + "dc/svpg/ILOEMPNIFLNB.762", + "dc/svpg/ILOEMPNIFLNB.764", + "dc/svpg/ILOEMPNIFLNB.766", + "dc/svpg/ILOEMPNIFLNB.767", + "dc/svpg/ILOEMPNIFLNB.768", + "dc/svpg/ILOEMPNIFLNB.769", + "dc/svpg/ILOEMPNIFLNB.771", + "dc/svpg/ILOEMPNIFLNB.773", + "dc/svpg/ILOEMPNIFLNB.774", + "dc/svpg/ILOEMPNIFLNB.775", + "dc/svpg/ILOEMPNIFLNB.779", + "dc/svpg/ILOEMPNIFLNB.780", + "dc/svpg/ILOEMPNIFLNB.783", + "dc/svpg/ILOEMPNIFLNB.784", + "dc/svpg/ILOEMPNIFLNB.785", + "dc/svpg/ILOEMPNIFLNB.786", + "dc/svpg/ILOEMPNIFLNB.789", + "dc/svpg/ILOEMPNIFLNB.790", + "dc/svpg/ILOEMPNIFLNB.792", + "dc/svpg/ILOEMPNIFLNB.793", + "dc/svpg/ILOEMPNIFLNB.794", + "dc/svpg/ILOEMPNIFLNB.799", + "dc/svpg/ILOEMPNIFLNB.800", + "dc/svpg/ILOEMPNIFLNB.801", + "dc/svpg/ILOEMPNIFLNB.802", + "dc/svpg/ILOEMPNIFLNB.803", + "dc/svpg/ILOEMPNIFLNB.804", + "dc/svpg/ILOEMPNIFLNB.805", + "dc/svpg/ILOEMPNIFLNB.807", + "dc/svpg/ILOEMPNIFLNB.808", + "dc/svpg/ILOEMPNIFLNB.811", + "dc/svpg/ILOEMPNIFLNB.812", + "dc/svpg/ILOEMPNIFLNB.813", + "dc/svpg/ILOEMPNIFLNB.818", + "dc/svpg/ILOEMPNIFLNB.819", + "dc/svpg/ILOEMPNIFLNB.820", + "dc/svpg/ILOEMPNIFLNB.821", + "dc/svpg/ILOEMPNIFLNB.822", + "dc/svpg/ILOEMPNIFLNB.823", + "dc/svpg/ILOEMPNIFLNB.824", + "dc/svpg/ILOEMPNIFLNB.825", + "dc/svpg/ILOEMPNIFLNB.826", + "dc/svpg/ILOEMPNIFLNB.827", + "dc/svpg/ILOEMPNIFLNB.828", + "dc/svpg/ILOEMPNIFLNB.829", + "dc/svpg/ILOEMPNIFLNB.830", + "dc/svpg/ILOEMPNIFLNB.831", + "dc/svpg/ILOEMPNIFLNB.832", + "dc/svpg/ILOEMPNIFLNB.833", + "dc/svpg/ILOEMPNIFLNB.834", + "dc/svpg/ILOEMPNIFLNB.835", + "dc/svpg/ILOEMPNIFLNB.836", + "dc/svpg/ILOEMPNIFLNB.837", + "dc/svpg/ILOEMPNIFLNB.838", + "dc/svpg/ILOEMPNIFLNB.839", + "dc/svpg/ILOEMPNIFLNB.843", + "dc/svpg/ILOEMPNIFLNB.844", + "dc/svpg/ILOEMPNIFLNB.845", + "dc/svpg/ILOEMPNIFLNB.846", + "dc/svpg/ILOEMPNIFLNB.847", + "dc/svpg/ILOEMPNIFLNB.848", + "dc/svpg/ILOEMPNIFLNB.849", + "dc/svpg/ILOEMPNIFLNB.850", + "dc/svpg/ILOEMPNIFLNB.851", + "dc/svpg/ILOEMPNIFLNB.852", + "dc/svpg/ILOEMPNIFLNB.853", + "dc/svpg/ILOEMPNIFLNB.854", + "dc/svpg/ILOEMPNIFLNB.855", + "dc/svpg/ILOEMPNIFLNB.856", + "dc/svpg/ILOEMPNIFLNB.857", + "dc/svpg/ILOEMPNIFLNB.858", + "dc/svpg/ILOEMPNIFLNB.859", + "dc/svpg/ILOEMPNIFLNB.860", + "dc/svpg/ILOEMPNIFLNB.861", + "dc/svpg/ILOEMPNIFLNB.862", + "dc/svpg/ILOEMPNIFLNB.863", + "dc/svpg/ILOEMPNIFLNB.870", + "dc/svpg/ILOEMPNIFLNB.871", + "dc/svpg/ILOEMPNIFLNB.872", + "dc/svpg/ILOEMPNIFLNB.873", + "dc/svpg/ILOEMPNIFLNB.874", + "dc/svpg/ILOEMPNIFLNB.875", + "dc/svpg/ILOEMPNIFLNB.876", + "dc/svpg/ILOEMPNIFLNB.886", + "dc/svpg/ILOEMPNIFLNB.887", + "dc/svpg/ILOEMPNIFLNB.888", + "dc/svpg/ILOEMPNIFLNB.889", + "dc/svpg/ILOEMPNIFLNB.890", + "dc/svpg/ILOEMPNIFLNB.891", + "dc/svpg/ILOEMPNIFLNB.892", + "dc/svpg/ILOEMPNIFLNB.893", + "dc/svpg/ILOEMPNIFLNB.894", + "dc/svpg/ILOEMPNIFLNB.895", + "dc/svpg/ILOEMPNIFLNB.896", + "dc/svpg/ILOEMPNIFLNB.897", + "dc/svpg/ILOEMPNIFLNB.898", + "dc/svpg/ILOEMPNIFLNB.899", + "dc/svpg/ILOEMPNIFLNB.900", + "dc/svpg/ILOEMPNIFLNB.901", + "dc/svpg/ILOEMPNIFLNB.902", + "dc/svpg/ILOEMPNIFLNB.903", + "dc/svpg/ILOEMPNIFLNB.904", + "dc/svpg/ILOEMPNIFLNB.905", + "dc/svpg/ILOEMPNIFLNB.906", + "dc/svpg/ILOEMPNIFLNB.907", + "dc/svpg/ILOEMPNIFLNB.908", + "dc/svpg/ILOEMPNIFLNB.909", + "dc/svpg/ILOEMPNIFLNB.911", + "dc/svpg/ILOEMPNIFLNB.912", + "dc/svpg/ILOEMPNIFLNB.913", + "dc/svpg/ILOEMPNIFLNB.914", + "dc/svpg/ILOEMPNIFLNB.915", + "dc/svpg/ILOEMPNIFLNB.916", + "dc/svpg/ILOEMPNIFLNB.917", + "dc/svpg/ILOEMPNIFLNB.918", + "dc/svpg/ILOEMPNIFLNB.919", + "dc/svpg/ILOEMPNIFLNB.920", + "dc/svpg/ILOEMPNIFLNB.923", + "dc/svpg/ILOEMPNIFLNB.924", + "dc/svpg/ILOEMPNIFLNB.925", + "dc/svpg/ILOEMPNIFLNB.926", + "dc/svpg/ILOEMPNIFLNB.927", + "dc/svpg/ILOEMPNIFLNB.928", + "dc/svpg/ILOEMPNIFLNB.929", + "dc/svpg/ILOEMPNIFLNB.930", + "dc/svpg/ILOEMPNIFLNB.931", + "dc/svpg/ILOEMPNIFLNB.932", + "dc/svpg/ILOEMPNIFLNB.935", + "dc/svpg/ILOEMPNIFLNB.936", + "dc/svpg/ILOEMPNIFLNB.937", + "dc/svpg/ILOEMPNIFLNB.938", + "dc/svpg/ILOEMPNIFLNB.939", + "dc/svpg/ILOEMPNIFLNB.940", + "dc/svpg/ILOEMPNIFLNB.941", + "dc/svpg/ILOEMPNIFLNB.942", + "dc/svpg/ILOEMPNIFLNB.947", + "dc/svpg/ILOEMPNIFLNB.948", + "dc/svpg/ILOEMPNIFLNB.949", + "dc/svpg/ILOEMPNIFLNB.950", + "dc/svpg/ILOEMPNIFLNB.953", + "dc/svpg/ILOEMPNIFLNB.954", + "dc/svpg/ILOEMPNIFLNB.957", + "dc/svpg/ILOEMPNIFLNB.958", + "dc/svpg/ILOEMPNIFLNB.959", + "dc/svpg/ILOEMPNIFLNB.960", + "dc/svpg/ILOEMPNIFLNB.961", + "dc/svpg/ILOEMPNIFLNB.962", + "dc/svpg/ILOEMPNIFLNB.963", + "dc/svpg/ILOEMPNIFLNB.964", + "dc/svpg/ILOEMPNIFLNB.967", + "dc/svpg/ILOEMPNIFLNB.968", + "dc/svpg/ILOEMPNIFLNB.971", + "dc/svpg/ILOEMPNIFLNB.972", + "dc/svpg/ILOEMPNIFLNB.973", + "dc/svpg/ILOEMPNIFLNB.974", + "dc/svpg/ILOEMPNIFLNB.975", + "dc/svpg/ILOEMPNIFLNB.976", + "dc/svpg/ILOEMPNIFLNB.983", + "dc/svpg/ILOEMPNIFLNB.984", + "dc/svpg/ILOEMPNIFLNB.985", + "dc/svpg/ILOEMPNIFLNB.986", + "dc/svpg/ILOEMPNIFLNB.991", + "dc/svpg/ILOEMPNIFLNB.992", + "dc/svpg/ILOEMPNIFLNB.994", + "dc/svpg/ILOEMPNIFLNB.995", + "dc/svpg/ILOEMPNIFLNB.996", + "dc/svpg/ILOEMPNIFLNB.997", + "dc/svpg/ILOEMPNIFLNB.998", + "dc/svpg/ILOEMPNIFLNB.999", + "dc/svpg/ILOEMPNIFLNB.1004", + "dc/svpg/ILOEMPNIFLNB.1005", + "dc/svpg/ILOEMPNIFLNB.1006", + "dc/svpg/ILOEMPNIFLNB.1007", + "dc/svpg/ILOEMPNIFLNB.1010", + "dc/svpg/ILOEMPNIFLNB.1011", + "dc/svpg/ILOEMPNIFLNB.1012", + "dc/svpg/ILOEMPNIFLNB.1013", + "dc/svpg/ILOEMPNIFLNB.1014", + "dc/svpg/ILOEMPNIFLNB.1015", + "dc/svpg/ILOEMPNIFLNB.1024", + "dc/svpg/ILOEMPNIFLNB.1025", + "dc/svpg/ILOEMPNIFLNB.1026", + "dc/svpg/ILOEMPNIFLNB.1027", + "dc/svpg/ILOEMPNIFLNB.1028", + "dc/svpg/ILOEMPNIFLNB.1029", + "dc/svpg/ILOEMPNIFLNB.1031", + "dc/svpg/ILOEMPNIFLNB.1032", + "dc/svpg/ILOEMPNIFLNB.1033", + "dc/svpg/ILOEMPNIFLNB.1034", + "dc/svpg/ILOEMPNIFLNB.1035", + "dc/svpg/ILOEMPNIFLNB.1036", + "dc/svpg/ILOEMPNIFLNB.1037", + "dc/svpg/ILOEMPNIFLNB.1038", + "dc/svpg/ILOEMPNIFLNB.1041", + "dc/svpg/ILOEMPNIFLNB.1042", + "dc/svpg/ILOEMPNIFLNB.1043", + "dc/svpg/ILOEMPNIFLNB.1044", + "dc/svpg/ILOEMPNIFLNB.1049", + "dc/svpg/ILOEMPNIFLNB.1050", + "dc/svpg/ILOEMPNIFLNB.1051", + "dc/svpg/ILOEMPNIFLNB.1052", + "dc/svpg/ILOEMPNIFLNB.1053", + "dc/svpg/ILOEMPNIFLNB.1054", + "dc/svpg/ILOEMPNIFLNB.1064", + "dc/svpg/ILOEMPNIFLNB.1065", + "dc/svpg/ILOEMPNIFLNB.1066", + "dc/svpg/ILOEMPNIFLNB.1067", + "dc/svpg/ILOEMPNIFLNB.1068", + "dc/svpg/ILOEMPNIFLNB.1069", + "dc/svpg/ILOEMPNIFLNB.1070", + "dc/svpg/ILOEMPNIFLNB.1072", + "dc/svpg/ILOEMPNIFLNB.1073", + "dc/svpg/ILOEMPNIFLNB.1074", + "dc/svpg/ILOEMPNIFLNB.1075", + "dc/svpg/ILOEMPNIFLNB.1076", + "dc/svpg/ILOEMPNIFLNB.1078", + "dc/svpg/ILOEMPNIFLNB.1079", + "dc/svpg/ILOEMPNIFLNB.1101", + "dc/svpg/ILOEMPNIFLNB.1102", + "dc/svpg/ILOEMPNIFLNB.1103", + "dc/svpg/ILOEMPNIFLNB.1104", + "dc/svpg/ILOEMPNIFLNB.1105", + "dc/svpg/ILOEMPNIFLNB.1106", + "dc/svpg/ILOEMPNIFLNB.1107", + "dc/svpg/ILOEMPNIFLNB.1108", + "dc/svpg/ILOEMPNIFLNB.1109", + "dc/svpg/ILOEMPNIFLNB.1110", + "dc/svpg/ILOEMPNIFLNB.1111", + "dc/svpg/ILOEMPNIFLNB.1112", + "dc/svpg/ILOEMPNIFLNB.1113", + "dc/svpg/ILOEMPNIFLNB.1114", + "dc/svpg/ILOEMPNIFLNB.1115", + "dc/svpg/ILOEMPNIFLNB.1116", + "dc/svpg/ILOEMPNIFLNB.1117", + "dc/svpg/ILOEMPNIFLNB.1118", + "dc/svpg/ILOEMPNIFLNB.1119", + "dc/svpg/ILOEMPNIFLNB.1120", + "dc/svpg/ILOEMPNIFLNB.1121", + "dc/svpg/ILOEMPNIFLNB.1122", + "dc/svpg/ILOEMPNIFLNB.1123", + "dc/svpg/ILOEMPNIFLNB.1124", + "dc/svpg/ILOEMPNIFLNB.1125", + "dc/svpg/ILOEMPNIFLNB.1126", + "dc/svpg/ILOEMPNIFLNB.1127", + "dc/svpg/ILOEMPNIFLNB.1128", + "dc/svpg/ILOEMPNIFLNB.1129", + "dc/svpg/ILOEMPNIFLNB.1130", + "dc/svpg/ILOEMPNIFLNB.1131", + "dc/svpg/ILOEMPNIFLNB.1132", + "dc/svpg/ILOEMPNIFLNB.1133", + "dc/svpg/ILOEMPNIFLNB.1134", + "dc/svpg/ILOEMPNIFLNB.1135", + "dc/svpg/ILOEMPNIFLNB.1136", + "dc/svpg/ILOEMPNIFLNB.1137", + "dc/svpg/ILOEMPNIFLNB.1138", + "dc/svpg/ILOEMPNIFLNB.1139", + "dc/svpg/ILOEMPNIFLNB.1140", + "dc/svpg/ILOEMPNIFLNB.1141", + "dc/svpg/ILOEMPNIFLNB.1142", + "dc/svpg/ILOEMPNIFLNB.1143", + "dc/svpg/ILOEMPNIFLNB.1144", + "dc/svpg/ILOEMPNIFLNB.1145", + "dc/svpg/ILOEMPNIFLNB.1146", + "dc/svpg/ILOEMPNIFLNB.1147", + "dc/svpg/ILOEMPNIFLNB.1148", + "dc/svpg/ILOEMPNIFLNB.1149", + "dc/svpg/ILOEMPNIFLNB.1150", + "dc/svpg/ILOEMPNIFLNB.1155", + "dc/svpg/ILOEMPNIFLNB.1156", + "dc/svpg/ILOEMPNIFLNB.1157", + "dc/svpg/ILOEMPNIFLNB.1158", + "dc/svpg/ILOEMPNIFLNB.1159", + "dc/svpg/ILOEMPNIFLNB.1160", + "dc/svpg/ILOEMPNIFLNB.1161", + "dc/svpg/ILOEMPNIFLNB.1162", + "dc/svpg/ILOEMPNIFLNB.1163", + "dc/svpg/ILOEMPNIFLNB.1164", + "dc/svpg/ILOEMPNIFLNB.1165", + "dc/svpg/ILOEMPNIFLNB.1166", + "dc/svpg/ILOEMPNIFLNB.1167", + "dc/svpg/ILOEMPNIFLNB.1168", + "dc/svpg/ILOEMPNIFLNB.1169", + "dc/svpg/ILOEMPNIFLNB.1170", + "dc/svpg/ILOEMPNIFLNB.1171", + "dc/svpg/ILOEMPNIFLNB.1172", + "dc/svpg/ILOEMPNIFLNB.1173", + "dc/svpg/ILOEMPNIFLNB.1174", + "dc/svpg/ILOEMPNIFLNB.1179", + "dc/svpg/ILOEMPNIFLNB.1180", + "dc/svpg/ILOEMPNIFLNB.1181", + "dc/svpg/ILOEMPNIFLNB.1182", + "dc/svpg/ILOEMPNIFLNB.1183", + "dc/svpg/ILOEMPNIFLNB.1184", + "dc/svpg/ILOEMPNIFLNB.1185", + "dc/svpg/ILOEMPNIFLNB.1186", + "dc/svpg/ILOEMPNIFLNB.1187", + "dc/svpg/ILOEMPNIFLNB.1188", + "dc/svpg/ILOEMPNIFLNB.1190", + "dc/svpg/ILOEMPNIFLNB.1191", + "dc/svpg/ILOEMPNIFLNB.1193", + "dc/svpg/ILOEMPNIFLNB.1194", + "dc/svpg/ILOEMPNIFLNB.1195", + "dc/svpg/ILOEMPNIFLNB.1196", + "dc/svpg/ILOEMPNIFLNB.1197", + "dc/svpg/ILOEMPNIFLNB.1198", + "dc/svpg/ILOEMPNIFLNB.1199", + "dc/svpg/ILOEMPNIFLNB.1200", + "dc/svpg/ILOEMPNIFLNB.1201", + "dc/svpg/ILOEMPNIFLNB.1202", + "dc/svpg/ILOEMPNIFLNB.1203", + "dc/svpg/ILOEMPNIFLNB.1204", + "dc/svpg/ILOEMPNIFLNB.1205", + "dc/svpg/ILOEMPNIFLNB.1206", + "dc/svpg/ILOEMPNIFLNB.1207", + "dc/svpg/ILOEMPNIFLNB.1208", + "dc/svpg/ILOEMPNIFLNB.1209", + "dc/svpg/ILOEMPNIFLNB.1210", + "dc/svpg/ILOEMPNIFLNB.1211", + "dc/svpg/ILOEMPNIFLNB.1212", + "dc/svpg/ILOEMPNIFLNB.1213", + "dc/svpg/ILOEMPNIFLNB.1214", + "dc/svpg/ILOEMPNIFLNB.1215", + "dc/svpg/ILOEMPNIFLNB.1216", + "dc/svpg/ILOEMPNIFLNB.1217", + "dc/svpg/ILOEMPNIFLNB.1218", + "dc/svpg/ILOEMPNIFLNB.1219", + "dc/svpg/ILOEMPNIFLNB.1222", + "dc/svpg/ILOEMPNIFLNB.1223", + "dc/svpg/ILOEMPNIFLNB.1224", + "dc/svpg/ILOEMPNIFLNB.1225", + "dc/svpg/ILOEMPNIFLNB.1226", + "dc/svpg/ILOEMPNIFLNB.1227", + "dc/svpg/ILOEMPNIFLNB.1228", + "dc/svpg/ILOEMPNIFLNB.1229", + "dc/svpg/ILOEMPNIFLNB.1230", + "dc/svpg/ILOEMPNIFLNB.1231", + "dc/svpg/ILOEMPNIFLNB.1232", + "dc/svpg/ILOEMPNIFLNB.1233", + "dc/svpg/ILOEMPNIFLNB.1234", + "dc/svpg/ILOEMPNIFLNB.1235", + "dc/svpg/ILOEMPNIFLNB.1236", + "dc/svpg/ILOEMPNIFLNB.1237", + "dc/svpg/ILOEMPNIFLNB.1238", + "dc/svpg/ILOEMPNIFLNB.1239", + "dc/svpg/ILOEMPNIFLNB.1240", + "dc/svpg/ILOEMPNIFLNB.1241", + "dc/svpg/ILOEMPNIFLNB.1242", + "dc/svpg/ILOEMPNIFLNB.1243", + "dc/svpg/ILOEMPNIFLNB.1244", + "dc/svpg/ILOEMPNIFLNB.1245", + "dc/svpg/ILOEMPNIFLNB.1246", + "dc/svpg/ILOEMPNIFLNB.1247", + "dc/svpg/ILOEMPNIFLNB.1248", + "dc/svpg/ILOEMPNIFLNB.1249", + "dc/svpg/ILOEMPNIFLNB.1252", + "dc/svpg/ILOEMPNIFLNB.1253", + "dc/svpg/ILOEMPNIFLNB.1254", + "dc/svpg/ILOEMPNIFLNB.1260", + "dc/svpg/ILOEMPNIFLNB.1261", + "dc/svpg/ILOEMPNIFLNB.1262", + "dc/svpg/ILOEMPNIFLNB.1263", + "dc/svpg/ILOEMPNIFLNB.1264", + "dc/svpg/ILOEMPNIFLNB.1265", + "dc/svpg/ILOEMPNIFLNB.1266", + "dc/svpg/ILOEMPNIFLNB.1267", + "dc/svpg/ILOEMPNIFLNB.1268", + "dc/svpg/ILOEMPNIFLNB.1269", + "dc/svpg/ILOEMPNIFLNB.1270", + "dc/svpg/ILOEMPNIFLNB.1271", + "dc/svpg/ILOEMPNIFLNB.1272", + "dc/svpg/ILOEMPNIFLNB.1273", + "dc/svpg/ILOEMPNIFLNB.1274", + "dc/svpg/ILOEMPNIFLNB.1276", + "dc/svpg/ILOEMPNIFLNB.1277", + "dc/svpg/ILOEMPNIFLNB.1278", + "dc/svpg/ILOEMPNIFLNB.1279", + "dc/svpg/ILOEMPNIFLNB.1280", + "dc/svpg/ILOEMPNIFLNB.1281", + "dc/svpg/ILOEMPNIFLNB.1282", + "dc/svpg/ILOEMPNIFLNB.1283", + "dc/svpg/ILOEMPNIFLNB.1284", + "dc/svpg/ILOEMPNIFLNB.1286", + "dc/svpg/ILOEMPNIFLNB.1287", + "dc/svpg/ILOEMPNIFLNB.1288", + "dc/svpg/ILOEMPNIFLNB.1289", + "dc/svpg/ILOEMPNIFLNB.1290", + "dc/svpg/ILOEMPNIFLNB.1291", + "dc/svpg/ILOEMPNIFLNB.1293", + "dc/svpg/ILOEMPNIFLNB.1294", + "dc/svpg/ILOEMPNIFLNB.1295", + "dc/svpg/ILOEMPNIFLNB.1296", + "dc/svpg/ILOEMPNIFLNB.1298", + "dc/svpg/ILOEMPNIFLNB.1299" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age" + ], + "name": [ + "Informal Employment by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilooccupation", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 34 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 To 54 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 35 To 44 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 45 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 55 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilooccupation", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 15 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilooccupation", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilooccupation" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age = 25 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age = 65 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Age, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Age, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment With Age, Observation Status = Break in Series, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment With Age, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment With Age, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment With Age, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus" + ], + "name": [ + "Informal Employment by Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status = Persons Without Disability, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment With Disability Status, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Disability Status, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Disability Status, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Disability Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity" + ], + "name": [ + "Informal Employment by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Informal Employment With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Informal Employment With Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Construction (ISIC3_F45), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Informal Employment With Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Hotels And Restaurants (ISIC3_H55), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Informal Employment With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Informal Employment With Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Education (ISIC3_M80), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Informal Employment With Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Health And Social Work (ISIC3_N85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Informal Employment With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01" + ], + "name": [ + "Informal Employment With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Manufacture of Furniture (ISIC4_C31), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Informal Employment With Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Other Manufacturing (ISIC4_C32), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Informal Employment With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Informal Employment With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47" + ], + "name": [ + "Informal Employment With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Informal Employment With Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Real Estate Activities (ISIC4_L68), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Informal Employment With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Informal Employment With Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Education (ISIC4_P85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Informal Employment With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Informal Employment With Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus" + ], + "name": [ + "Informal Employment With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ], + "name": [ + "Informal Employment With Economic Activity = Not Elsewhere Classified (ISIC4_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Economic Activity, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Economic Activity, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel" + ], + "name": [ + "Informal Employment by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Informal Employment With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Basic, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U", + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Education Level = X. No Schooling, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--U", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Education Level, Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Education Level, Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Education Level, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Education Level, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus" + ], + "name": [ + "Informal Employment by Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single / Widowed / Divorced, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment With Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status = Married, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Married, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status = Married, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment With Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Single, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ], + "name": [ + "Informal Employment With Marital Status = Single, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status = Single, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment With Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment With Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status, Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Marital Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Marital Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus" + ], + "name": [ + "Informal Employment by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X", + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01", + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X", + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment With Observation Status, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment With Observation Status, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Informal Employment With Observation Status, Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Informal Employment With Observation Status, Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment With Observation Status, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Observation Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Observation Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Observation Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation" + ], + "name": [ + "Informal Employment by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment With Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Informal Employment With Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment With Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ], + "name": [ + "Informal Employment With Occupation = Armed Forces (ISCO88_01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Informal Employment With Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ], + "name": [ + "Informal Employment With Occupation = Models, Salespersons And Demonstrators (ISCO88_52), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Informal Employment With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ], + "name": [ + "Informal Employment With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment With Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Informal Employment With Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex" + ], + "name": [ + "Informal Employment by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Informal Employment With Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Informal Employment With Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_disabilityStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeconomicActivity_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment With Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilourbanisation" + ], + "name": [ + "Informal Employment by Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment With Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLNB_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment With Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT" + ], + "name": [ + "Informal Employment Rate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT", + "dc/topic/ILOEMPNIFLRT_age", + "dc/topic/ILOEMPNIFLRT_disabilityStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilooccupation", + "dc/topic/ILOEMPNIFLRT_ilosex", + "dc/topic/ILOEMPNIFLRT_ilourbanisation", + "dc/svpg/ILOEMPNIFLRT.002", + "dc/svpg/ILOEMPNIFLRT.003", + "dc/svpg/ILOEMPNIFLRT.004", + "dc/svpg/ILOEMPNIFLRT.005", + "dc/svpg/ILOEMPNIFLRT.006", + "dc/svpg/ILOEMPNIFLRT.007", + "dc/svpg/ILOEMPNIFLRT.008", + "dc/svpg/ILOEMPNIFLRT.011", + "dc/svpg/ILOEMPNIFLRT.012", + "dc/svpg/ILOEMPNIFLRT.013", + "dc/svpg/ILOEMPNIFLRT.014", + "dc/svpg/ILOEMPNIFLRT.015", + "dc/svpg/ILOEMPNIFLRT.016", + "dc/svpg/ILOEMPNIFLRT.017", + "dc/svpg/ILOEMPNIFLRT.018", + "dc/svpg/ILOEMPNIFLRT.019", + "dc/svpg/ILOEMPNIFLRT.020", + "dc/svpg/ILOEMPNIFLRT.021", + "dc/svpg/ILOEMPNIFLRT.022", + "dc/svpg/ILOEMPNIFLRT.026", + "dc/svpg/ILOEMPNIFLRT.027", + "dc/svpg/ILOEMPNIFLRT.028", + "dc/svpg/ILOEMPNIFLRT.029", + "dc/svpg/ILOEMPNIFLRT.030", + "dc/svpg/ILOEMPNIFLRT.031", + "dc/svpg/ILOEMPNIFLRT.032", + "dc/svpg/ILOEMPNIFLRT.033", + "dc/svpg/ILOEMPNIFLRT.034", + "dc/svpg/ILOEMPNIFLRT.035", + "dc/svpg/ILOEMPNIFLRT.036", + "dc/svpg/ILOEMPNIFLRT.037", + "dc/svpg/ILOEMPNIFLRT.044", + "dc/svpg/ILOEMPNIFLRT.045", + "dc/svpg/ILOEMPNIFLRT.046", + "dc/svpg/ILOEMPNIFLRT.047", + "dc/svpg/ILOEMPNIFLRT.048", + "dc/svpg/ILOEMPNIFLRT.049", + "dc/svpg/ILOEMPNIFLRT.053", + "dc/svpg/ILOEMPNIFLRT.054", + "dc/svpg/ILOEMPNIFLRT.055", + "dc/svpg/ILOEMPNIFLRT.059", + "dc/svpg/ILOEMPNIFLRT.060", + "dc/svpg/ILOEMPNIFLRT.061", + "dc/svpg/ILOEMPNIFLRT.062", + "dc/svpg/ILOEMPNIFLRT.063", + "dc/svpg/ILOEMPNIFLRT.064", + "dc/svpg/ILOEMPNIFLRT.065", + "dc/svpg/ILOEMPNIFLRT.066", + "dc/svpg/ILOEMPNIFLRT.067", + "dc/svpg/ILOEMPNIFLRT.068", + "dc/svpg/ILOEMPNIFLRT.069", + "dc/svpg/ILOEMPNIFLRT.070", + "dc/svpg/ILOEMPNIFLRT.074", + "dc/svpg/ILOEMPNIFLRT.075", + "dc/svpg/ILOEMPNIFLRT.076", + "dc/svpg/ILOEMPNIFLRT.080", + "dc/svpg/ILOEMPNIFLRT.081", + "dc/svpg/ILOEMPNIFLRT.082", + "dc/svpg/ILOEMPNIFLRT.083", + "dc/svpg/ILOEMPNIFLRT.084", + "dc/svpg/ILOEMPNIFLRT.085", + "dc/svpg/ILOEMPNIFLRT.086", + "dc/svpg/ILOEMPNIFLRT.087", + "dc/svpg/ILOEMPNIFLRT.088", + "dc/svpg/ILOEMPNIFLRT.098", + "dc/svpg/ILOEMPNIFLRT.099", + "dc/svpg/ILOEMPNIFLRT.100", + "dc/svpg/ILOEMPNIFLRT.101", + "dc/svpg/ILOEMPNIFLRT.102", + "dc/svpg/ILOEMPNIFLRT.103", + "dc/svpg/ILOEMPNIFLRT.110", + "dc/svpg/ILOEMPNIFLRT.111", + "dc/svpg/ILOEMPNIFLRT.112", + "dc/svpg/ILOEMPNIFLRT.113", + "dc/svpg/ILOEMPNIFLRT.114", + "dc/svpg/ILOEMPNIFLRT.115", + "dc/svpg/ILOEMPNIFLRT.116", + "dc/svpg/ILOEMPNIFLRT.117", + "dc/svpg/ILOEMPNIFLRT.118", + "dc/svpg/ILOEMPNIFLRT.119", + "dc/svpg/ILOEMPNIFLRT.120", + "dc/svpg/ILOEMPNIFLRT.121", + "dc/svpg/ILOEMPNIFLRT.128", + "dc/svpg/ILOEMPNIFLRT.129", + "dc/svpg/ILOEMPNIFLRT.130", + "dc/svpg/ILOEMPNIFLRT.131", + "dc/svpg/ILOEMPNIFLRT.132", + "dc/svpg/ILOEMPNIFLRT.133", + "dc/svpg/ILOEMPNIFLRT.137", + "dc/svpg/ILOEMPNIFLRT.138", + "dc/svpg/ILOEMPNIFLRT.139", + "dc/svpg/ILOEMPNIFLRT.140", + "dc/svpg/ILOEMPNIFLRT.141", + "dc/svpg/ILOEMPNIFLRT.142", + "dc/svpg/ILOEMPNIFLRT.143", + "dc/svpg/ILOEMPNIFLRT.144", + "dc/svpg/ILOEMPNIFLRT.145", + "dc/svpg/ILOEMPNIFLRT.158", + "dc/svpg/ILOEMPNIFLRT.159", + "dc/svpg/ILOEMPNIFLRT.160", + "dc/svpg/ILOEMPNIFLRT.161", + "dc/svpg/ILOEMPNIFLRT.162", + "dc/svpg/ILOEMPNIFLRT.163", + "dc/svpg/ILOEMPNIFLRT.164", + "dc/svpg/ILOEMPNIFLRT.165", + "dc/svpg/ILOEMPNIFLRT.166", + "dc/svpg/ILOEMPNIFLRT.167", + "dc/svpg/ILOEMPNIFLRT.168", + "dc/svpg/ILOEMPNIFLRT.169", + "dc/svpg/ILOEMPNIFLRT.170", + "dc/svpg/ILOEMPNIFLRT.171", + "dc/svpg/ILOEMPNIFLRT.172", + "dc/svpg/ILOEMPNIFLRT.173", + "dc/svpg/ILOEMPNIFLRT.174", + "dc/svpg/ILOEMPNIFLRT.175", + "dc/svpg/ILOEMPNIFLRT.176", + "dc/svpg/ILOEMPNIFLRT.177", + "dc/svpg/ILOEMPNIFLRT.178", + "dc/svpg/ILOEMPNIFLRT.182", + "dc/svpg/ILOEMPNIFLRT.183", + "dc/svpg/ILOEMPNIFLRT.184", + "dc/svpg/ILOEMPNIFLRT.185", + "dc/svpg/ILOEMPNIFLRT.186", + "dc/svpg/ILOEMPNIFLRT.187", + "dc/svpg/ILOEMPNIFLRT.194", + "dc/svpg/ILOEMPNIFLRT.195", + "dc/svpg/ILOEMPNIFLRT.196", + "dc/svpg/ILOEMPNIFLRT.197", + "dc/svpg/ILOEMPNIFLRT.198", + "dc/svpg/ILOEMPNIFLRT.199", + "dc/svpg/ILOEMPNIFLRT.200", + "dc/svpg/ILOEMPNIFLRT.201", + "dc/svpg/ILOEMPNIFLRT.202", + "dc/svpg/ILOEMPNIFLRT.221", + "dc/svpg/ILOEMPNIFLRT.222", + "dc/svpg/ILOEMPNIFLRT.223", + "dc/svpg/ILOEMPNIFLRT.224", + "dc/svpg/ILOEMPNIFLRT.225", + "dc/svpg/ILOEMPNIFLRT.226", + "dc/svpg/ILOEMPNIFLRT.227", + "dc/svpg/ILOEMPNIFLRT.228", + "dc/svpg/ILOEMPNIFLRT.229", + "dc/svpg/ILOEMPNIFLRT.230", + "dc/svpg/ILOEMPNIFLRT.231", + "dc/svpg/ILOEMPNIFLRT.232", + "dc/svpg/ILOEMPNIFLRT.233", + "dc/svpg/ILOEMPNIFLRT.234", + "dc/svpg/ILOEMPNIFLRT.235", + "dc/svpg/ILOEMPNIFLRT.236", + "dc/svpg/ILOEMPNIFLRT.237", + "dc/svpg/ILOEMPNIFLRT.238", + "dc/svpg/ILOEMPNIFLRT.239", + "dc/svpg/ILOEMPNIFLRT.240", + "dc/svpg/ILOEMPNIFLRT.241", + "dc/svpg/ILOEMPNIFLRT.242", + "dc/svpg/ILOEMPNIFLRT.243", + "dc/svpg/ILOEMPNIFLRT.244", + "dc/svpg/ILOEMPNIFLRT.245", + "dc/svpg/ILOEMPNIFLRT.246", + "dc/svpg/ILOEMPNIFLRT.247", + "dc/svpg/ILOEMPNIFLRT.248", + "dc/svpg/ILOEMPNIFLRT.249", + "dc/svpg/ILOEMPNIFLRT.250", + "dc/svpg/ILOEMPNIFLRT.251", + "dc/svpg/ILOEMPNIFLRT.252", + "dc/svpg/ILOEMPNIFLRT.253", + "dc/svpg/ILOEMPNIFLRT.254", + "dc/svpg/ILOEMPNIFLRT.255", + "dc/svpg/ILOEMPNIFLRT.256", + "dc/svpg/ILOEMPNIFLRT.257", + "dc/svpg/ILOEMPNIFLRT.258", + "dc/svpg/ILOEMPNIFLRT.259", + "dc/svpg/ILOEMPNIFLRT.260", + "dc/svpg/ILOEMPNIFLRT.261", + "dc/svpg/ILOEMPNIFLRT.262", + "dc/svpg/ILOEMPNIFLRT.263", + "dc/svpg/ILOEMPNIFLRT.264", + "dc/svpg/ILOEMPNIFLRT.265", + "dc/svpg/ILOEMPNIFLRT.266", + "dc/svpg/ILOEMPNIFLRT.267", + "dc/svpg/ILOEMPNIFLRT.268", + "dc/svpg/ILOEMPNIFLRT.269", + "dc/svpg/ILOEMPNIFLRT.270", + "dc/svpg/ILOEMPNIFLRT.271", + "dc/svpg/ILOEMPNIFLRT.272", + "dc/svpg/ILOEMPNIFLRT.273", + "dc/svpg/ILOEMPNIFLRT.274", + "dc/svpg/ILOEMPNIFLRT.275", + "dc/svpg/ILOEMPNIFLRT.276", + "dc/svpg/ILOEMPNIFLRT.277", + "dc/svpg/ILOEMPNIFLRT.278", + "dc/svpg/ILOEMPNIFLRT.279", + "dc/svpg/ILOEMPNIFLRT.280", + "dc/svpg/ILOEMPNIFLRT.281", + "dc/svpg/ILOEMPNIFLRT.282", + "dc/svpg/ILOEMPNIFLRT.283", + "dc/svpg/ILOEMPNIFLRT.284", + "dc/svpg/ILOEMPNIFLRT.285", + "dc/svpg/ILOEMPNIFLRT.286", + "dc/svpg/ILOEMPNIFLRT.287", + "dc/svpg/ILOEMPNIFLRT.288", + "dc/svpg/ILOEMPNIFLRT.289", + "dc/svpg/ILOEMPNIFLRT.290", + "dc/svpg/ILOEMPNIFLRT.291", + "dc/svpg/ILOEMPNIFLRT.292", + "dc/svpg/ILOEMPNIFLRT.293", + "dc/svpg/ILOEMPNIFLRT.294", + "dc/svpg/ILOEMPNIFLRT.295", + "dc/svpg/ILOEMPNIFLRT.296", + "dc/svpg/ILOEMPNIFLRT.297", + "dc/svpg/ILOEMPNIFLRT.298", + "dc/svpg/ILOEMPNIFLRT.299", + "dc/svpg/ILOEMPNIFLRT.300", + "dc/svpg/ILOEMPNIFLRT.301", + "dc/svpg/ILOEMPNIFLRT.302", + "dc/svpg/ILOEMPNIFLRT.303", + "dc/svpg/ILOEMPNIFLRT.304", + "dc/svpg/ILOEMPNIFLRT.305", + "dc/svpg/ILOEMPNIFLRT.306", + "dc/svpg/ILOEMPNIFLRT.307", + "dc/svpg/ILOEMPNIFLRT.308", + "dc/svpg/ILOEMPNIFLRT.309", + "dc/svpg/ILOEMPNIFLRT.310", + "dc/svpg/ILOEMPNIFLRT.311", + "dc/svpg/ILOEMPNIFLRT.312", + "dc/svpg/ILOEMPNIFLRT.313", + "dc/svpg/ILOEMPNIFLRT.314", + "dc/svpg/ILOEMPNIFLRT.315", + "dc/svpg/ILOEMPNIFLRT.316", + "dc/svpg/ILOEMPNIFLRT.317", + "dc/svpg/ILOEMPNIFLRT.318", + "dc/svpg/ILOEMPNIFLRT.319", + "dc/svpg/ILOEMPNIFLRT.320", + "dc/svpg/ILOEMPNIFLRT.321", + "dc/svpg/ILOEMPNIFLRT.322", + "dc/svpg/ILOEMPNIFLRT.323", + "dc/svpg/ILOEMPNIFLRT.324", + "dc/svpg/ILOEMPNIFLRT.325", + "dc/svpg/ILOEMPNIFLRT.326", + "dc/svpg/ILOEMPNIFLRT.327", + "dc/svpg/ILOEMPNIFLRT.328", + "dc/svpg/ILOEMPNIFLRT.329", + "dc/svpg/ILOEMPNIFLRT.330", + "dc/svpg/ILOEMPNIFLRT.331", + "dc/svpg/ILOEMPNIFLRT.332", + "dc/svpg/ILOEMPNIFLRT.333", + "dc/svpg/ILOEMPNIFLRT.334", + "dc/svpg/ILOEMPNIFLRT.335", + "dc/svpg/ILOEMPNIFLRT.336", + "dc/svpg/ILOEMPNIFLRT.337", + "dc/svpg/ILOEMPNIFLRT.338", + "dc/svpg/ILOEMPNIFLRT.339", + "dc/svpg/ILOEMPNIFLRT.340", + "dc/svpg/ILOEMPNIFLRT.341", + "dc/svpg/ILOEMPNIFLRT.342", + "dc/svpg/ILOEMPNIFLRT.343", + "dc/svpg/ILOEMPNIFLRT.344", + "dc/svpg/ILOEMPNIFLRT.345", + "dc/svpg/ILOEMPNIFLRT.346", + "dc/svpg/ILOEMPNIFLRT.359", + "dc/svpg/ILOEMPNIFLRT.360", + "dc/svpg/ILOEMPNIFLRT.361", + "dc/svpg/ILOEMPNIFLRT.362", + "dc/svpg/ILOEMPNIFLRT.363", + "dc/svpg/ILOEMPNIFLRT.364", + "dc/svpg/ILOEMPNIFLRT.365", + "dc/svpg/ILOEMPNIFLRT.366", + "dc/svpg/ILOEMPNIFLRT.367", + "dc/svpg/ILOEMPNIFLRT.368", + "dc/svpg/ILOEMPNIFLRT.369", + "dc/svpg/ILOEMPNIFLRT.370", + "dc/svpg/ILOEMPNIFLRT.371", + "dc/svpg/ILOEMPNIFLRT.372", + "dc/svpg/ILOEMPNIFLRT.373", + "dc/svpg/ILOEMPNIFLRT.374", + "dc/svpg/ILOEMPNIFLRT.375", + "dc/svpg/ILOEMPNIFLRT.376", + "dc/svpg/ILOEMPNIFLRT.377", + "dc/svpg/ILOEMPNIFLRT.378", + "dc/svpg/ILOEMPNIFLRT.379", + "dc/svpg/ILOEMPNIFLRT.380", + "dc/svpg/ILOEMPNIFLRT.381", + "dc/svpg/ILOEMPNIFLRT.382", + "dc/svpg/ILOEMPNIFLRT.383", + "dc/svpg/ILOEMPNIFLRT.384", + "dc/svpg/ILOEMPNIFLRT.385", + "dc/svpg/ILOEMPNIFLRT.386", + "dc/svpg/ILOEMPNIFLRT.387", + "dc/svpg/ILOEMPNIFLRT.388", + "dc/svpg/ILOEMPNIFLRT.395", + "dc/svpg/ILOEMPNIFLRT.396", + "dc/svpg/ILOEMPNIFLRT.397", + "dc/svpg/ILOEMPNIFLRT.398", + "dc/svpg/ILOEMPNIFLRT.399", + "dc/svpg/ILOEMPNIFLRT.400", + "dc/svpg/ILOEMPNIFLRT.401", + "dc/svpg/ILOEMPNIFLRT.402", + "dc/svpg/ILOEMPNIFLRT.403", + "dc/svpg/ILOEMPNIFLRT.404", + "dc/svpg/ILOEMPNIFLRT.405", + "dc/svpg/ILOEMPNIFLRT.406", + "dc/svpg/ILOEMPNIFLRT.407", + "dc/svpg/ILOEMPNIFLRT.408", + "dc/svpg/ILOEMPNIFLRT.409", + "dc/svpg/ILOEMPNIFLRT.410", + "dc/svpg/ILOEMPNIFLRT.411", + "dc/svpg/ILOEMPNIFLRT.412", + "dc/svpg/ILOEMPNIFLRT.413", + "dc/svpg/ILOEMPNIFLRT.414", + "dc/svpg/ILOEMPNIFLRT.415", + "dc/svpg/ILOEMPNIFLRT.416", + "dc/svpg/ILOEMPNIFLRT.417", + "dc/svpg/ILOEMPNIFLRT.418", + "dc/svpg/ILOEMPNIFLRT.419", + "dc/svpg/ILOEMPNIFLRT.420", + "dc/svpg/ILOEMPNIFLRT.421", + "dc/svpg/ILOEMPNIFLRT.422", + "dc/svpg/ILOEMPNIFLRT.423", + "dc/svpg/ILOEMPNIFLRT.424", + "dc/svpg/ILOEMPNIFLRT.425", + "dc/svpg/ILOEMPNIFLRT.426", + "dc/svpg/ILOEMPNIFLRT.427", + "dc/svpg/ILOEMPNIFLRT.428", + "dc/svpg/ILOEMPNIFLRT.429", + "dc/svpg/ILOEMPNIFLRT.430", + "dc/svpg/ILOEMPNIFLRT.431", + "dc/svpg/ILOEMPNIFLRT.432", + "dc/svpg/ILOEMPNIFLRT.433", + "dc/svpg/ILOEMPNIFLRT.434", + "dc/svpg/ILOEMPNIFLRT.435", + "dc/svpg/ILOEMPNIFLRT.436", + "dc/svpg/ILOEMPNIFLRT.437", + "dc/svpg/ILOEMPNIFLRT.438", + "dc/svpg/ILOEMPNIFLRT.439", + "dc/svpg/ILOEMPNIFLRT.440", + "dc/svpg/ILOEMPNIFLRT.462", + "dc/svpg/ILOEMPNIFLRT.463", + "dc/svpg/ILOEMPNIFLRT.464", + "dc/svpg/ILOEMPNIFLRT.465", + "dc/svpg/ILOEMPNIFLRT.466", + "dc/svpg/ILOEMPNIFLRT.467", + "dc/svpg/ILOEMPNIFLRT.468", + "dc/svpg/ILOEMPNIFLRT.469", + "dc/svpg/ILOEMPNIFLRT.470", + "dc/svpg/ILOEMPNIFLRT.471", + "dc/svpg/ILOEMPNIFLRT.472", + "dc/svpg/ILOEMPNIFLRT.473", + "dc/svpg/ILOEMPNIFLRT.474", + "dc/svpg/ILOEMPNIFLRT.475", + "dc/svpg/ILOEMPNIFLRT.476", + "dc/svpg/ILOEMPNIFLRT.477", + "dc/svpg/ILOEMPNIFLRT.478", + "dc/svpg/ILOEMPNIFLRT.479", + "dc/svpg/ILOEMPNIFLRT.480", + "dc/svpg/ILOEMPNIFLRT.481", + "dc/svpg/ILOEMPNIFLRT.482", + "dc/svpg/ILOEMPNIFLRT.483", + "dc/svpg/ILOEMPNIFLRT.484", + "dc/svpg/ILOEMPNIFLRT.485", + "dc/svpg/ILOEMPNIFLRT.486", + "dc/svpg/ILOEMPNIFLRT.487", + "dc/svpg/ILOEMPNIFLRT.488", + "dc/svpg/ILOEMPNIFLRT.489", + "dc/svpg/ILOEMPNIFLRT.490", + "dc/svpg/ILOEMPNIFLRT.491", + "dc/svpg/ILOEMPNIFLRT.492", + "dc/svpg/ILOEMPNIFLRT.493", + "dc/svpg/ILOEMPNIFLRT.494", + "dc/svpg/ILOEMPNIFLRT.495", + "dc/svpg/ILOEMPNIFLRT.496", + "dc/svpg/ILOEMPNIFLRT.497", + "dc/svpg/ILOEMPNIFLRT.498", + "dc/svpg/ILOEMPNIFLRT.499", + "dc/svpg/ILOEMPNIFLRT.500", + "dc/svpg/ILOEMPNIFLRT.501", + "dc/svpg/ILOEMPNIFLRT.502", + "dc/svpg/ILOEMPNIFLRT.503", + "dc/svpg/ILOEMPNIFLRT.504", + "dc/svpg/ILOEMPNIFLRT.505", + "dc/svpg/ILOEMPNIFLRT.506", + "dc/svpg/ILOEMPNIFLRT.508", + "dc/svpg/ILOEMPNIFLRT.509", + "dc/svpg/ILOEMPNIFLRT.511", + "dc/svpg/ILOEMPNIFLRT.512", + "dc/svpg/ILOEMPNIFLRT.514", + "dc/svpg/ILOEMPNIFLRT.515", + "dc/svpg/ILOEMPNIFLRT.517", + "dc/svpg/ILOEMPNIFLRT.518", + "dc/svpg/ILOEMPNIFLRT.519", + "dc/svpg/ILOEMPNIFLRT.520", + "dc/svpg/ILOEMPNIFLRT.521", + "dc/svpg/ILOEMPNIFLRT.522", + "dc/svpg/ILOEMPNIFLRT.523", + "dc/svpg/ILOEMPNIFLRT.524", + "dc/svpg/ILOEMPNIFLRT.525", + "dc/svpg/ILOEMPNIFLRT.526", + "dc/svpg/ILOEMPNIFLRT.527", + "dc/svpg/ILOEMPNIFLRT.528", + "dc/svpg/ILOEMPNIFLRT.529", + "dc/svpg/ILOEMPNIFLRT.530", + "dc/svpg/ILOEMPNIFLRT.531", + "dc/svpg/ILOEMPNIFLRT.533", + "dc/svpg/ILOEMPNIFLRT.534", + "dc/svpg/ILOEMPNIFLRT.535", + "dc/svpg/ILOEMPNIFLRT.536", + "dc/svpg/ILOEMPNIFLRT.537", + "dc/svpg/ILOEMPNIFLRT.538", + "dc/svpg/ILOEMPNIFLRT.539", + "dc/svpg/ILOEMPNIFLRT.540", + "dc/svpg/ILOEMPNIFLRT.542", + "dc/svpg/ILOEMPNIFLRT.543", + "dc/svpg/ILOEMPNIFLRT.544", + "dc/svpg/ILOEMPNIFLRT.545", + "dc/svpg/ILOEMPNIFLRT.546", + "dc/svpg/ILOEMPNIFLRT.547", + "dc/svpg/ILOEMPNIFLRT.548", + "dc/svpg/ILOEMPNIFLRT.549", + "dc/svpg/ILOEMPNIFLRT.550", + "dc/svpg/ILOEMPNIFLRT.551", + "dc/svpg/ILOEMPNIFLRT.553", + "dc/svpg/ILOEMPNIFLRT.554", + "dc/svpg/ILOEMPNIFLRT.555", + "dc/svpg/ILOEMPNIFLRT.556", + "dc/svpg/ILOEMPNIFLRT.558", + "dc/svpg/ILOEMPNIFLRT.559", + "dc/svpg/ILOEMPNIFLRT.561", + "dc/svpg/ILOEMPNIFLRT.562", + "dc/svpg/ILOEMPNIFLRT.563", + "dc/svpg/ILOEMPNIFLRT.564", + "dc/svpg/ILOEMPNIFLRT.565", + "dc/svpg/ILOEMPNIFLRT.566", + "dc/svpg/ILOEMPNIFLRT.567", + "dc/svpg/ILOEMPNIFLRT.568", + "dc/svpg/ILOEMPNIFLRT.569", + "dc/svpg/ILOEMPNIFLRT.570", + "dc/svpg/ILOEMPNIFLRT.571", + "dc/svpg/ILOEMPNIFLRT.572", + "dc/svpg/ILOEMPNIFLRT.574", + "dc/svpg/ILOEMPNIFLRT.575", + "dc/svpg/ILOEMPNIFLRT.577", + "dc/svpg/ILOEMPNIFLRT.578", + "dc/svpg/ILOEMPNIFLRT.580", + "dc/svpg/ILOEMPNIFLRT.581", + "dc/svpg/ILOEMPNIFLRT.583", + "dc/svpg/ILOEMPNIFLRT.584", + "dc/svpg/ILOEMPNIFLRT.586", + "dc/svpg/ILOEMPNIFLRT.587", + "dc/svpg/ILOEMPNIFLRT.588", + "dc/svpg/ILOEMPNIFLRT.589", + "dc/svpg/ILOEMPNIFLRT.590", + "dc/svpg/ILOEMPNIFLRT.591", + "dc/svpg/ILOEMPNIFLRT.610", + "dc/svpg/ILOEMPNIFLRT.611", + "dc/svpg/ILOEMPNIFLRT.612", + "dc/svpg/ILOEMPNIFLRT.613", + "dc/svpg/ILOEMPNIFLRT.614", + "dc/svpg/ILOEMPNIFLRT.615", + "dc/svpg/ILOEMPNIFLRT.616", + "dc/svpg/ILOEMPNIFLRT.617", + "dc/svpg/ILOEMPNIFLRT.618", + "dc/svpg/ILOEMPNIFLRT.619", + "dc/svpg/ILOEMPNIFLRT.620", + "dc/svpg/ILOEMPNIFLRT.621", + "dc/svpg/ILOEMPNIFLRT.622", + "dc/svpg/ILOEMPNIFLRT.623", + "dc/svpg/ILOEMPNIFLRT.624", + "dc/svpg/ILOEMPNIFLRT.625", + "dc/svpg/ILOEMPNIFLRT.626", + "dc/svpg/ILOEMPNIFLRT.627", + "dc/svpg/ILOEMPNIFLRT.628", + "dc/svpg/ILOEMPNIFLRT.629", + "dc/svpg/ILOEMPNIFLRT.630", + "dc/svpg/ILOEMPNIFLRT.631", + "dc/svpg/ILOEMPNIFLRT.632", + "dc/svpg/ILOEMPNIFLRT.633", + "dc/svpg/ILOEMPNIFLRT.634", + "dc/svpg/ILOEMPNIFLRT.635", + "dc/svpg/ILOEMPNIFLRT.636", + "dc/svpg/ILOEMPNIFLRT.637", + "dc/svpg/ILOEMPNIFLRT.638", + "dc/svpg/ILOEMPNIFLRT.639", + "dc/svpg/ILOEMPNIFLRT.640", + "dc/svpg/ILOEMPNIFLRT.641", + "dc/svpg/ILOEMPNIFLRT.642", + "dc/svpg/ILOEMPNIFLRT.643", + "dc/svpg/ILOEMPNIFLRT.644", + "dc/svpg/ILOEMPNIFLRT.645", + "dc/svpg/ILOEMPNIFLRT.646", + "dc/svpg/ILOEMPNIFLRT.647", + "dc/svpg/ILOEMPNIFLRT.648", + "dc/svpg/ILOEMPNIFLRT.649", + "dc/svpg/ILOEMPNIFLRT.650", + "dc/svpg/ILOEMPNIFLRT.651", + "dc/svpg/ILOEMPNIFLRT.652", + "dc/svpg/ILOEMPNIFLRT.653", + "dc/svpg/ILOEMPNIFLRT.654", + "dc/svpg/ILOEMPNIFLRT.655", + "dc/svpg/ILOEMPNIFLRT.656", + "dc/svpg/ILOEMPNIFLRT.657", + "dc/svpg/ILOEMPNIFLRT.658", + "dc/svpg/ILOEMPNIFLRT.659", + "dc/svpg/ILOEMPNIFLRT.660", + "dc/svpg/ILOEMPNIFLRT.661", + "dc/svpg/ILOEMPNIFLRT.662", + "dc/svpg/ILOEMPNIFLRT.665", + "dc/svpg/ILOEMPNIFLRT.666", + "dc/svpg/ILOEMPNIFLRT.667", + "dc/svpg/ILOEMPNIFLRT.668", + "dc/svpg/ILOEMPNIFLRT.669", + "dc/svpg/ILOEMPNIFLRT.670", + "dc/svpg/ILOEMPNIFLRT.672", + "dc/svpg/ILOEMPNIFLRT.673", + "dc/svpg/ILOEMPNIFLRT.674", + "dc/svpg/ILOEMPNIFLRT.675", + "dc/svpg/ILOEMPNIFLRT.677", + "dc/svpg/ILOEMPNIFLRT.678", + "dc/svpg/ILOEMPNIFLRT.679", + "dc/svpg/ILOEMPNIFLRT.680", + "dc/svpg/ILOEMPNIFLRT.681", + "dc/svpg/ILOEMPNIFLRT.682", + "dc/svpg/ILOEMPNIFLRT.683", + "dc/svpg/ILOEMPNIFLRT.684", + "dc/svpg/ILOEMPNIFLRT.691", + "dc/svpg/ILOEMPNIFLRT.692", + "dc/svpg/ILOEMPNIFLRT.693", + "dc/svpg/ILOEMPNIFLRT.694", + "dc/svpg/ILOEMPNIFLRT.697", + "dc/svpg/ILOEMPNIFLRT.698", + "dc/svpg/ILOEMPNIFLRT.700", + "dc/svpg/ILOEMPNIFLRT.702", + "dc/svpg/ILOEMPNIFLRT.703", + "dc/svpg/ILOEMPNIFLRT.704", + "dc/svpg/ILOEMPNIFLRT.705", + "dc/svpg/ILOEMPNIFLRT.707", + "dc/svpg/ILOEMPNIFLRT.709", + "dc/svpg/ILOEMPNIFLRT.710", + "dc/svpg/ILOEMPNIFLRT.711", + "dc/svpg/ILOEMPNIFLRT.715", + "dc/svpg/ILOEMPNIFLRT.716", + "dc/svpg/ILOEMPNIFLRT.719", + "dc/svpg/ILOEMPNIFLRT.720", + "dc/svpg/ILOEMPNIFLRT.721", + "dc/svpg/ILOEMPNIFLRT.722", + "dc/svpg/ILOEMPNIFLRT.725", + "dc/svpg/ILOEMPNIFLRT.726", + "dc/svpg/ILOEMPNIFLRT.728", + "dc/svpg/ILOEMPNIFLRT.729", + "dc/svpg/ILOEMPNIFLRT.730", + "dc/svpg/ILOEMPNIFLRT.735", + "dc/svpg/ILOEMPNIFLRT.736", + "dc/svpg/ILOEMPNIFLRT.737", + "dc/svpg/ILOEMPNIFLRT.738", + "dc/svpg/ILOEMPNIFLRT.739", + "dc/svpg/ILOEMPNIFLRT.740", + "dc/svpg/ILOEMPNIFLRT.741", + "dc/svpg/ILOEMPNIFLRT.743", + "dc/svpg/ILOEMPNIFLRT.744", + "dc/svpg/ILOEMPNIFLRT.747", + "dc/svpg/ILOEMPNIFLRT.748", + "dc/svpg/ILOEMPNIFLRT.749", + "dc/svpg/ILOEMPNIFLRT.754", + "dc/svpg/ILOEMPNIFLRT.755", + "dc/svpg/ILOEMPNIFLRT.756", + "dc/svpg/ILOEMPNIFLRT.757", + "dc/svpg/ILOEMPNIFLRT.758", + "dc/svpg/ILOEMPNIFLRT.759", + "dc/svpg/ILOEMPNIFLRT.760", + "dc/svpg/ILOEMPNIFLRT.761", + "dc/svpg/ILOEMPNIFLRT.762", + "dc/svpg/ILOEMPNIFLRT.763", + "dc/svpg/ILOEMPNIFLRT.764", + "dc/svpg/ILOEMPNIFLRT.765", + "dc/svpg/ILOEMPNIFLRT.766", + "dc/svpg/ILOEMPNIFLRT.767", + "dc/svpg/ILOEMPNIFLRT.768", + "dc/svpg/ILOEMPNIFLRT.769", + "dc/svpg/ILOEMPNIFLRT.770", + "dc/svpg/ILOEMPNIFLRT.771", + "dc/svpg/ILOEMPNIFLRT.772", + "dc/svpg/ILOEMPNIFLRT.773", + "dc/svpg/ILOEMPNIFLRT.774", + "dc/svpg/ILOEMPNIFLRT.775", + "dc/svpg/ILOEMPNIFLRT.779", + "dc/svpg/ILOEMPNIFLRT.780", + "dc/svpg/ILOEMPNIFLRT.781", + "dc/svpg/ILOEMPNIFLRT.782", + "dc/svpg/ILOEMPNIFLRT.783", + "dc/svpg/ILOEMPNIFLRT.784", + "dc/svpg/ILOEMPNIFLRT.785", + "dc/svpg/ILOEMPNIFLRT.786", + "dc/svpg/ILOEMPNIFLRT.787", + "dc/svpg/ILOEMPNIFLRT.788", + "dc/svpg/ILOEMPNIFLRT.789", + "dc/svpg/ILOEMPNIFLRT.790", + "dc/svpg/ILOEMPNIFLRT.791", + "dc/svpg/ILOEMPNIFLRT.792", + "dc/svpg/ILOEMPNIFLRT.793", + "dc/svpg/ILOEMPNIFLRT.794", + "dc/svpg/ILOEMPNIFLRT.795", + "dc/svpg/ILOEMPNIFLRT.796", + "dc/svpg/ILOEMPNIFLRT.797", + "dc/svpg/ILOEMPNIFLRT.798", + "dc/svpg/ILOEMPNIFLRT.799", + "dc/svpg/ILOEMPNIFLRT.806", + "dc/svpg/ILOEMPNIFLRT.807", + "dc/svpg/ILOEMPNIFLRT.808", + "dc/svpg/ILOEMPNIFLRT.809", + "dc/svpg/ILOEMPNIFLRT.810", + "dc/svpg/ILOEMPNIFLRT.811", + "dc/svpg/ILOEMPNIFLRT.812", + "dc/svpg/ILOEMPNIFLRT.822", + "dc/svpg/ILOEMPNIFLRT.823", + "dc/svpg/ILOEMPNIFLRT.824", + "dc/svpg/ILOEMPNIFLRT.825", + "dc/svpg/ILOEMPNIFLRT.826", + "dc/svpg/ILOEMPNIFLRT.827", + "dc/svpg/ILOEMPNIFLRT.828", + "dc/svpg/ILOEMPNIFLRT.829", + "dc/svpg/ILOEMPNIFLRT.830", + "dc/svpg/ILOEMPNIFLRT.831", + "dc/svpg/ILOEMPNIFLRT.832", + "dc/svpg/ILOEMPNIFLRT.833", + "dc/svpg/ILOEMPNIFLRT.834", + "dc/svpg/ILOEMPNIFLRT.835", + "dc/svpg/ILOEMPNIFLRT.836", + "dc/svpg/ILOEMPNIFLRT.837", + "dc/svpg/ILOEMPNIFLRT.838", + "dc/svpg/ILOEMPNIFLRT.839", + "dc/svpg/ILOEMPNIFLRT.840", + "dc/svpg/ILOEMPNIFLRT.841", + "dc/svpg/ILOEMPNIFLRT.842", + "dc/svpg/ILOEMPNIFLRT.843", + "dc/svpg/ILOEMPNIFLRT.844", + "dc/svpg/ILOEMPNIFLRT.845", + "dc/svpg/ILOEMPNIFLRT.847", + "dc/svpg/ILOEMPNIFLRT.848", + "dc/svpg/ILOEMPNIFLRT.849", + "dc/svpg/ILOEMPNIFLRT.850", + "dc/svpg/ILOEMPNIFLRT.851", + "dc/svpg/ILOEMPNIFLRT.852", + "dc/svpg/ILOEMPNIFLRT.853", + "dc/svpg/ILOEMPNIFLRT.854", + "dc/svpg/ILOEMPNIFLRT.855", + "dc/svpg/ILOEMPNIFLRT.856", + "dc/svpg/ILOEMPNIFLRT.859", + "dc/svpg/ILOEMPNIFLRT.860", + "dc/svpg/ILOEMPNIFLRT.861", + "dc/svpg/ILOEMPNIFLRT.862", + "dc/svpg/ILOEMPNIFLRT.863", + "dc/svpg/ILOEMPNIFLRT.864", + "dc/svpg/ILOEMPNIFLRT.865", + "dc/svpg/ILOEMPNIFLRT.866", + "dc/svpg/ILOEMPNIFLRT.867", + "dc/svpg/ILOEMPNIFLRT.868", + "dc/svpg/ILOEMPNIFLRT.871", + "dc/svpg/ILOEMPNIFLRT.872", + "dc/svpg/ILOEMPNIFLRT.873", + "dc/svpg/ILOEMPNIFLRT.874", + "dc/svpg/ILOEMPNIFLRT.875", + "dc/svpg/ILOEMPNIFLRT.876", + "dc/svpg/ILOEMPNIFLRT.877", + "dc/svpg/ILOEMPNIFLRT.878", + "dc/svpg/ILOEMPNIFLRT.883", + "dc/svpg/ILOEMPNIFLRT.884", + "dc/svpg/ILOEMPNIFLRT.885", + "dc/svpg/ILOEMPNIFLRT.886", + "dc/svpg/ILOEMPNIFLRT.889", + "dc/svpg/ILOEMPNIFLRT.890", + "dc/svpg/ILOEMPNIFLRT.893", + "dc/svpg/ILOEMPNIFLRT.894", + "dc/svpg/ILOEMPNIFLRT.895", + "dc/svpg/ILOEMPNIFLRT.896", + "dc/svpg/ILOEMPNIFLRT.897", + "dc/svpg/ILOEMPNIFLRT.898", + "dc/svpg/ILOEMPNIFLRT.899", + "dc/svpg/ILOEMPNIFLRT.900", + "dc/svpg/ILOEMPNIFLRT.903", + "dc/svpg/ILOEMPNIFLRT.904", + "dc/svpg/ILOEMPNIFLRT.907", + "dc/svpg/ILOEMPNIFLRT.908", + "dc/svpg/ILOEMPNIFLRT.909", + "dc/svpg/ILOEMPNIFLRT.910", + "dc/svpg/ILOEMPNIFLRT.911", + "dc/svpg/ILOEMPNIFLRT.912", + "dc/svpg/ILOEMPNIFLRT.919", + "dc/svpg/ILOEMPNIFLRT.920", + "dc/svpg/ILOEMPNIFLRT.921", + "dc/svpg/ILOEMPNIFLRT.922", + "dc/svpg/ILOEMPNIFLRT.927", + "dc/svpg/ILOEMPNIFLRT.928", + "dc/svpg/ILOEMPNIFLRT.930", + "dc/svpg/ILOEMPNIFLRT.931", + "dc/svpg/ILOEMPNIFLRT.932", + "dc/svpg/ILOEMPNIFLRT.933", + "dc/svpg/ILOEMPNIFLRT.934", + "dc/svpg/ILOEMPNIFLRT.935", + "dc/svpg/ILOEMPNIFLRT.940", + "dc/svpg/ILOEMPNIFLRT.941", + "dc/svpg/ILOEMPNIFLRT.942", + "dc/svpg/ILOEMPNIFLRT.943", + "dc/svpg/ILOEMPNIFLRT.946", + "dc/svpg/ILOEMPNIFLRT.947", + "dc/svpg/ILOEMPNIFLRT.948", + "dc/svpg/ILOEMPNIFLRT.949", + "dc/svpg/ILOEMPNIFLRT.950", + "dc/svpg/ILOEMPNIFLRT.951", + "dc/svpg/ILOEMPNIFLRT.960", + "dc/svpg/ILOEMPNIFLRT.961", + "dc/svpg/ILOEMPNIFLRT.962", + "dc/svpg/ILOEMPNIFLRT.963", + "dc/svpg/ILOEMPNIFLRT.964", + "dc/svpg/ILOEMPNIFLRT.965", + "dc/svpg/ILOEMPNIFLRT.967", + "dc/svpg/ILOEMPNIFLRT.968", + "dc/svpg/ILOEMPNIFLRT.969", + "dc/svpg/ILOEMPNIFLRT.970", + "dc/svpg/ILOEMPNIFLRT.971", + "dc/svpg/ILOEMPNIFLRT.972", + "dc/svpg/ILOEMPNIFLRT.973", + "dc/svpg/ILOEMPNIFLRT.974", + "dc/svpg/ILOEMPNIFLRT.977", + "dc/svpg/ILOEMPNIFLRT.978", + "dc/svpg/ILOEMPNIFLRT.979", + "dc/svpg/ILOEMPNIFLRT.980", + "dc/svpg/ILOEMPNIFLRT.985", + "dc/svpg/ILOEMPNIFLRT.986", + "dc/svpg/ILOEMPNIFLRT.987", + "dc/svpg/ILOEMPNIFLRT.988", + "dc/svpg/ILOEMPNIFLRT.989", + "dc/svpg/ILOEMPNIFLRT.990", + "dc/svpg/ILOEMPNIFLRT.1000", + "dc/svpg/ILOEMPNIFLRT.1001", + "dc/svpg/ILOEMPNIFLRT.1002", + "dc/svpg/ILOEMPNIFLRT.1003", + "dc/svpg/ILOEMPNIFLRT.1004", + "dc/svpg/ILOEMPNIFLRT.1005", + "dc/svpg/ILOEMPNIFLRT.1006", + "dc/svpg/ILOEMPNIFLRT.1008", + "dc/svpg/ILOEMPNIFLRT.1009", + "dc/svpg/ILOEMPNIFLRT.1010", + "dc/svpg/ILOEMPNIFLRT.1011", + "dc/svpg/ILOEMPNIFLRT.1012", + "dc/svpg/ILOEMPNIFLRT.1014", + "dc/svpg/ILOEMPNIFLRT.1015", + "dc/svpg/ILOEMPNIFLRT.1037", + "dc/svpg/ILOEMPNIFLRT.1038", + "dc/svpg/ILOEMPNIFLRT.1039", + "dc/svpg/ILOEMPNIFLRT.1040", + "dc/svpg/ILOEMPNIFLRT.1041", + "dc/svpg/ILOEMPNIFLRT.1042", + "dc/svpg/ILOEMPNIFLRT.1043", + "dc/svpg/ILOEMPNIFLRT.1044", + "dc/svpg/ILOEMPNIFLRT.1045", + "dc/svpg/ILOEMPNIFLRT.1046", + "dc/svpg/ILOEMPNIFLRT.1047", + "dc/svpg/ILOEMPNIFLRT.1048", + "dc/svpg/ILOEMPNIFLRT.1049", + "dc/svpg/ILOEMPNIFLRT.1050", + "dc/svpg/ILOEMPNIFLRT.1051", + "dc/svpg/ILOEMPNIFLRT.1052", + "dc/svpg/ILOEMPNIFLRT.1053", + "dc/svpg/ILOEMPNIFLRT.1054", + "dc/svpg/ILOEMPNIFLRT.1055", + "dc/svpg/ILOEMPNIFLRT.1056", + "dc/svpg/ILOEMPNIFLRT.1057", + "dc/svpg/ILOEMPNIFLRT.1058", + "dc/svpg/ILOEMPNIFLRT.1059", + "dc/svpg/ILOEMPNIFLRT.1060", + "dc/svpg/ILOEMPNIFLRT.1061", + "dc/svpg/ILOEMPNIFLRT.1062", + "dc/svpg/ILOEMPNIFLRT.1063", + "dc/svpg/ILOEMPNIFLRT.1064", + "dc/svpg/ILOEMPNIFLRT.1065", + "dc/svpg/ILOEMPNIFLRT.1066", + "dc/svpg/ILOEMPNIFLRT.1067", + "dc/svpg/ILOEMPNIFLRT.1068", + "dc/svpg/ILOEMPNIFLRT.1069", + "dc/svpg/ILOEMPNIFLRT.1070", + "dc/svpg/ILOEMPNIFLRT.1071", + "dc/svpg/ILOEMPNIFLRT.1072", + "dc/svpg/ILOEMPNIFLRT.1073", + "dc/svpg/ILOEMPNIFLRT.1074", + "dc/svpg/ILOEMPNIFLRT.1075", + "dc/svpg/ILOEMPNIFLRT.1076", + "dc/svpg/ILOEMPNIFLRT.1077", + "dc/svpg/ILOEMPNIFLRT.1078", + "dc/svpg/ILOEMPNIFLRT.1079", + "dc/svpg/ILOEMPNIFLRT.1080", + "dc/svpg/ILOEMPNIFLRT.1081", + "dc/svpg/ILOEMPNIFLRT.1082", + "dc/svpg/ILOEMPNIFLRT.1083", + "dc/svpg/ILOEMPNIFLRT.1084", + "dc/svpg/ILOEMPNIFLRT.1085", + "dc/svpg/ILOEMPNIFLRT.1086", + "dc/svpg/ILOEMPNIFLRT.1091", + "dc/svpg/ILOEMPNIFLRT.1092", + "dc/svpg/ILOEMPNIFLRT.1093", + "dc/svpg/ILOEMPNIFLRT.1094", + "dc/svpg/ILOEMPNIFLRT.1095", + "dc/svpg/ILOEMPNIFLRT.1096", + "dc/svpg/ILOEMPNIFLRT.1097", + "dc/svpg/ILOEMPNIFLRT.1098", + "dc/svpg/ILOEMPNIFLRT.1099", + "dc/svpg/ILOEMPNIFLRT.1100", + "dc/svpg/ILOEMPNIFLRT.1101", + "dc/svpg/ILOEMPNIFLRT.1102", + "dc/svpg/ILOEMPNIFLRT.1103", + "dc/svpg/ILOEMPNIFLRT.1104", + "dc/svpg/ILOEMPNIFLRT.1105", + "dc/svpg/ILOEMPNIFLRT.1106", + "dc/svpg/ILOEMPNIFLRT.1107", + "dc/svpg/ILOEMPNIFLRT.1108", + "dc/svpg/ILOEMPNIFLRT.1109", + "dc/svpg/ILOEMPNIFLRT.1110", + "dc/svpg/ILOEMPNIFLRT.1115", + "dc/svpg/ILOEMPNIFLRT.1116", + "dc/svpg/ILOEMPNIFLRT.1117", + "dc/svpg/ILOEMPNIFLRT.1118", + "dc/svpg/ILOEMPNIFLRT.1119", + "dc/svpg/ILOEMPNIFLRT.1120", + "dc/svpg/ILOEMPNIFLRT.1121", + "dc/svpg/ILOEMPNIFLRT.1122", + "dc/svpg/ILOEMPNIFLRT.1123", + "dc/svpg/ILOEMPNIFLRT.1124", + "dc/svpg/ILOEMPNIFLRT.1126", + "dc/svpg/ILOEMPNIFLRT.1127", + "dc/svpg/ILOEMPNIFLRT.1129", + "dc/svpg/ILOEMPNIFLRT.1130", + "dc/svpg/ILOEMPNIFLRT.1131", + "dc/svpg/ILOEMPNIFLRT.1132", + "dc/svpg/ILOEMPNIFLRT.1133", + "dc/svpg/ILOEMPNIFLRT.1134", + "dc/svpg/ILOEMPNIFLRT.1135", + "dc/svpg/ILOEMPNIFLRT.1136", + "dc/svpg/ILOEMPNIFLRT.1137", + "dc/svpg/ILOEMPNIFLRT.1138", + "dc/svpg/ILOEMPNIFLRT.1139", + "dc/svpg/ILOEMPNIFLRT.1140", + "dc/svpg/ILOEMPNIFLRT.1141", + "dc/svpg/ILOEMPNIFLRT.1142", + "dc/svpg/ILOEMPNIFLRT.1143", + "dc/svpg/ILOEMPNIFLRT.1144", + "dc/svpg/ILOEMPNIFLRT.1145", + "dc/svpg/ILOEMPNIFLRT.1146", + "dc/svpg/ILOEMPNIFLRT.1147", + "dc/svpg/ILOEMPNIFLRT.1148", + "dc/svpg/ILOEMPNIFLRT.1149", + "dc/svpg/ILOEMPNIFLRT.1150", + "dc/svpg/ILOEMPNIFLRT.1151", + "dc/svpg/ILOEMPNIFLRT.1152", + "dc/svpg/ILOEMPNIFLRT.1153", + "dc/svpg/ILOEMPNIFLRT.1154", + "dc/svpg/ILOEMPNIFLRT.1155", + "dc/svpg/ILOEMPNIFLRT.1158", + "dc/svpg/ILOEMPNIFLRT.1159", + "dc/svpg/ILOEMPNIFLRT.1160", + "dc/svpg/ILOEMPNIFLRT.1161", + "dc/svpg/ILOEMPNIFLRT.1162", + "dc/svpg/ILOEMPNIFLRT.1163", + "dc/svpg/ILOEMPNIFLRT.1164", + "dc/svpg/ILOEMPNIFLRT.1165", + "dc/svpg/ILOEMPNIFLRT.1166", + "dc/svpg/ILOEMPNIFLRT.1167", + "dc/svpg/ILOEMPNIFLRT.1168", + "dc/svpg/ILOEMPNIFLRT.1169", + "dc/svpg/ILOEMPNIFLRT.1170", + "dc/svpg/ILOEMPNIFLRT.1171", + "dc/svpg/ILOEMPNIFLRT.1172", + "dc/svpg/ILOEMPNIFLRT.1173", + "dc/svpg/ILOEMPNIFLRT.1174", + "dc/svpg/ILOEMPNIFLRT.1175", + "dc/svpg/ILOEMPNIFLRT.1176", + "dc/svpg/ILOEMPNIFLRT.1177", + "dc/svpg/ILOEMPNIFLRT.1178", + "dc/svpg/ILOEMPNIFLRT.1179", + "dc/svpg/ILOEMPNIFLRT.1180", + "dc/svpg/ILOEMPNIFLRT.1181", + "dc/svpg/ILOEMPNIFLRT.1182", + "dc/svpg/ILOEMPNIFLRT.1183", + "dc/svpg/ILOEMPNIFLRT.1184", + "dc/svpg/ILOEMPNIFLRT.1185", + "dc/svpg/ILOEMPNIFLRT.1188", + "dc/svpg/ILOEMPNIFLRT.1189", + "dc/svpg/ILOEMPNIFLRT.1190", + "dc/svpg/ILOEMPNIFLRT.1196", + "dc/svpg/ILOEMPNIFLRT.1197", + "dc/svpg/ILOEMPNIFLRT.1198", + "dc/svpg/ILOEMPNIFLRT.1199", + "dc/svpg/ILOEMPNIFLRT.1200", + "dc/svpg/ILOEMPNIFLRT.1201", + "dc/svpg/ILOEMPNIFLRT.1202", + "dc/svpg/ILOEMPNIFLRT.1203", + "dc/svpg/ILOEMPNIFLRT.1204", + "dc/svpg/ILOEMPNIFLRT.1205", + "dc/svpg/ILOEMPNIFLRT.1206", + "dc/svpg/ILOEMPNIFLRT.1207", + "dc/svpg/ILOEMPNIFLRT.1208", + "dc/svpg/ILOEMPNIFLRT.1209", + "dc/svpg/ILOEMPNIFLRT.1210", + "dc/svpg/ILOEMPNIFLRT.1212", + "dc/svpg/ILOEMPNIFLRT.1213", + "dc/svpg/ILOEMPNIFLRT.1214", + "dc/svpg/ILOEMPNIFLRT.1215", + "dc/svpg/ILOEMPNIFLRT.1216", + "dc/svpg/ILOEMPNIFLRT.1217", + "dc/svpg/ILOEMPNIFLRT.1218", + "dc/svpg/ILOEMPNIFLRT.1219", + "dc/svpg/ILOEMPNIFLRT.1220", + "dc/svpg/ILOEMPNIFLRT.1222", + "dc/svpg/ILOEMPNIFLRT.1223", + "dc/svpg/ILOEMPNIFLRT.1224", + "dc/svpg/ILOEMPNIFLRT.1225", + "dc/svpg/ILOEMPNIFLRT.1226", + "dc/svpg/ILOEMPNIFLRT.1227", + "dc/svpg/ILOEMPNIFLRT.1229", + "dc/svpg/ILOEMPNIFLRT.1230", + "dc/svpg/ILOEMPNIFLRT.1231", + "dc/svpg/ILOEMPNIFLRT.1232", + "dc/svpg/ILOEMPNIFLRT.1234", + "dc/svpg/ILOEMPNIFLRT.1235" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age" + ], + "name": [ + "Informal Employment Rate by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilooccupation", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 34 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 To 54 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 35 To 44 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 45 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 55 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilooccupation", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 15 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilooccupation", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age = 25 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age = 65 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Break in Series, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment Rate With Age, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment Rate With Age, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment Rate With Age, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus" + ], + "name": [ + "Informal Employment Rate by Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status = Persons Without Disability, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment Rate With Disability Status, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Disability Status, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Disability Status, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Disability Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity" + ], + "name": [ + "Informal Employment Rate by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Construction (ISIC3_F45), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Hotels And Restaurants (ISIC3_H55), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Education (ISIC3_M80), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Health And Social Work (ISIC3_N85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Manufacture of Furniture (ISIC4_C31), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Other Manufacturing (ISIC4_C32), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Real Estate Activities (ISIC4_L68), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Education (ISIC4_P85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ], + "name": [ + "Informal Employment Rate With Economic Activity = Not Elsewhere Classified (ISIC4_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Economic Activity, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel" + ], + "name": [ + "Informal Employment Rate by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U", + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level = X. No Schooling, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--U", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Education Level, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Education Level, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus" + ], + "name": [ + "Informal Employment Rate by Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single / Widowed / Divorced, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status = Married, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status = Single, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Informal Employment Rate With Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Informal Employment Rate With Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status, Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Marital Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Marital Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus" + ], + "name": [ + "Informal Employment Rate by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X", + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01", + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X", + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment Rate With Observation Status, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment Rate With Observation Status, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Informal Employment Rate With Observation Status, Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Informal Employment Rate With Observation Status, Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment Rate With Observation Status, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Observation Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Observation Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation" + ], + "name": [ + "Informal Employment Rate by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Informal Employment Rate With Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Informal Employment Rate With Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Informal Employment Rate With Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ], + "name": [ + "Informal Employment Rate With Occupation = Armed Forces (ISCO88_01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Informal Employment Rate With Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ], + "name": [ + "Informal Employment Rate With Occupation = Models, Salespersons And Demonstrators (ISCO88_52), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Informal Employment Rate With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ], + "name": [ + "Informal Employment Rate With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Informal Employment Rate With Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Informal Employment Rate With Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex" + ], + "name": [ + "Informal Employment Rate by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF" + ], + "name": [ + "Informal Employment Rate With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM" + ], + "name": [ + "Informal Employment Rate With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO" + ], + "name": [ + "Informal Employment Rate With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_disabilityStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeconomicActivity_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Informal Employment Rate With Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilourbanisation" + ], + "name": [ + "Informal Employment Rate by Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Informal Employment Rate With Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPNIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNIFLRT_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Informal Employment Rate With Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPNIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPNIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPNORMNB" + ], + "name": [ + "Employment, Normative Approach" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_NORM_NB", + "dc/svpg/ILOEMPNORMNB.002", + "dc/svpg/ILOEMPNORMNB.003", + "dc/svpg/ILOEMPNORMNB.004", + "dc/svpg/ILOEMPNORMNB.005", + "dc/svpg/ILOEMPNORMNB.006", + "dc/svpg/ILOEMPNORMNB.007", + "dc/svpg/ILOEMPNORMNB.008", + "dc/svpg/ILOEMPNORMNB.009", + "dc/svpg/ILOEMPNORMNB.010", + "dc/svpg/ILOEMPNORMNB.011", + "dc/svpg/ILOEMPNORMNB.012", + "dc/svpg/ILOEMPNORMNB.013", + "dc/svpg/ILOEMPNORMNB.014", + "dc/svpg/ILOEMPNORMNB.015", + "dc/svpg/ILOEMPNORMNB.016", + "dc/svpg/ILOEMPNORMNB.017" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB" + ], + "name": [ + "Employment Outside The Formal Sector" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB", + "dc/topic/ILOEMPPIFLNB_age", + "dc/topic/ILOEMPPIFLNB_disabilityStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilooccupation", + "dc/topic/ILOEMPPIFLNB_ilosex", + "dc/topic/ILOEMPPIFLNB_ilourbanisation", + "dc/svpg/ILOEMPPIFLNB.002", + "dc/svpg/ILOEMPPIFLNB.003", + "dc/svpg/ILOEMPPIFLNB.004", + "dc/svpg/ILOEMPPIFLNB.005", + "dc/svpg/ILOEMPPIFLNB.006", + "dc/svpg/ILOEMPPIFLNB.007", + "dc/svpg/ILOEMPPIFLNB.008", + "dc/svpg/ILOEMPPIFLNB.009", + "dc/svpg/ILOEMPPIFLNB.010", + "dc/svpg/ILOEMPPIFLNB.011", + "dc/svpg/ILOEMPPIFLNB.012", + "dc/svpg/ILOEMPPIFLNB.013", + "dc/svpg/ILOEMPPIFLNB.014", + "dc/svpg/ILOEMPPIFLNB.015", + "dc/svpg/ILOEMPPIFLNB.016", + "dc/svpg/ILOEMPPIFLNB.017", + "dc/svpg/ILOEMPPIFLNB.018", + "dc/svpg/ILOEMPPIFLNB.019", + "dc/svpg/ILOEMPPIFLNB.020", + "dc/svpg/ILOEMPPIFLNB.021", + "dc/svpg/ILOEMPPIFLNB.022", + "dc/svpg/ILOEMPPIFLNB.023", + "dc/svpg/ILOEMPPIFLNB.027", + "dc/svpg/ILOEMPPIFLNB.028", + "dc/svpg/ILOEMPPIFLNB.029", + "dc/svpg/ILOEMPPIFLNB.030", + "dc/svpg/ILOEMPPIFLNB.031", + "dc/svpg/ILOEMPPIFLNB.032", + "dc/svpg/ILOEMPPIFLNB.033", + "dc/svpg/ILOEMPPIFLNB.034", + "dc/svpg/ILOEMPPIFLNB.035", + "dc/svpg/ILOEMPPIFLNB.036", + "dc/svpg/ILOEMPPIFLNB.037", + "dc/svpg/ILOEMPPIFLNB.038", + "dc/svpg/ILOEMPPIFLNB.045", + "dc/svpg/ILOEMPPIFLNB.046", + "dc/svpg/ILOEMPPIFLNB.047", + "dc/svpg/ILOEMPPIFLNB.048", + "dc/svpg/ILOEMPPIFLNB.049", + "dc/svpg/ILOEMPPIFLNB.050", + "dc/svpg/ILOEMPPIFLNB.054", + "dc/svpg/ILOEMPPIFLNB.055", + "dc/svpg/ILOEMPPIFLNB.056", + "dc/svpg/ILOEMPPIFLNB.060", + "dc/svpg/ILOEMPPIFLNB.061", + "dc/svpg/ILOEMPPIFLNB.062", + "dc/svpg/ILOEMPPIFLNB.063", + "dc/svpg/ILOEMPPIFLNB.064", + "dc/svpg/ILOEMPPIFLNB.065", + "dc/svpg/ILOEMPPIFLNB.066", + "dc/svpg/ILOEMPPIFLNB.067", + "dc/svpg/ILOEMPPIFLNB.068", + "dc/svpg/ILOEMPPIFLNB.069", + "dc/svpg/ILOEMPPIFLNB.070", + "dc/svpg/ILOEMPPIFLNB.071", + "dc/svpg/ILOEMPPIFLNB.075", + "dc/svpg/ILOEMPPIFLNB.076", + "dc/svpg/ILOEMPPIFLNB.077", + "dc/svpg/ILOEMPPIFLNB.081", + "dc/svpg/ILOEMPPIFLNB.082", + "dc/svpg/ILOEMPPIFLNB.083", + "dc/svpg/ILOEMPPIFLNB.084", + "dc/svpg/ILOEMPPIFLNB.085", + "dc/svpg/ILOEMPPIFLNB.086", + "dc/svpg/ILOEMPPIFLNB.087", + "dc/svpg/ILOEMPPIFLNB.088", + "dc/svpg/ILOEMPPIFLNB.089", + "dc/svpg/ILOEMPPIFLNB.099", + "dc/svpg/ILOEMPPIFLNB.100", + "dc/svpg/ILOEMPPIFLNB.101", + "dc/svpg/ILOEMPPIFLNB.102", + "dc/svpg/ILOEMPPIFLNB.103", + "dc/svpg/ILOEMPPIFLNB.104", + "dc/svpg/ILOEMPPIFLNB.111", + "dc/svpg/ILOEMPPIFLNB.112", + "dc/svpg/ILOEMPPIFLNB.113", + "dc/svpg/ILOEMPPIFLNB.114", + "dc/svpg/ILOEMPPIFLNB.115", + "dc/svpg/ILOEMPPIFLNB.116", + "dc/svpg/ILOEMPPIFLNB.117", + "dc/svpg/ILOEMPPIFLNB.118", + "dc/svpg/ILOEMPPIFLNB.119", + "dc/svpg/ILOEMPPIFLNB.120", + "dc/svpg/ILOEMPPIFLNB.121", + "dc/svpg/ILOEMPPIFLNB.122", + "dc/svpg/ILOEMPPIFLNB.129", + "dc/svpg/ILOEMPPIFLNB.130", + "dc/svpg/ILOEMPPIFLNB.131", + "dc/svpg/ILOEMPPIFLNB.132", + "dc/svpg/ILOEMPPIFLNB.133", + "dc/svpg/ILOEMPPIFLNB.134", + "dc/svpg/ILOEMPPIFLNB.138", + "dc/svpg/ILOEMPPIFLNB.139", + "dc/svpg/ILOEMPPIFLNB.140", + "dc/svpg/ILOEMPPIFLNB.141", + "dc/svpg/ILOEMPPIFLNB.142", + "dc/svpg/ILOEMPPIFLNB.143", + "dc/svpg/ILOEMPPIFLNB.144", + "dc/svpg/ILOEMPPIFLNB.145", + "dc/svpg/ILOEMPPIFLNB.146", + "dc/svpg/ILOEMPPIFLNB.159", + "dc/svpg/ILOEMPPIFLNB.160", + "dc/svpg/ILOEMPPIFLNB.161", + "dc/svpg/ILOEMPPIFLNB.162", + "dc/svpg/ILOEMPPIFLNB.163", + "dc/svpg/ILOEMPPIFLNB.164", + "dc/svpg/ILOEMPPIFLNB.165", + "dc/svpg/ILOEMPPIFLNB.166", + "dc/svpg/ILOEMPPIFLNB.167", + "dc/svpg/ILOEMPPIFLNB.168", + "dc/svpg/ILOEMPPIFLNB.169", + "dc/svpg/ILOEMPPIFLNB.170", + "dc/svpg/ILOEMPPIFLNB.171", + "dc/svpg/ILOEMPPIFLNB.172", + "dc/svpg/ILOEMPPIFLNB.173", + "dc/svpg/ILOEMPPIFLNB.174", + "dc/svpg/ILOEMPPIFLNB.175", + "dc/svpg/ILOEMPPIFLNB.176", + "dc/svpg/ILOEMPPIFLNB.177", + "dc/svpg/ILOEMPPIFLNB.178", + "dc/svpg/ILOEMPPIFLNB.179", + "dc/svpg/ILOEMPPIFLNB.183", + "dc/svpg/ILOEMPPIFLNB.184", + "dc/svpg/ILOEMPPIFLNB.185", + "dc/svpg/ILOEMPPIFLNB.186", + "dc/svpg/ILOEMPPIFLNB.187", + "dc/svpg/ILOEMPPIFLNB.188", + "dc/svpg/ILOEMPPIFLNB.195", + "dc/svpg/ILOEMPPIFLNB.196", + "dc/svpg/ILOEMPPIFLNB.197", + "dc/svpg/ILOEMPPIFLNB.198", + "dc/svpg/ILOEMPPIFLNB.199", + "dc/svpg/ILOEMPPIFLNB.200", + "dc/svpg/ILOEMPPIFLNB.201", + "dc/svpg/ILOEMPPIFLNB.202", + "dc/svpg/ILOEMPPIFLNB.203", + "dc/svpg/ILOEMPPIFLNB.223", + "dc/svpg/ILOEMPPIFLNB.224", + "dc/svpg/ILOEMPPIFLNB.225", + "dc/svpg/ILOEMPPIFLNB.226", + "dc/svpg/ILOEMPPIFLNB.227", + "dc/svpg/ILOEMPPIFLNB.228", + "dc/svpg/ILOEMPPIFLNB.229", + "dc/svpg/ILOEMPPIFLNB.230", + "dc/svpg/ILOEMPPIFLNB.231", + "dc/svpg/ILOEMPPIFLNB.232", + "dc/svpg/ILOEMPPIFLNB.233", + "dc/svpg/ILOEMPPIFLNB.234", + "dc/svpg/ILOEMPPIFLNB.235", + "dc/svpg/ILOEMPPIFLNB.236", + "dc/svpg/ILOEMPPIFLNB.237", + "dc/svpg/ILOEMPPIFLNB.238", + "dc/svpg/ILOEMPPIFLNB.239", + "dc/svpg/ILOEMPPIFLNB.240", + "dc/svpg/ILOEMPPIFLNB.241", + "dc/svpg/ILOEMPPIFLNB.242", + "dc/svpg/ILOEMPPIFLNB.243", + "dc/svpg/ILOEMPPIFLNB.244", + "dc/svpg/ILOEMPPIFLNB.245", + "dc/svpg/ILOEMPPIFLNB.246", + "dc/svpg/ILOEMPPIFLNB.247", + "dc/svpg/ILOEMPPIFLNB.248", + "dc/svpg/ILOEMPPIFLNB.249", + "dc/svpg/ILOEMPPIFLNB.250", + "dc/svpg/ILOEMPPIFLNB.251", + "dc/svpg/ILOEMPPIFLNB.252", + "dc/svpg/ILOEMPPIFLNB.253", + "dc/svpg/ILOEMPPIFLNB.254", + "dc/svpg/ILOEMPPIFLNB.255", + "dc/svpg/ILOEMPPIFLNB.256", + "dc/svpg/ILOEMPPIFLNB.257", + "dc/svpg/ILOEMPPIFLNB.258", + "dc/svpg/ILOEMPPIFLNB.259", + "dc/svpg/ILOEMPPIFLNB.260", + "dc/svpg/ILOEMPPIFLNB.261", + "dc/svpg/ILOEMPPIFLNB.262", + "dc/svpg/ILOEMPPIFLNB.263", + "dc/svpg/ILOEMPPIFLNB.264", + "dc/svpg/ILOEMPPIFLNB.265", + "dc/svpg/ILOEMPPIFLNB.266", + "dc/svpg/ILOEMPPIFLNB.267", + "dc/svpg/ILOEMPPIFLNB.268", + "dc/svpg/ILOEMPPIFLNB.269", + "dc/svpg/ILOEMPPIFLNB.270", + "dc/svpg/ILOEMPPIFLNB.271", + "dc/svpg/ILOEMPPIFLNB.272", + "dc/svpg/ILOEMPPIFLNB.273", + "dc/svpg/ILOEMPPIFLNB.274", + "dc/svpg/ILOEMPPIFLNB.275", + "dc/svpg/ILOEMPPIFLNB.276", + "dc/svpg/ILOEMPPIFLNB.277", + "dc/svpg/ILOEMPPIFLNB.278", + "dc/svpg/ILOEMPPIFLNB.279", + "dc/svpg/ILOEMPPIFLNB.280", + "dc/svpg/ILOEMPPIFLNB.281", + "dc/svpg/ILOEMPPIFLNB.282", + "dc/svpg/ILOEMPPIFLNB.283", + "dc/svpg/ILOEMPPIFLNB.284", + "dc/svpg/ILOEMPPIFLNB.285", + "dc/svpg/ILOEMPPIFLNB.286", + "dc/svpg/ILOEMPPIFLNB.287", + "dc/svpg/ILOEMPPIFLNB.288", + "dc/svpg/ILOEMPPIFLNB.289", + "dc/svpg/ILOEMPPIFLNB.290", + "dc/svpg/ILOEMPPIFLNB.291", + "dc/svpg/ILOEMPPIFLNB.292", + "dc/svpg/ILOEMPPIFLNB.293", + "dc/svpg/ILOEMPPIFLNB.294", + "dc/svpg/ILOEMPPIFLNB.295", + "dc/svpg/ILOEMPPIFLNB.296", + "dc/svpg/ILOEMPPIFLNB.297", + "dc/svpg/ILOEMPPIFLNB.298", + "dc/svpg/ILOEMPPIFLNB.299", + "dc/svpg/ILOEMPPIFLNB.300", + "dc/svpg/ILOEMPPIFLNB.301", + "dc/svpg/ILOEMPPIFLNB.302", + "dc/svpg/ILOEMPPIFLNB.303", + "dc/svpg/ILOEMPPIFLNB.304", + "dc/svpg/ILOEMPPIFLNB.305", + "dc/svpg/ILOEMPPIFLNB.306", + "dc/svpg/ILOEMPPIFLNB.307", + "dc/svpg/ILOEMPPIFLNB.308", + "dc/svpg/ILOEMPPIFLNB.309", + "dc/svpg/ILOEMPPIFLNB.310", + "dc/svpg/ILOEMPPIFLNB.311", + "dc/svpg/ILOEMPPIFLNB.312", + "dc/svpg/ILOEMPPIFLNB.313", + "dc/svpg/ILOEMPPIFLNB.314", + "dc/svpg/ILOEMPPIFLNB.315", + "dc/svpg/ILOEMPPIFLNB.316", + "dc/svpg/ILOEMPPIFLNB.317", + "dc/svpg/ILOEMPPIFLNB.318", + "dc/svpg/ILOEMPPIFLNB.319", + "dc/svpg/ILOEMPPIFLNB.320", + "dc/svpg/ILOEMPPIFLNB.321", + "dc/svpg/ILOEMPPIFLNB.322", + "dc/svpg/ILOEMPPIFLNB.323", + "dc/svpg/ILOEMPPIFLNB.324", + "dc/svpg/ILOEMPPIFLNB.325", + "dc/svpg/ILOEMPPIFLNB.326", + "dc/svpg/ILOEMPPIFLNB.327", + "dc/svpg/ILOEMPPIFLNB.328", + "dc/svpg/ILOEMPPIFLNB.329", + "dc/svpg/ILOEMPPIFLNB.330", + "dc/svpg/ILOEMPPIFLNB.331", + "dc/svpg/ILOEMPPIFLNB.332", + "dc/svpg/ILOEMPPIFLNB.333", + "dc/svpg/ILOEMPPIFLNB.334", + "dc/svpg/ILOEMPPIFLNB.335", + "dc/svpg/ILOEMPPIFLNB.336", + "dc/svpg/ILOEMPPIFLNB.337", + "dc/svpg/ILOEMPPIFLNB.338", + "dc/svpg/ILOEMPPIFLNB.339", + "dc/svpg/ILOEMPPIFLNB.340", + "dc/svpg/ILOEMPPIFLNB.341", + "dc/svpg/ILOEMPPIFLNB.342", + "dc/svpg/ILOEMPPIFLNB.343", + "dc/svpg/ILOEMPPIFLNB.344", + "dc/svpg/ILOEMPPIFLNB.345", + "dc/svpg/ILOEMPPIFLNB.346", + "dc/svpg/ILOEMPPIFLNB.347", + "dc/svpg/ILOEMPPIFLNB.348", + "dc/svpg/ILOEMPPIFLNB.349", + "dc/svpg/ILOEMPPIFLNB.350", + "dc/svpg/ILOEMPPIFLNB.351", + "dc/svpg/ILOEMPPIFLNB.352", + "dc/svpg/ILOEMPPIFLNB.353", + "dc/svpg/ILOEMPPIFLNB.354", + "dc/svpg/ILOEMPPIFLNB.355", + "dc/svpg/ILOEMPPIFLNB.356", + "dc/svpg/ILOEMPPIFLNB.357", + "dc/svpg/ILOEMPPIFLNB.358", + "dc/svpg/ILOEMPPIFLNB.359", + "dc/svpg/ILOEMPPIFLNB.360", + "dc/svpg/ILOEMPPIFLNB.361", + "dc/svpg/ILOEMPPIFLNB.362", + "dc/svpg/ILOEMPPIFLNB.376", + "dc/svpg/ILOEMPPIFLNB.377", + "dc/svpg/ILOEMPPIFLNB.378", + "dc/svpg/ILOEMPPIFLNB.379", + "dc/svpg/ILOEMPPIFLNB.380", + "dc/svpg/ILOEMPPIFLNB.381", + "dc/svpg/ILOEMPPIFLNB.382", + "dc/svpg/ILOEMPPIFLNB.383", + "dc/svpg/ILOEMPPIFLNB.384", + "dc/svpg/ILOEMPPIFLNB.385", + "dc/svpg/ILOEMPPIFLNB.386", + "dc/svpg/ILOEMPPIFLNB.387", + "dc/svpg/ILOEMPPIFLNB.388", + "dc/svpg/ILOEMPPIFLNB.389", + "dc/svpg/ILOEMPPIFLNB.390", + "dc/svpg/ILOEMPPIFLNB.391", + "dc/svpg/ILOEMPPIFLNB.392", + "dc/svpg/ILOEMPPIFLNB.393", + "dc/svpg/ILOEMPPIFLNB.394", + "dc/svpg/ILOEMPPIFLNB.395", + "dc/svpg/ILOEMPPIFLNB.396", + "dc/svpg/ILOEMPPIFLNB.397", + "dc/svpg/ILOEMPPIFLNB.398", + "dc/svpg/ILOEMPPIFLNB.399", + "dc/svpg/ILOEMPPIFLNB.400", + "dc/svpg/ILOEMPPIFLNB.401", + "dc/svpg/ILOEMPPIFLNB.402", + "dc/svpg/ILOEMPPIFLNB.403", + "dc/svpg/ILOEMPPIFLNB.404", + "dc/svpg/ILOEMPPIFLNB.405", + "dc/svpg/ILOEMPPIFLNB.412", + "dc/svpg/ILOEMPPIFLNB.413", + "dc/svpg/ILOEMPPIFLNB.414", + "dc/svpg/ILOEMPPIFLNB.415", + "dc/svpg/ILOEMPPIFLNB.416", + "dc/svpg/ILOEMPPIFLNB.417", + "dc/svpg/ILOEMPPIFLNB.418", + "dc/svpg/ILOEMPPIFLNB.419", + "dc/svpg/ILOEMPPIFLNB.420", + "dc/svpg/ILOEMPPIFLNB.421", + "dc/svpg/ILOEMPPIFLNB.422", + "dc/svpg/ILOEMPPIFLNB.423", + "dc/svpg/ILOEMPPIFLNB.424", + "dc/svpg/ILOEMPPIFLNB.425", + "dc/svpg/ILOEMPPIFLNB.426", + "dc/svpg/ILOEMPPIFLNB.427", + "dc/svpg/ILOEMPPIFLNB.428", + "dc/svpg/ILOEMPPIFLNB.429", + "dc/svpg/ILOEMPPIFLNB.430", + "dc/svpg/ILOEMPPIFLNB.431", + "dc/svpg/ILOEMPPIFLNB.432", + "dc/svpg/ILOEMPPIFLNB.433", + "dc/svpg/ILOEMPPIFLNB.434", + "dc/svpg/ILOEMPPIFLNB.435", + "dc/svpg/ILOEMPPIFLNB.436", + "dc/svpg/ILOEMPPIFLNB.437", + "dc/svpg/ILOEMPPIFLNB.438", + "dc/svpg/ILOEMPPIFLNB.439", + "dc/svpg/ILOEMPPIFLNB.440", + "dc/svpg/ILOEMPPIFLNB.441", + "dc/svpg/ILOEMPPIFLNB.442", + "dc/svpg/ILOEMPPIFLNB.443", + "dc/svpg/ILOEMPPIFLNB.444", + "dc/svpg/ILOEMPPIFLNB.445", + "dc/svpg/ILOEMPPIFLNB.446", + "dc/svpg/ILOEMPPIFLNB.447", + "dc/svpg/ILOEMPPIFLNB.448", + "dc/svpg/ILOEMPPIFLNB.449", + "dc/svpg/ILOEMPPIFLNB.450", + "dc/svpg/ILOEMPPIFLNB.451", + "dc/svpg/ILOEMPPIFLNB.452", + "dc/svpg/ILOEMPPIFLNB.453", + "dc/svpg/ILOEMPPIFLNB.454", + "dc/svpg/ILOEMPPIFLNB.455", + "dc/svpg/ILOEMPPIFLNB.456", + "dc/svpg/ILOEMPPIFLNB.457", + "dc/svpg/ILOEMPPIFLNB.458", + "dc/svpg/ILOEMPPIFLNB.482", + "dc/svpg/ILOEMPPIFLNB.483", + "dc/svpg/ILOEMPPIFLNB.484", + "dc/svpg/ILOEMPPIFLNB.485", + "dc/svpg/ILOEMPPIFLNB.486", + "dc/svpg/ILOEMPPIFLNB.487", + "dc/svpg/ILOEMPPIFLNB.488", + "dc/svpg/ILOEMPPIFLNB.489", + "dc/svpg/ILOEMPPIFLNB.490", + "dc/svpg/ILOEMPPIFLNB.492", + "dc/svpg/ILOEMPPIFLNB.493", + "dc/svpg/ILOEMPPIFLNB.494", + "dc/svpg/ILOEMPPIFLNB.495", + "dc/svpg/ILOEMPPIFLNB.496", + "dc/svpg/ILOEMPPIFLNB.497", + "dc/svpg/ILOEMPPIFLNB.498", + "dc/svpg/ILOEMPPIFLNB.499", + "dc/svpg/ILOEMPPIFLNB.500", + "dc/svpg/ILOEMPPIFLNB.501", + "dc/svpg/ILOEMPPIFLNB.502", + "dc/svpg/ILOEMPPIFLNB.503", + "dc/svpg/ILOEMPPIFLNB.504", + "dc/svpg/ILOEMPPIFLNB.505", + "dc/svpg/ILOEMPPIFLNB.506", + "dc/svpg/ILOEMPPIFLNB.507", + "dc/svpg/ILOEMPPIFLNB.508", + "dc/svpg/ILOEMPPIFLNB.509", + "dc/svpg/ILOEMPPIFLNB.510", + "dc/svpg/ILOEMPPIFLNB.511", + "dc/svpg/ILOEMPPIFLNB.512", + "dc/svpg/ILOEMPPIFLNB.513", + "dc/svpg/ILOEMPPIFLNB.514", + "dc/svpg/ILOEMPPIFLNB.515", + "dc/svpg/ILOEMPPIFLNB.516", + "dc/svpg/ILOEMPPIFLNB.517", + "dc/svpg/ILOEMPPIFLNB.518", + "dc/svpg/ILOEMPPIFLNB.519", + "dc/svpg/ILOEMPPIFLNB.520", + "dc/svpg/ILOEMPPIFLNB.521", + "dc/svpg/ILOEMPPIFLNB.522", + "dc/svpg/ILOEMPPIFLNB.523", + "dc/svpg/ILOEMPPIFLNB.524", + "dc/svpg/ILOEMPPIFLNB.525", + "dc/svpg/ILOEMPPIFLNB.526", + "dc/svpg/ILOEMPPIFLNB.527", + "dc/svpg/ILOEMPPIFLNB.528", + "dc/svpg/ILOEMPPIFLNB.529", + "dc/svpg/ILOEMPPIFLNB.530", + "dc/svpg/ILOEMPPIFLNB.531", + "dc/svpg/ILOEMPPIFLNB.532", + "dc/svpg/ILOEMPPIFLNB.534", + "dc/svpg/ILOEMPPIFLNB.535", + "dc/svpg/ILOEMPPIFLNB.536", + "dc/svpg/ILOEMPPIFLNB.537", + "dc/svpg/ILOEMPPIFLNB.539", + "dc/svpg/ILOEMPPIFLNB.540", + "dc/svpg/ILOEMPPIFLNB.542", + "dc/svpg/ILOEMPPIFLNB.543", + "dc/svpg/ILOEMPPIFLNB.544", + "dc/svpg/ILOEMPPIFLNB.545", + "dc/svpg/ILOEMPPIFLNB.546", + "dc/svpg/ILOEMPPIFLNB.547", + "dc/svpg/ILOEMPPIFLNB.548", + "dc/svpg/ILOEMPPIFLNB.549", + "dc/svpg/ILOEMPPIFLNB.550", + "dc/svpg/ILOEMPPIFLNB.551", + "dc/svpg/ILOEMPPIFLNB.552", + "dc/svpg/ILOEMPPIFLNB.553", + "dc/svpg/ILOEMPPIFLNB.554", + "dc/svpg/ILOEMPPIFLNB.555", + "dc/svpg/ILOEMPPIFLNB.556", + "dc/svpg/ILOEMPPIFLNB.557", + "dc/svpg/ILOEMPPIFLNB.558", + "dc/svpg/ILOEMPPIFLNB.560", + "dc/svpg/ILOEMPPIFLNB.561", + "dc/svpg/ILOEMPPIFLNB.562", + "dc/svpg/ILOEMPPIFLNB.563", + "dc/svpg/ILOEMPPIFLNB.564", + "dc/svpg/ILOEMPPIFLNB.565", + "dc/svpg/ILOEMPPIFLNB.566", + "dc/svpg/ILOEMPPIFLNB.567", + "dc/svpg/ILOEMPPIFLNB.569", + "dc/svpg/ILOEMPPIFLNB.570", + "dc/svpg/ILOEMPPIFLNB.571", + "dc/svpg/ILOEMPPIFLNB.572", + "dc/svpg/ILOEMPPIFLNB.573", + "dc/svpg/ILOEMPPIFLNB.574", + "dc/svpg/ILOEMPPIFLNB.575", + "dc/svpg/ILOEMPPIFLNB.576", + "dc/svpg/ILOEMPPIFLNB.577", + "dc/svpg/ILOEMPPIFLNB.578", + "dc/svpg/ILOEMPPIFLNB.579", + "dc/svpg/ILOEMPPIFLNB.580", + "dc/svpg/ILOEMPPIFLNB.582", + "dc/svpg/ILOEMPPIFLNB.583", + "dc/svpg/ILOEMPPIFLNB.584", + "dc/svpg/ILOEMPPIFLNB.585", + "dc/svpg/ILOEMPPIFLNB.587", + "dc/svpg/ILOEMPPIFLNB.588", + "dc/svpg/ILOEMPPIFLNB.590", + "dc/svpg/ILOEMPPIFLNB.591", + "dc/svpg/ILOEMPPIFLNB.592", + "dc/svpg/ILOEMPPIFLNB.593", + "dc/svpg/ILOEMPPIFLNB.594", + "dc/svpg/ILOEMPPIFLNB.595", + "dc/svpg/ILOEMPPIFLNB.596", + "dc/svpg/ILOEMPPIFLNB.597", + "dc/svpg/ILOEMPPIFLNB.598", + "dc/svpg/ILOEMPPIFLNB.599", + "dc/svpg/ILOEMPPIFLNB.600", + "dc/svpg/ILOEMPPIFLNB.601", + "dc/svpg/ILOEMPPIFLNB.602", + "dc/svpg/ILOEMPPIFLNB.603", + "dc/svpg/ILOEMPPIFLNB.605", + "dc/svpg/ILOEMPPIFLNB.606", + "dc/svpg/ILOEMPPIFLNB.608", + "dc/svpg/ILOEMPPIFLNB.609", + "dc/svpg/ILOEMPPIFLNB.611", + "dc/svpg/ILOEMPPIFLNB.612", + "dc/svpg/ILOEMPPIFLNB.614", + "dc/svpg/ILOEMPPIFLNB.615", + "dc/svpg/ILOEMPPIFLNB.617", + "dc/svpg/ILOEMPPIFLNB.618", + "dc/svpg/ILOEMPPIFLNB.619", + "dc/svpg/ILOEMPPIFLNB.620", + "dc/svpg/ILOEMPPIFLNB.621", + "dc/svpg/ILOEMPPIFLNB.622", + "dc/svpg/ILOEMPPIFLNB.643", + "dc/svpg/ILOEMPPIFLNB.644", + "dc/svpg/ILOEMPPIFLNB.645", + "dc/svpg/ILOEMPPIFLNB.646", + "dc/svpg/ILOEMPPIFLNB.647", + "dc/svpg/ILOEMPPIFLNB.648", + "dc/svpg/ILOEMPPIFLNB.649", + "dc/svpg/ILOEMPPIFLNB.650", + "dc/svpg/ILOEMPPIFLNB.651", + "dc/svpg/ILOEMPPIFLNB.652", + "dc/svpg/ILOEMPPIFLNB.653", + "dc/svpg/ILOEMPPIFLNB.654", + "dc/svpg/ILOEMPPIFLNB.655", + "dc/svpg/ILOEMPPIFLNB.656", + "dc/svpg/ILOEMPPIFLNB.657", + "dc/svpg/ILOEMPPIFLNB.658", + "dc/svpg/ILOEMPPIFLNB.659", + "dc/svpg/ILOEMPPIFLNB.660", + "dc/svpg/ILOEMPPIFLNB.661", + "dc/svpg/ILOEMPPIFLNB.662", + "dc/svpg/ILOEMPPIFLNB.663", + "dc/svpg/ILOEMPPIFLNB.664", + "dc/svpg/ILOEMPPIFLNB.665", + "dc/svpg/ILOEMPPIFLNB.666", + "dc/svpg/ILOEMPPIFLNB.667", + "dc/svpg/ILOEMPPIFLNB.668", + "dc/svpg/ILOEMPPIFLNB.669", + "dc/svpg/ILOEMPPIFLNB.670", + "dc/svpg/ILOEMPPIFLNB.671", + "dc/svpg/ILOEMPPIFLNB.672", + "dc/svpg/ILOEMPPIFLNB.673", + "dc/svpg/ILOEMPPIFLNB.674", + "dc/svpg/ILOEMPPIFLNB.675", + "dc/svpg/ILOEMPPIFLNB.676", + "dc/svpg/ILOEMPPIFLNB.677", + "dc/svpg/ILOEMPPIFLNB.678", + "dc/svpg/ILOEMPPIFLNB.679", + "dc/svpg/ILOEMPPIFLNB.680", + "dc/svpg/ILOEMPPIFLNB.681", + "dc/svpg/ILOEMPPIFLNB.682", + "dc/svpg/ILOEMPPIFLNB.683", + "dc/svpg/ILOEMPPIFLNB.684", + "dc/svpg/ILOEMPPIFLNB.685", + "dc/svpg/ILOEMPPIFLNB.686", + "dc/svpg/ILOEMPPIFLNB.687", + "dc/svpg/ILOEMPPIFLNB.688", + "dc/svpg/ILOEMPPIFLNB.689", + "dc/svpg/ILOEMPPIFLNB.690", + "dc/svpg/ILOEMPPIFLNB.691", + "dc/svpg/ILOEMPPIFLNB.692", + "dc/svpg/ILOEMPPIFLNB.693", + "dc/svpg/ILOEMPPIFLNB.694", + "dc/svpg/ILOEMPPIFLNB.695", + "dc/svpg/ILOEMPPIFLNB.696", + "dc/svpg/ILOEMPPIFLNB.697", + "dc/svpg/ILOEMPPIFLNB.698", + "dc/svpg/ILOEMPPIFLNB.699", + "dc/svpg/ILOEMPPIFLNB.702", + "dc/svpg/ILOEMPPIFLNB.703", + "dc/svpg/ILOEMPPIFLNB.704", + "dc/svpg/ILOEMPPIFLNB.705", + "dc/svpg/ILOEMPPIFLNB.706", + "dc/svpg/ILOEMPPIFLNB.707", + "dc/svpg/ILOEMPPIFLNB.708", + "dc/svpg/ILOEMPPIFLNB.709", + "dc/svpg/ILOEMPPIFLNB.710", + "dc/svpg/ILOEMPPIFLNB.711", + "dc/svpg/ILOEMPPIFLNB.713", + "dc/svpg/ILOEMPPIFLNB.714", + "dc/svpg/ILOEMPPIFLNB.715", + "dc/svpg/ILOEMPPIFLNB.716", + "dc/svpg/ILOEMPPIFLNB.717", + "dc/svpg/ILOEMPPIFLNB.718", + "dc/svpg/ILOEMPPIFLNB.719", + "dc/svpg/ILOEMPPIFLNB.720", + "dc/svpg/ILOEMPPIFLNB.727", + "dc/svpg/ILOEMPPIFLNB.728", + "dc/svpg/ILOEMPPIFLNB.729", + "dc/svpg/ILOEMPPIFLNB.730", + "dc/svpg/ILOEMPPIFLNB.733", + "dc/svpg/ILOEMPPIFLNB.734", + "dc/svpg/ILOEMPPIFLNB.736", + "dc/svpg/ILOEMPPIFLNB.738", + "dc/svpg/ILOEMPPIFLNB.739", + "dc/svpg/ILOEMPPIFLNB.740", + "dc/svpg/ILOEMPPIFLNB.741", + "dc/svpg/ILOEMPPIFLNB.743", + "dc/svpg/ILOEMPPIFLNB.745", + "dc/svpg/ILOEMPPIFLNB.746", + "dc/svpg/ILOEMPPIFLNB.747", + "dc/svpg/ILOEMPPIFLNB.751", + "dc/svpg/ILOEMPPIFLNB.752", + "dc/svpg/ILOEMPPIFLNB.755", + "dc/svpg/ILOEMPPIFLNB.756", + "dc/svpg/ILOEMPPIFLNB.757", + "dc/svpg/ILOEMPPIFLNB.758", + "dc/svpg/ILOEMPPIFLNB.761", + "dc/svpg/ILOEMPPIFLNB.762", + "dc/svpg/ILOEMPPIFLNB.764", + "dc/svpg/ILOEMPPIFLNB.765", + "dc/svpg/ILOEMPPIFLNB.766", + "dc/svpg/ILOEMPPIFLNB.771", + "dc/svpg/ILOEMPPIFLNB.772", + "dc/svpg/ILOEMPPIFLNB.773", + "dc/svpg/ILOEMPPIFLNB.774", + "dc/svpg/ILOEMPPIFLNB.775", + "dc/svpg/ILOEMPPIFLNB.776", + "dc/svpg/ILOEMPPIFLNB.777", + "dc/svpg/ILOEMPPIFLNB.779", + "dc/svpg/ILOEMPPIFLNB.780", + "dc/svpg/ILOEMPPIFLNB.783", + "dc/svpg/ILOEMPPIFLNB.784", + "dc/svpg/ILOEMPPIFLNB.785", + "dc/svpg/ILOEMPPIFLNB.790", + "dc/svpg/ILOEMPPIFLNB.791", + "dc/svpg/ILOEMPPIFLNB.792", + "dc/svpg/ILOEMPPIFLNB.793", + "dc/svpg/ILOEMPPIFLNB.794", + "dc/svpg/ILOEMPPIFLNB.795", + "dc/svpg/ILOEMPPIFLNB.796", + "dc/svpg/ILOEMPPIFLNB.797", + "dc/svpg/ILOEMPPIFLNB.798", + "dc/svpg/ILOEMPPIFLNB.799", + "dc/svpg/ILOEMPPIFLNB.800", + "dc/svpg/ILOEMPPIFLNB.801", + "dc/svpg/ILOEMPPIFLNB.802", + "dc/svpg/ILOEMPPIFLNB.803", + "dc/svpg/ILOEMPPIFLNB.804", + "dc/svpg/ILOEMPPIFLNB.805", + "dc/svpg/ILOEMPPIFLNB.806", + "dc/svpg/ILOEMPPIFLNB.807", + "dc/svpg/ILOEMPPIFLNB.808", + "dc/svpg/ILOEMPPIFLNB.809", + "dc/svpg/ILOEMPPIFLNB.810", + "dc/svpg/ILOEMPPIFLNB.811", + "dc/svpg/ILOEMPPIFLNB.815", + "dc/svpg/ILOEMPPIFLNB.816", + "dc/svpg/ILOEMPPIFLNB.817", + "dc/svpg/ILOEMPPIFLNB.818", + "dc/svpg/ILOEMPPIFLNB.819", + "dc/svpg/ILOEMPPIFLNB.820", + "dc/svpg/ILOEMPPIFLNB.821", + "dc/svpg/ILOEMPPIFLNB.822", + "dc/svpg/ILOEMPPIFLNB.823", + "dc/svpg/ILOEMPPIFLNB.824", + "dc/svpg/ILOEMPPIFLNB.825", + "dc/svpg/ILOEMPPIFLNB.826", + "dc/svpg/ILOEMPPIFLNB.827", + "dc/svpg/ILOEMPPIFLNB.828", + "dc/svpg/ILOEMPPIFLNB.829", + "dc/svpg/ILOEMPPIFLNB.830", + "dc/svpg/ILOEMPPIFLNB.831", + "dc/svpg/ILOEMPPIFLNB.832", + "dc/svpg/ILOEMPPIFLNB.833", + "dc/svpg/ILOEMPPIFLNB.834", + "dc/svpg/ILOEMPPIFLNB.835", + "dc/svpg/ILOEMPPIFLNB.841", + "dc/svpg/ILOEMPPIFLNB.842", + "dc/svpg/ILOEMPPIFLNB.843", + "dc/svpg/ILOEMPPIFLNB.844", + "dc/svpg/ILOEMPPIFLNB.845", + "dc/svpg/ILOEMPPIFLNB.846", + "dc/svpg/ILOEMPPIFLNB.847", + "dc/svpg/ILOEMPPIFLNB.857", + "dc/svpg/ILOEMPPIFLNB.858", + "dc/svpg/ILOEMPPIFLNB.859", + "dc/svpg/ILOEMPPIFLNB.860", + "dc/svpg/ILOEMPPIFLNB.861", + "dc/svpg/ILOEMPPIFLNB.862", + "dc/svpg/ILOEMPPIFLNB.863", + "dc/svpg/ILOEMPPIFLNB.864", + "dc/svpg/ILOEMPPIFLNB.865", + "dc/svpg/ILOEMPPIFLNB.866", + "dc/svpg/ILOEMPPIFLNB.867", + "dc/svpg/ILOEMPPIFLNB.868", + "dc/svpg/ILOEMPPIFLNB.869", + "dc/svpg/ILOEMPPIFLNB.870", + "dc/svpg/ILOEMPPIFLNB.871", + "dc/svpg/ILOEMPPIFLNB.872", + "dc/svpg/ILOEMPPIFLNB.873", + "dc/svpg/ILOEMPPIFLNB.874", + "dc/svpg/ILOEMPPIFLNB.875", + "dc/svpg/ILOEMPPIFLNB.876", + "dc/svpg/ILOEMPPIFLNB.877", + "dc/svpg/ILOEMPPIFLNB.878", + "dc/svpg/ILOEMPPIFLNB.879", + "dc/svpg/ILOEMPPIFLNB.880", + "dc/svpg/ILOEMPPIFLNB.882", + "dc/svpg/ILOEMPPIFLNB.883", + "dc/svpg/ILOEMPPIFLNB.884", + "dc/svpg/ILOEMPPIFLNB.885", + "dc/svpg/ILOEMPPIFLNB.886", + "dc/svpg/ILOEMPPIFLNB.887", + "dc/svpg/ILOEMPPIFLNB.888", + "dc/svpg/ILOEMPPIFLNB.889", + "dc/svpg/ILOEMPPIFLNB.890", + "dc/svpg/ILOEMPPIFLNB.891", + "dc/svpg/ILOEMPPIFLNB.894", + "dc/svpg/ILOEMPPIFLNB.895", + "dc/svpg/ILOEMPPIFLNB.896", + "dc/svpg/ILOEMPPIFLNB.897", + "dc/svpg/ILOEMPPIFLNB.898", + "dc/svpg/ILOEMPPIFLNB.899", + "dc/svpg/ILOEMPPIFLNB.900", + "dc/svpg/ILOEMPPIFLNB.901", + "dc/svpg/ILOEMPPIFLNB.902", + "dc/svpg/ILOEMPPIFLNB.903", + "dc/svpg/ILOEMPPIFLNB.906", + "dc/svpg/ILOEMPPIFLNB.907", + "dc/svpg/ILOEMPPIFLNB.908", + "dc/svpg/ILOEMPPIFLNB.909", + "dc/svpg/ILOEMPPIFLNB.910", + "dc/svpg/ILOEMPPIFLNB.911", + "dc/svpg/ILOEMPPIFLNB.912", + "dc/svpg/ILOEMPPIFLNB.913", + "dc/svpg/ILOEMPPIFLNB.918", + "dc/svpg/ILOEMPPIFLNB.919", + "dc/svpg/ILOEMPPIFLNB.920", + "dc/svpg/ILOEMPPIFLNB.921", + "dc/svpg/ILOEMPPIFLNB.924", + "dc/svpg/ILOEMPPIFLNB.925", + "dc/svpg/ILOEMPPIFLNB.928", + "dc/svpg/ILOEMPPIFLNB.929", + "dc/svpg/ILOEMPPIFLNB.930", + "dc/svpg/ILOEMPPIFLNB.931", + "dc/svpg/ILOEMPPIFLNB.932", + "dc/svpg/ILOEMPPIFLNB.933", + "dc/svpg/ILOEMPPIFLNB.934", + "dc/svpg/ILOEMPPIFLNB.935", + "dc/svpg/ILOEMPPIFLNB.938", + "dc/svpg/ILOEMPPIFLNB.939", + "dc/svpg/ILOEMPPIFLNB.942", + "dc/svpg/ILOEMPPIFLNB.943", + "dc/svpg/ILOEMPPIFLNB.944", + "dc/svpg/ILOEMPPIFLNB.945", + "dc/svpg/ILOEMPPIFLNB.946", + "dc/svpg/ILOEMPPIFLNB.947", + "dc/svpg/ILOEMPPIFLNB.954", + "dc/svpg/ILOEMPPIFLNB.955", + "dc/svpg/ILOEMPPIFLNB.956", + "dc/svpg/ILOEMPPIFLNB.957", + "dc/svpg/ILOEMPPIFLNB.962", + "dc/svpg/ILOEMPPIFLNB.963", + "dc/svpg/ILOEMPPIFLNB.965", + "dc/svpg/ILOEMPPIFLNB.966", + "dc/svpg/ILOEMPPIFLNB.967", + "dc/svpg/ILOEMPPIFLNB.968", + "dc/svpg/ILOEMPPIFLNB.969", + "dc/svpg/ILOEMPPIFLNB.970", + "dc/svpg/ILOEMPPIFLNB.975", + "dc/svpg/ILOEMPPIFLNB.976", + "dc/svpg/ILOEMPPIFLNB.977", + "dc/svpg/ILOEMPPIFLNB.978", + "dc/svpg/ILOEMPPIFLNB.981", + "dc/svpg/ILOEMPPIFLNB.982", + "dc/svpg/ILOEMPPIFLNB.983", + "dc/svpg/ILOEMPPIFLNB.984", + "dc/svpg/ILOEMPPIFLNB.985", + "dc/svpg/ILOEMPPIFLNB.986", + "dc/svpg/ILOEMPPIFLNB.995", + "dc/svpg/ILOEMPPIFLNB.996", + "dc/svpg/ILOEMPPIFLNB.997", + "dc/svpg/ILOEMPPIFLNB.998", + "dc/svpg/ILOEMPPIFLNB.999", + "dc/svpg/ILOEMPPIFLNB.1000", + "dc/svpg/ILOEMPPIFLNB.1002", + "dc/svpg/ILOEMPPIFLNB.1003", + "dc/svpg/ILOEMPPIFLNB.1004", + "dc/svpg/ILOEMPPIFLNB.1005", + "dc/svpg/ILOEMPPIFLNB.1006", + "dc/svpg/ILOEMPPIFLNB.1007", + "dc/svpg/ILOEMPPIFLNB.1008", + "dc/svpg/ILOEMPPIFLNB.1009", + "dc/svpg/ILOEMPPIFLNB.1012", + "dc/svpg/ILOEMPPIFLNB.1013", + "dc/svpg/ILOEMPPIFLNB.1014", + "dc/svpg/ILOEMPPIFLNB.1015", + "dc/svpg/ILOEMPPIFLNB.1020", + "dc/svpg/ILOEMPPIFLNB.1021", + "dc/svpg/ILOEMPPIFLNB.1022", + "dc/svpg/ILOEMPPIFLNB.1023", + "dc/svpg/ILOEMPPIFLNB.1024", + "dc/svpg/ILOEMPPIFLNB.1025", + "dc/svpg/ILOEMPPIFLNB.1035", + "dc/svpg/ILOEMPPIFLNB.1036", + "dc/svpg/ILOEMPPIFLNB.1037", + "dc/svpg/ILOEMPPIFLNB.1038", + "dc/svpg/ILOEMPPIFLNB.1039", + "dc/svpg/ILOEMPPIFLNB.1040", + "dc/svpg/ILOEMPPIFLNB.1041", + "dc/svpg/ILOEMPPIFLNB.1043", + "dc/svpg/ILOEMPPIFLNB.1044", + "dc/svpg/ILOEMPPIFLNB.1045", + "dc/svpg/ILOEMPPIFLNB.1046", + "dc/svpg/ILOEMPPIFLNB.1047", + "dc/svpg/ILOEMPPIFLNB.1049", + "dc/svpg/ILOEMPPIFLNB.1050", + "dc/svpg/ILOEMPPIFLNB.1072", + "dc/svpg/ILOEMPPIFLNB.1073", + "dc/svpg/ILOEMPPIFLNB.1074", + "dc/svpg/ILOEMPPIFLNB.1075", + "dc/svpg/ILOEMPPIFLNB.1076", + "dc/svpg/ILOEMPPIFLNB.1077", + "dc/svpg/ILOEMPPIFLNB.1078", + "dc/svpg/ILOEMPPIFLNB.1079", + "dc/svpg/ILOEMPPIFLNB.1080", + "dc/svpg/ILOEMPPIFLNB.1081", + "dc/svpg/ILOEMPPIFLNB.1082", + "dc/svpg/ILOEMPPIFLNB.1083", + "dc/svpg/ILOEMPPIFLNB.1084", + "dc/svpg/ILOEMPPIFLNB.1085", + "dc/svpg/ILOEMPPIFLNB.1086", + "dc/svpg/ILOEMPPIFLNB.1087", + "dc/svpg/ILOEMPPIFLNB.1088", + "dc/svpg/ILOEMPPIFLNB.1089", + "dc/svpg/ILOEMPPIFLNB.1090", + "dc/svpg/ILOEMPPIFLNB.1091", + "dc/svpg/ILOEMPPIFLNB.1092", + "dc/svpg/ILOEMPPIFLNB.1093", + "dc/svpg/ILOEMPPIFLNB.1094", + "dc/svpg/ILOEMPPIFLNB.1095", + "dc/svpg/ILOEMPPIFLNB.1096", + "dc/svpg/ILOEMPPIFLNB.1097", + "dc/svpg/ILOEMPPIFLNB.1098", + "dc/svpg/ILOEMPPIFLNB.1099", + "dc/svpg/ILOEMPPIFLNB.1100", + "dc/svpg/ILOEMPPIFLNB.1101", + "dc/svpg/ILOEMPPIFLNB.1102", + "dc/svpg/ILOEMPPIFLNB.1103", + "dc/svpg/ILOEMPPIFLNB.1104", + "dc/svpg/ILOEMPPIFLNB.1105", + "dc/svpg/ILOEMPPIFLNB.1106", + "dc/svpg/ILOEMPPIFLNB.1107", + "dc/svpg/ILOEMPPIFLNB.1108", + "dc/svpg/ILOEMPPIFLNB.1109", + "dc/svpg/ILOEMPPIFLNB.1110", + "dc/svpg/ILOEMPPIFLNB.1111", + "dc/svpg/ILOEMPPIFLNB.1112", + "dc/svpg/ILOEMPPIFLNB.1113", + "dc/svpg/ILOEMPPIFLNB.1114", + "dc/svpg/ILOEMPPIFLNB.1115", + "dc/svpg/ILOEMPPIFLNB.1116", + "dc/svpg/ILOEMPPIFLNB.1117", + "dc/svpg/ILOEMPPIFLNB.1118", + "dc/svpg/ILOEMPPIFLNB.1119", + "dc/svpg/ILOEMPPIFLNB.1120", + "dc/svpg/ILOEMPPIFLNB.1121", + "dc/svpg/ILOEMPPIFLNB.1126", + "dc/svpg/ILOEMPPIFLNB.1127", + "dc/svpg/ILOEMPPIFLNB.1128", + "dc/svpg/ILOEMPPIFLNB.1129", + "dc/svpg/ILOEMPPIFLNB.1130", + "dc/svpg/ILOEMPPIFLNB.1131", + "dc/svpg/ILOEMPPIFLNB.1132", + "dc/svpg/ILOEMPPIFLNB.1133", + "dc/svpg/ILOEMPPIFLNB.1134", + "dc/svpg/ILOEMPPIFLNB.1135", + "dc/svpg/ILOEMPPIFLNB.1136", + "dc/svpg/ILOEMPPIFLNB.1137", + "dc/svpg/ILOEMPPIFLNB.1138", + "dc/svpg/ILOEMPPIFLNB.1139", + "dc/svpg/ILOEMPPIFLNB.1140", + "dc/svpg/ILOEMPPIFLNB.1141", + "dc/svpg/ILOEMPPIFLNB.1142", + "dc/svpg/ILOEMPPIFLNB.1143", + "dc/svpg/ILOEMPPIFLNB.1144", + "dc/svpg/ILOEMPPIFLNB.1145", + "dc/svpg/ILOEMPPIFLNB.1150", + "dc/svpg/ILOEMPPIFLNB.1151", + "dc/svpg/ILOEMPPIFLNB.1152", + "dc/svpg/ILOEMPPIFLNB.1153", + "dc/svpg/ILOEMPPIFLNB.1154", + "dc/svpg/ILOEMPPIFLNB.1155", + "dc/svpg/ILOEMPPIFLNB.1156", + "dc/svpg/ILOEMPPIFLNB.1157", + "dc/svpg/ILOEMPPIFLNB.1158", + "dc/svpg/ILOEMPPIFLNB.1159", + "dc/svpg/ILOEMPPIFLNB.1161", + "dc/svpg/ILOEMPPIFLNB.1162", + "dc/svpg/ILOEMPPIFLNB.1164", + "dc/svpg/ILOEMPPIFLNB.1165", + "dc/svpg/ILOEMPPIFLNB.1166", + "dc/svpg/ILOEMPPIFLNB.1167", + "dc/svpg/ILOEMPPIFLNB.1168", + "dc/svpg/ILOEMPPIFLNB.1169", + "dc/svpg/ILOEMPPIFLNB.1170", + "dc/svpg/ILOEMPPIFLNB.1171", + "dc/svpg/ILOEMPPIFLNB.1172", + "dc/svpg/ILOEMPPIFLNB.1173", + "dc/svpg/ILOEMPPIFLNB.1174", + "dc/svpg/ILOEMPPIFLNB.1175", + "dc/svpg/ILOEMPPIFLNB.1176", + "dc/svpg/ILOEMPPIFLNB.1177", + "dc/svpg/ILOEMPPIFLNB.1178", + "dc/svpg/ILOEMPPIFLNB.1179", + "dc/svpg/ILOEMPPIFLNB.1180", + "dc/svpg/ILOEMPPIFLNB.1181", + "dc/svpg/ILOEMPPIFLNB.1182", + "dc/svpg/ILOEMPPIFLNB.1183", + "dc/svpg/ILOEMPPIFLNB.1184", + "dc/svpg/ILOEMPPIFLNB.1185", + "dc/svpg/ILOEMPPIFLNB.1186", + "dc/svpg/ILOEMPPIFLNB.1187", + "dc/svpg/ILOEMPPIFLNB.1188", + "dc/svpg/ILOEMPPIFLNB.1189", + "dc/svpg/ILOEMPPIFLNB.1190", + "dc/svpg/ILOEMPPIFLNB.1193", + "dc/svpg/ILOEMPPIFLNB.1194", + "dc/svpg/ILOEMPPIFLNB.1195", + "dc/svpg/ILOEMPPIFLNB.1196", + "dc/svpg/ILOEMPPIFLNB.1197", + "dc/svpg/ILOEMPPIFLNB.1198", + "dc/svpg/ILOEMPPIFLNB.1199", + "dc/svpg/ILOEMPPIFLNB.1200", + "dc/svpg/ILOEMPPIFLNB.1202", + "dc/svpg/ILOEMPPIFLNB.1203", + "dc/svpg/ILOEMPPIFLNB.1204", + "dc/svpg/ILOEMPPIFLNB.1205", + "dc/svpg/ILOEMPPIFLNB.1206", + "dc/svpg/ILOEMPPIFLNB.1207", + "dc/svpg/ILOEMPPIFLNB.1208", + "dc/svpg/ILOEMPPIFLNB.1209", + "dc/svpg/ILOEMPPIFLNB.1210", + "dc/svpg/ILOEMPPIFLNB.1211", + "dc/svpg/ILOEMPPIFLNB.1212", + "dc/svpg/ILOEMPPIFLNB.1213", + "dc/svpg/ILOEMPPIFLNB.1214", + "dc/svpg/ILOEMPPIFLNB.1215", + "dc/svpg/ILOEMPPIFLNB.1216", + "dc/svpg/ILOEMPPIFLNB.1217", + "dc/svpg/ILOEMPPIFLNB.1218", + "dc/svpg/ILOEMPPIFLNB.1219", + "dc/svpg/ILOEMPPIFLNB.1222", + "dc/svpg/ILOEMPPIFLNB.1223", + "dc/svpg/ILOEMPPIFLNB.1224", + "dc/svpg/ILOEMPPIFLNB.1230", + "dc/svpg/ILOEMPPIFLNB.1231", + "dc/svpg/ILOEMPPIFLNB.1232", + "dc/svpg/ILOEMPPIFLNB.1233", + "dc/svpg/ILOEMPPIFLNB.1234", + "dc/svpg/ILOEMPPIFLNB.1235", + "dc/svpg/ILOEMPPIFLNB.1236", + "dc/svpg/ILOEMPPIFLNB.1237", + "dc/svpg/ILOEMPPIFLNB.1238", + "dc/svpg/ILOEMPPIFLNB.1239", + "dc/svpg/ILOEMPPIFLNB.1240", + "dc/svpg/ILOEMPPIFLNB.1241", + "dc/svpg/ILOEMPPIFLNB.1242", + "dc/svpg/ILOEMPPIFLNB.1243", + "dc/svpg/ILOEMPPIFLNB.1244", + "dc/svpg/ILOEMPPIFLNB.1246", + "dc/svpg/ILOEMPPIFLNB.1247", + "dc/svpg/ILOEMPPIFLNB.1248", + "dc/svpg/ILOEMPPIFLNB.1249", + "dc/svpg/ILOEMPPIFLNB.1250", + "dc/svpg/ILOEMPPIFLNB.1251", + "dc/svpg/ILOEMPPIFLNB.1253", + "dc/svpg/ILOEMPPIFLNB.1254", + "dc/svpg/ILOEMPPIFLNB.1255", + "dc/svpg/ILOEMPPIFLNB.1256", + "dc/svpg/ILOEMPPIFLNB.1257", + "dc/svpg/ILOEMPPIFLNB.1258", + "dc/svpg/ILOEMPPIFLNB.1259", + "dc/svpg/ILOEMPPIFLNB.1260", + "dc/svpg/ILOEMPPIFLNB.1261", + "dc/svpg/ILOEMPPIFLNB.1262", + "dc/svpg/ILOEMPPIFLNB.1263", + "dc/svpg/ILOEMPPIFLNB.1264", + "dc/svpg/ILOEMPPIFLNB.1266", + "dc/svpg/ILOEMPPIFLNB.1267" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age" + ], + "name": [ + "Employment Outside The Formal Sector by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilooccupation", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilooccupation", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilooccupation", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Intermediate, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Intermediate, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus" + ], + "name": [ + "Employment Outside The Formal Sector by Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Disability Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity" + ], + "name": [ + "Employment Outside The Formal Sector by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Manufacture of Furniture (ISIC4_C31), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Other Manufacturing (ISIC4_C32), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Real Estate Activities (ISIC4_L68), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Education (ISIC4_P85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Economic Activity, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel" + ], + "name": [ + "Employment Outside The Formal Sector by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Intermediate, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U", + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--U", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Education Level, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector" + ], + "name": [ + "Employment Outside The Formal Sector by Institutional Sector" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI" + ], + "name": [ + "Employment Outside The Formal Sector With Institutional Sector = Private" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Institutional Sector = Private, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Institutional Sector = Private, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Institutional Sector, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus" + ], + "name": [ + "Employment Outside The Formal Sector by Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Married, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Marital Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus" + ], + "name": [ + "Employment Outside The Formal Sector by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X", + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X", + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01", + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation" + ], + "name": [ + "Employment Outside The Formal Sector by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Armed Forces (ISCO88_01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Models, Salespersons And Demonstrators (ISCO88_52), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex" + ], + "name": [ + "Employment Outside The Formal Sector by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_disabilityStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeconomicActivity_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPPIFLNB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilourbanisation" + ], + "name": [ + "Employment Outside The Formal Sector by Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Employment Outside The Formal Sector With Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Employment Outside The Formal Sector With Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPPIFLNB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLNB_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Employment Outside The Formal Sector With Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLNB_iloinstitutionalSector_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT" + ], + "name": [ + "Share of Employment Outside The Formal Sector" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT", + "dc/topic/ILOEMPPIFLRT_age", + "dc/topic/ILOEMPPIFLRT_disabilityStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilooccupation", + "dc/topic/ILOEMPPIFLRT_ilosex", + "dc/topic/ILOEMPPIFLRT_ilourbanisation", + "dc/svpg/ILOEMPPIFLRT.002", + "dc/svpg/ILOEMPPIFLRT.003", + "dc/svpg/ILOEMPPIFLRT.004", + "dc/svpg/ILOEMPPIFLRT.005", + "dc/svpg/ILOEMPPIFLRT.006", + "dc/svpg/ILOEMPPIFLRT.007", + "dc/svpg/ILOEMPPIFLRT.008", + "dc/svpg/ILOEMPPIFLRT.009", + "dc/svpg/ILOEMPPIFLRT.010", + "dc/svpg/ILOEMPPIFLRT.011", + "dc/svpg/ILOEMPPIFLRT.012", + "dc/svpg/ILOEMPPIFLRT.013", + "dc/svpg/ILOEMPPIFLRT.014", + "dc/svpg/ILOEMPPIFLRT.015", + "dc/svpg/ILOEMPPIFLRT.016", + "dc/svpg/ILOEMPPIFLRT.017", + "dc/svpg/ILOEMPPIFLRT.018", + "dc/svpg/ILOEMPPIFLRT.019", + "dc/svpg/ILOEMPPIFLRT.020", + "dc/svpg/ILOEMPPIFLRT.024", + "dc/svpg/ILOEMPPIFLRT.025", + "dc/svpg/ILOEMPPIFLRT.026", + "dc/svpg/ILOEMPPIFLRT.027", + "dc/svpg/ILOEMPPIFLRT.028", + "dc/svpg/ILOEMPPIFLRT.029", + "dc/svpg/ILOEMPPIFLRT.030", + "dc/svpg/ILOEMPPIFLRT.031", + "dc/svpg/ILOEMPPIFLRT.032", + "dc/svpg/ILOEMPPIFLRT.033", + "dc/svpg/ILOEMPPIFLRT.034", + "dc/svpg/ILOEMPPIFLRT.035", + "dc/svpg/ILOEMPPIFLRT.042", + "dc/svpg/ILOEMPPIFLRT.043", + "dc/svpg/ILOEMPPIFLRT.044", + "dc/svpg/ILOEMPPIFLRT.045", + "dc/svpg/ILOEMPPIFLRT.046", + "dc/svpg/ILOEMPPIFLRT.047", + "dc/svpg/ILOEMPPIFLRT.051", + "dc/svpg/ILOEMPPIFLRT.052", + "dc/svpg/ILOEMPPIFLRT.053", + "dc/svpg/ILOEMPPIFLRT.057", + "dc/svpg/ILOEMPPIFLRT.058", + "dc/svpg/ILOEMPPIFLRT.059", + "dc/svpg/ILOEMPPIFLRT.060", + "dc/svpg/ILOEMPPIFLRT.061", + "dc/svpg/ILOEMPPIFLRT.062", + "dc/svpg/ILOEMPPIFLRT.063", + "dc/svpg/ILOEMPPIFLRT.064", + "dc/svpg/ILOEMPPIFLRT.065", + "dc/svpg/ILOEMPPIFLRT.066", + "dc/svpg/ILOEMPPIFLRT.067", + "dc/svpg/ILOEMPPIFLRT.068", + "dc/svpg/ILOEMPPIFLRT.072", + "dc/svpg/ILOEMPPIFLRT.073", + "dc/svpg/ILOEMPPIFLRT.074", + "dc/svpg/ILOEMPPIFLRT.078", + "dc/svpg/ILOEMPPIFLRT.079", + "dc/svpg/ILOEMPPIFLRT.080", + "dc/svpg/ILOEMPPIFLRT.081", + "dc/svpg/ILOEMPPIFLRT.082", + "dc/svpg/ILOEMPPIFLRT.083", + "dc/svpg/ILOEMPPIFLRT.084", + "dc/svpg/ILOEMPPIFLRT.085", + "dc/svpg/ILOEMPPIFLRT.086", + "dc/svpg/ILOEMPPIFLRT.096", + "dc/svpg/ILOEMPPIFLRT.097", + "dc/svpg/ILOEMPPIFLRT.098", + "dc/svpg/ILOEMPPIFLRT.099", + "dc/svpg/ILOEMPPIFLRT.100", + "dc/svpg/ILOEMPPIFLRT.101", + "dc/svpg/ILOEMPPIFLRT.108", + "dc/svpg/ILOEMPPIFLRT.109", + "dc/svpg/ILOEMPPIFLRT.110", + "dc/svpg/ILOEMPPIFLRT.111", + "dc/svpg/ILOEMPPIFLRT.112", + "dc/svpg/ILOEMPPIFLRT.113", + "dc/svpg/ILOEMPPIFLRT.114", + "dc/svpg/ILOEMPPIFLRT.115", + "dc/svpg/ILOEMPPIFLRT.116", + "dc/svpg/ILOEMPPIFLRT.117", + "dc/svpg/ILOEMPPIFLRT.118", + "dc/svpg/ILOEMPPIFLRT.119", + "dc/svpg/ILOEMPPIFLRT.126", + "dc/svpg/ILOEMPPIFLRT.127", + "dc/svpg/ILOEMPPIFLRT.128", + "dc/svpg/ILOEMPPIFLRT.129", + "dc/svpg/ILOEMPPIFLRT.130", + "dc/svpg/ILOEMPPIFLRT.131", + "dc/svpg/ILOEMPPIFLRT.135", + "dc/svpg/ILOEMPPIFLRT.136", + "dc/svpg/ILOEMPPIFLRT.137", + "dc/svpg/ILOEMPPIFLRT.138", + "dc/svpg/ILOEMPPIFLRT.139", + "dc/svpg/ILOEMPPIFLRT.140", + "dc/svpg/ILOEMPPIFLRT.141", + "dc/svpg/ILOEMPPIFLRT.142", + "dc/svpg/ILOEMPPIFLRT.143", + "dc/svpg/ILOEMPPIFLRT.156", + "dc/svpg/ILOEMPPIFLRT.157", + "dc/svpg/ILOEMPPIFLRT.158", + "dc/svpg/ILOEMPPIFLRT.159", + "dc/svpg/ILOEMPPIFLRT.160", + "dc/svpg/ILOEMPPIFLRT.161", + "dc/svpg/ILOEMPPIFLRT.162", + "dc/svpg/ILOEMPPIFLRT.163", + "dc/svpg/ILOEMPPIFLRT.164", + "dc/svpg/ILOEMPPIFLRT.165", + "dc/svpg/ILOEMPPIFLRT.166", + "dc/svpg/ILOEMPPIFLRT.167", + "dc/svpg/ILOEMPPIFLRT.168", + "dc/svpg/ILOEMPPIFLRT.169", + "dc/svpg/ILOEMPPIFLRT.170", + "dc/svpg/ILOEMPPIFLRT.171", + "dc/svpg/ILOEMPPIFLRT.172", + "dc/svpg/ILOEMPPIFLRT.173", + "dc/svpg/ILOEMPPIFLRT.174", + "dc/svpg/ILOEMPPIFLRT.175", + "dc/svpg/ILOEMPPIFLRT.176", + "dc/svpg/ILOEMPPIFLRT.180", + "dc/svpg/ILOEMPPIFLRT.181", + "dc/svpg/ILOEMPPIFLRT.182", + "dc/svpg/ILOEMPPIFLRT.183", + "dc/svpg/ILOEMPPIFLRT.184", + "dc/svpg/ILOEMPPIFLRT.185", + "dc/svpg/ILOEMPPIFLRT.192", + "dc/svpg/ILOEMPPIFLRT.193", + "dc/svpg/ILOEMPPIFLRT.194", + "dc/svpg/ILOEMPPIFLRT.195", + "dc/svpg/ILOEMPPIFLRT.196", + "dc/svpg/ILOEMPPIFLRT.197", + "dc/svpg/ILOEMPPIFLRT.198", + "dc/svpg/ILOEMPPIFLRT.199", + "dc/svpg/ILOEMPPIFLRT.200", + "dc/svpg/ILOEMPPIFLRT.219", + "dc/svpg/ILOEMPPIFLRT.220", + "dc/svpg/ILOEMPPIFLRT.221", + "dc/svpg/ILOEMPPIFLRT.222", + "dc/svpg/ILOEMPPIFLRT.223", + "dc/svpg/ILOEMPPIFLRT.224", + "dc/svpg/ILOEMPPIFLRT.225", + "dc/svpg/ILOEMPPIFLRT.226", + "dc/svpg/ILOEMPPIFLRT.227", + "dc/svpg/ILOEMPPIFLRT.228", + "dc/svpg/ILOEMPPIFLRT.229", + "dc/svpg/ILOEMPPIFLRT.230", + "dc/svpg/ILOEMPPIFLRT.231", + "dc/svpg/ILOEMPPIFLRT.232", + "dc/svpg/ILOEMPPIFLRT.233", + "dc/svpg/ILOEMPPIFLRT.234", + "dc/svpg/ILOEMPPIFLRT.235", + "dc/svpg/ILOEMPPIFLRT.236", + "dc/svpg/ILOEMPPIFLRT.237", + "dc/svpg/ILOEMPPIFLRT.238", + "dc/svpg/ILOEMPPIFLRT.239", + "dc/svpg/ILOEMPPIFLRT.240", + "dc/svpg/ILOEMPPIFLRT.241", + "dc/svpg/ILOEMPPIFLRT.242", + "dc/svpg/ILOEMPPIFLRT.243", + "dc/svpg/ILOEMPPIFLRT.244", + "dc/svpg/ILOEMPPIFLRT.245", + "dc/svpg/ILOEMPPIFLRT.246", + "dc/svpg/ILOEMPPIFLRT.247", + "dc/svpg/ILOEMPPIFLRT.248", + "dc/svpg/ILOEMPPIFLRT.249", + "dc/svpg/ILOEMPPIFLRT.250", + "dc/svpg/ILOEMPPIFLRT.251", + "dc/svpg/ILOEMPPIFLRT.252", + "dc/svpg/ILOEMPPIFLRT.253", + "dc/svpg/ILOEMPPIFLRT.254", + "dc/svpg/ILOEMPPIFLRT.255", + "dc/svpg/ILOEMPPIFLRT.256", + "dc/svpg/ILOEMPPIFLRT.257", + "dc/svpg/ILOEMPPIFLRT.258", + "dc/svpg/ILOEMPPIFLRT.259", + "dc/svpg/ILOEMPPIFLRT.260", + "dc/svpg/ILOEMPPIFLRT.261", + "dc/svpg/ILOEMPPIFLRT.262", + "dc/svpg/ILOEMPPIFLRT.263", + "dc/svpg/ILOEMPPIFLRT.264", + "dc/svpg/ILOEMPPIFLRT.265", + "dc/svpg/ILOEMPPIFLRT.266", + "dc/svpg/ILOEMPPIFLRT.267", + "dc/svpg/ILOEMPPIFLRT.268", + "dc/svpg/ILOEMPPIFLRT.269", + "dc/svpg/ILOEMPPIFLRT.270", + "dc/svpg/ILOEMPPIFLRT.271", + "dc/svpg/ILOEMPPIFLRT.272", + "dc/svpg/ILOEMPPIFLRT.273", + "dc/svpg/ILOEMPPIFLRT.274", + "dc/svpg/ILOEMPPIFLRT.275", + "dc/svpg/ILOEMPPIFLRT.276", + "dc/svpg/ILOEMPPIFLRT.277", + "dc/svpg/ILOEMPPIFLRT.278", + "dc/svpg/ILOEMPPIFLRT.279", + "dc/svpg/ILOEMPPIFLRT.280", + "dc/svpg/ILOEMPPIFLRT.281", + "dc/svpg/ILOEMPPIFLRT.282", + "dc/svpg/ILOEMPPIFLRT.283", + "dc/svpg/ILOEMPPIFLRT.284", + "dc/svpg/ILOEMPPIFLRT.285", + "dc/svpg/ILOEMPPIFLRT.286", + "dc/svpg/ILOEMPPIFLRT.287", + "dc/svpg/ILOEMPPIFLRT.288", + "dc/svpg/ILOEMPPIFLRT.289", + "dc/svpg/ILOEMPPIFLRT.290", + "dc/svpg/ILOEMPPIFLRT.291", + "dc/svpg/ILOEMPPIFLRT.292", + "dc/svpg/ILOEMPPIFLRT.293", + "dc/svpg/ILOEMPPIFLRT.294", + "dc/svpg/ILOEMPPIFLRT.295", + "dc/svpg/ILOEMPPIFLRT.296", + "dc/svpg/ILOEMPPIFLRT.297", + "dc/svpg/ILOEMPPIFLRT.298", + "dc/svpg/ILOEMPPIFLRT.299", + "dc/svpg/ILOEMPPIFLRT.300", + "dc/svpg/ILOEMPPIFLRT.301", + "dc/svpg/ILOEMPPIFLRT.302", + "dc/svpg/ILOEMPPIFLRT.303", + "dc/svpg/ILOEMPPIFLRT.304", + "dc/svpg/ILOEMPPIFLRT.305", + "dc/svpg/ILOEMPPIFLRT.306", + "dc/svpg/ILOEMPPIFLRT.307", + "dc/svpg/ILOEMPPIFLRT.308", + "dc/svpg/ILOEMPPIFLRT.309", + "dc/svpg/ILOEMPPIFLRT.310", + "dc/svpg/ILOEMPPIFLRT.311", + "dc/svpg/ILOEMPPIFLRT.312", + "dc/svpg/ILOEMPPIFLRT.313", + "dc/svpg/ILOEMPPIFLRT.314", + "dc/svpg/ILOEMPPIFLRT.315", + "dc/svpg/ILOEMPPIFLRT.316", + "dc/svpg/ILOEMPPIFLRT.317", + "dc/svpg/ILOEMPPIFLRT.318", + "dc/svpg/ILOEMPPIFLRT.319", + "dc/svpg/ILOEMPPIFLRT.320", + "dc/svpg/ILOEMPPIFLRT.321", + "dc/svpg/ILOEMPPIFLRT.322", + "dc/svpg/ILOEMPPIFLRT.323", + "dc/svpg/ILOEMPPIFLRT.324", + "dc/svpg/ILOEMPPIFLRT.325", + "dc/svpg/ILOEMPPIFLRT.326", + "dc/svpg/ILOEMPPIFLRT.327", + "dc/svpg/ILOEMPPIFLRT.328", + "dc/svpg/ILOEMPPIFLRT.329", + "dc/svpg/ILOEMPPIFLRT.330", + "dc/svpg/ILOEMPPIFLRT.331", + "dc/svpg/ILOEMPPIFLRT.332", + "dc/svpg/ILOEMPPIFLRT.333", + "dc/svpg/ILOEMPPIFLRT.334", + "dc/svpg/ILOEMPPIFLRT.335", + "dc/svpg/ILOEMPPIFLRT.336", + "dc/svpg/ILOEMPPIFLRT.337", + "dc/svpg/ILOEMPPIFLRT.338", + "dc/svpg/ILOEMPPIFLRT.339", + "dc/svpg/ILOEMPPIFLRT.340", + "dc/svpg/ILOEMPPIFLRT.341", + "dc/svpg/ILOEMPPIFLRT.342", + "dc/svpg/ILOEMPPIFLRT.343", + "dc/svpg/ILOEMPPIFLRT.344", + "dc/svpg/ILOEMPPIFLRT.357", + "dc/svpg/ILOEMPPIFLRT.358", + "dc/svpg/ILOEMPPIFLRT.359", + "dc/svpg/ILOEMPPIFLRT.360", + "dc/svpg/ILOEMPPIFLRT.361", + "dc/svpg/ILOEMPPIFLRT.362", + "dc/svpg/ILOEMPPIFLRT.363", + "dc/svpg/ILOEMPPIFLRT.364", + "dc/svpg/ILOEMPPIFLRT.365", + "dc/svpg/ILOEMPPIFLRT.366", + "dc/svpg/ILOEMPPIFLRT.367", + "dc/svpg/ILOEMPPIFLRT.368", + "dc/svpg/ILOEMPPIFLRT.369", + "dc/svpg/ILOEMPPIFLRT.370", + "dc/svpg/ILOEMPPIFLRT.371", + "dc/svpg/ILOEMPPIFLRT.372", + "dc/svpg/ILOEMPPIFLRT.373", + "dc/svpg/ILOEMPPIFLRT.374", + "dc/svpg/ILOEMPPIFLRT.375", + "dc/svpg/ILOEMPPIFLRT.376", + "dc/svpg/ILOEMPPIFLRT.377", + "dc/svpg/ILOEMPPIFLRT.378", + "dc/svpg/ILOEMPPIFLRT.379", + "dc/svpg/ILOEMPPIFLRT.380", + "dc/svpg/ILOEMPPIFLRT.381", + "dc/svpg/ILOEMPPIFLRT.382", + "dc/svpg/ILOEMPPIFLRT.383", + "dc/svpg/ILOEMPPIFLRT.384", + "dc/svpg/ILOEMPPIFLRT.385", + "dc/svpg/ILOEMPPIFLRT.386", + "dc/svpg/ILOEMPPIFLRT.393", + "dc/svpg/ILOEMPPIFLRT.394", + "dc/svpg/ILOEMPPIFLRT.395", + "dc/svpg/ILOEMPPIFLRT.396", + "dc/svpg/ILOEMPPIFLRT.397", + "dc/svpg/ILOEMPPIFLRT.398", + "dc/svpg/ILOEMPPIFLRT.399", + "dc/svpg/ILOEMPPIFLRT.400", + "dc/svpg/ILOEMPPIFLRT.401", + "dc/svpg/ILOEMPPIFLRT.402", + "dc/svpg/ILOEMPPIFLRT.403", + "dc/svpg/ILOEMPPIFLRT.404", + "dc/svpg/ILOEMPPIFLRT.405", + "dc/svpg/ILOEMPPIFLRT.406", + "dc/svpg/ILOEMPPIFLRT.407", + "dc/svpg/ILOEMPPIFLRT.408", + "dc/svpg/ILOEMPPIFLRT.409", + "dc/svpg/ILOEMPPIFLRT.410", + "dc/svpg/ILOEMPPIFLRT.411", + "dc/svpg/ILOEMPPIFLRT.412", + "dc/svpg/ILOEMPPIFLRT.413", + "dc/svpg/ILOEMPPIFLRT.414", + "dc/svpg/ILOEMPPIFLRT.415", + "dc/svpg/ILOEMPPIFLRT.416", + "dc/svpg/ILOEMPPIFLRT.417", + "dc/svpg/ILOEMPPIFLRT.418", + "dc/svpg/ILOEMPPIFLRT.419", + "dc/svpg/ILOEMPPIFLRT.420", + "dc/svpg/ILOEMPPIFLRT.421", + "dc/svpg/ILOEMPPIFLRT.422", + "dc/svpg/ILOEMPPIFLRT.423", + "dc/svpg/ILOEMPPIFLRT.424", + "dc/svpg/ILOEMPPIFLRT.425", + "dc/svpg/ILOEMPPIFLRT.426", + "dc/svpg/ILOEMPPIFLRT.427", + "dc/svpg/ILOEMPPIFLRT.428", + "dc/svpg/ILOEMPPIFLRT.429", + "dc/svpg/ILOEMPPIFLRT.430", + "dc/svpg/ILOEMPPIFLRT.431", + "dc/svpg/ILOEMPPIFLRT.432", + "dc/svpg/ILOEMPPIFLRT.433", + "dc/svpg/ILOEMPPIFLRT.434", + "dc/svpg/ILOEMPPIFLRT.435", + "dc/svpg/ILOEMPPIFLRT.436", + "dc/svpg/ILOEMPPIFLRT.437", + "dc/svpg/ILOEMPPIFLRT.438", + "dc/svpg/ILOEMPPIFLRT.460", + "dc/svpg/ILOEMPPIFLRT.461", + "dc/svpg/ILOEMPPIFLRT.462", + "dc/svpg/ILOEMPPIFLRT.463", + "dc/svpg/ILOEMPPIFLRT.464", + "dc/svpg/ILOEMPPIFLRT.465", + "dc/svpg/ILOEMPPIFLRT.466", + "dc/svpg/ILOEMPPIFLRT.468", + "dc/svpg/ILOEMPPIFLRT.469", + "dc/svpg/ILOEMPPIFLRT.470", + "dc/svpg/ILOEMPPIFLRT.471", + "dc/svpg/ILOEMPPIFLRT.472", + "dc/svpg/ILOEMPPIFLRT.473", + "dc/svpg/ILOEMPPIFLRT.474", + "dc/svpg/ILOEMPPIFLRT.475", + "dc/svpg/ILOEMPPIFLRT.476", + "dc/svpg/ILOEMPPIFLRT.477", + "dc/svpg/ILOEMPPIFLRT.478", + "dc/svpg/ILOEMPPIFLRT.479", + "dc/svpg/ILOEMPPIFLRT.480", + "dc/svpg/ILOEMPPIFLRT.481", + "dc/svpg/ILOEMPPIFLRT.482", + "dc/svpg/ILOEMPPIFLRT.483", + "dc/svpg/ILOEMPPIFLRT.484", + "dc/svpg/ILOEMPPIFLRT.485", + "dc/svpg/ILOEMPPIFLRT.486", + "dc/svpg/ILOEMPPIFLRT.487", + "dc/svpg/ILOEMPPIFLRT.488", + "dc/svpg/ILOEMPPIFLRT.489", + "dc/svpg/ILOEMPPIFLRT.490", + "dc/svpg/ILOEMPPIFLRT.491", + "dc/svpg/ILOEMPPIFLRT.492", + "dc/svpg/ILOEMPPIFLRT.493", + "dc/svpg/ILOEMPPIFLRT.494", + "dc/svpg/ILOEMPPIFLRT.495", + "dc/svpg/ILOEMPPIFLRT.496", + "dc/svpg/ILOEMPPIFLRT.497", + "dc/svpg/ILOEMPPIFLRT.498", + "dc/svpg/ILOEMPPIFLRT.499", + "dc/svpg/ILOEMPPIFLRT.500", + "dc/svpg/ILOEMPPIFLRT.501", + "dc/svpg/ILOEMPPIFLRT.502", + "dc/svpg/ILOEMPPIFLRT.503", + "dc/svpg/ILOEMPPIFLRT.504", + "dc/svpg/ILOEMPPIFLRT.506", + "dc/svpg/ILOEMPPIFLRT.507", + "dc/svpg/ILOEMPPIFLRT.508", + "dc/svpg/ILOEMPPIFLRT.509", + "dc/svpg/ILOEMPPIFLRT.511", + "dc/svpg/ILOEMPPIFLRT.512", + "dc/svpg/ILOEMPPIFLRT.514", + "dc/svpg/ILOEMPPIFLRT.515", + "dc/svpg/ILOEMPPIFLRT.516", + "dc/svpg/ILOEMPPIFLRT.517", + "dc/svpg/ILOEMPPIFLRT.518", + "dc/svpg/ILOEMPPIFLRT.519", + "dc/svpg/ILOEMPPIFLRT.520", + "dc/svpg/ILOEMPPIFLRT.521", + "dc/svpg/ILOEMPPIFLRT.522", + "dc/svpg/ILOEMPPIFLRT.523", + "dc/svpg/ILOEMPPIFLRT.524", + "dc/svpg/ILOEMPPIFLRT.525", + "dc/svpg/ILOEMPPIFLRT.526", + "dc/svpg/ILOEMPPIFLRT.527", + "dc/svpg/ILOEMPPIFLRT.528", + "dc/svpg/ILOEMPPIFLRT.530", + "dc/svpg/ILOEMPPIFLRT.531", + "dc/svpg/ILOEMPPIFLRT.532", + "dc/svpg/ILOEMPPIFLRT.533", + "dc/svpg/ILOEMPPIFLRT.534", + "dc/svpg/ILOEMPPIFLRT.535", + "dc/svpg/ILOEMPPIFLRT.536", + "dc/svpg/ILOEMPPIFLRT.537", + "dc/svpg/ILOEMPPIFLRT.539", + "dc/svpg/ILOEMPPIFLRT.540", + "dc/svpg/ILOEMPPIFLRT.541", + "dc/svpg/ILOEMPPIFLRT.542", + "dc/svpg/ILOEMPPIFLRT.543", + "dc/svpg/ILOEMPPIFLRT.544", + "dc/svpg/ILOEMPPIFLRT.545", + "dc/svpg/ILOEMPPIFLRT.546", + "dc/svpg/ILOEMPPIFLRT.547", + "dc/svpg/ILOEMPPIFLRT.548", + "dc/svpg/ILOEMPPIFLRT.550", + "dc/svpg/ILOEMPPIFLRT.551", + "dc/svpg/ILOEMPPIFLRT.552", + "dc/svpg/ILOEMPPIFLRT.553", + "dc/svpg/ILOEMPPIFLRT.555", + "dc/svpg/ILOEMPPIFLRT.556", + "dc/svpg/ILOEMPPIFLRT.558", + "dc/svpg/ILOEMPPIFLRT.559", + "dc/svpg/ILOEMPPIFLRT.560", + "dc/svpg/ILOEMPPIFLRT.561", + "dc/svpg/ILOEMPPIFLRT.562", + "dc/svpg/ILOEMPPIFLRT.563", + "dc/svpg/ILOEMPPIFLRT.564", + "dc/svpg/ILOEMPPIFLRT.565", + "dc/svpg/ILOEMPPIFLRT.566", + "dc/svpg/ILOEMPPIFLRT.567", + "dc/svpg/ILOEMPPIFLRT.568", + "dc/svpg/ILOEMPPIFLRT.569", + "dc/svpg/ILOEMPPIFLRT.571", + "dc/svpg/ILOEMPPIFLRT.572", + "dc/svpg/ILOEMPPIFLRT.574", + "dc/svpg/ILOEMPPIFLRT.575", + "dc/svpg/ILOEMPPIFLRT.577", + "dc/svpg/ILOEMPPIFLRT.578", + "dc/svpg/ILOEMPPIFLRT.580", + "dc/svpg/ILOEMPPIFLRT.581", + "dc/svpg/ILOEMPPIFLRT.583", + "dc/svpg/ILOEMPPIFLRT.584", + "dc/svpg/ILOEMPPIFLRT.585", + "dc/svpg/ILOEMPPIFLRT.586", + "dc/svpg/ILOEMPPIFLRT.587", + "dc/svpg/ILOEMPPIFLRT.588", + "dc/svpg/ILOEMPPIFLRT.607", + "dc/svpg/ILOEMPPIFLRT.608", + "dc/svpg/ILOEMPPIFLRT.609", + "dc/svpg/ILOEMPPIFLRT.610", + "dc/svpg/ILOEMPPIFLRT.611", + "dc/svpg/ILOEMPPIFLRT.612", + "dc/svpg/ILOEMPPIFLRT.613", + "dc/svpg/ILOEMPPIFLRT.614", + "dc/svpg/ILOEMPPIFLRT.615", + "dc/svpg/ILOEMPPIFLRT.616", + "dc/svpg/ILOEMPPIFLRT.617", + "dc/svpg/ILOEMPPIFLRT.618", + "dc/svpg/ILOEMPPIFLRT.619", + "dc/svpg/ILOEMPPIFLRT.620", + "dc/svpg/ILOEMPPIFLRT.621", + "dc/svpg/ILOEMPPIFLRT.622", + "dc/svpg/ILOEMPPIFLRT.623", + "dc/svpg/ILOEMPPIFLRT.624", + "dc/svpg/ILOEMPPIFLRT.625", + "dc/svpg/ILOEMPPIFLRT.626", + "dc/svpg/ILOEMPPIFLRT.627", + "dc/svpg/ILOEMPPIFLRT.628", + "dc/svpg/ILOEMPPIFLRT.629", + "dc/svpg/ILOEMPPIFLRT.630", + "dc/svpg/ILOEMPPIFLRT.631", + "dc/svpg/ILOEMPPIFLRT.632", + "dc/svpg/ILOEMPPIFLRT.633", + "dc/svpg/ILOEMPPIFLRT.634", + "dc/svpg/ILOEMPPIFLRT.635", + "dc/svpg/ILOEMPPIFLRT.636", + "dc/svpg/ILOEMPPIFLRT.637", + "dc/svpg/ILOEMPPIFLRT.638", + "dc/svpg/ILOEMPPIFLRT.639", + "dc/svpg/ILOEMPPIFLRT.640", + "dc/svpg/ILOEMPPIFLRT.641", + "dc/svpg/ILOEMPPIFLRT.642", + "dc/svpg/ILOEMPPIFLRT.643", + "dc/svpg/ILOEMPPIFLRT.644", + "dc/svpg/ILOEMPPIFLRT.645", + "dc/svpg/ILOEMPPIFLRT.646", + "dc/svpg/ILOEMPPIFLRT.647", + "dc/svpg/ILOEMPPIFLRT.648", + "dc/svpg/ILOEMPPIFLRT.649", + "dc/svpg/ILOEMPPIFLRT.650", + "dc/svpg/ILOEMPPIFLRT.651", + "dc/svpg/ILOEMPPIFLRT.652", + "dc/svpg/ILOEMPPIFLRT.653", + "dc/svpg/ILOEMPPIFLRT.654", + "dc/svpg/ILOEMPPIFLRT.655", + "dc/svpg/ILOEMPPIFLRT.656", + "dc/svpg/ILOEMPPIFLRT.657", + "dc/svpg/ILOEMPPIFLRT.658", + "dc/svpg/ILOEMPPIFLRT.659", + "dc/svpg/ILOEMPPIFLRT.662", + "dc/svpg/ILOEMPPIFLRT.663", + "dc/svpg/ILOEMPPIFLRT.664", + "dc/svpg/ILOEMPPIFLRT.665", + "dc/svpg/ILOEMPPIFLRT.666", + "dc/svpg/ILOEMPPIFLRT.667", + "dc/svpg/ILOEMPPIFLRT.668", + "dc/svpg/ILOEMPPIFLRT.669", + "dc/svpg/ILOEMPPIFLRT.670", + "dc/svpg/ILOEMPPIFLRT.671", + "dc/svpg/ILOEMPPIFLRT.673", + "dc/svpg/ILOEMPPIFLRT.674", + "dc/svpg/ILOEMPPIFLRT.675", + "dc/svpg/ILOEMPPIFLRT.676", + "dc/svpg/ILOEMPPIFLRT.677", + "dc/svpg/ILOEMPPIFLRT.678", + "dc/svpg/ILOEMPPIFLRT.679", + "dc/svpg/ILOEMPPIFLRT.680", + "dc/svpg/ILOEMPPIFLRT.687", + "dc/svpg/ILOEMPPIFLRT.688", + "dc/svpg/ILOEMPPIFLRT.689", + "dc/svpg/ILOEMPPIFLRT.690", + "dc/svpg/ILOEMPPIFLRT.693", + "dc/svpg/ILOEMPPIFLRT.694", + "dc/svpg/ILOEMPPIFLRT.696", + "dc/svpg/ILOEMPPIFLRT.698", + "dc/svpg/ILOEMPPIFLRT.699", + "dc/svpg/ILOEMPPIFLRT.700", + "dc/svpg/ILOEMPPIFLRT.701", + "dc/svpg/ILOEMPPIFLRT.703", + "dc/svpg/ILOEMPPIFLRT.705", + "dc/svpg/ILOEMPPIFLRT.706", + "dc/svpg/ILOEMPPIFLRT.707", + "dc/svpg/ILOEMPPIFLRT.711", + "dc/svpg/ILOEMPPIFLRT.712", + "dc/svpg/ILOEMPPIFLRT.715", + "dc/svpg/ILOEMPPIFLRT.716", + "dc/svpg/ILOEMPPIFLRT.717", + "dc/svpg/ILOEMPPIFLRT.718", + "dc/svpg/ILOEMPPIFLRT.721", + "dc/svpg/ILOEMPPIFLRT.722", + "dc/svpg/ILOEMPPIFLRT.724", + "dc/svpg/ILOEMPPIFLRT.725", + "dc/svpg/ILOEMPPIFLRT.726", + "dc/svpg/ILOEMPPIFLRT.731", + "dc/svpg/ILOEMPPIFLRT.732", + "dc/svpg/ILOEMPPIFLRT.733", + "dc/svpg/ILOEMPPIFLRT.734", + "dc/svpg/ILOEMPPIFLRT.735", + "dc/svpg/ILOEMPPIFLRT.736", + "dc/svpg/ILOEMPPIFLRT.737", + "dc/svpg/ILOEMPPIFLRT.739", + "dc/svpg/ILOEMPPIFLRT.740", + "dc/svpg/ILOEMPPIFLRT.743", + "dc/svpg/ILOEMPPIFLRT.744", + "dc/svpg/ILOEMPPIFLRT.745", + "dc/svpg/ILOEMPPIFLRT.750", + "dc/svpg/ILOEMPPIFLRT.751", + "dc/svpg/ILOEMPPIFLRT.752", + "dc/svpg/ILOEMPPIFLRT.753", + "dc/svpg/ILOEMPPIFLRT.754", + "dc/svpg/ILOEMPPIFLRT.755", + "dc/svpg/ILOEMPPIFLRT.756", + "dc/svpg/ILOEMPPIFLRT.757", + "dc/svpg/ILOEMPPIFLRT.758", + "dc/svpg/ILOEMPPIFLRT.759", + "dc/svpg/ILOEMPPIFLRT.760", + "dc/svpg/ILOEMPPIFLRT.761", + "dc/svpg/ILOEMPPIFLRT.762", + "dc/svpg/ILOEMPPIFLRT.763", + "dc/svpg/ILOEMPPIFLRT.764", + "dc/svpg/ILOEMPPIFLRT.765", + "dc/svpg/ILOEMPPIFLRT.766", + "dc/svpg/ILOEMPPIFLRT.767", + "dc/svpg/ILOEMPPIFLRT.768", + "dc/svpg/ILOEMPPIFLRT.769", + "dc/svpg/ILOEMPPIFLRT.770", + "dc/svpg/ILOEMPPIFLRT.771", + "dc/svpg/ILOEMPPIFLRT.775", + "dc/svpg/ILOEMPPIFLRT.776", + "dc/svpg/ILOEMPPIFLRT.777", + "dc/svpg/ILOEMPPIFLRT.778", + "dc/svpg/ILOEMPPIFLRT.779", + "dc/svpg/ILOEMPPIFLRT.780", + "dc/svpg/ILOEMPPIFLRT.781", + "dc/svpg/ILOEMPPIFLRT.782", + "dc/svpg/ILOEMPPIFLRT.783", + "dc/svpg/ILOEMPPIFLRT.784", + "dc/svpg/ILOEMPPIFLRT.785", + "dc/svpg/ILOEMPPIFLRT.786", + "dc/svpg/ILOEMPPIFLRT.787", + "dc/svpg/ILOEMPPIFLRT.788", + "dc/svpg/ILOEMPPIFLRT.789", + "dc/svpg/ILOEMPPIFLRT.790", + "dc/svpg/ILOEMPPIFLRT.791", + "dc/svpg/ILOEMPPIFLRT.792", + "dc/svpg/ILOEMPPIFLRT.793", + "dc/svpg/ILOEMPPIFLRT.794", + "dc/svpg/ILOEMPPIFLRT.795", + "dc/svpg/ILOEMPPIFLRT.801", + "dc/svpg/ILOEMPPIFLRT.802", + "dc/svpg/ILOEMPPIFLRT.803", + "dc/svpg/ILOEMPPIFLRT.804", + "dc/svpg/ILOEMPPIFLRT.805", + "dc/svpg/ILOEMPPIFLRT.806", + "dc/svpg/ILOEMPPIFLRT.807", + "dc/svpg/ILOEMPPIFLRT.817", + "dc/svpg/ILOEMPPIFLRT.818", + "dc/svpg/ILOEMPPIFLRT.819", + "dc/svpg/ILOEMPPIFLRT.820", + "dc/svpg/ILOEMPPIFLRT.821", + "dc/svpg/ILOEMPPIFLRT.822", + "dc/svpg/ILOEMPPIFLRT.823", + "dc/svpg/ILOEMPPIFLRT.824", + "dc/svpg/ILOEMPPIFLRT.825", + "dc/svpg/ILOEMPPIFLRT.826", + "dc/svpg/ILOEMPPIFLRT.827", + "dc/svpg/ILOEMPPIFLRT.828", + "dc/svpg/ILOEMPPIFLRT.829", + "dc/svpg/ILOEMPPIFLRT.830", + "dc/svpg/ILOEMPPIFLRT.831", + "dc/svpg/ILOEMPPIFLRT.832", + "dc/svpg/ILOEMPPIFLRT.833", + "dc/svpg/ILOEMPPIFLRT.834", + "dc/svpg/ILOEMPPIFLRT.835", + "dc/svpg/ILOEMPPIFLRT.836", + "dc/svpg/ILOEMPPIFLRT.837", + "dc/svpg/ILOEMPPIFLRT.838", + "dc/svpg/ILOEMPPIFLRT.839", + "dc/svpg/ILOEMPPIFLRT.840", + "dc/svpg/ILOEMPPIFLRT.842", + "dc/svpg/ILOEMPPIFLRT.843", + "dc/svpg/ILOEMPPIFLRT.844", + "dc/svpg/ILOEMPPIFLRT.845", + "dc/svpg/ILOEMPPIFLRT.846", + "dc/svpg/ILOEMPPIFLRT.847", + "dc/svpg/ILOEMPPIFLRT.848", + "dc/svpg/ILOEMPPIFLRT.849", + "dc/svpg/ILOEMPPIFLRT.850", + "dc/svpg/ILOEMPPIFLRT.851", + "dc/svpg/ILOEMPPIFLRT.854", + "dc/svpg/ILOEMPPIFLRT.855", + "dc/svpg/ILOEMPPIFLRT.856", + "dc/svpg/ILOEMPPIFLRT.857", + "dc/svpg/ILOEMPPIFLRT.858", + "dc/svpg/ILOEMPPIFLRT.859", + "dc/svpg/ILOEMPPIFLRT.860", + "dc/svpg/ILOEMPPIFLRT.861", + "dc/svpg/ILOEMPPIFLRT.862", + "dc/svpg/ILOEMPPIFLRT.863", + "dc/svpg/ILOEMPPIFLRT.866", + "dc/svpg/ILOEMPPIFLRT.867", + "dc/svpg/ILOEMPPIFLRT.868", + "dc/svpg/ILOEMPPIFLRT.869", + "dc/svpg/ILOEMPPIFLRT.870", + "dc/svpg/ILOEMPPIFLRT.871", + "dc/svpg/ILOEMPPIFLRT.872", + "dc/svpg/ILOEMPPIFLRT.873", + "dc/svpg/ILOEMPPIFLRT.878", + "dc/svpg/ILOEMPPIFLRT.879", + "dc/svpg/ILOEMPPIFLRT.880", + "dc/svpg/ILOEMPPIFLRT.881", + "dc/svpg/ILOEMPPIFLRT.884", + "dc/svpg/ILOEMPPIFLRT.885", + "dc/svpg/ILOEMPPIFLRT.888", + "dc/svpg/ILOEMPPIFLRT.889", + "dc/svpg/ILOEMPPIFLRT.890", + "dc/svpg/ILOEMPPIFLRT.891", + "dc/svpg/ILOEMPPIFLRT.892", + "dc/svpg/ILOEMPPIFLRT.893", + "dc/svpg/ILOEMPPIFLRT.894", + "dc/svpg/ILOEMPPIFLRT.895", + "dc/svpg/ILOEMPPIFLRT.898", + "dc/svpg/ILOEMPPIFLRT.899", + "dc/svpg/ILOEMPPIFLRT.902", + "dc/svpg/ILOEMPPIFLRT.903", + "dc/svpg/ILOEMPPIFLRT.904", + "dc/svpg/ILOEMPPIFLRT.905", + "dc/svpg/ILOEMPPIFLRT.906", + "dc/svpg/ILOEMPPIFLRT.907", + "dc/svpg/ILOEMPPIFLRT.914", + "dc/svpg/ILOEMPPIFLRT.915", + "dc/svpg/ILOEMPPIFLRT.916", + "dc/svpg/ILOEMPPIFLRT.917", + "dc/svpg/ILOEMPPIFLRT.922", + "dc/svpg/ILOEMPPIFLRT.923", + "dc/svpg/ILOEMPPIFLRT.925", + "dc/svpg/ILOEMPPIFLRT.926", + "dc/svpg/ILOEMPPIFLRT.927", + "dc/svpg/ILOEMPPIFLRT.928", + "dc/svpg/ILOEMPPIFLRT.929", + "dc/svpg/ILOEMPPIFLRT.930", + "dc/svpg/ILOEMPPIFLRT.935", + "dc/svpg/ILOEMPPIFLRT.936", + "dc/svpg/ILOEMPPIFLRT.937", + "dc/svpg/ILOEMPPIFLRT.938", + "dc/svpg/ILOEMPPIFLRT.941", + "dc/svpg/ILOEMPPIFLRT.942", + "dc/svpg/ILOEMPPIFLRT.943", + "dc/svpg/ILOEMPPIFLRT.944", + "dc/svpg/ILOEMPPIFLRT.945", + "dc/svpg/ILOEMPPIFLRT.946", + "dc/svpg/ILOEMPPIFLRT.955", + "dc/svpg/ILOEMPPIFLRT.956", + "dc/svpg/ILOEMPPIFLRT.957", + "dc/svpg/ILOEMPPIFLRT.958", + "dc/svpg/ILOEMPPIFLRT.959", + "dc/svpg/ILOEMPPIFLRT.960", + "dc/svpg/ILOEMPPIFLRT.962", + "dc/svpg/ILOEMPPIFLRT.963", + "dc/svpg/ILOEMPPIFLRT.964", + "dc/svpg/ILOEMPPIFLRT.965", + "dc/svpg/ILOEMPPIFLRT.966", + "dc/svpg/ILOEMPPIFLRT.967", + "dc/svpg/ILOEMPPIFLRT.968", + "dc/svpg/ILOEMPPIFLRT.969", + "dc/svpg/ILOEMPPIFLRT.972", + "dc/svpg/ILOEMPPIFLRT.973", + "dc/svpg/ILOEMPPIFLRT.974", + "dc/svpg/ILOEMPPIFLRT.975", + "dc/svpg/ILOEMPPIFLRT.980", + "dc/svpg/ILOEMPPIFLRT.981", + "dc/svpg/ILOEMPPIFLRT.982", + "dc/svpg/ILOEMPPIFLRT.983", + "dc/svpg/ILOEMPPIFLRT.984", + "dc/svpg/ILOEMPPIFLRT.985", + "dc/svpg/ILOEMPPIFLRT.995", + "dc/svpg/ILOEMPPIFLRT.996", + "dc/svpg/ILOEMPPIFLRT.997", + "dc/svpg/ILOEMPPIFLRT.998", + "dc/svpg/ILOEMPPIFLRT.999", + "dc/svpg/ILOEMPPIFLRT.1000", + "dc/svpg/ILOEMPPIFLRT.1001", + "dc/svpg/ILOEMPPIFLRT.1003", + "dc/svpg/ILOEMPPIFLRT.1004", + "dc/svpg/ILOEMPPIFLRT.1005", + "dc/svpg/ILOEMPPIFLRT.1006", + "dc/svpg/ILOEMPPIFLRT.1007", + "dc/svpg/ILOEMPPIFLRT.1009", + "dc/svpg/ILOEMPPIFLRT.1010", + "dc/svpg/ILOEMPPIFLRT.1032", + "dc/svpg/ILOEMPPIFLRT.1033", + "dc/svpg/ILOEMPPIFLRT.1034", + "dc/svpg/ILOEMPPIFLRT.1035", + "dc/svpg/ILOEMPPIFLRT.1036", + "dc/svpg/ILOEMPPIFLRT.1037", + "dc/svpg/ILOEMPPIFLRT.1038", + "dc/svpg/ILOEMPPIFLRT.1039", + "dc/svpg/ILOEMPPIFLRT.1040", + "dc/svpg/ILOEMPPIFLRT.1041", + "dc/svpg/ILOEMPPIFLRT.1042", + "dc/svpg/ILOEMPPIFLRT.1043", + "dc/svpg/ILOEMPPIFLRT.1044", + "dc/svpg/ILOEMPPIFLRT.1045", + "dc/svpg/ILOEMPPIFLRT.1046", + "dc/svpg/ILOEMPPIFLRT.1047", + "dc/svpg/ILOEMPPIFLRT.1048", + "dc/svpg/ILOEMPPIFLRT.1049", + "dc/svpg/ILOEMPPIFLRT.1050", + "dc/svpg/ILOEMPPIFLRT.1051", + "dc/svpg/ILOEMPPIFLRT.1052", + "dc/svpg/ILOEMPPIFLRT.1053", + "dc/svpg/ILOEMPPIFLRT.1054", + "dc/svpg/ILOEMPPIFLRT.1055", + "dc/svpg/ILOEMPPIFLRT.1056", + "dc/svpg/ILOEMPPIFLRT.1057", + "dc/svpg/ILOEMPPIFLRT.1058", + "dc/svpg/ILOEMPPIFLRT.1059", + "dc/svpg/ILOEMPPIFLRT.1060", + "dc/svpg/ILOEMPPIFLRT.1061", + "dc/svpg/ILOEMPPIFLRT.1062", + "dc/svpg/ILOEMPPIFLRT.1063", + "dc/svpg/ILOEMPPIFLRT.1064", + "dc/svpg/ILOEMPPIFLRT.1065", + "dc/svpg/ILOEMPPIFLRT.1066", + "dc/svpg/ILOEMPPIFLRT.1067", + "dc/svpg/ILOEMPPIFLRT.1068", + "dc/svpg/ILOEMPPIFLRT.1069", + "dc/svpg/ILOEMPPIFLRT.1070", + "dc/svpg/ILOEMPPIFLRT.1071", + "dc/svpg/ILOEMPPIFLRT.1072", + "dc/svpg/ILOEMPPIFLRT.1073", + "dc/svpg/ILOEMPPIFLRT.1074", + "dc/svpg/ILOEMPPIFLRT.1075", + "dc/svpg/ILOEMPPIFLRT.1076", + "dc/svpg/ILOEMPPIFLRT.1077", + "dc/svpg/ILOEMPPIFLRT.1078", + "dc/svpg/ILOEMPPIFLRT.1079", + "dc/svpg/ILOEMPPIFLRT.1080", + "dc/svpg/ILOEMPPIFLRT.1081", + "dc/svpg/ILOEMPPIFLRT.1086", + "dc/svpg/ILOEMPPIFLRT.1087", + "dc/svpg/ILOEMPPIFLRT.1088", + "dc/svpg/ILOEMPPIFLRT.1089", + "dc/svpg/ILOEMPPIFLRT.1090", + "dc/svpg/ILOEMPPIFLRT.1091", + "dc/svpg/ILOEMPPIFLRT.1092", + "dc/svpg/ILOEMPPIFLRT.1093", + "dc/svpg/ILOEMPPIFLRT.1094", + "dc/svpg/ILOEMPPIFLRT.1095", + "dc/svpg/ILOEMPPIFLRT.1096", + "dc/svpg/ILOEMPPIFLRT.1097", + "dc/svpg/ILOEMPPIFLRT.1098", + "dc/svpg/ILOEMPPIFLRT.1099", + "dc/svpg/ILOEMPPIFLRT.1100", + "dc/svpg/ILOEMPPIFLRT.1101", + "dc/svpg/ILOEMPPIFLRT.1102", + "dc/svpg/ILOEMPPIFLRT.1103", + "dc/svpg/ILOEMPPIFLRT.1104", + "dc/svpg/ILOEMPPIFLRT.1105", + "dc/svpg/ILOEMPPIFLRT.1110", + "dc/svpg/ILOEMPPIFLRT.1111", + "dc/svpg/ILOEMPPIFLRT.1112", + "dc/svpg/ILOEMPPIFLRT.1113", + "dc/svpg/ILOEMPPIFLRT.1114", + "dc/svpg/ILOEMPPIFLRT.1115", + "dc/svpg/ILOEMPPIFLRT.1116", + "dc/svpg/ILOEMPPIFLRT.1117", + "dc/svpg/ILOEMPPIFLRT.1118", + "dc/svpg/ILOEMPPIFLRT.1119", + "dc/svpg/ILOEMPPIFLRT.1121", + "dc/svpg/ILOEMPPIFLRT.1122", + "dc/svpg/ILOEMPPIFLRT.1124", + "dc/svpg/ILOEMPPIFLRT.1125", + "dc/svpg/ILOEMPPIFLRT.1126", + "dc/svpg/ILOEMPPIFLRT.1127", + "dc/svpg/ILOEMPPIFLRT.1128", + "dc/svpg/ILOEMPPIFLRT.1129", + "dc/svpg/ILOEMPPIFLRT.1130", + "dc/svpg/ILOEMPPIFLRT.1131", + "dc/svpg/ILOEMPPIFLRT.1132", + "dc/svpg/ILOEMPPIFLRT.1133", + "dc/svpg/ILOEMPPIFLRT.1134", + "dc/svpg/ILOEMPPIFLRT.1135", + "dc/svpg/ILOEMPPIFLRT.1136", + "dc/svpg/ILOEMPPIFLRT.1137", + "dc/svpg/ILOEMPPIFLRT.1138", + "dc/svpg/ILOEMPPIFLRT.1139", + "dc/svpg/ILOEMPPIFLRT.1140", + "dc/svpg/ILOEMPPIFLRT.1141", + "dc/svpg/ILOEMPPIFLRT.1142", + "dc/svpg/ILOEMPPIFLRT.1143", + "dc/svpg/ILOEMPPIFLRT.1144", + "dc/svpg/ILOEMPPIFLRT.1145", + "dc/svpg/ILOEMPPIFLRT.1146", + "dc/svpg/ILOEMPPIFLRT.1147", + "dc/svpg/ILOEMPPIFLRT.1148", + "dc/svpg/ILOEMPPIFLRT.1149", + "dc/svpg/ILOEMPPIFLRT.1150", + "dc/svpg/ILOEMPPIFLRT.1153", + "dc/svpg/ILOEMPPIFLRT.1154", + "dc/svpg/ILOEMPPIFLRT.1155", + "dc/svpg/ILOEMPPIFLRT.1156", + "dc/svpg/ILOEMPPIFLRT.1157", + "dc/svpg/ILOEMPPIFLRT.1158", + "dc/svpg/ILOEMPPIFLRT.1159", + "dc/svpg/ILOEMPPIFLRT.1160", + "dc/svpg/ILOEMPPIFLRT.1162", + "dc/svpg/ILOEMPPIFLRT.1163", + "dc/svpg/ILOEMPPIFLRT.1164", + "dc/svpg/ILOEMPPIFLRT.1165", + "dc/svpg/ILOEMPPIFLRT.1166", + "dc/svpg/ILOEMPPIFLRT.1167", + "dc/svpg/ILOEMPPIFLRT.1168", + "dc/svpg/ILOEMPPIFLRT.1169", + "dc/svpg/ILOEMPPIFLRT.1170", + "dc/svpg/ILOEMPPIFLRT.1171", + "dc/svpg/ILOEMPPIFLRT.1172", + "dc/svpg/ILOEMPPIFLRT.1173", + "dc/svpg/ILOEMPPIFLRT.1174", + "dc/svpg/ILOEMPPIFLRT.1175", + "dc/svpg/ILOEMPPIFLRT.1176", + "dc/svpg/ILOEMPPIFLRT.1177", + "dc/svpg/ILOEMPPIFLRT.1178", + "dc/svpg/ILOEMPPIFLRT.1179", + "dc/svpg/ILOEMPPIFLRT.1182", + "dc/svpg/ILOEMPPIFLRT.1183", + "dc/svpg/ILOEMPPIFLRT.1184", + "dc/svpg/ILOEMPPIFLRT.1190", + "dc/svpg/ILOEMPPIFLRT.1191", + "dc/svpg/ILOEMPPIFLRT.1192", + "dc/svpg/ILOEMPPIFLRT.1193", + "dc/svpg/ILOEMPPIFLRT.1194", + "dc/svpg/ILOEMPPIFLRT.1195", + "dc/svpg/ILOEMPPIFLRT.1196", + "dc/svpg/ILOEMPPIFLRT.1197", + "dc/svpg/ILOEMPPIFLRT.1198", + "dc/svpg/ILOEMPPIFLRT.1199", + "dc/svpg/ILOEMPPIFLRT.1200", + "dc/svpg/ILOEMPPIFLRT.1201", + "dc/svpg/ILOEMPPIFLRT.1202", + "dc/svpg/ILOEMPPIFLRT.1203", + "dc/svpg/ILOEMPPIFLRT.1204", + "dc/svpg/ILOEMPPIFLRT.1206", + "dc/svpg/ILOEMPPIFLRT.1207", + "dc/svpg/ILOEMPPIFLRT.1208", + "dc/svpg/ILOEMPPIFLRT.1209", + "dc/svpg/ILOEMPPIFLRT.1210", + "dc/svpg/ILOEMPPIFLRT.1211", + "dc/svpg/ILOEMPPIFLRT.1213", + "dc/svpg/ILOEMPPIFLRT.1214", + "dc/svpg/ILOEMPPIFLRT.1215", + "dc/svpg/ILOEMPPIFLRT.1216", + "dc/svpg/ILOEMPPIFLRT.1217", + "dc/svpg/ILOEMPPIFLRT.1218", + "dc/svpg/ILOEMPPIFLRT.1219", + "dc/svpg/ILOEMPPIFLRT.1220", + "dc/svpg/ILOEMPPIFLRT.1221", + "dc/svpg/ILOEMPPIFLRT.1222", + "dc/svpg/ILOEMPPIFLRT.1223", + "dc/svpg/ILOEMPPIFLRT.1224", + "dc/svpg/ILOEMPPIFLRT.1226", + "dc/svpg/ILOEMPPIFLRT.1227" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilooccupation", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 34 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 To 54 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 35 To 44 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 45 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 55 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilooccupation", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 15 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilooccupation", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 25 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age = 65 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Intermediate, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Intermediate, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumISCED972" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X", + "ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status = Persons Without Disability, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Disability Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_disabilityStatus-ILODisabilityStatusEnumPWD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Tanning And Dressing of Leather; Manufacture of Luggage, Handbags, Saddlery, Harness And Footwear (ISIC3_D19), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC3_D20), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC3_D26), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Machinery And Equipment N.e.c. (ISIC3_D29), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Construction (ISIC3_F45), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Hotels And Restaurants (ISIC3_H55), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC3_L75), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC3_M80), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Health And Social Work (ISIC3_N85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Extraterritorial Organizations And Bodies (ISIC3_Q99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4A01_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Crop And Animal Production, Hunting And Related Service Activities (ISIC4_A01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C15_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Leather And Related Products (ISIC4_C15), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C16_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Wood And of Products of Wood And Cork, Except Furniture; Manufacture of Articles of Straw And Plaiting Materials (ISIC4_C16), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C23_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Other Non-metallic Mineral Products (ISIC4_C23), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Furniture (ISIC4_C31)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C31_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Manufacture of Furniture (ISIC4_C31), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Other Manufacturing (ISIC4_C32)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C32_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Other Manufacturing (ISIC4_C32), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Repair And Installation of Machinery And Equipment (ISIC4_C33), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Electricity, Gas, Steam And Air Conditioning Supply (ISIC4_D35), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4G47_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Retail Trade, Except of Motor Vehicles And Motorcycles (ISIC4_G47), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Real Estate Activities (ISIC4_L68)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4L68_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Real Estate Activities (ISIC4_L68), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4O84_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Public Administration And Defence; Compulsory Social Security (ISIC4_O84), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC4_P85)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4P85_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Education (ISIC4_P85), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T97_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Households as Employers of Domestic Personnel (ISIC4_T97), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Undifferentiated Goods- And Services-producing Activities of Private Households for Own Use (ISIC4_T98), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99", + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Activities of Extraterritorial Organizations And Bodies (ISIC4_U99), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity = Not Elsewhere Classified (ISIC4_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4U99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3F45_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3M80_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3Q99_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4T98_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98", + "ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4D35_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3N85_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3H55_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D26_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D20_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4X_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3L75_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC4C33_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity-ILOEconomicActivityEnumISIC3D19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Economic Activity, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O", + "ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Intermediate, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = Lower Secondary or Second Stage of Basic Education (ISCED97_2), Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U", + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level = X. No Schooling, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--U", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R", + "ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumISCED972_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Education Level, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Institutional Sector" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Institutional Sector = Private" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Institutional Sector = Private, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Institutional Sector = Private, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Institutional Sector, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector-ILOInstitutionalSectorEnumINSSECTORPRI_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married / Union / Cohabiting, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Married, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2", + "ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Marital Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X", + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X", + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01", + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status = Unreliable, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO08X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumISCO8801" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Observation Status, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO88X" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO08X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO08_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO08X", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO08X_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO08_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8801" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Armed Forces (ISCO88_01)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8801", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8801_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Armed Forces (ISCO88_01), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8852" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Models, Salespersons And Demonstrators (ISCO88_52)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8852", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8852_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Models, Salespersons And Demonstrators (ISCO88_52), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8861" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO8861", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO8861_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Market-oriented Skilled Agricultural And Fishery Workers (ISCO88_61), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO88X" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO88_X)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilooccupation-ILOOccupationEnumISCO88X", + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation-ILOOccupationEnumISCO88X_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation = Not Elsewhere Classified (ISCO88_X), Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--F", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--F" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--M", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Occupation, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O", + "ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumM", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_age_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_disabilityStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeconomicActivity_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilooccupation_ilosex-ILOSexEnumO", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex = Other, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPPIFLRT_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilourbanisation" + ], + "name": [ + "Share of Employment Outside The Formal Sector by Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOEMPPIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOEMPPIFLRT_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPPIFLRT_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Share of Employment Outside The Formal Sector With Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEMPPIFLRT_iloinstitutionalSector_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOEMPSTATNB" + ], + "name": [ + "Employment, Statistical Approach" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/EMP_STAT_NB", + "dc/svpg/ILOEMPSTATNB.002", + "dc/svpg/ILOEMPSTATNB.003", + "dc/svpg/ILOEMPSTATNB.004", + "dc/svpg/ILOEMPSTATNB.005", + "dc/svpg/ILOEMPSTATNB.006", + "dc/svpg/ILOEMPSTATNB.007", + "dc/svpg/ILOEMPSTATNB.008", + "dc/svpg/ILOEMPSTATNB.009", + "dc/svpg/ILOEMPSTATNB.010", + "dc/svpg/ILOEMPSTATNB.011", + "dc/svpg/ILOEMPSTATNB.012", + "dc/svpg/ILOEMPSTATNB.013", + "dc/svpg/ILOEMPSTATNB.014", + "dc/svpg/ILOEMPSTATNB.015", + "dc/svpg/ILOEMPSTATNB.016", + "dc/svpg/ILOEMPSTATNB.017" + ] + }, + { + "dcid": [ + "dc/topic/ILOGED2LFPNB" + ], + "name": [ + "Prime-age Labour Force of Couple Households With Children Under 6 (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/GED_2LFP_NB", + "dc/svpg/ILOGED2LFPNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOGED2LFPRT" + ], + "name": [ + "Prime-age Labour Force Participation Rate of Couple Households With Children Under Age 6 (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/GED_2LFP_RT", + "dc/svpg/ILOGED2LFPRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOHOW2EMPNB" + ], + "name": [ + "Mean Weekly Hours Actually Worked Per Employed Person(ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/HOW_2EMP_NB", + "dc/svpg/ILOHOW2EMPNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOHOW2TDPRT" + ], + "name": [ + "Ratio of Total Weekly Hours Worked To Population Aged 15-64 (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/HOW_2TDP_RT", + "dc/svpg/ILOHOW2TDPRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOHOW2TOTNB" + ], + "name": [ + "Total Weekly Hours Worked of Employed Persons (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/HOW_2TOT_NB", + "dc/svpg/ILOHOW2TOTNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJDAYSNB" + ], + "name": [ + "Days Lost Due To Cases of Occupational Injury With Temporary Incapacity for Work" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_DAYS_NB", + "dc/topic/ILOINJDAYSNB_iloeconomicActivity", + "dc/svpg/ILOINJDAYSNB.002", + "dc/svpg/ILOINJDAYSNB.003", + "dc/svpg/ILOINJDAYSNB.004", + "dc/svpg/ILOINJDAYSNB.005", + "dc/svpg/ILOINJDAYSNB.007", + "dc/svpg/ILOINJDAYSNB.008", + "dc/svpg/ILOINJDAYSNB.009", + "dc/svpg/ILOINJDAYSNB.010", + "dc/svpg/ILOINJDAYSNB.011" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJDAYSNB_iloeconomicActivity" + ], + "name": [ + "Days Lost Due To Cases of Occupational Injury With Temporary Incapacity for Work by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJFATLNB" + ], + "name": [ + "Cases of Fatal Occupational Injury" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_FATL_NB", + "dc/topic/ILOINJFATLNB_iloeconomicActivity", + "dc/svpg/ILOINJFATLNB.002", + "dc/svpg/ILOINJFATLNB.003", + "dc/svpg/ILOINJFATLNB.004", + "dc/svpg/ILOINJFATLNB.005", + "dc/svpg/ILOINJFATLNB.007", + "dc/svpg/ILOINJFATLNB.008", + "dc/svpg/ILOINJFATLNB.009", + "dc/svpg/ILOINJFATLNB.010", + "dc/svpg/ILOINJFATLNB.011" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJFATLNB_iloeconomicActivity" + ], + "name": [ + "Cases of Fatal Occupational Injury by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJFATLRT" + ], + "name": [ + "Fatal Occupational Injuries Per 100'000 Workers" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_FATL_RT", + "dc/topic/ILOINJFATLRT_iloeconomicActivity", + "dc/svpg/ILOINJFATLRT.002", + "dc/svpg/ILOINJFATLRT.003", + "dc/svpg/ILOINJFATLRT.004", + "dc/svpg/ILOINJFATLRT.005", + "dc/svpg/ILOINJFATLRT.007", + "dc/svpg/ILOINJFATLRT.008", + "dc/svpg/ILOINJFATLRT.009", + "dc/svpg/ILOINJFATLRT.010", + "dc/svpg/ILOINJFATLRT.011" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJFATLRT_iloeconomicActivity" + ], + "name": [ + "Fatal Occupational Injuries Per 100'000 Workers by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB" + ], + "name": [ + "Cases of Non-fatal Occupational Injury" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_NB", + "dc/topic/ILOINJNFTLNB_iloeconomicActivity", + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries", + "dc/svpg/ILOINJNFTLNB.002", + "dc/svpg/ILOINJNFTLNB.003", + "dc/svpg/ILOINJNFTLNB.004", + "dc/svpg/ILOINJNFTLNB.005", + "dc/svpg/ILOINJNFTLNB.007", + "dc/svpg/ILOINJNFTLNB.008", + "dc/svpg/ILOINJNFTLNB.009", + "dc/svpg/ILOINJNFTLNB.010", + "dc/svpg/ILOINJNFTLNB.011", + "dc/svpg/ILOINJNFTLNB.012", + "dc/svpg/ILOINJNFTLNB.013", + "dc/svpg/ILOINJNFTLNB.014", + "dc/svpg/ILOINJNFTLNB.015", + "dc/svpg/ILOINJNFTLNB.016", + "dc/svpg/ILOINJNFTLNB.017", + "dc/svpg/ILOINJNFTLNB.018", + "dc/svpg/ILOINJNFTLNB.019", + "dc/svpg/ILOINJNFTLNB.020", + "dc/svpg/ILOINJNFTLNB.021", + "dc/svpg/ILOINJNFTLNB.022", + "dc/svpg/ILOINJNFTLNB.023", + "dc/svpg/ILOINJNFTLNB.024", + "dc/svpg/ILOINJNFTLNB.025", + "dc/svpg/ILOINJNFTLNB.026", + "dc/svpg/ILOINJNFTLNB.027", + "dc/svpg/ILOINJNFTLNB.028", + "dc/svpg/ILOINJNFTLNB.031", + "dc/svpg/ILOINJNFTLNB.032", + "dc/svpg/ILOINJNFTLNB.033" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity" + ], + "name": [ + "Cases of Non-fatal Occupational Injury by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOINJNFTLNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilooccupationalInjuries" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilooccupationalInjuries" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Economic Activity = Not Elsewhere Classified, Occupational Injuries" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM", + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYPRM" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Economic Activity, Occupational Injuries = Permanent Incapacity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYTMP" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Economic Activity, Occupational Injuries = Temporary Incapacity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries" + ], + "name": [ + "Cases of Non-fatal Occupational Injury by Occupational Injuries" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYPRM", + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYTMP" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYPRM" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Occupational Injuries = Permanent Incapacity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYPRM" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLNB_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYTMP" + ], + "name": [ + "Cases of Non-fatal Occupational Injury With Occupational Injuries = Temporary Incapacity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOINJNFTLNB_iloeconomicActivity_ilooccupationalInjuries-ILOOccupationalInjuriesEnumINJINCAPACITYTMP" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLRT" + ], + "name": [ + "Non-fatal Occupational Injuries Per 100'000 Workers" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_RT", + "dc/topic/ILOINJNFTLRT_iloeconomicActivity", + "dc/svpg/ILOINJNFTLRT.002", + "dc/svpg/ILOINJNFTLRT.003", + "dc/svpg/ILOINJNFTLRT.004", + "dc/svpg/ILOINJNFTLRT.005", + "dc/svpg/ILOINJNFTLRT.007", + "dc/svpg/ILOINJNFTLRT.008", + "dc/svpg/ILOINJNFTLRT.009", + "dc/svpg/ILOINJNFTLRT.010", + "dc/svpg/ILOINJNFTLRT.011" + ] + }, + { + "dcid": [ + "dc/topic/ILOINJNFTLRT_iloeconomicActivity" + ], + "name": [ + "Non-fatal Occupational Injuries Per 100'000 Workers by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLAC4HRLNB" + ], + "name": [ + "Mean Nominal Hourly Labour Cost Per Employee" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLAC4HRLNB.001", + "dc/svpg/ILOLAC4HRLNB.002", + "dc/svpg/ILOLAC4HRLNB.004", + "dc/svpg/ILOLAC4HRLNB.005", + "dc/svpg/ILOLAC4HRLNB.007", + "dc/svpg/ILOLAC4HRLNB.008", + "dc/svpg/ILOLAC4HRLNB.010" + ] + }, + { + "dcid": [ + "dc/topic/ILOLAIINSPNB" + ], + "name": [ + "Number of Labour Inspectors" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LAI_INSP_NB", + "dc/svpg/ILOLAIINSPNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOLAP2LIDRT" + ], + "name": [ + "Labour Income Distribution (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLAP2LIDRT.001" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU2LU4NB" + ], + "name": [ + "Composite Measure of Labour Underutilization (LU4) (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLUU2LU4NB.001", + "dc/svpg/ILOLUU2LU4NB.002", + "dc/svpg/ILOLUU2LU4NB.003", + "dc/svpg/ILOLUU2LU4NB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU2LUXNB" + ], + "name": [ + "Jobs Gap(ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_2LUX_NB", + "dc/svpg/ILOLUU2LUXNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU2LUXRT" + ], + "name": [ + "Jobs Gap Rate(ILO Modelled Estimates, as Of Nov. 2023)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_2LUX_RT", + "dc/svpg/ILOLUU2LUXRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU5LU2RT" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2), According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLUU5LU2RT.001", + "dc/svpg/ILOLUU5LU2RT.002", + "dc/svpg/ILOLUU5LU2RT.003", + "dc/svpg/ILOLUU5LU2RT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU5LU3RT" + ], + "name": [ + "Combined Rate of Unemployment And Potential Labour Force (LU3), According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLUU5LU3RT.001", + "dc/svpg/ILOLUU5LU3RT.002", + "dc/svpg/ILOLUU5LU3RT.003", + "dc/svpg/ILOLUU5LU3RT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUU5LU4RT" + ], + "name": [ + "Composite Rate of Labour Underutilization (LU4), According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOLUU5LU4RT.001", + "dc/svpg/ILOLUU5LU4RT.002", + "dc/svpg/ILOLUU5LU4RT.003", + "dc/svpg/ILOLUU5LU4RT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus", + "dc/topic/ILOLUUXLU2RT_ilosex", + "dc/svpg/ILOLUUXLU2RT.002", + "dc/svpg/ILOLUUXLU2RT.003", + "dc/svpg/ILOLUUXLU2RT.004", + "dc/svpg/ILOLUUXLU2RT.005", + "dc/svpg/ILOLUUXLU2RT.006", + "dc/svpg/ILOLUUXLU2RT.007", + "dc/svpg/ILOLUUXLU2RT.008", + "dc/svpg/ILOLUUXLU2RT.009", + "dc/svpg/ILOLUUXLU2RT.010", + "dc/svpg/ILOLUUXLU2RT.011", + "dc/svpg/ILOLUUXLU2RT.012", + "dc/svpg/ILOLUUXLU2RT.013", + "dc/svpg/ILOLUUXLU2RT.014", + "dc/svpg/ILOLUUXLU2RT.015", + "dc/svpg/ILOLUUXLU2RT.016", + "dc/svpg/ILOLUUXLU2RT.024", + "dc/svpg/ILOLUUXLU2RT.025", + "dc/svpg/ILOLUUXLU2RT.026", + "dc/svpg/ILOLUUXLU2RT.027", + "dc/svpg/ILOLUUXLU2RT.028", + "dc/svpg/ILOLUUXLU2RT.029", + "dc/svpg/ILOLUUXLU2RT.030", + "dc/svpg/ILOLUUXLU2RT.031", + "dc/svpg/ILOLUUXLU2RT.032", + "dc/svpg/ILOLUUXLU2RT.033", + "dc/svpg/ILOLUUXLU2RT.034", + "dc/svpg/ILOLUUXLU2RT.035", + "dc/svpg/ILOLUUXLU2RT.036", + "dc/svpg/ILOLUUXLU2RT.037", + "dc/svpg/ILOLUUXLU2RT.038", + "dc/svpg/ILOLUUXLU2RT.039", + "dc/svpg/ILOLUUXLU2RT.040", + "dc/svpg/ILOLUUXLU2RT.041", + "dc/svpg/ILOLUUXLU2RT.042", + "dc/svpg/ILOLUUXLU2RT.043", + "dc/svpg/ILOLUUXLU2RT.044", + "dc/svpg/ILOLUUXLU2RT.045", + "dc/svpg/ILOLUUXLU2RT.046", + "dc/svpg/ILOLUUXLU2RT.047", + "dc/svpg/ILOLUUXLU2RT.048", + "dc/svpg/ILOLUUXLU2RT.049", + "dc/svpg/ILOLUUXLU2RT.050", + "dc/svpg/ILOLUUXLU2RT.051", + "dc/svpg/ILOLUUXLU2RT.052", + "dc/svpg/ILOLUUXLU2RT.053", + "dc/svpg/ILOLUUXLU2RT.054", + "dc/svpg/ILOLUUXLU2RT.055", + "dc/svpg/ILOLUUXLU2RT.056", + "dc/svpg/ILOLUUXLU2RT.057", + "dc/svpg/ILOLUUXLU2RT.058", + "dc/svpg/ILOLUUXLU2RT.059", + "dc/svpg/ILOLUUXLU2RT.060", + "dc/svpg/ILOLUUXLU2RT.061", + "dc/svpg/ILOLUUXLU2RT.076", + "dc/svpg/ILOLUUXLU2RT.077", + "dc/svpg/ILOLUUXLU2RT.078", + "dc/svpg/ILOLUUXLU2RT.079", + "dc/svpg/ILOLUUXLU2RT.080", + "dc/svpg/ILOLUUXLU2RT.081", + "dc/svpg/ILOLUUXLU2RT.082", + "dc/svpg/ILOLUUXLU2RT.083", + "dc/svpg/ILOLUUXLU2RT.084", + "dc/svpg/ILOLUUXLU2RT.085", + "dc/svpg/ILOLUUXLU2RT.086", + "dc/svpg/ILOLUUXLU2RT.087", + "dc/svpg/ILOLUUXLU2RT.088", + "dc/svpg/ILOLUUXLU2RT.089", + "dc/svpg/ILOLUUXLU2RT.090", + "dc/svpg/ILOLUUXLU2RT.091", + "dc/svpg/ILOLUUXLU2RT.092", + "dc/svpg/ILOLUUXLU2RT.093", + "dc/svpg/ILOLUUXLU2RT.094", + "dc/svpg/ILOLUUXLU2RT.095", + "dc/svpg/ILOLUUXLU2RT.096", + "dc/svpg/ILOLUUXLU2RT.097", + "dc/svpg/ILOLUUXLU2RT.098", + "dc/svpg/ILOLUUXLU2RT.099", + "dc/svpg/ILOLUUXLU2RT.100", + "dc/svpg/ILOLUUXLU2RT.101", + "dc/svpg/ILOLUUXLU2RT.102", + "dc/svpg/ILOLUUXLU2RT.103", + "dc/svpg/ILOLUUXLU2RT.104", + "dc/svpg/ILOLUUXLU2RT.105", + "dc/svpg/ILOLUUXLU2RT.106", + "dc/svpg/ILOLUUXLU2RT.108", + "dc/svpg/ILOLUUXLU2RT.109", + "dc/svpg/ILOLUUXLU2RT.110", + "dc/svpg/ILOLUUXLU2RT.111", + "dc/svpg/ILOLUUXLU2RT.112", + "dc/svpg/ILOLUUXLU2RT.113", + "dc/svpg/ILOLUUXLU2RT.116", + "dc/svpg/ILOLUUXLU2RT.117", + "dc/svpg/ILOLUUXLU2RT.118", + "dc/svpg/ILOLUUXLU2RT.121", + "dc/svpg/ILOLUUXLU2RT.122", + "dc/svpg/ILOLUUXLU2RT.123", + "dc/svpg/ILOLUUXLU2RT.124", + "dc/svpg/ILOLUUXLU2RT.125", + "dc/svpg/ILOLUUXLU2RT.126", + "dc/svpg/ILOLUUXLU2RT.127", + "dc/svpg/ILOLUUXLU2RT.128", + "dc/svpg/ILOLUUXLU2RT.129", + "dc/svpg/ILOLUUXLU2RT.130", + "dc/svpg/ILOLUUXLU2RT.131", + "dc/svpg/ILOLUUXLU2RT.132", + "dc/svpg/ILOLUUXLU2RT.136", + "dc/svpg/ILOLUUXLU2RT.137", + "dc/svpg/ILOLUUXLU2RT.139", + "dc/svpg/ILOLUUXLU2RT.140", + "dc/svpg/ILOLUUXLU2RT.141", + "dc/svpg/ILOLUUXLU2RT.142", + "dc/svpg/ILOLUUXLU2RT.143", + "dc/svpg/ILOLUUXLU2RT.144", + "dc/svpg/ILOLUUXLU2RT.145", + "dc/svpg/ILOLUUXLU2RT.146", + "dc/svpg/ILOLUUXLU2RT.147", + "dc/svpg/ILOLUUXLU2RT.151", + "dc/svpg/ILOLUUXLU2RT.152", + "dc/svpg/ILOLUUXLU2RT.153", + "dc/svpg/ILOLUUXLU2RT.154", + "dc/svpg/ILOLUUXLU2RT.155", + "dc/svpg/ILOLUUXLU2RT.156", + "dc/svpg/ILOLUUXLU2RT.157", + "dc/svpg/ILOLUUXLU2RT.158", + "dc/svpg/ILOLUUXLU2RT.159", + "dc/svpg/ILOLUUXLU2RT.160", + "dc/svpg/ILOLUUXLU2RT.161", + "dc/svpg/ILOLUUXLU2RT.162", + "dc/svpg/ILOLUUXLU2RT.163", + "dc/svpg/ILOLUUXLU2RT.164", + "dc/svpg/ILOLUUXLU2RT.165" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_X", + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_X", + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLU2_RT" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_ilosex" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_ilosex-ILOSexEnumF", + "dc/topic/ILOLUUXLU2RT_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_ilosex-ILOSexEnumF" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLU2RT_ilosex-ILOSexEnumM" + ], + "name": [ + "Combined Rate of Time-related Underemployment And Unemployment (LU2) With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOLUUXLU2RT_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOLUUXLU2RT_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLUXNB" + ], + "name": [ + "Jobs Gap" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLUX_NB", + "dc/svpg/ILOLUUXLUXNB.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOLUUXLUXRT" + ], + "name": [ + "Jobs Gap Rate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LUU_XLUX_RT", + "dc/svpg/ILOLUUXLUXRT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3FORNB" + ], + "name": [ + "Youth Working-age Population (thousands)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3FORNB_iloobservationStatus", + "dc/svpg/ILOPOP3FORNB.002", + "dc/svpg/ILOPOP3FORNB.003", + "dc/svpg/ILOPOP3FORNB.004", + "dc/svpg/ILOPOP3FORNB.005", + "dc/svpg/ILOPOP3FORNB.006", + "dc/svpg/ILOPOP3FORNB.007", + "dc/svpg/ILOPOP3FORNB.008", + "dc/svpg/ILOPOP3FORNB.009", + "dc/svpg/ILOPOP3FORNB.010", + "dc/svpg/ILOPOP3FORNB.011", + "dc/svpg/ILOPOP3FORNB.012", + "dc/svpg/ILOPOP3FORNB.013", + "dc/svpg/ILOPOP3FORNB.014", + "dc/svpg/ILOPOP3FORNB.015", + "dc/svpg/ILOPOP3FORNB.016", + "dc/svpg/ILOPOP3FORNB.017", + "dc/svpg/ILOPOP3FORNB.018", + "dc/svpg/ILOPOP3FORNB.019", + "dc/svpg/ILOPOP3FORNB.020", + "dc/svpg/ILOPOP3FORNB.021", + "dc/svpg/ILOPOP3FORNB.022", + "dc/svpg/ILOPOP3FORNB.023", + "dc/svpg/ILOPOP3FORNB.024", + "dc/svpg/ILOPOP3FORNB.025", + "dc/svpg/ILOPOP3FORNB.026", + "dc/svpg/ILOPOP3FORNB.027", + "dc/svpg/ILOPOP3FORNB.028", + "dc/svpg/ILOPOP3FORNB.029", + "dc/svpg/ILOPOP3FORNB.030", + "dc/svpg/ILOPOP3FORNB.031", + "dc/svpg/ILOPOP3FORNB.032", + "dc/svpg/ILOPOP3FORNB.033", + "dc/svpg/ILOPOP3FORNB.034", + "dc/svpg/ILOPOP3FORNB.035", + "dc/svpg/ILOPOP3FORNB.036", + "dc/svpg/ILOPOP3FORNB.037", + "dc/svpg/ILOPOP3FORNB.038", + "dc/svpg/ILOPOP3FORNB.039", + "dc/svpg/ILOPOP3FORNB.040", + "dc/svpg/ILOPOP3FORNB.041", + "dc/svpg/ILOPOP3FORNB.042", + "dc/svpg/ILOPOP3FORNB.043", + "dc/svpg/ILOPOP3FORNB.044", + "dc/svpg/ILOPOP3FORNB.045", + "dc/svpg/ILOPOP3FORNB.046", + "dc/svpg/ILOPOP3FORNB.047", + "dc/svpg/ILOPOP3FORNB.048", + "dc/svpg/ILOPOP3FORNB.049", + "dc/svpg/ILOPOP3FORNB.050", + "dc/svpg/ILOPOP3FORNB.051", + "dc/svpg/ILOPOP3FORNB.052", + "dc/svpg/ILOPOP3FORNB.053", + "dc/svpg/ILOPOP3FORNB.054", + "dc/svpg/ILOPOP3FORNB.055", + "dc/svpg/ILOPOP3FORNB.056", + "dc/svpg/ILOPOP3FORNB.057", + "dc/svpg/ILOPOP3FORNB.058", + "dc/svpg/ILOPOP3FORNB.059", + "dc/svpg/ILOPOP3FORNB.060", + "dc/svpg/ILOPOP3FORNB.061", + "dc/svpg/ILOPOP3FORNB.062", + "dc/svpg/ILOPOP3FORNB.063", + "dc/svpg/ILOPOP3FORNB.064", + "dc/svpg/ILOPOP3FORNB.065", + "dc/svpg/ILOPOP3FORNB.066", + "dc/svpg/ILOPOP3FORNB.067", + "dc/svpg/ILOPOP3FORNB.068", + "dc/svpg/ILOPOP3FORNB.069", + "dc/svpg/ILOPOP3FORNB.070", + "dc/svpg/ILOPOP3FORNB.071", + "dc/svpg/ILOPOP3FORNB.072", + "dc/svpg/ILOPOP3FORNB.073", + "dc/svpg/ILOPOP3FORNB.074", + "dc/svpg/ILOPOP3FORNB.075", + "dc/svpg/ILOPOP3FORNB.076", + "dc/svpg/ILOPOP3FORNB.077", + "dc/svpg/ILOPOP3FORNB.078", + "dc/svpg/ILOPOP3FORNB.079", + "dc/svpg/ILOPOP3FORNB.080", + "dc/svpg/ILOPOP3FORNB.081", + "dc/svpg/ILOPOP3FORNB.082", + "dc/svpg/ILOPOP3FORNB.083", + "dc/svpg/ILOPOP3FORNB.084", + "dc/svpg/ILOPOP3FORNB.085", + "dc/svpg/ILOPOP3FORNB.086", + "dc/svpg/ILOPOP3FORNB.087", + "dc/svpg/ILOPOP3FORNB.088", + "dc/svpg/ILOPOP3FORNB.089", + "dc/svpg/ILOPOP3FORNB.090", + "dc/svpg/ILOPOP3FORNB.091", + "dc/svpg/ILOPOP3FORNB.092", + "dc/svpg/ILOPOP3FORNB.093", + "dc/svpg/ILOPOP3FORNB.094", + "dc/svpg/ILOPOP3FORNB.095", + "dc/svpg/ILOPOP3FORNB.096", + "dc/svpg/ILOPOP3FORNB.097", + "dc/svpg/ILOPOP3FORNB.098", + "dc/svpg/ILOPOP3FORNB.099", + "dc/svpg/ILOPOP3FORNB.100", + "dc/svpg/ILOPOP3FORNB.101", + "dc/svpg/ILOPOP3FORNB.102", + "dc/svpg/ILOPOP3FORNB.103", + "dc/svpg/ILOPOP3FORNB.104", + "dc/svpg/ILOPOP3FORNB.105", + "dc/svpg/ILOPOP3FORNB.106", + "dc/svpg/ILOPOP3FORNB.107", + "dc/svpg/ILOPOP3FORNB.108", + "dc/svpg/ILOPOP3FORNB.109", + "dc/svpg/ILOPOP3FORNB.110", + "dc/svpg/ILOPOP3FORNB.111", + "dc/svpg/ILOPOP3FORNB.112", + "dc/svpg/ILOPOP3FORNB.113", + "dc/svpg/ILOPOP3FORNB.114", + "dc/svpg/ILOPOP3FORNB.115", + "dc/svpg/ILOPOP3FORNB.116", + "dc/svpg/ILOPOP3FORNB.117", + "dc/svpg/ILOPOP3FORNB.118", + "dc/svpg/ILOPOP3FORNB.119", + "dc/svpg/ILOPOP3FORNB.120" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3FORNB_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population (thousands) by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3FORNB_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3FORNB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Youth Working-age Population (thousands) With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3FOR_NB" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3STGNB" + ], + "name": [ + "Youth Working-age Population (thousands)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3STGNB_iloobservationStatus", + "dc/svpg/ILOPOP3STGNB.002", + "dc/svpg/ILOPOP3STGNB.003", + "dc/svpg/ILOPOP3STGNB.004", + "dc/svpg/ILOPOP3STGNB.005", + "dc/svpg/ILOPOP3STGNB.006", + "dc/svpg/ILOPOP3STGNB.007", + "dc/svpg/ILOPOP3STGNB.008", + "dc/svpg/ILOPOP3STGNB.009", + "dc/svpg/ILOPOP3STGNB.010", + "dc/svpg/ILOPOP3STGNB.011", + "dc/svpg/ILOPOP3STGNB.012", + "dc/svpg/ILOPOP3STGNB.013", + "dc/svpg/ILOPOP3STGNB.014", + "dc/svpg/ILOPOP3STGNB.015", + "dc/svpg/ILOPOP3STGNB.016", + "dc/svpg/ILOPOP3STGNB.017", + "dc/svpg/ILOPOP3STGNB.018", + "dc/svpg/ILOPOP3STGNB.019", + "dc/svpg/ILOPOP3STGNB.020", + "dc/svpg/ILOPOP3STGNB.021", + "dc/svpg/ILOPOP3STGNB.022", + "dc/svpg/ILOPOP3STGNB.023", + "dc/svpg/ILOPOP3STGNB.024", + "dc/svpg/ILOPOP3STGNB.025", + "dc/svpg/ILOPOP3STGNB.026", + "dc/svpg/ILOPOP3STGNB.027", + "dc/svpg/ILOPOP3STGNB.028", + "dc/svpg/ILOPOP3STGNB.029", + "dc/svpg/ILOPOP3STGNB.030", + "dc/svpg/ILOPOP3STGNB.031", + "dc/svpg/ILOPOP3STGNB.032", + "dc/svpg/ILOPOP3STGNB.033", + "dc/svpg/ILOPOP3STGNB.034", + "dc/svpg/ILOPOP3STGNB.035", + "dc/svpg/ILOPOP3STGNB.036", + "dc/svpg/ILOPOP3STGNB.037", + "dc/svpg/ILOPOP3STGNB.038", + "dc/svpg/ILOPOP3STGNB.039", + "dc/svpg/ILOPOP3STGNB.040", + "dc/svpg/ILOPOP3STGNB.041", + "dc/svpg/ILOPOP3STGNB.042", + "dc/svpg/ILOPOP3STGNB.043", + "dc/svpg/ILOPOP3STGNB.044", + "dc/svpg/ILOPOP3STGNB.045", + "dc/svpg/ILOPOP3STGNB.046", + "dc/svpg/ILOPOP3STGNB.047", + "dc/svpg/ILOPOP3STGNB.048", + "dc/svpg/ILOPOP3STGNB.049", + "dc/svpg/ILOPOP3STGNB.050", + "dc/svpg/ILOPOP3STGNB.051", + "dc/svpg/ILOPOP3STGNB.052", + "dc/svpg/ILOPOP3STGNB.053", + "dc/svpg/ILOPOP3STGNB.054", + "dc/svpg/ILOPOP3STGNB.055", + "dc/svpg/ILOPOP3STGNB.056", + "dc/svpg/ILOPOP3STGNB.057", + "dc/svpg/ILOPOP3STGNB.058", + "dc/svpg/ILOPOP3STGNB.059", + "dc/svpg/ILOPOP3STGNB.060", + "dc/svpg/ILOPOP3STGNB.061", + "dc/svpg/ILOPOP3STGNB.062", + "dc/svpg/ILOPOP3STGNB.063", + "dc/svpg/ILOPOP3STGNB.064", + "dc/svpg/ILOPOP3STGNB.065" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3STGNB_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population (thousands) by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3STGNB_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3STGNB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Youth Working-age Population (thousands) With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3STG_NB" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus", + "dc/topic/ILOPOP3TEDNB_ilooccupation", + "dc/topic/ILOPOP3TEDNB_ilosex", + "dc/svpg/ILOPOP3TEDNB.002", + "dc/svpg/ILOPOP3TEDNB.003", + "dc/svpg/ILOPOP3TEDNB.006", + "dc/svpg/ILOPOP3TEDNB.007", + "dc/svpg/ILOPOP3TEDNB.008", + "dc/svpg/ILOPOP3TEDNB.009", + "dc/svpg/ILOPOP3TEDNB.010", + "dc/svpg/ILOPOP3TEDNB.011", + "dc/svpg/ILOPOP3TEDNB.012", + "dc/svpg/ILOPOP3TEDNB.013", + "dc/svpg/ILOPOP3TEDNB.018", + "dc/svpg/ILOPOP3TEDNB.019", + "dc/svpg/ILOPOP3TEDNB.020", + "dc/svpg/ILOPOP3TEDNB.021", + "dc/svpg/ILOPOP3TEDNB.022", + "dc/svpg/ILOPOP3TEDNB.023", + "dc/svpg/ILOPOP3TEDNB.024", + "dc/svpg/ILOPOP3TEDNB.025", + "dc/svpg/ILOPOP3TEDNB.026", + "dc/svpg/ILOPOP3TEDNB.027", + "dc/svpg/ILOPOP3TEDNB.028", + "dc/svpg/ILOPOP3TEDNB.029", + "dc/svpg/ILOPOP3TEDNB.030", + "dc/svpg/ILOPOP3TEDNB.031", + "dc/svpg/ILOPOP3TEDNB.032", + "dc/svpg/ILOPOP3TEDNB.033", + "dc/svpg/ILOPOP3TEDNB.034" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus", + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--_X", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--_X", + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.OCCUPATION--_X", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--_X", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOPOP3TEDNB_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--_X", + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--F__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3TED_NB.SEX--M__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilosex" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilosex-ILOSexEnumF" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOPOP3TEDNB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3TEDNB_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3TEDNB_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3TEDNB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3TEDNB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB" + ], + "name": [ + "Youth Working-age Population" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age", + "dc/topic/ILOPOP3WAPNB_disabilityStatus", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel", + "dc/topic/ILOPOP3WAPNB_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_ilosex", + "dc/svpg/ILOPOP3WAPNB.001", + "dc/svpg/ILOPOP3WAPNB.002", + "dc/svpg/ILOPOP3WAPNB.003", + "dc/svpg/ILOPOP3WAPNB.004", + "dc/svpg/ILOPOP3WAPNB.005", + "dc/svpg/ILOPOP3WAPNB.006", + "dc/svpg/ILOPOP3WAPNB.007", + "dc/svpg/ILOPOP3WAPNB.009", + "dc/svpg/ILOPOP3WAPNB.010", + "dc/svpg/ILOPOP3WAPNB.011", + "dc/svpg/ILOPOP3WAPNB.012", + "dc/svpg/ILOPOP3WAPNB.013", + "dc/svpg/ILOPOP3WAPNB.014", + "dc/svpg/ILOPOP3WAPNB.015", + "dc/svpg/ILOPOP3WAPNB.016", + "dc/svpg/ILOPOP3WAPNB.017", + "dc/svpg/ILOPOP3WAPNB.018", + "dc/svpg/ILOPOP3WAPNB.019", + "dc/svpg/ILOPOP3WAPNB.020", + "dc/svpg/ILOPOP3WAPNB.021", + "dc/svpg/ILOPOP3WAPNB.022", + "dc/svpg/ILOPOP3WAPNB.023", + "dc/svpg/ILOPOP3WAPNB.024", + "dc/svpg/ILOPOP3WAPNB.025", + "dc/svpg/ILOPOP3WAPNB.026", + "dc/svpg/ILOPOP3WAPNB.027", + "dc/svpg/ILOPOP3WAPNB.028", + "dc/svpg/ILOPOP3WAPNB.029", + "dc/svpg/ILOPOP3WAPNB.030", + "dc/svpg/ILOPOP3WAPNB.031", + "dc/svpg/ILOPOP3WAPNB.032", + "dc/svpg/ILOPOP3WAPNB.033", + "dc/svpg/ILOPOP3WAPNB.034", + "dc/svpg/ILOPOP3WAPNB.035", + "dc/svpg/ILOPOP3WAPNB.036", + "dc/svpg/ILOPOP3WAPNB.037", + "dc/svpg/ILOPOP3WAPNB.038", + "dc/svpg/ILOPOP3WAPNB.039", + "dc/svpg/ILOPOP3WAPNB.040", + "dc/svpg/ILOPOP3WAPNB.041", + "dc/svpg/ILOPOP3WAPNB.042", + "dc/svpg/ILOPOP3WAPNB.043", + "dc/svpg/ILOPOP3WAPNB.044", + "dc/svpg/ILOPOP3WAPNB.045", + "dc/svpg/ILOPOP3WAPNB.046", + "dc/svpg/ILOPOP3WAPNB.047", + "dc/svpg/ILOPOP3WAPNB.048", + "dc/svpg/ILOPOP3WAPNB.049", + "dc/svpg/ILOPOP3WAPNB.050", + "dc/svpg/ILOPOP3WAPNB.051", + "dc/svpg/ILOPOP3WAPNB.052", + "dc/svpg/ILOPOP3WAPNB.053", + "dc/svpg/ILOPOP3WAPNB.054", + "dc/svpg/ILOPOP3WAPNB.055", + "dc/svpg/ILOPOP3WAPNB.056", + "dc/svpg/ILOPOP3WAPNB.058", + "dc/svpg/ILOPOP3WAPNB.059", + "dc/svpg/ILOPOP3WAPNB.060", + "dc/svpg/ILOPOP3WAPNB.061", + "dc/svpg/ILOPOP3WAPNB.062", + "dc/svpg/ILOPOP3WAPNB.064", + "dc/svpg/ILOPOP3WAPNB.065", + "dc/svpg/ILOPOP3WAPNB.067", + "dc/svpg/ILOPOP3WAPNB.068", + "dc/svpg/ILOPOP3WAPNB.069", + "dc/svpg/ILOPOP3WAPNB.070", + "dc/svpg/ILOPOP3WAPNB.071", + "dc/svpg/ILOPOP3WAPNB.072", + "dc/svpg/ILOPOP3WAPNB.073", + "dc/svpg/ILOPOP3WAPNB.074", + "dc/svpg/ILOPOP3WAPNB.075", + "dc/svpg/ILOPOP3WAPNB.076", + "dc/svpg/ILOPOP3WAPNB.077", + "dc/svpg/ILOPOP3WAPNB.078", + "dc/svpg/ILOPOP3WAPNB.079", + "dc/svpg/ILOPOP3WAPNB.080", + "dc/svpg/ILOPOP3WAPNB.081", + "dc/svpg/ILOPOP3WAPNB.082" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age" + ], + "name": [ + "Youth Working-age Population by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 19 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Disability Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age = 15 To 29 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 20 To 24 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_ilosex" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age = 25 To 29 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_disabilityStatus-ILODisabilityStatusEnumX" + ], + "name": [ + "Youth Working-age Population With Age, Disability Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age, Disability Status = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Working-age Population With Age, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age, Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age, Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age, Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS", + "ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T29_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY15T19_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY20T24_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_age-ILOAgeEnumY25T29_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus" + ], + "name": [ + "Youth Working-age Population by Disability Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX" + ], + "name": [ + "Youth Working-age Population With Disability Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X", + "dc/topic/ILOPOP3WAPNB_age_disabilityStatus-ILODisabilityStatusEnumX", + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Disability Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Disability Status = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X", + "dc/topic/ILOPOP3WAPNB_age_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Disability Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus-ILODisabilityStatusEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_disabilityStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Disability Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel" + ], + "name": [ + "Youth Working-age Population by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Education Level = Basic, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Education Level, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Education Level, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus" + ], + "name": [ + "Youth Working-age Population by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Youth Working-age Population With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_disabilityStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Youth Working-age Population With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X", + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_ilosex" + ], + "name": [ + "Youth Working-age Population by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3WAPNB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_ilosex-ILOSexEnumM" + ], + "name": [ + "Youth Working-age Population With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3WAPNB_disabilityStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOPOP3WAPNB_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOPOP3WAPNB_ilosex-ILOSexEnumO" + ], + "name": [ + "Youth Working-age Population With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPOP3WAPNB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_iloeducationLevel_ilosex-ILOSexEnumO", + "dc/topic/ILOPOP3WAPNB_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOPSETPSENB" + ], + "name": [ + "Public Sector Employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/PSE_TPSE_NB", + "dc/svpg/ILOPSETPSENB.002", + "dc/svpg/ILOPSETPSENB.003" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0111RT" + ], + "name": [ + "Proportion of Population Below The International Poverty Line (SDG Indicator 1.1.1)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOSDG0111RT.001", + "dc/svpg/ILOSDG0111RT.002", + "dc/svpg/ILOSDG0111RT.003", + "dc/svpg/ILOSDG0111RT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0831_RT", + "dc/topic/ILOSDG0831RT_iloeconomicActivity", + "dc/topic/ILOSDG0831RT_ilosex", + "dc/svpg/ILOSDG0831RT.008", + "dc/svpg/ILOSDG0831RT.009", + "dc/svpg/ILOSDG0831RT.010", + "dc/svpg/ILOSDG0831RT.012", + "dc/svpg/ILOSDG0831RT.013", + "dc/svpg/ILOSDG0831RT.014", + "dc/svpg/ILOSDG0831RT.015", + "dc/svpg/ILOSDG0831RT.016", + "dc/svpg/ILOSDG0831RT.017", + "dc/svpg/ILOSDG0831RT.018", + "dc/svpg/ILOSDG0831RT.019", + "dc/svpg/ILOSDG0831RT.020", + "dc/svpg/ILOSDG0831RT.021" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOSDG0831RT_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--_X", + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_ilosex" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOSDG0831RT_ilosex-ILOSexEnumF", + "dc/topic/ILOSDG0831RT_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_ilosex-ILOSexEnumF" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0831RT_ilosex-ILOSexEnumM" + ], + "name": [ + "Proportion of Informal Employment in Total Employment (SDG Indicator 8.3.1) With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOSDG0831RT_iloeconomicActivity_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDG0861RT" + ], + "name": [ + "Proportion of Youth (aged 15-24 Years) Not in Education, Employment or Training (SDG Indicator 8.6.1)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_0861_RT", + "dc/svpg/ILOSDG0861RT.002" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDGF881RT" + ], + "name": [ + "Fatal Occupational Injuries Per 100'000 Workers (SDG Indicator 8.8.1)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_F881_RT", + "dc/svpg/ILOSDGF881RT.002", + "dc/svpg/ILOSDGF881RT.003", + "dc/svpg/ILOSDGF881RT.004", + "dc/svpg/ILOSDGF881RT.005", + "dc/svpg/ILOSDGF881RT.006" + ] + }, + { + "dcid": [ + "dc/topic/ILOSDGN881RT" + ], + "name": [ + "Non-fatal Occupational Injuries Per 100'000 Workers (SDG Indicator 8.8.1)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_N881_RT", + "dc/svpg/ILOSDGN881RT.002", + "dc/svpg/ILOSDGN881RT.003", + "dc/svpg/ILOSDGN881RT.004", + "dc/svpg/ILOSDGN881RT.005", + "dc/svpg/ILOSDGN881RT.006" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRDAYSNB" + ], + "name": [ + "Days Not Worked Due To Strikes And Lockouts" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_DAYS_NB", + "dc/topic/ILOSTRDAYSNB_iloeconomicActivity", + "dc/svpg/ILOSTRDAYSNB.002", + "dc/svpg/ILOSTRDAYSNB.003", + "dc/svpg/ILOSTRDAYSNB.004", + "dc/svpg/ILOSTRDAYSNB.005" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRDAYSNB_iloeconomicActivity" + ], + "name": [ + "Days Not Worked Due To Strikes And Lockouts by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRDAYSRT" + ], + "name": [ + "Rates of Days Not Worked Due To Strikes And Lockouts" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_DAYS_RT", + "dc/topic/ILOSTRDAYSRT_iloeconomicActivity", + "dc/svpg/ILOSTRDAYSRT.002", + "dc/svpg/ILOSTRDAYSRT.003", + "dc/svpg/ILOSTRDAYSRT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRDAYSRT_iloeconomicActivity" + ], + "name": [ + "Rates of Days Not Worked Due To Strikes And Lockouts by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRTSTRNB" + ], + "name": [ + "Strikes And Lockouts" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_TSTR_NB", + "dc/topic/ILOSTRTSTRNB_iloeconomicActivity", + "dc/svpg/ILOSTRTSTRNB.002", + "dc/svpg/ILOSTRTSTRNB.003", + "dc/svpg/ILOSTRTSTRNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRTSTRNB_iloeconomicActivity" + ], + "name": [ + "Strikes And Lockouts by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRWORKNB" + ], + "name": [ + "Workers Involved in Strikes And Lockouts" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_WORK_NB", + "dc/topic/ILOSTRWORKNB_iloeconomicActivity", + "dc/svpg/ILOSTRWORKNB.002", + "dc/svpg/ILOSTRWORKNB.003", + "dc/svpg/ILOSTRWORKNB.004", + "dc/svpg/ILOSTRWORKNB.005", + "dc/svpg/ILOSTRWORKNB.006" + ] + }, + { + "dcid": [ + "dc/topic/ILOSTRWORKNB_iloeconomicActivity" + ], + "name": [ + "Workers Involved in Strikes And Lockouts by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOTRU3TRUNB" + ], + "name": [ + "Youth Time-related Underemployment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOTRU3TRUNB.001", + "dc/svpg/ILOTRU3TRUNB.002", + "dc/svpg/ILOTRU3TRUNB.003", + "dc/svpg/ILOTRU3TRUNB.004", + "dc/svpg/ILOTRU3TRUNB.005", + "dc/svpg/ILOTRU3TRUNB.006", + "dc/svpg/ILOTRU3TRUNB.007", + "dc/svpg/ILOTRU3TRUNB.008", + "dc/svpg/ILOTRU3TRUNB.009", + "dc/svpg/ILOTRU3TRUNB.010", + "dc/svpg/ILOTRU3TRUNB.011", + "dc/svpg/ILOTRU3TRUNB.012", + "dc/svpg/ILOTRU3TRUNB.013", + "dc/svpg/ILOTRU3TRUNB.014", + "dc/svpg/ILOTRU3TRUNB.015", + "dc/svpg/ILOTRU3TRUNB.016", + "dc/svpg/ILOTRU3TRUNB.017", + "dc/svpg/ILOTRU3TRUNB.018", + "dc/svpg/ILOTRU3TRUNB.019", + "dc/svpg/ILOTRU3TRUNB.020", + "dc/svpg/ILOTRU3TRUNB.021" + ] + }, + { + "dcid": [ + "dc/topic/ILOTRU5EMPRT" + ], + "name": [ + "Time-related Underemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOTRU5EMPRT.001", + "dc/svpg/ILOTRU5EMPRT.002", + "dc/svpg/ILOTRU5EMPRT.003", + "dc/svpg/ILOTRU5EMPRT.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOTRU5TRUNB" + ], + "name": [ + "Time-related Underemployment, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOTRU5TRUNB.001", + "dc/svpg/ILOTRU5TRUNB.002", + "dc/svpg/ILOTRU5TRUNB.003", + "dc/svpg/ILOTRU5TRUNB.004" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE2EAPRT" + ], + "name": [ + "Unemployment Rate (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE2EAPRT.001", + "dc/svpg/ILOUNE2EAPRT.002", + "dc/svpg/ILOUNE2EAPRT.003", + "dc/svpg/ILOUNE2EAPRT.004", + "dc/svpg/ILOUNE2EAPRT.005", + "dc/svpg/ILOUNE2EAPRT.006", + "dc/svpg/ILOUNE2EAPRT.007", + "dc/svpg/ILOUNE2EAPRT.008", + "dc/svpg/ILOUNE2EAPRT.009", + "dc/svpg/ILOUNE2EAPRT.010", + "dc/svpg/ILOUNE2EAPRT.011", + "dc/svpg/ILOUNE2EAPRT.012", + "dc/svpg/ILOUNE2EAPRT.013" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE2UNENB" + ], + "name": [ + "Unemployment (ILO Modelled Estimates)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE2UNENB.001", + "dc/svpg/ILOUNE2UNENB.006", + "dc/svpg/ILOUNE2UNENB.007", + "dc/svpg/ILOUNE2UNENB.008", + "dc/svpg/ILOUNE2UNENB.009", + "dc/svpg/ILOUNE2UNENB.010", + "dc/svpg/ILOUNE2UNENB.011", + "dc/svpg/ILOUNE2UNENB.012", + "dc/svpg/ILOUNE2UNENB.013", + "dc/svpg/ILOUNE2UNENB.014", + "dc/svpg/ILOUNE2UNENB.015", + "dc/svpg/ILOUNE2UNENB.016", + "dc/svpg/ILOUNE2UNENB.017" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE3EAPRT" + ], + "name": [ + "Youth Unemployment Rate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE3EAPRT.001", + "dc/svpg/ILOUNE3EAPRT.002", + "dc/svpg/ILOUNE3EAPRT.003", + "dc/svpg/ILOUNE3EAPRT.004", + "dc/svpg/ILOUNE3EAPRT.005", + "dc/svpg/ILOUNE3EAPRT.006", + "dc/svpg/ILOUNE3EAPRT.007", + "dc/svpg/ILOUNE3EAPRT.008", + "dc/svpg/ILOUNE3EAPRT.009", + "dc/svpg/ILOUNE3EAPRT.010", + "dc/svpg/ILOUNE3EAPRT.011", + "dc/svpg/ILOUNE3EAPRT.012", + "dc/svpg/ILOUNE3EAPRT.013", + "dc/svpg/ILOUNE3EAPRT.014", + "dc/svpg/ILOUNE3EAPRT.015", + "dc/svpg/ILOUNE3EAPRT.016", + "dc/svpg/ILOUNE3EAPRT.017", + "dc/svpg/ILOUNE3EAPRT.018", + "dc/svpg/ILOUNE3EAPRT.019", + "dc/svpg/ILOUNE3EAPRT.020", + "dc/svpg/ILOUNE3EAPRT.021", + "dc/svpg/ILOUNE3EAPRT.022", + "dc/svpg/ILOUNE3EAPRT.023", + "dc/svpg/ILOUNE3EAPRT.024", + "dc/svpg/ILOUNE3EAPRT.025", + "dc/svpg/ILOUNE3EAPRT.026", + "dc/svpg/ILOUNE3EAPRT.027", + "dc/svpg/ILOUNE3EAPRT.028", + "dc/svpg/ILOUNE3EAPRT.029", + "dc/svpg/ILOUNE3EAPRT.030", + "dc/svpg/ILOUNE3EAPRT.031", + "dc/svpg/ILOUNE3EAPRT.032", + "dc/svpg/ILOUNE3EAPRT.033", + "dc/svpg/ILOUNE3EAPRT.034", + "dc/svpg/ILOUNE3EAPRT.035", + "dc/svpg/ILOUNE3EAPRT.036", + "dc/svpg/ILOUNE3EAPRT.037", + "dc/svpg/ILOUNE3EAPRT.038", + "dc/svpg/ILOUNE3EAPRT.039", + "dc/svpg/ILOUNE3EAPRT.040", + "dc/svpg/ILOUNE3EAPRT.041", + "dc/svpg/ILOUNE3EAPRT.042", + "dc/svpg/ILOUNE3EAPRT.043", + "dc/svpg/ILOUNE3EAPRT.044", + "dc/svpg/ILOUNE3EAPRT.045", + "dc/svpg/ILOUNE3EAPRT.046", + "dc/svpg/ILOUNE3EAPRT.047", + "dc/svpg/ILOUNE3EAPRT.048", + "dc/svpg/ILOUNE3EAPRT.049", + "dc/svpg/ILOUNE3EAPRT.050", + "dc/svpg/ILOUNE3EAPRT.051", + "dc/svpg/ILOUNE3EAPRT.052", + "dc/svpg/ILOUNE3EAPRT.053", + "dc/svpg/ILOUNE3EAPRT.054", + "dc/svpg/ILOUNE3EAPRT.055", + "dc/svpg/ILOUNE3EAPRT.056", + "dc/svpg/ILOUNE3EAPRT.057", + "dc/svpg/ILOUNE3EAPRT.058", + "dc/svpg/ILOUNE3EAPRT.059", + "dc/svpg/ILOUNE3EAPRT.060", + "dc/svpg/ILOUNE3EAPRT.061" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE3UNENB" + ], + "name": [ + "Youth Unemployment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE3UNENB.001", + "dc/svpg/ILOUNE3UNENB.002", + "dc/svpg/ILOUNE3UNENB.003", + "dc/svpg/ILOUNE3UNENB.004", + "dc/svpg/ILOUNE3UNENB.005", + "dc/svpg/ILOUNE3UNENB.006", + "dc/svpg/ILOUNE3UNENB.007", + "dc/svpg/ILOUNE3UNENB.008", + "dc/svpg/ILOUNE3UNENB.009", + "dc/svpg/ILOUNE3UNENB.010", + "dc/svpg/ILOUNE3UNENB.011", + "dc/svpg/ILOUNE3UNENB.012", + "dc/svpg/ILOUNE3UNENB.013", + "dc/svpg/ILOUNE3UNENB.014", + "dc/svpg/ILOUNE3UNENB.015", + "dc/svpg/ILOUNE3UNENB.016", + "dc/svpg/ILOUNE3UNENB.017", + "dc/svpg/ILOUNE3UNENB.018", + "dc/svpg/ILOUNE3UNENB.019", + "dc/svpg/ILOUNE3UNENB.020", + "dc/svpg/ILOUNE3UNENB.021", + "dc/svpg/ILOUNE3UNENB.022", + "dc/svpg/ILOUNE3UNENB.023", + "dc/svpg/ILOUNE3UNENB.024", + "dc/svpg/ILOUNE3UNENB.025", + "dc/svpg/ILOUNE3UNENB.026", + "dc/svpg/ILOUNE3UNENB.027", + "dc/svpg/ILOUNE3UNENB.028", + "dc/svpg/ILOUNE3UNENB.029", + "dc/svpg/ILOUNE3UNENB.030", + "dc/svpg/ILOUNE3UNENB.031", + "dc/svpg/ILOUNE3UNENB.032", + "dc/svpg/ILOUNE3UNENB.033", + "dc/svpg/ILOUNE3UNENB.034", + "dc/svpg/ILOUNE3UNENB.035", + "dc/svpg/ILOUNE3UNENB.036", + "dc/svpg/ILOUNE3UNENB.037", + "dc/svpg/ILOUNE3UNENB.038", + "dc/svpg/ILOUNE3UNENB.039", + "dc/svpg/ILOUNE3UNENB.040", + "dc/svpg/ILOUNE3UNENB.041", + "dc/svpg/ILOUNE3UNENB.042", + "dc/svpg/ILOUNE3UNENB.043", + "dc/svpg/ILOUNE3UNENB.044", + "dc/svpg/ILOUNE3UNENB.045", + "dc/svpg/ILOUNE3UNENB.046", + "dc/svpg/ILOUNE3UNENB.047", + "dc/svpg/ILOUNE3UNENB.048", + "dc/svpg/ILOUNE3UNENB.049", + "dc/svpg/ILOUNE3UNENB.050", + "dc/svpg/ILOUNE3UNENB.051", + "dc/svpg/ILOUNE3UNENB.052", + "dc/svpg/ILOUNE3UNENB.053", + "dc/svpg/ILOUNE3UNENB.054", + "dc/svpg/ILOUNE3UNENB.055", + "dc/svpg/ILOUNE3UNENB.056", + "dc/svpg/ILOUNE3UNENB.057", + "dc/svpg/ILOUNE3UNENB.058", + "dc/svpg/ILOUNE3UNENB.059", + "dc/svpg/ILOUNE3UNENB.060", + "dc/svpg/ILOUNE3UNENB.061", + "dc/svpg/ILOUNE3UNENB.062", + "dc/svpg/ILOUNE3UNENB.063", + "dc/svpg/ILOUNE3UNENB.064", + "dc/svpg/ILOUNE3UNENB.065", + "dc/svpg/ILOUNE3UNENB.066", + "dc/svpg/ILOUNE3UNENB.067", + "dc/svpg/ILOUNE3UNENB.068", + "dc/svpg/ILOUNE3UNENB.069", + "dc/svpg/ILOUNE3UNENB.070", + "dc/svpg/ILOUNE3UNENB.071", + "dc/svpg/ILOUNE3UNENB.072", + "dc/svpg/ILOUNE3UNENB.073", + "dc/svpg/ILOUNE3UNENB.074", + "dc/svpg/ILOUNE3UNENB.075", + "dc/svpg/ILOUNE3UNENB.076", + "dc/svpg/ILOUNE3UNENB.077", + "dc/svpg/ILOUNE3UNENB.078", + "dc/svpg/ILOUNE3UNENB.079", + "dc/svpg/ILOUNE3UNENB.080", + "dc/svpg/ILOUNE3UNENB.081", + "dc/svpg/ILOUNE3UNENB.082", + "dc/svpg/ILOUNE3UNENB.083", + "dc/svpg/ILOUNE3UNENB.084", + "dc/svpg/ILOUNE3UNENB.085", + "dc/svpg/ILOUNE3UNENB.086", + "dc/svpg/ILOUNE3UNENB.087", + "dc/svpg/ILOUNE3UNENB.088", + "dc/svpg/ILOUNE3UNENB.089", + "dc/svpg/ILOUNE3UNENB.090", + "dc/svpg/ILOUNE3UNENB.091", + "dc/svpg/ILOUNE3UNENB.092", + "dc/svpg/ILOUNE3UNENB.093", + "dc/svpg/ILOUNE3UNENB.094", + "dc/svpg/ILOUNE3UNENB.095", + "dc/svpg/ILOUNE3UNENB.096", + "dc/svpg/ILOUNE3UNENB.097", + "dc/svpg/ILOUNE3UNENB.098", + "dc/svpg/ILOUNE3UNENB.099", + "dc/svpg/ILOUNE3UNENB.100", + "dc/svpg/ILOUNE3UNENB.101" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE3WAPRT" + ], + "name": [ + "Youth Unemployment-to-population Ratio" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE3WAPRT.001", + "dc/svpg/ILOUNE3WAPRT.002", + "dc/svpg/ILOUNE3WAPRT.003", + "dc/svpg/ILOUNE3WAPRT.004", + "dc/svpg/ILOUNE3WAPRT.005", + "dc/svpg/ILOUNE3WAPRT.006", + "dc/svpg/ILOUNE3WAPRT.007", + "dc/svpg/ILOUNE3WAPRT.008", + "dc/svpg/ILOUNE3WAPRT.009", + "dc/svpg/ILOUNE3WAPRT.010", + "dc/svpg/ILOUNE3WAPRT.011", + "dc/svpg/ILOUNE3WAPRT.012", + "dc/svpg/ILOUNE3WAPRT.013", + "dc/svpg/ILOUNE3WAPRT.014", + "dc/svpg/ILOUNE3WAPRT.015", + "dc/svpg/ILOUNE3WAPRT.016", + "dc/svpg/ILOUNE3WAPRT.017", + "dc/svpg/ILOUNE3WAPRT.018", + "dc/svpg/ILOUNE3WAPRT.019", + "dc/svpg/ILOUNE3WAPRT.020", + "dc/svpg/ILOUNE3WAPRT.021", + "dc/svpg/ILOUNE3WAPRT.022", + "dc/svpg/ILOUNE3WAPRT.023", + "dc/svpg/ILOUNE3WAPRT.024", + "dc/svpg/ILOUNE3WAPRT.025", + "dc/svpg/ILOUNE3WAPRT.026", + "dc/svpg/ILOUNE3WAPRT.027", + "dc/svpg/ILOUNE3WAPRT.028", + "dc/svpg/ILOUNE3WAPRT.029", + "dc/svpg/ILOUNE3WAPRT.030", + "dc/svpg/ILOUNE3WAPRT.031", + "dc/svpg/ILOUNE3WAPRT.032", + "dc/svpg/ILOUNE3WAPRT.033", + "dc/svpg/ILOUNE3WAPRT.034", + "dc/svpg/ILOUNE3WAPRT.035", + "dc/svpg/ILOUNE3WAPRT.036", + "dc/svpg/ILOUNE3WAPRT.037", + "dc/svpg/ILOUNE3WAPRT.038", + "dc/svpg/ILOUNE3WAPRT.039", + "dc/svpg/ILOUNE3WAPRT.040", + "dc/svpg/ILOUNE3WAPRT.041", + "dc/svpg/ILOUNE3WAPRT.042", + "dc/svpg/ILOUNE3WAPRT.043", + "dc/svpg/ILOUNE3WAPRT.044", + "dc/svpg/ILOUNE3WAPRT.045", + "dc/svpg/ILOUNE3WAPRT.046", + "dc/svpg/ILOUNE3WAPRT.047", + "dc/svpg/ILOUNE3WAPRT.048", + "dc/svpg/ILOUNE3WAPRT.049", + "dc/svpg/ILOUNE3WAPRT.050", + "dc/svpg/ILOUNE3WAPRT.051", + "dc/svpg/ILOUNE3WAPRT.052", + "dc/svpg/ILOUNE3WAPRT.053", + "dc/svpg/ILOUNE3WAPRT.054", + "dc/svpg/ILOUNE3WAPRT.055", + "dc/svpg/ILOUNE3WAPRT.056", + "dc/svpg/ILOUNE3WAPRT.057", + "dc/svpg/ILOUNE3WAPRT.058", + "dc/svpg/ILOUNE3WAPRT.059", + "dc/svpg/ILOUNE3WAPRT.060", + "dc/svpg/ILOUNE3WAPRT.061" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNE5EAPRT" + ], + "name": [ + "Unemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians (ICLS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/svpg/ILOUNE5EAPRT.001", + "dc/svpg/ILOUNE5EAPRT.002", + "dc/svpg/ILOUNE5EAPRT.003", + "dc/svpg/ILOUNE5EAPRT.004", + "dc/svpg/ILOUNE5EAPRT.005" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS)" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB", + "dc/topic/ILOUNETUNENB_age", + "dc/topic/ILOUNETUNENB_iloduration", + "dc/topic/ILOUNETUNENB_iloeconomicActivity", + "dc/topic/ILOUNETUNENB_iloeducationLevel", + "dc/topic/ILOUNETUNENB_ilomaritalStatus", + "dc/topic/ILOUNETUNENB_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilooccupation", + "dc/topic/ILOUNETUNENB_ilosex", + "dc/topic/ILOUNETUNENB_ilourbanisation", + "dc/svpg/ILOUNETUNENB.002", + "dc/svpg/ILOUNETUNENB.003", + "dc/svpg/ILOUNETUNENB.004", + "dc/svpg/ILOUNETUNENB.005", + "dc/svpg/ILOUNETUNENB.006", + "dc/svpg/ILOUNETUNENB.007", + "dc/svpg/ILOUNETUNENB.008", + "dc/svpg/ILOUNETUNENB.009", + "dc/svpg/ILOUNETUNENB.043", + "dc/svpg/ILOUNETUNENB.044", + "dc/svpg/ILOUNETUNENB.045", + "dc/svpg/ILOUNETUNENB.046", + "dc/svpg/ILOUNETUNENB.047", + "dc/svpg/ILOUNETUNENB.048", + "dc/svpg/ILOUNETUNENB.049", + "dc/svpg/ILOUNETUNENB.050", + "dc/svpg/ILOUNETUNENB.051", + "dc/svpg/ILOUNETUNENB.052", + "dc/svpg/ILOUNETUNENB.053", + "dc/svpg/ILOUNETUNENB.054", + "dc/svpg/ILOUNETUNENB.055", + "dc/svpg/ILOUNETUNENB.056", + "dc/svpg/ILOUNETUNENB.057", + "dc/svpg/ILOUNETUNENB.058", + "dc/svpg/ILOUNETUNENB.059", + "dc/svpg/ILOUNETUNENB.060", + "dc/svpg/ILOUNETUNENB.061", + "dc/svpg/ILOUNETUNENB.062", + "dc/svpg/ILOUNETUNENB.063", + "dc/svpg/ILOUNETUNENB.064", + "dc/svpg/ILOUNETUNENB.065", + "dc/svpg/ILOUNETUNENB.066", + "dc/svpg/ILOUNETUNENB.067", + "dc/svpg/ILOUNETUNENB.068", + "dc/svpg/ILOUNETUNENB.069", + "dc/svpg/ILOUNETUNENB.070", + "dc/svpg/ILOUNETUNENB.071", + "dc/svpg/ILOUNETUNENB.072", + "dc/svpg/ILOUNETUNENB.073", + "dc/svpg/ILOUNETUNENB.074", + "dc/svpg/ILOUNETUNENB.075", + "dc/svpg/ILOUNETUNENB.076", + "dc/svpg/ILOUNETUNENB.077", + "dc/svpg/ILOUNETUNENB.078", + "dc/svpg/ILOUNETUNENB.079", + "dc/svpg/ILOUNETUNENB.080", + "dc/svpg/ILOUNETUNENB.081", + "dc/svpg/ILOUNETUNENB.082", + "dc/svpg/ILOUNETUNENB.083", + "dc/svpg/ILOUNETUNENB.084", + "dc/svpg/ILOUNETUNENB.085", + "dc/svpg/ILOUNETUNENB.086", + "dc/svpg/ILOUNETUNENB.087", + "dc/svpg/ILOUNETUNENB.088", + "dc/svpg/ILOUNETUNENB.089", + "dc/svpg/ILOUNETUNENB.090", + "dc/svpg/ILOUNETUNENB.091", + "dc/svpg/ILOUNETUNENB.092", + "dc/svpg/ILOUNETUNENB.093", + "dc/svpg/ILOUNETUNENB.094", + "dc/svpg/ILOUNETUNENB.095", + "dc/svpg/ILOUNETUNENB.096", + "dc/svpg/ILOUNETUNENB.097", + "dc/svpg/ILOUNETUNENB.098", + "dc/svpg/ILOUNETUNENB.099", + "dc/svpg/ILOUNETUNENB.100", + "dc/svpg/ILOUNETUNENB.101", + "dc/svpg/ILOUNETUNENB.102", + "dc/svpg/ILOUNETUNENB.103", + "dc/svpg/ILOUNETUNENB.104", + "dc/svpg/ILOUNETUNENB.105", + "dc/svpg/ILOUNETUNENB.106", + "dc/svpg/ILOUNETUNENB.107", + "dc/svpg/ILOUNETUNENB.108", + "dc/svpg/ILOUNETUNENB.109", + "dc/svpg/ILOUNETUNENB.110", + "dc/svpg/ILOUNETUNENB.111", + "dc/svpg/ILOUNETUNENB.112", + "dc/svpg/ILOUNETUNENB.113", + "dc/svpg/ILOUNETUNENB.114", + "dc/svpg/ILOUNETUNENB.115", + "dc/svpg/ILOUNETUNENB.116", + "dc/svpg/ILOUNETUNENB.117", + "dc/svpg/ILOUNETUNENB.118", + "dc/svpg/ILOUNETUNENB.119", + "dc/svpg/ILOUNETUNENB.120", + "dc/svpg/ILOUNETUNENB.121", + "dc/svpg/ILOUNETUNENB.122", + "dc/svpg/ILOUNETUNENB.123", + "dc/svpg/ILOUNETUNENB.124", + "dc/svpg/ILOUNETUNENB.125", + "dc/svpg/ILOUNETUNENB.126", + "dc/svpg/ILOUNETUNENB.127", + "dc/svpg/ILOUNETUNENB.128", + "dc/svpg/ILOUNETUNENB.129", + "dc/svpg/ILOUNETUNENB.130", + "dc/svpg/ILOUNETUNENB.131", + "dc/svpg/ILOUNETUNENB.132", + "dc/svpg/ILOUNETUNENB.133", + "dc/svpg/ILOUNETUNENB.134", + "dc/svpg/ILOUNETUNENB.135", + "dc/svpg/ILOUNETUNENB.136", + "dc/svpg/ILOUNETUNENB.137", + "dc/svpg/ILOUNETUNENB.138", + "dc/svpg/ILOUNETUNENB.139", + "dc/svpg/ILOUNETUNENB.140", + "dc/svpg/ILOUNETUNENB.141", + "dc/svpg/ILOUNETUNENB.142", + "dc/svpg/ILOUNETUNENB.143", + "dc/svpg/ILOUNETUNENB.144", + "dc/svpg/ILOUNETUNENB.145", + "dc/svpg/ILOUNETUNENB.146", + "dc/svpg/ILOUNETUNENB.147", + "dc/svpg/ILOUNETUNENB.148", + "dc/svpg/ILOUNETUNENB.149", + "dc/svpg/ILOUNETUNENB.150", + "dc/svpg/ILOUNETUNENB.151", + "dc/svpg/ILOUNETUNENB.152", + "dc/svpg/ILOUNETUNENB.153", + "dc/svpg/ILOUNETUNENB.154", + "dc/svpg/ILOUNETUNENB.155", + "dc/svpg/ILOUNETUNENB.156", + "dc/svpg/ILOUNETUNENB.157", + "dc/svpg/ILOUNETUNENB.158", + "dc/svpg/ILOUNETUNENB.159", + "dc/svpg/ILOUNETUNENB.160", + "dc/svpg/ILOUNETUNENB.161", + "dc/svpg/ILOUNETUNENB.162", + "dc/svpg/ILOUNETUNENB.163", + "dc/svpg/ILOUNETUNENB.164", + "dc/svpg/ILOUNETUNENB.165", + "dc/svpg/ILOUNETUNENB.166", + "dc/svpg/ILOUNETUNENB.179", + "dc/svpg/ILOUNETUNENB.180", + "dc/svpg/ILOUNETUNENB.181", + "dc/svpg/ILOUNETUNENB.182", + "dc/svpg/ILOUNETUNENB.183", + "dc/svpg/ILOUNETUNENB.184", + "dc/svpg/ILOUNETUNENB.185", + "dc/svpg/ILOUNETUNENB.186", + "dc/svpg/ILOUNETUNENB.187", + "dc/svpg/ILOUNETUNENB.188", + "dc/svpg/ILOUNETUNENB.189", + "dc/svpg/ILOUNETUNENB.190", + "dc/svpg/ILOUNETUNENB.191", + "dc/svpg/ILOUNETUNENB.192", + "dc/svpg/ILOUNETUNENB.193", + "dc/svpg/ILOUNETUNENB.194", + "dc/svpg/ILOUNETUNENB.195", + "dc/svpg/ILOUNETUNENB.196", + "dc/svpg/ILOUNETUNENB.197", + "dc/svpg/ILOUNETUNENB.198", + "dc/svpg/ILOUNETUNENB.199", + "dc/svpg/ILOUNETUNENB.200", + "dc/svpg/ILOUNETUNENB.201", + "dc/svpg/ILOUNETUNENB.202", + "dc/svpg/ILOUNETUNENB.203", + "dc/svpg/ILOUNETUNENB.204", + "dc/svpg/ILOUNETUNENB.205", + "dc/svpg/ILOUNETUNENB.206", + "dc/svpg/ILOUNETUNENB.207", + "dc/svpg/ILOUNETUNENB.208", + "dc/svpg/ILOUNETUNENB.211", + "dc/svpg/ILOUNETUNENB.212", + "dc/svpg/ILOUNETUNENB.213", + "dc/svpg/ILOUNETUNENB.214", + "dc/svpg/ILOUNETUNENB.215", + "dc/svpg/ILOUNETUNENB.216", + "dc/svpg/ILOUNETUNENB.217", + "dc/svpg/ILOUNETUNENB.218", + "dc/svpg/ILOUNETUNENB.219", + "dc/svpg/ILOUNETUNENB.220", + "dc/svpg/ILOUNETUNENB.221", + "dc/svpg/ILOUNETUNENB.222", + "dc/svpg/ILOUNETUNENB.223", + "dc/svpg/ILOUNETUNENB.224", + "dc/svpg/ILOUNETUNENB.225", + "dc/svpg/ILOUNETUNENB.226", + "dc/svpg/ILOUNETUNENB.227", + "dc/svpg/ILOUNETUNENB.228", + "dc/svpg/ILOUNETUNENB.229", + "dc/svpg/ILOUNETUNENB.230", + "dc/svpg/ILOUNETUNENB.231", + "dc/svpg/ILOUNETUNENB.232", + "dc/svpg/ILOUNETUNENB.233", + "dc/svpg/ILOUNETUNENB.234", + "dc/svpg/ILOUNETUNENB.235", + "dc/svpg/ILOUNETUNENB.236", + "dc/svpg/ILOUNETUNENB.237", + "dc/svpg/ILOUNETUNENB.238", + "dc/svpg/ILOUNETUNENB.239", + "dc/svpg/ILOUNETUNENB.240", + "dc/svpg/ILOUNETUNENB.251", + "dc/svpg/ILOUNETUNENB.252", + "dc/svpg/ILOUNETUNENB.253", + "dc/svpg/ILOUNETUNENB.254", + "dc/svpg/ILOUNETUNENB.255", + "dc/svpg/ILOUNETUNENB.256", + "dc/svpg/ILOUNETUNENB.257", + "dc/svpg/ILOUNETUNENB.258", + "dc/svpg/ILOUNETUNENB.259", + "dc/svpg/ILOUNETUNENB.260", + "dc/svpg/ILOUNETUNENB.261", + "dc/svpg/ILOUNETUNENB.262", + "dc/svpg/ILOUNETUNENB.263", + "dc/svpg/ILOUNETUNENB.264", + "dc/svpg/ILOUNETUNENB.265", + "dc/svpg/ILOUNETUNENB.266", + "dc/svpg/ILOUNETUNENB.267", + "dc/svpg/ILOUNETUNENB.268", + "dc/svpg/ILOUNETUNENB.269", + "dc/svpg/ILOUNETUNENB.270", + "dc/svpg/ILOUNETUNENB.271", + "dc/svpg/ILOUNETUNENB.272", + "dc/svpg/ILOUNETUNENB.273", + "dc/svpg/ILOUNETUNENB.294", + "dc/svpg/ILOUNETUNENB.295", + "dc/svpg/ILOUNETUNENB.296", + "dc/svpg/ILOUNETUNENB.297", + "dc/svpg/ILOUNETUNENB.298", + "dc/svpg/ILOUNETUNENB.299", + "dc/svpg/ILOUNETUNENB.300", + "dc/svpg/ILOUNETUNENB.301", + "dc/svpg/ILOUNETUNENB.302", + "dc/svpg/ILOUNETUNENB.303", + "dc/svpg/ILOUNETUNENB.304", + "dc/svpg/ILOUNETUNENB.305", + "dc/svpg/ILOUNETUNENB.306", + "dc/svpg/ILOUNETUNENB.307", + "dc/svpg/ILOUNETUNENB.308", + "dc/svpg/ILOUNETUNENB.309", + "dc/svpg/ILOUNETUNENB.310", + "dc/svpg/ILOUNETUNENB.311", + "dc/svpg/ILOUNETUNENB.312", + "dc/svpg/ILOUNETUNENB.313", + "dc/svpg/ILOUNETUNENB.314", + "dc/svpg/ILOUNETUNENB.315", + "dc/svpg/ILOUNETUNENB.316", + "dc/svpg/ILOUNETUNENB.317", + "dc/svpg/ILOUNETUNENB.318", + "dc/svpg/ILOUNETUNENB.319", + "dc/svpg/ILOUNETUNENB.320", + "dc/svpg/ILOUNETUNENB.321", + "dc/svpg/ILOUNETUNENB.322", + "dc/svpg/ILOUNETUNENB.323", + "dc/svpg/ILOUNETUNENB.324", + "dc/svpg/ILOUNETUNENB.325", + "dc/svpg/ILOUNETUNENB.326", + "dc/svpg/ILOUNETUNENB.327", + "dc/svpg/ILOUNETUNENB.328", + "dc/svpg/ILOUNETUNENB.329", + "dc/svpg/ILOUNETUNENB.330", + "dc/svpg/ILOUNETUNENB.331", + "dc/svpg/ILOUNETUNENB.332", + "dc/svpg/ILOUNETUNENB.333", + "dc/svpg/ILOUNETUNENB.334", + "dc/svpg/ILOUNETUNENB.335", + "dc/svpg/ILOUNETUNENB.336", + "dc/svpg/ILOUNETUNENB.337", + "dc/svpg/ILOUNETUNENB.338", + "dc/svpg/ILOUNETUNENB.339", + "dc/svpg/ILOUNETUNENB.340", + "dc/svpg/ILOUNETUNENB.341", + "dc/svpg/ILOUNETUNENB.342", + "dc/svpg/ILOUNETUNENB.343", + "dc/svpg/ILOUNETUNENB.344", + "dc/svpg/ILOUNETUNENB.345", + "dc/svpg/ILOUNETUNENB.346", + "dc/svpg/ILOUNETUNENB.347", + "dc/svpg/ILOUNETUNENB.348", + "dc/svpg/ILOUNETUNENB.349", + "dc/svpg/ILOUNETUNENB.350", + "dc/svpg/ILOUNETUNENB.351", + "dc/svpg/ILOUNETUNENB.352", + "dc/svpg/ILOUNETUNENB.353", + "dc/svpg/ILOUNETUNENB.354", + "dc/svpg/ILOUNETUNENB.355", + "dc/svpg/ILOUNETUNENB.356", + "dc/svpg/ILOUNETUNENB.357", + "dc/svpg/ILOUNETUNENB.358", + "dc/svpg/ILOUNETUNENB.359", + "dc/svpg/ILOUNETUNENB.360", + "dc/svpg/ILOUNETUNENB.361", + "dc/svpg/ILOUNETUNENB.362", + "dc/svpg/ILOUNETUNENB.363", + "dc/svpg/ILOUNETUNENB.365", + "dc/svpg/ILOUNETUNENB.366", + "dc/svpg/ILOUNETUNENB.367", + "dc/svpg/ILOUNETUNENB.368", + "dc/svpg/ILOUNETUNENB.370", + "dc/svpg/ILOUNETUNENB.371", + "dc/svpg/ILOUNETUNENB.373", + "dc/svpg/ILOUNETUNENB.374", + "dc/svpg/ILOUNETUNENB.375", + "dc/svpg/ILOUNETUNENB.376", + "dc/svpg/ILOUNETUNENB.377", + "dc/svpg/ILOUNETUNENB.378", + "dc/svpg/ILOUNETUNENB.379", + "dc/svpg/ILOUNETUNENB.380", + "dc/svpg/ILOUNETUNENB.381", + "dc/svpg/ILOUNETUNENB.382", + "dc/svpg/ILOUNETUNENB.383", + "dc/svpg/ILOUNETUNENB.384", + "dc/svpg/ILOUNETUNENB.385", + "dc/svpg/ILOUNETUNENB.386", + "dc/svpg/ILOUNETUNENB.388", + "dc/svpg/ILOUNETUNENB.389", + "dc/svpg/ILOUNETUNENB.390", + "dc/svpg/ILOUNETUNENB.391", + "dc/svpg/ILOUNETUNENB.393", + "dc/svpg/ILOUNETUNENB.394", + "dc/svpg/ILOUNETUNENB.396", + "dc/svpg/ILOUNETUNENB.397", + "dc/svpg/ILOUNETUNENB.398", + "dc/svpg/ILOUNETUNENB.399", + "dc/svpg/ILOUNETUNENB.400", + "dc/svpg/ILOUNETUNENB.401", + "dc/svpg/ILOUNETUNENB.402", + "dc/svpg/ILOUNETUNENB.403", + "dc/svpg/ILOUNETUNENB.404", + "dc/svpg/ILOUNETUNENB.405", + "dc/svpg/ILOUNETUNENB.406", + "dc/svpg/ILOUNETUNENB.407", + "dc/svpg/ILOUNETUNENB.408", + "dc/svpg/ILOUNETUNENB.409", + "dc/svpg/ILOUNETUNENB.410", + "dc/svpg/ILOUNETUNENB.411", + "dc/svpg/ILOUNETUNENB.412", + "dc/svpg/ILOUNETUNENB.413", + "dc/svpg/ILOUNETUNENB.414", + "dc/svpg/ILOUNETUNENB.415", + "dc/svpg/ILOUNETUNENB.416", + "dc/svpg/ILOUNETUNENB.417", + "dc/svpg/ILOUNETUNENB.418", + "dc/svpg/ILOUNETUNENB.419", + "dc/svpg/ILOUNETUNENB.420", + "dc/svpg/ILOUNETUNENB.421", + "dc/svpg/ILOUNETUNENB.422", + "dc/svpg/ILOUNETUNENB.423", + "dc/svpg/ILOUNETUNENB.444", + "dc/svpg/ILOUNETUNENB.445", + "dc/svpg/ILOUNETUNENB.446", + "dc/svpg/ILOUNETUNENB.447", + "dc/svpg/ILOUNETUNENB.448", + "dc/svpg/ILOUNETUNENB.449", + "dc/svpg/ILOUNETUNENB.450", + "dc/svpg/ILOUNETUNENB.451", + "dc/svpg/ILOUNETUNENB.452", + "dc/svpg/ILOUNETUNENB.453", + "dc/svpg/ILOUNETUNENB.454", + "dc/svpg/ILOUNETUNENB.455", + "dc/svpg/ILOUNETUNENB.456", + "dc/svpg/ILOUNETUNENB.457", + "dc/svpg/ILOUNETUNENB.458", + "dc/svpg/ILOUNETUNENB.459", + "dc/svpg/ILOUNETUNENB.460", + "dc/svpg/ILOUNETUNENB.461", + "dc/svpg/ILOUNETUNENB.462", + "dc/svpg/ILOUNETUNENB.463", + "dc/svpg/ILOUNETUNENB.464", + "dc/svpg/ILOUNETUNENB.465", + "dc/svpg/ILOUNETUNENB.466", + "dc/svpg/ILOUNETUNENB.467", + "dc/svpg/ILOUNETUNENB.468", + "dc/svpg/ILOUNETUNENB.469", + "dc/svpg/ILOUNETUNENB.470", + "dc/svpg/ILOUNETUNENB.471", + "dc/svpg/ILOUNETUNENB.472", + "dc/svpg/ILOUNETUNENB.473", + "dc/svpg/ILOUNETUNENB.474", + "dc/svpg/ILOUNETUNENB.475", + "dc/svpg/ILOUNETUNENB.476", + "dc/svpg/ILOUNETUNENB.477", + "dc/svpg/ILOUNETUNENB.478", + "dc/svpg/ILOUNETUNENB.479", + "dc/svpg/ILOUNETUNENB.480", + "dc/svpg/ILOUNETUNENB.481", + "dc/svpg/ILOUNETUNENB.482", + "dc/svpg/ILOUNETUNENB.483", + "dc/svpg/ILOUNETUNENB.484", + "dc/svpg/ILOUNETUNENB.485", + "dc/svpg/ILOUNETUNENB.486", + "dc/svpg/ILOUNETUNENB.489", + "dc/svpg/ILOUNETUNENB.490", + "dc/svpg/ILOUNETUNENB.491", + "dc/svpg/ILOUNETUNENB.492", + "dc/svpg/ILOUNETUNENB.493", + "dc/svpg/ILOUNETUNENB.494", + "dc/svpg/ILOUNETUNENB.497", + "dc/svpg/ILOUNETUNENB.498", + "dc/svpg/ILOUNETUNENB.499", + "dc/svpg/ILOUNETUNENB.500", + "dc/svpg/ILOUNETUNENB.501", + "dc/svpg/ILOUNETUNENB.502", + "dc/svpg/ILOUNETUNENB.503", + "dc/svpg/ILOUNETUNENB.504", + "dc/svpg/ILOUNETUNENB.505", + "dc/svpg/ILOUNETUNENB.506", + "dc/svpg/ILOUNETUNENB.507", + "dc/svpg/ILOUNETUNENB.508", + "dc/svpg/ILOUNETUNENB.509", + "dc/svpg/ILOUNETUNENB.510", + "dc/svpg/ILOUNETUNENB.511", + "dc/svpg/ILOUNETUNENB.512", + "dc/svpg/ILOUNETUNENB.513", + "dc/svpg/ILOUNETUNENB.514", + "dc/svpg/ILOUNETUNENB.515", + "dc/svpg/ILOUNETUNENB.519", + "dc/svpg/ILOUNETUNENB.520", + "dc/svpg/ILOUNETUNENB.521", + "dc/svpg/ILOUNETUNENB.522", + "dc/svpg/ILOUNETUNENB.523", + "dc/svpg/ILOUNETUNENB.524", + "dc/svpg/ILOUNETUNENB.525", + "dc/svpg/ILOUNETUNENB.526", + "dc/svpg/ILOUNETUNENB.527", + "dc/svpg/ILOUNETUNENB.532", + "dc/svpg/ILOUNETUNENB.533", + "dc/svpg/ILOUNETUNENB.534", + "dc/svpg/ILOUNETUNENB.535", + "dc/svpg/ILOUNETUNENB.536", + "dc/svpg/ILOUNETUNENB.537", + "dc/svpg/ILOUNETUNENB.538", + "dc/svpg/ILOUNETUNENB.539", + "dc/svpg/ILOUNETUNENB.540", + "dc/svpg/ILOUNETUNENB.541", + "dc/svpg/ILOUNETUNENB.542", + "dc/svpg/ILOUNETUNENB.543", + "dc/svpg/ILOUNETUNENB.544", + "dc/svpg/ILOUNETUNENB.545", + "dc/svpg/ILOUNETUNENB.546", + "dc/svpg/ILOUNETUNENB.547", + "dc/svpg/ILOUNETUNENB.548", + "dc/svpg/ILOUNETUNENB.549", + "dc/svpg/ILOUNETUNENB.558", + "dc/svpg/ILOUNETUNENB.559", + "dc/svpg/ILOUNETUNENB.560", + "dc/svpg/ILOUNETUNENB.561", + "dc/svpg/ILOUNETUNENB.562", + "dc/svpg/ILOUNETUNENB.565", + "dc/svpg/ILOUNETUNENB.566", + "dc/svpg/ILOUNETUNENB.567", + "dc/svpg/ILOUNETUNENB.568", + "dc/svpg/ILOUNETUNENB.569", + "dc/svpg/ILOUNETUNENB.570", + "dc/svpg/ILOUNETUNENB.571", + "dc/svpg/ILOUNETUNENB.572", + "dc/svpg/ILOUNETUNENB.573", + "dc/svpg/ILOUNETUNENB.574", + "dc/svpg/ILOUNETUNENB.575", + "dc/svpg/ILOUNETUNENB.576", + "dc/svpg/ILOUNETUNENB.577", + "dc/svpg/ILOUNETUNENB.588", + "dc/svpg/ILOUNETUNENB.589", + "dc/svpg/ILOUNETUNENB.590", + "dc/svpg/ILOUNETUNENB.591", + "dc/svpg/ILOUNETUNENB.592", + "dc/svpg/ILOUNETUNENB.593", + "dc/svpg/ILOUNETUNENB.594", + "dc/svpg/ILOUNETUNENB.595", + "dc/svpg/ILOUNETUNENB.605", + "dc/svpg/ILOUNETUNENB.606", + "dc/svpg/ILOUNETUNENB.607", + "dc/svpg/ILOUNETUNENB.608", + "dc/svpg/ILOUNETUNENB.609", + "dc/svpg/ILOUNETUNENB.610", + "dc/svpg/ILOUNETUNENB.611", + "dc/svpg/ILOUNETUNENB.612", + "dc/svpg/ILOUNETUNENB.613", + "dc/svpg/ILOUNETUNENB.614", + "dc/svpg/ILOUNETUNENB.615", + "dc/svpg/ILOUNETUNENB.616", + "dc/svpg/ILOUNETUNENB.617", + "dc/svpg/ILOUNETUNENB.618", + "dc/svpg/ILOUNETUNENB.619", + "dc/svpg/ILOUNETUNENB.620", + "dc/svpg/ILOUNETUNENB.621", + "dc/svpg/ILOUNETUNENB.622", + "dc/svpg/ILOUNETUNENB.623", + "dc/svpg/ILOUNETUNENB.624", + "dc/svpg/ILOUNETUNENB.625", + "dc/svpg/ILOUNETUNENB.626", + "dc/svpg/ILOUNETUNENB.627", + "dc/svpg/ILOUNETUNENB.628", + "dc/svpg/ILOUNETUNENB.630", + "dc/svpg/ILOUNETUNENB.631", + "dc/svpg/ILOUNETUNENB.632", + "dc/svpg/ILOUNETUNENB.633", + "dc/svpg/ILOUNETUNENB.634", + "dc/svpg/ILOUNETUNENB.635", + "dc/svpg/ILOUNETUNENB.636", + "dc/svpg/ILOUNETUNENB.637", + "dc/svpg/ILOUNETUNENB.638", + "dc/svpg/ILOUNETUNENB.639", + "dc/svpg/ILOUNETUNENB.640", + "dc/svpg/ILOUNETUNENB.641", + "dc/svpg/ILOUNETUNENB.642", + "dc/svpg/ILOUNETUNENB.643", + "dc/svpg/ILOUNETUNENB.644", + "dc/svpg/ILOUNETUNENB.649", + "dc/svpg/ILOUNETUNENB.650", + "dc/svpg/ILOUNETUNENB.651", + "dc/svpg/ILOUNETUNENB.652", + "dc/svpg/ILOUNETUNENB.653", + "dc/svpg/ILOUNETUNENB.654", + "dc/svpg/ILOUNETUNENB.655", + "dc/svpg/ILOUNETUNENB.656", + "dc/svpg/ILOUNETUNENB.657", + "dc/svpg/ILOUNETUNENB.658", + "dc/svpg/ILOUNETUNENB.659", + "dc/svpg/ILOUNETUNENB.660", + "dc/svpg/ILOUNETUNENB.661", + "dc/svpg/ILOUNETUNENB.662", + "dc/svpg/ILOUNETUNENB.663", + "dc/svpg/ILOUNETUNENB.664", + "dc/svpg/ILOUNETUNENB.665", + "dc/svpg/ILOUNETUNENB.666", + "dc/svpg/ILOUNETUNENB.667", + "dc/svpg/ILOUNETUNENB.668", + "dc/svpg/ILOUNETUNENB.669", + "dc/svpg/ILOUNETUNENB.670", + "dc/svpg/ILOUNETUNENB.671", + "dc/svpg/ILOUNETUNENB.672", + "dc/svpg/ILOUNETUNENB.673", + "dc/svpg/ILOUNETUNENB.674", + "dc/svpg/ILOUNETUNENB.695", + "dc/svpg/ILOUNETUNENB.696", + "dc/svpg/ILOUNETUNENB.697", + "dc/svpg/ILOUNETUNENB.698", + "dc/svpg/ILOUNETUNENB.699", + "dc/svpg/ILOUNETUNENB.700", + "dc/svpg/ILOUNETUNENB.701", + "dc/svpg/ILOUNETUNENB.702", + "dc/svpg/ILOUNETUNENB.703", + "dc/svpg/ILOUNETUNENB.704", + "dc/svpg/ILOUNETUNENB.705", + "dc/svpg/ILOUNETUNENB.706", + "dc/svpg/ILOUNETUNENB.708", + "dc/svpg/ILOUNETUNENB.709", + "dc/svpg/ILOUNETUNENB.711", + "dc/svpg/ILOUNETUNENB.712", + "dc/svpg/ILOUNETUNENB.731", + "dc/svpg/ILOUNETUNENB.732", + "dc/svpg/ILOUNETUNENB.733", + "dc/svpg/ILOUNETUNENB.734", + "dc/svpg/ILOUNETUNENB.735", + "dc/svpg/ILOUNETUNENB.736", + "dc/svpg/ILOUNETUNENB.737", + "dc/svpg/ILOUNETUNENB.738", + "dc/svpg/ILOUNETUNENB.739", + "dc/svpg/ILOUNETUNENB.740", + "dc/svpg/ILOUNETUNENB.741", + "dc/svpg/ILOUNETUNENB.742", + "dc/svpg/ILOUNETUNENB.743", + "dc/svpg/ILOUNETUNENB.744", + "dc/svpg/ILOUNETUNENB.745", + "dc/svpg/ILOUNETUNENB.746", + "dc/svpg/ILOUNETUNENB.747", + "dc/svpg/ILOUNETUNENB.748", + "dc/svpg/ILOUNETUNENB.749", + "dc/svpg/ILOUNETUNENB.750", + "dc/svpg/ILOUNETUNENB.751", + "dc/svpg/ILOUNETUNENB.752", + "dc/svpg/ILOUNETUNENB.753", + "dc/svpg/ILOUNETUNENB.754", + "dc/svpg/ILOUNETUNENB.755", + "dc/svpg/ILOUNETUNENB.756", + "dc/svpg/ILOUNETUNENB.757", + "dc/svpg/ILOUNETUNENB.758", + "dc/svpg/ILOUNETUNENB.759", + "dc/svpg/ILOUNETUNENB.760", + "dc/svpg/ILOUNETUNENB.761", + "dc/svpg/ILOUNETUNENB.762", + "dc/svpg/ILOUNETUNENB.763", + "dc/svpg/ILOUNETUNENB.764", + "dc/svpg/ILOUNETUNENB.765", + "dc/svpg/ILOUNETUNENB.766", + "dc/svpg/ILOUNETUNENB.767", + "dc/svpg/ILOUNETUNENB.768", + "dc/svpg/ILOUNETUNENB.769", + "dc/svpg/ILOUNETUNENB.770", + "dc/svpg/ILOUNETUNENB.771", + "dc/svpg/ILOUNETUNENB.772", + "dc/svpg/ILOUNETUNENB.773", + "dc/svpg/ILOUNETUNENB.774", + "dc/svpg/ILOUNETUNENB.775", + "dc/svpg/ILOUNETUNENB.776", + "dc/svpg/ILOUNETUNENB.777", + "dc/svpg/ILOUNETUNENB.778", + "dc/svpg/ILOUNETUNENB.781", + "dc/svpg/ILOUNETUNENB.782", + "dc/svpg/ILOUNETUNENB.783", + "dc/svpg/ILOUNETUNENB.784", + "dc/svpg/ILOUNETUNENB.785", + "dc/svpg/ILOUNETUNENB.786", + "dc/svpg/ILOUNETUNENB.787", + "dc/svpg/ILOUNETUNENB.788", + "dc/svpg/ILOUNETUNENB.789", + "dc/svpg/ILOUNETUNENB.790", + "dc/svpg/ILOUNETUNENB.791", + "dc/svpg/ILOUNETUNENB.792", + "dc/svpg/ILOUNETUNENB.793", + "dc/svpg/ILOUNETUNENB.794", + "dc/svpg/ILOUNETUNENB.795", + "dc/svpg/ILOUNETUNENB.796", + "dc/svpg/ILOUNETUNENB.797", + "dc/svpg/ILOUNETUNENB.798", + "dc/svpg/ILOUNETUNENB.799", + "dc/svpg/ILOUNETUNENB.800", + "dc/svpg/ILOUNETUNENB.801", + "dc/svpg/ILOUNETUNENB.802", + "dc/svpg/ILOUNETUNENB.803", + "dc/svpg/ILOUNETUNENB.804", + "dc/svpg/ILOUNETUNENB.805", + "dc/svpg/ILOUNETUNENB.806", + "dc/svpg/ILOUNETUNENB.807", + "dc/svpg/ILOUNETUNENB.808", + "dc/svpg/ILOUNETUNENB.809", + "dc/svpg/ILOUNETUNENB.810", + "dc/svpg/ILOUNETUNENB.811", + "dc/svpg/ILOUNETUNENB.812", + "dc/svpg/ILOUNETUNENB.813", + "dc/svpg/ILOUNETUNENB.817", + "dc/svpg/ILOUNETUNENB.818", + "dc/svpg/ILOUNETUNENB.819", + "dc/svpg/ILOUNETUNENB.820", + "dc/svpg/ILOUNETUNENB.821", + "dc/svpg/ILOUNETUNENB.822", + "dc/svpg/ILOUNETUNENB.823", + "dc/svpg/ILOUNETUNENB.824", + "dc/svpg/ILOUNETUNENB.825", + "dc/svpg/ILOUNETUNENB.826", + "dc/svpg/ILOUNETUNENB.827", + "dc/svpg/ILOUNETUNENB.828", + "dc/svpg/ILOUNETUNENB.829", + "dc/svpg/ILOUNETUNENB.830", + "dc/svpg/ILOUNETUNENB.831", + "dc/svpg/ILOUNETUNENB.832", + "dc/svpg/ILOUNETUNENB.833", + "dc/svpg/ILOUNETUNENB.834", + "dc/svpg/ILOUNETUNENB.838", + "dc/svpg/ILOUNETUNENB.839", + "dc/svpg/ILOUNETUNENB.840", + "dc/svpg/ILOUNETUNENB.846", + "dc/svpg/ILOUNETUNENB.847", + "dc/svpg/ILOUNETUNENB.848", + "dc/svpg/ILOUNETUNENB.849", + "dc/svpg/ILOUNETUNENB.850", + "dc/svpg/ILOUNETUNENB.851", + "dc/svpg/ILOUNETUNENB.852", + "dc/svpg/ILOUNETUNENB.853", + "dc/svpg/ILOUNETUNENB.854", + "dc/svpg/ILOUNETUNENB.855", + "dc/svpg/ILOUNETUNENB.856", + "dc/svpg/ILOUNETUNENB.857", + "dc/svpg/ILOUNETUNENB.858", + "dc/svpg/ILOUNETUNENB.859", + "dc/svpg/ILOUNETUNENB.860", + "dc/svpg/ILOUNETUNENB.861", + "dc/svpg/ILOUNETUNENB.862", + "dc/svpg/ILOUNETUNENB.863", + "dc/svpg/ILOUNETUNENB.864", + "dc/svpg/ILOUNETUNENB.865", + "dc/svpg/ILOUNETUNENB.866", + "dc/svpg/ILOUNETUNENB.867", + "dc/svpg/ILOUNETUNENB.868", + "dc/svpg/ILOUNETUNENB.869", + "dc/svpg/ILOUNETUNENB.871", + "dc/svpg/ILOUNETUNENB.872", + "dc/svpg/ILOUNETUNENB.873", + "dc/svpg/ILOUNETUNENB.874", + "dc/svpg/ILOUNETUNENB.875", + "dc/svpg/ILOUNETUNENB.876", + "dc/svpg/ILOUNETUNENB.878", + "dc/svpg/ILOUNETUNENB.879", + "dc/svpg/ILOUNETUNENB.880", + "dc/svpg/ILOUNETUNENB.881", + "dc/svpg/ILOUNETUNENB.882", + "dc/svpg/ILOUNETUNENB.883" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Age" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = Under 15 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_iloduration", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_iloduration" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = Under 15 Years Old, Duration" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0T6" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_iloduration_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = Under 15 Years Old, Duration, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0T6" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = Under 15 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = Under 15 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_iloduration_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 24 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 34 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 To 54 Years Old, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 35 To 44 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 45 To 54 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 55 To 64 Years Old, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 15 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 25 Years Old And Over, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age = 65 Years Old And Over, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Duration = Less Than 1 Month" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0T6" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Duration = Less Than 6 Months" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0T6" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0T6_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Duration = Less Than 6 Months, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0T6" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Duration = Less Than 1 Month, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_X", + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single / Widowed / Divorced, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T24_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY15T64_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T34_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY35T44_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY45T54_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY55T64_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE65_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY0T14_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Age, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE15_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumY25T54_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_age-ILOAgeEnumYGE25_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Duration" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0", + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 1 Month" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0", + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 6 Months" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0T6", + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 6 Months, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 6 Months, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0T6_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 1 Month, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration = Less Than 1 Month, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloduration-ILODurationEnumM0_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloduration_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Duration, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloduration-ILODurationEnumM0T6_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Economic Activity" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Advanced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Advanced, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Advanced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Advanced, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Advanced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Intermediate, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Less Than Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Less Than Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Less Than Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Less Than Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Less Than Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Level Not Stated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Level Not Stated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Level Not Stated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Level Not Stated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level = Level Not Stated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--_X", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Advanced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Basic, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Basic, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Intermediate, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Less Than Basic, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Education Level = Level Not Stated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Economic Activity, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity-ILOEconomicActivityEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Education Level" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Advanced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Basic, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Intermediate, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Less Than Basic, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = Level Not Stated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Widowed, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Widowed, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Widowed, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X", + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status = Unreliable, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X", + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Observation Status, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X", + "dc/topic/ILOUNETUNENB_age_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--R", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--U", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level = X. No Schooling, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Union / Cohabiting, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Sex = Female, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Observation Status = Unreliable, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X", + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Female, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEADV_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEBAS_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATEINT_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumEDUAGGREGATELTB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumUNK_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Education Level, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel-ILOEducationLevelEnumX_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Marital Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Observation Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single / Widowed / Divorced, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married / Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married / Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married / Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married / Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Married, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Divorced or Legally Separated, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__MARITAL_STATUS--MTS_SGLE", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Observation Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE", + "dc/topic/ILOUNETUNENB_age_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Single, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Union / Cohabiting, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Widowed, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status = Not Elsewhere Classified, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSEP_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSMRD_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS2_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSX_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSUNION_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSWID_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1", + "ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Marital Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTSSGLE_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus-ILOMaritalStatusEnumMTS1_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Observation Status" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Break in Series" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Break in Series, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Break in Series, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Break in Series, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Female, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeconomicActivity_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Sex, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status = Unreliable, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Sex = Female, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Observation Status, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloobservationStatus-ILOObservationStatusEnumU_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Occupation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation = ILO_Occupation Enum_X" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX", + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation = ILO_Occupation Enum_X, Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation = ILO_Occupation Enum_X, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation = ILO_Occupation Enum_X, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--_X", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation, Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumF" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilooccupation_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Occupation, Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilooccupation-ILOOccupationEnumX_ilosex-ILOSexEnumM" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Sex" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Female" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeconomicActivity_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilooccupation_ilosex-ILOSexEnumF", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Female, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Female, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Female, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Female, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Male" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloduration_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeconomicActivity_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilooccupation_ilosex-ILOSexEnumM", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Male, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Male, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Male, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Other" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_age_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumO", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO_ilourbanisation" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Other, Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex = Other, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex, Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex, Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumM_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumO_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Sex, Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilosex-ILOSexEnumF_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilourbanisation" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) by Urbanisation" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumR" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Urbanisation = Rural" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumR", + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumR" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumU" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Urbanisation = Urban" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilomaritalStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumU", + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumU" + ] + }, + { + "dcid": [ + "dc/topic/ILOUNETUNENB_ilourbanisation-ILOUrbanisationEnumX" + ], + "name": [ + "Unemployment (Labour Force Statistics, LFS) With Urbanisation = Not Elsewhere Classified" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOUNETUNENB_iloeducationLevel_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_iloobservationStatus_ilourbanisation-ILOUrbanisationEnumX", + "dc/topic/ILOUNETUNENB_ilosex_ilourbanisation-ILOUrbanisationEnumX" + ] + }, + { + "dcid": [ + "dc/topic/UN" + ], + "name": [ + "12 UN Data Thematic Areas" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_THEME_1", + "dc/topic/UN_THEME_3", + "dc/topic/UN_THEME_4", + "dc/topic/UN_THEME_5", + "dc/topic/UN_THEME_6", + "dc/topic/UN_THEME_10" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_13" + ], + "name": [ + "Poverty" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEAR4MMNNB", + "dc/topic/ILOSDG0111RT", + "dc/topic/ILOTRU5EMPRT", + "dc/topic/ILOTRU5TRUNB", + "dc/topic/ILOUNE2UNENB", + "dc/topic/ILOUNE2EAPRT", + "dc/topic/ILOUNE3UNENB", + "dc/topic/ILOUNE3EAPRT" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_14" + ], + "name": [ + "Inequality and social protection" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEARXTLPRT", + "dc/topic/ILOEAR4MMNNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_25" + ], + "name": [ + "Child protection" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP3WAPRT", + "dc/topic/ILOSDG0861RT", + "dc/topic/ILOEIP5EETRT", + "dc/topic/ILOEES3EESNB", + "dc/topic/ILOEMP3EMPNB", + "dc/topic/ILOEMP3WAPRT", + "dc/topic/ILOEAP3EAPNB", + "dc/topic/ILOEAP3WAPRT", + "dc/topic/ILOEIP5EETNB", + "dc/topic/ILOTRU3TRUNB", + "dc/topic/ILOPOP3TEDNB", + "dc/topic/ILOUNE3UNENB", + "dc/topic/ILOUNE3EAPRT", + "dc/topic/ILOUNE3WAPRT", + "dc/topic/ILOPOP3WAPNB", + "dc/topic/ILOPOP3FORNB", + "dc/topic/ILOPOP3STGNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_27" + ], + "name": [ + "Technical and vocational education and training" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEIP5EETRT", + "dc/topic/ILOEIP5EETNB", + "dc/topic/ILOEIP3EIPNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_39" + ], + "name": [ + "Gender equality" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/LAP_2FTM_RT", + "ilo/SDG_T552_RT", + "ilo/SDG_0552_RT" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_41" + ], + "name": [ + "Inequality" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOEARXTLPRT" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_42" + ], + "name": [ + "Work and employment" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_A821_RT", + "ilo/SDG_B821_RT", + "ilo/ILR_CBCT_RT", + "ilo/LAP_2FTM_RT", + "ilo/LAI_INDE_RT", + "ilo/POP_2LDR_RT", + "ilo/LAP_2GDP_RT", + "ilo/LAI_VDIN_RT", + "ilo/SDG_1041_RT", + "ilo/SDG_0882_RT", + "ilo/SDG_0922_RT", + "ilo/GDP_2HRW_NB", + "ilo/GDP_205U_NB", + "ilo/GDP_211P_NB", + "ilo/SDG_T552_RT", + "ilo/SDG_0552_RT", + "dc/topic/ILOINJFATLNB", + "dc/topic/ILOINJNFTLNB", + "dc/topic/ILOLUUXLU2RT", + "dc/topic/ILOLUU5LU2RT", + "dc/topic/ILOLUU5LU3RT", + "dc/topic/ILOLUU2LU4NB", + "dc/topic/ILOLUU5LU4RT", + "dc/topic/ILOINJDAYSNB", + "dc/topic/ILOSTRDAYSNB", + "dc/topic/ILOEMPPIFLNB", + "dc/topic/ILOEMP5PIFNB", + "dc/topic/ILOEMPNORMNB", + "dc/topic/ILOEMPSTATNB", + "dc/topic/ILOEMP2WAPRT", + "dc/topic/ILOINJFATLRT", + "dc/topic/ILOSDGF881RT", + "dc/topic/ILOEMP2FTENB", + "dc/topic/ILOEMPNIFLNB", + "dc/topic/ILOEMP2NIFNB", + "dc/topic/ILOEMPNIFLRT", + "dc/topic/ILOEMP2NIFRT", + "dc/topic/ILOEMP5NIFRT", + "dc/topic/ILOEMP5NIFNB", + "dc/topic/ILOLUUXLUXNB", + "dc/topic/ILOLUUXLUXRT", + "dc/topic/ILOLUU2LUXRT", + "dc/topic/ILOLUU2LUXNB", + "dc/topic/ILOEAP2EAPNB", + "dc/topic/ILOEAP2WAPRT", + "dc/topic/ILOLAP2LIDRT", + "dc/topic/ILOEARXTLPRT", + "dc/topic/ILOLAC4HRLNB", + "dc/topic/ILOHOW2EMPNB", + "dc/topic/ILOEAR4MMNNB", + "dc/topic/ILOINJNFTLRT", + "dc/topic/ILOSDGN881RT", + "dc/topic/ILOLAIINSPNB", + "dc/topic/ILOEIP2WAPRT", + "dc/topic/ILOEIP3WAPRT", + "dc/topic/ILOEIP2EIPNB", + "dc/topic/ILOEIP5EIPNB", + "dc/topic/ILOEIP2JOBNB", + "dc/topic/ILOEIP2JOBRT", + "dc/topic/ILOEIP2PLFRT", + "dc/topic/ILOEIP5PLFNB", + "dc/topic/ILOGED2LFPRT", + "dc/topic/ILOGED2LFPNB", + "dc/topic/ILOSDG0831RT", + "dc/topic/ILOSDG0111RT", + "dc/topic/ILOSDG0861RT", + "dc/topic/ILOPSETPSENB", + "dc/topic/ILOSTRDAYSRT", + "dc/topic/ILOHOW2TDPRT", + "dc/topic/ILOEMP5PIFRT", + "dc/topic/ILOEMPPIFLRT", + "dc/topic/ILOEESXTMPRT", + "dc/topic/ILOEIP5EETRT", + "dc/topic/ILOSTRTSTRNB", + "dc/topic/ILOEMP2TRURT", + "dc/topic/ILOTRU5EMPRT", + "dc/topic/ILOTRU5TRUNB", + "dc/topic/ILOHOW2TOTNB", + "dc/topic/ILOUNE2UNENB", + "dc/topic/ILOUNETUNENB", + "dc/topic/ILOUNE2EAPRT", + "dc/topic/ILOUNE5EAPRT", + "dc/topic/ILOSTRWORKNB", + "dc/topic/ILOEES3EESNB", + "dc/topic/ILOEMP3EMPNB", + "dc/topic/ILOEMP3WAPRT", + "dc/topic/ILOEAP3EAPNB", + "dc/topic/ILOEAP3WAPRT", + "dc/topic/ILOEIP5EETNB", + "dc/topic/ILOEIP3EIPNB", + "dc/topic/ILOTRU3TRUNB", + "dc/topic/ILOPOP3TEDNB", + "dc/topic/ILOUNE3UNENB", + "dc/topic/ILOUNE3EAPRT", + "dc/topic/ILOUNE3WAPRT", + "dc/topic/ILOPOP3WAPNB", + "dc/topic/ILOPOP3FORNB", + "dc/topic/ILOPOP3STGNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_44" + ], + "name": [ + "Macroeconomic conditions" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_A821_RT", + "ilo/SDG_B821_RT", + "ilo/ILR_CBCT_RT", + "ilo/LAP_2GDP_RT", + "ilo/SDG_1041_RT", + "ilo/SDG_0882_RT", + "ilo/GDP_2HRW_NB", + "ilo/GDP_205U_NB", + "ilo/GDP_211P_NB", + "dc/topic/ILOCPINCYRRT", + "dc/topic/ILOLAP2LIDRT", + "dc/topic/ILOLAC4HRLNB", + "dc/topic/ILOEAR4MMNNB", + "dc/topic/ILOCPIXCPIRT", + "dc/topic/ILOCPINWGTRT", + "dc/topic/ILOSDG0111RT", + "dc/topic/ILOEESXTMPRT", + "dc/topic/ILOUNE2UNENB", + "dc/topic/ILOUNETUNENB", + "dc/topic/ILOUNE2EAPRT", + "dc/topic/ILOUNE5EAPRT" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_45" + ], + "name": [ + "Business, industry and entrepreneurship" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/GDP_2HRW_NB", + "ilo/GDP_205U_NB", + "ilo/GDP_211P_NB", + "dc/topic/ILOSTRDAYSRT", + "dc/topic/ILOSTRTSTRNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_47" + ], + "name": [ + "Trade" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/ILR_TUMT_RT" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_48" + ], + "name": [ + "Public finance and fiscal policies" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/ILOPSETPSENB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_65" + ], + "name": [ + "Population" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/POP_2LDR_RT", + "dc/topic/ILOPOP3WAPNB", + "dc/topic/ILOPOP3FORNB", + "dc/topic/ILOPOP3STGNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_SUB_THEME_68" + ], + "name": [ + "Workforce" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "ilo/SDG_A821_RT", + "ilo/SDG_B821_RT", + "ilo/ILR_CBCT_RT", + "ilo/LAP_2FTM_RT", + "ilo/LAI_INDE_RT", + "ilo/LAP_2GDP_RT", + "ilo/LAI_VDIN_RT", + "ilo/SDG_1041_RT", + "ilo/SDG_0882_RT", + "ilo/SDG_0922_RT", + "ilo/SDG_T552_RT", + "ilo/SDG_0552_RT", + "dc/topic/ILOINJFATLNB", + "dc/topic/ILOINJNFTLNB", + "dc/topic/ILOLUUXLU2RT", + "dc/topic/ILOLUU5LU2RT", + "dc/topic/ILOLUU5LU3RT", + "dc/topic/ILOLUU2LU4NB", + "dc/topic/ILOLUU5LU4RT", + "dc/topic/ILOINJDAYSNB", + "dc/topic/ILOSTRDAYSNB", + "dc/topic/ILOEMPPIFLNB", + "dc/topic/ILOEMP5PIFNB", + "dc/topic/ILOEMPNORMNB", + "dc/topic/ILOEMPSTATNB", + "dc/topic/ILOEMP2WAPRT", + "dc/topic/ILOINJFATLRT", + "dc/topic/ILOSDGF881RT", + "dc/topic/ILOEMP2FTENB", + "dc/topic/ILOEMPNIFLNB", + "dc/topic/ILOEMP2NIFNB", + "dc/topic/ILOEMPNIFLRT", + "dc/topic/ILOEMP2NIFRT", + "dc/topic/ILOEMP5NIFRT", + "dc/topic/ILOEMP5NIFNB", + "dc/topic/ILOLUUXLUXNB", + "dc/topic/ILOLUUXLUXRT", + "dc/topic/ILOLUU2LUXRT", + "dc/topic/ILOLUU2LUXNB", + "dc/topic/ILOEAP2EAPNB", + "dc/topic/ILOEAP2WAPRT", + "dc/topic/ILOLAP2LIDRT", + "dc/topic/ILOLAC4HRLNB", + "dc/topic/ILOHOW2EMPNB", + "dc/topic/ILOINJNFTLRT", + "dc/topic/ILOSDGN881RT", + "dc/topic/ILOLAIINSPNB", + "dc/topic/ILOEIP2WAPRT", + "dc/topic/ILOEIP3WAPRT", + "dc/topic/ILOEIP2EIPNB", + "dc/topic/ILOEIP5EIPNB", + "dc/topic/ILOEIP2JOBNB", + "dc/topic/ILOEIP2JOBRT", + "dc/topic/ILOEIP2PLFRT", + "dc/topic/ILOEIP5PLFNB", + "dc/topic/ILOGED2LFPRT", + "dc/topic/ILOGED2LFPNB", + "dc/topic/ILOSDG0831RT", + "dc/topic/ILOSDG0111RT", + "dc/topic/ILOSDG0861RT", + "dc/topic/ILOPSETPSENB", + "dc/topic/ILOSTRDAYSRT", + "dc/topic/ILOHOW2TDPRT", + "dc/topic/ILOEMP5PIFRT", + "dc/topic/ILOEMPPIFLRT", + "dc/topic/ILOEESXTMPRT", + "dc/topic/ILOEIP5EETRT", + "dc/topic/ILOSTRTSTRNB", + "dc/topic/ILOEMP2TRURT", + "dc/topic/ILOTRU5EMPRT", + "dc/topic/ILOTRU5TRUNB", + "dc/topic/ILOHOW2TOTNB", + "dc/topic/ILOUNE2UNENB", + "dc/topic/ILOUNETUNENB", + "dc/topic/ILOUNE2EAPRT", + "dc/topic/ILOUNE5EAPRT", + "dc/topic/ILOSTRWORKNB", + "dc/topic/ILOEMP3EMPNB", + "dc/topic/ILOEMP3WAPRT", + "dc/topic/ILOEAP3EAPNB", + "dc/topic/ILOEAP3WAPRT", + "dc/topic/ILOEIP5EETNB", + "dc/topic/ILOEIP3EIPNB", + "dc/topic/ILOTRU3TRUNB", + "dc/topic/ILOPOP3TEDNB", + "dc/topic/ILOUNE3UNENB", + "dc/topic/ILOUNE3EAPRT", + "dc/topic/ILOUNE3WAPRT", + "dc/topic/ILOPOP3FORNB", + "dc/topic/ILOPOP3STGNB" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_1" + ], + "name": [ + "1: Poverty and food security" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_14", + "dc/topic/UN_SUB_THEME_13" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_10" + ], + "name": [ + "10: Population and demography" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_65", + "dc/topic/UN_SUB_THEME_68" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_3" + ], + "name": [ + "3: Children and youth" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_25", + "dc/topic/UN_SUB_THEME_27" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_4" + ], + "name": [ + "4: Education and culture" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_27" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_5" + ], + "name": [ + "5: Equality and human rights" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_39", + "dc/topic/UN_SUB_THEME_41" + ] + }, + { + "dcid": [ + "dc/topic/UN_THEME_6" + ], + "name": [ + "6: Economic development" + ], + "typeOf": [ + "Topic" + ], + "relevantVariableList": [ + "dc/topic/UN_SUB_THEME_45", + "dc/topic/UN_SUB_THEME_44", + "dc/topic/UN_SUB_THEME_48", + "dc/topic/UN_SUB_THEME_47", + "dc/topic/UN_SUB_THEME_42" + ] + } + ] +} \ No newline at end of file diff --git a/server/config/nl_page/undata_topic_cache.json b/server/config/nl_page/undata_topic_cache.json index 6ee60f5a72..20e453ca16 100644 --- a/server/config/nl_page/undata_topic_cache.json +++ b/server/config/nl_page/undata_topic_cache.json @@ -7971,7 +7971,7 @@ "dc/svpg/WHOEMFLIMITPOWERDENSITY.001" ], "name": [ - "['\"Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2)" + "Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2)" ], "memberList": [ "who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800", @@ -7986,7 +7986,7 @@ "dc/svpg/WHOEMFLIMITPOWERDENSITY.002" ], "name": [ - "['\"Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2)" + "Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2)" ], "memberList": [ "who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800", diff --git a/server/integration_tests/explore_test.py b/server/integration_tests/explore_test.py index 21c57f7c11..8495e710d4 100644 --- a/server/integration_tests/explore_test.py +++ b/server/integration_tests/explore_test.py @@ -280,6 +280,12 @@ def test_detection_basic_undata(self): test='unittest', idx='undata_ft') + def test_detection_basic_undata_ilo(self): + self.run_detection('detection_api_undata_ilo_idx', + ['Employment in the world'], + test='unittest', + idx='undata_ilo_ft') + def test_detection_basic_bio(self): self.run_detection('detection_api_bio_idx', ['Commute in California'], test='unittest', diff --git a/server/integration_tests/test_data/detection_api_undata_ilo_idx/chart_config.json b/server/integration_tests/test_data/detection_api_undata_ilo_idx/chart_config.json new file mode 100644 index 0000000000..36dee1c185 --- /dev/null +++ b/server/integration_tests/test_data/detection_api_undata_ilo_idx/chart_config.json @@ -0,0 +1,40 @@ +{ + "childEntityType": "", + "classifications": [ + { + "type": 100 + } + ], + "client": "test_detect", + "comparisonEntities": [], + "comparisonVariables": [], + "context": {}, + "debug": {}, + "entities": ["Earth"], + "nonPlaceEntities": [], + "properties": [], + "sessionId": "007_999999999", + "test": "unittest", + "variables": [ + "dc/topic/ILOEMPPIFLNB", + "dc/topic/ILOEMPNORMNB", + "dc/topic/ILOEMPNIFLNB", + "dc/topic/ILOEMPSTATNB", + "dc/topic/ILOEMPPIFLRT", + "dc/topic/ILOEMP2FTENB", + "dc/topic/ILOPSETPSENB", + "dc/topic/ILOLUUXLUXNB", + "dc/topic/ILOEMPNIFLRT", + "dc/topic/ILOEMP3EMPNB", + "dc/topic/ILOPOP3TEDNB", + "dc/topic/ILOEMP2NIFNB", + "dc/topic/ILOEMP2WAPRT", + "dc/topic/ILOSDG0831RT", + "dc/topic/ILOEMP5NIFNB", + "dc/topic/ILOEMP5PIFRT", + "dc/topic/ILOEMP5PIFNB", + "dc/topic/ILOEMP2NIFRT", + "dc/topic/ILOHOW2TOTNB", + "dc/topic/ILOEIP2JOBNB" + ] +} diff --git a/server/lib/nl/explore/params.py b/server/lib/nl/explore/params.py index 526b63ffe9..9719b7836b 100644 --- a/server/lib/nl/explore/params.py +++ b/server/lib/nl/explore/params.py @@ -49,6 +49,7 @@ class DCNames(str, Enum): SDG_DC = 'sdg' SDG_MINI_DC = 'sdgmini' UNDATA_DC = 'undata' + UNDATA_ILO_DC = 'undata_ilo' BIO_DC = 'bio' CUSTOM_DC = 'custom' @@ -66,8 +67,8 @@ class Clients(str, Enum): SDG_DC_LIST = [DCNames.SDG_DC, DCNames.SDG_MINI_DC] - -SPECIAL_DC_LIST = SDG_DC_LIST + [DCNames.UNDATA_DC] +UNDATA_DC_LIST = [DCNames.UNDATA_DC, DCNames.UNDATA_ILO_DC] +SPECIAL_DC_LIST = SDG_DC_LIST + UNDATA_DC_LIST # Get the SV score threshold for the given mode. @@ -105,6 +106,8 @@ def dc_to_embedding_type(dc: str, embeddings_type: str) -> str: return 'sdg_ft' elif dc == DCNames.UNDATA_DC.value: return 'undata_ft' + elif dc == DCNames.UNDATA_ILO_DC.value: + return 'undata_ilo_ft' elif dc == DCNames.BIO_DC.value: return 'bio_ft' return embeddings_type diff --git a/server/lib/topic_cache.py b/server/lib/topic_cache.py index a74e04b4a0..a25669013e 100644 --- a/server/lib/topic_cache.py +++ b/server/lib/topic_cache.py @@ -62,6 +62,9 @@ def json(self) -> Dict: 'server/config/nl_page/undata_topic_cache.json', 'server/config/nl_page/undata_enum_topic_cache.json', ], + DCNames.UNDATA_ILO_DC.value: [ + 'server/config/nl_page/undata_ilo_topic_cache.json' + ], DCNames.BIO_DC.value: [ 'server/config/nl_page/topic_cache.json', 'server/config/nl_page/sdg_topic_cache.json' diff --git a/tools/nl/embeddings/README.md b/tools/nl/embeddings/README.md index 9b0dec18d8..fc3136dff2 100644 --- a/tools/nl/embeddings/README.md +++ b/tools/nl/embeddings/README.md @@ -65,6 +65,12 @@ variables. ./run.sh -c undata data/curated_input/undata data/alternatives/undata/*.csv ``` + To generate the `undata_ilo_ft` embeddings: + + ```bash + ./run.sh -c undata_ilo data/curated_input/undata_ilo + ``` + To generate the `bio_ft` embeddings: ```bash diff --git a/tools/nl/embeddings/data/alternatives/undata_ilo/alternatives.csv b/tools/nl/embeddings/data/alternatives/undata_ilo/alternatives.csv new file mode 100644 index 0000000000..57fd9c0739 --- /dev/null +++ b/tools/nl/embeddings/data/alternatives/undata_ilo/alternatives.csv @@ -0,0 +1 @@ +dcid,Alternatives diff --git a/tools/nl/embeddings/data/curated_input/undata_ilo/sheets_svs.csv b/tools/nl/embeddings/data/curated_input/undata_ilo/sheets_svs.csv new file mode 100644 index 0000000000..835dcb3fb6 --- /dev/null +++ b/tools/nl/embeddings/data/curated_input/undata_ilo/sheets_svs.csv @@ -0,0 +1,86 @@ +dcid,Name,Description,Override_Alternatives,Curated_Alternatives +dc/topic/ILOCPINCYRRT,"Consumer Price Index CPI, Percentage Change From Previous Year",,, +dc/topic/ILOCPINWGTRT,"National Consumer Price Index CPI, Country Weights",,, +dc/topic/ILOCPIXCPIRT,National Consumer Price Index CPI,,, +dc/topic/ILOEAP2EAPNB,Labour Force ILO Modelled Estimates,,, +dc/topic/ILOEAP2WAPRT,Labour Force Participation Rate ILO Modelled Estimates,,, +dc/topic/ILOEAP3EAPNB,Youth Labour Force,,, +dc/topic/ILOEAP3WAPRT,Youth Labour Force Participation Rate,,, +dc/topic/ILOEAR4MMNNB,Monthly Minimum Wage,,, +dc/topic/ILOEARXTLPRT,Low Pay Rate,,, +dc/topic/ILOEES3EESNB,Youth Employees,,, +dc/topic/ILOEESXTMPRT,Share of Temporary Employees,,, +dc/topic/ILOEIP2EIPNB,Persons Outside The Labour Force ILO Modelled Estimates,,, +dc/topic/ILOEIP2JOBNB,"Potential Labour Force And Willing Non-jobseekers ILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOEIP2JOBRT,"Potential Labour Force And Willing Non-jobseekers Rate ILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOEIP2PLFRT,Potential Labour Force Rate ILO Modelled Estimates,,, +dc/topic/ILOEIP2WAPRT,"Number of Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population Inactivity Rate, ILO Modelled Estimates",,, +dc/topic/ILOEIP3EIPNB,Youth Outside The Labour Force,,, +dc/topic/ILOEIP3WAPRT,"Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population Youth Inactivity Rate",,, +dc/topic/ILOEIP5EETNB,"Youth Not in Employment, Education or Training NEET According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEIP5EETRT,"Share of Youth Not in Employment, Education or Training NEET, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEIP5EIPNB,"Persons Outside The Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEIP5PLFNB,"Potential Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEMP2FTENB,Full-time Equivalent Employment,,, +dc/topic/ILOEMP2NIFNB,"Informal Employment ILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOEMP2NIFRT,"Informal Employment Rate ILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOEMP2TRURT,Time-related Underemployment Rate ILO Modelled Estimates,,, +dc/topic/ILOEMP2WAPRT,Employment-to-population Ratio ILO Modelled Estimates,,, +dc/topic/ILOEMP3EMPNB,Youth Employment,,, +dc/topic/ILOEMP3WAPRT,Youth Employment-to-population Ratio,,, +dc/topic/ILOEMP5NIFNB,"Informal Employment, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEMP5NIFRT,"Informal Employment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEMP5PIFNB,"Employment Outside The Formal Sector, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEMP5PIFRT,"Share of Employment Outside The Formal Secto, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOEMPNIFLNB,Informal Employment,,, +dc/topic/ILOEMPNIFLRT,Informal Employment Rate,,, +dc/topic/ILOEMPNORMNB,"Employment, Normative Approach",,, +dc/topic/ILOEMPPIFLNB,Employment Outside The Formal Sector,,, +dc/topic/ILOEMPPIFLRT,Share of Employment Outside The Formal Sector,,, +dc/topic/ILOEMPSTATNB,"Employment, Statistical Approach",,, +dc/topic/ILOGED2LFPNB,Prime-age Labour Force of Couple Households With Children Under 6 ILO Modelled Estimates,,, +dc/topic/ILOGED2LFPRT,Prime-age Labour Force Participation Rate of Couple Households With Children Under Age 6 ILO Modelled Estimates,,, +dc/topic/ILOHOW2EMPNB,"Mean Weekly Hours Actually Worked Per Employed PersonILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOHOW2TDPRT,Ratio of Total Weekly Hours Worked To Population Aged 15-64 ILO Modelled Estimates,,, +dc/topic/ILOHOW2TOTNB,Total Weekly Hours Worked of Employed Persons ILO Modelled Estimates,,, +dc/topic/ILOINJDAYSNB,Days Lost Due To Cases of Occupational Injury With Temporary Incapacity for Work,,, +dc/topic/ILOINJFATLNB,Cases of Fatal Occupational Injury,,, +dc/topic/ILOINJFATLRT,Fatal Occupational Injuries Per 100'000 Workers,,, +dc/topic/ILOINJNFTLNB,Cases of Non-fatal Occupational Injury,,, +dc/topic/ILOINJNFTLRT,Non-fatal Occupational Injuries Per 100'000 Workers,,, +dc/topic/ILOLAC4HRLNB,Mean Nominal Hourly Labour Cost Per Employee,,, +dc/topic/ILOLAIINSPNB,Number of Labour Inspectors,,, +dc/topic/ILOLAP2LIDRT,Labour Income Distribution ILO Modelled Estimates,,, +dc/topic/ILOLUU2LU4NB,Composite Measure of Labour Underutilization LU4 ILO Modelled Estimates,,, +dc/topic/ILOLUU2LUXNB,"Jobs GapILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOLUU2LUXRT,"Jobs Gap RateILO Modelled Estimates, as Of Nov. 2023",,, +dc/topic/ILOLUU5LU2RT,"Combined Rate of Time-related Underemployment And Unemployment LU2, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOLUU5LU3RT,"Combined Rate of Unemployment And Potential Labour Force LU3, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOLUU5LU4RT,"Composite Rate of Labour Underutilization LU4, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOLUUXLU2RT,Combined Rate of Time-related Underemployment And Unemployment LU2,,, +dc/topic/ILOLUUXLUXNB,Jobs Gap,,, +dc/topic/ILOLUUXLUXRT,Jobs Gap Rate,,, +dc/topic/ILOPOP3FORNB,Youth Working-age Population thousands,,, +dc/topic/ILOPOP3STGNB,Youth Working-age Population thousands,,, +dc/topic/ILOPOP3TEDNB,"Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment",,, +dc/topic/ILOPOP3WAPNB,Youth Working-age Population,,, +dc/topic/ILOPSETPSENB,Public Sector Employment,,, +dc/topic/ILOSDG0111RT,Proportion of Population Below The International Poverty Line SDG Indicator 1.1.1,,, +dc/topic/ILOSDG0831RT,Proportion of Informal Employment in Total Employment SDG Indicator 8.3.1,,, +dc/topic/ILOSDG0861RT,"Proportion of Youth aged 15-24 Years Not in Education, Employment or Training SDG Indicator 8.6.1",,, +dc/topic/ILOSDGF881RT,Fatal Occupational Injuries Per 100'000 Workers SDG Indicator 8.8.1,,, +dc/topic/ILOSDGN881RT,Non-fatal Occupational Injuries Per 100'000 Workers SDG Indicator 8.8.1,,, +dc/topic/ILOSTRDAYSNB,Days Not Worked Due To Strikes And Lockouts,,, +dc/topic/ILOSTRDAYSRT,Rates of Days Not Worked Due To Strikes And Lockouts,,, +dc/topic/ILOSTRTSTRNB,Strikes And Lockouts,,, +dc/topic/ILOSTRWORKNB,Workers Involved in Strikes And Lockouts,,, +dc/topic/ILOTRU3TRUNB,Youth Time-related Underemployment,,, +dc/topic/ILOTRU5EMPRT,"Time-related Underemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOTRU5TRUNB,"Time-related Underemployment, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOUNE2EAPRT,Unemployment Rate ILO Modelled Estimates,,, +dc/topic/ILOUNE2UNENB,Unemployment ILO Modelled Estimates,,, +dc/topic/ILOUNE3EAPRT,Youth Unemployment Rate,,, +dc/topic/ILOUNE3UNENB,Youth Unemployment,,, +dc/topic/ILOUNE3WAPRT,Youth Unemployment-to-population Ratio,,, +dc/topic/ILOUNE5EAPRT,"Unemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS",,, +dc/topic/ILOUNETUNENB,"Unemployment Labour Force Statistics, LFS",,, diff --git a/tools/nl/embeddings/data/preindex/undata_ilo/duplicate_names.csv b/tools/nl/embeddings/data/preindex/undata_ilo/duplicate_names.csv new file mode 100644 index 0000000000..f754634707 --- /dev/null +++ b/tools/nl/embeddings/data/preindex/undata_ilo/duplicate_names.csv @@ -0,0 +1,2 @@ +PreferredSV,DroppedSV,DuplicateName +dc/topic/ILOPOP3FORNB,dc/topic/ILOPOP3STGNB,Youth Working-age Population thousands diff --git a/tools/nl/embeddings/data/preindex/undata_ilo/sv_descriptions.csv b/tools/nl/embeddings/data/preindex/undata_ilo/sv_descriptions.csv new file mode 100644 index 0000000000..91e76c9872 --- /dev/null +++ b/tools/nl/embeddings/data/preindex/undata_ilo/sv_descriptions.csv @@ -0,0 +1,85 @@ +dcid,sentence +dc/topic/ILOCPINCYRRT,"Consumer Price Index CPI, Percentage Change From Previous Year" +dc/topic/ILOCPINWGTRT,"National Consumer Price Index CPI, Country Weights" +dc/topic/ILOCPIXCPIRT,National Consumer Price Index CPI +dc/topic/ILOEAP2EAPNB,Labour Force ILO Modelled Estimates +dc/topic/ILOEAP2WAPRT,Labour Force Participation Rate ILO Modelled Estimates +dc/topic/ILOEAP3EAPNB,Youth Labour Force +dc/topic/ILOEAP3WAPRT,Youth Labour Force Participation Rate +dc/topic/ILOEAR4MMNNB,Monthly Minimum Wage +dc/topic/ILOEARXTLPRT,Low Pay Rate +dc/topic/ILOEES3EESNB,Youth Employees +dc/topic/ILOEESXTMPRT,Share of Temporary Employees +dc/topic/ILOEIP2EIPNB,Persons Outside The Labour Force ILO Modelled Estimates +dc/topic/ILOEIP2JOBNB,"Potential Labour Force And Willing Non-jobseekers ILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOEIP2JOBRT,"Potential Labour Force And Willing Non-jobseekers Rate ILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOEIP2PLFRT,Potential Labour Force Rate ILO Modelled Estimates +dc/topic/ILOEIP2WAPRT,"Number of Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population Inactivity Rate, ILO Modelled Estimates" +dc/topic/ILOEIP3EIPNB,Youth Outside The Labour Force +dc/topic/ILOEIP3WAPRT,"Number of Young Persons of Working Age Outside The Labour Force, as A Percentage of The Working-age Population Youth Inactivity Rate" +dc/topic/ILOEIP5EETNB,"Youth Not in Employment, Education or Training NEET According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEIP5EETRT,"Share of Youth Not in Employment, Education or Training NEET, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEIP5EIPNB,"Persons Outside The Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEIP5PLFNB,"Potential Labour Force, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEMP2FTENB,Full-time Equivalent Employment +dc/topic/ILOEMP2NIFNB,"Informal Employment ILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOEMP2NIFRT,"Informal Employment Rate ILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOEMP2TRURT,Time-related Underemployment Rate ILO Modelled Estimates +dc/topic/ILOEMP2WAPRT,Employment-to-population Ratio ILO Modelled Estimates +dc/topic/ILOEMP3EMPNB,Youth Employment +dc/topic/ILOEMP3WAPRT,Youth Employment-to-population Ratio +dc/topic/ILOEMP5NIFNB,"Informal Employment, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEMP5NIFRT,"Informal Employment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEMP5PIFNB,"Employment Outside The Formal Sector, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEMP5PIFRT,"Share of Employment Outside The Formal Secto, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOEMPNIFLNB,Informal Employment +dc/topic/ILOEMPNIFLRT,Informal Employment Rate +dc/topic/ILOEMPNORMNB,"Employment, Normative Approach" +dc/topic/ILOEMPPIFLNB,Employment Outside The Formal Sector +dc/topic/ILOEMPPIFLRT,Share of Employment Outside The Formal Sector +dc/topic/ILOEMPSTATNB,"Employment, Statistical Approach" +dc/topic/ILOGED2LFPNB,Prime-age Labour Force of Couple Households With Children Under 6 ILO Modelled Estimates +dc/topic/ILOGED2LFPRT,Prime-age Labour Force Participation Rate of Couple Households With Children Under Age 6 ILO Modelled Estimates +dc/topic/ILOHOW2EMPNB,"Mean Weekly Hours Actually Worked Per Employed PersonILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOHOW2TDPRT,Ratio of Total Weekly Hours Worked To Population Aged 15-64 ILO Modelled Estimates +dc/topic/ILOHOW2TOTNB,Total Weekly Hours Worked of Employed Persons ILO Modelled Estimates +dc/topic/ILOINJDAYSNB,Days Lost Due To Cases of Occupational Injury With Temporary Incapacity for Work +dc/topic/ILOINJFATLNB,Cases of Fatal Occupational Injury +dc/topic/ILOINJFATLRT,Fatal Occupational Injuries Per 100'000 Workers +dc/topic/ILOINJNFTLNB,Cases of Non-fatal Occupational Injury +dc/topic/ILOINJNFTLRT,Non-fatal Occupational Injuries Per 100'000 Workers +dc/topic/ILOLAC4HRLNB,Mean Nominal Hourly Labour Cost Per Employee +dc/topic/ILOLAIINSPNB,Number of Labour Inspectors +dc/topic/ILOLAP2LIDRT,Labour Income Distribution ILO Modelled Estimates +dc/topic/ILOLUU2LU4NB,Composite Measure of Labour Underutilization LU4 ILO Modelled Estimates +dc/topic/ILOLUU2LUXNB,"Jobs GapILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOLUU2LUXRT,"Jobs Gap RateILO Modelled Estimates, as Of Nov. 2023" +dc/topic/ILOLUU5LU2RT,"Combined Rate of Time-related Underemployment And Unemployment LU2, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOLUU5LU3RT,"Combined Rate of Unemployment And Potential Labour Force LU3, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOLUU5LU4RT,"Composite Rate of Labour Underutilization LU4, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOLUUXLU2RT,Combined Rate of Time-related Underemployment And Unemployment LU2 +dc/topic/ILOLUUXLUXNB,Jobs Gap +dc/topic/ILOLUUXLUXRT,Jobs Gap Rate +dc/topic/ILOPOP3FORNB,Youth Working-age Population thousands +dc/topic/ILOPOP3TEDNB,"Youth Transited To Stable Employment, Satisfactory Temporary Employment, or Satisfactory Self-employment" +dc/topic/ILOPOP3WAPNB,Youth Working-age Population +dc/topic/ILOPSETPSENB,Public Sector Employment +dc/topic/ILOSDG0111RT,Proportion of Population Below The International Poverty Line SDG Indicator 1.1.1 +dc/topic/ILOSDG0831RT,Proportion of Informal Employment in Total Employment SDG Indicator 8.3.1 +dc/topic/ILOSDG0861RT,"Proportion of Youth aged 15-24 Years Not in Education, Employment or Training SDG Indicator 8.6.1" +dc/topic/ILOSDGF881RT,Fatal Occupational Injuries Per 100'000 Workers SDG Indicator 8.8.1 +dc/topic/ILOSDGN881RT,Non-fatal Occupational Injuries Per 100'000 Workers SDG Indicator 8.8.1 +dc/topic/ILOSTRDAYSNB,Days Not Worked Due To Strikes And Lockouts +dc/topic/ILOSTRDAYSRT,Rates of Days Not Worked Due To Strikes And Lockouts +dc/topic/ILOSTRTSTRNB,Strikes And Lockouts +dc/topic/ILOSTRWORKNB,Workers Involved in Strikes And Lockouts +dc/topic/ILOTRU3TRUNB,Youth Time-related Underemployment +dc/topic/ILOTRU5EMPRT,"Time-related Underemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOTRU5TRUNB,"Time-related Underemployment, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOUNE2EAPRT,Unemployment Rate ILO Modelled Estimates +dc/topic/ILOUNE2UNENB,Unemployment ILO Modelled Estimates +dc/topic/ILOUNE3EAPRT,Youth Unemployment Rate +dc/topic/ILOUNE3UNENB,Youth Unemployment +dc/topic/ILOUNE3WAPRT,Youth Unemployment-to-population Ratio +dc/topic/ILOUNE5EAPRT,"Unemployment Rate, According To Standards Adopted At The 19th International Conference of Labour Statisticians ICLS" +dc/topic/ILOUNETUNENB,"Unemployment Labour Force Statistics, LFS" diff --git a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml index b22b172ce4..4307c35ae2 100644 --- a/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml +++ b/tools/nl/embeddings/testdata/custom_dc/input/embeddings.yaml @@ -13,6 +13,10 @@ indexes: store: MEMORY embeddings: gs://datcom-nl-models/embeddings_undata_2024_03_20_11_01_12.ft_final_v20230717230459.all-MiniLM-L6-v2.csv model: ft_final_v20230717230459 + undata_ilo_ft: + store: MEMORY + embeddings: gs://datcom-nl-models/embeddings_undata_ilo_2024_05_15_11_18_05.ft_final_v20230717230459.all-MiniLM-L6-v2.csv + model: ft-final-v20230717230459-all-MiniLM-L6-v2 bio_ft: store: MEMORY embeddings: gs://datcom-nl-models/embeddings_bio_2024_03_19_16_39_03.ft_final_v20230717230459.all-MiniLM-L6-v2.csv @@ -27,4 +31,4 @@ models: type: LOCAL usage: EMBEDDINGS gcs_folder: gs://datcom-nl-models/ft_final_v20230717230459.all-MiniLM-L6-v2 - score_threshold: 0.5 \ No newline at end of file + score_threshold: 0.5 diff --git a/tools/sdg/topics/README.md b/tools/sdg/topics/README.md index 88fff4d44c..89769911f1 100644 --- a/tools/sdg/topics/README.md +++ b/tools/sdg/topics/README.md @@ -5,12 +5,11 @@ There are a couple of special DC topics the scripts here generate. 1. `sdg` - * [`sdg_topic_cache.json`](../../../server/config/nl_page/sdg_topic_cache.json) - * `custom_topics_sdg.mcf`. + - [`sdg_topic_cache.json`](../../../server/config/nl_page/sdg_topic_cache.json) + - `custom_topics_sdg.mcf`. 2. `undata` - * [`undata_topic_cache.json`](../../../server/config/nl_page/undata_topic_cache.json) - * `custom_topics_undata.mcf`. - + - [`undata_topic_cache.json`](../../../server/config/nl_page/undata_topic_cache.json) + - `custom_topics_undata.mcf`. The MCF is saved under a `tmp` folder and should be submitted to g3 [here](https://source.corp.google.com/piper///depot/google3/third_party/datacommons/schema/stat_vars/). @@ -19,12 +18,11 @@ To run it: ```bash export DC_API_KEY= -./run.sh [--dc=sdg | --dc=undata] +./run.sh [--dc=sdg | --dc=undata | --dc=undata_ilo] ``` TODO: Since this is more general than sdg, move this to `tools/un/topics`. - ## Enum Topics These are identified as all SVs having a common constraint property value. @@ -41,4 +39,3 @@ To run it: export DC_API_KEY= python3 enum_topics.py ``` - diff --git a/tools/sdg/topics/core_topics.py b/tools/sdg/topics/core_topics.py index d4a3dcc1e4..5a966c1644 100644 --- a/tools/sdg/topics/core_topics.py +++ b/tools/sdg/topics/core_topics.py @@ -48,20 +48,37 @@ _UNDATA_NL_DESCRIPTIONS_FILE = os.path.join(_TMP_DIR, 'undata_nl_descriptions.csv') -API_ROOT = "https://autopush.api.datacommons.org" +_UNDATA_ILO_ROOT = "dc/g/Custom_UN" +_UNDATA_ILO_TOPIC_JSON = '../../../server/config/nl_page/undata_ilo_topic_cache.json' +_UNDATA_ILO_NON_COUNTRY_VARS = '../../../server/config/nl_page/undata_ilo_non_country_vars.json' +_UNDATA_ILO_MCF_PATH = os.path.join(_TMP_DIR, 'custom_topics_undata_ilo.mcf') +_UNDATA_ILO_VARIABLES_FILE = 'undata_ilo_variable_grouping.csv' +_UNDATA_ILO_SERIES_TOPICS_FILE = 'un_ilo_series_topics.csv' +_UNDATA_ILO_NL_DESCRIPTIONS_FILE = os.path.join( + _TMP_DIR, 'undata_ilo_nl_descriptions.csv') + +# TODO(dwnoble): Add command line flag to handle generating custom DC groups +REMOVE_SVG_PREFIX = "Custom_" + +# TODO(dwnoble): Extract API_ROOT (and potentially some of the variables above) +# to command line args or a config file +API_ROOT = "https://staging.unsdg.datacommons.org" API_PATH_SVG_INFO = API_ROOT + '/v1/bulk/info/variable-group' API_PATH_PROP_OUT = API_ROOT + '/v1/bulk/property/values/out' -def _svg2t(svg): +def _svg2t(svg, remove_svg_prefix=""): # NOTE: Use small "sdg" to avoid overlap with prior topics. - return svg.replace('dc/g/SDG', 'dc/topic/sdg').replace('dc/g/', 'dc/topic/') + return svg.replace('dc/g/SDG', + 'dc/topic/sdg').replace('dc/g/', 'dc/topic/').replace( + f"/{remove_svg_prefix}", "/") -def download_svg_recursive(svgs: List[str], nodes: Dict[str, Dict], - keep_vars: Set[str]): +def download_svg_recursive(svgs: List[str], + nodes: Dict[str, Dict], + keep_vars: Set[str], + remove_svg_prefix=""): resp = common.call_api(API_PATH_SVG_INFO, {'nodes': svgs}) - recurse_nodes = set() for data in resp.get('data', []): svg_id = data.get('node', '') @@ -72,7 +89,7 @@ def download_svg_recursive(svgs: List[str], nodes: Dict[str, Dict], if not info: continue - tid = _svg2t(svg_id) + tid = _svg2t(svg_id, remove_svg_prefix) if tid in nodes: continue @@ -87,7 +104,7 @@ def download_svg_recursive(svgs: List[str], nodes: Dict[str, Dict], for csvg in info.get('childStatVarGroups', []): if not csvg.get('id'): continue - members.append(_svg2t(csvg['id'])) + members.append(_svg2t(csvg['id'], remove_svg_prefix)) recurse_nodes.add(csvg['id']) if not members: @@ -102,12 +119,15 @@ def download_svg_recursive(svgs: List[str], nodes: Dict[str, Dict], } if recurse_nodes: - download_svg_recursive(sorted(list(recurse_nodes)), nodes, keep_vars) + download_svg_recursive(sorted(list(recurse_nodes)), nodes, keep_vars, + remove_svg_prefix) -def download_svgs(init_nodes: List[str], keep_vars: Set[str]): +def download_svgs(init_nodes: List[str], + keep_vars: Set[str], + remove_svg_prefix=""): nodes = {} - download_svg_recursive(init_nodes, nodes, keep_vars) + download_svg_recursive(init_nodes, nodes, keep_vars, remove_svg_prefix) return nodes @@ -202,7 +222,6 @@ def load_variables(vars_file: str, vars: Variables, var_prefix: str, # This function helps drop those references first and then check if as a result # we dropped more Topic nodes, and then drop those refs, etc def drop_dangling_topic_refs(nodes: List[Dict]): - new_nodes = [] rounds = 0 while True: @@ -237,9 +256,11 @@ def drop_dangling_topic_refs(nodes: List[Dict]): return new_nodes -def generate(init_nodes: List[str], filter_vars: Variables): - nodes = download_svgs(init_nodes, filter_vars.keep_vars) - +def generate(init_nodes: List[str], + filter_vars: Variables, + remove_svg_prefix="", + skip_assert=False): + nodes = download_svgs(init_nodes, filter_vars.keep_vars, remove_svg_prefix) final_nodes = [] for topic, node in nodes.items(): if not node.get('relevantVariableList'): @@ -274,7 +295,11 @@ def generate(init_nodes: List[str], filter_vars: Variables): final_nodes.append(node) # Assert we have consumed everything! - assert not filter_vars.series2group2vars, filter_vars.series2group2vars + if not skip_assert: + assert not filter_vars.series2group2vars + elif filter_vars.series2group2vars: + print("Warning: filter_vars.series2group2vars is not empty:", + filter_vars.series2group2vars) final_nodes = drop_dangling_topic_refs(final_nodes) @@ -369,6 +394,7 @@ def write_nl_descriptions(nl_desc_file: str, nodes: list[dict], 'Override_Alternatives': '', 'Curated_Alternatives': alt_name, }) + print(f"Wrote NL descriptions to: {nl_desc_file}") def main(_): @@ -390,7 +416,6 @@ def main(_): common.write_topic_mcf(_SDG_MCF_PATH, nodes) common.write_topic_json(_SDG_TOPIC_JSON, nodes) elif FLAGS.dc == 'undata': - # TODO: When we have one more past WHO, needs some work. load_variables(vars_file=_UNDATA_VARIABLES_FILE, vars=vars, var_prefix='', @@ -402,6 +427,24 @@ def main(_): common.write_topic_json(_UNDATA_TOPIC_JSON, nodes) write_nl_descriptions(_UNDATA_NL_DESCRIPTIONS_FILE, nodes, _UNDATA_SERIES_TOPICS_FILE, vars) + elif FLAGS.dc == 'undata_ilo': + load_variables(vars_file=_UNDATA_ILO_VARIABLES_FILE, + vars=vars, + var_prefix='', + topic_prefix='dc/topic/', + svpg_prefix='dc/svpg/ILO') + write_non_country_vars(_UNDATA_ILO_NON_COUNTRY_VARS, vars) + # TODO(dwnoble): Remove skip_assert here in a future iteration of the + # variable groupings (there are currenlty some ILO population types with no + # associated variables). + nodes = generate([_UNDATA_ILO_ROOT], + vars, + REMOVE_SVG_PREFIX, + skip_assert=True) + common.write_topic_mcf(_UNDATA_ILO_MCF_PATH, nodes) + common.write_topic_json(_UNDATA_ILO_TOPIC_JSON, nodes) + write_nl_descriptions(_UNDATA_ILO_NL_DESCRIPTIONS_FILE, nodes, + _UNDATA_ILO_SERIES_TOPICS_FILE, vars) print(f'Found {len(vars.keep_vars)} vars') diff --git a/tools/sdg/topics/un_ilo_series_topics.csv b/tools/sdg/topics/un_ilo_series_topics.csv new file mode 100644 index 0000000000..651a9c17cd --- /dev/null +++ b/tools/sdg/topics/un_ilo_series_topics.csv @@ -0,0 +1 @@ +SeriesTopic,Name,Vars,NVars diff --git a/tools/sdg/topics/undata_ilo_variable_grouping.csv b/tools/sdg/topics/undata_ilo_variable_grouping.csv new file mode 100644 index 0000000000..d375ff4b12 --- /dev/null +++ b/tools/sdg/topics/undata_ilo_variable_grouping.csv @@ -0,0 +1,26727 @@ +GROUPING ID,GROUPING DESCRIPTION,Variable Legend,SELECT,DISPLAY,POPULATION_TYPE,VARIABLE,SERIES,SERIES_Name +CPI_NCYR_RT.001,"Consumer Price Index (CPI), percentage change from previous year",Total,,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year" +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Food and non-alcoholic beverages (COICOP 1),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP01,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)","Alcoholic beverages, tobacco and narcotics (COICOP 2)",,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP02,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Clothing and footwear (COICOP 3),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP03,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)","Housing, water, electricity, gas and other fuels (COICOP 4)",,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP04,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)","Furnishings, household equipment and routine household maintenance (COICOP 5)",,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP05,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Health (COICOP 6),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP06,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Transport (COICOP 7),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP07,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Communication (COICOP 8),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP08,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Recreation and culture (COICOP 9),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP09,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Education (COICOP 10),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP10,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Restaurants and hotels (COICOP 11),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP11,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NCYR_RT.002,"Consumer Price Index (CPI), percentage change from previous year by Classification of Individual Consumption According to Purpose (COICOP)",Miscellaneous goods and services (COICOP 12),,,ILO_CPI_NCYR_RT,ilo/CPI_NCYR_RT.COICOP--COI_COICOP_CP12,CPI_NCYR_RT,"Consumer Price Index (CPI), percentage change from previous year " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Food and non-alcoholic beverages (COICOP 1),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP01,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)","Alcoholic beverages, tobacco and narcotics (COICOP 2)",,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP02,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Clothing and footwear (COICOP 3),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP03,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)","Housing, water, electricity, gas and other fuels (COICOP 4)",,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP04,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)","Furnishings, household equipment and routine household maintenance (COICOP 5)",,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP05,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Health (COICOP 6),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP06,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Transport (COICOP 7),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP07,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Communication (COICOP 8),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP08,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Recreation and culture (COICOP 9),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP09,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Education (COICOP 10),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP10,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Restaurants and hotels (COICOP 11),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP11,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_NWGT_RT.001,"National consumer price index (CPI), country weights by Classification of Individual Consumption According to Purpose (COICOP)",Miscellaneous goods and services (COICOP 12),,,ILO_CPI_NWGT_RT,ilo/CPI_NWGT_RT.COICOP--COI_COICOP_CP12,CPI_NWGT_RT,"National consumer price index (CPI), country weights " +CPI_XCPI_RT.001,National consumer price index (CPI),Total,,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Food and non-alcoholic beverages (COICOP 1),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP01,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),"Alcoholic beverages, tobacco and narcotics (COICOP 2)",,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP02,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Clothing and footwear (COICOP 3),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP03,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),"Housing, water, electricity, gas and other fuels (COICOP 4)",,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP04,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),"Furnishings, household equipment and routine household maintenance (COICOP 5)",,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP05,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Health (COICOP 6),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP06,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Transport (COICOP 7),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP07,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Communication (COICOP 8),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP08,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Recreation and culture (COICOP 9),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP09,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Education (COICOP 10),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP10,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Restaurants and hotels (COICOP 11),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP11,CPI_XCPI_RT,National consumer price index (CPI) +CPI_XCPI_RT.002,National consumer price index (CPI) by Classification of Individual Consumption According to Purpose (COICOP),Miscellaneous goods and services (COICOP 12),,,ILO_CPI_XCPI_RT,ilo/CPI_XCPI_RT.COICOP--COI_COICOP_CP12,CPI_XCPI_RT,National consumer price index (CPI) +EAP_2EAP_NB.001,Labour force (ILO modelled estimates),Total,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y15T24,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,15 to 64 years old,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y15T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE15,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,25 to 54 years old,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y25T54,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE25,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,55 to 64 years old,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y55T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.002,Labour force (ILO modelled estimates) by Age group,65 years old and over,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE65,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.003,Labour force (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.003,Labour force (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.004,Labour force (ILO modelled estimates) (15 to 64 years old) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.004,Labour force (ILO modelled estimates) (15 to 64 years old) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.005,Labour force (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.005,Labour force (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.006,Labour force (ILO modelled estimates) (25 to 54 years old) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y25T54,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.006,Labour force (ILO modelled estimates) (25 to 54 years old) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y25T54,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.007,Labour force (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.007,Labour force (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.008,Labour force (ILO modelled estimates) (55 to 64 years old) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y55T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.008,Labour force (ILO modelled estimates) (55 to 64 years old) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y55T64,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.009,Labour force (ILO modelled estimates) (65 years old and over) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE65,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.009,Labour force (ILO modelled estimates) (65 years old and over) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE65,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.010,Labour force (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y15T24__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.010,Labour force (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y15T24__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.011,Labour force (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE15__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.011,Labour force (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE15__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.012,Labour force (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE25__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.012,Labour force (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.AGE--Y_GE25__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.013,"Labour force (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.013,"Labour force (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.014,"Labour force (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y15T24__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.014,"Labour force (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y15T24__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.015,"Labour force (ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.015,"Labour force (ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.016,"Labour force (ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE15__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.016,"Labour force (ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE15__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.017,"Labour force (ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.017,"Labour force (ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25__URBANISATION--R,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.018,"Labour force (ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F__AGE--Y_GE25__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.018,"Labour force (ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M__AGE--Y_GE25__URBANISATION--U,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.019,Labour force (ILO modelled estimates) by Sex,Female,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--F,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2EAP_NB.019,Labour force (ILO modelled estimates) by Sex,Male,,,ILO_EAP_2EAP_NB,ilo/EAP_2EAP_NB.SEX--M,EAP_2EAP_NB,Labour force (ILO modelled estimates) +EAP_2WAP_RT.001,Labour force participation rate (ILO modelled estimates),Total,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y15T24,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,15 to 64 years old,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y15T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE15,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,25 to 54 years old,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y25T54,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE25,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,55 to 64 years old,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y55T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.002,Labour force participation rate (ILO modelled estimates) by Age group,65 years old and over,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE65,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.003,Labour force participation rate (ILO modelled estimates),15 to 24 years old,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.003,Labour force participation rate (ILO modelled estimates),15 years old and over,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.003,Labour force participation rate (ILO modelled estimates),25 years old and over,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.004,Labour force participation rate (ILO modelled estimates) (15 to 24 years old),Female,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.004,Labour force participation rate (ILO modelled estimates) (15 to 24 years old),Male,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.005,Labour force participation rate (ILO modelled estimates) (15 years old and over),Female,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.005,Labour force participation rate (ILO modelled estimates) (15 years old and over),Male,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.006,Labour force participation rate (ILO modelled estimates) (25 years old and over),Female,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.006,Labour force participation rate (ILO modelled estimates) (25 years old and over),Male,DROP,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.007,Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.007,Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.008,Labour force participation rate (ILO modelled estimates) (15 to 64 years old) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.008,Labour force participation rate (ILO modelled estimates) (15 to 64 years old) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.009,Labour force participation rate (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.009,Labour force participation rate (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.010,Labour force participation rate (ILO modelled estimates) (25 to 54 years old) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y25T54,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.010,Labour force participation rate (ILO modelled estimates) (25 to 54 years old) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y25T54,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.011,Labour force participation rate (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.011,Labour force participation rate (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.012,Labour force participation rate (ILO modelled estimates) (55 to 64 years old) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y55T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.012,Labour force participation rate (ILO modelled estimates) (55 to 64 years old) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y55T64,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.013,Labour force participation rate (ILO modelled estimates) (65 years old and over) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE65,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.013,Labour force participation rate (ILO modelled estimates) (65 years old and over) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE65,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.014,Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y15T24__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.014,Labour force participation rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y15T24__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.015,Labour force participation rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE15__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.015,Labour force participation rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE15__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.016,Labour force participation rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE25__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.016,Labour force participation rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.AGE--Y_GE25__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.017,"Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.017,"Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.018,"Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.018,"Labour force participation rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.019,"Labour force participation rate (ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.019,"Labour force participation rate (ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.020,"Labour force participation rate (ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.020,"Labour force participation rate (ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.021,"Labour force participation rate (ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.021,"Labour force participation rate (ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.022,"Labour force participation rate (ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.022,"Labour force participation rate (ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.023,Labour force participation rate (ILO modelled estimates) by Sex,Female,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--F,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_2WAP_RT.023,Labour force participation rate (ILO modelled estimates) by Sex,Male,,,ILO_EAP_2WAP_RT,ilo/EAP_2WAP_RT.SEX--M,EAP_2WAP_RT,Labour force participation rate (ILO modelled estimates) +EAP_3EAP_NB.001,Youth labour force by Age group,15 to 19 years old,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.001,Youth labour force by Age group,15 to 29 years old,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.001,Youth labour force by Age group,20 to 24 years old,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.001,Youth labour force by Age group,25 to 29 years old,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.002,Youth labour force (15 to 19 years old) by Disability status,Persons with disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.002,Youth labour force (15 to 19 years old) by Disability status,Persons without disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.003,Youth labour force (15 to 29 years old) by Disability status,Persons with disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.003,Youth labour force (15 to 29 years old) by Disability status,Persons without disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.004,Youth labour force (20 to 24 years old) by Disability status,Persons with disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.004,Youth labour force (20 to 24 years old) by Disability status,Persons without disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.005,Youth labour force (25 to 29 years old) by Disability status,Persons with disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.005,Youth labour force (25 to 29 years old) by Disability status,Persons without disability,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.006,"Youth labour force (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.006,"Youth labour force (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.007,"Youth labour force (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.007,"Youth labour force (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.008,"Youth labour force (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.008,"Youth labour force (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.009,"Youth labour force (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.009,"Youth labour force (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.010,"Youth labour force (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.010,"Youth labour force (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.011,"Youth labour force (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.011,"Youth labour force (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.012,"Youth labour force (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.012,"Youth labour force (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.013,"Youth labour force (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.013,"Youth labour force (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.014,Youth labour force (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.014,Youth labour force (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.014,Youth labour force (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.014,Youth labour force (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.014,Youth labour force (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.015,Youth labour force (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.015,Youth labour force (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.015,Youth labour force (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.015,Youth labour force (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.015,Youth labour force (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.016,Youth labour force (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.016,Youth labour force (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.016,Youth labour force (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.016,Youth labour force (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.016,Youth labour force (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.017,Youth labour force (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.017,Youth labour force (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.017,Youth labour force (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.017,Youth labour force (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.017,Youth labour force (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.018,Youth labour force (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.018,Youth labour force (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.018,Youth labour force (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.019,Youth labour force (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.019,Youth labour force (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.019,Youth labour force (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.020,Youth labour force (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.020,Youth labour force (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.020,Youth labour force (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.021,Youth labour force (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.021,Youth labour force (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.021,Youth labour force (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.022,"Youth labour force (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.022,"Youth labour force (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.023,"Youth labour force (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.023,"Youth labour force (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.024,"Youth labour force (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.024,"Youth labour force (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.025,"Youth labour force (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.025,"Youth labour force (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.026,"Youth labour force (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.026,"Youth labour force (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.027,"Youth labour force (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.027,"Youth labour force (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.027,"Youth labour force (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.028,"Youth labour force (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.028,"Youth labour force (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.029,"Youth labour force (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.029,"Youth labour force (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.030,"Youth labour force (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.030,"Youth labour force (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.030,"Youth labour force (20 to 24 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.031,"Youth labour force (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.031,"Youth labour force (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.032,"Youth labour force (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.032,"Youth labour force (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.033,"Youth labour force (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.033,"Youth labour force (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.034,Youth labour force (15 to 19 years old) by Sex,Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.034,Youth labour force (15 to 19 years old) by Sex,Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.035,Youth labour force (15 to 29 years old) by Sex,Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.035,Youth labour force (15 to 29 years old) by Sex,Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.035,Youth labour force (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.036,Youth labour force (20 to 24 years old) by Sex,Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.036,Youth labour force (20 to 24 years old) by Sex,Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.036,Youth labour force (20 to 24 years old) by Sex,Sex other than Female or Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--O__AGE--Y20T24,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.037,Youth labour force (25 to 29 years old) by Sex,Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.037,Youth labour force (25 to 29 years old) by Sex,Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.038,"Youth labour force (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.038,"Youth labour force (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.038,"Youth labour force (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.038,"Youth labour force (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.038,"Youth labour force (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.039,"Youth labour force (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.039,"Youth labour force (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.039,"Youth labour force (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.039,"Youth labour force (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.039,"Youth labour force (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.040,"Youth labour force (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.040,"Youth labour force (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.040,"Youth labour force (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.040,"Youth labour force (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.040,"Youth labour force (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.041,"Youth labour force (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.041,"Youth labour force (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.041,"Youth labour force (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.041,"Youth labour force (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.041,"Youth labour force (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.042,"Youth labour force (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.042,"Youth labour force (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.042,"Youth labour force (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.042,"Youth labour force (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.042,"Youth labour force (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.043,"Youth labour force (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.043,"Youth labour force (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.043,"Youth labour force (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.043,"Youth labour force (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.043,"Youth labour force (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.044,"Youth labour force (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.044,"Youth labour force (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.044,"Youth labour force (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.044,"Youth labour force (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.044,"Youth labour force (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.045,"Youth labour force (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.045,"Youth labour force (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.045,"Youth labour force (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.045,"Youth labour force (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.045,"Youth labour force (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.046,Youth labour force (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.046,Youth labour force (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.046,Youth labour force (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T19__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.047,Youth labour force (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.047,Youth labour force (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.047,Youth labour force (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y15T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.048,Youth labour force (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.048,Youth labour force (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.048,Youth labour force (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y20T24__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.049,Youth labour force (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.049,Youth labour force (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.049,Youth labour force (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.AGE--Y25T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.050,"Youth labour force (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.050,"Youth labour force (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.051,"Youth labour force (15 to 19 years old, Rural) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.051,"Youth labour force (15 to 19 years old, Rural) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.052,"Youth labour force (15 to 19 years old, Urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T19__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.052,"Youth labour force (15 to 19 years old, Urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T19__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.053,"Youth labour force (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.053,"Youth labour force (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.054,"Youth labour force (15 to 29 years old, Rural) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.054,"Youth labour force (15 to 29 years old, Rural) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.054,"Youth labour force (15 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--O__AGE--Y15T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.055,"Youth labour force (15 to 29 years old, Urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y15T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.055,"Youth labour force (15 to 29 years old, Urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y15T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.056,"Youth labour force (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.056,"Youth labour force (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.057,"Youth labour force (20 to 24 years old, Rural) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.057,"Youth labour force (20 to 24 years old, Rural) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.058,"Youth labour force (20 to 24 years old, Urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y20T24__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.058,"Youth labour force (20 to 24 years old, Urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y20T24__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.059,"Youth labour force (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.059,"Youth labour force (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.060,"Youth labour force (25 to 29 years old, Rural) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.060,"Youth labour force (25 to 29 years old, Rural) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--R,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.061,"Youth labour force (25 to 29 years old, Urban) by Sex",Female,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--F__AGE--Y25T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3EAP_NB.061,"Youth labour force (25 to 29 years old, Urban) by Sex",Male,,,ILO_EAP_3EAP_NB,ilo/EAP_3EAP_NB.SEX--M__AGE--Y25T29__URBANISATION--U,EAP_3EAP_NB,Youth labour force +EAP_3WAP_RT.001,Youth labour force participation rate by Age group,15 to 19 years old,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.001,Youth labour force participation rate by Age group,15 to 29 years old,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.001,Youth labour force participation rate by Age group,20 to 24 years old,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.001,Youth labour force participation rate by Age group,25 to 29 years old,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.002,Youth labour force participation rate (15 to 19 years old) by Disability status,Persons with disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.002,Youth labour force participation rate (15 to 19 years old) by Disability status,Persons without disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.003,Youth labour force participation rate (15 to 29 years old) by Disability status,Persons with disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.003,Youth labour force participation rate (15 to 29 years old) by Disability status,Persons without disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.004,Youth labour force participation rate (20 to 24 years old) by Disability status,Persons with disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.004,Youth labour force participation rate (20 to 24 years old) by Disability status,Persons without disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.005,Youth labour force participation rate (25 to 29 years old) by Disability status,Persons with disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.005,Youth labour force participation rate (25 to 29 years old) by Disability status,Persons without disability,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.006,"Youth labour force participation rate (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.006,"Youth labour force participation rate (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.007,"Youth labour force participation rate (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.007,"Youth labour force participation rate (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.008,"Youth labour force participation rate (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.008,"Youth labour force participation rate (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.009,"Youth labour force participation rate (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.009,"Youth labour force participation rate (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.010,"Youth labour force participation rate (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.010,"Youth labour force participation rate (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.011,"Youth labour force participation rate (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.011,"Youth labour force participation rate (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.012,"Youth labour force participation rate (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.012,"Youth labour force participation rate (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.013,"Youth labour force participation rate (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.013,"Youth labour force participation rate (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.014,Youth labour force participation rate (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.014,Youth labour force participation rate (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.014,Youth labour force participation rate (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.014,Youth labour force participation rate (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.014,Youth labour force participation rate (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.015,Youth labour force participation rate (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.015,Youth labour force participation rate (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.015,Youth labour force participation rate (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.015,Youth labour force participation rate (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.015,Youth labour force participation rate (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.016,Youth labour force participation rate (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.016,Youth labour force participation rate (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.016,Youth labour force participation rate (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.016,Youth labour force participation rate (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.016,Youth labour force participation rate (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.017,Youth labour force participation rate (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.017,Youth labour force participation rate (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.017,Youth labour force participation rate (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.017,Youth labour force participation rate (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.017,Youth labour force participation rate (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.018,Youth labour force participation rate (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.018,Youth labour force participation rate (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.018,Youth labour force participation rate (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.019,Youth labour force participation rate (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.019,Youth labour force participation rate (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.019,Youth labour force participation rate (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.020,Youth labour force participation rate (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.020,Youth labour force participation rate (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.020,Youth labour force participation rate (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.021,Youth labour force participation rate (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.021,Youth labour force participation rate (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.021,Youth labour force participation rate (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.022,"Youth labour force participation rate (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.022,"Youth labour force participation rate (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.023,"Youth labour force participation rate (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.023,"Youth labour force participation rate (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.024,"Youth labour force participation rate (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.024,"Youth labour force participation rate (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.025,"Youth labour force participation rate (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.025,"Youth labour force participation rate (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.026,"Youth labour force participation rate (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.026,"Youth labour force participation rate (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.027,"Youth labour force participation rate (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.027,"Youth labour force participation rate (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.027,"Youth labour force participation rate (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.028,"Youth labour force participation rate (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.028,"Youth labour force participation rate (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.029,"Youth labour force participation rate (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.029,"Youth labour force participation rate (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.030,"Youth labour force participation rate (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.030,"Youth labour force participation rate (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.030,"Youth labour force participation rate (20 to 24 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.031,"Youth labour force participation rate (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.031,"Youth labour force participation rate (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.032,"Youth labour force participation rate (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.032,"Youth labour force participation rate (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.033,"Youth labour force participation rate (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.033,"Youth labour force participation rate (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.034,Youth labour force participation rate (15 to 19 years old) by Sex,Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.034,Youth labour force participation rate (15 to 19 years old) by Sex,Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.035,Youth labour force participation rate (15 to 29 years old) by Sex,Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.035,Youth labour force participation rate (15 to 29 years old) by Sex,Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.035,Youth labour force participation rate (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.036,Youth labour force participation rate (20 to 24 years old) by Sex,Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.036,Youth labour force participation rate (20 to 24 years old) by Sex,Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.036,Youth labour force participation rate (20 to 24 years old) by Sex,Sex other than Female or Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--O__AGE--Y20T24,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.037,Youth labour force participation rate (25 to 29 years old) by Sex,Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.037,Youth labour force participation rate (25 to 29 years old) by Sex,Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.038,"Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.038,"Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.038,"Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.038,"Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.038,"Youth labour force participation rate (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.039,"Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.039,"Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.039,"Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.039,"Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.039,"Youth labour force participation rate (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.040,"Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.040,"Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.040,"Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.040,"Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.040,"Youth labour force participation rate (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.041,"Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.041,"Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.041,"Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.041,"Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.041,"Youth labour force participation rate (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.042,"Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.042,"Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.042,"Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.042,"Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.042,"Youth labour force participation rate (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.043,"Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.043,"Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.043,"Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.043,"Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.043,"Youth labour force participation rate (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.044,"Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.044,"Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.044,"Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.044,"Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.044,"Youth labour force participation rate (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.045,"Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.045,"Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.045,"Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.045,"Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.045,"Youth labour force participation rate (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.046,Youth labour force participation rate (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.046,Youth labour force participation rate (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.046,Youth labour force participation rate (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T19__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.047,Youth labour force participation rate (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.047,Youth labour force participation rate (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.047,Youth labour force participation rate (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y15T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.048,Youth labour force participation rate (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.048,Youth labour force participation rate (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.048,Youth labour force participation rate (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y20T24__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.049,Youth labour force participation rate (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.049,Youth labour force participation rate (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.049,Youth labour force participation rate (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.AGE--Y25T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.050,"Youth labour force participation rate (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.050,"Youth labour force participation rate (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.051,"Youth labour force participation rate (15 to 19 years old, Rural) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.051,"Youth labour force participation rate (15 to 19 years old, Rural) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.052,"Youth labour force participation rate (15 to 19 years old, Urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.052,"Youth labour force participation rate (15 to 19 years old, Urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.053,"Youth labour force participation rate (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.053,"Youth labour force participation rate (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.054,"Youth labour force participation rate (15 to 29 years old, Rural) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.054,"Youth labour force participation rate (15 to 29 years old, Rural) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.054,"Youth labour force participation rate (15 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.055,"Youth labour force participation rate (15 to 29 years old, Urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.055,"Youth labour force participation rate (15 to 29 years old, Urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.056,"Youth labour force participation rate (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.056,"Youth labour force participation rate (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.057,"Youth labour force participation rate (20 to 24 years old, Rural) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.057,"Youth labour force participation rate (20 to 24 years old, Rural) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.058,"Youth labour force participation rate (20 to 24 years old, Urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.058,"Youth labour force participation rate (20 to 24 years old, Urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.059,"Youth labour force participation rate (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.059,"Youth labour force participation rate (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.060,"Youth labour force participation rate (25 to 29 years old, Rural) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.060,"Youth labour force participation rate (25 to 29 years old, Rural) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.061,"Youth labour force participation rate (25 to 29 years old, Urban) by Sex",Female,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_3WAP_RT.061,"Youth labour force participation rate (25 to 29 years old, Urban) by Sex",Male,,,ILO_EAP_3WAP_RT,ilo/EAP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U,EAP_3WAP_RT,Youth labour force participation rate +EAP_DWAP_RT.001,Labour force participation rate,Total,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Single,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Widowed,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Divorced or legally separated,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Married,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Union / Cohabiting,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,Marital status not elsewhere classified,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,under 15 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,5 to 9 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,10 to 14 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,15 to 19 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,15 to 24 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,15 to 64 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,15 years old and over,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,20 to 24 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,25 to 29 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,25 to 34 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,25 to 54 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,25 years old and over,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,30 to 34 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,35 to 39 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,35 to 44 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,40 to 44 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,45 to 49 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,45 to 54 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,50 to 54 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,55 to 59 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,55 to 64 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,60 to 64 years old,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.002,Labour force participation rate,65 years old and over,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.003,Labour force participation rate,Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.003,Labour force participation rate,Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.003,Labour force participation rate,Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.004,Labour force participation rate (10 to 14 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.004,Labour force participation rate (10 to 14 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.005,Labour force participation rate (15 to 19 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.005,Labour force participation rate (15 to 19 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.006,Labour force participation rate (15 to 24 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.006,Labour force participation rate (15 to 24 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.006,Labour force participation rate (15 to 24 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.007,Labour force participation rate (15 to 64 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.007,Labour force participation rate (15 to 64 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.007,Labour force participation rate (15 to 64 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.008,Labour force participation rate (15 years old and over),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.008,Labour force participation rate (15 years old and over),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.008,Labour force participation rate (15 years old and over),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.009,Labour force participation rate (20 to 24 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.009,Labour force participation rate (20 to 24 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.009,Labour force participation rate (20 to 24 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.010,Labour force participation rate (25 to 29 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.010,Labour force participation rate (25 to 29 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.010,Labour force participation rate (25 to 29 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.011,Labour force participation rate (25 to 34 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.011,Labour force participation rate (25 to 34 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.011,Labour force participation rate (25 to 34 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.012,Labour force participation rate (25 to 54 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.012,Labour force participation rate (25 to 54 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.012,Labour force participation rate (25 to 54 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.013,Labour force participation rate (25 years old and over),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.013,Labour force participation rate (25 years old and over),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.013,Labour force participation rate (25 years old and over),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.014,Labour force participation rate (30 to 34 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.014,Labour force participation rate (30 to 34 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.014,Labour force participation rate (30 to 34 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.015,Labour force participation rate (35 to 39 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.015,Labour force participation rate (35 to 39 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.015,Labour force participation rate (35 to 39 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.016,Labour force participation rate (35 to 44 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.016,Labour force participation rate (35 to 44 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.016,Labour force participation rate (35 to 44 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.017,Labour force participation rate (40 to 44 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.017,Labour force participation rate (40 to 44 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.017,Labour force participation rate (40 to 44 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.018,Labour force participation rate (45 to 49 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.018,Labour force participation rate (45 to 49 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.019,Labour force participation rate (45 to 54 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.019,Labour force participation rate (45 to 54 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.019,Labour force participation rate (45 to 54 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.020,Labour force participation rate (5 to 9 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.020,Labour force participation rate (5 to 9 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.021,Labour force participation rate (50 to 54 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.021,Labour force participation rate (50 to 54 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.021,Labour force participation rate (50 to 54 years old),Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.022,Labour force participation rate (55 to 59 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.022,Labour force participation rate (55 to 59 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.023,Labour force participation rate (55 to 64 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.023,Labour force participation rate (55 to 64 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.024,Labour force participation rate (60 to 64 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.024,Labour force participation rate (60 to 64 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.025,Labour force participation rate (65 years old and over),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.025,Labour force participation rate (65 years old and over),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Single,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Widowed,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Divorced or legally separated,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Married,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Union / Cohabiting,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.026,Labour force participation rate (Female),Marital status not elsewhere classified,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Single,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Widowed,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Divorced or legally separated,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Married,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Union / Cohabiting,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.027,Labour force participation rate (Male),Marital status not elsewhere classified,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.028,Labour force participation rate (Sex other than Female or Male),Single,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.028,Labour force participation rate (Sex other than Female or Male),Married,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.029,Labour force participation rate (under 15 years old),Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.029,Labour force participation rate (under 15 years old),Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.030,Labour force participation rate,Total,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.031,Labour force participation rate,Female,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--F__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.031,Labour force participation rate,Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--M__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_DWAP_RT.031,Labour force participation rate,Sex other than Female or Male,DROP,,ILO_EAP_DWAP_RT,ilo/EAP_DWAP_RT.SEX--O__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_DWAP_RT,Labour force participation rate +EAP_TEAP_NB.001,Labour force,Total,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Single / Widowed / Divorced,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Single,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Widowed,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Divorced or legally separated,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Married / Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Married,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.002,Labour force,Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.003,Labour force,Female,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.003,Labour force,Male,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.003,Labour force,Sex other than Female or Male,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--O__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Single / Widowed / Divorced,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Single,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Widowed,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Divorced or legally separated,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Married / Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Married,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.004,Labour force (Female),Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Single / Widowed / Divorced,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Single,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Widowed,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Divorced or legally separated,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Married / Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Married,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.005,Labour force (Male),Marital status not elsewhere classified,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.006,Labour force (Sex other than Female or Male),Single / Widowed / Divorced,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.006,Labour force (Sex other than Female or Male),Single,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.006,Labour force (Sex other than Female or Male),Married / Union / Cohabiting,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAP_TEAP_NB.006,Labour force (Sex other than Female or Male),Married,DROP,,ILO_EAP_TEAP_NB,ilo/EAP_TEAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAP_TEAP_NB,Labour force +EAR_4MMN_NB.001,Monthly minimum wage by Currency,Local currency,DROP,,ILO_EAR_4MMN_NB,ilo/EAR_4MMN_NB.CURRENCY--CUR_TYPE_LCU,EAR_4MMN_NB,Monthly minimum wage +EAR_4MMN_NB.001,Monthly minimum wage by Currency,2017 PPP $,,,ILO_EAR_4MMN_NB,ilo/EAR_4MMN_NB.CURRENCY--CUR_TYPE_PPP,EAR_4MMN_NB,Monthly minimum wage +EAR_4MMN_NB.001,Monthly minimum wage by Currency,U.S. dollars,,,ILO_EAR_4MMN_NB,ilo/EAR_4MMN_NB.CURRENCY--CUR_TYPE_USD,EAR_4MMN_NB,Monthly minimum wage +EAR_GGAP_RT.001,Gender pay gap,Total,DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Armed forces occupations (ISCO08_0),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Managers (ISCO08_1),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Professionals (ISCO08_2),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Technicians and associate professionals (ISCO08_3),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Clerical support workers (ISCO08_4),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Service and sales workers (ISCO08_5),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,"Skilled agricultural, forestry and fishery workers (ISCO08_6)",DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Craft and related trades workers (ISCO08_7),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,"Plant and machine operators, and assemblers (ISCO08_8)",DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Elementary occupations (ISCO08_9),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Occupations not elsewhere classified (ISCO08_X),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Armed forces (ISCO88_0),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,"Legislators, senior officials and managers (ISCO88_1)",DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Professionals (ISCO88_2),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Technicians and associate professionals (ISCO88_3),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Clerks (ISCO88_4),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Service workers and shop and market sales workers (ISCO88_5),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Skilled agricultural and fishery workers (ISCO88_6),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Craft and related trades workers (ISCO88_7),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Plant and machine operators and assemblers (ISCO88_8),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Elementary occupations (ISCO88_9),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_GGAP_RT.002,Gender pay gap,Not elsewhere classified (ISCO88_X),DROP,,ILO_EAR_GGAP_RT,ilo/EAR_GGAP_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EAR_GGAP_RT,Gender pay gap +EAR_XTLP_RT.001,Low pay rate,Total,,,ILO_EAR_XTLP_RT,ilo/EAR_XTLP_RT,EAR_XTLP_RT,Low pay rate +EAR_XTLP_RT.002,Low pay rate by Sex,Female,,,ILO_EAR_XTLP_RT,ilo/EAR_XTLP_RT.SEX--F,EAR_XTLP_RT,Low pay rate +EAR_XTLP_RT.002,Low pay rate by Sex,Male,,,ILO_EAR_XTLP_RT,ilo/EAR_XTLP_RT.SEX--M,EAR_XTLP_RT,Low pay rate +EES_3EES_NB.001,Youth employees by Age group,15 to 19 years old,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T19,EES_3EES_NB,Youth employees +EES_3EES_NB.001,Youth employees by Age group,15 to 29 years old,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T29,EES_3EES_NB,Youth employees +EES_3EES_NB.001,Youth employees by Age group,20 to 24 years old,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y20T24,EES_3EES_NB,Youth employees +EES_3EES_NB.001,Youth employees by Age group,25 to 29 years old,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y25T29,EES_3EES_NB,Youth employees +EES_3EES_NB.002,Youth employees (15 to 19 years old) by Contract type,Permanent contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.002,Youth employees (15 to 19 years old) by Contract type,Temporary contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.002,Youth employees (15 to 19 years old) by Contract type,Unknown type of contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T19__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.003,Youth employees (15 to 29 years old) by Contract type,Permanent contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.003,Youth employees (15 to 29 years old) by Contract type,Temporary contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.003,Youth employees (15 to 29 years old) by Contract type,Unknown type of contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y15T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.004,Youth employees (20 to 24 years old) by Contract type,Permanent contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.004,Youth employees (20 to 24 years old) by Contract type,Temporary contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.004,Youth employees (20 to 24 years old) by Contract type,Unknown type of contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y20T24__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.005,Youth employees (25 to 29 years old) by Contract type,Permanent contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.005,Youth employees (25 to 29 years old) by Contract type,Temporary contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.005,Youth employees (25 to 29 years old) by Contract type,Unknown type of contract,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.AGE--Y25T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.006,"Youth employees (15 to 19 years old, Permanent contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.006,"Youth employees (15 to 19 years old, Permanent contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.007,"Youth employees (15 to 19 years old, Temporary contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.007,"Youth employees (15 to 19 years old, Temporary contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.008,"Youth employees (15 to 19 years old, Unknown type of contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T19__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.008,"Youth employees (15 to 19 years old, Unknown type of contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T19__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.009,"Youth employees (15 to 29 years old, Permanent contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.009,"Youth employees (15 to 29 years old, Permanent contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.010,"Youth employees (15 to 29 years old, Temporary contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.010,"Youth employees (15 to 29 years old, Temporary contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.011,"Youth employees (15 to 29 years old, Unknown type of contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.011,"Youth employees (15 to 29 years old, Unknown type of contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.011,"Youth employees (15 to 29 years old, Unknown type of contract) by Sex",Sex other than Female or Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--O__AGE--Y15T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.012,"Youth employees (20 to 24 years old, Permanent contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.012,"Youth employees (20 to 24 years old, Permanent contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.013,"Youth employees (20 to 24 years old, Temporary contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.013,"Youth employees (20 to 24 years old, Temporary contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.014,"Youth employees (20 to 24 years old, Unknown type of contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y20T24__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.014,"Youth employees (20 to 24 years old, Unknown type of contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y20T24__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.015,"Youth employees (25 to 29 years old, Permanent contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.015,"Youth employees (25 to 29 years old, Permanent contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--PERM,EES_3EES_NB,Youth employees +EES_3EES_NB.016,"Youth employees (25 to 29 years old, Temporary contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.016,"Youth employees (25 to 29 years old, Temporary contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--TEMP,EES_3EES_NB,Youth employees +EES_3EES_NB.017,"Youth employees (25 to 29 years old, Unknown type of contract) by Sex",Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y25T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.017,"Youth employees (25 to 29 years old, Unknown type of contract) by Sex",Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y25T29__CONTRACT_TYPE--_X,EES_3EES_NB,Youth employees +EES_3EES_NB.018,Youth employees (15 to 19 years old) by Sex,Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T19,EES_3EES_NB,Youth employees +EES_3EES_NB.018,Youth employees (15 to 19 years old) by Sex,Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T19,EES_3EES_NB,Youth employees +EES_3EES_NB.019,Youth employees (15 to 29 years old) by Sex,Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y15T29,EES_3EES_NB,Youth employees +EES_3EES_NB.019,Youth employees (15 to 29 years old) by Sex,Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y15T29,EES_3EES_NB,Youth employees +EES_3EES_NB.019,Youth employees (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--O__AGE--Y15T29,EES_3EES_NB,Youth employees +EES_3EES_NB.020,Youth employees (20 to 24 years old) by Sex,Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y20T24,EES_3EES_NB,Youth employees +EES_3EES_NB.020,Youth employees (20 to 24 years old) by Sex,Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y20T24,EES_3EES_NB,Youth employees +EES_3EES_NB.021,Youth employees (25 to 29 years old) by Sex,Female,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--F__AGE--Y25T29,EES_3EES_NB,Youth employees +EES_3EES_NB.021,Youth employees (25 to 29 years old) by Sex,Male,,,ILO_EES_3EES_NB,ilo/EES_3EES_NB.SEX--M__AGE--Y25T29,EES_3EES_NB,Youth employees +EES_XTMP_RT.001,Share of temporary employees,Total,,,ILO_EES_XTMP_RT,ilo/EES_XTMP_RT,EES_XTMP_RT,Share of temporary employees +EES_XTMP_RT.002,Share of temporary employees by Sex,Female,,,ILO_EES_XTMP_RT,ilo/EES_XTMP_RT.SEX--F,EES_XTMP_RT,Share of temporary employees +EES_XTMP_RT.002,Share of temporary employees by Sex,Male,,,ILO_EES_XTMP_RT,ilo/EES_XTMP_RT.SEX--M,EES_XTMP_RT,Share of temporary employees +EIP_2EIP_NB.001,Persons outside the labour force (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y15T24,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.001,Persons outside the labour force (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y_GE15,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.001,Persons outside the labour force (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y_GE25,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.002,Persons outside the labour force (ILO modelled estimates),15 to 24 years old,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.002,Persons outside the labour force (ILO modelled estimates),15 years old and over,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.002,Persons outside the labour force (ILO modelled estimates),25 years old and over,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.003,Persons outside the labour force (ILO modelled estimates) (15 to 24 years old),Female,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.003,Persons outside the labour force (ILO modelled estimates) (15 to 24 years old),Male,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.004,Persons outside the labour force (ILO modelled estimates) (15 years old and over),Female,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.004,Persons outside the labour force (ILO modelled estimates) (15 years old and over),Male,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.005,Persons outside the labour force (ILO modelled estimates) (25 years old and over),Female,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.005,Persons outside the labour force (ILO modelled estimates) (25 years old and over),Male,DROP,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.006,Persons outside the labour force (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y15T24,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.006,Persons outside the labour force (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y15T24,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.007,Persons outside the labour force (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE15,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.007,Persons outside the labour force (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE15,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.008,Persons outside the labour force (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--F__AGE--Y_GE25,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2EIP_NB.008,Persons outside the labour force (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EIP_2EIP_NB,ilo/EIP_2EIP_NB.SEX--M__AGE--Y_GE25,EIP_2EIP_NB,Persons outside the labour force (ILO modelled estimates) +EIP_2JOB_NB.001,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_EIP_2JOB_NB,ilo/EIP_2JOB_NB,EIP_2JOB_NB,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023)" +EIP_2JOB_NB.002,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_EIP_2JOB_NB,ilo/EIP_2JOB_NB.SEX--F,EIP_2JOB_NB,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023) " +EIP_2JOB_NB.002,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_EIP_2JOB_NB,ilo/EIP_2JOB_NB.SEX--M,EIP_2JOB_NB,"Potential labour force and willing non-jobseekers (ILO modelled estimates, as of Nov. 2023) " +EIP_2JOB_RT.001,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_EIP_2JOB_RT,ilo/EIP_2JOB_RT,EIP_2JOB_RT,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023)" +EIP_2JOB_RT.002,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_EIP_2JOB_RT,ilo/EIP_2JOB_RT.SEX--F,EIP_2JOB_RT,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023) " +EIP_2JOB_RT.002,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_EIP_2JOB_RT,ilo/EIP_2JOB_RT.SEX--M,EIP_2JOB_RT,"Potential labour force and willing non-jobseekers rate (ILO modelled estimates, as of Nov. 2023) " +EIP_2PLF_RT.001,Potential labour force rate (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.AGE--Y15T24,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.001,Potential labour force rate (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.AGE--Y_GE15,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.001,Potential labour force rate (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.AGE--Y_GE25,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.002,Potential labour force rate (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--F__AGE--Y15T24,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.002,Potential labour force rate (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--M__AGE--Y15T24,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.003,Potential labour force rate (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--F__AGE--Y_GE15,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.003,Potential labour force rate (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--M__AGE--Y_GE15,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.004,Potential labour force rate (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--F__AGE--Y_GE25,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2PLF_RT.004,Potential labour force rate (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EIP_2PLF_RT,ilo/EIP_2PLF_RT.SEX--M__AGE--Y_GE25,EIP_2PLF_RT,Potential labour force rate (ILO modelled estimates) +EIP_2WAP_RT.001,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) by Age group",15 to 24 years old,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y15T24,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.001,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) by Age group",15 years old and over,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE15,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.001,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) by Age group",25 years old and over,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE25,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.002,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.002,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.003,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.003,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.004,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.004,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.005,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y15T24__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.005,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y15T24__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.006,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE15__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.006,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE15__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.007,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE25__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.007,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.AGE--Y_GE25__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.008,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.008,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.009,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.009,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.010,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.010,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.011,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.011,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.012,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.012,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.013,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_2WAP_RT.013,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_EIP_2WAP_RT,ilo/EIP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U,EIP_2WAP_RT,"Number of persons of working age outside the labour force, as a percentage of the working-age population (Inactivity rate, ILO modelled estimates) " +EIP_3EIP_NB.001,Youth outside the labour force by Age group,15 to 19 years old,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.001,Youth outside the labour force by Age group,15 to 29 years old,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.001,Youth outside the labour force by Age group,20 to 24 years old,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.001,Youth outside the labour force by Age group,25 to 29 years old,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.002,Youth outside the labour force (15 to 19 years old) by Disability status,Persons with disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.002,Youth outside the labour force (15 to 19 years old) by Disability status,Persons without disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.003,Youth outside the labour force (15 to 29 years old) by Disability status,Persons with disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.003,Youth outside the labour force (15 to 29 years old) by Disability status,Persons without disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.004,Youth outside the labour force (20 to 24 years old) by Disability status,Persons with disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.004,Youth outside the labour force (20 to 24 years old) by Disability status,Persons without disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.005,Youth outside the labour force (25 to 29 years old) by Disability status,Persons with disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.005,Youth outside the labour force (25 to 29 years old) by Disability status,Persons without disability,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.006,"Youth outside the labour force (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.006,"Youth outside the labour force (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.007,"Youth outside the labour force (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.007,"Youth outside the labour force (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.008,"Youth outside the labour force (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.008,"Youth outside the labour force (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.009,"Youth outside the labour force (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.009,"Youth outside the labour force (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.009,"Youth outside the labour force (15 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.010,"Youth outside the labour force (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.010,"Youth outside the labour force (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.011,"Youth outside the labour force (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.011,"Youth outside the labour force (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.012,"Youth outside the labour force (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.012,"Youth outside the labour force (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.013,"Youth outside the labour force (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.013,"Youth outside the labour force (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.013,"Youth outside the labour force (25 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.014,Youth outside the labour force (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.014,Youth outside the labour force (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.014,Youth outside the labour force (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.014,Youth outside the labour force (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.014,Youth outside the labour force (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.015,Youth outside the labour force (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.015,Youth outside the labour force (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.015,Youth outside the labour force (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.015,Youth outside the labour force (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.015,Youth outside the labour force (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.016,Youth outside the labour force (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.016,Youth outside the labour force (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.016,Youth outside the labour force (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.016,Youth outside the labour force (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.016,Youth outside the labour force (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.017,Youth outside the labour force (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.017,Youth outside the labour force (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.017,Youth outside the labour force (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.017,Youth outside the labour force (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.017,Youth outside the labour force (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.018,Youth outside the labour force (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.018,Youth outside the labour force (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.018,Youth outside the labour force (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.019,Youth outside the labour force (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.019,Youth outside the labour force (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.019,Youth outside the labour force (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.020,Youth outside the labour force (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.020,Youth outside the labour force (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.020,Youth outside the labour force (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.021,Youth outside the labour force (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.021,Youth outside the labour force (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.021,Youth outside the labour force (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.022,"Youth outside the labour force (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.022,"Youth outside the labour force (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.022,"Youth outside the labour force (15 to 19 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.023,"Youth outside the labour force (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.023,"Youth outside the labour force (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.024,"Youth outside the labour force (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.024,"Youth outside the labour force (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.025,"Youth outside the labour force (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.025,"Youth outside the labour force (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.025,"Youth outside the labour force (15 to 29 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.026,"Youth outside the labour force (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.026,"Youth outside the labour force (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.027,"Youth outside the labour force (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.027,"Youth outside the labour force (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.027,"Youth outside the labour force (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.028,"Youth outside the labour force (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.028,"Youth outside the labour force (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.028,"Youth outside the labour force (20 to 24 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.029,"Youth outside the labour force (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.029,"Youth outside the labour force (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.030,"Youth outside the labour force (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.030,"Youth outside the labour force (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.030,"Youth outside the labour force (20 to 24 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.031,"Youth outside the labour force (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.031,"Youth outside the labour force (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.032,"Youth outside the labour force (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.032,"Youth outside the labour force (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.033,"Youth outside the labour force (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.033,"Youth outside the labour force (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.033,"Youth outside the labour force (25 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.034,Youth outside the labour force (15 to 19 years old) by Sex,Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.034,Youth outside the labour force (15 to 19 years old) by Sex,Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.034,Youth outside the labour force (15 to 19 years old) by Sex,Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.035,Youth outside the labour force (15 to 29 years old) by Sex,Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.035,Youth outside the labour force (15 to 29 years old) by Sex,Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.035,Youth outside the labour force (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.036,Youth outside the labour force (20 to 24 years old) by Sex,Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.036,Youth outside the labour force (20 to 24 years old) by Sex,Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.036,Youth outside the labour force (20 to 24 years old) by Sex,Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y20T24,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.037,Youth outside the labour force (25 to 29 years old) by Sex,Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.037,Youth outside the labour force (25 to 29 years old) by Sex,Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.037,Youth outside the labour force (25 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y25T29,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.038,"Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.038,"Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.038,"Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.038,"Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.038,"Youth outside the labour force (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.039,"Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.039,"Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.039,"Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.039,"Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.039,"Youth outside the labour force (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.040,"Youth outside the labour force (15 to 19 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.041,"Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.041,"Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.041,"Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.041,"Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.041,"Youth outside the labour force (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.042,"Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.042,"Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.042,"Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.042,"Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.042,"Youth outside the labour force (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.043,"Youth outside the labour force (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.043,"Youth outside the labour force (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.044,"Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.044,"Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.044,"Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.044,"Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.044,"Youth outside the labour force (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.045,"Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.045,"Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.045,"Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.045,"Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.045,"Youth outside the labour force (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.046,"Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.046,"Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.046,"Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.046,"Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.046,"Youth outside the labour force (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.047,"Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.047,"Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.047,"Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.047,"Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.047,"Youth outside the labour force (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.048,Youth outside the labour force (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.048,Youth outside the labour force (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.048,Youth outside the labour force (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T19__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.049,Youth outside the labour force (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.049,Youth outside the labour force (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.049,Youth outside the labour force (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y15T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.050,Youth outside the labour force (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.050,Youth outside the labour force (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.050,Youth outside the labour force (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y20T24__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.051,Youth outside the labour force (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.051,Youth outside the labour force (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.051,Youth outside the labour force (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.AGE--Y25T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.052,"Youth outside the labour force (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.052,"Youth outside the labour force (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.053,"Youth outside the labour force (15 to 19 years old, Rural) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.053,"Youth outside the labour force (15 to 19 years old, Rural) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.053,"Youth outside the labour force (15 to 19 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.054,"Youth outside the labour force (15 to 19 years old, Urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T19__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.054,"Youth outside the labour force (15 to 19 years old, Urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T19__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.054,"Youth outside the labour force (15 to 19 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T19__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.055,"Youth outside the labour force (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.055,"Youth outside the labour force (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.056,"Youth outside the labour force (15 to 29 years old, Rural) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.056,"Youth outside the labour force (15 to 29 years old, Rural) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.056,"Youth outside the labour force (15 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.057,"Youth outside the labour force (15 to 29 years old, Urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y15T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.057,"Youth outside the labour force (15 to 29 years old, Urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y15T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.057,"Youth outside the labour force (15 to 29 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--O__AGE--Y15T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.058,"Youth outside the labour force (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.058,"Youth outside the labour force (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.059,"Youth outside the labour force (20 to 24 years old, Rural) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.059,"Youth outside the labour force (20 to 24 years old, Rural) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.060,"Youth outside the labour force (20 to 24 years old, Urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y20T24__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.060,"Youth outside the labour force (20 to 24 years old, Urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y20T24__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.061,"Youth outside the labour force (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.061,"Youth outside the labour force (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.062,"Youth outside the labour force (25 to 29 years old, Rural) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.062,"Youth outside the labour force (25 to 29 years old, Rural) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--R,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.063,"Youth outside the labour force (25 to 29 years old, Urban) by Sex",Female,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--F__AGE--Y25T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3EIP_NB.063,"Youth outside the labour force (25 to 29 years old, Urban) by Sex",Male,,,ILO_EIP_3EIP_NB,ilo/EIP_3EIP_NB.SEX--M__AGE--Y25T29__URBANISATION--U,EIP_3EIP_NB,Youth outside the labour force +EIP_3WAP_RT.001,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) by Age group",15 to 19 years old,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.001,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) by Age group",15 to 29 years old,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.001,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) by Age group",20 to 24 years old,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.001,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) by Age group",25 to 29 years old,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.002,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Disability status",Persons with disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.002,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Disability status",Persons without disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.003,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Disability status",Persons with disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.003,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Disability status",Persons without disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.004,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Disability status",Persons with disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.004,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Disability status",Persons without disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.005,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Disability status",Persons with disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.005,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Disability status",Persons without disability,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.006,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.006,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.007,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.007,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.008,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.008,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.009,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.009,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.009,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.010,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.010,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.011,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.011,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.012,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.012,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.013,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.013,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.013,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.014,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.014,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.014,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.014,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.014,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.015,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.015,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.015,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.015,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.015,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.016,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.016,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.016,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.016,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.016,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.017,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.017,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.017,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.017,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.017,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.018,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Educational attendance status",Not attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.018,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Educational attendance status",Attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.018,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Educational attendance status",Educational attendance not classified,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.019,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Educational attendance status",Not attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.019,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Educational attendance status",Attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.019,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Educational attendance status",Educational attendance not classified,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.020,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Educational attendance status",Not attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.020,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Educational attendance status",Attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.020,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Educational attendance status",Educational attendance not classified,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.021,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Educational attendance status",Not attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.021,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Educational attendance status",Attending education,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.021,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Educational attendance status",Educational attendance not classified,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.022,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.022,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.022,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.023,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.023,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.024,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.024,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.025,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.025,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.025,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.026,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.026,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.027,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.027,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.027,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.028,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.028,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.028,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.029,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.029,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.030,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.030,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.030,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.031,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.031,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.032,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.032,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.033,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.033,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.033,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.034,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.034,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.034,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.035,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.035,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.035,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.036,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.036,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.036,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y20T24,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.037,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.037,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.037,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y25T29,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.038,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.038,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.038,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.038,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.038,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.039,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.039,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.039,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.039,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.039,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.040,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.041,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.041,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.041,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.041,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.041,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.042,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.042,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.042,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.042,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.042,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.043,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.043,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.044,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.044,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.044,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.044,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.044,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.045,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.045,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.045,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.045,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.045,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.046,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.046,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.046,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.046,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.046,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.047,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.047,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.047,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.047,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.047,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.048,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.048,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.048,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T19__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.049,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.049,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.049,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y15T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.050,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.050,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.050,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y20T24__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.051,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.051,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.051,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.AGE--Y25T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.052,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.052,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.053,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Rural) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.053,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Rural) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.053,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.054,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.054,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.054,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 19 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T19__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.055,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.055,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.056,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Rural) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.056,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Rural) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.056,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.057,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.057,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.057,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (15 to 29 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--O__AGE--Y15T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.058,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.058,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.059,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Rural) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.059,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Rural) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.060,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.060,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (20 to 24 years old, Urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.061,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.061,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.062,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Rural) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.062,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Rural) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.063,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Urban) by Sex",Female,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_3WAP_RT.063,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) (25 to 29 years old, Urban) by Sex",Male,,,ILO_EIP_3WAP_RT,ilo/EIP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U,EIP_3WAP_RT,"Number of young persons of working age outside the labour force, as a percentage of the working-age population (Youth inactivity rate) " +EIP_5EET_NB.001,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS)",Total,,,ILO_EIP_5EET_NB,ilo/EIP_5EET_NB,EIP_5EET_NB,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS)" +EIP_5EET_NB.002,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex",Female,,,ILO_EIP_5EET_NB,ilo/EIP_5EET_NB.SEX--F,EIP_5EET_NB,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EET_NB.002,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex",Male,,,ILO_EIP_5EET_NB,ilo/EIP_5EET_NB.SEX--M,EIP_5EET_NB,"Youth not in employment, education or training (NEET) according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EET_RT.001,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS)",Total,,,ILO_EIP_5EET_RT,ilo/EIP_5EET_RT,EIP_5EET_RT,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS)" +EIP_5EET_RT.002,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex",Female,,,ILO_EIP_5EET_RT,ilo/EIP_5EET_RT.SEX--F,EIP_5EET_RT,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EET_RT.002,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Sex",Male,,,ILO_EIP_5EET_RT,ilo/EIP_5EET_RT.SEX--M,EIP_5EET_RT,"Share of youth not in employment, education or training (NEET), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.001,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.AGE--Y15T24,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.001,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.AGE--Y_GE15,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.001,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.AGE--Y_GE25,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.002,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--F__AGE--Y15T24,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.002,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--M__AGE--Y15T24,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.003,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--F__AGE--Y_GE15,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.003,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--M__AGE--Y_GE15,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.004,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--F__AGE--Y_GE25,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5EIP_NB.004,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EIP_5EIP_NB,ilo/EIP_5EIP_NB.SEX--M__AGE--Y_GE25,EIP_5EIP_NB,"Persons outside the labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.001,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.AGE--Y15T24,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.001,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.AGE--Y_GE15,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.001,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.AGE--Y_GE25,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.002,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--F__AGE--Y15T24,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.002,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--M__AGE--Y15T24,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.003,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--F__AGE--Y_GE15,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.003,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--M__AGE--Y_GE15,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.004,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--F__AGE--Y_GE25,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_5PLF_NB.004,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EIP_5PLF_NB,ilo/EIP_5PLF_NB.SEX--M__AGE--Y_GE25,EIP_5PLF_NB,"Potential labour force, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EIP_TEIP_NB.001,Persons outside the labour force,Total,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.002,Persons outside the labour force,Single / Widowed / Divorced,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.002,Persons outside the labour force,Married / Union / Cohabiting,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.002,Persons outside the labour force,Marital status not elsewhere classified,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.003,Persons outside the labour force,Female,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.003,Persons outside the labour force,Male,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.004,Persons outside the labour force (Female),Single / Widowed / Divorced,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.004,Persons outside the labour force (Female),Married / Union / Cohabiting,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.004,Persons outside the labour force (Female),Marital status not elsewhere classified,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.005,Persons outside the labour force (Male),Single / Widowed / Divorced,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.005,Persons outside the labour force (Male),Married / Union / Cohabiting,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_TEIP_NB.005,Persons outside the labour force (Male),Marital status not elsewhere classified,DROP,,ILO_EIP_TEIP_NB,ilo/EIP_TEIP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_TEIP_NB,Persons outside the labour force +EIP_WPLF_NB.001,Potential labour force,15 to 24 years old,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.001,Potential labour force,15 to 64 years old,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.001,Potential labour force,15 years old and over,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.001,Potential labour force,25 years old and over,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.002,Potential labour force (15 to 24 years old),Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.002,Potential labour force (15 to 24 years old),Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.002,Potential labour force (15 to 24 years old),Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.003,Potential labour force (15 to 64 years old),Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.003,Potential labour force (15 to 64 years old),Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.003,Potential labour force (15 to 64 years old),Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.004,Potential labour force (15 years old and over),Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.004,Potential labour force (15 years old and over),Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.004,Potential labour force (15 years old and over),Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.005,Potential labour force (25 years old and over),Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.005,Potential labour force (25 years old and over),Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.005,Potential labour force (25 years old and over),Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.006,Potential labour force (15 to 24 years old),Female,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.006,Potential labour force (15 to 24 years old),Male,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.007,Potential labour force (15 to 64 years old),Female,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.007,Potential labour force (15 to 64 years old),Male,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.008,Potential labour force (15 years old and over),Female,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.008,Potential labour force (15 years old and over),Male,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.009,Potential labour force (25 years old and over),Female,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.009,Potential labour force (25 years old and over),Male,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.010,"Potential labour force (15 to 24 years old, Female)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.010,"Potential labour force (15 to 24 years old, Female)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.010,"Potential labour force (15 to 24 years old, Female)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.011,"Potential labour force (15 to 24 years old, Male)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.011,"Potential labour force (15 to 24 years old, Male)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.011,"Potential labour force (15 to 24 years old, Male)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.012,"Potential labour force (15 to 64 years old, Female)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.012,"Potential labour force (15 to 64 years old, Female)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.012,"Potential labour force (15 to 64 years old, Female)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.013,"Potential labour force (15 to 64 years old, Male)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.013,"Potential labour force (15 to 64 years old, Male)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.013,"Potential labour force (15 to 64 years old, Male)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.014,"Potential labour force (15 years old and over, Female)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.014,"Potential labour force (15 years old and over, Female)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.014,"Potential labour force (15 years old and over, Female)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.015,"Potential labour force (15 years old and over, Male)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.015,"Potential labour force (15 years old and over, Male)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.015,"Potential labour force (15 years old and over, Male)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.016,"Potential labour force (25 years old and over, Female)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.016,"Potential labour force (25 years old and over, Female)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.016,"Potential labour force (25 years old and over, Female)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.017,"Potential labour force (25 years old and over, Male)",Single / Widowed / Divorced,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.017,"Potential labour force (25 years old and over, Male)",Married / Union / Cohabiting,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EIP_WPLF_NB.017,"Potential labour force (25 years old and over, Male)",Marital status not elsewhere classified,DROP,,ILO_EIP_WPLF_NB,ilo/EIP_WPLF_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EIP_WPLF_NB,Potential labour force +EMP_2EMP_NB.001,Employment (ILO modelled estimates),Total,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.002,Employment (ILO modelled estimates),15 to 24 years old,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.002,Employment (ILO modelled estimates),15 years old and over,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.002,Employment (ILO modelled estimates),25 years old and over,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,Construction,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.003,Employment (ILO modelled estimates) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.004,Employment (ILO modelled estimates) by Economic sector,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.004,Employment (ILO modelled estimates) by Economic sector,Industry,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.004,Employment (ILO modelled estimates) by Economic sector,Services,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.005,Employment (ILO modelled estimates) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.006,"Employment (ILO modelled estimates) in Utilities (ISIC4_D, E) ","Utilities (ISIC4_D, E)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_DE__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.007,"Employment (ILO modelled estimates) in Transport; storage and communication (ISIC4_H, J) ","Transport; storage and communication (ISIC4_H, J)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_HJ__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.008,"Employment (ILO modelled estimates) in Real estate; business and administrative activities (ISIC4_L, M, N) ","Real estate; business and administrative activities (ISIC4_L, M, N)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_LMN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.009,"Employment (ILO modelled estimates) in Other services (ISIC4_R, S, T, U) ","Other services (ISIC4_R, S, T, U)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_RSTU__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.010,Employment (ILO modelled estimates),Female,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.010,Employment (ILO modelled estimates),Male,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.011,Employment (ILO modelled estimates) (15 to 24 years old),Female,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.011,Employment (ILO modelled estimates) (15 to 24 years old),Male,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.012,Employment (ILO modelled estimates) (15 years old and over),Female,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.012,Employment (ILO modelled estimates) (15 years old and over),Male,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.013,Employment (ILO modelled estimates) (25 years old and over),Female,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.013,Employment (ILO modelled estimates) (25 years old and over),Male,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,Construction,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.014,Employment (ILO modelled estimates) (Female) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,Construction,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.015,Employment (ILO modelled estimates) (Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.016,Employment (ILO modelled estimates) (Female) by Economic sector,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.016,Employment (ILO modelled estimates) (Female) by Economic sector,Industry,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.016,Employment (ILO modelled estimates) (Female) by Economic sector,Services,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.017,Employment (ILO modelled estimates) (Male) by Economic sector,Agriculture,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.017,Employment (ILO modelled estimates) (Male) by Economic sector,Industry,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.017,Employment (ILO modelled estimates) (Male) by Economic sector,Services,DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.018,Employment (ILO modelled estimates) (Female) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.019,Employment (ILO modelled estimates) (Male) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.020,"Employment (ILO modelled estimates) (Female) in Utilities (ISIC4_D, E) ","Utilities (ISIC4_D, E)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_DE__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.021,"Employment (ILO modelled estimates) (Male) in Utilities (ISIC4_D, E) ","Utilities (ISIC4_D, E)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_DE__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.022,"Employment (ILO modelled estimates) (Female) in Transport; storage and communication (ISIC4_H, J) ","Transport; storage and communication (ISIC4_H, J)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_HJ__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.023,"Employment (ILO modelled estimates) (Male) in Transport; storage and communication (ISIC4_H, J) ","Transport; storage and communication (ISIC4_H, J)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_HJ__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.024,"Employment (ILO modelled estimates) (Female) in Real estate; business and administrative activities (ISIC4_L, M, N) ","Real estate; business and administrative activities (ISIC4_L, M, N)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_LMN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.025,"Employment (ILO modelled estimates) (Male) in Real estate; business and administrative activities (ISIC4_L, M, N) ","Real estate; business and administrative activities (ISIC4_L, M, N)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_LMN__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.026,"Employment (ILO modelled estimates) (Female) in Other services (ISIC4_R, S, T, U) ","Other services (ISIC4_R, S, T, U)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_RSTU__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2EMP_NB.027,"Employment (ILO modelled estimates) (Male) in Other services (ISIC4_R, S, T, U) ","Other services (ISIC4_R, S, T, U)",DROP,,ILO_EMP_2EMP_NB,ilo/EMP_2EMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_RSTU__EDUCATION_LEVEL--_Z,EMP_2EMP_NB,Employment (ILO modelled estimates) +EMP_2FTE_NB.001,Full-time equivalent employment by Workweek hours,Based on 40 hours per week,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.WORKWEEK_HOURS--FTE40,EMP_2FTE_NB,Full-time equivalent employment +EMP_2FTE_NB.001,Full-time equivalent employment by Workweek hours,Based on 48 hours per week,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.WORKWEEK_HOURS--FTE48,EMP_2FTE_NB,Full-time equivalent employment +EMP_2FTE_NB.002,Full-time equivalent employment (Based on 40 hours per week) by Sex,Female,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.SEX--F__WORKWEEK_HOURS--FTE40,EMP_2FTE_NB,Full-time equivalent employment +EMP_2FTE_NB.002,Full-time equivalent employment (Based on 40 hours per week) by Sex,Male,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.SEX--M__WORKWEEK_HOURS--FTE40,EMP_2FTE_NB,Full-time equivalent employment +EMP_2FTE_NB.003,Full-time equivalent employment (Based on 48 hours per week) by Sex,Female,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.SEX--F__WORKWEEK_HOURS--FTE48,EMP_2FTE_NB,Full-time equivalent employment +EMP_2FTE_NB.003,Full-time equivalent employment (Based on 48 hours per week) by Sex,Male,,,ILO_EMP_2FTE_NB,ilo/EMP_2FTE_NB.SEX--M__WORKWEEK_HOURS--FTE48,EMP_2FTE_NB,Full-time equivalent employment +EMP_2NIF_NB.001,"Informal employment (ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_EMP_2NIF_NB,ilo/EMP_2NIF_NB,EMP_2NIF_NB,"Informal employment (ILO modelled estimates, as of Nov. 2023)" +EMP_2NIF_NB.002,"Informal employment (ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_EMP_2NIF_NB,ilo/EMP_2NIF_NB.SEX--F,EMP_2NIF_NB,"Informal employment (ILO modelled estimates, as of Nov. 2023) " +EMP_2NIF_NB.002,"Informal employment (ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_EMP_2NIF_NB,ilo/EMP_2NIF_NB.SEX--M,EMP_2NIF_NB,"Informal employment (ILO modelled estimates, as of Nov. 2023) " +EMP_2NIF_RT.001,"Informal employment rate (ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_EMP_2NIF_RT,ilo/EMP_2NIF_RT,EMP_2NIF_RT,"Informal employment rate (ILO modelled estimates, as of Nov. 2023)" +EMP_2NIF_RT.002,"Informal employment rate (ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_EMP_2NIF_RT,ilo/EMP_2NIF_RT.SEX--F,EMP_2NIF_RT,"Informal employment rate (ILO modelled estimates, as of Nov. 2023) " +EMP_2NIF_RT.002,"Informal employment rate (ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_EMP_2NIF_RT,ilo/EMP_2NIF_RT.SEX--M,EMP_2NIF_RT,"Informal employment rate (ILO modelled estimates, as of Nov. 2023) " +EMP_2TRU_RT.001,Time-related underemployment rate (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.AGE--Y15T24,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.001,Time-related underemployment rate (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.AGE--Y_GE15,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.001,Time-related underemployment rate (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.AGE--Y_GE25,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.002,Time-related underemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--F__AGE--Y15T24,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.002,Time-related underemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--M__AGE--Y15T24,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.003,Time-related underemployment rate (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--F__AGE--Y_GE15,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.003,Time-related underemployment rate (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--M__AGE--Y_GE15,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.004,Time-related underemployment rate (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--F__AGE--Y_GE25,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2TRU_RT.004,Time-related underemployment rate (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EMP_2TRU_RT,ilo/EMP_2TRU_RT.SEX--M__AGE--Y_GE25,EMP_2TRU_RT,Time-related underemployment rate (ILO modelled estimates) +EMP_2WAP_RT.001,Employment-to-population ratio (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y15T24,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.001,Employment-to-population ratio (ILO modelled estimates) by Age group,15 years old and over,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE15,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.001,Employment-to-population ratio (ILO modelled estimates) by Age group,25 years old and over,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE25,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.002,Employment-to-population ratio (ILO modelled estimates),15 to 24 years old,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.002,Employment-to-population ratio (ILO modelled estimates),15 years old and over,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.002,Employment-to-population ratio (ILO modelled estimates),25 years old and over,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.003,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old),Female,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.003,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old),Male,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.004,Employment-to-population ratio (ILO modelled estimates) (15 years old and over),Female,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.004,Employment-to-population ratio (ILO modelled estimates) (15 years old and over),Male,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.005,Employment-to-population ratio (ILO modelled estimates) (25 years old and over),Female,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.005,Employment-to-population ratio (ILO modelled estimates) (25 years old and over),Male,DROP,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.006,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.006,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.007,Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.007,Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.008,Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.008,Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.009,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y15T24__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.009,Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y15T24__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.010,Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE15__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.010,Employment-to-population ratio (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE15__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.011,Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE25__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.011,Employment-to-population ratio (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.AGE--Y_GE25__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.012,"Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.012,"Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.013,"Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.013,"Employment-to-population ratio (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.014,"Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.014,"Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.015,"Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.015,"Employment-to-population ratio (ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.016,"Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.016,"Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.017,"Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_2WAP_RT.017,"Employment-to-population ratio (ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_EMP_2WAP_RT,ilo/EMP_2WAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U,EMP_2WAP_RT,Employment-to-population ratio (ILO modelled estimates) +EMP_3EMP_NB.001,Youth employment by Age group,15 to 19 years old,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.001,Youth employment by Age group,15 to 29 years old,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.001,Youth employment by Age group,20 to 24 years old,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.001,Youth employment by Age group,25 to 29 years old,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.002,Youth employment (15 to 19 years old) by Disability status,Persons with disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.002,Youth employment (15 to 19 years old) by Disability status,Persons without disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.003,Youth employment (15 to 29 years old) by Disability status,Persons with disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.003,Youth employment (15 to 29 years old) by Disability status,Persons without disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.004,Youth employment (20 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.004,Youth employment (20 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.005,Youth employment (25 to 29 years old) by Disability status,Persons with disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.005,Youth employment (25 to 29 years old) by Disability status,Persons without disability,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.006,"Youth employment (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.006,"Youth employment (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.007,"Youth employment (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.007,"Youth employment (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.008,"Youth employment (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.008,"Youth employment (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.009,"Youth employment (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.009,"Youth employment (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.010,"Youth employment (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.010,"Youth employment (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.011,"Youth employment (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.011,"Youth employment (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.012,"Youth employment (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.012,"Youth employment (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.013,"Youth employment (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.013,"Youth employment (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.014,Youth employment (15 to 19 years old) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.015,Youth employment (15 to 29 years old) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.016,Youth employment (20 to 24 years old) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.017,Youth employment (25 to 29 years old) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.018,Youth employment (15 to 19 years old) by Economic sector,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.018,Youth employment (15 to 19 years old) by Economic sector,Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.018,Youth employment (15 to 19 years old) by Economic sector,Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.018,Youth employment (15 to 19 years old) by Economic sector,Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.018,Youth employment (15 to 19 years old) by Economic sector,Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.019,Youth employment (15 to 29 years old) by Economic sector,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.019,Youth employment (15 to 29 years old) by Economic sector,Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.019,Youth employment (15 to 29 years old) by Economic sector,Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.019,Youth employment (15 to 29 years old) by Economic sector,Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.019,Youth employment (15 to 29 years old) by Economic sector,Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.020,Youth employment (20 to 24 years old) by Economic sector,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.020,Youth employment (20 to 24 years old) by Economic sector,Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.020,Youth employment (20 to 24 years old) by Economic sector,Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.020,Youth employment (20 to 24 years old) by Economic sector,Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.020,Youth employment (20 to 24 years old) by Economic sector,Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.021,Youth employment (25 to 29 years old) by Economic sector,Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.021,Youth employment (25 to 29 years old) by Economic sector,Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.021,Youth employment (25 to 29 years old) by Economic sector,Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.021,Youth employment (25 to 29 years old) by Economic sector,Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.021,Youth employment (25 to 29 years old) by Economic sector,Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.022,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.023,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.024,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.025,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.026,Youth employment (15 to 19 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.027,Youth employment (15 to 29 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.028,Youth employment (20 to 24 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.029,Youth employment (25 to 29 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.030,Youth employment (15 to 19 years old) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.031,Youth employment (15 to 29 years old) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.032,Youth employment (20 to 24 years old) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.033,Youth employment (25 to 29 years old) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.034,Youth employment (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.034,Youth employment (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.034,Youth employment (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.034,Youth employment (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.034,Youth employment (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.035,Youth employment (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.035,Youth employment (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.035,Youth employment (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.035,Youth employment (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.035,Youth employment (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.036,Youth employment (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.036,Youth employment (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.036,Youth employment (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.036,Youth employment (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.036,Youth employment (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.037,Youth employment (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.037,Youth employment (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.037,Youth employment (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.037,Youth employment (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.037,Youth employment (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.038,Youth employment (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.038,Youth employment (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.038,Youth employment (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.039,Youth employment (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.039,Youth employment (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.039,Youth employment (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.040,Youth employment (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.040,Youth employment (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.040,Youth employment (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.041,Youth employment (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.041,Youth employment (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.041,Youth employment (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.042,"Youth employment (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.042,"Youth employment (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.043,"Youth employment (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.043,"Youth employment (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.044,"Youth employment (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.044,"Youth employment (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.045,"Youth employment (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.045,"Youth employment (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.046,"Youth employment (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.046,"Youth employment (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.047,"Youth employment (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.047,"Youth employment (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.047,"Youth employment (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.048,"Youth employment (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.048,"Youth employment (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.049,"Youth employment (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.049,"Youth employment (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.050,"Youth employment (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.050,"Youth employment (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.051,"Youth employment (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.051,"Youth employment (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.052,"Youth employment (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.052,"Youth employment (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.053,"Youth employment (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.053,"Youth employment (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,No hours actually worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,01-14 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,15-24 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,15-29 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,25-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,30-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,35-39 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,40-48 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,49-59 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,49+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,60+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.054,Youth employment (15 to 19 years old) by Hours worked,No. of hours worked not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,No hours actually worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,01-14 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,15-24 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,15-29 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,25-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,30-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,35-39 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,40-48 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,49-59 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,49+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,60+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.055,Youth employment (15 to 29 years old) by Hours worked,No. of hours worked not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,No hours actually worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,01-14 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,15-24 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,15-29 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,25-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,30-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,35-39 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,40-48 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,49-59 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,49+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,60+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.056,Youth employment (20 to 24 years old) by Hours worked,No. of hours worked not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,No hours actually worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,01-14 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,15-24 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,15-29 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,25-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,30-34 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,35-39 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,40-48 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,49-59 hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,49+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,60+ hours worked,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.057,Youth employment (25 to 29 years old) by Hours worked,No. of hours worked not classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.058,"Youth employment (15 to 19 years old, 01-14 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.058,"Youth employment (15 to 19 years old, 01-14 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.059,"Youth employment (15 to 19 years old, 15-24 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.059,"Youth employment (15 to 19 years old, 15-24 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.060,"Youth employment (15 to 19 years old, 15-29 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.060,"Youth employment (15 to 19 years old, 15-29 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.061,"Youth employment (15 to 19 years old, 25-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.061,"Youth employment (15 to 19 years old, 25-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.062,"Youth employment (15 to 19 years old, 30-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.062,"Youth employment (15 to 19 years old, 30-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.063,"Youth employment (15 to 19 years old, 35-39 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.063,"Youth employment (15 to 19 years old, 35-39 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.064,"Youth employment (15 to 19 years old, 40-48 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.064,"Youth employment (15 to 19 years old, 40-48 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.065,"Youth employment (15 to 19 years old, 49+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.065,"Youth employment (15 to 19 years old, 49+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.066,"Youth employment (15 to 19 years old, 49-59 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.066,"Youth employment (15 to 19 years old, 49-59 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.067,"Youth employment (15 to 19 years old, 60+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.067,"Youth employment (15 to 19 years old, 60+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.068,"Youth employment (15 to 19 years old, No hours actually worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.068,"Youth employment (15 to 19 years old, No hours actually worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.069,"Youth employment (15 to 19 years old, No. of hours worked not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.069,"Youth employment (15 to 19 years old, No. of hours worked not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.070,"Youth employment (15 to 29 years old, 01-14 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.070,"Youth employment (15 to 29 years old, 01-14 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.071,"Youth employment (15 to 29 years old, 15-24 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.071,"Youth employment (15 to 29 years old, 15-24 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.072,"Youth employment (15 to 29 years old, 15-29 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.072,"Youth employment (15 to 29 years old, 15-29 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.073,"Youth employment (15 to 29 years old, 25-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.073,"Youth employment (15 to 29 years old, 25-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.074,"Youth employment (15 to 29 years old, 30-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.074,"Youth employment (15 to 29 years old, 30-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.075,"Youth employment (15 to 29 years old, 35-39 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.075,"Youth employment (15 to 29 years old, 35-39 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.076,"Youth employment (15 to 29 years old, 40-48 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.076,"Youth employment (15 to 29 years old, 40-48 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.077,"Youth employment (15 to 29 years old, 49+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.077,"Youth employment (15 to 29 years old, 49+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.078,"Youth employment (15 to 29 years old, 49-59 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.078,"Youth employment (15 to 29 years old, 49-59 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.079,"Youth employment (15 to 29 years old, 60+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.079,"Youth employment (15 to 29 years old, 60+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.080,"Youth employment (15 to 29 years old, No hours actually worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.080,"Youth employment (15 to 29 years old, No hours actually worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.081,"Youth employment (15 to 29 years old, No. of hours worked not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.081,"Youth employment (15 to 29 years old, No. of hours worked not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.082,"Youth employment (20 to 24 years old, 01-14 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.082,"Youth employment (20 to 24 years old, 01-14 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.083,"Youth employment (20 to 24 years old, 15-24 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.083,"Youth employment (20 to 24 years old, 15-24 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.084,"Youth employment (20 to 24 years old, 15-29 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.084,"Youth employment (20 to 24 years old, 15-29 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.085,"Youth employment (20 to 24 years old, 25-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.085,"Youth employment (20 to 24 years old, 25-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.086,"Youth employment (20 to 24 years old, 30-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.086,"Youth employment (20 to 24 years old, 30-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.087,"Youth employment (20 to 24 years old, 35-39 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.087,"Youth employment (20 to 24 years old, 35-39 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.088,"Youth employment (20 to 24 years old, 40-48 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.088,"Youth employment (20 to 24 years old, 40-48 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.089,"Youth employment (20 to 24 years old, 49+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.089,"Youth employment (20 to 24 years old, 49+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.090,"Youth employment (20 to 24 years old, 49-59 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.090,"Youth employment (20 to 24 years old, 49-59 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.091,"Youth employment (20 to 24 years old, 60+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.091,"Youth employment (20 to 24 years old, 60+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.092,"Youth employment (20 to 24 years old, No hours actually worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.092,"Youth employment (20 to 24 years old, No hours actually worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.093,"Youth employment (20 to 24 years old, No. of hours worked not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.093,"Youth employment (20 to 24 years old, No. of hours worked not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.094,"Youth employment (25 to 29 years old, 01-14 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.094,"Youth employment (25 to 29 years old, 01-14 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H1T14,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.095,"Youth employment (25 to 29 years old, 15-24 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.095,"Youth employment (25 to 29 years old, 15-24 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H15T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.096,"Youth employment (25 to 29 years old, 15-29 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.096,"Youth employment (25 to 29 years old, 15-29 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.097,"Youth employment (25 to 29 years old, 25-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.097,"Youth employment (25 to 29 years old, 25-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H25T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.098,"Youth employment (25 to 29 years old, 30-34 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.098,"Youth employment (25 to 29 years old, 30-34 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H30T34,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.099,"Youth employment (25 to 29 years old, 35-39 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.099,"Youth employment (25 to 29 years old, 35-39 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H35T39,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.100,"Youth employment (25 to 29 years old, 40-48 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.100,"Youth employment (25 to 29 years old, 40-48 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H40T48,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.101,"Youth employment (25 to 29 years old, 49+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.101,"Youth employment (25 to 29 years old, 49+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--HGE49,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.102,"Youth employment (25 to 29 years old, 49-59 hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.102,"Youth employment (25 to 29 years old, 49-59 hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H49T59,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.103,"Youth employment (25 to 29 years old, 60+ hours worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.103,"Youth employment (25 to 29 years old, 60+ hours worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--HGE60,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.104,"Youth employment (25 to 29 years old, No hours actually worked) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.104,"Youth employment (25 to 29 years old, No hours actually worked) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--H0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.105,"Youth employment (25 to 29 years old, No. of hours worked not classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.105,"Youth employment (25 to 29 years old, No. of hours worked not classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__HOUR_BANDS--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.106,Youth employment (15 to 19 years old) by Full / part-time job,Full-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.106,Youth employment (15 to 19 years old) by Full / part-time job,Part-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.106,Youth employment (15 to 19 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.107,Youth employment (15 to 29 years old) by Full / part-time job,Full-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.107,Youth employment (15 to 29 years old) by Full / part-time job,Part-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.107,Youth employment (15 to 29 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.108,Youth employment (20 to 24 years old) by Full / part-time job,Full-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.108,Youth employment (20 to 24 years old) by Full / part-time job,Part-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.108,Youth employment (20 to 24 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.109,Youth employment (25 to 29 years old) by Full / part-time job,Full-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.109,Youth employment (25 to 29 years old) by Full / part-time job,Part-time,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.109,Youth employment (25 to 29 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.110,"Youth employment (15 to 19 years old, Full-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.110,"Youth employment (15 to 19 years old, Full-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.111,"Youth employment (15 to 19 years old, Job time unknown) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.111,"Youth employment (15 to 19 years old, Job time unknown) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.112,"Youth employment (15 to 19 years old, Part-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.112,"Youth employment (15 to 19 years old, Part-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.113,"Youth employment (15 to 29 years old, Full-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.113,"Youth employment (15 to 29 years old, Full-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.114,"Youth employment (15 to 29 years old, Job time unknown) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.114,"Youth employment (15 to 29 years old, Job time unknown) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.115,"Youth employment (15 to 29 years old, Part-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.115,"Youth employment (15 to 29 years old, Part-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.116,"Youth employment (20 to 24 years old, Full-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.116,"Youth employment (20 to 24 years old, Full-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.117,"Youth employment (20 to 24 years old, Job time unknown) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.117,"Youth employment (20 to 24 years old, Job time unknown) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.118,"Youth employment (20 to 24 years old, Part-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.118,"Youth employment (20 to 24 years old, Part-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.119,"Youth employment (25 to 29 years old, Full-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.119,"Youth employment (25 to 29 years old, Full-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--FULL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.120,"Youth employment (25 to 29 years old, Job time unknown) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.120,"Youth employment (25 to 29 years old, Job time unknown) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.121,"Youth employment (25 to 29 years old, Part-time) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.121,"Youth employment (25 to 29 years old, Part-time) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__JOB_TIME--PART,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.122,Youth employment (15 to 19 years old),Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.123,Youth employment (15 to 29 years old),Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.124,Youth employment (20 to 24 years old),Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.125,Youth employment (25 to 29 years old),Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,"Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,"Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.126,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,"Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,"Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.127,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,"Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,"Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.128,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,"Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,"Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.129,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO68,Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,"Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.130,Youth employment (15 to 19 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO68,Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,"Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.131,Youth employment (15 to 29 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO68,Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,"Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.132,Youth employment (20 to 24 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO68,Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,"Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.133,Youth employment (25 to 29 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.134,Youth employment (15 to 19 years old) by Categories of occupations according to skill,Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.134,Youth employment (15 to 19 years old) by Categories of occupations according to skill,Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.134,Youth employment (15 to 19 years old) by Categories of occupations according to skill,Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.135,Youth employment (15 to 29 years old) by Categories of occupations according to skill,Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.135,Youth employment (15 to 29 years old) by Categories of occupations according to skill,Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.135,Youth employment (15 to 29 years old) by Categories of occupations according to skill,Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.136,Youth employment (20 to 24 years old) by Categories of occupations according to skill,Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.136,Youth employment (20 to 24 years old) by Categories of occupations according to skill,Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.136,Youth employment (20 to 24 years old) by Categories of occupations according to skill,Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.137,Youth employment (25 to 29 years old) by Categories of occupations according to skill,Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.137,Youth employment (25 to 29 years old) by Categories of occupations according to skill,Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.137,Youth employment (25 to 29 years old) by Categories of occupations according to skill,Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.138,Youth employment (15 to 19 years old) by Sex,Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.138,Youth employment (15 to 19 years old) by Sex,Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.139,Youth employment (15 to 29 years old) by Sex,Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.139,Youth employment (15 to 29 years old) by Sex,Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.139,Youth employment (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.140,Youth employment (20 to 24 years old) by Sex,Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.140,Youth employment (20 to 24 years old) by Sex,Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.141,Youth employment (25 to 29 years old) by Sex,Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.141,Youth employment (25 to 29 years old) by Sex,Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.142,"Youth employment (15 to 19 years old, Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.143,"Youth employment (15 to 19 years old, Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.144,"Youth employment (15 to 29 years old, Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.145,"Youth employment (15 to 29 years old, Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.146,"Youth employment (20 to 24 years old, Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.147,"Youth employment (20 to 24 years old, Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.148,"Youth employment (25 to 29 years old, Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities",Construction,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities",Manufacturing,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.149,"Youth employment (25 to 29 years old, Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.150,"Youth employment (15 to 19 years old, Female) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.150,"Youth employment (15 to 19 years old, Female) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.150,"Youth employment (15 to 19 years old, Female) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.150,"Youth employment (15 to 19 years old, Female) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.150,"Youth employment (15 to 19 years old, Female) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.151,"Youth employment (15 to 19 years old, Male) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.151,"Youth employment (15 to 19 years old, Male) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.151,"Youth employment (15 to 19 years old, Male) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.151,"Youth employment (15 to 19 years old, Male) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.151,"Youth employment (15 to 19 years old, Male) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.152,"Youth employment (15 to 29 years old, Female) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.152,"Youth employment (15 to 29 years old, Female) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.152,"Youth employment (15 to 29 years old, Female) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.152,"Youth employment (15 to 29 years old, Female) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.152,"Youth employment (15 to 29 years old, Female) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.153,"Youth employment (15 to 29 years old, Male) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.153,"Youth employment (15 to 29 years old, Male) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.153,"Youth employment (15 to 29 years old, Male) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.153,"Youth employment (15 to 29 years old, Male) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.153,"Youth employment (15 to 29 years old, Male) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.154,"Youth employment (20 to 24 years old, Female) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.154,"Youth employment (20 to 24 years old, Female) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.154,"Youth employment (20 to 24 years old, Female) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.154,"Youth employment (20 to 24 years old, Female) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.154,"Youth employment (20 to 24 years old, Female) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.155,"Youth employment (20 to 24 years old, Male) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.155,"Youth employment (20 to 24 years old, Male) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.155,"Youth employment (20 to 24 years old, Male) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.155,"Youth employment (20 to 24 years old, Male) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.155,"Youth employment (20 to 24 years old, Male) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.156,"Youth employment (25 to 29 years old, Female) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.156,"Youth employment (25 to 29 years old, Female) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.156,"Youth employment (25 to 29 years old, Female) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.156,"Youth employment (25 to 29 years old, Female) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.156,"Youth employment (25 to 29 years old, Female) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.157,"Youth employment (25 to 29 years old, Male) by Economic sector",Agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.157,"Youth employment (25 to 29 years old, Male) by Economic sector",Non-agriculture,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.157,"Youth employment (25 to 29 years old, Male) by Economic sector",Industry,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.157,"Youth employment (25 to 29 years old, Male) by Economic sector",Services,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.157,"Youth employment (25 to 29 years old, Male) by Economic sector",Not classified by economic sector,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ECO_SECTOR_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.158,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.159,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.160,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.161,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.162,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.163,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.164,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.165,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC3_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.166,"Youth employment (15 to 19 years old, Female) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.167,"Youth employment (15 to 19 years old, Male) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.168,"Youth employment (15 to 29 years old, Female) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.169,"Youth employment (15 to 29 years old, Male) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.170,"Youth employment (20 to 24 years old, Female) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.171,"Youth employment (20 to 24 years old, Male) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.172,"Youth employment (25 to 29 years old, Female) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_A,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_B,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_C,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_D,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_E,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_F,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_G,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_H,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_I,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_J,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_K,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_L,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_M,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_N,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_O,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_P,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_Q,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_S,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.173,"Youth employment (25 to 29 years old, Male) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--ISIC4_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.174,"Youth employment (15 to 19 years old, Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.175,"Youth employment (15 to 19 years old, Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.176,"Youth employment (15 to 29 years old, Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.177,"Youth employment (15 to 29 years old, Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.178,"Youth employment (20 to 24 years old, Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.179,"Youth employment (20 to 24 years old, Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.180,"Youth employment (25 to 29 years old, Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.181,"Youth employment (25 to 29 years old, Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__ECONOMIC_ACTIVITY--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.182,"Youth employment (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.182,"Youth employment (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.182,"Youth employment (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.182,"Youth employment (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.182,"Youth employment (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.183,"Youth employment (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.183,"Youth employment (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.183,"Youth employment (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.183,"Youth employment (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.183,"Youth employment (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.184,"Youth employment (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.184,"Youth employment (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.184,"Youth employment (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.184,"Youth employment (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.184,"Youth employment (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.185,"Youth employment (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.185,"Youth employment (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.185,"Youth employment (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.185,"Youth employment (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.185,"Youth employment (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.186,"Youth employment (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.186,"Youth employment (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.186,"Youth employment (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.186,"Youth employment (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.186,"Youth employment (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.187,"Youth employment (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.187,"Youth employment (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.187,"Youth employment (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.187,"Youth employment (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.187,"Youth employment (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.188,"Youth employment (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.188,"Youth employment (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.188,"Youth employment (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.188,"Youth employment (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.188,"Youth employment (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.189,"Youth employment (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.189,"Youth employment (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.189,"Youth employment (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.189,"Youth employment (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.189,"Youth employment (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.190,"Youth employment (15 to 19 years old, Female)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.191,"Youth employment (15 to 19 years old, Male)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.192,"Youth employment (15 to 29 years old, Female)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.193,"Youth employment (15 to 29 years old, Male)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.194,"Youth employment (20 to 24 years old, Female)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.195,"Youth employment (20 to 24 years old, Male)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.196,"Youth employment (25 to 29 years old, Female)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.197,"Youth employment (25 to 29 years old, Male)",Occupations not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.198,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.199,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.200,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.201,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.202,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.203,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.204,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.205,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO08_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.206,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.207,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.208,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.209,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.210,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.211,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.212,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_0,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_7,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_8,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_9,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.213,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--ISCO88_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.214,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.214,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.214,"Youth employment (15 to 19 years old, Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.215,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.215,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.215,"Youth employment (15 to 19 years old, Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.216,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.216,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.216,"Youth employment (15 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.217,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.217,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.217,"Youth employment (15 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.218,"Youth employment (15 to 29 years old, Sex other than Female or Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.219,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.219,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.219,"Youth employment (20 to 24 years old, Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.220,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.220,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.220,"Youth employment (20 to 24 years old, Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.221,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.221,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.221,"Youth employment (25 to 29 years old, Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.222,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.222,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.222,"Youth employment (25 to 29 years old, Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__OCCUPATION--SKILL_L3-4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.223,Youth employment (15 to 19 years old) by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.224,Youth employment (15 to 29 years old) by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.225,Youth employment (20 to 24 years old) by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.226,Youth employment (25 to 29 years old) by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.227,Youth employment (15 to 19 years old) by Employment status,Employees,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.227,Youth employment (15 to 19 years old) by Employment status,Self-employed,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.227,Youth employment (15 to 19 years old) by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.228,Youth employment (15 to 29 years old) by Employment status,Employees,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.228,Youth employment (15 to 29 years old) by Employment status,Self-employed,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.228,Youth employment (15 to 29 years old) by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.229,Youth employment (20 to 24 years old) by Employment status,Employees,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.229,Youth employment (20 to 24 years old) by Employment status,Self-employed,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.229,Youth employment (20 to 24 years old) by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.230,Youth employment (25 to 29 years old) by Employment status,Employees,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.230,Youth employment (25 to 29 years old) by Employment status,Self-employed,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.230,Youth employment (25 to 29 years old) by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.231,"Youth employment (15 to 19 years old, Contributing family workers (ICSE93_5)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.231,"Youth employment (15 to 19 years old, Contributing family workers (ICSE93_5)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.232,"Youth employment (15 to 19 years old, Employees) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.232,"Youth employment (15 to 19 years old, Employees) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.233,"Youth employment (15 to 19 years old, Employees (ICSE93_1)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.233,"Youth employment (15 to 19 years old, Employees (ICSE93_1)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.234,"Youth employment (15 to 19 years old, Employers (ICSE93_2)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.234,"Youth employment (15 to 19 years old, Employers (ICSE93_2)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.235,"Youth employment (15 to 19 years old, Emplyment status not elsewhere classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.235,"Youth employment (15 to 19 years old, Emplyment status not elsewhere classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.236,"Youth employment (15 to 19 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.236,"Youth employment (15 to 19 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.237,"Youth employment (15 to 19 years old, Own-account workers (ICSE93_3)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.237,"Youth employment (15 to 19 years old, Own-account workers (ICSE93_3)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.238,"Youth employment (15 to 19 years old, Self-employed) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.238,"Youth employment (15 to 19 years old, Self-employed) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.239,"Youth employment (15 to 19 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.239,"Youth employment (15 to 19 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.240,"Youth employment (15 to 29 years old, Contributing family workers (ICSE93_5)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.240,"Youth employment (15 to 29 years old, Contributing family workers (ICSE93_5)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.241,"Youth employment (15 to 29 years old, Employees) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.241,"Youth employment (15 to 29 years old, Employees) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.241,"Youth employment (15 to 29 years old, Employees) by Sex",Sex other than Female or Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.242,"Youth employment (15 to 29 years old, Employees (ICSE93_1)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.242,"Youth employment (15 to 29 years old, Employees (ICSE93_1)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.242,"Youth employment (15 to 29 years old, Employees (ICSE93_1)) by Sex",Sex other than Female or Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--O__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.243,"Youth employment (15 to 29 years old, Employers (ICSE93_2)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.243,"Youth employment (15 to 29 years old, Employers (ICSE93_2)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.244,"Youth employment (15 to 29 years old, Emplyment status not elsewhere classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.244,"Youth employment (15 to 29 years old, Emplyment status not elsewhere classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.245,"Youth employment (15 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.245,"Youth employment (15 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.246,"Youth employment (15 to 29 years old, Own-account workers (ICSE93_3)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.246,"Youth employment (15 to 29 years old, Own-account workers (ICSE93_3)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.247,"Youth employment (15 to 29 years old, Self-employed) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.247,"Youth employment (15 to 29 years old, Self-employed) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.248,"Youth employment (15 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.248,"Youth employment (15 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.249,"Youth employment (20 to 24 years old, Contributing family workers (ICSE93_5)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.249,"Youth employment (20 to 24 years old, Contributing family workers (ICSE93_5)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.250,"Youth employment (20 to 24 years old, Employees) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.250,"Youth employment (20 to 24 years old, Employees) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.251,"Youth employment (20 to 24 years old, Employees (ICSE93_1)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.251,"Youth employment (20 to 24 years old, Employees (ICSE93_1)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.252,"Youth employment (20 to 24 years old, Employers (ICSE93_2)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.252,"Youth employment (20 to 24 years old, Employers (ICSE93_2)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.253,"Youth employment (20 to 24 years old, Emplyment status not elsewhere classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.253,"Youth employment (20 to 24 years old, Emplyment status not elsewhere classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.254,"Youth employment (20 to 24 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.254,"Youth employment (20 to 24 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.255,"Youth employment (20 to 24 years old, Own-account workers (ICSE93_3)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.255,"Youth employment (20 to 24 years old, Own-account workers (ICSE93_3)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.256,"Youth employment (20 to 24 years old, Self-employed) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.256,"Youth employment (20 to 24 years old, Self-employed) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.257,"Youth employment (20 to 24 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.257,"Youth employment (20 to 24 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.258,"Youth employment (25 to 29 years old, Contributing family workers (ICSE93_5)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.258,"Youth employment (25 to 29 years old, Contributing family workers (ICSE93_5)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.259,"Youth employment (25 to 29 years old, Employees) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.259,"Youth employment (25 to 29 years old, Employees) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_EES,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.260,"Youth employment (25 to 29 years old, Employees (ICSE93_1)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.260,"Youth employment (25 to 29 years old, Employees (ICSE93_1)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.261,"Youth employment (25 to 29 years old, Employers (ICSE93_2)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.261,"Youth employment (25 to 29 years old, Employers (ICSE93_2)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.262,"Youth employment (25 to 29 years old, Emplyment status not elsewhere classified) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.262,"Youth employment (25 to 29 years old, Emplyment status not elsewhere classified) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.263,"Youth employment (25 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.263,"Youth employment (25 to 29 years old, Members of producers' cooperatives (ICSE93_4)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.264,"Youth employment (25 to 29 years old, Own-account workers (ICSE93_3)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.264,"Youth employment (25 to 29 years old, Own-account workers (ICSE93_3)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.265,"Youth employment (25 to 29 years old, Self-employed) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.265,"Youth employment (25 to 29 years old, Self-employed) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.266,"Youth employment (25 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.266,"Youth employment (25 to 29 years old, Workers not classifiable by status (ICSE93_6)) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.267,Youth employment (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.267,Youth employment (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.267,Youth employment (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T19__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.268,Youth employment (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.268,Youth employment (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.268,Youth employment (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y15T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.269,Youth employment (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.269,Youth employment (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.269,Youth employment (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y20T24__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.270,Youth employment (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.270,Youth employment (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.270,Youth employment (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.AGE--Y25T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.271,"Youth employment (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.271,"Youth employment (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.272,"Youth employment (15 to 19 years old, Rural) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.272,"Youth employment (15 to 19 years old, Rural) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.273,"Youth employment (15 to 19 years old, Urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T19__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.273,"Youth employment (15 to 19 years old, Urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T19__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.274,"Youth employment (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.274,"Youth employment (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.275,"Youth employment (15 to 29 years old, Rural) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.275,"Youth employment (15 to 29 years old, Rural) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.276,"Youth employment (15 to 29 years old, Urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y15T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.276,"Youth employment (15 to 29 years old, Urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y15T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.277,"Youth employment (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.277,"Youth employment (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.278,"Youth employment (20 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.278,"Youth employment (20 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.279,"Youth employment (20 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y20T24__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.279,"Youth employment (20 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y20T24__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.280,"Youth employment (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.280,"Youth employment (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.281,"Youth employment (25 to 29 years old, Rural) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.281,"Youth employment (25 to 29 years old, Rural) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--R,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.282,"Youth employment (25 to 29 years old, Urban) by Sex",Female,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--F__AGE--Y25T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3EMP_NB.282,"Youth employment (25 to 29 years old, Urban) by Sex",Male,,,ILO_EMP_3EMP_NB,ilo/EMP_3EMP_NB.SEX--M__AGE--Y25T29__URBANISATION--U,EMP_3EMP_NB,Youth employment +EMP_3WAP_RT.001,Youth employment-to-population ratio by Age group,15 to 19 years old,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.001,Youth employment-to-population ratio by Age group,15 to 29 years old,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.001,Youth employment-to-population ratio by Age group,20 to 24 years old,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.001,Youth employment-to-population ratio by Age group,25 to 29 years old,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.002,Youth employment-to-population ratio (15 to 19 years old) by Disability status,Persons with disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.002,Youth employment-to-population ratio (15 to 19 years old) by Disability status,Persons without disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.003,Youth employment-to-population ratio (15 to 29 years old) by Disability status,Persons with disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.003,Youth employment-to-population ratio (15 to 29 years old) by Disability status,Persons without disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.004,Youth employment-to-population ratio (20 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.004,Youth employment-to-population ratio (20 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.005,Youth employment-to-population ratio (25 to 29 years old) by Disability status,Persons with disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.005,Youth employment-to-population ratio (25 to 29 years old) by Disability status,Persons without disability,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.006,"Youth employment-to-population ratio (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.006,"Youth employment-to-population ratio (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.007,"Youth employment-to-population ratio (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.007,"Youth employment-to-population ratio (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.008,"Youth employment-to-population ratio (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.008,"Youth employment-to-population ratio (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.009,"Youth employment-to-population ratio (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.009,"Youth employment-to-population ratio (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.010,"Youth employment-to-population ratio (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.010,"Youth employment-to-population ratio (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.011,"Youth employment-to-population ratio (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.011,"Youth employment-to-population ratio (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.012,"Youth employment-to-population ratio (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.012,"Youth employment-to-population ratio (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.013,"Youth employment-to-population ratio (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.013,"Youth employment-to-population ratio (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.014,Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.014,Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.014,Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.014,Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.014,Youth employment-to-population ratio (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.015,Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.015,Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.015,Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.015,Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.015,Youth employment-to-population ratio (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.016,Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.016,Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.016,Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.016,Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.016,Youth employment-to-population ratio (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.017,Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.017,Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.017,Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.017,Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.017,Youth employment-to-population ratio (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.018,Youth employment-to-population ratio (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.018,Youth employment-to-population ratio (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.018,Youth employment-to-population ratio (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.019,Youth employment-to-population ratio (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.019,Youth employment-to-population ratio (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.019,Youth employment-to-population ratio (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.020,Youth employment-to-population ratio (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.020,Youth employment-to-population ratio (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.020,Youth employment-to-population ratio (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.021,Youth employment-to-population ratio (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.021,Youth employment-to-population ratio (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.021,Youth employment-to-population ratio (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.022,"Youth employment-to-population ratio (15 to 19 years old, Attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.022,"Youth employment-to-population ratio (15 to 19 years old, Attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.023,"Youth employment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.023,"Youth employment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.024,"Youth employment-to-population ratio (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.024,"Youth employment-to-population ratio (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.025,"Youth employment-to-population ratio (15 to 29 years old, Attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.025,"Youth employment-to-population ratio (15 to 29 years old, Attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.026,"Youth employment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.026,"Youth employment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.027,"Youth employment-to-population ratio (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.027,"Youth employment-to-population ratio (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.027,"Youth employment-to-population ratio (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.028,"Youth employment-to-population ratio (20 to 24 years old, Attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.028,"Youth employment-to-population ratio (20 to 24 years old, Attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.029,"Youth employment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.029,"Youth employment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.030,"Youth employment-to-population ratio (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.030,"Youth employment-to-population ratio (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.031,"Youth employment-to-population ratio (25 to 29 years old, Attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.031,"Youth employment-to-population ratio (25 to 29 years old, Attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.032,"Youth employment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.032,"Youth employment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.033,"Youth employment-to-population ratio (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.033,"Youth employment-to-population ratio (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.034,Youth employment-to-population ratio (15 to 19 years old) by Sex,Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.034,Youth employment-to-population ratio (15 to 19 years old) by Sex,Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.035,Youth employment-to-population ratio (15 to 29 years old) by Sex,Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.035,Youth employment-to-population ratio (15 to 29 years old) by Sex,Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.035,Youth employment-to-population ratio (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--O__AGE--Y15T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.036,Youth employment-to-population ratio (20 to 24 years old) by Sex,Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.036,Youth employment-to-population ratio (20 to 24 years old) by Sex,Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.037,Youth employment-to-population ratio (25 to 29 years old) by Sex,Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.037,Youth employment-to-population ratio (25 to 29 years old) by Sex,Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.038,"Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.038,"Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.038,"Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.038,"Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.038,"Youth employment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.039,"Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.039,"Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.039,"Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.039,"Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.039,"Youth employment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.040,"Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.040,"Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.040,"Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.040,"Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.040,"Youth employment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.041,"Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.041,"Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.041,"Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.041,"Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.041,"Youth employment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.042,"Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.042,"Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.042,"Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.042,"Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.042,"Youth employment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.043,"Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.043,"Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.043,"Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.043,"Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.043,"Youth employment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.044,"Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.044,"Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.044,"Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.044,"Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.044,"Youth employment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.045,"Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.045,"Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.045,"Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.045,"Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.045,"Youth employment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.046,Youth employment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.046,Youth employment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.046,Youth employment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T19__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.047,Youth employment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.047,Youth employment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.047,Youth employment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y15T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.048,Youth employment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.048,Youth employment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.048,Youth employment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y20T24__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.049,Youth employment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.049,Youth employment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.049,Youth employment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.AGE--Y25T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.050,"Youth employment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.050,"Youth employment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.051,"Youth employment-to-population ratio (15 to 19 years old, Rural) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.051,"Youth employment-to-population ratio (15 to 19 years old, Rural) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.052,"Youth employment-to-population ratio (15 to 19 years old, Urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.052,"Youth employment-to-population ratio (15 to 19 years old, Urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.053,"Youth employment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.053,"Youth employment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.054,"Youth employment-to-population ratio (15 to 29 years old, Rural) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.054,"Youth employment-to-population ratio (15 to 29 years old, Rural) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.055,"Youth employment-to-population ratio (15 to 29 years old, Urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.055,"Youth employment-to-population ratio (15 to 29 years old, Urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.056,"Youth employment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.056,"Youth employment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.057,"Youth employment-to-population ratio (20 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.057,"Youth employment-to-population ratio (20 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.058,"Youth employment-to-population ratio (20 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.058,"Youth employment-to-population ratio (20 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.059,"Youth employment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.059,"Youth employment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.060,"Youth employment-to-population ratio (25 to 29 years old, Rural) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.060,"Youth employment-to-population ratio (25 to 29 years old, Rural) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.061,"Youth employment-to-population ratio (25 to 29 years old, Urban) by Sex",Female,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_3WAP_RT.061,"Youth employment-to-population ratio (25 to 29 years old, Urban) by Sex",Male,,,ILO_EMP_3WAP_RT,ilo/EMP_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U,EMP_3WAP_RT,Youth employment-to-population ratio +EMP_5NIF_NB.001,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.AGE--Y15T24,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.001,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.AGE--Y_GE15,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.001,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.AGE--Y_GE25,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.002,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--F__AGE--Y15T24,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.002,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--M__AGE--Y15T24,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.003,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--F__AGE--Y_GE15,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.003,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--M__AGE--Y_GE15,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.004,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--F__AGE--Y_GE25,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_NB.004,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EMP_5NIF_NB,ilo/EMP_5NIF_NB.SEX--M__AGE--Y_GE25,EMP_5NIF_NB,"Informal employment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.001,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.AGE--Y15T24,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.001,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.AGE--Y_GE15,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.001,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.AGE--Y_GE25,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.002,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--F__AGE--Y15T24,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.002,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--M__AGE--Y15T24,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.003,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--F__AGE--Y_GE15,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.003,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--M__AGE--Y_GE15,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.004,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--F__AGE--Y_GE25,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5NIF_RT.004,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EMP_5NIF_RT,ilo/EMP_5NIF_RT.SEX--M__AGE--Y_GE25,EMP_5NIF_RT,"Informal employment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.001,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.AGE--Y15T24,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.001,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.AGE--Y_GE15,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.001,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.AGE--Y_GE25,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.002,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--F__AGE--Y15T24,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.002,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--M__AGE--Y15T24,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.003,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--F__AGE--Y_GE15,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.003,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--M__AGE--Y_GE15,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.004,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--F__AGE--Y_GE25,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_NB.004,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EMP_5PIF_NB,ilo/EMP_5PIF_NB.SEX--M__AGE--Y_GE25,EMP_5PIF_NB,"Employment outside the formal sector, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.001,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.AGE--Y15T24,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.001,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.AGE--Y_GE15,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.001,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.AGE--Y_GE25,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.002,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--F__AGE--Y15T24,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.002,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--M__AGE--Y15T24,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.003,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--F__AGE--Y_GE15,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.003,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--M__AGE--Y_GE15,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.004,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--F__AGE--Y_GE25,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_5PIF_RT.004,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_EMP_5PIF_RT,ilo/EMP_5PIF_RT.SEX--M__AGE--Y_GE25,EMP_5PIF_RT,"Share of employment outside the formal secto, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +EMP_NIFL_NB.001,Informal employment,Total,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,15 to 19 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,15 to 24 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,15 to 64 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,15 years old and over,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,20 to 24 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y20T24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,25 to 29 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,25 to 34 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,25 to 54 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,25 years old and over,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,30 to 34 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y30T34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,35 to 39 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,35 to 44 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,40 to 44 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y40T44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,45 to 49 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,45 to 54 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,50 to 54 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y50T54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,55 to 59 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T59,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,55 to 64 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,60 to 64 years old,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y60T64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.002,Informal employment by Age group,65 years old and over,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.003,Informal employment (15 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.003,Informal employment (15 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.004,Informal employment (15 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.004,Informal employment (15 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.005,Informal employment (15 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.005,Informal employment (15 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.006,Informal employment (25 to 54 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.006,Informal employment (25 to 54 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.007,Informal employment (25 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.007,Informal employment (25 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.008,Informal employment (55 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.008,Informal employment (55 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.009,Informal employment (65 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.009,Informal employment (65 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.010,Informal employment,Total,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.011,Informal employment,Total,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.012,Informal employment by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.012,Informal employment by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,Construction,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.013,Informal employment by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.014,Informal employment by Economic sector,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.014,Informal employment by Economic sector,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.014,Informal employment by Economic sector,Industry,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.014,Informal employment by Economic sector,Services,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.014,Informal employment by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.015,Informal employment by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.016,Informal employment by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.017,Informal employment by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.018,Informal employment,Female,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.018,Informal employment,Male,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.018,Informal employment,Sex other than Female or Male,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.019,Informal employment,Female,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.019,Informal employment,Male,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.019,Informal employment,Sex other than Female or Male,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.020,Informal employment (Female) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.020,Informal employment (Female) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.021,Informal employment (Male) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.021,Informal employment (Male) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.022,Informal employment (Sex other than Female or Male) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.022,Informal employment (Sex other than Female or Male) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,Construction,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.023,Informal employment (Female) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,Construction,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.024,Informal employment (Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.025,Informal employment (Sex other than Female or Male) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.025,Informal employment (Sex other than Female or Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.025,Informal employment (Sex other than Female or Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.026,Informal employment (Female) by Economic sector,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.026,Informal employment (Female) by Economic sector,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.026,Informal employment (Female) by Economic sector,Industry,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.026,Informal employment (Female) by Economic sector,Services,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.026,Informal employment (Female) by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.027,Informal employment (Male) by Economic sector,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.027,Informal employment (Male) by Economic sector,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.027,Informal employment (Male) by Economic sector,Industry,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.027,Informal employment (Male) by Economic sector,Services,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.027,Informal employment (Male) by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.028,Informal employment (Sex other than Female or Male) by Economic sector,Agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.028,Informal employment (Sex other than Female or Male) by Economic sector,Non-agriculture,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.028,Informal employment (Sex other than Female or Male) by Economic sector,Industry,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.028,Informal employment (Sex other than Female or Male) by Economic sector,Services,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.029,Informal employment (Female) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.030,Informal employment (Male) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.031,Informal employment (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.032,Informal employment (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.033,Informal employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.033,Informal employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.034,Informal employment (Female) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.035,Informal employment (Male) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.036,"Informal employment (15 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.036,"Informal employment (15 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.037,"Informal employment (15 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.037,"Informal employment (15 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.038,"Informal employment (15 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.038,"Informal employment (15 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.039,"Informal employment (15 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.039,"Informal employment (15 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.040,"Informal employment (15 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.040,"Informal employment (15 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.041,"Informal employment (15 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.041,"Informal employment (15 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.041,"Informal employment (15 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.042,"Informal employment (25 to 54 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.042,"Informal employment (25 to 54 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.043,"Informal employment (25 to 54 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.043,"Informal employment (25 to 54 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.043,"Informal employment (25 to 54 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.044,"Informal employment (25 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.044,"Informal employment (25 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.045,"Informal employment (25 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.045,"Informal employment (25 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.045,"Informal employment (25 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.046,"Informal employment (55 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.046,"Informal employment (55 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.047,"Informal employment (55 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.047,"Informal employment (55 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.048,"Informal employment (65 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.048,"Informal employment (65 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.049,"Informal employment (65 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.049,"Informal employment (65 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.050,Informal employment (15 to 24 years old) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.051,Informal employment (15 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.052,Informal employment (25 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.053,"Informal employment (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.053,"Informal employment (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.053,"Informal employment (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.054,"Informal employment (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.054,"Informal employment (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.054,"Informal employment (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.055,"Informal employment (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.055,"Informal employment (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.055,"Informal employment (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.056,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.056,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.056,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.056,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.056,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.057,Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.057,Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.057,Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.057,Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.057,Informal employment (15 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.058,Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.058,Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.058,Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.058,Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.058,Informal employment (25 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.059,"Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.059,"Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.060,"Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.060,"Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.061,"Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.061,"Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.062,Informal employment (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.062,Informal employment (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.063,Informal employment (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.063,Informal employment (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.064,Informal employment (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.064,Informal employment (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.065,"Informal employment (15 to 24 years old) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.066,"Informal employment (15 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.067,"Informal employment (25 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.068,"Informal employment (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.069,"Informal employment (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.070,"Informal employment (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.071,Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.071,Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.072,Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.072,Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.073,Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.073,Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.074,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.074,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.074,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.075,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.075,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.075,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.076,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.076,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.076,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.077,Informal employment (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.078,Informal employment (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.079,Informal employment (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.080,Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.080,Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.081,Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.081,Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.082,Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.082,Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.083,Informal employment (15 to 24 years old) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.084,Informal employment (15 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.085,Informal employment (25 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.086,"Informal employment (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.086,"Informal employment (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.086,"Informal employment (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.086,"Informal employment (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.087,"Informal employment (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.087,"Informal employment (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.087,"Informal employment (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.087,"Informal employment (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.088,"Informal employment (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.088,"Informal employment (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.088,"Informal employment (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.088,"Informal employment (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.089,Informal employment (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.089,Informal employment (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.090,Informal employment (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.090,Informal employment (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.091,Informal employment (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.091,Informal employment (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.092,"Informal employment (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.092,"Informal employment (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.093,"Informal employment (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.093,"Informal employment (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.094,"Informal employment (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.094,"Informal employment (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.095,"Informal employment (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.095,"Informal employment (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.096,"Informal employment (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.096,"Informal employment (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.097,"Informal employment (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.097,"Informal employment (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.098,Informal employment (15 to 24 years old) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.099,Informal employment (15 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.100,Informal employment (25 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.101,"Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.101,"Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.101,"Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.102,"Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.102,"Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.102,"Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.103,"Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.103,"Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.103,"Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.104,Informal employment (15 to 24 years old) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.105,Informal employment (15 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.106,Informal employment (25 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.107,"Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.107,"Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.107,"Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.107,"Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.107,"Informal employment (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.108,"Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.108,"Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.108,"Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.108,"Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.108,"Informal employment (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.109,"Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.109,"Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.109,"Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.109,"Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.109,"Informal employment (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.110,Informal employment (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.110,Informal employment (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.110,Informal employment (15 to 24 years old) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.111,Informal employment (15 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.111,Informal employment (15 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.111,Informal employment (15 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.112,Informal employment (25 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.112,Informal employment (25 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.112,Informal employment (25 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.113,"Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.113,"Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.113,"Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.113,"Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.113,"Informal employment (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.114,"Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.114,"Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.114,"Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.114,"Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.114,"Informal employment (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.115,"Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.115,"Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.115,"Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.115,"Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.115,"Informal employment (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.116,Informal employment (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.117,Informal employment (15 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.118,Informal employment (25 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.119,Informal employment (15 to 24 years old) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.120,Informal employment (15 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.121,Informal employment (25 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.122,Informal employment (15 to 24 years old) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.123,Informal employment (15 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.124,Informal employment (25 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.125,"Informal employment (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.125,"Informal employment (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.125,"Informal employment (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.125,"Informal employment (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.126,"Informal employment (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.126,"Informal employment (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.126,"Informal employment (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.126,"Informal employment (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.127,"Informal employment (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.127,"Informal employment (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.127,"Informal employment (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.127,"Informal employment (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.128,Informal employment (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.128,Informal employment (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.128,Informal employment (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.129,Informal employment (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.129,Informal employment (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.129,Informal employment (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.130,Informal employment (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.130,Informal employment (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.130,Informal employment (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.131,Informal employment (15 to 24 years old) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.132,Informal employment (15 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.133,Informal employment (25 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.134,Informal employment (15 to 24 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.135,Informal employment (15 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.136,Informal employment (25 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.137,Informal employment (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.137,Informal employment (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.137,Informal employment (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.138,Informal employment (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.138,Informal employment (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.138,Informal employment (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.139,Informal employment (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.139,Informal employment (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.139,Informal employment (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.140,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.140,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.140,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.140,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.140,Informal employment (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.141,Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.141,Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.141,Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.141,Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.141,Informal employment (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.142,Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.142,Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.142,Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.142,Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.142,Informal employment (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.143,"Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.143,"Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.143,"Informal employment (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.144,"Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.144,"Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.144,"Informal employment (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.145,"Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.145,"Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.145,"Informal employment (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.146,Informal employment (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.146,Informal employment (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.147,Informal employment (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.147,Informal employment (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.148,Informal employment (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.148,Informal employment (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.149,Informal employment (15 to 24 years old) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.150,Informal employment (15 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.151,Informal employment (25 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.152,"Informal employment (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.153,"Informal employment (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.154,"Informal employment (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.155,Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.155,Informal employment (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.156,Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.156,Informal employment (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.157,Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.157,Informal employment (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.158,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.158,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.158,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.158,"Informal employment (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.159,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.159,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.159,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.159,"Informal employment (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.160,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.160,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.160,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.160,"Informal employment (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.161,Informal employment (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.162,Informal employment (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.163,Informal employment (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.164,Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.164,Informal employment (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.165,Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.165,Informal employment (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.166,Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.166,Informal employment (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.167,"Informal employment (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.167,"Informal employment (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.167,"Informal employment (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.168,"Informal employment (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.168,"Informal employment (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.168,"Informal employment (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.169,"Informal employment (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.169,"Informal employment (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.169,"Informal employment (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.170,Informal employment (15 to 24 years old) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.170,Informal employment (15 to 24 years old) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.171,Informal employment (15 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.171,Informal employment (15 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.172,Informal employment (25 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.172,Informal employment (25 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.173,Informal employment (15 to 24 years old) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.174,Informal employment (15 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.175,Informal employment (25 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.176,Informal employment (15 to 24 years old) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.177,Informal employment (15 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.178,Informal employment (25 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.179,Informal employment (15 to 24 years old) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.180,Informal employment (15 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.181,Informal employment (25 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.182,"Informal employment (15 to 24 years old) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.183,"Informal employment (15 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.184,"Informal employment (25 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.185,"Informal employment (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.185,"Informal employment (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.185,"Informal employment (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.185,"Informal employment (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.186,"Informal employment (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.186,"Informal employment (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.186,"Informal employment (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.186,"Informal employment (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.187,"Informal employment (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.187,"Informal employment (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.187,"Informal employment (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.187,"Informal employment (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.188,Informal employment (15 to 24 years old) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.188,Informal employment (15 to 24 years old) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.188,Informal employment (15 to 24 years old) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.189,Informal employment (15 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.189,Informal employment (15 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.189,Informal employment (15 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.190,Informal employment (25 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.190,Informal employment (25 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.190,Informal employment (25 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.191,Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.191,Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.191,Informal employment (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.192,Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.192,Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.192,Informal employment (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.193,Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.193,Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.193,Informal employment (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.194,Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.194,Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.194,Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.194,Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.194,Informal employment (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.195,Informal employment (15 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.195,Informal employment (15 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.195,Informal employment (15 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.195,Informal employment (15 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.195,Informal employment (15 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.196,Informal employment (25 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.196,Informal employment (25 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.196,Informal employment (25 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.196,Informal employment (25 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.196,Informal employment (25 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.197,Informal employment (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.197,Informal employment (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.198,Informal employment (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.198,Informal employment (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.199,Informal employment (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.199,Informal employment (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.200,Informal employment (15 to 24 years old) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.201,Informal employment (15 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.202,Informal employment (25 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.203,Informal employment (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.203,Informal employment (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.203,Informal employment (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.204,Informal employment (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.204,Informal employment (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.204,Informal employment (15 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.205,Informal employment (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.205,Informal employment (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.205,Informal employment (25 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.206,Informal employment (15 to 24 years old) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.207,Informal employment (15 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.208,Informal employment (25 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.209,"Informal employment (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.210,"Informal employment (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.211,"Informal employment (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.212,Informal employment (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.213,Informal employment (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.214,Informal employment (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.215,Informal employment (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.216,Informal employment (15 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.217,Informal employment (25 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.218,Informal employment (15 to 24 years old) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.219,Informal employment (15 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.220,Informal employment (25 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.221,Informal employment (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.221,Informal employment (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.221,Informal employment (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.222,Informal employment (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.222,Informal employment (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.222,Informal employment (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.223,Informal employment (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.223,Informal employment (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.223,Informal employment (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.224,"Informal employment (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.224,"Informal employment (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.224,"Informal employment (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.224,"Informal employment (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.225,"Informal employment (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.225,"Informal employment (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.225,"Informal employment (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.225,"Informal employment (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.226,"Informal employment (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.226,"Informal employment (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.226,"Informal employment (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.226,"Informal employment (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.227,Informal employment (15 to 24 years old) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.227,Informal employment (15 to 24 years old) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.227,Informal employment (15 to 24 years old) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.228,Informal employment (15 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.228,Informal employment (15 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.228,Informal employment (15 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.229,Informal employment (25 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.229,Informal employment (25 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.229,Informal employment (25 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.230,Informal employment (15 to 24 years old) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.231,Informal employment (15 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.232,Informal employment (25 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.233,Informal employment (15 to 24 years old) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.234,Informal employment (15 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.235,Informal employment (25 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.236,Informal employment (15 to 24 years old) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.237,Informal employment (15 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.238,Informal employment (25 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.239,Informal employment (15 to 24 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.240,Informal employment (15 to 64 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.241,Informal employment (15 years old and over),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.242,Informal employment (25 to 34 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.243,Informal employment (25 to 54 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.244,Informal employment (25 years old and over),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.245,Informal employment (35 to 44 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.246,Informal employment (45 to 54 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.247,Informal employment (55 to 64 years old),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.248,Informal employment (65 years old and over),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.249,Informal employment (15 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.249,Informal employment (15 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.249,Informal employment (15 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.249,Informal employment (15 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.249,Informal employment (15 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.250,Informal employment (15 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.250,Informal employment (15 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.250,Informal employment (15 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.250,Informal employment (15 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.250,Informal employment (15 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.251,Informal employment (15 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.251,Informal employment (15 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.251,Informal employment (15 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.251,Informal employment (15 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.251,Informal employment (15 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.252,Informal employment (25 to 34 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.252,Informal employment (25 to 34 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.252,Informal employment (25 to 34 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.252,Informal employment (25 to 34 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.252,Informal employment (25 to 34 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.253,Informal employment (25 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.253,Informal employment (25 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.253,Informal employment (25 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.253,Informal employment (25 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.253,Informal employment (25 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.254,Informal employment (25 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.254,Informal employment (25 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.254,Informal employment (25 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.254,Informal employment (25 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.254,Informal employment (25 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.255,Informal employment (35 to 44 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.255,Informal employment (35 to 44 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.255,Informal employment (35 to 44 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.255,Informal employment (35 to 44 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.255,Informal employment (35 to 44 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.256,Informal employment (45 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.256,Informal employment (45 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.256,Informal employment (45 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.256,Informal employment (45 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.256,Informal employment (45 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.257,Informal employment (55 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.257,Informal employment (55 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.257,Informal employment (55 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.257,Informal employment (55 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.257,Informal employment (55 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.258,Informal employment (65 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.258,Informal employment (65 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.258,Informal employment (65 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.258,Informal employment (65 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.258,Informal employment (65 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.259,Informal employment (15 to 24 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.260,Informal employment (15 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.261,Informal employment (15 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.262,Informal employment (25 to 34 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.263,Informal employment (25 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.264,Informal employment (25 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.265,Informal employment (35 to 44 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.266,Informal employment (45 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.267,Informal employment (55 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.268,Informal employment (65 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.269,Informal employment (15 to 24 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.270,Informal employment (15 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.271,Informal employment (15 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.272,Informal employment (25 to 34 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.273,Informal employment (25 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.274,Informal employment (25 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.275,Informal employment (35 to 44 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.276,Informal employment (45 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.277,Informal employment (55 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.278,Informal employment (65 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.279,Informal employment (15 to 24 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.279,Informal employment (15 to 24 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.279,Informal employment (15 to 24 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.280,Informal employment (15 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.280,Informal employment (15 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.280,Informal employment (15 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.281,Informal employment (15 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.281,Informal employment (15 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.281,Informal employment (15 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.282,Informal employment (25 to 34 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.282,Informal employment (25 to 34 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.282,Informal employment (25 to 34 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.283,Informal employment (25 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.283,Informal employment (25 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.283,Informal employment (25 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.284,Informal employment (25 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.284,Informal employment (25 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.284,Informal employment (25 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.285,Informal employment (35 to 44 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.285,Informal employment (35 to 44 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.285,Informal employment (35 to 44 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.286,Informal employment (45 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.286,Informal employment (45 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.286,Informal employment (45 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.287,Informal employment (55 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.287,Informal employment (55 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.287,Informal employment (55 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.288,Informal employment (65 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.288,Informal employment (65 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.288,Informal employment (65 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.289,"Informal employment (15 to 24 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.289,"Informal employment (15 to 24 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.290,"Informal employment (15 to 24 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.290,"Informal employment (15 to 24 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.291,"Informal employment (15 to 24 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.291,"Informal employment (15 to 24 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.292,"Informal employment (15 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.292,"Informal employment (15 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.293,"Informal employment (15 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.293,"Informal employment (15 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.294,"Informal employment (15 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.294,"Informal employment (15 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.295,"Informal employment (15 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.295,"Informal employment (15 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.296,"Informal employment (15 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.296,"Informal employment (15 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.297,"Informal employment (15 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.297,"Informal employment (15 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.298,"Informal employment (25 to 34 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.298,"Informal employment (25 to 34 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.299,"Informal employment (25 to 34 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.299,"Informal employment (25 to 34 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.300,"Informal employment (25 to 34 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.300,"Informal employment (25 to 34 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.301,"Informal employment (25 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.301,"Informal employment (25 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.302,"Informal employment (25 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.302,"Informal employment (25 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.303,"Informal employment (25 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.303,"Informal employment (25 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.304,"Informal employment (25 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.304,"Informal employment (25 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.305,"Informal employment (25 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.305,"Informal employment (25 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.306,"Informal employment (25 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.306,"Informal employment (25 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.307,"Informal employment (35 to 44 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.307,"Informal employment (35 to 44 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.308,"Informal employment (35 to 44 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.308,"Informal employment (35 to 44 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.309,"Informal employment (35 to 44 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.309,"Informal employment (35 to 44 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.310,"Informal employment (45 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.310,"Informal employment (45 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.311,"Informal employment (45 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.311,"Informal employment (45 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.312,"Informal employment (45 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.312,"Informal employment (45 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.313,"Informal employment (55 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.313,"Informal employment (55 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.314,"Informal employment (55 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.314,"Informal employment (55 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.315,"Informal employment (55 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.315,"Informal employment (55 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.316,"Informal employment (65 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.316,"Informal employment (65 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.317,"Informal employment (65 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.317,"Informal employment (65 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.318,"Informal employment (65 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.318,"Informal employment (65 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.319,Informal employment (15 to 24 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.319,Informal employment (15 to 24 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.319,Informal employment (15 to 24 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.320,Informal employment (15 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.320,Informal employment (15 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.320,Informal employment (15 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.321,Informal employment (15 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.321,Informal employment (15 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.321,Informal employment (15 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.322,Informal employment (25 to 34 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.322,Informal employment (25 to 34 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.322,Informal employment (25 to 34 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.323,Informal employment (25 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.323,Informal employment (25 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.323,Informal employment (25 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.324,Informal employment (25 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.324,Informal employment (25 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.324,Informal employment (25 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.325,Informal employment (35 to 44 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.325,Informal employment (35 to 44 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.325,Informal employment (35 to 44 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.326,Informal employment (45 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.326,Informal employment (45 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.326,Informal employment (45 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.327,Informal employment (55 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.327,Informal employment (55 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.327,Informal employment (55 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.328,Informal employment (65 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.328,Informal employment (65 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.328,Informal employment (65 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.329,"Informal employment (15 to 24 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.329,"Informal employment (15 to 24 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.330,"Informal employment (15 to 24 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.330,"Informal employment (15 to 24 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.331,"Informal employment (15 to 24 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.331,"Informal employment (15 to 24 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.332,"Informal employment (15 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.332,"Informal employment (15 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.333,"Informal employment (15 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.333,"Informal employment (15 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.334,"Informal employment (15 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.334,"Informal employment (15 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.335,"Informal employment (15 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.335,"Informal employment (15 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.335,"Informal employment (15 years old and over, Full-time) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.336,"Informal employment (15 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.336,"Informal employment (15 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.337,"Informal employment (15 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.337,"Informal employment (15 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.338,"Informal employment (25 to 34 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.338,"Informal employment (25 to 34 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.339,"Informal employment (25 to 34 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.339,"Informal employment (25 to 34 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.340,"Informal employment (25 to 34 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.340,"Informal employment (25 to 34 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.341,"Informal employment (25 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.341,"Informal employment (25 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.342,"Informal employment (25 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.342,"Informal employment (25 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.343,"Informal employment (25 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.343,"Informal employment (25 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.344,"Informal employment (25 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.344,"Informal employment (25 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.344,"Informal employment (25 years old and over, Full-time) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.345,"Informal employment (25 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.345,"Informal employment (25 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.346,"Informal employment (25 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.346,"Informal employment (25 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.347,"Informal employment (35 to 44 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.347,"Informal employment (35 to 44 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.348,"Informal employment (35 to 44 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.348,"Informal employment (35 to 44 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.349,"Informal employment (35 to 44 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.349,"Informal employment (35 to 44 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.350,"Informal employment (45 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.350,"Informal employment (45 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.351,"Informal employment (45 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.351,"Informal employment (45 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.352,"Informal employment (45 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.352,"Informal employment (45 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.353,"Informal employment (55 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.353,"Informal employment (55 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.354,"Informal employment (55 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.354,"Informal employment (55 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.355,"Informal employment (55 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.355,"Informal employment (55 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.356,"Informal employment (65 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.356,"Informal employment (65 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.357,"Informal employment (65 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.357,"Informal employment (65 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.358,"Informal employment (65 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.358,"Informal employment (65 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.359,Informal employment (15 to 24 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.359,Informal employment (15 to 24 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.359,Informal employment (15 to 24 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.360,Informal employment (15 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.360,Informal employment (15 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.360,Informal employment (15 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.361,Informal employment (15 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.361,Informal employment (15 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.361,Informal employment (15 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.362,Informal employment (25 to 34 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.362,Informal employment (25 to 34 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.362,Informal employment (25 to 34 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.363,Informal employment (25 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.363,Informal employment (25 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.363,Informal employment (25 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.364,Informal employment (25 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.364,Informal employment (25 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.364,Informal employment (25 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.365,Informal employment (35 to 44 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.365,Informal employment (35 to 44 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.365,Informal employment (35 to 44 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.366,Informal employment (45 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.366,Informal employment (45 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.366,Informal employment (45 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.367,Informal employment (55 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.367,Informal employment (55 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.367,Informal employment (55 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.368,Informal employment (65 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.368,Informal employment (65 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.368,Informal employment (65 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.369,Informal employment (15 to 24 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.369,Informal employment (15 to 24 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.369,Informal employment (15 to 24 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.370,Informal employment (15 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.370,Informal employment (15 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.370,Informal employment (15 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.371,Informal employment (15 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.371,Informal employment (15 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.371,Informal employment (15 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.372,Informal employment (25 to 34 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.372,Informal employment (25 to 34 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.372,Informal employment (25 to 34 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.373,Informal employment (25 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.373,Informal employment (25 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.373,Informal employment (25 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.374,Informal employment (25 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.374,Informal employment (25 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.374,Informal employment (25 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.375,Informal employment (35 to 44 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.375,Informal employment (35 to 44 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.375,Informal employment (35 to 44 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.376,Informal employment (45 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.376,Informal employment (45 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.376,Informal employment (45 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.377,Informal employment (55 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.377,Informal employment (55 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.377,Informal employment (55 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.378,Informal employment (65 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.378,Informal employment (65 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.378,Informal employment (65 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.379,Informal employment (15 to 24 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.379,Informal employment (15 to 24 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.380,Informal employment (15 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.380,Informal employment (15 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.381,Informal employment (15 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.381,Informal employment (15 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.382,Informal employment (25 to 34 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.382,Informal employment (25 to 34 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.383,Informal employment (25 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.383,Informal employment (25 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.384,Informal employment (25 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.384,Informal employment (25 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.385,Informal employment (35 to 44 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.385,Informal employment (35 to 44 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.386,Informal employment (45 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.386,Informal employment (45 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.387,Informal employment (55 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.387,Informal employment (55 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.388,Informal employment (65 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.388,Informal employment (65 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.389,Informal employment (15 to 24 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.390,Informal employment (15 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.391,Informal employment (15 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.392,Informal employment (25 to 34 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.393,Informal employment (25 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.394,Informal employment (25 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.395,Informal employment (35 to 44 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.396,Informal employment (45 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.397,Informal employment (55 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.398,Informal employment (65 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.399,Informal employment (15 to 24 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.400,Informal employment (15 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.401,Informal employment (25 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.402,Informal employment (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.402,Informal employment (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.402,Informal employment (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.403,Informal employment (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.403,Informal employment (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.403,Informal employment (15 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.404,Informal employment (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.404,Informal employment (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.404,Informal employment (25 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.405,Informal employment (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.405,Informal employment (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.405,Informal employment (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.405,Informal employment (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.406,Informal employment (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.406,Informal employment (15 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.406,Informal employment (15 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.406,Informal employment (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.407,Informal employment (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.407,Informal employment (25 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.407,Informal employment (25 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.407,Informal employment (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.408,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.409,Informal employment (15 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.410,Informal employment (25 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.411,Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.411,Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.411,Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.411,Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.411,Informal employment (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.412,Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.412,Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.412,Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.412,Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.412,Informal employment (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.413,Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.413,Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.413,Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.413,Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.413,Informal employment (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.414,Informal employment (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.414,Informal employment (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.414,Informal employment (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.414,Informal employment (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.415,Informal employment (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.415,Informal employment (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.415,Informal employment (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.415,Informal employment (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.416,Informal employment (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.416,Informal employment (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.416,Informal employment (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.416,Informal employment (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.417,Informal employment (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.417,Informal employment (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.417,Informal employment (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.417,Informal employment (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.418,Informal employment (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.418,Informal employment (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.418,Informal employment (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.418,Informal employment (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.419,Informal employment (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.419,Informal employment (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.419,Informal employment (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.419,Informal employment (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.420,"Informal employment (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.420,"Informal employment (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.420,"Informal employment (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.421,"Informal employment (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.421,"Informal employment (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.421,"Informal employment (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.422,"Informal employment (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.422,"Informal employment (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.422,"Informal employment (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.423,Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.423,Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.423,Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.423,Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.423,Informal employment (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.424,Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.424,Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.424,Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.424,Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.424,Informal employment (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.425,Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.425,Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.425,Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.425,Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.425,Informal employment (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.426,Informal employment (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.426,"Informal employment (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.426,"Informal employment (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.427,Informal employment (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.427,"Informal employment (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.427,"Informal employment (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.428,Informal employment (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.428,"Informal employment (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.428,"Informal employment (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.429,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.430,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.431,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.432,Informal employment (15 to 24 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.433,Informal employment (15 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.434,Informal employment (25 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.435,Informal employment (15 to 24 years old) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.436,Informal employment (15 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.437,Informal employment (25 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.438,"Informal employment (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.438,"Informal employment (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.438,"Informal employment (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.439,"Informal employment (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.439,"Informal employment (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.439,"Informal employment (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.440,"Informal employment (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.440,"Informal employment (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.440,"Informal employment (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.441,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.441,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.441,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.441,Informal employment (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.442,Informal employment (15 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.442,Informal employment (15 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.442,Informal employment (15 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.442,Informal employment (15 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.443,Informal employment (25 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.443,Informal employment (25 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.443,Informal employment (25 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.443,Informal employment (25 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.444,Informal employment (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.444,Informal employment (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.444,Informal employment (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.444,Informal employment (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.445,Informal employment (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.445,Informal employment (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.445,Informal employment (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.445,Informal employment (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.446,Informal employment (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.446,Informal employment (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.446,Informal employment (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.446,Informal employment (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.447,Informal employment (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.447,Informal employment (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.448,Informal employment (15 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.448,Informal employment (15 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.449,Informal employment (25 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.449,Informal employment (25 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.450,Informal employment (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.450,Informal employment (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.451,Informal employment (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.451,Informal employment (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.452,Informal employment (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.452,Informal employment (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.453,Informal employment (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.453,Informal employment (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.454,Informal employment (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.454,Informal employment (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.455,Informal employment (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.455,Informal employment (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.456,Informal employment (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.456,Informal employment (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.456,Informal employment (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.456,Informal employment (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.457,Informal employment (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.457,Informal employment (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.457,Informal employment (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.457,Informal employment (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.458,Informal employment (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.458,Informal employment (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.458,Informal employment (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.458,Informal employment (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.459,Informal employment (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.459,Informal employment (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.459,Informal employment (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.460,Informal employment (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.460,Informal employment (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.460,Informal employment (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.461,Informal employment (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.461,Informal employment (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.461,Informal employment (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.462,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.462,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.462,Informal employment (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.463,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.463,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.463,Informal employment (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.464,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.464,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.464,Informal employment (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.465,Informal employment (15 to 19 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T19__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.465,Informal employment (15 to 19 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T19__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.466,Informal employment (15 to 24 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.466,Informal employment (15 to 24 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.467,Informal employment (15 to 64 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.467,Informal employment (15 to 64 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.467,Informal employment (15 to 64 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.468,Informal employment (15 years old and over) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.468,Informal employment (15 years old and over) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.468,Informal employment (15 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.469,Informal employment (20 to 24 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y20T24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.469,Informal employment (20 to 24 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y20T24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.470,Informal employment (25 to 29 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T29__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.470,Informal employment (25 to 29 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T29__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.471,Informal employment (25 to 34 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.471,Informal employment (25 to 34 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.471,Informal employment (25 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.472,Informal employment (25 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.472,Informal employment (25 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.472,Informal employment (25 to 54 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.473,Informal employment (25 years old and over) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.473,Informal employment (25 years old and over) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.473,Informal employment (25 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.474,Informal employment (30 to 34 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.474,Informal employment (30 to 34 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.474,Informal employment (30 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y30T34__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.475,Informal employment (35 to 39 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.475,Informal employment (35 to 39 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.475,Informal employment (35 to 39 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T39__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.476,Informal employment (35 to 44 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.476,Informal employment (35 to 44 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.476,Informal employment (35 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.477,Informal employment (40 to 44 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.477,Informal employment (40 to 44 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.477,Informal employment (40 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y40T44__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.478,Informal employment (45 to 49 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T49__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.478,Informal employment (45 to 49 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T49__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.479,Informal employment (45 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.479,Informal employment (45 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.480,Informal employment (50 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y50T54__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.480,Informal employment (50 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y50T54__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.481,Informal employment (55 to 59 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T59__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.481,Informal employment (55 to 59 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T59__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.482,Informal employment (55 to 64 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.482,Informal employment (55 to 64 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.483,Informal employment (60 to 64 years old) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y60T64__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.483,Informal employment (60 to 64 years old) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y60T64__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.484,Informal employment (65 years old and over) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.484,Informal employment (65 years old and over) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.485,"Informal employment (15 to 24 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.486,"Informal employment (15 to 24 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.487,"Informal employment (15 to 64 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.488,"Informal employment (15 to 64 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.489,"Informal employment (15 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.490,"Informal employment (15 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.491,"Informal employment (15 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.492,"Informal employment (25 to 34 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.493,"Informal employment (25 to 34 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.494,"Informal employment (25 to 54 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.495,"Informal employment (25 to 54 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.496,"Informal employment (25 to 54 years old, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.497,"Informal employment (25 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.498,"Informal employment (25 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.499,"Informal employment (25 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.500,"Informal employment (35 to 44 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.501,"Informal employment (35 to 44 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.502,"Informal employment (45 to 54 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.503,"Informal employment (45 to 54 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.504,"Informal employment (55 to 64 years old, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.505,"Informal employment (55 to 64 years old, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.506,"Informal employment (65 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.507,"Informal employment (65 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.508,"Informal employment (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.508,"Informal employment (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.508,"Informal employment (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.508,"Informal employment (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.508,"Informal employment (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.509,"Informal employment (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.509,"Informal employment (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.509,"Informal employment (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.509,"Informal employment (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.509,"Informal employment (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.510,"Informal employment (15 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.510,"Informal employment (15 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.510,"Informal employment (15 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.510,"Informal employment (15 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.510,"Informal employment (15 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.511,"Informal employment (15 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.511,"Informal employment (15 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.511,"Informal employment (15 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.511,"Informal employment (15 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.511,"Informal employment (15 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.512,"Informal employment (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.512,"Informal employment (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.512,"Informal employment (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.512,"Informal employment (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.512,"Informal employment (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.513,"Informal employment (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.513,"Informal employment (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.513,"Informal employment (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.513,"Informal employment (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.513,"Informal employment (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.514,"Informal employment (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.514,"Informal employment (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.514,"Informal employment (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.515,"Informal employment (25 to 34 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.515,"Informal employment (25 to 34 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.515,"Informal employment (25 to 34 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.515,"Informal employment (25 to 34 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.515,"Informal employment (25 to 34 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.516,"Informal employment (25 to 34 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.516,"Informal employment (25 to 34 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.516,"Informal employment (25 to 34 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.516,"Informal employment (25 to 34 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.516,"Informal employment (25 to 34 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.517,"Informal employment (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.517,"Informal employment (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.518,"Informal employment (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.518,"Informal employment (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.518,"Informal employment (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.518,"Informal employment (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.518,"Informal employment (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.519,"Informal employment (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.519,"Informal employment (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.519,"Informal employment (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.519,"Informal employment (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.519,"Informal employment (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.520,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.520,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.520,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.521,"Informal employment (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.521,"Informal employment (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.521,"Informal employment (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.521,"Informal employment (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.521,"Informal employment (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.522,"Informal employment (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.522,"Informal employment (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.522,"Informal employment (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.522,"Informal employment (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.522,"Informal employment (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.523,"Informal employment (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.523,"Informal employment (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.523,"Informal employment (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.524,"Informal employment (35 to 44 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.524,"Informal employment (35 to 44 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.524,"Informal employment (35 to 44 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.524,"Informal employment (35 to 44 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.524,"Informal employment (35 to 44 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.525,"Informal employment (35 to 44 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.525,"Informal employment (35 to 44 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.525,"Informal employment (35 to 44 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.525,"Informal employment (35 to 44 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.525,"Informal employment (35 to 44 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.526,"Informal employment (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.526,"Informal employment (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.527,"Informal employment (45 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.527,"Informal employment (45 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.527,"Informal employment (45 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.527,"Informal employment (45 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.527,"Informal employment (45 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.528,"Informal employment (45 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.528,"Informal employment (45 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.528,"Informal employment (45 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.528,"Informal employment (45 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.528,"Informal employment (45 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.529,"Informal employment (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.529,"Informal employment (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.529,"Informal employment (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.529,"Informal employment (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.529,"Informal employment (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.530,"Informal employment (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.530,"Informal employment (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.530,"Informal employment (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.530,"Informal employment (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.530,"Informal employment (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.531,"Informal employment (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.531,"Informal employment (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.531,"Informal employment (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.531,"Informal employment (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.531,"Informal employment (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.532,"Informal employment (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.532,"Informal employment (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.532,"Informal employment (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.532,"Informal employment (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.532,"Informal employment (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.533,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.534,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.535,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.536,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.537,"Informal employment (15 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.538,"Informal employment (15 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.539,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.540,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.541,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.542,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.543,"Informal employment (25 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.544,"Informal employment (25 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.545,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.546,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.547,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.548,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.549,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.550,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.551,"Informal employment (65 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.552,"Informal employment (65 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.553,"Informal employment (15 to 24 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.554,"Informal employment (15 to 24 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.555,"Informal employment (15 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.556,"Informal employment (15 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.557,"Informal employment (15 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.558,"Informal employment (15 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.559,"Informal employment (15 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.560,"Informal employment (25 to 34 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.561,"Informal employment (25 to 34 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.562,"Informal employment (25 to 34 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.563,"Informal employment (25 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.564,"Informal employment (25 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.565,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.566,"Informal employment (25 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.567,"Informal employment (25 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.568,"Informal employment (25 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.569,"Informal employment (35 to 44 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.570,"Informal employment (35 to 44 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.571,"Informal employment (45 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.572,"Informal employment (45 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.573,"Informal employment (55 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.574,"Informal employment (55 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.575,"Informal employment (65 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.576,"Informal employment (65 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.577,"Informal employment (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.577,"Informal employment (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.577,"Informal employment (15 to 24 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.578,"Informal employment (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.578,"Informal employment (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.578,"Informal employment (15 to 24 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.579,"Informal employment (15 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.579,"Informal employment (15 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.579,"Informal employment (15 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.580,"Informal employment (15 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.580,"Informal employment (15 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.580,"Informal employment (15 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.581,"Informal employment (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.581,"Informal employment (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.581,"Informal employment (15 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.582,"Informal employment (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.582,"Informal employment (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.582,"Informal employment (15 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.583,"Informal employment (15 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.583,"Informal employment (15 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.584,"Informal employment (25 to 34 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.584,"Informal employment (25 to 34 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.584,"Informal employment (25 to 34 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.585,"Informal employment (25 to 34 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.585,"Informal employment (25 to 34 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.585,"Informal employment (25 to 34 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.586,"Informal employment (25 to 34 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.587,"Informal employment (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.587,"Informal employment (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.587,"Informal employment (25 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.588,"Informal employment (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.588,"Informal employment (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.588,"Informal employment (25 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.589,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.589,"Informal employment (25 to 54 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.590,"Informal employment (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.590,"Informal employment (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.590,"Informal employment (25 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.591,"Informal employment (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.591,"Informal employment (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.591,"Informal employment (25 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.592,"Informal employment (25 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.592,"Informal employment (25 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.593,"Informal employment (35 to 44 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.593,"Informal employment (35 to 44 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.593,"Informal employment (35 to 44 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.594,"Informal employment (35 to 44 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.594,"Informal employment (35 to 44 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.594,"Informal employment (35 to 44 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.595,"Informal employment (35 to 44 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.596,"Informal employment (45 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.596,"Informal employment (45 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.596,"Informal employment (45 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.597,"Informal employment (45 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.597,"Informal employment (45 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.597,"Informal employment (45 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.598,"Informal employment (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.598,"Informal employment (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.598,"Informal employment (55 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.599,"Informal employment (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.599,"Informal employment (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.599,"Informal employment (55 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.600,"Informal employment (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.600,"Informal employment (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.600,"Informal employment (65 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.601,"Informal employment (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.601,"Informal employment (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.601,"Informal employment (65 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.602,"Informal employment (15 to 24 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.602,"Informal employment (15 to 24 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.602,"Informal employment (15 to 24 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.603,"Informal employment (15 to 24 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.603,"Informal employment (15 to 24 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.603,"Informal employment (15 to 24 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.604,"Informal employment (15 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.604,"Informal employment (15 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.604,"Informal employment (15 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.605,"Informal employment (15 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.605,"Informal employment (15 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.605,"Informal employment (15 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.606,"Informal employment (15 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.606,"Informal employment (15 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.606,"Informal employment (15 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.607,"Informal employment (15 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.607,"Informal employment (15 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.607,"Informal employment (15 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.608,"Informal employment (15 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.609,"Informal employment (25 to 34 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.609,"Informal employment (25 to 34 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.609,"Informal employment (25 to 34 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.610,"Informal employment (25 to 34 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.610,"Informal employment (25 to 34 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.610,"Informal employment (25 to 34 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.611,"Informal employment (25 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.611,"Informal employment (25 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.611,"Informal employment (25 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.612,"Informal employment (25 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.612,"Informal employment (25 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.612,"Informal employment (25 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.613,"Informal employment (25 to 54 years old, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.614,"Informal employment (25 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.614,"Informal employment (25 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.614,"Informal employment (25 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.615,"Informal employment (25 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.615,"Informal employment (25 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.615,"Informal employment (25 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.616,"Informal employment (25 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.617,"Informal employment (35 to 44 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.617,"Informal employment (35 to 44 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.617,"Informal employment (35 to 44 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.618,"Informal employment (35 to 44 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.618,"Informal employment (35 to 44 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.618,"Informal employment (35 to 44 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.619,"Informal employment (45 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.619,"Informal employment (45 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.619,"Informal employment (45 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.620,"Informal employment (45 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.620,"Informal employment (45 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.620,"Informal employment (45 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.621,"Informal employment (55 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.621,"Informal employment (55 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.621,"Informal employment (55 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.622,"Informal employment (55 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.622,"Informal employment (55 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.622,"Informal employment (55 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.623,"Informal employment (65 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.623,"Informal employment (65 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.623,"Informal employment (65 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.624,"Informal employment (65 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.624,"Informal employment (65 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.624,"Informal employment (65 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.625,"Informal employment (15 to 24 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.625,"Informal employment (15 to 24 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.626,"Informal employment (15 to 24 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.626,"Informal employment (15 to 24 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.627,"Informal employment (15 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.627,"Informal employment (15 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.628,"Informal employment (15 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.628,"Informal employment (15 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.629,"Informal employment (15 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.629,"Informal employment (15 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.630,"Informal employment (15 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.630,"Informal employment (15 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.631,"Informal employment (15 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.632,"Informal employment (25 to 34 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.632,"Informal employment (25 to 34 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.633,"Informal employment (25 to 34 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.633,"Informal employment (25 to 34 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.634,"Informal employment (25 to 34 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.635,"Informal employment (25 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.635,"Informal employment (25 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.636,"Informal employment (25 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.636,"Informal employment (25 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.637,"Informal employment (25 to 54 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.638,"Informal employment (25 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.638,"Informal employment (25 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.639,"Informal employment (25 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.639,"Informal employment (25 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.640,"Informal employment (25 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.641,"Informal employment (35 to 44 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.641,"Informal employment (35 to 44 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.642,"Informal employment (35 to 44 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.642,"Informal employment (35 to 44 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.643,"Informal employment (35 to 44 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.644,"Informal employment (45 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.644,"Informal employment (45 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.645,"Informal employment (45 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.645,"Informal employment (45 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.646,"Informal employment (55 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.646,"Informal employment (55 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.647,"Informal employment (55 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.647,"Informal employment (55 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.648,"Informal employment (65 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.648,"Informal employment (65 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.649,"Informal employment (65 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.649,"Informal employment (65 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.650,"Informal employment (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.651,"Informal employment (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.652,"Informal employment (15 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.653,"Informal employment (15 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.654,"Informal employment (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.655,"Informal employment (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.656,"Informal employment (25 to 34 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.657,"Informal employment (25 to 34 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.658,"Informal employment (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.659,"Informal employment (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.660,"Informal employment (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.661,"Informal employment (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.662,"Informal employment (35 to 44 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.663,"Informal employment (35 to 44 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.664,"Informal employment (45 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.665,"Informal employment (45 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.666,"Informal employment (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.667,"Informal employment (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.668,"Informal employment (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.669,"Informal employment (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.670,Informal employment (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.670,Informal employment (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.670,Informal employment (15 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.671,Informal employment (15 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.671,Informal employment (15 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.671,Informal employment (15 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.672,Informal employment (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.672,Informal employment (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.672,Informal employment (15 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.673,Informal employment (25 to 34 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.673,Informal employment (25 to 34 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.673,Informal employment (25 to 34 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.674,Informal employment (25 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.674,Informal employment (25 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.674,Informal employment (25 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.675,Informal employment (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.675,Informal employment (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.675,Informal employment (25 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.676,Informal employment (35 to 44 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.676,Informal employment (35 to 44 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.676,Informal employment (35 to 44 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.677,Informal employment (45 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.677,Informal employment (45 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.677,Informal employment (45 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.678,Informal employment (55 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.678,Informal employment (55 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.678,Informal employment (55 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.679,Informal employment (65 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.679,Informal employment (65 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.679,Informal employment (65 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.680,"Informal employment (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.680,"Informal employment (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.681,"Informal employment (15 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.681,"Informal employment (15 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.682,"Informal employment (15 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.682,"Informal employment (15 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.683,"Informal employment (15 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.683,"Informal employment (15 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.684,"Informal employment (15 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.684,"Informal employment (15 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.684,"Informal employment (15 to 64 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.685,"Informal employment (15 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.685,"Informal employment (15 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.686,"Informal employment (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.686,"Informal employment (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.687,"Informal employment (15 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.687,"Informal employment (15 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.687,"Informal employment (15 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.688,"Informal employment (15 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.688,"Informal employment (15 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.688,"Informal employment (15 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.689,"Informal employment (25 to 34 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.689,"Informal employment (25 to 34 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.690,"Informal employment (25 to 34 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.690,"Informal employment (25 to 34 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.690,"Informal employment (25 to 34 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.691,"Informal employment (25 to 34 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.691,"Informal employment (25 to 34 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.691,"Informal employment (25 to 34 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.692,"Informal employment (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.692,"Informal employment (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.693,"Informal employment (25 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.693,"Informal employment (25 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.693,"Informal employment (25 to 54 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.694,"Informal employment (25 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.694,"Informal employment (25 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.694,"Informal employment (25 to 54 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.695,"Informal employment (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.695,"Informal employment (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.696,"Informal employment (25 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.696,"Informal employment (25 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.696,"Informal employment (25 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.697,"Informal employment (25 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.697,"Informal employment (25 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.697,"Informal employment (25 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.698,"Informal employment (35 to 44 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.698,"Informal employment (35 to 44 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.699,"Informal employment (35 to 44 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.699,"Informal employment (35 to 44 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.699,"Informal employment (35 to 44 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.700,"Informal employment (35 to 44 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.700,"Informal employment (35 to 44 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.701,"Informal employment (45 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.701,"Informal employment (45 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.702,"Informal employment (45 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.702,"Informal employment (45 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.703,"Informal employment (45 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.703,"Informal employment (45 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.704,"Informal employment (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.704,"Informal employment (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.705,"Informal employment (55 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.705,"Informal employment (55 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.706,"Informal employment (55 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.706,"Informal employment (55 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.707,"Informal employment (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.707,"Informal employment (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.708,"Informal employment (65 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.708,"Informal employment (65 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.709,"Informal employment (65 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.709,"Informal employment (65 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.710,Informal employment by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.710,Informal employment by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.711,Informal employment (Persons with disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.711,Informal employment (Persons with disability) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.711,Informal employment (Persons with disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.711,Informal employment (Persons with disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.711,Informal employment (Persons with disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.712,Informal employment (Persons without disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.712,Informal employment (Persons without disability) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.712,Informal employment (Persons without disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.712,Informal employment (Persons without disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.712,Informal employment (Persons without disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.713,Informal employment (Persons with disability) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.713,Informal employment (Persons with disability) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.713,Informal employment (Persons with disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.714,Informal employment (Persons without disability) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.714,Informal employment (Persons without disability) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.714,Informal employment (Persons without disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.715,"Informal employment (Persons with disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.715,"Informal employment (Persons with disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.716,"Informal employment (Persons with disability, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.716,"Informal employment (Persons with disability, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.717,"Informal employment (Persons with disability, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.717,"Informal employment (Persons with disability, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.718,"Informal employment (Persons without disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.718,"Informal employment (Persons without disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.719,"Informal employment (Persons without disability, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.719,"Informal employment (Persons without disability, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.720,"Informal employment (Persons without disability, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.720,"Informal employment (Persons without disability, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.721,Informal employment (Persons with disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.721,Informal employment (Persons with disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.721,Informal employment (Persons with disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.722,Informal employment (Persons without disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.722,Informal employment (Persons without disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.722,Informal employment (Persons without disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.723,Informal employment (Persons with disability) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.723,Informal employment (Persons with disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.723,Informal employment (Persons with disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.724,Informal employment (Persons without disability) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.724,Informal employment (Persons without disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.724,Informal employment (Persons without disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.725,Informal employment (Persons with disability) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.725,Informal employment (Persons with disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.726,Informal employment (Persons without disability) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.726,Informal employment (Persons without disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.727,Informal employment (Persons with disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.728,Informal employment (Persons without disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.729,Informal employment (Persons with disability) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.729,Informal employment (Persons with disability) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.730,Informal employment (Persons without disability) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.730,Informal employment (Persons without disability) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.730,Informal employment (Persons without disability) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.731,"Informal employment (Persons with disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.731,"Informal employment (Persons with disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.731,"Informal employment (Persons with disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.731,"Informal employment (Persons with disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.731,"Informal employment (Persons with disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.732,"Informal employment (Persons with disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.732,"Informal employment (Persons with disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.732,"Informal employment (Persons with disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.732,"Informal employment (Persons with disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.732,"Informal employment (Persons with disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.733,"Informal employment (Persons without disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.733,"Informal employment (Persons without disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.733,"Informal employment (Persons without disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.733,"Informal employment (Persons without disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.733,"Informal employment (Persons without disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.734,"Informal employment (Persons without disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.734,"Informal employment (Persons without disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.734,"Informal employment (Persons without disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.734,"Informal employment (Persons without disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.734,"Informal employment (Persons without disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.735,"Informal employment (Persons without disability, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.736,"Informal employment (Persons with disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.736,"Informal employment (Persons with disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.736,"Informal employment (Persons with disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.737,"Informal employment (Persons with disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.737,"Informal employment (Persons with disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.737,"Informal employment (Persons with disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.738,"Informal employment (Persons without disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.738,"Informal employment (Persons without disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.738,"Informal employment (Persons without disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.739,"Informal employment (Persons without disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.739,"Informal employment (Persons without disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.739,"Informal employment (Persons without disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.740,"Informal employment (Persons without disability, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.741,"Informal employment (Persons with disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.741,"Informal employment (Persons with disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.741,"Informal employment (Persons with disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.742,"Informal employment (Persons with disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.742,"Informal employment (Persons with disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.742,"Informal employment (Persons with disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.743,"Informal employment (Persons without disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.743,"Informal employment (Persons without disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.743,"Informal employment (Persons without disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.744,"Informal employment (Persons without disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.744,"Informal employment (Persons without disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.744,"Informal employment (Persons without disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.745,"Informal employment (Persons with disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.745,"Informal employment (Persons with disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.746,"Informal employment (Persons with disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.746,"Informal employment (Persons with disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.747,"Informal employment (Persons without disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.747,"Informal employment (Persons without disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.748,"Informal employment (Persons without disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.748,"Informal employment (Persons without disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.749,"Informal employment (Persons without disability, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.750,"Informal employment (Persons with disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.751,"Informal employment (Persons with disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.752,"Informal employment (Persons without disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.753,"Informal employment (Persons without disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.754,Informal employment by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.755,"Informal employment in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.755,"Informal employment in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.755,"Informal employment in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.756,Informal employment in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.756,Informal employment in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.756,Informal employment in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.756,Informal employment in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.756,Informal employment in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.757,"Informal employment in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.757,"Informal employment in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.758,Informal employment in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.758,Informal employment in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.759,"Informal employment in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.760,"Informal employment in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.761,Informal employment in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.761,Informal employment in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.762,"Informal employment in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.762,"Informal employment in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.762,"Informal employment in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.763,Informal employment in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.764,Informal employment in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.764,Informal employment in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.765,Informal employment in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.766,"Informal employment in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.766,"Informal employment in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.766,"Informal employment in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.766,"Informal employment in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.767,Informal employment in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.767,Informal employment in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.768,"Informal employment in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.768,"Informal employment in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.769,"Informal employment in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.769,"Informal employment in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.770,Informal employment in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.771,"Informal employment in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.771,"Informal employment in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.771,"Informal employment in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.772,Informal employment in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.773,"Informal employment in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.773,"Informal employment in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.773,"Informal employment in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.773,"Informal employment in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.773,"Informal employment in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.774,Informal employment in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.774,Informal employment in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.774,Informal employment in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.775,"Informal employment in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.775,"Informal employment in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.775,"Informal employment in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.775,"Informal employment in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.775,"Informal employment in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.776,Informal employment in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.777,Informal employment in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.778,Informal employment in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.779,"Informal employment in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.779,"Informal employment in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.779,"Informal employment in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.779,"Informal employment in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.780,Informal employment in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.780,Informal employment in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.780,Informal employment in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.781,Informal employment in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.782,Informal employment by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.783,Informal employment in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.783,Informal employment in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.783,Informal employment in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.784,Informal employment in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.784,Informal employment in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.784,Informal employment in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.784,Informal employment in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.784,Informal employment in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.785,"Informal employment in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.785,"Informal employment in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.785,"Informal employment in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.786,Informal employment in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.786,Informal employment in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.787,Informal employment in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.788,"Informal employment in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.789,Informal employment in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.789,Informal employment in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.790,"Informal employment in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.790,"Informal employment in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.790,"Informal employment in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.790,"Informal employment in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.791,Informal employment in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.792,Informal employment in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.792,Informal employment in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.793,"Informal employment in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.793,"Informal employment in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.793,"Informal employment in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.794,Informal employment in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.794,Informal employment in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.795,Informal employment in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.796,Informal employment in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.797,Informal employment in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.798,"Informal employment in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.799,"Informal employment in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.799,"Informal employment in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.799,"Informal employment in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.799,"Informal employment in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.800,Informal employment in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.800,Informal employment in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.800,Informal employment in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.801,Informal employment in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.801,Informal employment in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.801,Informal employment in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.802,Informal employment in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.802,Informal employment in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.802,Informal employment in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.802,Informal employment in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.802,Informal employment in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.803,Informal employment in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.803,Informal employment in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.804,Informal employment in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.805,Informal employment in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.805,Informal employment in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.805,Informal employment in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.806,Informal employment in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.807,"Informal employment in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.808,Informal employment in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.809,Informal employment in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.810,Informal employment in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.811,Informal employment in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.811,Informal employment in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.811,Informal employment in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.812,"Informal employment in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.812,"Informal employment in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.812,"Informal employment in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.812,"Informal employment in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.813,Informal employment in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.813,Informal employment in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.813,Informal employment in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.814,Informal employment in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.815,Informal employment in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.816,Informal employment in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.817,Informal employment,No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.818,Informal employment by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.818,Informal employment by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.818,Informal employment by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.818,Informal employment by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.818,Informal employment by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.819,Informal employment by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.820,Informal employment by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,No hours actually worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,01-14 hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H1T14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,15-29 hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H15T29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,30-34 hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H30T34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,35-39 hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H35T39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,40-48 hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--H40T48,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,49+ hours worked,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--HGE49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.821,Informal employment by Hours worked,No. of hours worked not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.HOUR_BANDS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.822,Informal employment (01-14 hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H1T14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.822,Informal employment (01-14 hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H1T14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.823,Informal employment (15-29 hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H15T29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.823,Informal employment (15-29 hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H15T29,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.824,Informal employment (30-34 hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H30T34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.824,Informal employment (30-34 hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H30T34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.825,Informal employment (35-39 hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H35T39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.825,Informal employment (35-39 hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H35T39,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.826,Informal employment (40-48 hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H40T48,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.826,Informal employment (40-48 hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H40T48,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.826,Informal employment (40-48 hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__HOUR_BANDS--H40T48,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.827,Informal employment (49+ hours worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--HGE49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.827,Informal employment (49+ hours worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--HGE49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.827,Informal employment (49+ hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__HOUR_BANDS--HGE49,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.828,Informal employment (No hours actually worked) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--H0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.828,Informal employment (No hours actually worked) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--H0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.829,Informal employment (No. of hours worked not classified) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__HOUR_BANDS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.829,Informal employment (No. of hours worked not classified) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__HOUR_BANDS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.830,Informal employment by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.830,Informal employment by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.830,Informal employment by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.831,Informal employment (Institutional sector not classified) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.831,Informal employment (Institutional sector not classified) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.831,Informal employment (Institutional sector not classified) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.832,Informal employment (Private sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.832,Informal employment (Private sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.832,Informal employment (Private sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.833,Informal employment (Public sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.833,Informal employment (Public sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.833,Informal employment (Public sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.834,Informal employment (Institutional sector not classified) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.834,Informal employment (Institutional sector not classified) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.834,Informal employment (Institutional sector not classified) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.835,Informal employment (Private sector) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.835,Informal employment (Private sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.835,Informal employment (Private sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.836,Informal employment (Public sector) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.836,Informal employment (Public sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.836,Informal employment (Public sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.837,Informal employment (Institutional sector not classified) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.837,Informal employment (Institutional sector not classified) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.838,Informal employment (Private sector) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.838,Informal employment (Private sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.839,Informal employment (Public sector) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.839,Informal employment (Public sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.840,Informal employment (Institutional sector not classified) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.841,Informal employment (Private sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.842,Informal employment (Public sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.843,Informal employment (Institutional sector not classified) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.843,Informal employment (Institutional sector not classified) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.844,Informal employment (Private sector) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.844,Informal employment (Private sector) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.845,Informal employment (Public sector) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.845,Informal employment (Public sector) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.846,"Informal employment (Institutional sector not classified, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.846,"Informal employment (Institutional sector not classified, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.846,"Informal employment (Institutional sector not classified, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.847,"Informal employment (Institutional sector not classified, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.847,"Informal employment (Institutional sector not classified, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.847,"Informal employment (Institutional sector not classified, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.848,"Informal employment (Private sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.848,"Informal employment (Private sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.848,"Informal employment (Private sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.849,"Informal employment (Private sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.849,"Informal employment (Private sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.849,"Informal employment (Private sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.850,"Informal employment (Public sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.850,"Informal employment (Public sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.850,"Informal employment (Public sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.851,"Informal employment (Public sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.851,"Informal employment (Public sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.851,"Informal employment (Public sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.852,"Informal employment (Institutional sector not classified, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.852,"Informal employment (Institutional sector not classified, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.852,"Informal employment (Institutional sector not classified, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.853,"Informal employment (Institutional sector not classified, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.853,"Informal employment (Institutional sector not classified, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.853,"Informal employment (Institutional sector not classified, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.854,"Informal employment (Private sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.854,"Informal employment (Private sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.854,"Informal employment (Private sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.855,"Informal employment (Private sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.855,"Informal employment (Private sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.855,"Informal employment (Private sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.856,"Informal employment (Public sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.856,"Informal employment (Public sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.856,"Informal employment (Public sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.857,"Informal employment (Public sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.857,"Informal employment (Public sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.857,"Informal employment (Public sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.858,"Informal employment (Institutional sector not classified, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.858,"Informal employment (Institutional sector not classified, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.859,"Informal employment (Institutional sector not classified, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.859,"Informal employment (Institutional sector not classified, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.860,"Informal employment (Private sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.860,"Informal employment (Private sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.861,"Informal employment (Private sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.861,"Informal employment (Private sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.862,"Informal employment (Public sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.862,"Informal employment (Public sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.863,"Informal employment (Public sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.863,"Informal employment (Public sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.864,"Informal employment (Institutional sector not classified, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.865,"Informal employment (Institutional sector not classified, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.866,"Informal employment (Private sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.867,"Informal employment (Private sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.868,"Informal employment (Public sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.869,"Informal employment (Public sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.870,Informal employment by Full / part-time job,Full-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.870,Informal employment by Full / part-time job,Part-time,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.870,Informal employment by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.871,Informal employment (Full-time) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.871,Informal employment (Full-time) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.871,Informal employment (Full-time) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__JOB_TIME--FULL,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.872,Informal employment (Job time unknown) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.872,Informal employment (Job time unknown) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.873,Informal employment (Part-time) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.873,Informal employment (Part-time) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__JOB_TIME--PART,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.874,Informal employment by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.874,Informal employment by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.874,Informal employment by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.875,Informal employment Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.875,Informal employment Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.875,Informal employment Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.876,Informal employment Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.876,Informal employment Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.877,Informal employment Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.878,Informal employment (Divorced or legally separated),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.879,Informal employment (Marital status not elsewhere classified),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.879,Informal employment (Marital status not elsewhere classified),No schooling,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.880,Informal employment (Married),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.881,Informal employment (Married / Union / Cohabiting),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.882,Informal employment (Single),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.883,Informal employment (Single / Widowed / Divorced),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.884,Informal employment (Union / Cohabiting),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.885,Informal employment (Widowed),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.886,Informal employment (Divorced or legally separated) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.886,Informal employment (Divorced or legally separated) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.886,Informal employment (Divorced or legally separated) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.886,Informal employment (Divorced or legally separated) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.886,Informal employment (Divorced or legally separated) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.887,Informal employment (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.888,Informal employment (Married) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.888,Informal employment (Married) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.888,Informal employment (Married) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.888,Informal employment (Married) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.888,Informal employment (Married) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.889,Informal employment (Married / Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.889,Informal employment (Married / Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.889,Informal employment (Married / Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.889,Informal employment (Married / Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.889,Informal employment (Married / Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.890,Informal employment (Single) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.890,Informal employment (Single) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.890,Informal employment (Single) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.890,Informal employment (Single) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.890,Informal employment (Single) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.891,Informal employment (Single / Widowed / Divorced) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.891,Informal employment (Single / Widowed / Divorced) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.891,Informal employment (Single / Widowed / Divorced) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.891,Informal employment (Single / Widowed / Divorced) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.891,Informal employment (Single / Widowed / Divorced) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.892,Informal employment (Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.892,Informal employment (Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.892,Informal employment (Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.892,Informal employment (Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.892,Informal employment (Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.893,Informal employment (Widowed) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.893,Informal employment (Widowed) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.893,Informal employment (Widowed) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.893,Informal employment (Widowed) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.893,Informal employment (Widowed) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.894,Informal employment (Divorced or legally separated) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.895,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.896,Informal employment (Married) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.897,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.898,Informal employment (Single) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.899,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.900,Informal employment (Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.901,Informal employment (Widowed) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.902,Informal employment (Divorced or legally separated) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.903,Informal employment (Marital status not elsewhere classified) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.904,Informal employment (Married) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.905,Informal employment (Married / Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.906,Informal employment (Single) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.907,Informal employment (Single / Widowed / Divorced) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.908,Informal employment (Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.909,Informal employment (Widowed) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.910,Informal employment by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.911,Informal employment by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.911,Informal employment by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.911,Informal employment by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.912,Informal employment by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.912,Informal employment by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.912,Informal employment by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.912,Informal employment by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.913,Informal employment by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.914,Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.914,Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.914,Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.914,Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.914,Informal employment by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.915,Informal employment by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.915,Informal employment by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.915,Informal employment by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.915,Informal employment by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.916,Informal employment by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.916,Informal employment by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.916,Informal employment by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.916,Informal employment by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.917,"Informal employment by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.917,"Informal employment by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.917,"Informal employment by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.918,Informal employment by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.918,Informal employment by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.918,Informal employment by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.918,Informal employment by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.918,Informal employment by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.919,Informal employment by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.919,"Informal employment by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.919,"Informal employment by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.920,Informal employment by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.921,Informal employment by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.922,Informal employment by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.923,"Informal employment by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.923,"Informal employment by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.923,"Informal employment by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.924,Informal employment by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.924,Informal employment by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.924,Informal employment by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.924,Informal employment by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.925,Informal employment by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.925,Informal employment by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.925,Informal employment by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.925,Informal employment by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.926,Informal employment by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.926,Informal employment by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.927,Informal employment by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.927,Informal employment by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.928,Informal employment by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.928,Informal employment by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.929,Informal employment by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.929,Informal employment by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.929,Informal employment by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.929,Informal employment by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.930,Informal employment by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.930,Informal employment by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.930,Informal employment by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.931,Informal employment by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.931,Informal employment by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.931,Informal employment by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.932,Informal employment by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.932,Informal employment by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.932,Informal employment by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.933,Informal employment (Female) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.934,Informal employment (Male) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.935,"Informal employment (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.935,"Informal employment (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.935,"Informal employment (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.936,"Informal employment (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.936,"Informal employment (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.936,"Informal employment (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.937,Informal employment (Female) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.937,Informal employment (Female) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.937,Informal employment (Female) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.937,Informal employment (Female) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.937,Informal employment (Female) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.938,Informal employment (Male) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.938,Informal employment (Male) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.938,Informal employment (Male) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.938,Informal employment (Male) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.938,Informal employment (Male) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.939,"Informal employment (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.939,"Informal employment (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.940,"Informal employment (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.940,"Informal employment (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.941,Informal employment (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.941,Informal employment (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.942,Informal employment (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.942,Informal employment (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.943,"Informal employment (Female) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.944,"Informal employment (Male) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.945,"Informal employment (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.946,"Informal employment (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.947,Informal employment (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.947,Informal employment (Female) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.948,Informal employment (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.948,Informal employment (Male) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.949,"Informal employment (Female) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.949,"Informal employment (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.949,"Informal employment (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.950,"Informal employment (Male) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.950,"Informal employment (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.950,"Informal employment (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.951,Informal employment (Female) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.952,Informal employment (Male) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.953,Informal employment (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.953,Informal employment (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.954,Informal employment (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.954,Informal employment (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.955,Informal employment (Female) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.956,Informal employment (Male) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.957,"Informal employment (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.957,"Informal employment (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.957,"Informal employment (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.957,"Informal employment (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.958,"Informal employment (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.958,"Informal employment (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.958,"Informal employment (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.958,"Informal employment (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.959,Informal employment (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.959,Informal employment (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.960,Informal employment (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.960,Informal employment (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.961,"Informal employment (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.961,"Informal employment (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.962,"Informal employment (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.962,"Informal employment (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.963,"Informal employment (Female) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.963,"Informal employment (Female) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.964,"Informal employment (Male) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.964,"Informal employment (Male) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.965,Informal employment (Female) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.966,Informal employment (Male) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.967,"Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.967,"Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.967,"Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.968,"Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.968,"Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.968,"Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.969,Informal employment (Female) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.970,Informal employment (Male) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.971,"Informal employment (Female) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.971,"Informal employment (Female) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.971,"Informal employment (Female) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.971,"Informal employment (Female) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.971,"Informal employment (Female) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.972,"Informal employment (Male) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.972,"Informal employment (Male) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.972,"Informal employment (Male) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.972,"Informal employment (Male) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.972,"Informal employment (Male) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.973,Informal employment (Female) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.973,Informal employment (Female) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.973,Informal employment (Female) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.974,Informal employment (Male) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.974,Informal employment (Male) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.974,Informal employment (Male) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.975,"Informal employment (Female) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.975,"Informal employment (Female) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.975,"Informal employment (Female) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.975,"Informal employment (Female) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.975,"Informal employment (Female) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.976,"Informal employment (Male) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.976,"Informal employment (Male) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.976,"Informal employment (Male) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.976,"Informal employment (Male) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.976,"Informal employment (Male) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.977,Informal employment (Female) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.978,Informal employment (Male) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.979,Informal employment (Female) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.980,Informal employment (Male) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.981,Informal employment (Female) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.982,Informal employment (Male) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.983,"Informal employment (Female) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.983,"Informal employment (Female) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.983,"Informal employment (Female) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.983,"Informal employment (Female) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.984,"Informal employment (Male) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.984,"Informal employment (Male) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.984,"Informal employment (Male) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.984,"Informal employment (Male) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.985,Informal employment (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.985,Informal employment (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.985,Informal employment (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.986,Informal employment (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.986,Informal employment (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.986,Informal employment (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.987,Informal employment (Female) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.988,Informal employment (Male) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.989,Informal employment (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.990,Informal employment (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.991,Informal employment (Female) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.991,Informal employment (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.991,Informal employment (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.992,Informal employment (Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.992,Informal employment (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.992,Informal employment (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.993,Informal employment (Sex other than Female or Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.994,Informal employment (Female) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.994,Informal employment (Female) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.994,Informal employment (Female) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.994,Informal employment (Female) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.994,Informal employment (Female) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.995,Informal employment (Male) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.995,Informal employment (Male) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.995,Informal employment (Male) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.995,Informal employment (Male) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.995,Informal employment (Male) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.996,"Informal employment (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.996,"Informal employment (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.996,"Informal employment (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.997,"Informal employment (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.997,"Informal employment (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.997,"Informal employment (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.998,Informal employment (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.998,Informal employment (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.999,Informal employment (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.999,Informal employment (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1000,Informal employment (Female) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1001,Informal employment (Male) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1002,"Informal employment (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1003,"Informal employment (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1004,Informal employment (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1004,Informal employment (Female) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1005,Informal employment (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1005,Informal employment (Male) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1006,"Informal employment (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1006,"Informal employment (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1006,"Informal employment (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1006,"Informal employment (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1007,"Informal employment (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1007,"Informal employment (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1007,"Informal employment (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1007,"Informal employment (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1008,Informal employment (Female) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1009,Informal employment (Male) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1010,Informal employment (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1010,Informal employment (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1011,Informal employment (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1011,Informal employment (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1012,"Informal employment (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1012,"Informal employment (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1012,"Informal employment (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1013,"Informal employment (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1013,"Informal employment (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1013,"Informal employment (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1014,Informal employment (Female) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1014,Informal employment (Female) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1015,Informal employment (Male) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1015,Informal employment (Male) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1016,Informal employment (Female) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1017,Informal employment (Male) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1018,Informal employment (Female) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1019,Informal employment (Male) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1020,Informal employment (Female) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1021,Informal employment (Male) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1022,"Informal employment (Female) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1023,"Informal employment (Male) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1024,"Informal employment (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1024,"Informal employment (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1024,"Informal employment (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1024,"Informal employment (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1025,"Informal employment (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1025,"Informal employment (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1025,"Informal employment (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1025,"Informal employment (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1026,Informal employment (Female) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1026,Informal employment (Female) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1026,Informal employment (Female) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1027,Informal employment (Male) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1027,Informal employment (Male) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1027,Informal employment (Male) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1028,Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1028,Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1028,Informal employment (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1029,Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1029,Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1029,Informal employment (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1030,Informal employment (Sex other than Female or Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1031,Informal employment (Female) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1031,Informal employment (Female) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1031,Informal employment (Female) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1031,Informal employment (Female) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1031,Informal employment (Female) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1032,Informal employment (Male) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1032,Informal employment (Male) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1032,Informal employment (Male) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1032,Informal employment (Male) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1032,Informal employment (Male) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1033,Informal employment (Female) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1033,Informal employment (Female) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1034,Informal employment (Male) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1034,Informal employment (Male) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1035,Informal employment (Female) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1036,Informal employment (Male) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1037,Informal employment (Female) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1037,Informal employment (Female) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1037,Informal employment (Female) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1038,Informal employment (Male) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1038,Informal employment (Male) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1038,Informal employment (Male) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1039,Informal employment (Female) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1040,Informal employment (Male) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1041,"Informal employment (Female) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1042,"Informal employment (Male) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1043,Informal employment (Female) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1044,Informal employment (Male) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1045,Informal employment (Female) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1046,Informal employment (Male) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1047,Informal employment (Female) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1048,Informal employment (Male) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1049,Informal employment (Female) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1049,Informal employment (Female) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1049,Informal employment (Female) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1050,Informal employment (Male) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1050,Informal employment (Male) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1050,Informal employment (Male) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1051,"Informal employment (Female) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1051,"Informal employment (Female) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1051,"Informal employment (Female) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1051,"Informal employment (Female) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1052,"Informal employment (Male) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1052,"Informal employment (Male) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1052,"Informal employment (Male) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1052,"Informal employment (Male) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1053,Informal employment (Female) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1053,Informal employment (Female) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1053,Informal employment (Female) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1054,Informal employment (Male) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1054,Informal employment (Male) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1054,Informal employment (Male) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1055,Informal employment (Female) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1056,Informal employment (Male) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1057,Informal employment (Female) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1058,Informal employment (Male) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1059,Informal employment (Female) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1060,Informal employment (Male) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1061,Informal employment (Female),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1062,Informal employment (Male),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1063,Informal employment (Sex other than Female or Male),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1064,Informal employment (Female) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1064,Informal employment (Female) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1064,Informal employment (Female) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1064,Informal employment (Female) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1064,Informal employment (Female) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1065,Informal employment (Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1065,Informal employment (Male) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1065,Informal employment (Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1065,Informal employment (Male) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1065,Informal employment (Male) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1066,Informal employment (Sex other than Female or Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1066,Informal employment (Sex other than Female or Male) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1066,Informal employment (Sex other than Female or Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1067,Informal employment (Female) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1068,Informal employment (Male) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1069,Informal employment (Female) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1070,Informal employment (Male) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1071,Informal employment (Sex other than Female or Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1072,Informal employment (Female) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1072,Informal employment (Female) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1072,Informal employment (Female) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1073,Informal employment (Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1073,Informal employment (Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1073,Informal employment (Male) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1074,Informal employment (Sex other than Female or Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1074,Informal employment (Sex other than Female or Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1075,Informal employment (Female) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1075,Informal employment (Female) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1075,Informal employment (Female) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1076,Informal employment (Male) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1076,Informal employment (Male) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1076,Informal employment (Male) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1077,Informal employment (Sex other than Female or Male) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1078,Informal employment (Female) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1078,Informal employment (Female) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1079,Informal employment (Male) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1079,Informal employment (Male) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1080,Informal employment (Sex other than Female or Male) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1081,Informal employment (Female) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1082,Informal employment (Male) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1083,"Informal employment (Female, Divorced or legally separated)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1084,"Informal employment (Female, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1084,"Informal employment (Female, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1085,"Informal employment (Female, Married)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1086,"Informal employment (Female, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1087,"Informal employment (Female, Single)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1088,"Informal employment (Female, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1089,"Informal employment (Female, Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1090,"Informal employment (Female, Widowed)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1091,"Informal employment (Male, Divorced or legally separated)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1092,"Informal employment (Male, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1092,"Informal employment (Male, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1093,"Informal employment (Male, Married)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1094,"Informal employment (Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1095,"Informal employment (Male, Single)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1096,"Informal employment (Male, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1097,"Informal employment (Male, Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1098,"Informal employment (Male, Widowed)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1099,"Informal employment (Sex other than Female or Male, Married)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1100,"Informal employment (Sex other than Female or Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1101,"Informal employment (Female, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1101,"Informal employment (Female, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1101,"Informal employment (Female, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1101,"Informal employment (Female, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1101,"Informal employment (Female, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1102,"Informal employment (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1103,"Informal employment (Female, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1103,"Informal employment (Female, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1103,"Informal employment (Female, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1103,"Informal employment (Female, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1103,"Informal employment (Female, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1104,"Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1104,"Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1104,"Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1104,"Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1104,"Informal employment (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1105,"Informal employment (Female, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1105,"Informal employment (Female, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1105,"Informal employment (Female, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1105,"Informal employment (Female, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1105,"Informal employment (Female, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1106,"Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1106,"Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1106,"Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1106,"Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1106,"Informal employment (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1107,"Informal employment (Female, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1107,"Informal employment (Female, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1107,"Informal employment (Female, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1107,"Informal employment (Female, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1107,"Informal employment (Female, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1108,"Informal employment (Female, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1108,"Informal employment (Female, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1108,"Informal employment (Female, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1108,"Informal employment (Female, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1108,"Informal employment (Female, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1109,"Informal employment (Male, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1109,"Informal employment (Male, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1109,"Informal employment (Male, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1109,"Informal employment (Male, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1109,"Informal employment (Male, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1110,"Informal employment (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1111,"Informal employment (Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1111,"Informal employment (Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1111,"Informal employment (Male, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1111,"Informal employment (Male, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1111,"Informal employment (Male, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1112,"Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1112,"Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1112,"Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1112,"Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1112,"Informal employment (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1113,"Informal employment (Male, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1113,"Informal employment (Male, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1113,"Informal employment (Male, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1113,"Informal employment (Male, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1113,"Informal employment (Male, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1114,"Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1114,"Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1114,"Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1114,"Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1114,"Informal employment (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1115,"Informal employment (Male, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1115,"Informal employment (Male, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1115,"Informal employment (Male, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1115,"Informal employment (Male, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1115,"Informal employment (Male, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1116,"Informal employment (Male, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1116,"Informal employment (Male, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1116,"Informal employment (Male, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1116,"Informal employment (Male, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1116,"Informal employment (Male, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1117,"Informal employment (Sex other than Female or Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1117,"Informal employment (Sex other than Female or Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1118,"Informal employment (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1118,"Informal employment (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1119,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1120,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1121,"Informal employment (Female, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1122,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1123,"Informal employment (Female, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1124,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1125,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1126,"Informal employment (Female, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1127,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1128,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1129,"Informal employment (Male, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1130,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1131,"Informal employment (Male, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1132,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1133,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1134,"Informal employment (Male, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1135,"Informal employment (Female, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1136,"Informal employment (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1137,"Informal employment (Female, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1138,"Informal employment (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1139,"Informal employment (Female, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1140,"Informal employment (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1141,"Informal employment (Female, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1142,"Informal employment (Female, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1143,"Informal employment (Male, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1144,"Informal employment (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1145,"Informal employment (Male, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1146,"Informal employment (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1147,"Informal employment (Male, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1148,"Informal employment (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1149,"Informal employment (Male, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1150,"Informal employment (Male, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1151,"Informal employment (Sex other than Female or Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1152,"Informal employment (Sex other than Female or Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1153,Informal employment (Female) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1154,Informal employment (Male) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_X__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1155,Informal employment (Female) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1155,Informal employment (Female) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1155,Informal employment (Female) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1156,Informal employment (Male) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_01__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1156,Informal employment (Male) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_02__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1156,Informal employment (Male) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_03__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1157,Informal employment (Female) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1157,Informal employment (Female) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1157,Informal employment (Female) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1157,Informal employment (Female) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1158,Informal employment (Male) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_11__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1158,Informal employment (Male) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_12__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1158,Informal employment (Male) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_13__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1158,Informal employment (Male) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_14__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1159,Informal employment (Female) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_21__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_22__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_23__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_25__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1160,Informal employment (Male) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_26__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1161,Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1161,Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1161,Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1161,Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1161,Informal employment (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1162,Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_31__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1162,Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_32__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1162,Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_33__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1162,Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_34__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1162,Informal employment (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_35__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1163,Informal employment (Female) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1163,Informal employment (Female) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1163,Informal employment (Female) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1163,Informal employment (Female) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1164,Informal employment (Male) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_41__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1164,Informal employment (Male) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_42__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1164,Informal employment (Male) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_43__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1164,Informal employment (Male) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_44__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1165,Informal employment (Female) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1165,Informal employment (Female) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1165,Informal employment (Female) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1165,Informal employment (Female) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1166,Informal employment (Male) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_51__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1166,Informal employment (Male) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_52__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1166,Informal employment (Male) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_53__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1166,Informal employment (Male) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_54__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1167,"Informal employment (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1167,"Informal employment (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1167,"Informal employment (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1168,"Informal employment (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_61__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1168,"Informal employment (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_62__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1168,"Informal employment (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_63__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1169,Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1169,Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1169,Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1169,Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1169,Informal employment (Female) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1170,Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_71__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1170,Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_72__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1170,Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_73__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1170,Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_74__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1170,Informal employment (Male) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_75__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1171,Informal employment (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1171,"Informal employment (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1171,"Informal employment (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1172,Informal employment (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_81__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1172,"Informal employment (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_82__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1172,"Informal employment (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_83__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1173,Informal employment (Female) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_91__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_92__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_93__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_94__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_95__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1174,Informal employment (Male) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO08_96__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1175,Informal employment (Female) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1176,Informal employment (Male) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_X__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1177,Informal employment (Female) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1178,Informal employment (Male) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_01__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1179,"Informal employment (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1179,"Informal employment (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1179,"Informal employment (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1180,"Informal employment (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_11__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1180,"Informal employment (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_12__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1180,"Informal employment (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_13__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1181,Informal employment (Female) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1181,Informal employment (Female) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1181,Informal employment (Female) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1181,Informal employment (Female) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1182,Informal employment (Male) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_21__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1182,Informal employment (Male) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_22__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1182,Informal employment (Male) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_23__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1182,Informal employment (Male) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_24__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1183,Informal employment (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1183,Informal employment (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1183,Informal employment (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1183,Informal employment (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1184,Informal employment (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_31__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1184,Informal employment (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_32__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1184,Informal employment (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_33__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1184,Informal employment (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_34__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1185,Informal employment (Female) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1185,Informal employment (Female) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1186,Informal employment (Male) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_41__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1186,Informal employment (Male) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_42__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1187,Informal employment (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1187,Informal employment (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1188,Informal employment (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_51__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1188,Informal employment (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1189,Informal employment (Sex other than Female or Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_52__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1190,Informal employment (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1190,Informal employment (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1191,Informal employment (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1191,Informal employment (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_62__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1192,Informal employment (Sex other than Female or Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_61__SEX--O,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1193,Informal employment (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1193,Informal employment (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1193,Informal employment (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1193,Informal employment (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1194,Informal employment (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_71__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1194,Informal employment (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_72__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1194,Informal employment (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_73__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1194,Informal employment (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_74__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1195,Informal employment (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1195,Informal employment (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1195,Informal employment (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1196,Informal employment (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_81__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1196,Informal employment (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_82__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1196,Informal employment (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_83__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1197,Informal employment (Female) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1197,Informal employment (Female) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1197,Informal employment (Female) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93__SEX--F,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1198,Informal employment (Male) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_91__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1198,Informal employment (Male) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_92__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1198,Informal employment (Male) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.OCCUPATION--ISCO88_93__SEX--M,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1199,Informal employment by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1200,Informal employment by Employment status,Employees,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1200,Informal employment by Employment status,Self-employed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1200,Informal employment by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1201,Informal employment (Contributing family workers (ICSE93_5)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1201,Informal employment (Contributing family workers (ICSE93_5)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1201,Informal employment (Contributing family workers (ICSE93_5)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1202,Informal employment (Employees) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1202,Informal employment (Employees) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1202,Informal employment (Employees) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1203,Informal employment (Employees (ICSE93_1)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1203,Informal employment (Employees (ICSE93_1)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1203,Informal employment (Employees (ICSE93_1)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1204,Informal employment (Employers (ICSE93_2)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1204,Informal employment (Employers (ICSE93_2)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1205,Informal employment (Emplyment status not elsewhere classified) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1205,Informal employment (Emplyment status not elsewhere classified) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1206,Informal employment (Members of producers' cooperatives (ICSE93_4)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1206,Informal employment (Members of producers' cooperatives (ICSE93_4)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1207,Informal employment (Own-account workers (ICSE93_3)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1207,Informal employment (Own-account workers (ICSE93_3)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1207,Informal employment (Own-account workers (ICSE93_3)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1208,Informal employment (Self-employed) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1208,Informal employment (Self-employed) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1208,Informal employment (Self-employed) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1209,Informal employment (Workers not classifiable by status (ICSE93_6)) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1209,Informal employment (Workers not classifiable by status (ICSE93_6)) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1210,Informal employment by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1210,Informal employment by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1210,Informal employment by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1211,Informal employment (Not classsified as rural or urban) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1211,Informal employment (Not classsified as rural or urban) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1212,Informal employment (Rural) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1212,Informal employment (Rural) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1213,Informal employment (Urban) by Disability status,Persons with disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1213,Informal employment (Urban) by Disability status,Persons without disability,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1214,"Informal employment (Not classsified as rural or urban, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1214,"Informal employment (Not classsified as rural or urban, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1215,"Informal employment (Not classsified as rural or urban, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1215,"Informal employment (Not classsified as rural or urban, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1216,"Informal employment (Rural, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1216,"Informal employment (Rural, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1217,"Informal employment (Rural, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1217,"Informal employment (Rural, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1218,"Informal employment (Urban, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1218,"Informal employment (Urban, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1219,"Informal employment (Urban, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1219,"Informal employment (Urban, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1220,Informal employment (Rural),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1221,Informal employment (Urban),No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1222,Informal employment (Not classsified as rural or urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1222,Informal employment (Not classsified as rural or urban) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1222,Informal employment (Not classsified as rural or urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1222,Informal employment (Not classsified as rural or urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1222,Informal employment (Not classsified as rural or urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1223,Informal employment (Rural) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1223,Informal employment (Rural) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1223,Informal employment (Rural) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1223,Informal employment (Rural) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1223,Informal employment (Rural) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1224,Informal employment (Urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1224,Informal employment (Urban) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1224,Informal employment (Urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1224,Informal employment (Urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1224,Informal employment (Urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1225,Informal employment (Not classsified as rural or urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1226,Informal employment (Rural) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1227,Informal employment (Urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1228,Informal employment (Rural) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1229,Informal employment (Urban) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1230,Informal employment (Not classsified as rural or urban) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1230,Informal employment (Not classsified as rural or urban) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1231,Informal employment (Rural) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1231,Informal employment (Rural) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1231,Informal employment (Rural) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1232,Informal employment (Urban) by Institutional sector,Private sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1232,Informal employment (Urban) by Institutional sector,Public sector,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1232,Informal employment (Urban) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1233,"Informal employment (Not classsified as rural or urban, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1233,"Informal employment (Not classsified as rural or urban, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1234,"Informal employment (Not classsified as rural or urban, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1234,"Informal employment (Not classsified as rural or urban, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1235,"Informal employment (Rural, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1235,"Informal employment (Rural, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1236,"Informal employment (Rural, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1236,"Informal employment (Rural, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1237,"Informal employment (Rural, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1237,"Informal employment (Rural, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1238,"Informal employment (Urban, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1238,"Informal employment (Urban, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1239,"Informal employment (Urban, Private sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1239,"Informal employment (Urban, Private sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1240,"Informal employment (Urban, Public sector) by Sex",Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1240,"Informal employment (Urban, Public sector) by Sex",Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1241,Informal employment (Not classsified as rural or urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1241,Informal employment (Not classsified as rural or urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1242,Informal employment (Rural) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1242,Informal employment (Rural) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1242,Informal employment (Rural) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1243,Informal employment (Urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1243,Informal employment (Urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1243,Informal employment (Urban) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1244,Informal employment (Not classsified as rural or urban) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1244,Informal employment (Not classsified as rural or urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1244,Informal employment (Not classsified as rural or urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1245,Informal employment (Rural) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1245,Informal employment (Rural) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1245,Informal employment (Rural) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1246,Informal employment (Urban) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1246,Informal employment (Urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1246,Informal employment (Urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1247,Informal employment (Not classsified as rural or urban) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1247,Informal employment (Not classsified as rural or urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1248,Informal employment (Rural) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1248,Informal employment (Rural) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1249,Informal employment (Urban) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1249,Informal employment (Urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1250,Informal employment (Rural) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1251,Informal employment (Urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1252,Informal employment (Not classsified as rural or urban) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1252,Informal employment (Not classsified as rural or urban) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1253,Informal employment (Rural) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1253,Informal employment (Rural) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1253,Informal employment (Rural) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1254,Informal employment (Urban) by Sex,Female,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1254,Informal employment (Urban) by Sex,Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1254,Informal employment (Urban) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1255,"Informal employment (Rural, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1256,"Informal employment (Rural, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1257,"Informal employment (Rural, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1258,"Informal employment (Urban, Female)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1259,"Informal employment (Urban, Male)",No schooling,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1260,"Informal employment (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1260,"Informal employment (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1260,"Informal employment (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1260,"Informal employment (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1261,"Informal employment (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1261,"Informal employment (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1261,"Informal employment (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1261,"Informal employment (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1262,"Informal employment (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1262,"Informal employment (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1262,"Informal employment (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1262,"Informal employment (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1262,"Informal employment (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1263,"Informal employment (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1263,"Informal employment (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1263,"Informal employment (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1263,"Informal employment (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1263,"Informal employment (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1264,"Informal employment (Rural, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1264,"Informal employment (Rural, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1265,"Informal employment (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1265,"Informal employment (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1265,"Informal employment (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1265,"Informal employment (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1265,"Informal employment (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1266,"Informal employment (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1266,"Informal employment (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1266,"Informal employment (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1266,"Informal employment (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1266,"Informal employment (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1267,"Informal employment (Not classsified as rural or urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1268,"Informal employment (Not classsified as rural or urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1269,"Informal employment (Rural, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1270,"Informal employment (Rural, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1271,"Informal employment (Urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1272,"Informal employment (Urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1273,"Informal employment (Rural, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1274,"Informal employment (Rural, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1275,"Informal employment (Rural, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1276,"Informal employment (Urban, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1277,"Informal employment (Urban, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1278,"Informal employment (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1278,"Informal employment (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1279,"Informal employment (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1279,"Informal employment (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1280,"Informal employment (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1280,"Informal employment (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1280,"Informal employment (Rural, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1281,"Informal employment (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1281,"Informal employment (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1281,"Informal employment (Rural, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1282,"Informal employment (Rural, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1282,"Informal employment (Rural, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1283,"Informal employment (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1283,"Informal employment (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1283,"Informal employment (Urban, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1284,"Informal employment (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1284,"Informal employment (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1284,"Informal employment (Urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1285,"Informal employment (Urban, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1286,"Informal employment (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1286,"Informal employment (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1286,"Informal employment (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1287,"Informal employment (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1287,"Informal employment (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1287,"Informal employment (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1288,"Informal employment (Rural, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1288,"Informal employment (Rural, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1288,"Informal employment (Rural, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1289,"Informal employment (Rural, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1289,"Informal employment (Rural, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1289,"Informal employment (Rural, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1290,"Informal employment (Urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1290,"Informal employment (Urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1290,"Informal employment (Urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1291,"Informal employment (Urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1291,"Informal employment (Urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1291,"Informal employment (Urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1292,"Informal employment (Urban, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1293,"Informal employment (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1293,"Informal employment (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1294,"Informal employment (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1294,"Informal employment (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1295,"Informal employment (Rural, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1295,"Informal employment (Rural, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1296,"Informal employment (Rural, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1296,"Informal employment (Rural, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1297,"Informal employment (Rural, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1298,"Informal employment (Urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1298,"Informal employment (Urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1299,"Informal employment (Urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1299,"Informal employment (Urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1300,"Informal employment (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1301,"Informal employment (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1302,"Informal employment (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_NB.1303,"Informal employment (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_NB,ilo/EMP_NIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_NB,Informal employment +EMP_NIFL_RT.001,Informal employment rate,Total,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,15 to 19 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,15 to 24 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,15 years old and over,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,20 to 24 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y20T24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,25 to 29 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,25 to 34 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,25 to 54 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,25 years old and over,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,30 to 34 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y30T34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,35 to 39 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,35 to 44 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,40 to 44 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y40T44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,45 to 49 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,45 to 54 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,50 to 54 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y50T54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,55 to 59 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T59,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,55 to 64 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,60 to 64 years old,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y60T64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.002,Informal employment rate by Age group,65 years old and over,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.003,Informal employment rate (15 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.003,Informal employment rate (15 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.004,Informal employment rate (15 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.004,Informal employment rate (15 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.005,Informal employment rate (25 to 54 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.005,Informal employment rate (25 to 54 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.006,Informal employment rate (25 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.006,Informal employment rate (25 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.007,Informal employment rate (55 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.007,Informal employment rate (55 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.008,Informal employment rate (65 years old and over) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.008,Informal employment rate (65 years old and over) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.009,Informal employment rate,Total,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.010,Informal employment rate,Female,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.010,Informal employment rate,Male,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.010,Informal employment rate,Sex other than Female or Male,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.011,"Informal employment rate (15 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.011,"Informal employment rate (15 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.012,"Informal employment rate (15 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.012,"Informal employment rate (15 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.013,"Informal employment rate (15 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.013,"Informal employment rate (15 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.014,"Informal employment rate (15 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.014,"Informal employment rate (15 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.014,"Informal employment rate (15 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.015,"Informal employment rate (25 to 54 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.015,"Informal employment rate (25 to 54 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.016,"Informal employment rate (25 to 54 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.016,"Informal employment rate (25 to 54 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.016,"Informal employment rate (25 to 54 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.017,"Informal employment rate (25 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.017,"Informal employment rate (25 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.018,"Informal employment rate (25 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.018,"Informal employment rate (25 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.018,"Informal employment rate (25 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.019,"Informal employment rate (55 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.019,"Informal employment rate (55 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.020,"Informal employment rate (55 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.020,"Informal employment rate (55 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.021,"Informal employment rate (65 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.021,"Informal employment rate (65 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.022,"Informal employment rate (65 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.022,"Informal employment rate (65 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.023,Informal employment rate (15 to 24 years old) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.024,Informal employment rate (15 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.025,Informal employment rate (25 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.026,"Informal employment rate (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.026,"Informal employment rate (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.026,"Informal employment rate (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.027,"Informal employment rate (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.027,"Informal employment rate (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.027,"Informal employment rate (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.028,"Informal employment rate (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.028,"Informal employment rate (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.028,"Informal employment rate (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.029,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.029,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.029,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.029,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.029,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.030,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.030,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.030,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.030,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.030,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.031,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.031,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.031,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.031,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.031,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.032,"Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.032,"Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.033,"Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.033,"Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.034,"Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.034,"Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.035,Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.035,Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.036,Informal employment rate (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.036,Informal employment rate (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.037,Informal employment rate (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.037,Informal employment rate (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.038,"Informal employment rate (15 to 24 years old) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.039,"Informal employment rate (15 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.040,"Informal employment rate (25 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.041,"Informal employment rate (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.042,"Informal employment rate (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.043,"Informal employment rate (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.044,Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.044,Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.045,Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.045,Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.046,Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.046,Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.047,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.047,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.047,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.048,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.048,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.048,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.049,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.049,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.049,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.050,Informal employment rate (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.051,Informal employment rate (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.052,Informal employment rate (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.053,Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.053,Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.054,Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.054,Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.055,Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.055,Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.056,Informal employment rate (15 to 24 years old) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.057,Informal employment rate (15 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.058,Informal employment rate (25 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.059,"Informal employment rate (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.059,"Informal employment rate (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.059,"Informal employment rate (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.059,"Informal employment rate (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.060,"Informal employment rate (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.060,"Informal employment rate (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.060,"Informal employment rate (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.060,"Informal employment rate (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.061,"Informal employment rate (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.061,"Informal employment rate (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.061,"Informal employment rate (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.061,"Informal employment rate (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.062,Informal employment rate (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.062,Informal employment rate (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.063,Informal employment rate (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.063,Informal employment rate (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.064,Informal employment rate (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.064,Informal employment rate (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.065,"Informal employment rate (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.065,"Informal employment rate (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.066,"Informal employment rate (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.066,"Informal employment rate (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.067,"Informal employment rate (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.067,"Informal employment rate (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.068,"Informal employment rate (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.068,"Informal employment rate (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.069,"Informal employment rate (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.069,"Informal employment rate (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.070,"Informal employment rate (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.070,"Informal employment rate (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.071,Informal employment rate (15 to 24 years old) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.072,Informal employment rate (15 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.073,Informal employment rate (25 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.074,"Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.074,"Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.074,"Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.075,"Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.075,"Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.075,"Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.076,"Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.076,"Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.076,"Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.077,Informal employment rate (15 to 24 years old) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.078,Informal employment rate (15 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.079,Informal employment rate (25 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.080,"Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.080,"Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.080,"Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.080,"Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.080,"Informal employment rate (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.081,"Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.081,"Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.081,"Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.081,"Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.081,"Informal employment rate (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.082,"Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.082,"Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.082,"Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.082,"Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.082,"Informal employment rate (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.083,Informal employment rate (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.083,Informal employment rate (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.083,Informal employment rate (15 to 24 years old) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.084,Informal employment rate (15 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.084,Informal employment rate (15 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.084,Informal employment rate (15 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.085,Informal employment rate (25 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.085,Informal employment rate (25 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.085,Informal employment rate (25 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.086,"Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.086,"Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.086,"Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.086,"Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.086,"Informal employment rate (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.087,"Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.087,"Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.087,"Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.087,"Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.087,"Informal employment rate (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.088,"Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.088,"Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.088,"Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.088,"Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.088,"Informal employment rate (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.089,Informal employment rate (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.090,Informal employment rate (15 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.091,Informal employment rate (25 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.092,Informal employment rate (15 to 24 years old) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.093,Informal employment rate (15 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.094,Informal employment rate (25 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.095,Informal employment rate (15 to 24 years old) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.096,Informal employment rate (15 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.097,Informal employment rate (25 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.098,"Informal employment rate (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.098,"Informal employment rate (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.098,"Informal employment rate (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.098,"Informal employment rate (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.099,"Informal employment rate (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.099,"Informal employment rate (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.099,"Informal employment rate (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.099,"Informal employment rate (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.100,"Informal employment rate (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.100,"Informal employment rate (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.100,"Informal employment rate (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.100,"Informal employment rate (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.101,Informal employment rate (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.101,Informal employment rate (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.101,Informal employment rate (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.102,Informal employment rate (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.102,Informal employment rate (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.102,Informal employment rate (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.103,Informal employment rate (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.103,Informal employment rate (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.103,Informal employment rate (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.104,Informal employment rate (15 to 24 years old) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.105,Informal employment rate (15 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.106,Informal employment rate (25 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.107,Informal employment rate (15 to 24 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.108,Informal employment rate (15 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.109,Informal employment rate (25 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.110,Informal employment rate (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.110,Informal employment rate (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.110,Informal employment rate (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.111,Informal employment rate (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.111,Informal employment rate (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.111,Informal employment rate (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.112,Informal employment rate (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.112,Informal employment rate (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.112,Informal employment rate (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.113,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.113,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.113,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.113,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.113,Informal employment rate (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.114,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.114,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.114,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.114,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.114,Informal employment rate (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.115,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.115,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.115,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.115,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.115,Informal employment rate (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.116,"Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.116,"Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.116,"Informal employment rate (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.117,"Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.117,"Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.117,"Informal employment rate (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.118,"Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.118,"Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.118,"Informal employment rate (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.119,Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.119,Informal employment rate (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.120,Informal employment rate (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.120,Informal employment rate (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.121,Informal employment rate (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.121,Informal employment rate (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.122,Informal employment rate (15 to 24 years old) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.123,Informal employment rate (15 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.124,Informal employment rate (25 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.125,"Informal employment rate (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.126,"Informal employment rate (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.127,"Informal employment rate (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.128,Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.128,Informal employment rate (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.129,Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.129,Informal employment rate (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.130,Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.130,Informal employment rate (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.131,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.131,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.131,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.131,"Informal employment rate (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.132,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.132,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.132,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.132,"Informal employment rate (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.133,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.133,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.133,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.133,"Informal employment rate (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.134,Informal employment rate (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.135,Informal employment rate (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.136,Informal employment rate (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.137,Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.137,Informal employment rate (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.138,Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.138,Informal employment rate (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.139,Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.139,Informal employment rate (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.140,"Informal employment rate (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.140,"Informal employment rate (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.140,"Informal employment rate (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.141,"Informal employment rate (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.141,"Informal employment rate (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.141,"Informal employment rate (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.142,"Informal employment rate (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.142,"Informal employment rate (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.142,"Informal employment rate (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.143,Informal employment rate (15 to 24 years old) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.143,Informal employment rate (15 to 24 years old) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.144,Informal employment rate (15 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.144,Informal employment rate (15 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.145,Informal employment rate (25 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.145,Informal employment rate (25 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.146,Informal employment rate (15 to 24 years old) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.147,Informal employment rate (15 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.148,Informal employment rate (25 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.149,Informal employment rate (15 to 24 years old) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.150,Informal employment rate (15 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.151,Informal employment rate (25 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.152,Informal employment rate (15 to 24 years old) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.153,Informal employment rate (15 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.154,Informal employment rate (25 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.155,"Informal employment rate (15 to 24 years old) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.156,"Informal employment rate (15 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.157,"Informal employment rate (25 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.158,"Informal employment rate (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.158,"Informal employment rate (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.158,"Informal employment rate (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.158,"Informal employment rate (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.159,"Informal employment rate (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.159,"Informal employment rate (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.159,"Informal employment rate (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.159,"Informal employment rate (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.160,"Informal employment rate (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.160,"Informal employment rate (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.160,"Informal employment rate (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.160,"Informal employment rate (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.161,Informal employment rate (15 to 24 years old) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.161,Informal employment rate (15 to 24 years old) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.161,Informal employment rate (15 to 24 years old) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.162,Informal employment rate (15 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.162,Informal employment rate (15 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.162,Informal employment rate (15 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.163,Informal employment rate (25 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.163,Informal employment rate (25 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.163,Informal employment rate (25 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.164,Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.164,Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.164,Informal employment rate (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.165,Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.165,Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.165,Informal employment rate (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.166,Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.166,Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.166,Informal employment rate (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.167,Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.167,Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.167,Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.167,Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.167,Informal employment rate (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.168,Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.168,Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.168,Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.168,Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.168,Informal employment rate (15 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.169,Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.169,Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.169,Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.169,Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.169,Informal employment rate (25 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.170,Informal employment rate (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.170,Informal employment rate (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.171,Informal employment rate (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.171,Informal employment rate (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.172,Informal employment rate (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.172,Informal employment rate (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.173,Informal employment rate (15 to 24 years old) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.174,Informal employment rate (15 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.175,Informal employment rate (25 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.176,Informal employment rate (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.176,Informal employment rate (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.176,Informal employment rate (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.177,Informal employment rate (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.177,Informal employment rate (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.177,Informal employment rate (15 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.178,Informal employment rate (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.178,Informal employment rate (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.178,Informal employment rate (25 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.179,Informal employment rate (15 to 24 years old) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.180,Informal employment rate (15 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.181,Informal employment rate (25 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.182,"Informal employment rate (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.183,"Informal employment rate (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.184,"Informal employment rate (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.185,Informal employment rate (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.186,Informal employment rate (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.187,Informal employment rate (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.188,Informal employment rate (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.189,Informal employment rate (15 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.190,Informal employment rate (25 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.191,Informal employment rate (15 to 24 years old) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.192,Informal employment rate (15 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.193,Informal employment rate (25 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.194,Informal employment rate (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.194,Informal employment rate (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.194,Informal employment rate (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.195,Informal employment rate (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.195,Informal employment rate (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.195,Informal employment rate (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.196,Informal employment rate (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.196,Informal employment rate (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.196,Informal employment rate (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.197,"Informal employment rate (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.197,"Informal employment rate (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.197,"Informal employment rate (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.197,"Informal employment rate (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.198,"Informal employment rate (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.198,"Informal employment rate (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.198,"Informal employment rate (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.198,"Informal employment rate (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.199,"Informal employment rate (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.199,"Informal employment rate (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.199,"Informal employment rate (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.199,"Informal employment rate (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.200,Informal employment rate (15 to 24 years old) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.200,Informal employment rate (15 to 24 years old) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.200,Informal employment rate (15 to 24 years old) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.201,Informal employment rate (15 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.201,Informal employment rate (15 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.201,Informal employment rate (15 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.202,Informal employment rate (25 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.202,Informal employment rate (25 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.202,Informal employment rate (25 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.203,Informal employment rate (15 to 24 years old) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.204,Informal employment rate (15 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.205,Informal employment rate (25 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.206,Informal employment rate (15 to 24 years old) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.207,Informal employment rate (15 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.208,Informal employment rate (25 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.209,Informal employment rate (15 to 24 years old) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.210,Informal employment rate (15 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.211,Informal employment rate (25 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.212,Informal employment rate (15 to 24 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.213,Informal employment rate (15 years old and over),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.214,Informal employment rate (25 to 34 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.215,Informal employment rate (25 to 54 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.216,Informal employment rate (25 years old and over),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.217,Informal employment rate (35 to 44 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.218,Informal employment rate (45 to 54 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.219,Informal employment rate (55 to 64 years old),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.220,Informal employment rate (65 years old and over),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.221,Informal employment rate (15 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.221,Informal employment rate (15 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.221,Informal employment rate (15 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.221,Informal employment rate (15 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.221,Informal employment rate (15 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.222,Informal employment rate (15 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.222,Informal employment rate (15 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.222,Informal employment rate (15 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.222,Informal employment rate (15 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.222,Informal employment rate (15 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.223,Informal employment rate (25 to 34 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.223,Informal employment rate (25 to 34 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.223,Informal employment rate (25 to 34 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.223,Informal employment rate (25 to 34 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.223,Informal employment rate (25 to 34 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.224,Informal employment rate (25 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.224,Informal employment rate (25 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.224,Informal employment rate (25 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.224,Informal employment rate (25 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.224,Informal employment rate (25 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.225,Informal employment rate (25 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.225,Informal employment rate (25 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.225,Informal employment rate (25 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.225,Informal employment rate (25 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.225,Informal employment rate (25 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.226,Informal employment rate (35 to 44 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.226,Informal employment rate (35 to 44 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.226,Informal employment rate (35 to 44 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.226,Informal employment rate (35 to 44 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.226,Informal employment rate (35 to 44 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.227,Informal employment rate (45 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.227,Informal employment rate (45 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.227,Informal employment rate (45 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.227,Informal employment rate (45 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.227,Informal employment rate (45 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.228,Informal employment rate (55 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.228,Informal employment rate (55 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.228,Informal employment rate (55 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.228,Informal employment rate (55 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.228,Informal employment rate (55 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.229,Informal employment rate (65 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.229,Informal employment rate (65 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.229,Informal employment rate (65 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.229,Informal employment rate (65 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.229,Informal employment rate (65 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.230,Informal employment rate (15 to 24 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.231,Informal employment rate (15 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.232,Informal employment rate (25 to 34 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.233,Informal employment rate (25 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.234,Informal employment rate (25 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.235,Informal employment rate (35 to 44 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.236,Informal employment rate (45 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.237,Informal employment rate (55 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.238,Informal employment rate (65 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.239,Informal employment rate (15 to 24 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.240,Informal employment rate (15 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.241,Informal employment rate (25 to 34 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.242,Informal employment rate (25 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.243,Informal employment rate (25 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.244,Informal employment rate (35 to 44 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.245,Informal employment rate (45 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.246,Informal employment rate (55 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.247,Informal employment rate (65 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.248,Informal employment rate (15 to 24 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.248,Informal employment rate (15 to 24 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.248,Informal employment rate (15 to 24 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.249,Informal employment rate (15 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.249,Informal employment rate (15 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.249,Informal employment rate (15 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.250,Informal employment rate (25 to 34 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.250,Informal employment rate (25 to 34 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.250,Informal employment rate (25 to 34 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.251,Informal employment rate (25 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.251,Informal employment rate (25 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.251,Informal employment rate (25 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.252,Informal employment rate (25 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.252,Informal employment rate (25 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.252,Informal employment rate (25 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.253,Informal employment rate (35 to 44 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.253,Informal employment rate (35 to 44 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.253,Informal employment rate (35 to 44 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.254,Informal employment rate (45 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.254,Informal employment rate (45 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.254,Informal employment rate (45 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.255,Informal employment rate (55 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.255,Informal employment rate (55 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.255,Informal employment rate (55 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.256,Informal employment rate (65 years old and over) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.256,Informal employment rate (65 years old and over) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.256,Informal employment rate (65 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.257,"Informal employment rate (15 to 24 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.257,"Informal employment rate (15 to 24 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.258,"Informal employment rate (15 to 24 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.258,"Informal employment rate (15 to 24 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.259,"Informal employment rate (15 to 24 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.259,"Informal employment rate (15 to 24 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.260,"Informal employment rate (15 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.260,"Informal employment rate (15 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.261,"Informal employment rate (15 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.261,"Informal employment rate (15 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.262,"Informal employment rate (15 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.262,"Informal employment rate (15 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.263,"Informal employment rate (25 to 34 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.263,"Informal employment rate (25 to 34 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.264,"Informal employment rate (25 to 34 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.264,"Informal employment rate (25 to 34 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.265,"Informal employment rate (25 to 34 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.265,"Informal employment rate (25 to 34 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.266,"Informal employment rate (25 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.266,"Informal employment rate (25 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.267,"Informal employment rate (25 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.267,"Informal employment rate (25 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.268,"Informal employment rate (25 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.268,"Informal employment rate (25 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.269,"Informal employment rate (25 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.269,"Informal employment rate (25 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.270,"Informal employment rate (25 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.270,"Informal employment rate (25 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.271,"Informal employment rate (25 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.271,"Informal employment rate (25 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.272,"Informal employment rate (35 to 44 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.272,"Informal employment rate (35 to 44 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.273,"Informal employment rate (35 to 44 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.273,"Informal employment rate (35 to 44 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.274,"Informal employment rate (35 to 44 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.274,"Informal employment rate (35 to 44 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.275,"Informal employment rate (45 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.275,"Informal employment rate (45 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.276,"Informal employment rate (45 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.276,"Informal employment rate (45 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.277,"Informal employment rate (45 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.277,"Informal employment rate (45 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.278,"Informal employment rate (55 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.278,"Informal employment rate (55 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.279,"Informal employment rate (55 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.279,"Informal employment rate (55 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.280,"Informal employment rate (55 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.280,"Informal employment rate (55 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.281,"Informal employment rate (65 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.281,"Informal employment rate (65 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.282,"Informal employment rate (65 years old and over, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.282,"Informal employment rate (65 years old and over, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.283,"Informal employment rate (65 years old and over, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.283,"Informal employment rate (65 years old and over, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.284,Informal employment rate (15 to 24 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.284,Informal employment rate (15 to 24 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.284,Informal employment rate (15 to 24 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.285,Informal employment rate (15 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.285,Informal employment rate (15 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.285,Informal employment rate (15 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.286,Informal employment rate (25 to 34 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.286,Informal employment rate (25 to 34 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.286,Informal employment rate (25 to 34 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.287,Informal employment rate (25 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.287,Informal employment rate (25 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.287,Informal employment rate (25 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.288,Informal employment rate (25 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.288,Informal employment rate (25 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.288,Informal employment rate (25 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.289,Informal employment rate (35 to 44 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.289,Informal employment rate (35 to 44 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.289,Informal employment rate (35 to 44 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.290,Informal employment rate (45 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.290,Informal employment rate (45 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.290,Informal employment rate (45 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.291,Informal employment rate (55 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.291,Informal employment rate (55 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.291,Informal employment rate (55 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.292,Informal employment rate (65 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.292,Informal employment rate (65 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.292,Informal employment rate (65 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.293,"Informal employment rate (15 to 24 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.293,"Informal employment rate (15 to 24 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.294,"Informal employment rate (15 to 24 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.294,"Informal employment rate (15 to 24 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.295,"Informal employment rate (15 to 24 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.295,"Informal employment rate (15 to 24 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.296,"Informal employment rate (15 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.296,"Informal employment rate (15 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.296,"Informal employment rate (15 years old and over, Full-time) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.297,"Informal employment rate (15 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.297,"Informal employment rate (15 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.298,"Informal employment rate (15 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.298,"Informal employment rate (15 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.299,"Informal employment rate (25 to 34 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.299,"Informal employment rate (25 to 34 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.300,"Informal employment rate (25 to 34 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.300,"Informal employment rate (25 to 34 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.301,"Informal employment rate (25 to 34 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.301,"Informal employment rate (25 to 34 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.302,"Informal employment rate (25 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.302,"Informal employment rate (25 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.303,"Informal employment rate (25 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.303,"Informal employment rate (25 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.304,"Informal employment rate (25 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.304,"Informal employment rate (25 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.305,"Informal employment rate (25 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.305,"Informal employment rate (25 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.305,"Informal employment rate (25 years old and over, Full-time) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.306,"Informal employment rate (25 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.306,"Informal employment rate (25 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.307,"Informal employment rate (25 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.307,"Informal employment rate (25 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.308,"Informal employment rate (35 to 44 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.308,"Informal employment rate (35 to 44 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.309,"Informal employment rate (35 to 44 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.309,"Informal employment rate (35 to 44 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.310,"Informal employment rate (35 to 44 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.310,"Informal employment rate (35 to 44 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.311,"Informal employment rate (45 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.311,"Informal employment rate (45 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.312,"Informal employment rate (45 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.312,"Informal employment rate (45 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.313,"Informal employment rate (45 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.313,"Informal employment rate (45 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.314,"Informal employment rate (55 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.314,"Informal employment rate (55 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.315,"Informal employment rate (55 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.315,"Informal employment rate (55 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.316,"Informal employment rate (55 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.316,"Informal employment rate (55 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.317,"Informal employment rate (65 years old and over, Full-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.317,"Informal employment rate (65 years old and over, Full-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.318,"Informal employment rate (65 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.318,"Informal employment rate (65 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.319,"Informal employment rate (65 years old and over, Part-time) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.319,"Informal employment rate (65 years old and over, Part-time) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.320,Informal employment rate (15 to 24 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.320,Informal employment rate (15 to 24 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.320,Informal employment rate (15 to 24 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.321,Informal employment rate (15 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.321,Informal employment rate (15 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.321,Informal employment rate (15 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.322,Informal employment rate (25 to 34 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.322,Informal employment rate (25 to 34 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.322,Informal employment rate (25 to 34 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.323,Informal employment rate (25 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.323,Informal employment rate (25 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.323,Informal employment rate (25 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.324,Informal employment rate (25 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.324,Informal employment rate (25 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.324,Informal employment rate (25 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.325,Informal employment rate (35 to 44 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.325,Informal employment rate (35 to 44 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.325,Informal employment rate (35 to 44 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.326,Informal employment rate (45 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.326,Informal employment rate (45 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.326,Informal employment rate (45 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.327,Informal employment rate (55 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.327,Informal employment rate (55 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.327,Informal employment rate (55 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.328,Informal employment rate (65 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.328,Informal employment rate (65 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.328,Informal employment rate (65 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.329,Informal employment rate (15 to 24 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.329,Informal employment rate (15 to 24 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.329,Informal employment rate (15 to 24 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.330,Informal employment rate (15 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.330,Informal employment rate (15 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.330,Informal employment rate (15 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.331,Informal employment rate (25 to 34 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.331,Informal employment rate (25 to 34 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.331,Informal employment rate (25 to 34 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.332,Informal employment rate (25 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.332,Informal employment rate (25 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.332,Informal employment rate (25 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.333,Informal employment rate (25 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.333,Informal employment rate (25 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.333,Informal employment rate (25 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.334,Informal employment rate (35 to 44 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.334,Informal employment rate (35 to 44 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.334,Informal employment rate (35 to 44 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.335,Informal employment rate (45 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.335,Informal employment rate (45 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.335,Informal employment rate (45 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.336,Informal employment rate (55 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.336,Informal employment rate (55 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.336,Informal employment rate (55 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.337,Informal employment rate (65 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.337,Informal employment rate (65 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.337,Informal employment rate (65 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.338,Informal employment rate (15 to 24 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.338,Informal employment rate (15 to 24 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.339,Informal employment rate (15 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.339,Informal employment rate (15 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.340,Informal employment rate (25 to 34 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.340,Informal employment rate (25 to 34 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.341,Informal employment rate (25 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.341,Informal employment rate (25 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.342,Informal employment rate (25 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.342,Informal employment rate (25 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.343,Informal employment rate (35 to 44 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.343,Informal employment rate (35 to 44 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.344,Informal employment rate (45 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.344,Informal employment rate (45 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.345,Informal employment rate (55 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.345,Informal employment rate (55 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.346,Informal employment rate (65 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.346,Informal employment rate (65 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.347,Informal employment rate (15 to 24 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.348,Informal employment rate (15 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.349,Informal employment rate (25 to 34 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.350,Informal employment rate (25 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.351,Informal employment rate (25 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.352,Informal employment rate (35 to 44 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.353,Informal employment rate (45 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.354,Informal employment rate (55 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.355,Informal employment rate (65 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.356,Informal employment rate (15 to 24 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.357,Informal employment rate (15 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.358,Informal employment rate (25 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.359,Informal employment rate (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.359,Informal employment rate (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.359,Informal employment rate (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.360,Informal employment rate (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.360,Informal employment rate (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.360,Informal employment rate (15 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.361,Informal employment rate (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.361,Informal employment rate (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.361,Informal employment rate (25 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.362,Informal employment rate (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.362,Informal employment rate (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.362,Informal employment rate (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.362,Informal employment rate (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.363,Informal employment rate (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.363,Informal employment rate (15 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.363,Informal employment rate (15 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.363,Informal employment rate (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.364,Informal employment rate (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.364,Informal employment rate (25 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.364,Informal employment rate (25 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.364,Informal employment rate (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.365,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.366,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.367,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.368,Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.368,Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.368,Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.368,Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.368,Informal employment rate (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.369,Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.369,Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.369,Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.369,Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.369,Informal employment rate (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.370,Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.370,Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.370,Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.370,Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.370,Informal employment rate (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.371,Informal employment rate (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.371,Informal employment rate (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.371,Informal employment rate (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.371,Informal employment rate (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.372,Informal employment rate (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.372,Informal employment rate (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.372,Informal employment rate (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.372,Informal employment rate (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.373,Informal employment rate (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.373,Informal employment rate (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.373,Informal employment rate (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.373,Informal employment rate (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.374,Informal employment rate (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.374,Informal employment rate (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.374,Informal employment rate (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.374,Informal employment rate (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.375,Informal employment rate (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.375,Informal employment rate (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.375,Informal employment rate (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.375,Informal employment rate (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.376,Informal employment rate (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.376,Informal employment rate (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.376,Informal employment rate (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.376,Informal employment rate (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.377,"Informal employment rate (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.377,"Informal employment rate (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.377,"Informal employment rate (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.378,"Informal employment rate (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.378,"Informal employment rate (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.378,"Informal employment rate (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.379,"Informal employment rate (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.379,"Informal employment rate (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.379,"Informal employment rate (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.380,Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.380,Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.380,Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.380,Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.380,Informal employment rate (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.381,Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.381,Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.381,Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.381,Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.381,Informal employment rate (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.382,Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.382,Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.382,Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.382,Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.382,Informal employment rate (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.383,Informal employment rate (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.383,"Informal employment rate (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.383,"Informal employment rate (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.384,Informal employment rate (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.384,"Informal employment rate (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.384,"Informal employment rate (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.385,Informal employment rate (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.385,"Informal employment rate (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.385,"Informal employment rate (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.386,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.387,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.388,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.389,Informal employment rate (15 to 24 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.390,Informal employment rate (15 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.391,Informal employment rate (25 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.392,Informal employment rate (15 to 24 years old) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.393,Informal employment rate (15 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.394,Informal employment rate (25 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.395,"Informal employment rate (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.395,"Informal employment rate (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.395,"Informal employment rate (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.396,"Informal employment rate (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.396,"Informal employment rate (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.396,"Informal employment rate (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.397,"Informal employment rate (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.397,"Informal employment rate (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.397,"Informal employment rate (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.398,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.398,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.398,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.398,Informal employment rate (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.399,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.399,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.399,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.399,Informal employment rate (15 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.400,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.400,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.400,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.400,Informal employment rate (25 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.401,Informal employment rate (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.401,Informal employment rate (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.401,Informal employment rate (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.401,Informal employment rate (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.402,Informal employment rate (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.402,Informal employment rate (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.402,Informal employment rate (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.402,Informal employment rate (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.403,Informal employment rate (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.403,Informal employment rate (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.403,Informal employment rate (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.403,Informal employment rate (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.404,Informal employment rate (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.404,Informal employment rate (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.405,Informal employment rate (15 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.405,Informal employment rate (15 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.406,Informal employment rate (25 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.406,Informal employment rate (25 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.407,Informal employment rate (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.407,Informal employment rate (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.408,Informal employment rate (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.408,Informal employment rate (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.409,Informal employment rate (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.409,Informal employment rate (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.410,Informal employment rate (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.410,Informal employment rate (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.411,Informal employment rate (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.411,Informal employment rate (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.412,Informal employment rate (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.412,Informal employment rate (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.413,Informal employment rate (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.413,Informal employment rate (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.413,Informal employment rate (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.413,Informal employment rate (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.414,Informal employment rate (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.414,Informal employment rate (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.414,Informal employment rate (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.414,Informal employment rate (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.415,Informal employment rate (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.415,Informal employment rate (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.415,Informal employment rate (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.415,Informal employment rate (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.416,Informal employment rate (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.416,Informal employment rate (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.416,Informal employment rate (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.417,Informal employment rate (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.417,Informal employment rate (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.417,Informal employment rate (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.418,Informal employment rate (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.418,Informal employment rate (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.418,Informal employment rate (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.419,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.419,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.419,Informal employment rate (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.420,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.420,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.420,Informal employment rate (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.421,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.421,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.421,Informal employment rate (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.422,Informal employment rate (15 to 19 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T19__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.422,Informal employment rate (15 to 19 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T19__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.423,Informal employment rate (15 to 24 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.423,Informal employment rate (15 to 24 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.424,Informal employment rate (15 years old and over) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.424,Informal employment rate (15 years old and over) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.424,Informal employment rate (15 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.425,Informal employment rate (20 to 24 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y20T24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.425,Informal employment rate (20 to 24 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y20T24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.426,Informal employment rate (25 to 29 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T29__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.426,Informal employment rate (25 to 29 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T29__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.427,Informal employment rate (25 to 34 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.427,Informal employment rate (25 to 34 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.427,Informal employment rate (25 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.428,Informal employment rate (25 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.428,Informal employment rate (25 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.428,Informal employment rate (25 to 54 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.429,Informal employment rate (25 years old and over) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.429,Informal employment rate (25 years old and over) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.429,Informal employment rate (25 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.430,Informal employment rate (30 to 34 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.430,Informal employment rate (30 to 34 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.430,Informal employment rate (30 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y30T34__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.431,Informal employment rate (35 to 39 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.431,Informal employment rate (35 to 39 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.431,Informal employment rate (35 to 39 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T39__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.432,Informal employment rate (35 to 44 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.432,Informal employment rate (35 to 44 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.432,Informal employment rate (35 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.433,Informal employment rate (40 to 44 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.433,Informal employment rate (40 to 44 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.433,Informal employment rate (40 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y40T44__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.434,Informal employment rate (45 to 49 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T49__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.434,Informal employment rate (45 to 49 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T49__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.435,Informal employment rate (45 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.435,Informal employment rate (45 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.436,Informal employment rate (50 to 54 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y50T54__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.436,Informal employment rate (50 to 54 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y50T54__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.437,Informal employment rate (55 to 59 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T59__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.437,Informal employment rate (55 to 59 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T59__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.438,Informal employment rate (55 to 64 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.438,Informal employment rate (55 to 64 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.439,Informal employment rate (60 to 64 years old) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y60T64__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.439,Informal employment rate (60 to 64 years old) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y60T64__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.440,Informal employment rate (65 years old and over) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.440,Informal employment rate (65 years old and over) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.441,"Informal employment rate (15 to 24 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.442,"Informal employment rate (15 to 24 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.443,"Informal employment rate (15 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.444,"Informal employment rate (15 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.445,"Informal employment rate (15 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.446,"Informal employment rate (25 to 34 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.447,"Informal employment rate (25 to 34 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.448,"Informal employment rate (25 to 54 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.449,"Informal employment rate (25 to 54 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.450,"Informal employment rate (25 to 54 years old, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.451,"Informal employment rate (25 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.452,"Informal employment rate (25 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.453,"Informal employment rate (25 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.454,"Informal employment rate (35 to 44 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.455,"Informal employment rate (35 to 44 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.456,"Informal employment rate (45 to 54 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.457,"Informal employment rate (45 to 54 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.458,"Informal employment rate (55 to 64 years old, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.459,"Informal employment rate (55 to 64 years old, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.460,"Informal employment rate (65 years old and over, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.461,"Informal employment rate (65 years old and over, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.462,"Informal employment rate (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.462,"Informal employment rate (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.462,"Informal employment rate (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.462,"Informal employment rate (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.462,"Informal employment rate (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.463,"Informal employment rate (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.463,"Informal employment rate (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.463,"Informal employment rate (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.463,"Informal employment rate (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.463,"Informal employment rate (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.464,"Informal employment rate (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.464,"Informal employment rate (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.464,"Informal employment rate (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.464,"Informal employment rate (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.464,"Informal employment rate (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.465,"Informal employment rate (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.465,"Informal employment rate (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.465,"Informal employment rate (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.465,"Informal employment rate (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.465,"Informal employment rate (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.466,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.466,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.466,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.467,"Informal employment rate (25 to 34 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.467,"Informal employment rate (25 to 34 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.467,"Informal employment rate (25 to 34 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.467,"Informal employment rate (25 to 34 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.467,"Informal employment rate (25 to 34 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.468,"Informal employment rate (25 to 34 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.468,"Informal employment rate (25 to 34 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.468,"Informal employment rate (25 to 34 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.468,"Informal employment rate (25 to 34 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.468,"Informal employment rate (25 to 34 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.469,"Informal employment rate (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.469,"Informal employment rate (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.470,"Informal employment rate (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.470,"Informal employment rate (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.470,"Informal employment rate (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.470,"Informal employment rate (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.470,"Informal employment rate (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.471,"Informal employment rate (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.471,"Informal employment rate (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.471,"Informal employment rate (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.471,"Informal employment rate (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.471,"Informal employment rate (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.472,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.472,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.472,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.473,"Informal employment rate (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.473,"Informal employment rate (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.473,"Informal employment rate (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.473,"Informal employment rate (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.473,"Informal employment rate (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.474,"Informal employment rate (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.474,"Informal employment rate (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.474,"Informal employment rate (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.474,"Informal employment rate (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.474,"Informal employment rate (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.475,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.475,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.475,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.476,"Informal employment rate (35 to 44 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.476,"Informal employment rate (35 to 44 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.476,"Informal employment rate (35 to 44 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.476,"Informal employment rate (35 to 44 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.476,"Informal employment rate (35 to 44 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.477,"Informal employment rate (35 to 44 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.477,"Informal employment rate (35 to 44 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.477,"Informal employment rate (35 to 44 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.477,"Informal employment rate (35 to 44 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.477,"Informal employment rate (35 to 44 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.478,"Informal employment rate (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.478,"Informal employment rate (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.479,"Informal employment rate (45 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.479,"Informal employment rate (45 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.479,"Informal employment rate (45 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.479,"Informal employment rate (45 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.479,"Informal employment rate (45 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.480,"Informal employment rate (45 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.480,"Informal employment rate (45 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.480,"Informal employment rate (45 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.480,"Informal employment rate (45 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.480,"Informal employment rate (45 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.481,"Informal employment rate (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.481,"Informal employment rate (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.481,"Informal employment rate (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.481,"Informal employment rate (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.481,"Informal employment rate (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.482,"Informal employment rate (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.482,"Informal employment rate (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.482,"Informal employment rate (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.482,"Informal employment rate (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.482,"Informal employment rate (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.483,"Informal employment rate (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.483,"Informal employment rate (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.483,"Informal employment rate (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.483,"Informal employment rate (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.483,"Informal employment rate (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.484,"Informal employment rate (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.484,"Informal employment rate (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.484,"Informal employment rate (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.484,"Informal employment rate (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.484,"Informal employment rate (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.485,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.486,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.487,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.488,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.489,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.490,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.491,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.492,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.493,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.494,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.495,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.496,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.497,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.498,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.499,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.500,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.501,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.502,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.503,"Informal employment rate (15 to 24 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.504,"Informal employment rate (15 to 24 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.505,"Informal employment rate (15 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.506,"Informal employment rate (15 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.507,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.508,"Informal employment rate (25 to 34 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.509,"Informal employment rate (25 to 34 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.510,"Informal employment rate (25 to 34 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.511,"Informal employment rate (25 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.512,"Informal employment rate (25 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.513,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.514,"Informal employment rate (25 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.515,"Informal employment rate (25 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.516,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.517,"Informal employment rate (35 to 44 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.518,"Informal employment rate (35 to 44 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.519,"Informal employment rate (45 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.520,"Informal employment rate (45 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.521,"Informal employment rate (55 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.522,"Informal employment rate (55 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.523,"Informal employment rate (65 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.524,"Informal employment rate (65 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.525,"Informal employment rate (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.525,"Informal employment rate (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.525,"Informal employment rate (15 to 24 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.526,"Informal employment rate (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.526,"Informal employment rate (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.526,"Informal employment rate (15 to 24 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.527,"Informal employment rate (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.527,"Informal employment rate (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.527,"Informal employment rate (15 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.528,"Informal employment rate (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.528,"Informal employment rate (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.528,"Informal employment rate (15 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.529,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.529,"Informal employment rate (15 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.530,"Informal employment rate (25 to 34 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.530,"Informal employment rate (25 to 34 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.530,"Informal employment rate (25 to 34 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.531,"Informal employment rate (25 to 34 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.531,"Informal employment rate (25 to 34 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.531,"Informal employment rate (25 to 34 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.532,"Informal employment rate (25 to 34 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.533,"Informal employment rate (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.533,"Informal employment rate (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.533,"Informal employment rate (25 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.534,"Informal employment rate (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.534,"Informal employment rate (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.534,"Informal employment rate (25 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.535,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.535,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.536,"Informal employment rate (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.536,"Informal employment rate (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.536,"Informal employment rate (25 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.537,"Informal employment rate (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.537,"Informal employment rate (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.537,"Informal employment rate (25 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.538,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.538,"Informal employment rate (25 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.539,"Informal employment rate (35 to 44 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.539,"Informal employment rate (35 to 44 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.539,"Informal employment rate (35 to 44 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.540,"Informal employment rate (35 to 44 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.540,"Informal employment rate (35 to 44 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.540,"Informal employment rate (35 to 44 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.541,"Informal employment rate (35 to 44 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.542,"Informal employment rate (45 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.542,"Informal employment rate (45 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.542,"Informal employment rate (45 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.543,"Informal employment rate (45 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.543,"Informal employment rate (45 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.543,"Informal employment rate (45 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.544,"Informal employment rate (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.544,"Informal employment rate (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.544,"Informal employment rate (55 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.545,"Informal employment rate (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.545,"Informal employment rate (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.545,"Informal employment rate (55 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.546,"Informal employment rate (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.546,"Informal employment rate (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.546,"Informal employment rate (65 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.547,"Informal employment rate (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.547,"Informal employment rate (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.547,"Informal employment rate (65 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.548,"Informal employment rate (15 to 24 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.548,"Informal employment rate (15 to 24 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.548,"Informal employment rate (15 to 24 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.549,"Informal employment rate (15 to 24 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.549,"Informal employment rate (15 to 24 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.549,"Informal employment rate (15 to 24 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.550,"Informal employment rate (15 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.550,"Informal employment rate (15 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.550,"Informal employment rate (15 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.551,"Informal employment rate (15 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.551,"Informal employment rate (15 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.551,"Informal employment rate (15 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.552,"Informal employment rate (15 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.553,"Informal employment rate (25 to 34 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.553,"Informal employment rate (25 to 34 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.553,"Informal employment rate (25 to 34 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.554,"Informal employment rate (25 to 34 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.554,"Informal employment rate (25 to 34 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.554,"Informal employment rate (25 to 34 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.555,"Informal employment rate (25 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.555,"Informal employment rate (25 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.555,"Informal employment rate (25 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.556,"Informal employment rate (25 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.556,"Informal employment rate (25 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.556,"Informal employment rate (25 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.557,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.558,"Informal employment rate (25 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.558,"Informal employment rate (25 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.558,"Informal employment rate (25 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.559,"Informal employment rate (25 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.559,"Informal employment rate (25 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.559,"Informal employment rate (25 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.560,"Informal employment rate (25 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.561,"Informal employment rate (35 to 44 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.561,"Informal employment rate (35 to 44 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.561,"Informal employment rate (35 to 44 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.562,"Informal employment rate (35 to 44 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.562,"Informal employment rate (35 to 44 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.562,"Informal employment rate (35 to 44 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.563,"Informal employment rate (45 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.563,"Informal employment rate (45 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.563,"Informal employment rate (45 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.564,"Informal employment rate (45 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.564,"Informal employment rate (45 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.564,"Informal employment rate (45 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.565,"Informal employment rate (55 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.565,"Informal employment rate (55 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.565,"Informal employment rate (55 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.566,"Informal employment rate (55 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.566,"Informal employment rate (55 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.566,"Informal employment rate (55 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.567,"Informal employment rate (65 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.567,"Informal employment rate (65 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.567,"Informal employment rate (65 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.568,"Informal employment rate (65 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.568,"Informal employment rate (65 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.568,"Informal employment rate (65 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.569,"Informal employment rate (15 to 24 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.569,"Informal employment rate (15 to 24 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.570,"Informal employment rate (15 to 24 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.570,"Informal employment rate (15 to 24 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.571,"Informal employment rate (15 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.571,"Informal employment rate (15 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.572,"Informal employment rate (15 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.572,"Informal employment rate (15 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.573,"Informal employment rate (15 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.574,"Informal employment rate (25 to 34 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.574,"Informal employment rate (25 to 34 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.575,"Informal employment rate (25 to 34 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.575,"Informal employment rate (25 to 34 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.576,"Informal employment rate (25 to 34 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.577,"Informal employment rate (25 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.577,"Informal employment rate (25 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.578,"Informal employment rate (25 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.578,"Informal employment rate (25 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.579,"Informal employment rate (25 to 54 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.580,"Informal employment rate (25 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.580,"Informal employment rate (25 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.581,"Informal employment rate (25 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.581,"Informal employment rate (25 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.582,"Informal employment rate (25 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.583,"Informal employment rate (35 to 44 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.583,"Informal employment rate (35 to 44 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.584,"Informal employment rate (35 to 44 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.584,"Informal employment rate (35 to 44 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.585,"Informal employment rate (35 to 44 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.586,"Informal employment rate (45 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.586,"Informal employment rate (45 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.587,"Informal employment rate (45 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.587,"Informal employment rate (45 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.588,"Informal employment rate (55 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.588,"Informal employment rate (55 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.589,"Informal employment rate (55 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.589,"Informal employment rate (55 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.590,"Informal employment rate (65 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.590,"Informal employment rate (65 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.591,"Informal employment rate (65 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.591,"Informal employment rate (65 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.592,"Informal employment rate (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.593,"Informal employment rate (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.594,"Informal employment rate (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.595,"Informal employment rate (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.596,"Informal employment rate (25 to 34 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.597,"Informal employment rate (25 to 34 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.598,"Informal employment rate (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.599,"Informal employment rate (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.600,"Informal employment rate (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.601,"Informal employment rate (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.602,"Informal employment rate (35 to 44 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.603,"Informal employment rate (35 to 44 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.604,"Informal employment rate (45 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.605,"Informal employment rate (45 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.606,"Informal employment rate (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.607,"Informal employment rate (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.608,"Informal employment rate (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.609,"Informal employment rate (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.610,Informal employment rate (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.610,Informal employment rate (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.610,Informal employment rate (15 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.611,Informal employment rate (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.611,Informal employment rate (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.611,Informal employment rate (15 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.612,Informal employment rate (25 to 34 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.612,Informal employment rate (25 to 34 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.612,Informal employment rate (25 to 34 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.613,Informal employment rate (25 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.613,Informal employment rate (25 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.613,Informal employment rate (25 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.614,Informal employment rate (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.614,Informal employment rate (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.614,Informal employment rate (25 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.615,Informal employment rate (35 to 44 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.615,Informal employment rate (35 to 44 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.615,Informal employment rate (35 to 44 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.616,Informal employment rate (45 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.616,Informal employment rate (45 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.616,Informal employment rate (45 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.617,Informal employment rate (55 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.617,Informal employment rate (55 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.617,Informal employment rate (55 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.618,Informal employment rate (65 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.618,Informal employment rate (65 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.618,Informal employment rate (65 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.619,"Informal employment rate (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.619,"Informal employment rate (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.620,"Informal employment rate (15 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.620,"Informal employment rate (15 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.621,"Informal employment rate (15 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.621,"Informal employment rate (15 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.622,"Informal employment rate (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.622,"Informal employment rate (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.623,"Informal employment rate (15 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.623,"Informal employment rate (15 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.623,"Informal employment rate (15 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.624,"Informal employment rate (15 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.624,"Informal employment rate (15 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.624,"Informal employment rate (15 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.625,"Informal employment rate (25 to 34 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.625,"Informal employment rate (25 to 34 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.626,"Informal employment rate (25 to 34 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.626,"Informal employment rate (25 to 34 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.626,"Informal employment rate (25 to 34 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.627,"Informal employment rate (25 to 34 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.627,"Informal employment rate (25 to 34 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.627,"Informal employment rate (25 to 34 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.628,"Informal employment rate (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.628,"Informal employment rate (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.629,"Informal employment rate (25 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.629,"Informal employment rate (25 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.629,"Informal employment rate (25 to 54 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.630,"Informal employment rate (25 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.630,"Informal employment rate (25 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.630,"Informal employment rate (25 to 54 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.631,"Informal employment rate (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.631,"Informal employment rate (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.632,"Informal employment rate (25 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.632,"Informal employment rate (25 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.632,"Informal employment rate (25 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.633,"Informal employment rate (25 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.633,"Informal employment rate (25 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.633,"Informal employment rate (25 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.634,"Informal employment rate (35 to 44 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.634,"Informal employment rate (35 to 44 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.635,"Informal employment rate (35 to 44 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.635,"Informal employment rate (35 to 44 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.635,"Informal employment rate (35 to 44 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.636,"Informal employment rate (35 to 44 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.636,"Informal employment rate (35 to 44 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.637,"Informal employment rate (45 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.637,"Informal employment rate (45 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.638,"Informal employment rate (45 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.638,"Informal employment rate (45 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.639,"Informal employment rate (45 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.639,"Informal employment rate (45 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.640,"Informal employment rate (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.640,"Informal employment rate (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.641,"Informal employment rate (55 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.641,"Informal employment rate (55 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.642,"Informal employment rate (55 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.642,"Informal employment rate (55 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.643,"Informal employment rate (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.643,"Informal employment rate (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.644,"Informal employment rate (65 years old and over, Rural) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.644,"Informal employment rate (65 years old and over, Rural) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.645,"Informal employment rate (65 years old and over, Urban) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.645,"Informal employment rate (65 years old and over, Urban) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.646,Informal employment rate by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.646,Informal employment rate by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.647,Informal employment rate (Persons with disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.647,Informal employment rate (Persons with disability) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.647,Informal employment rate (Persons with disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.647,Informal employment rate (Persons with disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.647,Informal employment rate (Persons with disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.648,Informal employment rate (Persons without disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.648,Informal employment rate (Persons without disability) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.648,Informal employment rate (Persons without disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.648,Informal employment rate (Persons without disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.648,Informal employment rate (Persons without disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.649,Informal employment rate (Persons with disability) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.649,Informal employment rate (Persons with disability) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.649,Informal employment rate (Persons with disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.650,Informal employment rate (Persons without disability) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.650,Informal employment rate (Persons without disability) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.650,Informal employment rate (Persons without disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.651,"Informal employment rate (Persons with disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.651,"Informal employment rate (Persons with disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.652,"Informal employment rate (Persons with disability, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.652,"Informal employment rate (Persons with disability, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.653,"Informal employment rate (Persons with disability, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.653,"Informal employment rate (Persons with disability, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.654,"Informal employment rate (Persons without disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.654,"Informal employment rate (Persons without disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.655,"Informal employment rate (Persons without disability, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.655,"Informal employment rate (Persons without disability, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.656,"Informal employment rate (Persons without disability, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.656,"Informal employment rate (Persons without disability, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.657,Informal employment rate (Persons with disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.657,Informal employment rate (Persons with disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.657,Informal employment rate (Persons with disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.658,Informal employment rate (Persons without disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.658,Informal employment rate (Persons without disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.658,Informal employment rate (Persons without disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.659,Informal employment rate (Persons with disability) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.659,Informal employment rate (Persons with disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.659,Informal employment rate (Persons with disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.660,Informal employment rate (Persons without disability) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.660,Informal employment rate (Persons without disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.660,Informal employment rate (Persons without disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.661,Informal employment rate (Persons with disability) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.661,Informal employment rate (Persons with disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.662,Informal employment rate (Persons without disability) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.662,Informal employment rate (Persons without disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.663,Informal employment rate (Persons with disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.664,Informal employment rate (Persons without disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.665,Informal employment rate (Persons with disability) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.665,Informal employment rate (Persons with disability) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.666,Informal employment rate (Persons without disability) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.666,Informal employment rate (Persons without disability) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.666,Informal employment rate (Persons without disability) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.667,"Informal employment rate (Persons with disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.667,"Informal employment rate (Persons with disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.667,"Informal employment rate (Persons with disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.667,"Informal employment rate (Persons with disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.667,"Informal employment rate (Persons with disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.668,"Informal employment rate (Persons with disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.668,"Informal employment rate (Persons with disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.668,"Informal employment rate (Persons with disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.668,"Informal employment rate (Persons with disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.668,"Informal employment rate (Persons with disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.669,"Informal employment rate (Persons without disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.669,"Informal employment rate (Persons without disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.669,"Informal employment rate (Persons without disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.669,"Informal employment rate (Persons without disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.669,"Informal employment rate (Persons without disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.670,"Informal employment rate (Persons without disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.670,"Informal employment rate (Persons without disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.670,"Informal employment rate (Persons without disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.670,"Informal employment rate (Persons without disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.670,"Informal employment rate (Persons without disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.671,"Informal employment rate (Persons without disability, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.672,"Informal employment rate (Persons with disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.672,"Informal employment rate (Persons with disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.672,"Informal employment rate (Persons with disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.673,"Informal employment rate (Persons with disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.673,"Informal employment rate (Persons with disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.673,"Informal employment rate (Persons with disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.674,"Informal employment rate (Persons without disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.674,"Informal employment rate (Persons without disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.674,"Informal employment rate (Persons without disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.675,"Informal employment rate (Persons without disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.675,"Informal employment rate (Persons without disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.675,"Informal employment rate (Persons without disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.676,"Informal employment rate (Persons without disability, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.677,"Informal employment rate (Persons with disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.677,"Informal employment rate (Persons with disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.677,"Informal employment rate (Persons with disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.678,"Informal employment rate (Persons with disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.678,"Informal employment rate (Persons with disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.678,"Informal employment rate (Persons with disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.679,"Informal employment rate (Persons without disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.679,"Informal employment rate (Persons without disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.679,"Informal employment rate (Persons without disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.680,"Informal employment rate (Persons without disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.680,"Informal employment rate (Persons without disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.680,"Informal employment rate (Persons without disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.681,"Informal employment rate (Persons with disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.681,"Informal employment rate (Persons with disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.682,"Informal employment rate (Persons with disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.682,"Informal employment rate (Persons with disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.683,"Informal employment rate (Persons without disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.683,"Informal employment rate (Persons without disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.684,"Informal employment rate (Persons without disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.684,"Informal employment rate (Persons without disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.685,"Informal employment rate (Persons without disability, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.686,"Informal employment rate (Persons with disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.687,"Informal employment rate (Persons with disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.688,"Informal employment rate (Persons without disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.689,"Informal employment rate (Persons without disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.690,Informal employment rate by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.691,"Informal employment rate in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.691,"Informal employment rate in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.691,"Informal employment rate in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.692,Informal employment rate in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.692,Informal employment rate in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.692,Informal employment rate in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.692,Informal employment rate in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.692,Informal employment rate in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.693,"Informal employment rate in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.693,"Informal employment rate in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.694,Informal employment rate in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.694,Informal employment rate in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.695,"Informal employment rate in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.696,"Informal employment rate in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.697,Informal employment rate in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.697,Informal employment rate in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.698,"Informal employment rate in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.698,"Informal employment rate in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.698,"Informal employment rate in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.699,Informal employment rate in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.700,Informal employment rate in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.700,Informal employment rate in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.701,Informal employment rate in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.702,"Informal employment rate in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.702,"Informal employment rate in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.702,"Informal employment rate in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.702,"Informal employment rate in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.703,Informal employment rate in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.703,Informal employment rate in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.704,"Informal employment rate in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.704,"Informal employment rate in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.705,"Informal employment rate in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.705,"Informal employment rate in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.706,Informal employment rate in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.707,"Informal employment rate in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.707,"Informal employment rate in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.707,"Informal employment rate in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.708,Informal employment rate in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.709,"Informal employment rate in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.709,"Informal employment rate in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.709,"Informal employment rate in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.709,"Informal employment rate in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.709,"Informal employment rate in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.710,Informal employment rate in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.710,Informal employment rate in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.710,Informal employment rate in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.711,"Informal employment rate in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.711,"Informal employment rate in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.711,"Informal employment rate in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.711,"Informal employment rate in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.711,"Informal employment rate in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.712,Informal employment rate in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.713,Informal employment rate in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.714,Informal employment rate in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.715,"Informal employment rate in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.715,"Informal employment rate in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.715,"Informal employment rate in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.715,"Informal employment rate in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.716,Informal employment rate in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.716,Informal employment rate in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.716,Informal employment rate in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.717,Informal employment rate in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.718,Informal employment rate by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.719,Informal employment rate in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.719,Informal employment rate in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.719,Informal employment rate in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.720,Informal employment rate in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.720,Informal employment rate in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.720,Informal employment rate in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.720,Informal employment rate in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.720,Informal employment rate in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.721,"Informal employment rate in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.721,"Informal employment rate in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.721,"Informal employment rate in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.722,Informal employment rate in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.722,Informal employment rate in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.723,Informal employment rate in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.724,"Informal employment rate in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.725,Informal employment rate in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.725,Informal employment rate in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.726,"Informal employment rate in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.726,"Informal employment rate in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.726,"Informal employment rate in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.726,"Informal employment rate in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.727,Informal employment rate in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.728,Informal employment rate in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.728,Informal employment rate in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.729,"Informal employment rate in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.729,"Informal employment rate in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.729,"Informal employment rate in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.730,Informal employment rate in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.730,Informal employment rate in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.731,Informal employment rate in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.732,Informal employment rate in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.733,Informal employment rate in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.734,"Informal employment rate in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.735,"Informal employment rate in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.735,"Informal employment rate in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.735,"Informal employment rate in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.735,"Informal employment rate in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.736,Informal employment rate in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.736,Informal employment rate in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.736,Informal employment rate in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.737,Informal employment rate in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.737,Informal employment rate in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.737,Informal employment rate in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.738,Informal employment rate in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.738,Informal employment rate in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.738,Informal employment rate in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.738,Informal employment rate in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.738,Informal employment rate in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.739,Informal employment rate in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.739,Informal employment rate in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.740,Informal employment rate in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.741,Informal employment rate in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.741,Informal employment rate in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.741,Informal employment rate in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.742,Informal employment rate in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.743,"Informal employment rate in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.744,Informal employment rate in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.745,Informal employment rate in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.746,Informal employment rate in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.747,Informal employment rate in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.747,Informal employment rate in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.747,Informal employment rate in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.748,"Informal employment rate in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.748,"Informal employment rate in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.748,"Informal employment rate in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.748,"Informal employment rate in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.749,Informal employment rate in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.749,Informal employment rate in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.749,Informal employment rate in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.750,Informal employment rate in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.751,Informal employment rate in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.752,Informal employment rate in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.753,Informal employment rate,No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.754,Informal employment rate by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.754,Informal employment rate by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.754,Informal employment rate by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.754,Informal employment rate by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.754,Informal employment rate by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.755,Informal employment rate by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.756,Informal employment rate by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,No hours actually worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,01-14 hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H1T14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,15-29 hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H15T29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,30-34 hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H30T34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,35-39 hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H35T39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,40-48 hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--H40T48,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,49+ hours worked,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--HGE49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.757,Informal employment rate by Hours worked,No. of hours worked not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.HOUR_BANDS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.758,Informal employment rate (01-14 hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H1T14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.758,Informal employment rate (01-14 hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H1T14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.759,Informal employment rate (15-29 hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H15T29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.759,Informal employment rate (15-29 hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H15T29,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.760,Informal employment rate (30-34 hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H30T34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.760,Informal employment rate (30-34 hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H30T34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.761,Informal employment rate (35-39 hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H35T39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.761,Informal employment rate (35-39 hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H35T39,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.762,Informal employment rate (40-48 hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H40T48,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.762,Informal employment rate (40-48 hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H40T48,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.762,Informal employment rate (40-48 hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__HOUR_BANDS--H40T48,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.763,Informal employment rate (49+ hours worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--HGE49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.763,Informal employment rate (49+ hours worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--HGE49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.763,Informal employment rate (49+ hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__HOUR_BANDS--HGE49,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.764,Informal employment rate (No hours actually worked) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--H0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.764,Informal employment rate (No hours actually worked) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--H0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.765,Informal employment rate (No. of hours worked not classified) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__HOUR_BANDS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.765,Informal employment rate (No. of hours worked not classified) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__HOUR_BANDS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.766,Informal employment rate by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.766,Informal employment rate by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.766,Informal employment rate by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.767,Informal employment rate (Institutional sector not classified) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.767,Informal employment rate (Institutional sector not classified) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.767,Informal employment rate (Institutional sector not classified) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.768,Informal employment rate (Private sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.768,Informal employment rate (Private sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.768,Informal employment rate (Private sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.769,Informal employment rate (Public sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.769,Informal employment rate (Public sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.769,Informal employment rate (Public sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.770,Informal employment rate (Institutional sector not classified) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.770,Informal employment rate (Institutional sector not classified) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.770,Informal employment rate (Institutional sector not classified) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.771,Informal employment rate (Private sector) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.771,Informal employment rate (Private sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.771,Informal employment rate (Private sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.772,Informal employment rate (Public sector) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.772,Informal employment rate (Public sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.772,Informal employment rate (Public sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.773,Informal employment rate (Institutional sector not classified) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.773,Informal employment rate (Institutional sector not classified) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.774,Informal employment rate (Private sector) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.774,Informal employment rate (Private sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.775,Informal employment rate (Public sector) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.775,Informal employment rate (Public sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.776,Informal employment rate (Institutional sector not classified) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.777,Informal employment rate (Private sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.778,Informal employment rate (Public sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.779,Informal employment rate (Institutional sector not classified) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.779,Informal employment rate (Institutional sector not classified) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.780,Informal employment rate (Private sector) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.780,Informal employment rate (Private sector) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.781,Informal employment rate (Public sector) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.781,Informal employment rate (Public sector) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.782,"Informal employment rate (Institutional sector not classified, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.782,"Informal employment rate (Institutional sector not classified, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.782,"Informal employment rate (Institutional sector not classified, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.783,"Informal employment rate (Institutional sector not classified, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.783,"Informal employment rate (Institutional sector not classified, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.783,"Informal employment rate (Institutional sector not classified, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.784,"Informal employment rate (Private sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.784,"Informal employment rate (Private sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.784,"Informal employment rate (Private sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.785,"Informal employment rate (Private sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.785,"Informal employment rate (Private sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.785,"Informal employment rate (Private sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.786,"Informal employment rate (Public sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.786,"Informal employment rate (Public sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.786,"Informal employment rate (Public sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.787,"Informal employment rate (Public sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.787,"Informal employment rate (Public sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.787,"Informal employment rate (Public sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.788,"Informal employment rate (Institutional sector not classified, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.788,"Informal employment rate (Institutional sector not classified, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.788,"Informal employment rate (Institutional sector not classified, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.789,"Informal employment rate (Institutional sector not classified, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.789,"Informal employment rate (Institutional sector not classified, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.789,"Informal employment rate (Institutional sector not classified, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.790,"Informal employment rate (Private sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.790,"Informal employment rate (Private sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.790,"Informal employment rate (Private sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.791,"Informal employment rate (Private sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.791,"Informal employment rate (Private sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.791,"Informal employment rate (Private sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.792,"Informal employment rate (Public sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.792,"Informal employment rate (Public sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.792,"Informal employment rate (Public sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.793,"Informal employment rate (Public sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.793,"Informal employment rate (Public sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.793,"Informal employment rate (Public sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.794,"Informal employment rate (Institutional sector not classified, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.794,"Informal employment rate (Institutional sector not classified, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.795,"Informal employment rate (Institutional sector not classified, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.795,"Informal employment rate (Institutional sector not classified, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.796,"Informal employment rate (Private sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.796,"Informal employment rate (Private sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.797,"Informal employment rate (Private sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.797,"Informal employment rate (Private sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.798,"Informal employment rate (Public sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.798,"Informal employment rate (Public sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.799,"Informal employment rate (Public sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.799,"Informal employment rate (Public sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.800,"Informal employment rate (Institutional sector not classified, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.801,"Informal employment rate (Institutional sector not classified, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.802,"Informal employment rate (Private sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.803,"Informal employment rate (Private sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.804,"Informal employment rate (Public sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.805,"Informal employment rate (Public sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.806,Informal employment rate by Full / part-time job,Full-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.806,Informal employment rate by Full / part-time job,Part-time,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.806,Informal employment rate by Full / part-time job,Job time unknown,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.807,Informal employment rate (Full-time) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.807,Informal employment rate (Full-time) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.807,Informal employment rate (Full-time) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__JOB_TIME--FULL,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.808,Informal employment rate (Job time unknown) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.808,Informal employment rate (Job time unknown) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.809,Informal employment rate (Part-time) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.809,Informal employment rate (Part-time) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__JOB_TIME--PART,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.810,Informal employment rate by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.810,Informal employment rate by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.810,Informal employment rate by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.811,Informal employment rate Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.811,Informal employment rate Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.811,Informal employment rate Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.812,Informal employment rate Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.812,Informal employment rate Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.813,Informal employment rate Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.814,Informal employment rate (Divorced or legally separated),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.815,Informal employment rate (Marital status not elsewhere classified),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.815,Informal employment rate (Marital status not elsewhere classified),No schooling,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.816,Informal employment rate (Married),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.817,Informal employment rate (Married / Union / Cohabiting),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.818,Informal employment rate (Single),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.819,Informal employment rate (Single / Widowed / Divorced),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.820,Informal employment rate (Union / Cohabiting),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.821,Informal employment rate (Widowed),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.822,Informal employment rate (Divorced or legally separated) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.822,Informal employment rate (Divorced or legally separated) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.822,Informal employment rate (Divorced or legally separated) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.822,Informal employment rate (Divorced or legally separated) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.822,Informal employment rate (Divorced or legally separated) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.823,Informal employment rate (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.824,Informal employment rate (Married) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.824,Informal employment rate (Married) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.824,Informal employment rate (Married) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.824,Informal employment rate (Married) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.824,Informal employment rate (Married) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.825,Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.825,Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.825,Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.825,Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.825,Informal employment rate (Married / Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.826,Informal employment rate (Single) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.826,Informal employment rate (Single) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.826,Informal employment rate (Single) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.826,Informal employment rate (Single) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.826,Informal employment rate (Single) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.827,Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.827,Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.827,Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.827,Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.827,Informal employment rate (Single / Widowed / Divorced) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.828,Informal employment rate (Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.828,Informal employment rate (Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.828,Informal employment rate (Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.828,Informal employment rate (Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.828,Informal employment rate (Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.829,Informal employment rate (Widowed) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.829,Informal employment rate (Widowed) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.829,Informal employment rate (Widowed) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.829,Informal employment rate (Widowed) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.829,Informal employment rate (Widowed) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.830,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.831,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.832,Informal employment rate (Married) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.833,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.834,Informal employment rate (Single) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.835,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.836,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.837,Informal employment rate (Widowed) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.838,Informal employment rate (Divorced or legally separated) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.839,Informal employment rate (Marital status not elsewhere classified) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.840,Informal employment rate (Married) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.841,Informal employment rate (Married / Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.842,Informal employment rate (Single) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.843,Informal employment rate (Single / Widowed / Divorced) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.844,Informal employment rate (Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.845,Informal employment rate (Widowed) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.846,Informal employment rate by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.847,Informal employment rate by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.847,Informal employment rate by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.847,Informal employment rate by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.848,Informal employment rate by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.848,Informal employment rate by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.848,Informal employment rate by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.848,Informal employment rate by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.849,Informal employment rate by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.850,Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.850,Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.850,Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.850,Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.850,Informal employment rate by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.851,Informal employment rate by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.851,Informal employment rate by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.851,Informal employment rate by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.851,Informal employment rate by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.852,Informal employment rate by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.852,Informal employment rate by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.852,Informal employment rate by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.852,Informal employment rate by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.853,"Informal employment rate by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.853,"Informal employment rate by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.853,"Informal employment rate by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.854,Informal employment rate by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.854,Informal employment rate by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.854,Informal employment rate by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.854,Informal employment rate by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.854,Informal employment rate by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.855,Informal employment rate by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.855,"Informal employment rate by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.855,"Informal employment rate by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.856,Informal employment rate by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.857,Informal employment rate by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.858,Informal employment rate by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.859,"Informal employment rate by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.859,"Informal employment rate by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.859,"Informal employment rate by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.860,Informal employment rate by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.860,Informal employment rate by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.860,Informal employment rate by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.860,Informal employment rate by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.861,Informal employment rate by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.861,Informal employment rate by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.861,Informal employment rate by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.861,Informal employment rate by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.862,Informal employment rate by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.862,Informal employment rate by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.863,Informal employment rate by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.863,Informal employment rate by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.864,Informal employment rate by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.864,Informal employment rate by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.865,Informal employment rate by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.865,Informal employment rate by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.865,Informal employment rate by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.865,Informal employment rate by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.866,Informal employment rate by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.866,Informal employment rate by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.866,Informal employment rate by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.867,Informal employment rate by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.867,Informal employment rate by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.867,Informal employment rate by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.868,Informal employment rate by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.868,Informal employment rate by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.868,Informal employment rate by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.869,Informal employment rate (Female) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.870,Informal employment rate (Male) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.871,"Informal employment rate (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.871,"Informal employment rate (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.871,"Informal employment rate (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.872,"Informal employment rate (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.872,"Informal employment rate (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.872,"Informal employment rate (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.873,Informal employment rate (Female) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.873,Informal employment rate (Female) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.873,Informal employment rate (Female) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.873,Informal employment rate (Female) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.873,Informal employment rate (Female) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.874,Informal employment rate (Male) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.874,Informal employment rate (Male) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.874,Informal employment rate (Male) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.874,Informal employment rate (Male) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.874,Informal employment rate (Male) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.875,"Informal employment rate (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.875,"Informal employment rate (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.876,"Informal employment rate (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.876,"Informal employment rate (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.877,Informal employment rate (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.877,Informal employment rate (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.878,Informal employment rate (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.878,Informal employment rate (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.879,"Informal employment rate (Female) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.880,"Informal employment rate (Male) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.881,"Informal employment rate (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.882,"Informal employment rate (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.883,Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.883,Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.884,Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.884,Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.885,"Informal employment rate (Female) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.885,"Informal employment rate (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.885,"Informal employment rate (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.886,"Informal employment rate (Male) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.886,"Informal employment rate (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.886,"Informal employment rate (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.887,Informal employment rate (Female) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.888,Informal employment rate (Male) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.889,Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.889,Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.890,Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.890,Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.891,Informal employment rate (Female) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.892,Informal employment rate (Male) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.893,"Informal employment rate (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.893,"Informal employment rate (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.893,"Informal employment rate (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.893,"Informal employment rate (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.894,"Informal employment rate (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.894,"Informal employment rate (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.894,"Informal employment rate (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.894,"Informal employment rate (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.895,Informal employment rate (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.895,Informal employment rate (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.896,Informal employment rate (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.896,Informal employment rate (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.897,"Informal employment rate (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.897,"Informal employment rate (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.898,"Informal employment rate (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.898,"Informal employment rate (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.899,"Informal employment rate (Female) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.899,"Informal employment rate (Female) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.900,"Informal employment rate (Male) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.900,"Informal employment rate (Male) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.901,Informal employment rate (Female) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.902,Informal employment rate (Male) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.903,"Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.903,"Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.903,"Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.904,"Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.904,"Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.904,"Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.905,Informal employment rate (Female) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.906,Informal employment rate (Male) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.907,"Informal employment rate (Female) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.907,"Informal employment rate (Female) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.907,"Informal employment rate (Female) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.907,"Informal employment rate (Female) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.907,"Informal employment rate (Female) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.908,"Informal employment rate (Male) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.908,"Informal employment rate (Male) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.908,"Informal employment rate (Male) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.908,"Informal employment rate (Male) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.908,"Informal employment rate (Male) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.909,Informal employment rate (Female) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.909,Informal employment rate (Female) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.909,Informal employment rate (Female) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.910,Informal employment rate (Male) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.910,Informal employment rate (Male) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.910,Informal employment rate (Male) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.911,"Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.911,"Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.911,"Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.911,"Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.911,"Informal employment rate (Female) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.912,"Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.912,"Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.912,"Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.912,"Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.912,"Informal employment rate (Male) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.913,Informal employment rate (Female) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.914,Informal employment rate (Male) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.915,Informal employment rate (Female) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.916,Informal employment rate (Male) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.917,Informal employment rate (Female) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.918,Informal employment rate (Male) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.919,"Informal employment rate (Female) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.919,"Informal employment rate (Female) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.919,"Informal employment rate (Female) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.919,"Informal employment rate (Female) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.920,"Informal employment rate (Male) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.920,"Informal employment rate (Male) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.920,"Informal employment rate (Male) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.920,"Informal employment rate (Male) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.921,Informal employment rate (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.921,Informal employment rate (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.921,Informal employment rate (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.922,Informal employment rate (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.922,Informal employment rate (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.922,Informal employment rate (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.923,Informal employment rate (Female) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.924,Informal employment rate (Male) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.925,Informal employment rate (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.926,Informal employment rate (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.927,Informal employment rate (Female) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.927,Informal employment rate (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.927,Informal employment rate (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.928,Informal employment rate (Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.928,Informal employment rate (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.928,Informal employment rate (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.929,Informal employment rate (Sex other than Female or Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.930,Informal employment rate (Female) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.930,Informal employment rate (Female) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.930,Informal employment rate (Female) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.930,Informal employment rate (Female) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.930,Informal employment rate (Female) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.931,Informal employment rate (Male) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.931,Informal employment rate (Male) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.931,Informal employment rate (Male) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.931,Informal employment rate (Male) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.931,Informal employment rate (Male) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.932,"Informal employment rate (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.932,"Informal employment rate (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.932,"Informal employment rate (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.933,"Informal employment rate (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.933,"Informal employment rate (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.933,"Informal employment rate (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.934,Informal employment rate (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.934,Informal employment rate (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.935,Informal employment rate (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.935,Informal employment rate (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.936,Informal employment rate (Female) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.937,Informal employment rate (Male) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.938,"Informal employment rate (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.939,"Informal employment rate (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.940,Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.940,Informal employment rate (Female) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.941,Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.941,Informal employment rate (Male) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.942,"Informal employment rate (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.942,"Informal employment rate (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.942,"Informal employment rate (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.942,"Informal employment rate (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.943,"Informal employment rate (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.943,"Informal employment rate (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.943,"Informal employment rate (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.943,"Informal employment rate (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.944,Informal employment rate (Female) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.945,Informal employment rate (Male) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.946,Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.946,Informal employment rate (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.947,Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.947,Informal employment rate (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.948,"Informal employment rate (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.948,"Informal employment rate (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.948,"Informal employment rate (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.949,"Informal employment rate (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.949,"Informal employment rate (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.949,"Informal employment rate (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.950,Informal employment rate (Female) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.950,Informal employment rate (Female) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.951,Informal employment rate (Male) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.951,Informal employment rate (Male) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.952,Informal employment rate (Female) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.953,Informal employment rate (Male) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.954,Informal employment rate (Female) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.955,Informal employment rate (Male) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.956,Informal employment rate (Female) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.957,Informal employment rate (Male) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.958,"Informal employment rate (Female) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.959,"Informal employment rate (Male) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.960,"Informal employment rate (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.960,"Informal employment rate (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.960,"Informal employment rate (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.960,"Informal employment rate (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.961,"Informal employment rate (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.961,"Informal employment rate (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.961,"Informal employment rate (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.961,"Informal employment rate (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.962,Informal employment rate (Female) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.962,Informal employment rate (Female) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.962,Informal employment rate (Female) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.963,Informal employment rate (Male) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.963,Informal employment rate (Male) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.963,Informal employment rate (Male) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.964,Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.964,Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.964,Informal employment rate (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.965,Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.965,Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.965,Informal employment rate (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.966,Informal employment rate (Sex other than Female or Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.967,Informal employment rate (Female) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.967,Informal employment rate (Female) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.967,Informal employment rate (Female) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.967,Informal employment rate (Female) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.967,Informal employment rate (Female) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.968,Informal employment rate (Male) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.968,Informal employment rate (Male) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.968,Informal employment rate (Male) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.968,Informal employment rate (Male) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.968,Informal employment rate (Male) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.969,Informal employment rate (Female) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.969,Informal employment rate (Female) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.970,Informal employment rate (Male) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.970,Informal employment rate (Male) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.971,Informal employment rate (Female) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.972,Informal employment rate (Male) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.973,Informal employment rate (Female) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.973,Informal employment rate (Female) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.973,Informal employment rate (Female) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.974,Informal employment rate (Male) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.974,Informal employment rate (Male) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.974,Informal employment rate (Male) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.975,Informal employment rate (Female) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.976,Informal employment rate (Male) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.977,"Informal employment rate (Female) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.978,"Informal employment rate (Male) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.979,Informal employment rate (Female) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.980,Informal employment rate (Male) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.981,Informal employment rate (Female) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.982,Informal employment rate (Male) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.983,Informal employment rate (Female) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.984,Informal employment rate (Male) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.985,Informal employment rate (Female) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.985,Informal employment rate (Female) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.985,Informal employment rate (Female) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.986,Informal employment rate (Male) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.986,Informal employment rate (Male) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.986,Informal employment rate (Male) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.987,"Informal employment rate (Female) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.987,"Informal employment rate (Female) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.987,"Informal employment rate (Female) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.987,"Informal employment rate (Female) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.988,"Informal employment rate (Male) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.988,"Informal employment rate (Male) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.988,"Informal employment rate (Male) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.988,"Informal employment rate (Male) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.989,Informal employment rate (Female) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.989,Informal employment rate (Female) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.989,Informal employment rate (Female) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.990,Informal employment rate (Male) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.990,Informal employment rate (Male) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.990,Informal employment rate (Male) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.991,Informal employment rate (Female) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.992,Informal employment rate (Male) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.993,Informal employment rate (Female) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.994,Informal employment rate (Male) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.995,Informal employment rate (Female) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.996,Informal employment rate (Male) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.997,Informal employment rate (Female),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.998,Informal employment rate (Male),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.999,Informal employment rate (Sex other than Female or Male),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1000,Informal employment rate (Female) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1000,Informal employment rate (Female) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1000,Informal employment rate (Female) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1000,Informal employment rate (Female) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1000,Informal employment rate (Female) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1001,Informal employment rate (Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1001,Informal employment rate (Male) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1001,Informal employment rate (Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1001,Informal employment rate (Male) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1001,Informal employment rate (Male) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1002,Informal employment rate (Sex other than Female or Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1002,Informal employment rate (Sex other than Female or Male) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1002,Informal employment rate (Sex other than Female or Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1003,Informal employment rate (Female) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1004,Informal employment rate (Male) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1005,Informal employment rate (Female) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1006,Informal employment rate (Male) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1007,Informal employment rate (Sex other than Female or Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1008,Informal employment rate (Female) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1008,Informal employment rate (Female) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1008,Informal employment rate (Female) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1009,Informal employment rate (Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1009,Informal employment rate (Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1009,Informal employment rate (Male) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1010,Informal employment rate (Sex other than Female or Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1010,Informal employment rate (Sex other than Female or Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1011,Informal employment rate (Female) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1011,Informal employment rate (Female) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1011,Informal employment rate (Female) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1012,Informal employment rate (Male) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1012,Informal employment rate (Male) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1012,Informal employment rate (Male) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1013,Informal employment rate (Sex other than Female or Male) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1014,Informal employment rate (Female) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1014,Informal employment rate (Female) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1015,Informal employment rate (Male) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1015,Informal employment rate (Male) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1016,Informal employment rate (Sex other than Female or Male) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1017,Informal employment rate (Female) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1018,Informal employment rate (Male) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1019,"Informal employment rate (Female, Divorced or legally separated)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1020,"Informal employment rate (Female, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1020,"Informal employment rate (Female, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1021,"Informal employment rate (Female, Married)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1022,"Informal employment rate (Female, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1023,"Informal employment rate (Female, Single)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1024,"Informal employment rate (Female, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1025,"Informal employment rate (Female, Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1026,"Informal employment rate (Female, Widowed)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1027,"Informal employment rate (Male, Divorced or legally separated)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1028,"Informal employment rate (Male, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1028,"Informal employment rate (Male, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1029,"Informal employment rate (Male, Married)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1030,"Informal employment rate (Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1031,"Informal employment rate (Male, Single)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1032,"Informal employment rate (Male, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1033,"Informal employment rate (Male, Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1034,"Informal employment rate (Male, Widowed)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1035,"Informal employment rate (Sex other than Female or Male, Married)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1036,"Informal employment rate (Sex other than Female or Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1037,"Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1037,"Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1037,"Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1037,"Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1037,"Informal employment rate (Female, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1038,"Informal employment rate (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1039,"Informal employment rate (Female, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1039,"Informal employment rate (Female, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1039,"Informal employment rate (Female, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1039,"Informal employment rate (Female, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1039,"Informal employment rate (Female, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1040,"Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1040,"Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1040,"Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1040,"Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1040,"Informal employment rate (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1041,"Informal employment rate (Female, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1041,"Informal employment rate (Female, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1041,"Informal employment rate (Female, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1041,"Informal employment rate (Female, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1041,"Informal employment rate (Female, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1042,"Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1042,"Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1042,"Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1042,"Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1042,"Informal employment rate (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1043,"Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1043,"Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1043,"Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1043,"Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1043,"Informal employment rate (Female, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1044,"Informal employment rate (Female, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1044,"Informal employment rate (Female, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1044,"Informal employment rate (Female, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1044,"Informal employment rate (Female, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1044,"Informal employment rate (Female, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1045,"Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1045,"Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1045,"Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1045,"Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1045,"Informal employment rate (Male, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1046,"Informal employment rate (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1047,"Informal employment rate (Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1047,"Informal employment rate (Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1047,"Informal employment rate (Male, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1047,"Informal employment rate (Male, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1047,"Informal employment rate (Male, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1048,"Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1048,"Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1048,"Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1048,"Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1048,"Informal employment rate (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1049,"Informal employment rate (Male, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1049,"Informal employment rate (Male, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1049,"Informal employment rate (Male, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1049,"Informal employment rate (Male, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1049,"Informal employment rate (Male, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1050,"Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1050,"Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1050,"Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1050,"Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1050,"Informal employment rate (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1051,"Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1051,"Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1051,"Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1051,"Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1051,"Informal employment rate (Male, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1052,"Informal employment rate (Male, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1052,"Informal employment rate (Male, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1052,"Informal employment rate (Male, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1052,"Informal employment rate (Male, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1052,"Informal employment rate (Male, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1053,"Informal employment rate (Sex other than Female or Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1053,"Informal employment rate (Sex other than Female or Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1054,"Informal employment rate (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1054,"Informal employment rate (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1055,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1056,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1057,"Informal employment rate (Female, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1058,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1059,"Informal employment rate (Female, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1060,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1061,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1062,"Informal employment rate (Female, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1063,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1064,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1065,"Informal employment rate (Male, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1066,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1067,"Informal employment rate (Male, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1068,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1069,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1070,"Informal employment rate (Male, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1071,"Informal employment rate (Female, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1072,"Informal employment rate (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1073,"Informal employment rate (Female, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1074,"Informal employment rate (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1075,"Informal employment rate (Female, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1076,"Informal employment rate (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1077,"Informal employment rate (Female, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1078,"Informal employment rate (Female, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1079,"Informal employment rate (Male, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1080,"Informal employment rate (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1081,"Informal employment rate (Male, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1082,"Informal employment rate (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1083,"Informal employment rate (Male, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1084,"Informal employment rate (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1085,"Informal employment rate (Male, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1086,"Informal employment rate (Male, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1087,"Informal employment rate (Sex other than Female or Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1088,"Informal employment rate (Sex other than Female or Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1089,Informal employment rate (Female) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1090,Informal employment rate (Male) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_X__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1091,Informal employment rate (Female) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1091,Informal employment rate (Female) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1091,Informal employment rate (Female) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1092,Informal employment rate (Male) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_01__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1092,Informal employment rate (Male) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_02__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1092,Informal employment rate (Male) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_03__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1093,Informal employment rate (Female) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1093,Informal employment rate (Female) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1093,Informal employment rate (Female) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1093,Informal employment rate (Female) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1094,Informal employment rate (Male) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_11__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1094,Informal employment rate (Male) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_12__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1094,Informal employment rate (Male) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_13__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1094,Informal employment rate (Male) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_14__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1095,Informal employment rate (Female) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_21__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_22__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_23__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_25__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1096,Informal employment rate (Male) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_26__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1097,Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1097,Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1097,Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1097,Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1097,Informal employment rate (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1098,Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_31__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1098,Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_32__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1098,Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_33__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1098,Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_34__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1098,Informal employment rate (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_35__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1099,Informal employment rate (Female) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1099,Informal employment rate (Female) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1099,Informal employment rate (Female) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1099,Informal employment rate (Female) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1100,Informal employment rate (Male) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_41__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1100,Informal employment rate (Male) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_42__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1100,Informal employment rate (Male) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_43__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1100,Informal employment rate (Male) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_44__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1101,Informal employment rate (Female) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1101,Informal employment rate (Female) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1101,Informal employment rate (Female) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1101,Informal employment rate (Female) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1102,Informal employment rate (Male) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_51__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1102,Informal employment rate (Male) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_52__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1102,Informal employment rate (Male) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_53__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1102,Informal employment rate (Male) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_54__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1103,"Informal employment rate (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1103,"Informal employment rate (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1103,"Informal employment rate (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1104,"Informal employment rate (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_61__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1104,"Informal employment rate (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_62__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1104,"Informal employment rate (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_63__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1105,Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1105,Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1105,Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1105,Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1105,Informal employment rate (Female) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1106,Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_71__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1106,Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_72__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1106,Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_73__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1106,Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_74__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1106,Informal employment rate (Male) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_75__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1107,Informal employment rate (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1107,"Informal employment rate (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1107,"Informal employment rate (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1108,Informal employment rate (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_81__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1108,"Informal employment rate (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_82__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1108,"Informal employment rate (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_83__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1109,Informal employment rate (Female) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_91__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_92__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_93__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_94__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_95__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1110,Informal employment rate (Male) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO08_96__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1111,Informal employment rate (Female) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1112,Informal employment rate (Male) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_X__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1113,Informal employment rate (Female) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1114,Informal employment rate (Male) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_01__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1115,"Informal employment rate (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1115,"Informal employment rate (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1115,"Informal employment rate (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1116,"Informal employment rate (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_11__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1116,"Informal employment rate (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_12__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1116,"Informal employment rate (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_13__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1117,Informal employment rate (Female) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1117,Informal employment rate (Female) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1117,Informal employment rate (Female) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1117,Informal employment rate (Female) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1118,Informal employment rate (Male) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_21__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1118,Informal employment rate (Male) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_22__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1118,Informal employment rate (Male) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_23__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1118,Informal employment rate (Male) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_24__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1119,Informal employment rate (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1119,Informal employment rate (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1119,Informal employment rate (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1119,Informal employment rate (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1120,Informal employment rate (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_31__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1120,Informal employment rate (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_32__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1120,Informal employment rate (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_33__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1120,Informal employment rate (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_34__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1121,Informal employment rate (Female) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1121,Informal employment rate (Female) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1122,Informal employment rate (Male) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_41__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1122,Informal employment rate (Male) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_42__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1123,Informal employment rate (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1123,Informal employment rate (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1124,Informal employment rate (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_51__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1124,Informal employment rate (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1125,Informal employment rate (Sex other than Female or Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_52__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1126,Informal employment rate (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1126,Informal employment rate (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1127,Informal employment rate (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1127,Informal employment rate (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_62__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1128,Informal employment rate (Sex other than Female or Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_61__SEX--O,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1129,Informal employment rate (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1129,Informal employment rate (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1129,Informal employment rate (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1129,Informal employment rate (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1130,Informal employment rate (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_71__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1130,Informal employment rate (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_72__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1130,Informal employment rate (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_73__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1130,Informal employment rate (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_74__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1131,Informal employment rate (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1131,Informal employment rate (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1131,Informal employment rate (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1132,Informal employment rate (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_81__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1132,Informal employment rate (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_82__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1132,Informal employment rate (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_83__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1133,Informal employment rate (Female) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1133,Informal employment rate (Female) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1133,Informal employment rate (Female) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93__SEX--F,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1134,Informal employment rate (Male) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_91__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1134,Informal employment rate (Male) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_92__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1134,Informal employment rate (Male) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.OCCUPATION--ISCO88_93__SEX--M,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1135,Informal employment rate by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1136,Informal employment rate by Employment status,Employees,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1136,Informal employment rate by Employment status,Self-employed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1136,Informal employment rate by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1137,Informal employment rate (Contributing family workers (ICSE93_5)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1137,Informal employment rate (Contributing family workers (ICSE93_5)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1137,Informal employment rate (Contributing family workers (ICSE93_5)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1138,Informal employment rate (Employees) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1138,Informal employment rate (Employees) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1138,Informal employment rate (Employees) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1139,Informal employment rate (Employees (ICSE93_1)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1139,Informal employment rate (Employees (ICSE93_1)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1139,Informal employment rate (Employees (ICSE93_1)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1140,Informal employment rate (Employers (ICSE93_2)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1140,Informal employment rate (Employers (ICSE93_2)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1141,Informal employment rate (Emplyment status not elsewhere classified) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1141,Informal employment rate (Emplyment status not elsewhere classified) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1142,Informal employment rate (Members of producers' cooperatives (ICSE93_4)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1142,Informal employment rate (Members of producers' cooperatives (ICSE93_4)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1143,Informal employment rate (Own-account workers (ICSE93_3)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1143,Informal employment rate (Own-account workers (ICSE93_3)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1143,Informal employment rate (Own-account workers (ICSE93_3)) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1144,Informal employment rate (Self-employed) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1144,Informal employment rate (Self-employed) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1144,Informal employment rate (Self-employed) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1145,Informal employment rate (Workers not classifiable by status (ICSE93_6)) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1145,Informal employment rate (Workers not classifiable by status (ICSE93_6)) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1146,Informal employment rate by Urbanization (Rural/Urban),Rural,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1146,Informal employment rate by Urbanization (Rural/Urban),Urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1146,Informal employment rate by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1147,Informal employment rate (Not classsified as rural or urban) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1147,Informal employment rate (Not classsified as rural or urban) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1148,Informal employment rate (Rural) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1148,Informal employment rate (Rural) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1149,Informal employment rate (Urban) by Disability status,Persons with disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1149,Informal employment rate (Urban) by Disability status,Persons without disability,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1150,"Informal employment rate (Not classsified as rural or urban, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1150,"Informal employment rate (Not classsified as rural or urban, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1151,"Informal employment rate (Not classsified as rural or urban, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1151,"Informal employment rate (Not classsified as rural or urban, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1152,"Informal employment rate (Rural, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1152,"Informal employment rate (Rural, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1153,"Informal employment rate (Rural, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1153,"Informal employment rate (Rural, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1154,"Informal employment rate (Urban, Persons with disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1154,"Informal employment rate (Urban, Persons with disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1155,"Informal employment rate (Urban, Persons without disability) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1155,"Informal employment rate (Urban, Persons without disability) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1156,Informal employment rate (Rural),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1157,Informal employment rate (Urban),No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1158,Informal employment rate (Not classsified as rural or urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1158,Informal employment rate (Not classsified as rural or urban) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1158,Informal employment rate (Not classsified as rural or urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1158,Informal employment rate (Not classsified as rural or urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1158,Informal employment rate (Not classsified as rural or urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1159,Informal employment rate (Rural) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1159,Informal employment rate (Rural) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1159,Informal employment rate (Rural) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1159,Informal employment rate (Rural) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1159,Informal employment rate (Rural) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1160,Informal employment rate (Urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1160,Informal employment rate (Urban) by Aggregate education levels,Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1160,Informal employment rate (Urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1160,Informal employment rate (Urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1160,Informal employment rate (Urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1161,Informal employment rate (Not classsified as rural or urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1162,Informal employment rate (Rural) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1163,Informal employment rate (Urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1164,Informal employment rate (Rural) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1165,Informal employment rate (Urban) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1166,Informal employment rate (Not classsified as rural or urban) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1166,Informal employment rate (Not classsified as rural or urban) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1167,Informal employment rate (Rural) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1167,Informal employment rate (Rural) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1167,Informal employment rate (Rural) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1168,Informal employment rate (Urban) by Institutional sector,Private sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1168,Informal employment rate (Urban) by Institutional sector,Public sector,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1168,Informal employment rate (Urban) by Institutional sector,Institutional sector not classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1169,"Informal employment rate (Not classsified as rural or urban, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1169,"Informal employment rate (Not classsified as rural or urban, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1170,"Informal employment rate (Not classsified as rural or urban, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1170,"Informal employment rate (Not classsified as rural or urban, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1171,"Informal employment rate (Rural, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1171,"Informal employment rate (Rural, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1172,"Informal employment rate (Rural, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1172,"Informal employment rate (Rural, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1173,"Informal employment rate (Rural, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1173,"Informal employment rate (Rural, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1174,"Informal employment rate (Urban, Institutional sector not classified) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1174,"Informal employment rate (Urban, Institutional sector not classified) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1175,"Informal employment rate (Urban, Private sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1175,"Informal employment rate (Urban, Private sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1176,"Informal employment rate (Urban, Public sector) by Sex",Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1176,"Informal employment rate (Urban, Public sector) by Sex",Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1177,Informal employment rate (Not classsified as rural or urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1177,Informal employment rate (Not classsified as rural or urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1178,Informal employment rate (Rural) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1178,Informal employment rate (Rural) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1178,Informal employment rate (Rural) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1179,Informal employment rate (Urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1179,Informal employment rate (Urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1179,Informal employment rate (Urban) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1180,Informal employment rate (Not classsified as rural or urban) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1180,Informal employment rate (Not classsified as rural or urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1180,Informal employment rate (Not classsified as rural or urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1181,Informal employment rate (Rural) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1181,Informal employment rate (Rural) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1181,Informal employment rate (Rural) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1182,Informal employment rate (Urban) Single / Widowed / Divorced,Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1182,Informal employment rate (Urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1182,Informal employment rate (Urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1183,Informal employment rate (Not classsified as rural or urban) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1183,Informal employment rate (Not classsified as rural or urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1184,Informal employment rate (Rural) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1184,Informal employment rate (Rural) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1185,Informal employment rate (Urban) Married / Union / Cohabiting,Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1185,Informal employment rate (Urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1186,Informal employment rate (Rural) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1187,Informal employment rate (Urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1188,Informal employment rate (Not classsified as rural or urban) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1188,Informal employment rate (Not classsified as rural or urban) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1189,Informal employment rate (Rural) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1189,Informal employment rate (Rural) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1189,Informal employment rate (Rural) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1190,Informal employment rate (Urban) by Sex,Female,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1190,Informal employment rate (Urban) by Sex,Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1190,Informal employment rate (Urban) by Sex,Sex other than Female or Male,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1191,"Informal employment rate (Rural, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1192,"Informal employment rate (Rural, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1193,"Informal employment rate (Rural, Sex other than Female or Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1194,"Informal employment rate (Urban, Female)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1195,"Informal employment rate (Urban, Male)",No schooling,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1196,"Informal employment rate (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1196,"Informal employment rate (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1196,"Informal employment rate (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1196,"Informal employment rate (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1197,"Informal employment rate (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1197,"Informal employment rate (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1197,"Informal employment rate (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1197,"Informal employment rate (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1198,"Informal employment rate (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1198,"Informal employment rate (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1198,"Informal employment rate (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1198,"Informal employment rate (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1198,"Informal employment rate (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1199,"Informal employment rate (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1199,"Informal employment rate (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1199,"Informal employment rate (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1199,"Informal employment rate (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1199,"Informal employment rate (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1200,"Informal employment rate (Rural, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1200,"Informal employment rate (Rural, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1201,"Informal employment rate (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1201,"Informal employment rate (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1201,"Informal employment rate (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1201,"Informal employment rate (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1201,"Informal employment rate (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1202,"Informal employment rate (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1202,"Informal employment rate (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1202,"Informal employment rate (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1202,"Informal employment rate (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1202,"Informal employment rate (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1203,"Informal employment rate (Not classsified as rural or urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1204,"Informal employment rate (Not classsified as rural or urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1205,"Informal employment rate (Rural, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1206,"Informal employment rate (Rural, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1207,"Informal employment rate (Urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1208,"Informal employment rate (Urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1209,"Informal employment rate (Rural, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1210,"Informal employment rate (Rural, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1211,"Informal employment rate (Rural, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1212,"Informal employment rate (Urban, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1213,"Informal employment rate (Urban, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1214,"Informal employment rate (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1214,"Informal employment rate (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1215,"Informal employment rate (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1215,"Informal employment rate (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1216,"Informal employment rate (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1216,"Informal employment rate (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1216,"Informal employment rate (Rural, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1217,"Informal employment rate (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1217,"Informal employment rate (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1217,"Informal employment rate (Rural, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1218,"Informal employment rate (Rural, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1218,"Informal employment rate (Rural, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1219,"Informal employment rate (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1219,"Informal employment rate (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1219,"Informal employment rate (Urban, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1220,"Informal employment rate (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1220,"Informal employment rate (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1220,"Informal employment rate (Urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1221,"Informal employment rate (Urban, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1222,"Informal employment rate (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1222,"Informal employment rate (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1222,"Informal employment rate (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1223,"Informal employment rate (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1223,"Informal employment rate (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1223,"Informal employment rate (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1224,"Informal employment rate (Rural, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1224,"Informal employment rate (Rural, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1224,"Informal employment rate (Rural, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1225,"Informal employment rate (Rural, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1225,"Informal employment rate (Rural, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1225,"Informal employment rate (Rural, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1226,"Informal employment rate (Urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1226,"Informal employment rate (Urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1226,"Informal employment rate (Urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1227,"Informal employment rate (Urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1227,"Informal employment rate (Urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1227,"Informal employment rate (Urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1228,"Informal employment rate (Urban, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1229,"Informal employment rate (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1229,"Informal employment rate (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1230,"Informal employment rate (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1230,"Informal employment rate (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1231,"Informal employment rate (Rural, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1231,"Informal employment rate (Rural, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1232,"Informal employment rate (Rural, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1232,"Informal employment rate (Rural, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1233,"Informal employment rate (Rural, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1234,"Informal employment rate (Urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1234,"Informal employment rate (Urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1235,"Informal employment rate (Urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1235,"Informal employment rate (Urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1236,"Informal employment rate (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1237,"Informal employment rate (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1238,"Informal employment rate (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NIFL_RT.1239,"Informal employment rate (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_NIFL_RT,ilo/EMP_NIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,EMP_NIFL_RT,Informal employment rate +EMP_NORM_NB.001,"Employment, normative approach",Total,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB,EMP_NORM_NB,"Employment, normative approach" +EMP_NORM_NB.002,"Employment, normative approach by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.002,"Employment, normative approach by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.002,"Employment, normative approach by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.003,"Employment, normative approach by Job/Skill match",Education matches job,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.003,"Employment, normative approach by Job/Skill match",Overeducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.003,"Employment, normative approach by Job/Skill match",Undereducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.004,"Employment, normative approach (Education matches job) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.004,"Employment, normative approach (Education matches job) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.004,"Employment, normative approach (Education matches job) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.005,"Employment, normative approach (Overeducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.005,"Employment, normative approach (Overeducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.005,"Employment, normative approach (Overeducated) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.006,"Employment, normative approach (Undereducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.006,"Employment, normative approach (Undereducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.006,"Employment, normative approach (Undereducated) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.007,"Employment, normative approach by Employment status",Employees,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.007,"Employment, normative approach by Employment status",Self-employed,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.008,"Employment, normative approach (Employees) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.008,"Employment, normative approach (Employees) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.008,"Employment, normative approach (Employees) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.009,"Employment, normative approach (Self-employed) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.009,"Employment, normative approach (Self-employed) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.009,"Employment, normative approach (Self-employed) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.010,"Employment, normative approach (Employees) by Job/Skill match",Education matches job,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.010,"Employment, normative approach (Employees) by Job/Skill match",Overeducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.010,"Employment, normative approach (Employees) by Job/Skill match",Undereducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.011,"Employment, normative approach (Self-employed) by Job/Skill match",Education matches job,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.011,"Employment, normative approach (Self-employed) by Job/Skill match",Overeducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.011,"Employment, normative approach (Self-employed) by Job/Skill match",Undereducated,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.012,"Employment, normative approach (Employees, Education matches job) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.012,"Employment, normative approach (Employees, Education matches job) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.012,"Employment, normative approach (Employees, Education matches job) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.013,"Employment, normative approach (Employees, Overeducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.013,"Employment, normative approach (Employees, Overeducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.014,"Employment, normative approach (Employees, Undereducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.014,"Employment, normative approach (Employees, Undereducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.014,"Employment, normative approach (Employees, Undereducated) by Sex",Sex other than Female or Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.015,"Employment, normative approach (Self-employed, Education matches job) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.015,"Employment, normative approach (Self-employed, Education matches job) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.016,"Employment, normative approach (Self-employed, Overeducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.016,"Employment, normative approach (Self-employed, Overeducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.017,"Employment, normative approach (Self-employed, Undereducated) by Sex",Female,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_NORM_NB.017,"Employment, normative approach (Self-employed, Undereducated) by Sex",Male,,,ILO_EMP_NORM_NB,ilo/EMP_NORM_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_NORM_NB,"Employment, normative approach " +EMP_PIFL_NB.001,Employment outside the formal sector,Total,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,15 to 19 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,15 to 24 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,15 to 64 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,15 years old and over,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,20 to 24 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y20T24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,25 to 29 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,25 to 34 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,25 to 54 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,25 years old and over,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,30 to 34 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y30T34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,35 to 39 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,35 to 44 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,40 to 44 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y40T44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,45 to 49 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,45 to 54 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,50 to 54 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y50T54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,55 to 59 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T59,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,55 to 64 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,60 to 64 years old,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y60T64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.002,Employment outside the formal sector by Age group,65 years old and over,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.003,Employment outside the formal sector (15 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.003,Employment outside the formal sector (15 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.004,Employment outside the formal sector (15 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.004,Employment outside the formal sector (15 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.005,Employment outside the formal sector (15 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.005,Employment outside the formal sector (15 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.006,Employment outside the formal sector (25 to 54 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.006,Employment outside the formal sector (25 to 54 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.007,Employment outside the formal sector (25 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.007,Employment outside the formal sector (25 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.008,Employment outside the formal sector (55 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.008,Employment outside the formal sector (55 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.009,Employment outside the formal sector (65 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.009,Employment outside the formal sector (65 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.010,"Employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.010,"Employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.011,"Employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.011,"Employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.012,"Employment outside the formal sector (15 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.012,"Employment outside the formal sector (15 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.013,"Employment outside the formal sector (15 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.013,"Employment outside the formal sector (15 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.014,"Employment outside the formal sector (15 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.014,"Employment outside the formal sector (15 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.015,"Employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.015,"Employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.015,"Employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.016,"Employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.016,"Employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.017,"Employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.017,"Employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.018,"Employment outside the formal sector (25 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.018,"Employment outside the formal sector (25 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.019,"Employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.019,"Employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.019,"Employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.020,"Employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.020,"Employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.021,"Employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.021,"Employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.022,"Employment outside the formal sector (65 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.022,"Employment outside the formal sector (65 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.023,"Employment outside the formal sector (65 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.023,"Employment outside the formal sector (65 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.024,Employment outside the formal sector (15 to 24 years old) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.025,Employment outside the formal sector (15 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.026,Employment outside the formal sector (25 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.027,"Employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.027,"Employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.027,"Employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.028,"Employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.028,"Employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.028,"Employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.029,"Employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.029,"Employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.029,"Employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.030,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.030,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.030,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.030,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.030,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.031,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.031,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.031,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.031,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.031,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.032,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.032,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.032,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.032,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.032,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.033,"Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.033,"Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.034,"Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.034,"Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.035,"Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.035,"Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.036,Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.036,Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.037,Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.037,Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.038,Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.038,Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.039,"Employment outside the formal sector (15 to 24 years old) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.040,"Employment outside the formal sector (15 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.041,"Employment outside the formal sector (25 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.042,"Employment outside the formal sector (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.043,"Employment outside the formal sector (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.044,"Employment outside the formal sector (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.045,Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.045,Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.046,Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.046,Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.047,Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.047,Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.048,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.048,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.049,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.049,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.049,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.050,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.050,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.050,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.051,Employment outside the formal sector (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.052,Employment outside the formal sector (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.053,Employment outside the formal sector (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.054,Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.054,Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.055,Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.055,Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.056,Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.056,Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.057,Employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.058,Employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.059,Employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.060,"Employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.060,"Employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.060,"Employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.060,"Employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.061,"Employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.061,"Employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.061,"Employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.061,"Employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.062,"Employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.062,"Employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.062,"Employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.062,"Employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.063,Employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.063,Employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.064,Employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.064,Employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.065,Employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.065,Employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.066,"Employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.066,"Employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.067,"Employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.067,"Employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.068,"Employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.068,"Employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.069,"Employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.069,"Employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.070,"Employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.070,"Employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.071,"Employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.071,"Employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.072,Employment outside the formal sector (15 to 24 years old) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.073,Employment outside the formal sector (15 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.074,Employment outside the formal sector (25 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.075,"Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.075,"Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.075,"Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.076,"Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.076,"Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.076,"Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.077,"Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.077,"Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.077,"Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.078,Employment outside the formal sector (15 to 24 years old) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.079,Employment outside the formal sector (15 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.080,Employment outside the formal sector (25 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.081,"Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.081,"Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.081,"Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.081,"Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.081,"Employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.082,"Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.082,"Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.082,"Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.082,"Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.082,"Employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.083,"Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.083,"Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.083,"Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.083,"Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.083,"Employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.084,Employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.084,Employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.084,Employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.085,Employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.085,Employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.085,Employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.086,Employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.086,Employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.086,Employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.087,"Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.087,"Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.087,"Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.087,"Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.087,"Employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.088,"Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.088,"Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.088,"Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.088,"Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.088,"Employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.089,"Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.089,"Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.089,"Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.089,"Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.089,"Employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.090,Employment outside the formal sector (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.091,Employment outside the formal sector (15 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.092,Employment outside the formal sector (25 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.093,Employment outside the formal sector (15 to 24 years old) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.094,Employment outside the formal sector (15 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.095,Employment outside the formal sector (25 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.096,Employment outside the formal sector (15 to 24 years old) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.097,Employment outside the formal sector (15 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.098,Employment outside the formal sector (25 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.099,"Employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.099,"Employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.099,"Employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.099,"Employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.100,"Employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.100,"Employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.100,"Employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.100,"Employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.101,"Employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.101,"Employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.101,"Employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.101,"Employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.102,Employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.102,Employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.102,Employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.103,Employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.103,Employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.103,Employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.104,Employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.104,Employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.104,Employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.105,Employment outside the formal sector (15 to 24 years old) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.106,Employment outside the formal sector (15 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.107,Employment outside the formal sector (25 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.108,Employment outside the formal sector (15 to 24 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.109,Employment outside the formal sector (15 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.110,Employment outside the formal sector (25 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.111,Employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.111,Employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.111,Employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.112,Employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.112,Employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.112,Employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.113,Employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.113,Employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.113,Employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.114,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.114,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.114,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.114,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.114,Employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.115,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.115,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.115,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.115,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.115,Employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.116,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.116,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.116,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.116,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.116,Employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.117,"Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.117,"Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.117,"Employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.118,"Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.118,"Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.118,"Employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.119,"Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.119,"Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.119,"Employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.120,Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.120,Employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.121,Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.121,Employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.122,Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.122,Employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.123,Employment outside the formal sector (15 to 24 years old) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.124,Employment outside the formal sector (15 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.125,Employment outside the formal sector (25 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.126,"Employment outside the formal sector (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.127,"Employment outside the formal sector (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.128,"Employment outside the formal sector (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.129,Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.129,Employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.130,Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.130,Employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.131,Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.131,Employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.132,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.132,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.132,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.132,"Employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.133,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.133,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.133,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.133,"Employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.134,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.134,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.134,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.134,"Employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.135,Employment outside the formal sector (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.136,Employment outside the formal sector (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.137,Employment outside the formal sector (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.138,Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.138,Employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.139,Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.139,Employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.140,Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.140,Employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.141,"Employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.141,"Employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.141,"Employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.142,"Employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.142,"Employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.142,"Employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.143,"Employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.143,"Employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.143,"Employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.144,Employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.144,Employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.145,Employment outside the formal sector (15 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.145,Employment outside the formal sector (15 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.146,Employment outside the formal sector (25 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.146,Employment outside the formal sector (25 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.147,Employment outside the formal sector (15 to 24 years old) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.148,Employment outside the formal sector (15 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.149,Employment outside the formal sector (25 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.150,Employment outside the formal sector (15 to 24 years old) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.151,Employment outside the formal sector (15 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.152,Employment outside the formal sector (25 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.153,Employment outside the formal sector (15 to 24 years old) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.154,Employment outside the formal sector (15 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.155,Employment outside the formal sector (25 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.156,"Employment outside the formal sector (15 to 24 years old) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.157,"Employment outside the formal sector (15 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.158,"Employment outside the formal sector (25 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.159,"Employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.159,"Employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.159,"Employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.159,"Employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.160,"Employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.160,"Employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.160,"Employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.160,"Employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.161,"Employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.161,"Employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.161,"Employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.161,"Employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.162,Employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.162,Employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.162,Employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.163,Employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.163,Employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.163,Employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.164,Employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.164,Employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.164,Employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.165,Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.165,Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.165,Employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.166,Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.166,Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.166,Employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.167,Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.167,Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.167,Employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.168,Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.168,Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.168,Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.168,Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.168,Employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.169,Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.169,Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.169,Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.169,Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.169,Employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.170,Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.170,Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.170,Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.170,Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.170,Employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.171,Employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.171,Employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.172,Employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.172,Employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.173,Employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.173,Employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.174,Employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.175,Employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.176,Employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.177,Employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.177,Employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.177,Employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.178,Employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.178,Employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.178,Employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.179,Employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.179,Employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.179,Employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.180,Employment outside the formal sector (15 to 24 years old) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.181,Employment outside the formal sector (15 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.182,Employment outside the formal sector (25 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.183,"Employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.184,"Employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.185,"Employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.186,Employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.187,Employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.188,Employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.189,Employment outside the formal sector (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.190,Employment outside the formal sector (15 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.191,Employment outside the formal sector (25 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.192,Employment outside the formal sector (15 to 24 years old) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.193,Employment outside the formal sector (15 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.194,Employment outside the formal sector (25 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.195,Employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.195,Employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.195,Employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.196,Employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.196,Employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.196,Employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.197,Employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.197,Employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.197,Employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.198,"Employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.198,"Employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.198,"Employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.198,"Employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.199,"Employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.199,"Employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.199,"Employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.199,"Employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.200,"Employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.200,"Employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.200,"Employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.200,"Employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.201,Employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.201,Employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.201,Employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.202,Employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.202,Employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.202,Employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.203,Employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.203,Employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.203,Employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.204,Employment outside the formal sector (15 to 24 years old) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.205,Employment outside the formal sector (15 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.206,Employment outside the formal sector (25 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.207,Employment outside the formal sector (15 to 24 years old) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.208,Employment outside the formal sector (15 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.209,Employment outside the formal sector (25 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.210,Employment outside the formal sector (15 to 24 years old) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.211,Employment outside the formal sector (15 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.212,Employment outside the formal sector (25 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.213,Employment outside the formal sector (15 to 24 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.214,Employment outside the formal sector (15 to 64 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.215,Employment outside the formal sector (15 years old and over),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.216,Employment outside the formal sector (25 to 34 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.217,Employment outside the formal sector (25 to 54 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.218,Employment outside the formal sector (25 years old and over),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.219,Employment outside the formal sector (35 to 44 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.220,Employment outside the formal sector (45 to 54 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.221,Employment outside the formal sector (55 to 64 years old),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.222,Employment outside the formal sector (65 years old and over),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.223,Employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.223,Employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.223,Employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.223,Employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.223,Employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.224,Employment outside the formal sector (15 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.224,Employment outside the formal sector (15 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.224,Employment outside the formal sector (15 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.224,Employment outside the formal sector (15 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.224,Employment outside the formal sector (15 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.225,Employment outside the formal sector (15 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.225,Employment outside the formal sector (15 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.225,Employment outside the formal sector (15 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.225,Employment outside the formal sector (15 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.225,Employment outside the formal sector (15 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.226,Employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.226,Employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.226,Employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.226,Employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.226,Employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.227,Employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.227,Employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.227,Employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.227,Employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.227,Employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.228,Employment outside the formal sector (25 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.228,Employment outside the formal sector (25 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.228,Employment outside the formal sector (25 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.228,Employment outside the formal sector (25 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.228,Employment outside the formal sector (25 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.229,Employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.229,Employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.229,Employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.229,Employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.229,Employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.230,Employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.230,Employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.230,Employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.230,Employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.230,Employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.231,Employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.231,Employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.231,Employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.231,Employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.231,Employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.232,Employment outside the formal sector (65 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.232,Employment outside the formal sector (65 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.232,Employment outside the formal sector (65 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.232,Employment outside the formal sector (65 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.232,Employment outside the formal sector (65 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.233,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.234,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.235,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.236,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.237,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.238,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.239,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.240,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.241,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.242,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.243,Employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.244,Employment outside the formal sector (15 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.245,Employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.246,Employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.247,Employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.248,Employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.249,Employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.250,Employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.251,Employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.252,Employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.253,Employment outside the formal sector (15 to 24 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.253,Employment outside the formal sector (15 to 24 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.253,Employment outside the formal sector (15 to 24 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.254,Employment outside the formal sector (15 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.254,Employment outside the formal sector (15 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.254,Employment outside the formal sector (15 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.255,Employment outside the formal sector (15 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.255,Employment outside the formal sector (15 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.255,Employment outside the formal sector (15 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.256,Employment outside the formal sector (25 to 34 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.256,Employment outside the formal sector (25 to 34 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.256,Employment outside the formal sector (25 to 34 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.257,Employment outside the formal sector (25 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.257,Employment outside the formal sector (25 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.257,Employment outside the formal sector (25 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.258,Employment outside the formal sector (25 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.258,Employment outside the formal sector (25 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.258,Employment outside the formal sector (25 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.259,Employment outside the formal sector (35 to 44 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.259,Employment outside the formal sector (35 to 44 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.259,Employment outside the formal sector (35 to 44 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.260,Employment outside the formal sector (45 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.260,Employment outside the formal sector (45 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.260,Employment outside the formal sector (45 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.261,Employment outside the formal sector (55 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.261,Employment outside the formal sector (55 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.261,Employment outside the formal sector (55 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.262,Employment outside the formal sector (65 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.262,Employment outside the formal sector (65 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.262,Employment outside the formal sector (65 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.263,"Employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.263,"Employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.264,"Employment outside the formal sector (15 to 24 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.264,"Employment outside the formal sector (15 to 24 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.265,"Employment outside the formal sector (15 to 24 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.265,"Employment outside the formal sector (15 to 24 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.266,"Employment outside the formal sector (15 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.266,"Employment outside the formal sector (15 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.267,"Employment outside the formal sector (15 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.267,"Employment outside the formal sector (15 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.268,"Employment outside the formal sector (15 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.268,"Employment outside the formal sector (15 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.269,"Employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.269,"Employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.270,"Employment outside the formal sector (15 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.270,"Employment outside the formal sector (15 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.271,"Employment outside the formal sector (15 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.271,"Employment outside the formal sector (15 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.272,"Employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.272,"Employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.273,"Employment outside the formal sector (25 to 34 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.273,"Employment outside the formal sector (25 to 34 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.274,"Employment outside the formal sector (25 to 34 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.274,"Employment outside the formal sector (25 to 34 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.275,"Employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.275,"Employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.276,"Employment outside the formal sector (25 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.276,"Employment outside the formal sector (25 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.277,"Employment outside the formal sector (25 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.277,"Employment outside the formal sector (25 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.278,"Employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.278,"Employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.279,"Employment outside the formal sector (25 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.279,"Employment outside the formal sector (25 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.280,"Employment outside the formal sector (25 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.280,"Employment outside the formal sector (25 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.281,"Employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.281,"Employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.282,"Employment outside the formal sector (35 to 44 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.282,"Employment outside the formal sector (35 to 44 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.283,"Employment outside the formal sector (35 to 44 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.283,"Employment outside the formal sector (35 to 44 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.284,"Employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.284,"Employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.285,"Employment outside the formal sector (45 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.285,"Employment outside the formal sector (45 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.286,"Employment outside the formal sector (45 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.286,"Employment outside the formal sector (45 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.287,"Employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.287,"Employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.288,"Employment outside the formal sector (55 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.288,"Employment outside the formal sector (55 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.289,"Employment outside the formal sector (55 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.289,"Employment outside the formal sector (55 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.290,"Employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.290,"Employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.291,"Employment outside the formal sector (65 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.291,"Employment outside the formal sector (65 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.292,"Employment outside the formal sector (65 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.292,"Employment outside the formal sector (65 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.293,Employment outside the formal sector (15 to 24 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.293,Employment outside the formal sector (15 to 24 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.293,Employment outside the formal sector (15 to 24 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.294,Employment outside the formal sector (15 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.294,Employment outside the formal sector (15 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.294,Employment outside the formal sector (15 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.295,Employment outside the formal sector (15 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.295,Employment outside the formal sector (15 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.295,Employment outside the formal sector (15 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.296,Employment outside the formal sector (25 to 34 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.296,Employment outside the formal sector (25 to 34 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.296,Employment outside the formal sector (25 to 34 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.297,Employment outside the formal sector (25 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.297,Employment outside the formal sector (25 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.297,Employment outside the formal sector (25 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.298,Employment outside the formal sector (25 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.298,Employment outside the formal sector (25 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.298,Employment outside the formal sector (25 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.299,Employment outside the formal sector (35 to 44 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.299,Employment outside the formal sector (35 to 44 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.299,Employment outside the formal sector (35 to 44 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.300,Employment outside the formal sector (45 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.300,Employment outside the formal sector (45 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.300,Employment outside the formal sector (45 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.301,Employment outside the formal sector (55 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.301,Employment outside the formal sector (55 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.301,Employment outside the formal sector (55 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.302,Employment outside the formal sector (65 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.302,Employment outside the formal sector (65 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.302,Employment outside the formal sector (65 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.303,"Employment outside the formal sector (15 to 24 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.303,"Employment outside the formal sector (15 to 24 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.304,"Employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.304,"Employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.305,"Employment outside the formal sector (15 to 24 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.305,"Employment outside the formal sector (15 to 24 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.306,"Employment outside the formal sector (15 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.306,"Employment outside the formal sector (15 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.307,"Employment outside the formal sector (15 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.307,"Employment outside the formal sector (15 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.308,"Employment outside the formal sector (15 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.308,"Employment outside the formal sector (15 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.309,"Employment outside the formal sector (15 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.309,"Employment outside the formal sector (15 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.310,"Employment outside the formal sector (15 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.310,"Employment outside the formal sector (15 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.311,"Employment outside the formal sector (15 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.311,"Employment outside the formal sector (15 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.312,"Employment outside the formal sector (25 to 34 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.312,"Employment outside the formal sector (25 to 34 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.313,"Employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.313,"Employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.314,"Employment outside the formal sector (25 to 34 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.314,"Employment outside the formal sector (25 to 34 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.315,"Employment outside the formal sector (25 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.315,"Employment outside the formal sector (25 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.316,"Employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.316,"Employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.317,"Employment outside the formal sector (25 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.317,"Employment outside the formal sector (25 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.318,"Employment outside the formal sector (25 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.318,"Employment outside the formal sector (25 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.319,"Employment outside the formal sector (25 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.319,"Employment outside the formal sector (25 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.320,"Employment outside the formal sector (25 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.320,"Employment outside the formal sector (25 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.321,"Employment outside the formal sector (35 to 44 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.321,"Employment outside the formal sector (35 to 44 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.322,"Employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.322,"Employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.323,"Employment outside the formal sector (35 to 44 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.323,"Employment outside the formal sector (35 to 44 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.324,"Employment outside the formal sector (45 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.324,"Employment outside the formal sector (45 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.325,"Employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.325,"Employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.326,"Employment outside the formal sector (45 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.326,"Employment outside the formal sector (45 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.327,"Employment outside the formal sector (55 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.327,"Employment outside the formal sector (55 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.328,"Employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.328,"Employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.329,"Employment outside the formal sector (55 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.329,"Employment outside the formal sector (55 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.330,"Employment outside the formal sector (65 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.330,"Employment outside the formal sector (65 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.331,"Employment outside the formal sector (65 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.331,"Employment outside the formal sector (65 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.332,"Employment outside the formal sector (65 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.332,"Employment outside the formal sector (65 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.333,Employment outside the formal sector (15 to 24 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.333,Employment outside the formal sector (15 to 24 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.333,Employment outside the formal sector (15 to 24 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.334,Employment outside the formal sector (15 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.334,Employment outside the formal sector (15 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.334,Employment outside the formal sector (15 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.335,Employment outside the formal sector (15 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.335,Employment outside the formal sector (15 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.335,Employment outside the formal sector (15 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.336,Employment outside the formal sector (25 to 34 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.336,Employment outside the formal sector (25 to 34 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.336,Employment outside the formal sector (25 to 34 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.337,Employment outside the formal sector (25 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.337,Employment outside the formal sector (25 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.337,Employment outside the formal sector (25 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.338,Employment outside the formal sector (25 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.338,Employment outside the formal sector (25 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.338,Employment outside the formal sector (25 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.339,Employment outside the formal sector (35 to 44 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.339,Employment outside the formal sector (35 to 44 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.339,Employment outside the formal sector (35 to 44 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.340,Employment outside the formal sector (45 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.340,Employment outside the formal sector (45 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.340,Employment outside the formal sector (45 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.341,Employment outside the formal sector (55 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.341,Employment outside the formal sector (55 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.341,Employment outside the formal sector (55 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.342,Employment outside the formal sector (65 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.342,Employment outside the formal sector (65 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.342,Employment outside the formal sector (65 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.343,Employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.343,Employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.343,Employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.344,Employment outside the formal sector (15 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.344,Employment outside the formal sector (15 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.344,Employment outside the formal sector (15 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.345,Employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.345,Employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.345,Employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.346,Employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.346,Employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.346,Employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.347,Employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.347,Employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.347,Employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.348,Employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.348,Employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.348,Employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.349,Employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.349,Employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.349,Employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.350,Employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.350,Employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.350,Employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.351,Employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.351,Employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.351,Employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.352,Employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.352,Employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.352,Employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.353,Employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.353,Employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.354,Employment outside the formal sector (15 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.354,Employment outside the formal sector (15 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.355,Employment outside the formal sector (15 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.355,Employment outside the formal sector (15 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.356,Employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.356,Employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.357,Employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.357,Employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.358,Employment outside the formal sector (25 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.358,Employment outside the formal sector (25 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.359,Employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.359,Employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.360,Employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.360,Employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.361,Employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.361,Employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.362,Employment outside the formal sector (65 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.362,Employment outside the formal sector (65 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.363,Employment outside the formal sector (15 to 24 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.364,Employment outside the formal sector (15 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.365,Employment outside the formal sector (15 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.366,Employment outside the formal sector (25 to 34 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.367,Employment outside the formal sector (25 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.368,Employment outside the formal sector (25 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.369,Employment outside the formal sector (35 to 44 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.370,Employment outside the formal sector (45 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.371,Employment outside the formal sector (55 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.372,Employment outside the formal sector (65 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.373,Employment outside the formal sector (15 to 24 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.374,Employment outside the formal sector (15 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.375,Employment outside the formal sector (25 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.376,Employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.376,Employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.376,Employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.377,Employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.377,Employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.377,Employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.378,Employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.378,Employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.378,Employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.379,Employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.379,Employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.379,Employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.379,Employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.380,Employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.380,Employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.380,Employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.380,Employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.381,Employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.381,Employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.381,Employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.381,Employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.382,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.383,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.384,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.385,Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.385,Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.385,Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.385,Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.385,Employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.386,Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.386,Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.386,Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.386,Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.386,Employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.387,Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.387,Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.387,Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.387,Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.387,Employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.388,Employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.388,Employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.388,Employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.388,Employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.389,Employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.389,Employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.389,Employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.389,Employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.390,Employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.390,Employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.390,Employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.390,Employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.391,Employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.391,Employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.391,Employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.391,Employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.392,Employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.392,Employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.392,Employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.392,Employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.393,Employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.393,Employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.393,Employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.393,Employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.394,"Employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.394,"Employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.394,"Employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.395,"Employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.395,"Employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.395,"Employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.396,"Employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.396,"Employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.396,"Employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.397,Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.397,Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.397,Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.397,Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.397,Employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.398,Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.398,Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.398,Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.398,Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.398,Employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.399,Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.399,Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.399,Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.399,Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.399,Employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.400,Employment outside the formal sector (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.400,"Employment outside the formal sector (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.400,"Employment outside the formal sector (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.401,Employment outside the formal sector (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.401,"Employment outside the formal sector (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.401,"Employment outside the formal sector (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.402,Employment outside the formal sector (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.402,"Employment outside the formal sector (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.402,"Employment outside the formal sector (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.403,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO08_96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.404,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO08_96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.405,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO08_96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.406,Employment outside the formal sector (15 to 24 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.407,Employment outside the formal sector (15 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.408,Employment outside the formal sector (25 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.409,Employment outside the formal sector (15 to 24 years old) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.410,Employment outside the formal sector (15 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.411,Employment outside the formal sector (25 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.412,"Employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.412,"Employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.412,"Employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.413,"Employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.413,"Employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.413,"Employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.414,"Employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.414,"Employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.414,"Employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.415,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.415,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.415,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.415,Employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.416,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.416,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.416,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.416,Employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.417,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.417,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.417,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.417,Employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.418,Employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.418,Employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.418,Employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.418,Employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.419,Employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.419,Employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.419,Employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.419,Employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.420,Employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.420,Employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.420,Employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.420,Employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.421,Employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.421,Employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.422,Employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.422,Employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.423,Employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.423,Employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.424,Employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.424,Employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.425,Employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.425,Employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.426,Employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.426,Employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.427,Employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.427,Employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.428,Employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.428,Employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.429,Employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.429,Employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.430,Employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.430,Employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.430,Employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.430,Employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.431,Employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.431,Employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.431,Employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.431,Employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.432,Employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.432,Employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.432,Employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.432,Employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.433,Employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.433,Employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.433,Employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.434,Employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.434,Employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.434,Employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.435,Employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.435,Employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.435,Employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.436,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.436,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.436,Employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__OCCUPATION--ISCO88_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.437,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.437,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.437,Employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__OCCUPATION--ISCO88_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.438,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.438,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.438,Employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__OCCUPATION--ISCO88_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.439,Employment outside the formal sector (15 to 19 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T19__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.439,Employment outside the formal sector (15 to 19 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T19__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.440,Employment outside the formal sector (15 to 24 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.440,Employment outside the formal sector (15 to 24 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.441,Employment outside the formal sector (15 to 64 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.441,Employment outside the formal sector (15 to 64 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.441,Employment outside the formal sector (15 to 64 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.442,Employment outside the formal sector (15 years old and over) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.442,Employment outside the formal sector (15 years old and over) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.442,Employment outside the formal sector (15 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.443,Employment outside the formal sector (20 to 24 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y20T24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.443,Employment outside the formal sector (20 to 24 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y20T24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.444,Employment outside the formal sector (25 to 29 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T29__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.444,Employment outside the formal sector (25 to 29 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T29__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.445,Employment outside the formal sector (25 to 34 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.445,Employment outside the formal sector (25 to 34 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.445,Employment outside the formal sector (25 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.446,Employment outside the formal sector (25 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.446,Employment outside the formal sector (25 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.446,Employment outside the formal sector (25 to 54 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.447,Employment outside the formal sector (25 years old and over) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.447,Employment outside the formal sector (25 years old and over) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.447,Employment outside the formal sector (25 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.448,Employment outside the formal sector (30 to 34 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.448,Employment outside the formal sector (30 to 34 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.448,Employment outside the formal sector (30 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y30T34__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.449,Employment outside the formal sector (35 to 39 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.449,Employment outside the formal sector (35 to 39 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.449,Employment outside the formal sector (35 to 39 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T39__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.450,Employment outside the formal sector (35 to 44 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.450,Employment outside the formal sector (35 to 44 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.450,Employment outside the formal sector (35 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.451,Employment outside the formal sector (40 to 44 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.451,Employment outside the formal sector (40 to 44 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.451,Employment outside the formal sector (40 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y40T44__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.452,Employment outside the formal sector (45 to 49 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T49__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.452,Employment outside the formal sector (45 to 49 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T49__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.453,Employment outside the formal sector (45 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.453,Employment outside the formal sector (45 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.454,Employment outside the formal sector (50 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y50T54__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.454,Employment outside the formal sector (50 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y50T54__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.455,Employment outside the formal sector (55 to 59 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T59__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.455,Employment outside the formal sector (55 to 59 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T59__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.456,Employment outside the formal sector (55 to 64 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.456,Employment outside the formal sector (55 to 64 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.457,Employment outside the formal sector (60 to 64 years old) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y60T64__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.457,Employment outside the formal sector (60 to 64 years old) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y60T64__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.458,Employment outside the formal sector (65 years old and over) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.458,Employment outside the formal sector (65 years old and over) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.459,"Employment outside the formal sector (15 to 24 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.460,"Employment outside the formal sector (15 to 24 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.461,"Employment outside the formal sector (15 to 64 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.462,"Employment outside the formal sector (15 to 64 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.463,"Employment outside the formal sector (15 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.464,"Employment outside the formal sector (15 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.465,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.466,"Employment outside the formal sector (25 to 34 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.467,"Employment outside the formal sector (25 to 34 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.468,"Employment outside the formal sector (25 to 54 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.469,"Employment outside the formal sector (25 to 54 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.470,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.471,"Employment outside the formal sector (25 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.472,"Employment outside the formal sector (25 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.473,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.474,"Employment outside the formal sector (35 to 44 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.475,"Employment outside the formal sector (35 to 44 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.476,"Employment outside the formal sector (45 to 54 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.477,"Employment outside the formal sector (45 to 54 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.478,"Employment outside the formal sector (55 to 64 years old, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.479,"Employment outside the formal sector (55 to 64 years old, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.480,"Employment outside the formal sector (65 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.481,"Employment outside the formal sector (65 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.482,"Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.482,"Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.482,"Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.482,"Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.482,"Employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.483,"Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.483,"Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.483,"Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.483,"Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.483,"Employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.484,"Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.484,"Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.484,"Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.484,"Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.484,"Employment outside the formal sector (15 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.485,"Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.485,"Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.485,"Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.485,"Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.485,"Employment outside the formal sector (15 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.486,"Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.486,"Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.486,"Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.486,"Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.486,"Employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.487,"Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.487,"Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.487,"Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.487,"Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.487,"Employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.488,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.488,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.488,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.489,"Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.489,"Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.489,"Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.489,"Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.489,"Employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.490,"Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.490,"Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.490,"Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.490,"Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.490,"Employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.491,"Employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.492,"Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.492,"Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.492,"Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.492,"Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.492,"Employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.493,"Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.493,"Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.493,"Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.493,"Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.493,"Employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.494,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.494,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.494,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.495,"Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.495,"Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.495,"Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.495,"Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.495,"Employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.496,"Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.496,"Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.496,"Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.496,"Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.496,"Employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.497,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.497,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.497,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.498,"Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.498,"Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.498,"Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.498,"Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.498,"Employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.499,"Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.499,"Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.499,"Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.499,"Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.499,"Employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.500,"Employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.500,"Employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.501,"Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.501,"Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.501,"Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.501,"Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.501,"Employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.502,"Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.502,"Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.502,"Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.502,"Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.502,"Employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.503,"Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.503,"Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.503,"Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.503,"Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.503,"Employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.504,"Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.504,"Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.504,"Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.504,"Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.504,"Employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.505,"Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.505,"Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.505,"Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.505,"Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.505,"Employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.506,"Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.506,"Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.506,"Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.506,"Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.506,"Employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.507,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.508,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.509,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.510,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.511,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.512,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.513,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.514,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.515,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.516,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.517,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.518,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.519,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.520,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.521,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.522,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.523,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.524,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.525,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.526,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.527,"Employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.528,"Employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.529,"Employment outside the formal sector (15 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.530,"Employment outside the formal sector (15 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.531,"Employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.532,"Employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.533,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.534,"Employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.535,"Employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.536,"Employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.537,"Employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.538,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.539,"Employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.540,"Employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.541,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.542,"Employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.543,"Employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.544,"Employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.545,"Employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.546,"Employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.547,"Employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.548,"Employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.549,"Employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.550,"Employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.550,"Employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.550,"Employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.551,"Employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.551,"Employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.551,"Employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.552,"Employment outside the formal sector (15 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.552,"Employment outside the formal sector (15 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.552,"Employment outside the formal sector (15 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.553,"Employment outside the formal sector (15 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.553,"Employment outside the formal sector (15 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.553,"Employment outside the formal sector (15 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.554,"Employment outside the formal sector (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.554,"Employment outside the formal sector (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.554,"Employment outside the formal sector (15 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.555,"Employment outside the formal sector (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.555,"Employment outside the formal sector (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.555,"Employment outside the formal sector (15 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.556,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.556,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.557,"Employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.557,"Employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.557,"Employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.558,"Employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.558,"Employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.558,"Employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.559,"Employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.560,"Employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.560,"Employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.560,"Employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.561,"Employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.561,"Employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.561,"Employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.562,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.562,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.563,"Employment outside the formal sector (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.563,"Employment outside the formal sector (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.563,"Employment outside the formal sector (25 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.564,"Employment outside the formal sector (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.564,"Employment outside the formal sector (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.564,"Employment outside the formal sector (25 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.565,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.565,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.566,"Employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.566,"Employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.566,"Employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.567,"Employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.567,"Employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.567,"Employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.568,"Employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.569,"Employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.569,"Employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.569,"Employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.570,"Employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.570,"Employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.570,"Employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.571,"Employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.571,"Employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.571,"Employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.572,"Employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.572,"Employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.572,"Employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.573,"Employment outside the formal sector (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.573,"Employment outside the formal sector (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.573,"Employment outside the formal sector (65 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.574,"Employment outside the formal sector (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.574,"Employment outside the formal sector (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.574,"Employment outside the formal sector (65 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.575,"Employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.575,"Employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.575,"Employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.576,"Employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.576,"Employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.576,"Employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.577,"Employment outside the formal sector (15 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.577,"Employment outside the formal sector (15 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.577,"Employment outside the formal sector (15 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.578,"Employment outside the formal sector (15 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.578,"Employment outside the formal sector (15 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.578,"Employment outside the formal sector (15 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.579,"Employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.579,"Employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.579,"Employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.580,"Employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.580,"Employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.580,"Employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.581,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.582,"Employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.582,"Employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.582,"Employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.583,"Employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.583,"Employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.583,"Employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.584,"Employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.584,"Employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.584,"Employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.585,"Employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.585,"Employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.585,"Employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.586,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.587,"Employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.587,"Employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.587,"Employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.588,"Employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.588,"Employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.588,"Employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.589,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.590,"Employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.590,"Employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.590,"Employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.591,"Employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.591,"Employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.591,"Employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.592,"Employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.592,"Employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.592,"Employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.593,"Employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.593,"Employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.593,"Employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.594,"Employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.594,"Employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.594,"Employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.595,"Employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.595,"Employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.595,"Employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.596,"Employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.596,"Employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.596,"Employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.597,"Employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.597,"Employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.597,"Employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.598,"Employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.598,"Employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.599,"Employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.599,"Employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.600,"Employment outside the formal sector (15 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.600,"Employment outside the formal sector (15 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.601,"Employment outside the formal sector (15 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.601,"Employment outside the formal sector (15 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.602,"Employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.602,"Employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.603,"Employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.603,"Employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.604,"Employment outside the formal sector (15 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.605,"Employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.605,"Employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.606,"Employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.606,"Employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.607,"Employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.608,"Employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.608,"Employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.609,"Employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.609,"Employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.610,"Employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.611,"Employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.611,"Employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.612,"Employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.612,"Employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.613,"Employment outside the formal sector (25 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.614,"Employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.614,"Employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.615,"Employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.615,"Employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.616,"Employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.617,"Employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.617,"Employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.618,"Employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.618,"Employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.619,"Employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.619,"Employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.620,"Employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.620,"Employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.621,"Employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.621,"Employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.622,"Employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.622,"Employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.623,"Employment outside the formal sector (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.624,"Employment outside the formal sector (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.625,"Employment outside the formal sector (15 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.626,"Employment outside the formal sector (15 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.627,"Employment outside the formal sector (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.628,"Employment outside the formal sector (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.629,"Employment outside the formal sector (25 to 34 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.630,"Employment outside the formal sector (25 to 34 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.631,"Employment outside the formal sector (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.632,"Employment outside the formal sector (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.633,"Employment outside the formal sector (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.634,"Employment outside the formal sector (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.635,"Employment outside the formal sector (35 to 44 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.636,"Employment outside the formal sector (35 to 44 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.637,"Employment outside the formal sector (45 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.638,"Employment outside the formal sector (45 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.639,"Employment outside the formal sector (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.640,"Employment outside the formal sector (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.641,"Employment outside the formal sector (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.642,"Employment outside the formal sector (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.643,Employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.643,Employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.643,Employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.644,Employment outside the formal sector (15 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.644,Employment outside the formal sector (15 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.644,Employment outside the formal sector (15 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.645,Employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.645,Employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.645,Employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.646,Employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.646,Employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.646,Employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.647,Employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.647,Employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.647,Employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.648,Employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.648,Employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.648,Employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.649,Employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.649,Employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.649,Employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.650,Employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.650,Employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.650,Employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.651,Employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.651,Employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.651,Employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.652,Employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.652,Employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.652,Employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.653,"Employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.653,"Employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.654,"Employment outside the formal sector (15 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.654,"Employment outside the formal sector (15 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.655,"Employment outside the formal sector (15 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.655,"Employment outside the formal sector (15 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T24__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.656,"Employment outside the formal sector (15 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.656,"Employment outside the formal sector (15 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.657,"Employment outside the formal sector (15 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.657,"Employment outside the formal sector (15 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.657,"Employment outside the formal sector (15 to 64 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.658,"Employment outside the formal sector (15 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.658,"Employment outside the formal sector (15 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y15T64__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.659,"Employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.659,"Employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.660,"Employment outside the formal sector (15 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.660,"Employment outside the formal sector (15 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.660,"Employment outside the formal sector (15 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.661,"Employment outside the formal sector (15 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.661,"Employment outside the formal sector (15 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.661,"Employment outside the formal sector (15 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE15__SEX--O__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.662,"Employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.662,"Employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.663,"Employment outside the formal sector (25 to 34 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.663,"Employment outside the formal sector (25 to 34 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.664,"Employment outside the formal sector (25 to 34 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.664,"Employment outside the formal sector (25 to 34 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.664,"Employment outside the formal sector (25 to 34 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T34__SEX--O__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.665,"Employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.665,"Employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.666,"Employment outside the formal sector (25 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.666,"Employment outside the formal sector (25 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.666,"Employment outside the formal sector (25 to 54 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.667,"Employment outside the formal sector (25 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.667,"Employment outside the formal sector (25 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.667,"Employment outside the formal sector (25 to 54 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y25T54__SEX--O__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.668,"Employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.668,"Employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.669,"Employment outside the formal sector (25 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.669,"Employment outside the formal sector (25 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.669,"Employment outside the formal sector (25 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.670,"Employment outside the formal sector (25 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.670,"Employment outside the formal sector (25 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.670,"Employment outside the formal sector (25 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE25__SEX--O__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.671,"Employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.671,"Employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.672,"Employment outside the formal sector (35 to 44 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.672,"Employment outside the formal sector (35 to 44 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.672,"Employment outside the formal sector (35 to 44 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.673,"Employment outside the formal sector (35 to 44 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.673,"Employment outside the formal sector (35 to 44 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y35T44__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.674,"Employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.674,"Employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.675,"Employment outside the formal sector (45 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.675,"Employment outside the formal sector (45 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.676,"Employment outside the formal sector (45 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.676,"Employment outside the formal sector (45 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y45T54__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.677,"Employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.677,"Employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.678,"Employment outside the formal sector (55 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.678,"Employment outside the formal sector (55 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.679,"Employment outside the formal sector (55 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.679,"Employment outside the formal sector (55 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y55T64__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.680,"Employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.680,"Employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.681,"Employment outside the formal sector (65 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.681,"Employment outside the formal sector (65 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.682,"Employment outside the formal sector (65 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.682,"Employment outside the formal sector (65 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.AGE--Y_GE65__SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.683,Employment outside the formal sector by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.683,Employment outside the formal sector by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.684,Employment outside the formal sector (Persons with disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.684,Employment outside the formal sector (Persons with disability) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.684,Employment outside the formal sector (Persons with disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.684,Employment outside the formal sector (Persons with disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.684,Employment outside the formal sector (Persons with disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.685,Employment outside the formal sector (Persons without disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.685,Employment outside the formal sector (Persons without disability) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.685,Employment outside the formal sector (Persons without disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.685,Employment outside the formal sector (Persons without disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.685,Employment outside the formal sector (Persons without disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.686,Employment outside the formal sector (Persons with disability) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.686,Employment outside the formal sector (Persons with disability) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.686,Employment outside the formal sector (Persons with disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.687,Employment outside the formal sector (Persons without disability) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.687,Employment outside the formal sector (Persons without disability) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.687,Employment outside the formal sector (Persons without disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.688,"Employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.688,"Employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.689,"Employment outside the formal sector (Persons with disability, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.689,"Employment outside the formal sector (Persons with disability, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.690,"Employment outside the formal sector (Persons with disability, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.690,"Employment outside the formal sector (Persons with disability, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.691,"Employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.691,"Employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.692,"Employment outside the formal sector (Persons without disability, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.692,"Employment outside the formal sector (Persons without disability, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.693,"Employment outside the formal sector (Persons without disability, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.693,"Employment outside the formal sector (Persons without disability, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.694,Employment outside the formal sector (Persons with disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.694,Employment outside the formal sector (Persons with disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.694,Employment outside the formal sector (Persons with disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.695,Employment outside the formal sector (Persons without disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.695,Employment outside the formal sector (Persons without disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.695,Employment outside the formal sector (Persons without disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.696,Employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.696,Employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.696,Employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.697,Employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.697,Employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.697,Employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.698,Employment outside the formal sector (Persons with disability) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.698,Employment outside the formal sector (Persons with disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.699,Employment outside the formal sector (Persons without disability) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.699,Employment outside the formal sector (Persons without disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.700,Employment outside the formal sector (Persons with disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.701,Employment outside the formal sector (Persons without disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.702,Employment outside the formal sector (Persons with disability) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.702,Employment outside the formal sector (Persons with disability) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.703,Employment outside the formal sector (Persons without disability) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.703,Employment outside the formal sector (Persons without disability) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.703,Employment outside the formal sector (Persons without disability) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.704,"Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.704,"Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.704,"Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.704,"Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.704,"Employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.705,"Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.705,"Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.705,"Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.705,"Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.705,"Employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.706,"Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.706,"Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.706,"Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.706,"Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.706,"Employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.707,"Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.707,"Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.707,"Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.707,"Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.707,"Employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.708,"Employment outside the formal sector (Persons with disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.708,"Employment outside the formal sector (Persons with disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.708,"Employment outside the formal sector (Persons with disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.709,"Employment outside the formal sector (Persons with disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.709,"Employment outside the formal sector (Persons with disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.709,"Employment outside the formal sector (Persons with disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.710,"Employment outside the formal sector (Persons without disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.710,"Employment outside the formal sector (Persons without disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.710,"Employment outside the formal sector (Persons without disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.711,"Employment outside the formal sector (Persons without disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.711,"Employment outside the formal sector (Persons without disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.711,"Employment outside the formal sector (Persons without disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.712,"Employment outside the formal sector (Persons without disability, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.713,"Employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.713,"Employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.713,"Employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.714,"Employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.714,"Employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.714,"Employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.715,"Employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.715,"Employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.715,"Employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.716,"Employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.716,"Employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.716,"Employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.717,"Employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.717,"Employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.718,"Employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.718,"Employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.719,"Employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.719,"Employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.720,"Employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.720,"Employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.721,"Employment outside the formal sector (Persons without disability, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.722,"Employment outside the formal sector (Persons with disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.723,"Employment outside the formal sector (Persons with disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.724,"Employment outside the formal sector (Persons without disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.725,"Employment outside the formal sector (Persons without disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.726,Employment outside the formal sector by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.727,"Employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.727,"Employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.727,"Employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.728,Employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.728,Employment outside the formal sector in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.728,Employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.728,Employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.728,Employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.729,"Employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.729,"Employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.730,Employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.730,Employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.731,"Employment outside the formal sector in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.732,"Employment outside the formal sector in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.733,Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.733,Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.734,"Employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.734,"Employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.734,"Employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.735,Employment outside the formal sector in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.736,Employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.736,Employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.737,Employment outside the formal sector in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.738,"Employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.738,"Employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.738,"Employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.738,"Employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.739,Employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.739,Employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.740,"Employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.740,"Employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.741,"Employment outside the formal sector in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.741,"Employment outside the formal sector in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.742,Employment outside the formal sector in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.743,"Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.743,"Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.743,"Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.744,Employment outside the formal sector in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.745,"Employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.745,"Employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.745,"Employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.745,"Employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.745,"Employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.746,Employment outside the formal sector in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.746,Employment outside the formal sector in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.746,Employment outside the formal sector in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.747,"Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.747,"Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.747,"Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.747,"Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.747,"Employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.748,Employment outside the formal sector in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.749,Employment outside the formal sector in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.750,Employment outside the formal sector in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.751,"Employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.751,"Employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.751,"Employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.751,"Employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.752,Employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.752,Employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.752,Employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.753,Employment outside the formal sector in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.754,Employment outside the formal sector by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.755,Employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.755,Employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.755,Employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.756,Employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.756,Employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.756,Employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.756,Employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.756,Employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.757,"Employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.757,"Employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.757,"Employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.758,Employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.758,Employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.759,Employment outside the formal sector in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.760,"Employment outside the formal sector in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.761,Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.761,Employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.762,"Employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.762,"Employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.762,"Employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.762,"Employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.763,Employment outside the formal sector in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.764,Employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.764,Employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.765,"Employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.765,"Employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.765,"Employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.766,Employment outside the formal sector in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.766,Employment outside the formal sector in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.767,Employment outside the formal sector in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.768,Employment outside the formal sector in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.769,Employment outside the formal sector in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.770,"Employment outside the formal sector in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.771,"Employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.771,"Employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.771,"Employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.771,"Employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.772,Employment outside the formal sector in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.772,Employment outside the formal sector in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.772,Employment outside the formal sector in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.773,Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.773,Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.773,Employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.774,Employment outside the formal sector in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.774,Employment outside the formal sector in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.774,Employment outside the formal sector in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.774,Employment outside the formal sector in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.774,Employment outside the formal sector in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.775,Employment outside the formal sector in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.775,Employment outside the formal sector in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.776,Employment outside the formal sector in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.777,Employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.777,Employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.777,Employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.778,Employment outside the formal sector in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.779,"Employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.780,Employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.781,Employment outside the formal sector in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.782,Employment outside the formal sector in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.783,Employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.783,Employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.783,Employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.784,"Employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.784,"Employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.784,"Employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.784,"Employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.785,Employment outside the formal sector in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.785,Employment outside the formal sector in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.785,Employment outside the formal sector in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.786,Employment outside the formal sector in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.787,Employment outside the formal sector in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.788,Employment outside the formal sector in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.789,Employment outside the formal sector,No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.790,Employment outside the formal sector by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.790,Employment outside the formal sector by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.790,Employment outside the formal sector by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.790,Employment outside the formal sector by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.790,Employment outside the formal sector by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.791,Employment outside the formal sector by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.792,Employment outside the formal sector by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,No hours actually worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,01-14 hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H1T14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,15-29 hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H15T29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,30-34 hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H30T34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,35-39 hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H35T39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,40-48 hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--H40T48,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,49+ hours worked,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--HGE49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.793,Employment outside the formal sector by Hours worked,No. of hours worked not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.HOUR_BANDS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.794,Employment outside the formal sector (01-14 hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H1T14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.794,Employment outside the formal sector (01-14 hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H1T14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.795,Employment outside the formal sector (15-29 hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H15T29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.795,Employment outside the formal sector (15-29 hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H15T29,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.796,Employment outside the formal sector (30-34 hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H30T34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.796,Employment outside the formal sector (30-34 hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H30T34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.797,Employment outside the formal sector (35-39 hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H35T39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.797,Employment outside the formal sector (35-39 hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H35T39,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.798,Employment outside the formal sector (40-48 hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H40T48,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.798,Employment outside the formal sector (40-48 hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H40T48,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.798,Employment outside the formal sector (40-48 hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__HOUR_BANDS--H40T48,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.799,Employment outside the formal sector (49+ hours worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--HGE49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.799,Employment outside the formal sector (49+ hours worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--HGE49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.799,Employment outside the formal sector (49+ hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__HOUR_BANDS--HGE49,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.800,Employment outside the formal sector (No hours actually worked) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--H0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.800,Employment outside the formal sector (No hours actually worked) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--H0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.801,Employment outside the formal sector (No. of hours worked not classified) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__HOUR_BANDS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.801,Employment outside the formal sector (No. of hours worked not classified) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__HOUR_BANDS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.802,Employment outside the formal sector by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.802,Employment outside the formal sector by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.802,Employment outside the formal sector by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.803,Employment outside the formal sector (Institutional sector not classified) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.803,Employment outside the formal sector (Institutional sector not classified) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.803,Employment outside the formal sector (Institutional sector not classified) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.804,Employment outside the formal sector (Private sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.804,Employment outside the formal sector (Private sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.804,Employment outside the formal sector (Private sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.805,Employment outside the formal sector (Public sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.805,Employment outside the formal sector (Public sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.805,Employment outside the formal sector (Public sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.806,Employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.806,Employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.806,Employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.807,Employment outside the formal sector (Private sector) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.807,Employment outside the formal sector (Private sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.807,Employment outside the formal sector (Private sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.808,Employment outside the formal sector (Public sector) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.808,Employment outside the formal sector (Public sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.808,Employment outside the formal sector (Public sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.809,Employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.809,Employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.810,Employment outside the formal sector (Private sector) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.810,Employment outside the formal sector (Private sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.811,Employment outside the formal sector (Public sector) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.811,Employment outside the formal sector (Public sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.812,Employment outside the formal sector (Institutional sector not classified) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.813,Employment outside the formal sector (Private sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.814,Employment outside the formal sector (Public sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.815,Employment outside the formal sector (Institutional sector not classified) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.815,Employment outside the formal sector (Institutional sector not classified) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.816,Employment outside the formal sector (Private sector) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.816,Employment outside the formal sector (Private sector) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.817,Employment outside the formal sector (Public sector) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.817,Employment outside the formal sector (Public sector) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.818,"Employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.818,"Employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.818,"Employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.819,"Employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.819,"Employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.819,"Employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.820,"Employment outside the formal sector (Private sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.820,"Employment outside the formal sector (Private sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.820,"Employment outside the formal sector (Private sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.821,"Employment outside the formal sector (Private sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.821,"Employment outside the formal sector (Private sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.821,"Employment outside the formal sector (Private sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.822,"Employment outside the formal sector (Public sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.822,"Employment outside the formal sector (Public sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.823,"Employment outside the formal sector (Public sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.823,"Employment outside the formal sector (Public sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.823,"Employment outside the formal sector (Public sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.824,"Employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.824,"Employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.824,"Employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.825,"Employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.825,"Employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.825,"Employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.826,"Employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.826,"Employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.826,"Employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.827,"Employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.827,"Employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.827,"Employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.828,"Employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.828,"Employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.828,"Employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.829,"Employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.829,"Employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.829,"Employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.830,"Employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.830,"Employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.831,"Employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.831,"Employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.832,"Employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.832,"Employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.833,"Employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.833,"Employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.834,"Employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.834,"Employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.835,"Employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.835,"Employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.836,"Employment outside the formal sector (Institutional sector not classified, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.837,"Employment outside the formal sector (Institutional sector not classified, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.838,"Employment outside the formal sector (Private sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.839,"Employment outside the formal sector (Private sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.840,"Employment outside the formal sector (Public sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.841,Employment outside the formal sector by Full / part-time job,Full-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.841,Employment outside the formal sector by Full / part-time job,Part-time,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.841,Employment outside the formal sector by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.842,Employment outside the formal sector (Full-time) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.842,Employment outside the formal sector (Full-time) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--FULL,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.843,Employment outside the formal sector (Job time unknown) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.843,Employment outside the formal sector (Job time unknown) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.844,Employment outside the formal sector (Part-time) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.844,Employment outside the formal sector (Part-time) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__JOB_TIME--PART,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.845,Employment outside the formal sector by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.845,Employment outside the formal sector by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.845,Employment outside the formal sector by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.846,Employment outside the formal sector Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.846,Employment outside the formal sector Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.846,Employment outside the formal sector Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.847,Employment outside the formal sector Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.847,Employment outside the formal sector Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.848,Employment outside the formal sector Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.849,Employment outside the formal sector (Divorced or legally separated),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.850,Employment outside the formal sector (Marital status not elsewhere classified),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.850,Employment outside the formal sector (Marital status not elsewhere classified),No schooling,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.851,Employment outside the formal sector (Married),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.852,Employment outside the formal sector (Married / Union / Cohabiting),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.853,Employment outside the formal sector (Single),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.854,Employment outside the formal sector (Single / Widowed / Divorced),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.855,Employment outside the formal sector (Union / Cohabiting),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.856,Employment outside the formal sector (Widowed),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.857,Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.857,Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.857,Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.857,Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.857,Employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.858,Employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.859,Employment outside the formal sector (Married) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.859,Employment outside the formal sector (Married) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.859,Employment outside the formal sector (Married) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.859,Employment outside the formal sector (Married) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.859,Employment outside the formal sector (Married) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.860,Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.860,Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.860,Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.860,Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.860,Employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.861,Employment outside the formal sector (Single) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.861,Employment outside the formal sector (Single) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.861,Employment outside the formal sector (Single) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.861,Employment outside the formal sector (Single) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.861,Employment outside the formal sector (Single) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.862,Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.862,Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.862,Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.862,Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.862,Employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.863,Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.863,Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.863,Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.863,Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.863,Employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.864,Employment outside the formal sector (Widowed) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.864,Employment outside the formal sector (Widowed) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.864,Employment outside the formal sector (Widowed) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.864,Employment outside the formal sector (Widowed) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.864,Employment outside the formal sector (Widowed) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.865,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.866,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.867,Employment outside the formal sector (Married) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.868,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.869,Employment outside the formal sector (Single) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.870,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.871,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.872,Employment outside the formal sector (Widowed) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.873,Employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.874,Employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.875,Employment outside the formal sector (Married) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.876,Employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.877,Employment outside the formal sector (Single) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.878,Employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.879,Employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.880,Employment outside the formal sector (Widowed) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.881,Employment outside the formal sector by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.882,Employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.882,Employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.882,Employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.883,Employment outside the formal sector by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.883,Employment outside the formal sector by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.883,Employment outside the formal sector by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.883,Employment outside the formal sector by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.884,Employment outside the formal sector by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.885,Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.885,Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.885,Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.885,Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.885,Employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.886,Employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.886,Employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.886,Employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.886,Employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.887,Employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.887,Employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.887,Employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.887,Employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.888,"Employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.888,"Employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.888,"Employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.889,Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.889,Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.889,Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.889,Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.889,Employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.890,Employment outside the formal sector by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.890,"Employment outside the formal sector by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.890,"Employment outside the formal sector by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.891,Employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.892,Employment outside the formal sector by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.893,Employment outside the formal sector by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.894,"Employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.894,"Employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.894,"Employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.895,Employment outside the formal sector by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.895,Employment outside the formal sector by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.895,Employment outside the formal sector by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.895,Employment outside the formal sector by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.896,Employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.896,Employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.896,Employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.896,Employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.897,Employment outside the formal sector by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.897,Employment outside the formal sector by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.898,Employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.898,Employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.899,Employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.899,Employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.900,Employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.900,Employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.900,Employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.900,Employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.901,Employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.901,Employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.901,Employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.902,Employment outside the formal sector by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.902,Employment outside the formal sector by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.902,Employment outside the formal sector by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.903,Employment outside the formal sector by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.903,Employment outside the formal sector by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.903,Employment outside the formal sector by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.904,Employment outside the formal sector (Female) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.905,Employment outside the formal sector (Male) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_X__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.906,"Employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.906,"Employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.906,"Employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.907,"Employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.907,"Employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.907,"Employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.908,Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.908,Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.908,Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.908,Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.908,Employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.909,Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.909,Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.909,Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.909,Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.909,Employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.910,"Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.910,"Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.911,"Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.911,"Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.912,Employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.912,Employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.913,Employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.913,Employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.914,"Employment outside the formal sector (Female) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.915,"Employment outside the formal sector (Male) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.916,"Employment outside the formal sector (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.917,"Employment outside the formal sector (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.918,Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.918,Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.919,Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.919,Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.920,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.920,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.920,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.921,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.921,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.921,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.922,Employment outside the formal sector (Female) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.923,Employment outside the formal sector (Male) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.924,Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.924,Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.925,Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.925,Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.926,Employment outside the formal sector (Female) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.927,Employment outside the formal sector (Male) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.928,"Employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.928,"Employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.928,"Employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.928,"Employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.929,"Employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.929,"Employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.929,"Employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.929,"Employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.930,Employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.930,Employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.931,Employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.931,Employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.932,"Employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.932,"Employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.933,"Employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.933,"Employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.934,"Employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.934,"Employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.935,"Employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.935,"Employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.936,Employment outside the formal sector (Female) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.937,Employment outside the formal sector (Male) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.938,"Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.938,"Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.938,"Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.939,"Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.939,"Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.939,"Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.940,Employment outside the formal sector (Female) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.941,Employment outside the formal sector (Male) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.942,"Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.942,"Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.942,"Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.942,"Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.942,"Employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.943,"Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.943,"Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.943,"Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.943,"Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.943,"Employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.944,Employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.944,Employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.944,Employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.945,Employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.945,Employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.945,Employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.946,"Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.946,"Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.946,"Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.946,"Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.946,"Employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.947,"Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.947,"Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.947,"Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.947,"Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.947,"Employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.948,Employment outside the formal sector (Female) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.949,Employment outside the formal sector (Male) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.950,Employment outside the formal sector (Female) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.951,Employment outside the formal sector (Male) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.952,Employment outside the formal sector (Female) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.953,Employment outside the formal sector (Male) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.954,"Employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.954,"Employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.954,"Employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.954,"Employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.955,"Employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.955,"Employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.955,"Employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.955,"Employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.956,Employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.956,Employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.956,Employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.957,Employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.957,Employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.957,Employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.958,Employment outside the formal sector (Female) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.959,Employment outside the formal sector (Male) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.960,Employment outside the formal sector (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.961,Employment outside the formal sector (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.962,Employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.962,Employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.962,Employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.963,Employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.963,Employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.963,Employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.964,Employment outside the formal sector (Sex other than Female or Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.965,Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.965,Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.965,Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.965,Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.965,Employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.966,Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.966,Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.966,Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.966,Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.966,Employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.967,"Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.967,"Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.967,"Employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.968,"Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.968,"Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.968,"Employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.969,Employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.969,Employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.970,Employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.970,Employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.971,Employment outside the formal sector (Female) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.972,Employment outside the formal sector (Male) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.973,"Employment outside the formal sector (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.974,"Employment outside the formal sector (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.975,Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.975,Employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.976,Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.976,Employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.977,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.977,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.977,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.977,"Employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.978,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.978,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.978,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.978,"Employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.979,Employment outside the formal sector (Female) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.980,Employment outside the formal sector (Male) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.981,Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.981,Employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.982,Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.982,Employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.983,"Employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.983,"Employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.983,"Employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.984,"Employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.984,"Employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.984,"Employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.985,Employment outside the formal sector (Female) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.985,Employment outside the formal sector (Female) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.986,Employment outside the formal sector (Male) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.986,Employment outside the formal sector (Male) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.987,Employment outside the formal sector (Female) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.988,Employment outside the formal sector (Male) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.989,Employment outside the formal sector (Female) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.990,Employment outside the formal sector (Male) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.991,Employment outside the formal sector (Female) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.992,Employment outside the formal sector (Male) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.993,"Employment outside the formal sector (Female) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.994,"Employment outside the formal sector (Male) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.995,"Employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.995,"Employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.995,"Employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.995,"Employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.996,"Employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.996,"Employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.996,"Employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.996,"Employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.997,Employment outside the formal sector (Female) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.997,Employment outside the formal sector (Female) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.997,Employment outside the formal sector (Female) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.998,Employment outside the formal sector (Male) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.998,Employment outside the formal sector (Male) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.998,Employment outside the formal sector (Male) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.999,Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.999,Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.999,Employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1000,Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1000,Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1000,Employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1001,Employment outside the formal sector (Sex other than Female or Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1002,Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1002,Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1002,Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1002,Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1002,Employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1003,Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1003,Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1003,Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1003,Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1003,Employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1004,Employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1004,Employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1005,Employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1005,Employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1006,Employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1007,Employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1008,Employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1008,Employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1008,Employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1009,Employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1009,Employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1009,Employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1010,Employment outside the formal sector (Female) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1011,Employment outside the formal sector (Male) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1012,"Employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1013,"Employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1014,Employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1015,Employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1016,Employment outside the formal sector (Female) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1017,Employment outside the formal sector (Male) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1018,Employment outside the formal sector (Female) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1019,Employment outside the formal sector (Male) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1020,Employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1020,Employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1020,Employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1021,Employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1021,Employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1021,Employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1022,"Employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1022,"Employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1022,"Employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1022,"Employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1023,"Employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1023,"Employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1023,"Employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1023,"Employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1024,Employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1024,Employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1024,Employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1025,Employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1025,Employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1025,Employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1026,Employment outside the formal sector (Female) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1027,Employment outside the formal sector (Male) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1028,Employment outside the formal sector (Female) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1029,Employment outside the formal sector (Male) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1030,Employment outside the formal sector (Female) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1031,Employment outside the formal sector (Male) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1032,Employment outside the formal sector (Female),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1033,Employment outside the formal sector (Male),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1034,Employment outside the formal sector (Sex other than Female or Male),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1035,Employment outside the formal sector (Female) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1035,Employment outside the formal sector (Female) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1035,Employment outside the formal sector (Female) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1035,Employment outside the formal sector (Female) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1035,Employment outside the formal sector (Female) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1036,Employment outside the formal sector (Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1036,Employment outside the formal sector (Male) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1036,Employment outside the formal sector (Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1036,Employment outside the formal sector (Male) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1036,Employment outside the formal sector (Male) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1037,Employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1037,Employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1037,Employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1038,Employment outside the formal sector (Female) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1039,Employment outside the formal sector (Male) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1040,Employment outside the formal sector (Female) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1041,Employment outside the formal sector (Male) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1042,Employment outside the formal sector (Sex other than Female or Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1043,Employment outside the formal sector (Female) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1043,Employment outside the formal sector (Female) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1043,Employment outside the formal sector (Female) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1044,Employment outside the formal sector (Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1044,Employment outside the formal sector (Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1044,Employment outside the formal sector (Male) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1045,Employment outside the formal sector (Sex other than Female or Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1045,Employment outside the formal sector (Sex other than Female or Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1046,Employment outside the formal sector (Female) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1046,Employment outside the formal sector (Female) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1046,Employment outside the formal sector (Female) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1047,Employment outside the formal sector (Male) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1047,Employment outside the formal sector (Male) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1047,Employment outside the formal sector (Male) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1048,Employment outside the formal sector (Sex other than Female or Male) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1049,Employment outside the formal sector (Female) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1049,Employment outside the formal sector (Female) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1050,Employment outside the formal sector (Male) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1050,Employment outside the formal sector (Male) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1051,Employment outside the formal sector (Sex other than Female or Male) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1052,Employment outside the formal sector (Female) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1053,Employment outside the formal sector (Male) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1054,"Employment outside the formal sector (Female, Divorced or legally separated)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1055,"Employment outside the formal sector (Female, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1055,"Employment outside the formal sector (Female, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1056,"Employment outside the formal sector (Female, Married)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1057,"Employment outside the formal sector (Female, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1058,"Employment outside the formal sector (Female, Single)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1059,"Employment outside the formal sector (Female, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1060,"Employment outside the formal sector (Female, Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1061,"Employment outside the formal sector (Female, Widowed)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1062,"Employment outside the formal sector (Male, Divorced or legally separated)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1063,"Employment outside the formal sector (Male, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1063,"Employment outside the formal sector (Male, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1064,"Employment outside the formal sector (Male, Married)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1065,"Employment outside the formal sector (Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1066,"Employment outside the formal sector (Male, Single)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1067,"Employment outside the formal sector (Male, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1068,"Employment outside the formal sector (Male, Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1069,"Employment outside the formal sector (Male, Widowed)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1070,"Employment outside the formal sector (Sex other than Female or Male, Married)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1071,"Employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1072,"Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1072,"Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1072,"Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1072,"Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1072,"Employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1073,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1074,"Employment outside the formal sector (Female, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1074,"Employment outside the formal sector (Female, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1074,"Employment outside the formal sector (Female, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1074,"Employment outside the formal sector (Female, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1074,"Employment outside the formal sector (Female, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1075,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1075,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1075,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1075,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1075,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1076,"Employment outside the formal sector (Female, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1076,"Employment outside the formal sector (Female, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1076,"Employment outside the formal sector (Female, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1076,"Employment outside the formal sector (Female, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1076,"Employment outside the formal sector (Female, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1077,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1077,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1077,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1077,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1077,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1078,"Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1078,"Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1078,"Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1078,"Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1078,"Employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1079,"Employment outside the formal sector (Female, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1079,"Employment outside the formal sector (Female, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1079,"Employment outside the formal sector (Female, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1079,"Employment outside the formal sector (Female, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1079,"Employment outside the formal sector (Female, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1080,"Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1080,"Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1080,"Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1080,"Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1080,"Employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1081,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1082,"Employment outside the formal sector (Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1082,"Employment outside the formal sector (Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1082,"Employment outside the formal sector (Male, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1082,"Employment outside the formal sector (Male, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1082,"Employment outside the formal sector (Male, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1083,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1083,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1083,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1083,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1083,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1084,"Employment outside the formal sector (Male, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1084,"Employment outside the formal sector (Male, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1084,"Employment outside the formal sector (Male, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1084,"Employment outside the formal sector (Male, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1084,"Employment outside the formal sector (Male, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1085,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1085,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1085,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1085,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1085,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1086,"Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1086,"Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1086,"Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1086,"Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1086,"Employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1087,"Employment outside the formal sector (Male, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1087,"Employment outside the formal sector (Male, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1087,"Employment outside the formal sector (Male, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1087,"Employment outside the formal sector (Male, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1087,"Employment outside the formal sector (Male, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1088,"Employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1088,"Employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1089,"Employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1089,"Employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1090,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1091,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1092,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1093,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1094,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1095,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1096,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1097,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1098,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1099,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1100,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1101,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1102,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1103,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1104,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1105,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1106,"Employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1107,"Employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1108,"Employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1109,"Employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1110,"Employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1111,"Employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1112,"Employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1113,"Employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1114,"Employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1115,"Employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1116,"Employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1117,"Employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1118,"Employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1119,"Employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1120,"Employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1121,"Employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1122,"Employment outside the formal sector (Sex other than Female or Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1123,"Employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1124,Employment outside the formal sector (Female) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1125,Employment outside the formal sector (Male) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_X__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1126,Employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1126,Employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1126,Employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1127,Employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_01__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1127,Employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_02__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1127,Employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_03__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1128,Employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1128,Employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1128,Employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1128,Employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1129,Employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_11__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1129,Employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_12__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1129,Employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_13__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1129,Employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_14__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1130,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_21__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_22__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_23__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_25__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1131,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_26__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1132,Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1132,Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1132,Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1132,Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1132,Employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1133,Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_31__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1133,Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_32__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1133,Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_33__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1133,Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_34__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1133,Employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_35__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1134,Employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1134,Employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1134,Employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1134,Employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1135,Employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_41__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1135,Employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_42__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1135,Employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_43__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1135,Employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_44__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1136,Employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1136,Employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1136,Employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1136,Employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1137,Employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_51__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1137,Employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_52__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1137,Employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_53__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1137,Employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_54__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1138,"Employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1138,"Employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1138,"Employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1139,"Employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_61__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1139,"Employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_62__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1139,"Employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_63__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1140,Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1140,Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1140,Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1140,Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1140,Employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1141,Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_71__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1141,Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_72__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1141,Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_73__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1141,Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_74__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1141,Employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_75__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1142,Employment outside the formal sector (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1142,"Employment outside the formal sector (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1142,"Employment outside the formal sector (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1143,Employment outside the formal sector (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_81__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1143,"Employment outside the formal sector (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_82__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1143,"Employment outside the formal sector (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_83__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1144,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_91__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_92__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_93__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_94__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_95__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1145,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO08_96__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1146,Employment outside the formal sector (Female) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1147,Employment outside the formal sector (Male) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_X__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1148,Employment outside the formal sector (Female) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1149,Employment outside the formal sector (Male) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_01__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1150,"Employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1150,"Employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1150,"Employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1151,"Employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_11__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1151,"Employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_12__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1151,"Employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_13__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1152,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1152,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1152,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1152,Employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1153,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_21__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1153,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_22__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1153,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_23__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1153,Employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_24__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1154,Employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1154,Employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1154,Employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1154,Employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1155,Employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_31__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1155,Employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_32__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1155,Employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_33__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1155,Employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_34__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1156,Employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1156,Employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1157,Employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_41__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1157,Employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_42__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1158,Employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1158,Employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1159,Employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_51__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1159,Employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1160,Employment outside the formal sector (Sex other than Female or Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_52__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1161,Employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1161,Employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1162,Employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1162,Employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_62__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1163,Employment outside the formal sector (Sex other than Female or Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_61__SEX--O,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1164,Employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1164,Employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1164,Employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1164,Employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1165,Employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_71__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1165,Employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_72__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1165,Employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_73__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1165,Employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_74__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1166,Employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1166,Employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1166,Employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1167,Employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_81__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1167,Employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_82__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1167,Employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_83__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1168,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1168,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1168,Employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93__SEX--F,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1169,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_91__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1169,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_92__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1169,Employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.OCCUPATION--ISCO88_93__SEX--M,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1170,Employment outside the formal sector by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1171,Employment outside the formal sector by Employment status,Employees,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1171,Employment outside the formal sector by Employment status,Self-employed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1171,Employment outside the formal sector by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1172,Employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1172,Employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1172,Employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1173,Employment outside the formal sector (Employees) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1173,Employment outside the formal sector (Employees) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1174,Employment outside the formal sector (Employees (ICSE93_1)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1174,Employment outside the formal sector (Employees (ICSE93_1)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1175,Employment outside the formal sector (Employers (ICSE93_2)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1175,Employment outside the formal sector (Employers (ICSE93_2)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1176,Employment outside the formal sector (Emplyment status not elsewhere classified) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1176,Employment outside the formal sector (Emplyment status not elsewhere classified) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1177,Employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1177,Employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1178,Employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1178,Employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1178,Employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1179,Employment outside the formal sector (Self-employed) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1179,Employment outside the formal sector (Self-employed) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1179,Employment outside the formal sector (Self-employed) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1180,Employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1180,Employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1181,Employment outside the formal sector by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1181,Employment outside the formal sector by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1181,Employment outside the formal sector by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1182,Employment outside the formal sector (Not classsified as rural or urban) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1182,Employment outside the formal sector (Not classsified as rural or urban) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1183,Employment outside the formal sector (Rural) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1183,Employment outside the formal sector (Rural) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1184,Employment outside the formal sector (Urban) by Disability status,Persons with disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1184,Employment outside the formal sector (Urban) by Disability status,Persons without disability,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1185,"Employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1185,"Employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1186,"Employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1186,"Employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1187,"Employment outside the formal sector (Rural, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1187,"Employment outside the formal sector (Rural, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1188,"Employment outside the formal sector (Rural, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1188,"Employment outside the formal sector (Rural, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1189,"Employment outside the formal sector (Urban, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1189,"Employment outside the formal sector (Urban, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1190,"Employment outside the formal sector (Urban, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1190,"Employment outside the formal sector (Urban, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1191,Employment outside the formal sector (Rural),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1192,Employment outside the formal sector (Urban),No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1193,Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1193,Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1193,Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1193,Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1193,Employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1194,Employment outside the formal sector (Rural) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1194,Employment outside the formal sector (Rural) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1194,Employment outside the formal sector (Rural) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1194,Employment outside the formal sector (Rural) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1194,Employment outside the formal sector (Rural) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1195,Employment outside the formal sector (Urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1195,Employment outside the formal sector (Urban) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1195,Employment outside the formal sector (Urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1195,Employment outside the formal sector (Urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1195,Employment outside the formal sector (Urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1196,Employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1197,Employment outside the formal sector (Rural) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1198,Employment outside the formal sector (Urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1199,Employment outside the formal sector (Rural) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1200,Employment outside the formal sector (Urban) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1201,Employment outside the formal sector (Not classsified as rural or urban) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1202,Employment outside the formal sector (Rural) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1202,Employment outside the formal sector (Rural) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1202,Employment outside the formal sector (Rural) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1203,Employment outside the formal sector (Urban) by Institutional sector,Private sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1203,Employment outside the formal sector (Urban) by Institutional sector,Public sector,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1203,Employment outside the formal sector (Urban) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1204,"Employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1204,"Employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1205,"Employment outside the formal sector (Rural, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1205,"Employment outside the formal sector (Rural, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1206,"Employment outside the formal sector (Rural, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1206,"Employment outside the formal sector (Rural, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1207,"Employment outside the formal sector (Rural, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1207,"Employment outside the formal sector (Rural, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1208,"Employment outside the formal sector (Urban, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1208,"Employment outside the formal sector (Urban, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1209,"Employment outside the formal sector (Urban, Private sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1209,"Employment outside the formal sector (Urban, Private sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1210,"Employment outside the formal sector (Urban, Public sector) by Sex",Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1210,"Employment outside the formal sector (Urban, Public sector) by Sex",Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1211,Employment outside the formal sector (Not classsified as rural or urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1211,Employment outside the formal sector (Not classsified as rural or urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1212,Employment outside the formal sector (Rural) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1212,Employment outside the formal sector (Rural) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1212,Employment outside the formal sector (Rural) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1213,Employment outside the formal sector (Urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1213,Employment outside the formal sector (Urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1213,Employment outside the formal sector (Urban) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1214,Employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1214,Employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1214,Employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1215,Employment outside the formal sector (Rural) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1215,Employment outside the formal sector (Rural) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1215,Employment outside the formal sector (Rural) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1216,Employment outside the formal sector (Urban) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1216,Employment outside the formal sector (Urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1216,Employment outside the formal sector (Urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1217,Employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1217,Employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1218,Employment outside the formal sector (Rural) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1218,Employment outside the formal sector (Rural) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1219,Employment outside the formal sector (Urban) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1219,Employment outside the formal sector (Urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1220,Employment outside the formal sector (Rural) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1221,Employment outside the formal sector (Urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1222,Employment outside the formal sector (Not classsified as rural or urban) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1222,Employment outside the formal sector (Not classsified as rural or urban) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1223,Employment outside the formal sector (Rural) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1223,Employment outside the formal sector (Rural) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1223,Employment outside the formal sector (Rural) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1224,Employment outside the formal sector (Urban) by Sex,Female,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1224,Employment outside the formal sector (Urban) by Sex,Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1224,Employment outside the formal sector (Urban) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1225,"Employment outside the formal sector (Rural, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1226,"Employment outside the formal sector (Rural, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1227,"Employment outside the formal sector (Rural, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1228,"Employment outside the formal sector (Urban, Female)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1229,"Employment outside the formal sector (Urban, Male)",No schooling,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1230,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1230,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1230,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1230,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1231,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1231,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1231,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1231,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1232,"Employment outside the formal sector (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1232,"Employment outside the formal sector (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1232,"Employment outside the formal sector (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1232,"Employment outside the formal sector (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1232,"Employment outside the formal sector (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1233,"Employment outside the formal sector (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1233,"Employment outside the formal sector (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1233,"Employment outside the formal sector (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1233,"Employment outside the formal sector (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1233,"Employment outside the formal sector (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1234,"Employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1234,"Employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1235,"Employment outside the formal sector (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1235,"Employment outside the formal sector (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1235,"Employment outside the formal sector (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1235,"Employment outside the formal sector (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1235,"Employment outside the formal sector (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1236,"Employment outside the formal sector (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1236,"Employment outside the formal sector (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1236,"Employment outside the formal sector (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1236,"Employment outside the formal sector (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1236,"Employment outside the formal sector (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1237,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1238,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1239,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1240,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1241,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1242,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1243,"Employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1244,"Employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1245,"Employment outside the formal sector (Rural, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1246,"Employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1247,"Employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1248,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1248,"Employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1249,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1249,"Employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1250,"Employment outside the formal sector (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1250,"Employment outside the formal sector (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1250,"Employment outside the formal sector (Rural, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1251,"Employment outside the formal sector (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1251,"Employment outside the formal sector (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1251,"Employment outside the formal sector (Rural, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1252,"Employment outside the formal sector (Rural, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1253,"Employment outside the formal sector (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1253,"Employment outside the formal sector (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1253,"Employment outside the formal sector (Urban, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1254,"Employment outside the formal sector (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1254,"Employment outside the formal sector (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1254,"Employment outside the formal sector (Urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1255,"Employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1255,"Employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1255,"Employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1256,"Employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1256,"Employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1256,"Employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1257,"Employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1257,"Employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1257,"Employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1258,"Employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1258,"Employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1258,"Employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1259,"Employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1259,"Employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1259,"Employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1260,"Employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1260,"Employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1260,"Employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1261,"Employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1261,"Employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1262,"Employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1262,"Employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1263,"Employment outside the formal sector (Rural, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1263,"Employment outside the formal sector (Rural, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1264,"Employment outside the formal sector (Rural, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1264,"Employment outside the formal sector (Rural, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1265,"Employment outside the formal sector (Rural, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1266,"Employment outside the formal sector (Urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1266,"Employment outside the formal sector (Urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1267,"Employment outside the formal sector (Urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1267,"Employment outside the formal sector (Urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1268,"Employment outside the formal sector (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1269,"Employment outside the formal sector (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1270,"Employment outside the formal sector (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_NB.1271,"Employment outside the formal sector (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_NB,ilo/EMP_PIFL_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_NB,Employment outside the formal sector +EMP_PIFL_RT.001,Share of employment outside the formal sector,Total,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,15 to 19 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,15 to 24 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,15 years old and over,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,20 to 24 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y20T24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,25 to 29 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,25 to 34 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,25 to 54 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,25 years old and over,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,30 to 34 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y30T34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,35 to 39 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,35 to 44 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,40 to 44 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y40T44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,45 to 49 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,45 to 54 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,50 to 54 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y50T54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,55 to 59 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T59,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,55 to 64 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,60 to 64 years old,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y60T64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.002,Share of employment outside the formal sector by Age group,65 years old and over,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.003,Share of employment outside the formal sector (15 to 24 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.003,Share of employment outside the formal sector (15 to 24 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.004,Share of employment outside the formal sector (15 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.004,Share of employment outside the formal sector (15 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.005,Share of employment outside the formal sector (25 to 54 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.005,Share of employment outside the formal sector (25 to 54 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.006,Share of employment outside the formal sector (25 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.006,Share of employment outside the formal sector (25 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.007,Share of employment outside the formal sector (55 to 64 years old) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.007,Share of employment outside the formal sector (55 to 64 years old) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.008,Share of employment outside the formal sector (65 years old and over) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.008,Share of employment outside the formal sector (65 years old and over) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.009,"Share of employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.009,"Share of employment outside the formal sector (15 to 24 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.010,"Share of employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.010,"Share of employment outside the formal sector (15 to 24 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.011,"Share of employment outside the formal sector (15 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.011,"Share of employment outside the formal sector (15 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.012,"Share of employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.012,"Share of employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.012,"Share of employment outside the formal sector (15 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.013,"Share of employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.013,"Share of employment outside the formal sector (25 to 54 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.014,"Share of employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.014,"Share of employment outside the formal sector (25 to 54 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.015,"Share of employment outside the formal sector (25 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.015,"Share of employment outside the formal sector (25 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.016,"Share of employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.016,"Share of employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.016,"Share of employment outside the formal sector (25 years old and over, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.017,"Share of employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.017,"Share of employment outside the formal sector (55 to 64 years old, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.018,"Share of employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.018,"Share of employment outside the formal sector (55 to 64 years old, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.019,"Share of employment outside the formal sector (65 years old and over, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.019,"Share of employment outside the formal sector (65 years old and over, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.020,"Share of employment outside the formal sector (65 years old and over, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.020,"Share of employment outside the formal sector (65 years old and over, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.021,Share of employment outside the formal sector (15 to 24 years old) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.022,Share of employment outside the formal sector (15 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.023,Share of employment outside the formal sector (25 years old and over) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.024,"Share of employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.024,"Share of employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.024,"Share of employment outside the formal sector (15 to 24 years old) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.025,"Share of employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.025,"Share of employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.025,"Share of employment outside the formal sector (15 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.026,"Share of employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.026,"Share of employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.026,"Share of employment outside the formal sector (25 years old and over) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.027,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.027,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.027,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.027,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.027,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.028,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.028,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.028,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.028,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.028,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.029,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.029,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.029,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.029,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.029,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.030,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.030,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.031,"Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.031,"Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.032,"Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.032,"Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.033,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.033,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.034,Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.034,Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.035,Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.035,Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.036,"Share of employment outside the formal sector (15 to 24 years old) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.037,"Share of employment outside the formal sector (15 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.038,"Share of employment outside the formal sector (25 years old and over) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.039,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.040,"Share of employment outside the formal sector (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.041,"Share of employment outside the formal sector (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.042,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.042,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.043,Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.043,Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.044,Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.044,Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.045,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.045,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.046,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.046,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.046,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.047,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.047,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.047,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.048,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.049,Share of employment outside the formal sector (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.050,Share of employment outside the formal sector (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.051,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.051,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.052,Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.052,Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.053,Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.053,Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.054,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.055,Share of employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.056,Share of employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.057,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.057,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.057,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.057,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.058,"Share of employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.058,"Share of employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.058,"Share of employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.058,"Share of employment outside the formal sector (15 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.059,"Share of employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.059,"Share of employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.059,"Share of employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.059,"Share of employment outside the formal sector (25 years old and over) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.060,Share of employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.060,Share of employment outside the formal sector (15 to 24 years old) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.061,Share of employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.061,Share of employment outside the formal sector (15 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.062,Share of employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.062,Share of employment outside the formal sector (25 years old and over) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.063,"Share of employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.063,"Share of employment outside the formal sector (15 to 24 years old) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.064,"Share of employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.064,"Share of employment outside the formal sector (15 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.065,"Share of employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.065,"Share of employment outside the formal sector (25 years old and over) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.066,"Share of employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.066,"Share of employment outside the formal sector (15 to 24 years old) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.067,"Share of employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.067,"Share of employment outside the formal sector (15 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.068,"Share of employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.068,"Share of employment outside the formal sector (25 years old and over) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.069,Share of employment outside the formal sector (15 to 24 years old) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.070,Share of employment outside the formal sector (15 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.071,Share of employment outside the formal sector (25 years old and over) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.072,"Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.072,"Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.072,"Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.073,"Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.073,"Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.073,"Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.074,"Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.074,"Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.074,"Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.075,Share of employment outside the formal sector (15 to 24 years old) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.076,Share of employment outside the formal sector (15 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.077,Share of employment outside the formal sector (25 years old and over) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.078,"Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.078,"Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.078,"Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.078,"Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.078,"Share of employment outside the formal sector (15 to 24 years old) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.079,"Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.079,"Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.079,"Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.079,"Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.079,"Share of employment outside the formal sector (15 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.080,"Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.080,"Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.080,"Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.080,"Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.080,"Share of employment outside the formal sector (25 years old and over) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.081,Share of employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.081,Share of employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.081,Share of employment outside the formal sector (15 to 24 years old) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.082,Share of employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.082,Share of employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.082,Share of employment outside the formal sector (15 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.083,Share of employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.083,Share of employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.083,Share of employment outside the formal sector (25 years old and over) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.084,"Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.084,"Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.084,"Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.084,"Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.084,"Share of employment outside the formal sector (15 to 24 years old) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.085,"Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.085,"Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.085,"Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.085,"Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.085,"Share of employment outside the formal sector (15 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.086,"Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.086,"Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.086,"Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.086,"Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.086,"Share of employment outside the formal sector (25 years old and over) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.087,Share of employment outside the formal sector (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.088,Share of employment outside the formal sector (15 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.089,Share of employment outside the formal sector (25 years old and over) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.090,Share of employment outside the formal sector (15 to 24 years old) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.091,Share of employment outside the formal sector (15 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.092,Share of employment outside the formal sector (25 years old and over) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.093,Share of employment outside the formal sector (15 to 24 years old) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.094,Share of employment outside the formal sector (15 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.095,Share of employment outside the formal sector (25 years old and over) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.096,"Share of employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.096,"Share of employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.096,"Share of employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.096,"Share of employment outside the formal sector (15 to 24 years old) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.097,"Share of employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.097,"Share of employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.097,"Share of employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.097,"Share of employment outside the formal sector (15 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.098,"Share of employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.098,"Share of employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.098,"Share of employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.098,"Share of employment outside the formal sector (25 years old and over) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.099,Share of employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.099,Share of employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.099,Share of employment outside the formal sector (15 to 24 years old) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.100,Share of employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.100,Share of employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.100,Share of employment outside the formal sector (15 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.101,Share of employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.101,Share of employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.101,Share of employment outside the formal sector (25 years old and over) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.102,Share of employment outside the formal sector (15 to 24 years old) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.103,Share of employment outside the formal sector (15 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.104,Share of employment outside the formal sector (25 years old and over) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.105,Share of employment outside the formal sector (15 to 24 years old) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.106,Share of employment outside the formal sector (15 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.107,Share of employment outside the formal sector (25 years old and over) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.108,Share of employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.108,Share of employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.108,Share of employment outside the formal sector (15 to 24 years old) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.109,Share of employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.109,Share of employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.109,Share of employment outside the formal sector (15 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.110,Share of employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.110,Share of employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.110,Share of employment outside the formal sector (25 years old and over) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.111,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.111,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.111,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.111,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.111,Share of employment outside the formal sector (15 to 24 years old) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.112,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.112,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.112,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.112,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.112,Share of employment outside the formal sector (15 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.113,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.113,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.113,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.113,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.113,Share of employment outside the formal sector (25 years old and over) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.114,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.114,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.114,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.115,"Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.115,"Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.115,"Share of employment outside the formal sector (15 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.116,"Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.116,"Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.116,"Share of employment outside the formal sector (25 years old and over) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.117,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.117,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.118,Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.118,Share of employment outside the formal sector (15 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.119,Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.119,Share of employment outside the formal sector (25 years old and over) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.120,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.121,Share of employment outside the formal sector (15 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.122,Share of employment outside the formal sector (25 years old and over) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.123,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.124,"Share of employment outside the formal sector (15 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.125,"Share of employment outside the formal sector (25 years old and over) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.126,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.126,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.127,Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.127,Share of employment outside the formal sector (15 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.128,Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.128,Share of employment outside the formal sector (25 years old and over) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.129,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.129,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.129,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.129,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.130,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.130,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.130,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.130,"Share of employment outside the formal sector (15 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.131,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.131,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.131,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.131,"Share of employment outside the formal sector (25 years old and over) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.132,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.133,Share of employment outside the formal sector (15 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.134,Share of employment outside the formal sector (25 years old and over) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.135,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.135,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.136,Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.136,Share of employment outside the formal sector (15 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.137,Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.137,Share of employment outside the formal sector (25 years old and over) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.138,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.138,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.138,"Share of employment outside the formal sector (15 to 24 years old) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.139,"Share of employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.139,"Share of employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.139,"Share of employment outside the formal sector (15 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.140,"Share of employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.140,"Share of employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.140,"Share of employment outside the formal sector (25 years old and over) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.141,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.141,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.142,Share of employment outside the formal sector (15 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.142,Share of employment outside the formal sector (15 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.143,Share of employment outside the formal sector (25 years old and over) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.143,Share of employment outside the formal sector (25 years old and over) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.144,Share of employment outside the formal sector (15 to 24 years old) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.145,Share of employment outside the formal sector (15 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.146,Share of employment outside the formal sector (25 years old and over) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.147,Share of employment outside the formal sector (15 to 24 years old) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.148,Share of employment outside the formal sector (15 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.149,Share of employment outside the formal sector (25 years old and over) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.150,Share of employment outside the formal sector (15 to 24 years old) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.151,Share of employment outside the formal sector (15 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.152,Share of employment outside the formal sector (25 years old and over) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.153,"Share of employment outside the formal sector (15 to 24 years old) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.154,"Share of employment outside the formal sector (15 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.155,"Share of employment outside the formal sector (25 years old and over) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.156,"Share of employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.156,"Share of employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.156,"Share of employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.156,"Share of employment outside the formal sector (15 to 24 years old) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.157,"Share of employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.157,"Share of employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.157,"Share of employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.157,"Share of employment outside the formal sector (15 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.158,"Share of employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.158,"Share of employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.158,"Share of employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.158,"Share of employment outside the formal sector (25 years old and over) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.159,Share of employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.159,Share of employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.159,Share of employment outside the formal sector (15 to 24 years old) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.160,Share of employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.160,Share of employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.160,Share of employment outside the formal sector (15 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.161,Share of employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.161,Share of employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.161,Share of employment outside the formal sector (25 years old and over) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.162,Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.162,Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.162,Share of employment outside the formal sector (15 to 24 years old) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.163,Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.163,Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.163,Share of employment outside the formal sector (15 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.164,Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.164,Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.164,Share of employment outside the formal sector (25 years old and over) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.165,Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.165,Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.165,Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.165,Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.165,Share of employment outside the formal sector (15 to 24 years old) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.166,Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.166,Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.166,Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.166,Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.166,Share of employment outside the formal sector (15 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.167,Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.167,Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.167,Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.167,Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.167,Share of employment outside the formal sector (25 years old and over) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.168,Share of employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.168,Share of employment outside the formal sector (15 to 24 years old) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.169,Share of employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.169,Share of employment outside the formal sector (15 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.170,Share of employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.170,Share of employment outside the formal sector (25 years old and over) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.171,Share of employment outside the formal sector (15 to 24 years old) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.172,Share of employment outside the formal sector (15 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.173,Share of employment outside the formal sector (25 years old and over) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.174,Share of employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.174,Share of employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.174,Share of employment outside the formal sector (15 to 24 years old) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.175,Share of employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.175,Share of employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.175,Share of employment outside the formal sector (15 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.176,Share of employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.176,Share of employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.176,Share of employment outside the formal sector (25 years old and over) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.177,Share of employment outside the formal sector (15 to 24 years old) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.178,Share of employment outside the formal sector (15 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.179,Share of employment outside the formal sector (25 years old and over) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.180,"Share of employment outside the formal sector (15 to 24 years old) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.181,"Share of employment outside the formal sector (15 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.182,"Share of employment outside the formal sector (25 years old and over) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.183,Share of employment outside the formal sector (15 to 24 years old) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.184,Share of employment outside the formal sector (15 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.185,Share of employment outside the formal sector (25 years old and over) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.186,Share of employment outside the formal sector (15 to 24 years old) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.187,Share of employment outside the formal sector (15 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.188,Share of employment outside the formal sector (25 years old and over) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.189,Share of employment outside the formal sector (15 to 24 years old) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.190,Share of employment outside the formal sector (15 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.191,Share of employment outside the formal sector (25 years old and over) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.192,Share of employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.192,Share of employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.192,Share of employment outside the formal sector (15 to 24 years old) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.193,Share of employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.193,Share of employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.193,Share of employment outside the formal sector (15 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.194,Share of employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.194,Share of employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.194,Share of employment outside the formal sector (25 years old and over) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.195,"Share of employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.195,"Share of employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.195,"Share of employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.195,"Share of employment outside the formal sector (15 to 24 years old) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.196,"Share of employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.196,"Share of employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.196,"Share of employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.196,"Share of employment outside the formal sector (15 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.197,"Share of employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.197,"Share of employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.197,"Share of employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.197,"Share of employment outside the formal sector (25 years old and over) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.198,Share of employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.198,Share of employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.198,Share of employment outside the formal sector (15 to 24 years old) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.199,Share of employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.199,Share of employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.199,Share of employment outside the formal sector (15 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.200,Share of employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.200,Share of employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.200,Share of employment outside the formal sector (25 years old and over) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.201,Share of employment outside the formal sector (15 to 24 years old) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.202,Share of employment outside the formal sector (15 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.203,Share of employment outside the formal sector (25 years old and over) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.204,Share of employment outside the formal sector (15 to 24 years old) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.205,Share of employment outside the formal sector (15 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.206,Share of employment outside the formal sector (25 years old and over) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.207,Share of employment outside the formal sector (15 to 24 years old) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.208,Share of employment outside the formal sector (15 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.209,Share of employment outside the formal sector (25 years old and over) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.210,Share of employment outside the formal sector (15 to 24 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.211,Share of employment outside the formal sector (15 years old and over),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.212,Share of employment outside the formal sector (25 to 34 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.213,Share of employment outside the formal sector (25 to 54 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.214,Share of employment outside the formal sector (25 years old and over),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.215,Share of employment outside the formal sector (35 to 44 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.216,Share of employment outside the formal sector (45 to 54 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.217,Share of employment outside the formal sector (55 to 64 years old),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.218,Share of employment outside the formal sector (65 years old and over),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.219,Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.219,Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.219,Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.219,Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.219,Share of employment outside the formal sector (15 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.220,Share of employment outside the formal sector (15 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.220,Share of employment outside the formal sector (15 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.220,Share of employment outside the formal sector (15 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.220,Share of employment outside the formal sector (15 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.220,Share of employment outside the formal sector (15 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.221,Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.221,Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.221,Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.221,Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.221,Share of employment outside the formal sector (25 to 34 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.222,Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.222,Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.222,Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.222,Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.222,Share of employment outside the formal sector (25 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.223,Share of employment outside the formal sector (25 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.223,Share of employment outside the formal sector (25 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.223,Share of employment outside the formal sector (25 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.223,Share of employment outside the formal sector (25 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.223,Share of employment outside the formal sector (25 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.224,Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.224,Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.224,Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.224,Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.224,Share of employment outside the formal sector (35 to 44 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.225,Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.225,Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.225,Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.225,Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.225,Share of employment outside the formal sector (45 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.226,Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.226,Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.226,Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.226,Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.226,Share of employment outside the formal sector (55 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.227,Share of employment outside the formal sector (65 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.227,Share of employment outside the formal sector (65 years old and over) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.227,Share of employment outside the formal sector (65 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.227,Share of employment outside the formal sector (65 years old and over) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.227,Share of employment outside the formal sector (65 years old and over) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.228,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.229,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.230,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.231,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.232,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.233,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.234,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.235,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.236,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.237,Share of employment outside the formal sector (15 to 24 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.238,Share of employment outside the formal sector (15 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.239,Share of employment outside the formal sector (25 to 34 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.240,Share of employment outside the formal sector (25 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.241,Share of employment outside the formal sector (25 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.242,Share of employment outside the formal sector (35 to 44 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.243,Share of employment outside the formal sector (45 to 54 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.244,Share of employment outside the formal sector (55 to 64 years old) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.245,Share of employment outside the formal sector (65 years old and over) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.246,Share of employment outside the formal sector (15 to 24 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.246,Share of employment outside the formal sector (15 to 24 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.246,Share of employment outside the formal sector (15 to 24 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.247,Share of employment outside the formal sector (15 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.247,Share of employment outside the formal sector (15 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.247,Share of employment outside the formal sector (15 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.248,Share of employment outside the formal sector (25 to 34 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.248,Share of employment outside the formal sector (25 to 34 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.248,Share of employment outside the formal sector (25 to 34 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.249,Share of employment outside the formal sector (25 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.249,Share of employment outside the formal sector (25 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.249,Share of employment outside the formal sector (25 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.250,Share of employment outside the formal sector (25 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.250,Share of employment outside the formal sector (25 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.250,Share of employment outside the formal sector (25 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.251,Share of employment outside the formal sector (35 to 44 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.251,Share of employment outside the formal sector (35 to 44 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.251,Share of employment outside the formal sector (35 to 44 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.252,Share of employment outside the formal sector (45 to 54 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.252,Share of employment outside the formal sector (45 to 54 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.252,Share of employment outside the formal sector (45 to 54 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.253,Share of employment outside the formal sector (55 to 64 years old) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.253,Share of employment outside the formal sector (55 to 64 years old) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.253,Share of employment outside the formal sector (55 to 64 years old) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.254,Share of employment outside the formal sector (65 years old and over) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.254,Share of employment outside the formal sector (65 years old and over) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.254,Share of employment outside the formal sector (65 years old and over) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.255,"Share of employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.255,"Share of employment outside the formal sector (15 to 24 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.256,"Share of employment outside the formal sector (15 to 24 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.256,"Share of employment outside the formal sector (15 to 24 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.257,"Share of employment outside the formal sector (15 to 24 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.257,"Share of employment outside the formal sector (15 to 24 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.258,"Share of employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.258,"Share of employment outside the formal sector (15 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.259,"Share of employment outside the formal sector (15 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.259,"Share of employment outside the formal sector (15 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.260,"Share of employment outside the formal sector (15 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.260,"Share of employment outside the formal sector (15 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.261,"Share of employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.261,"Share of employment outside the formal sector (25 to 34 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.262,"Share of employment outside the formal sector (25 to 34 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.262,"Share of employment outside the formal sector (25 to 34 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.263,"Share of employment outside the formal sector (25 to 34 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.263,"Share of employment outside the formal sector (25 to 34 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.264,"Share of employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.264,"Share of employment outside the formal sector (25 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.265,"Share of employment outside the formal sector (25 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.265,"Share of employment outside the formal sector (25 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.266,"Share of employment outside the formal sector (25 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.266,"Share of employment outside the formal sector (25 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.267,"Share of employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.267,"Share of employment outside the formal sector (25 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.268,"Share of employment outside the formal sector (25 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.268,"Share of employment outside the formal sector (25 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.269,"Share of employment outside the formal sector (25 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.269,"Share of employment outside the formal sector (25 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.270,"Share of employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.270,"Share of employment outside the formal sector (35 to 44 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.271,"Share of employment outside the formal sector (35 to 44 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.271,"Share of employment outside the formal sector (35 to 44 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.272,"Share of employment outside the formal sector (35 to 44 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.272,"Share of employment outside the formal sector (35 to 44 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.273,"Share of employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.273,"Share of employment outside the formal sector (45 to 54 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.274,"Share of employment outside the formal sector (45 to 54 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.274,"Share of employment outside the formal sector (45 to 54 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.275,"Share of employment outside the formal sector (45 to 54 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.275,"Share of employment outside the formal sector (45 to 54 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.276,"Share of employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.276,"Share of employment outside the formal sector (55 to 64 years old, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.277,"Share of employment outside the formal sector (55 to 64 years old, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.277,"Share of employment outside the formal sector (55 to 64 years old, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.278,"Share of employment outside the formal sector (55 to 64 years old, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.278,"Share of employment outside the formal sector (55 to 64 years old, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.279,"Share of employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.279,"Share of employment outside the formal sector (65 years old and over, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.280,"Share of employment outside the formal sector (65 years old and over, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.280,"Share of employment outside the formal sector (65 years old and over, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.281,"Share of employment outside the formal sector (65 years old and over, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.281,"Share of employment outside the formal sector (65 years old and over, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.282,Share of employment outside the formal sector (15 to 24 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.282,Share of employment outside the formal sector (15 to 24 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.282,Share of employment outside the formal sector (15 to 24 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.283,Share of employment outside the formal sector (15 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.283,Share of employment outside the formal sector (15 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.283,Share of employment outside the formal sector (15 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.284,Share of employment outside the formal sector (25 to 34 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.284,Share of employment outside the formal sector (25 to 34 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.284,Share of employment outside the formal sector (25 to 34 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.285,Share of employment outside the formal sector (25 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.285,Share of employment outside the formal sector (25 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.285,Share of employment outside the formal sector (25 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.286,Share of employment outside the formal sector (25 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.286,Share of employment outside the formal sector (25 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.286,Share of employment outside the formal sector (25 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.287,Share of employment outside the formal sector (35 to 44 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.287,Share of employment outside the formal sector (35 to 44 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.287,Share of employment outside the formal sector (35 to 44 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.288,Share of employment outside the formal sector (45 to 54 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.288,Share of employment outside the formal sector (45 to 54 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.288,Share of employment outside the formal sector (45 to 54 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.289,Share of employment outside the formal sector (55 to 64 years old) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.289,Share of employment outside the formal sector (55 to 64 years old) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.289,Share of employment outside the formal sector (55 to 64 years old) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.290,Share of employment outside the formal sector (65 years old and over) by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.290,Share of employment outside the formal sector (65 years old and over) by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.290,Share of employment outside the formal sector (65 years old and over) by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.291,"Share of employment outside the formal sector (15 to 24 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.291,"Share of employment outside the formal sector (15 to 24 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.292,"Share of employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.292,"Share of employment outside the formal sector (15 to 24 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.293,"Share of employment outside the formal sector (15 to 24 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.293,"Share of employment outside the formal sector (15 to 24 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.294,"Share of employment outside the formal sector (15 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.294,"Share of employment outside the formal sector (15 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.295,"Share of employment outside the formal sector (15 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.295,"Share of employment outside the formal sector (15 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.296,"Share of employment outside the formal sector (15 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.296,"Share of employment outside the formal sector (15 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.297,"Share of employment outside the formal sector (25 to 34 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.297,"Share of employment outside the formal sector (25 to 34 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.298,"Share of employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.298,"Share of employment outside the formal sector (25 to 34 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.299,"Share of employment outside the formal sector (25 to 34 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.299,"Share of employment outside the formal sector (25 to 34 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.300,"Share of employment outside the formal sector (25 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.300,"Share of employment outside the formal sector (25 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.301,"Share of employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.301,"Share of employment outside the formal sector (25 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.302,"Share of employment outside the formal sector (25 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.302,"Share of employment outside the formal sector (25 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.303,"Share of employment outside the formal sector (25 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.303,"Share of employment outside the formal sector (25 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.304,"Share of employment outside the formal sector (25 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.304,"Share of employment outside the formal sector (25 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.305,"Share of employment outside the formal sector (25 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.305,"Share of employment outside the formal sector (25 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.306,"Share of employment outside the formal sector (35 to 44 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.306,"Share of employment outside the formal sector (35 to 44 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.307,"Share of employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.307,"Share of employment outside the formal sector (35 to 44 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.308,"Share of employment outside the formal sector (35 to 44 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.308,"Share of employment outside the formal sector (35 to 44 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.309,"Share of employment outside the formal sector (45 to 54 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.309,"Share of employment outside the formal sector (45 to 54 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.310,"Share of employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.310,"Share of employment outside the formal sector (45 to 54 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.311,"Share of employment outside the formal sector (45 to 54 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.311,"Share of employment outside the formal sector (45 to 54 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.312,"Share of employment outside the formal sector (55 to 64 years old, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.312,"Share of employment outside the formal sector (55 to 64 years old, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.313,"Share of employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.313,"Share of employment outside the formal sector (55 to 64 years old, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.314,"Share of employment outside the formal sector (55 to 64 years old, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.314,"Share of employment outside the formal sector (55 to 64 years old, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.315,"Share of employment outside the formal sector (65 years old and over, Full-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.315,"Share of employment outside the formal sector (65 years old and over, Full-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.316,"Share of employment outside the formal sector (65 years old and over, Job time unknown) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.316,"Share of employment outside the formal sector (65 years old and over, Job time unknown) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.317,"Share of employment outside the formal sector (65 years old and over, Part-time) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.317,"Share of employment outside the formal sector (65 years old and over, Part-time) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.318,Share of employment outside the formal sector (15 to 24 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.318,Share of employment outside the formal sector (15 to 24 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.318,Share of employment outside the formal sector (15 to 24 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.319,Share of employment outside the formal sector (15 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.319,Share of employment outside the formal sector (15 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.319,Share of employment outside the formal sector (15 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.320,Share of employment outside the formal sector (25 to 34 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.320,Share of employment outside the formal sector (25 to 34 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.320,Share of employment outside the formal sector (25 to 34 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.321,Share of employment outside the formal sector (25 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.321,Share of employment outside the formal sector (25 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.321,Share of employment outside the formal sector (25 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.322,Share of employment outside the formal sector (25 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.322,Share of employment outside the formal sector (25 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.322,Share of employment outside the formal sector (25 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.323,Share of employment outside the formal sector (35 to 44 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.323,Share of employment outside the formal sector (35 to 44 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.323,Share of employment outside the formal sector (35 to 44 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.324,Share of employment outside the formal sector (45 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.324,Share of employment outside the formal sector (45 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.324,Share of employment outside the formal sector (45 to 54 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.325,Share of employment outside the formal sector (55 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.325,Share of employment outside the formal sector (55 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.325,Share of employment outside the formal sector (55 to 64 years old) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.326,Share of employment outside the formal sector (65 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.326,Share of employment outside the formal sector (65 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.326,Share of employment outside the formal sector (65 years old and over) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.327,Share of employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.327,Share of employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.327,Share of employment outside the formal sector (15 to 24 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.328,Share of employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.328,Share of employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.328,Share of employment outside the formal sector (15 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.329,Share of employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.329,Share of employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.329,Share of employment outside the formal sector (25 to 34 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.330,Share of employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.330,Share of employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.330,Share of employment outside the formal sector (25 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.331,Share of employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.331,Share of employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.331,Share of employment outside the formal sector (25 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.332,Share of employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.332,Share of employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.332,Share of employment outside the formal sector (35 to 44 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.333,Share of employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.333,Share of employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.333,Share of employment outside the formal sector (45 to 54 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.334,Share of employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.334,Share of employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.334,Share of employment outside the formal sector (55 to 64 years old) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.335,Share of employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.335,Share of employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.335,Share of employment outside the formal sector (65 years old and over) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.336,Share of employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.336,Share of employment outside the formal sector (15 to 24 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.337,Share of employment outside the formal sector (15 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.337,Share of employment outside the formal sector (15 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.338,Share of employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.338,Share of employment outside the formal sector (25 to 34 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.339,Share of employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.339,Share of employment outside the formal sector (25 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.340,Share of employment outside the formal sector (25 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.340,Share of employment outside the formal sector (25 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.341,Share of employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.341,Share of employment outside the formal sector (35 to 44 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.342,Share of employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.342,Share of employment outside the formal sector (45 to 54 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.343,Share of employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.343,Share of employment outside the formal sector (55 to 64 years old) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.344,Share of employment outside the formal sector (65 years old and over) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.344,Share of employment outside the formal sector (65 years old and over) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.345,Share of employment outside the formal sector (15 to 24 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.346,Share of employment outside the formal sector (15 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.347,Share of employment outside the formal sector (25 to 34 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.348,Share of employment outside the formal sector (25 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.349,Share of employment outside the formal sector (25 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.350,Share of employment outside the formal sector (35 to 44 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.351,Share of employment outside the formal sector (45 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.352,Share of employment outside the formal sector (55 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.353,Share of employment outside the formal sector (65 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.354,Share of employment outside the formal sector (15 to 24 years old) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.355,Share of employment outside the formal sector (15 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.356,Share of employment outside the formal sector (25 years old and over) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.357,Share of employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.357,Share of employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.357,Share of employment outside the formal sector (15 to 24 years old) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.358,Share of employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.358,Share of employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.358,Share of employment outside the formal sector (15 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.359,Share of employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.359,Share of employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.359,Share of employment outside the formal sector (25 years old and over) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.360,Share of employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.360,Share of employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.360,Share of employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.360,Share of employment outside the formal sector (15 to 24 years old) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.361,Share of employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.361,Share of employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.361,Share of employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.361,Share of employment outside the formal sector (15 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.362,Share of employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.362,Share of employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.362,Share of employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.362,Share of employment outside the formal sector (25 years old and over) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.363,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.364,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.365,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.366,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.366,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.366,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.366,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.366,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.367,Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.367,Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.367,Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.367,Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.367,Share of employment outside the formal sector (15 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.368,Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.368,Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.368,Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.368,Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.368,Share of employment outside the formal sector (25 years old and over) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.369,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.369,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.369,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.369,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.370,Share of employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.370,Share of employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.370,Share of employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.370,Share of employment outside the formal sector (15 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.371,Share of employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.371,Share of employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.371,Share of employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.371,Share of employment outside the formal sector (25 years old and over) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.372,Share of employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.372,Share of employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.372,Share of employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.372,Share of employment outside the formal sector (15 to 24 years old) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.373,Share of employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.373,Share of employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.373,Share of employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.373,Share of employment outside the formal sector (15 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.374,Share of employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.374,Share of employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.374,Share of employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.374,Share of employment outside the formal sector (25 years old and over) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.375,"Share of employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.375,"Share of employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.375,"Share of employment outside the formal sector (15 to 24 years old) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.376,"Share of employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.376,"Share of employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.376,"Share of employment outside the formal sector (15 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.377,"Share of employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.377,"Share of employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.377,"Share of employment outside the formal sector (25 years old and over) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.378,Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.378,Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.378,Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.378,Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.378,Share of employment outside the formal sector (15 to 24 years old) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.379,Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.379,Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.379,Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.379,Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.379,Share of employment outside the formal sector (15 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.380,Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.380,Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.380,Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.380,Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.380,Share of employment outside the formal sector (25 years old and over) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.381,Share of employment outside the formal sector (15 to 24 years old) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.381,"Share of employment outside the formal sector (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.381,"Share of employment outside the formal sector (15 to 24 years old) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.382,Share of employment outside the formal sector (15 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.382,"Share of employment outside the formal sector (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.382,"Share of employment outside the formal sector (15 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.383,Share of employment outside the formal sector (25 years old and over) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.383,"Share of employment outside the formal sector (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.383,"Share of employment outside the formal sector (25 years old and over) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.384,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO08_96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.385,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO08_96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.386,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO08_96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.387,Share of employment outside the formal sector (15 to 24 years old) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.388,Share of employment outside the formal sector (15 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.389,Share of employment outside the formal sector (25 years old and over) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.390,Share of employment outside the formal sector (15 to 24 years old) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.391,Share of employment outside the formal sector (15 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.392,Share of employment outside the formal sector (25 years old and over) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.393,"Share of employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.393,"Share of employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.393,"Share of employment outside the formal sector (15 to 24 years old) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.394,"Share of employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.394,"Share of employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.394,"Share of employment outside the formal sector (15 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.395,"Share of employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.395,"Share of employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.395,"Share of employment outside the formal sector (25 years old and over) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.396,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.396,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.396,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.396,Share of employment outside the formal sector (15 to 24 years old) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.397,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.397,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.397,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.397,Share of employment outside the formal sector (15 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.398,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.398,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.398,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.398,Share of employment outside the formal sector (25 years old and over) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.399,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.399,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.399,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.399,Share of employment outside the formal sector (15 to 24 years old) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.400,Share of employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.400,Share of employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.400,Share of employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.400,Share of employment outside the formal sector (15 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.401,Share of employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.401,Share of employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.401,Share of employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.401,Share of employment outside the formal sector (25 years old and over) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.402,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.402,Share of employment outside the formal sector (15 to 24 years old) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.403,Share of employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.403,Share of employment outside the formal sector (15 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.404,Share of employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.404,Share of employment outside the formal sector (25 years old and over) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.405,Share of employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.405,Share of employment outside the formal sector (15 to 24 years old) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.406,Share of employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.406,Share of employment outside the formal sector (15 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.407,Share of employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.407,Share of employment outside the formal sector (25 years old and over) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.408,Share of employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.408,Share of employment outside the formal sector (15 to 24 years old) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.409,Share of employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.409,Share of employment outside the formal sector (15 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.410,Share of employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.410,Share of employment outside the formal sector (25 years old and over) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.411,Share of employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.411,Share of employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.411,Share of employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.411,Share of employment outside the formal sector (15 to 24 years old) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.412,Share of employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.412,Share of employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.412,Share of employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.412,Share of employment outside the formal sector (15 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.413,Share of employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.413,Share of employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.413,Share of employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.413,Share of employment outside the formal sector (25 years old and over) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.414,Share of employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.414,Share of employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.414,Share of employment outside the formal sector (15 to 24 years old) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.415,Share of employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.415,Share of employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.415,Share of employment outside the formal sector (15 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.416,Share of employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.416,Share of employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.416,Share of employment outside the formal sector (25 years old and over) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.417,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.417,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.417,Share of employment outside the formal sector (15 to 24 years old) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__OCCUPATION--ISCO88_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.418,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.418,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.418,Share of employment outside the formal sector (15 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__OCCUPATION--ISCO88_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.419,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.419,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.419,Share of employment outside the formal sector (25 years old and over) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__OCCUPATION--ISCO88_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.420,Share of employment outside the formal sector (15 to 19 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T19__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.420,Share of employment outside the formal sector (15 to 19 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T19__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.421,Share of employment outside the formal sector (15 to 24 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.421,Share of employment outside the formal sector (15 to 24 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.422,Share of employment outside the formal sector (15 years old and over) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.422,Share of employment outside the formal sector (15 years old and over) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.422,Share of employment outside the formal sector (15 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.423,Share of employment outside the formal sector (20 to 24 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y20T24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.423,Share of employment outside the formal sector (20 to 24 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y20T24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.424,Share of employment outside the formal sector (25 to 29 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T29__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.424,Share of employment outside the formal sector (25 to 29 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T29__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.425,Share of employment outside the formal sector (25 to 34 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.425,Share of employment outside the formal sector (25 to 34 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.425,Share of employment outside the formal sector (25 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.426,Share of employment outside the formal sector (25 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.426,Share of employment outside the formal sector (25 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.426,Share of employment outside the formal sector (25 to 54 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.427,Share of employment outside the formal sector (25 years old and over) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.427,Share of employment outside the formal sector (25 years old and over) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.427,Share of employment outside the formal sector (25 years old and over) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.428,Share of employment outside the formal sector (30 to 34 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.428,Share of employment outside the formal sector (30 to 34 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.428,Share of employment outside the formal sector (30 to 34 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y30T34__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.429,Share of employment outside the formal sector (35 to 39 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.429,Share of employment outside the formal sector (35 to 39 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.429,Share of employment outside the formal sector (35 to 39 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T39__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.430,Share of employment outside the formal sector (35 to 44 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.430,Share of employment outside the formal sector (35 to 44 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.430,Share of employment outside the formal sector (35 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.431,Share of employment outside the formal sector (40 to 44 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.431,Share of employment outside the formal sector (40 to 44 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.431,Share of employment outside the formal sector (40 to 44 years old) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y40T44__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.432,Share of employment outside the formal sector (45 to 49 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T49__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.432,Share of employment outside the formal sector (45 to 49 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T49__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.433,Share of employment outside the formal sector (45 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.433,Share of employment outside the formal sector (45 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.434,Share of employment outside the formal sector (50 to 54 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y50T54__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.434,Share of employment outside the formal sector (50 to 54 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y50T54__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.435,Share of employment outside the formal sector (55 to 59 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T59__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.435,Share of employment outside the formal sector (55 to 59 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T59__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.436,Share of employment outside the formal sector (55 to 64 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.436,Share of employment outside the formal sector (55 to 64 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.437,Share of employment outside the formal sector (60 to 64 years old) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y60T64__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.437,Share of employment outside the formal sector (60 to 64 years old) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y60T64__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.438,Share of employment outside the formal sector (65 years old and over) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.438,Share of employment outside the formal sector (65 years old and over) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.439,"Share of employment outside the formal sector (15 to 24 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.440,"Share of employment outside the formal sector (15 to 24 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.441,"Share of employment outside the formal sector (15 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.442,"Share of employment outside the formal sector (15 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.443,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.444,"Share of employment outside the formal sector (25 to 34 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.445,"Share of employment outside the formal sector (25 to 34 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.446,"Share of employment outside the formal sector (25 to 54 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.447,"Share of employment outside the formal sector (25 to 54 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.448,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.449,"Share of employment outside the formal sector (25 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.450,"Share of employment outside the formal sector (25 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.451,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.452,"Share of employment outside the formal sector (35 to 44 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.453,"Share of employment outside the formal sector (35 to 44 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.454,"Share of employment outside the formal sector (45 to 54 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.455,"Share of employment outside the formal sector (45 to 54 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.456,"Share of employment outside the formal sector (55 to 64 years old, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.457,"Share of employment outside the formal sector (55 to 64 years old, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.458,"Share of employment outside the formal sector (65 years old and over, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.459,"Share of employment outside the formal sector (65 years old and over, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.460,"Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.460,"Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.460,"Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.460,"Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.460,"Share of employment outside the formal sector (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.461,"Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.461,"Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.461,"Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.461,"Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.461,"Share of employment outside the formal sector (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.462,"Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.462,"Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.462,"Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.462,"Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.462,"Share of employment outside the formal sector (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.463,"Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.463,"Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.463,"Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.463,"Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.463,"Share of employment outside the formal sector (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.464,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.464,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.464,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.465,"Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.465,"Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.465,"Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.465,"Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.465,"Share of employment outside the formal sector (25 to 34 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.466,"Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.466,"Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.466,"Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.466,"Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.466,"Share of employment outside the formal sector (25 to 34 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.467,"Share of employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.468,"Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.468,"Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.468,"Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.468,"Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.468,"Share of employment outside the formal sector (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.469,"Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.469,"Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.469,"Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.469,"Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.469,"Share of employment outside the formal sector (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.470,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.470,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.470,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.471,"Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.471,"Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.471,"Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.471,"Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.471,"Share of employment outside the formal sector (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.472,"Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.472,"Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.472,"Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.472,"Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.472,"Share of employment outside the formal sector (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.473,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.473,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.473,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.474,"Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.474,"Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.474,"Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.474,"Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.474,"Share of employment outside the formal sector (35 to 44 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.475,"Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.475,"Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.475,"Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.475,"Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.475,"Share of employment outside the formal sector (35 to 44 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.476,"Share of employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.476,"Share of employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.477,"Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.477,"Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.477,"Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.477,"Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.477,"Share of employment outside the formal sector (45 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.478,"Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.478,"Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.478,"Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.478,"Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.478,"Share of employment outside the formal sector (45 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.479,"Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.479,"Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.479,"Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.479,"Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.479,"Share of employment outside the formal sector (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.480,"Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.480,"Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.480,"Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.480,"Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.480,"Share of employment outside the formal sector (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.481,"Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.481,"Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.481,"Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.481,"Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.481,"Share of employment outside the formal sector (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.482,"Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.482,"Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.482,"Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.482,"Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.482,"Share of employment outside the formal sector (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.483,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.484,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.485,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.486,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.487,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.488,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.489,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.490,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.491,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.492,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.493,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.494,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.495,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.496,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.497,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.498,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.499,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.500,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.501,"Share of employment outside the formal sector (15 to 24 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.502,"Share of employment outside the formal sector (15 to 24 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.503,"Share of employment outside the formal sector (15 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.504,"Share of employment outside the formal sector (15 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.505,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.506,"Share of employment outside the formal sector (25 to 34 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.507,"Share of employment outside the formal sector (25 to 34 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.508,"Share of employment outside the formal sector (25 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.509,"Share of employment outside the formal sector (25 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.510,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.511,"Share of employment outside the formal sector (25 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.512,"Share of employment outside the formal sector (25 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.513,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.514,"Share of employment outside the formal sector (35 to 44 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.515,"Share of employment outside the formal sector (35 to 44 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.516,"Share of employment outside the formal sector (45 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.517,"Share of employment outside the formal sector (45 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.518,"Share of employment outside the formal sector (55 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.519,"Share of employment outside the formal sector (55 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.520,"Share of employment outside the formal sector (65 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.521,"Share of employment outside the formal sector (65 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.522,"Share of employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.522,"Share of employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.522,"Share of employment outside the formal sector (15 to 24 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.523,"Share of employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.523,"Share of employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.523,"Share of employment outside the formal sector (15 to 24 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.524,"Share of employment outside the formal sector (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.524,"Share of employment outside the formal sector (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.524,"Share of employment outside the formal sector (15 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.525,"Share of employment outside the formal sector (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.525,"Share of employment outside the formal sector (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.525,"Share of employment outside the formal sector (15 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.526,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.526,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.527,"Share of employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.527,"Share of employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.527,"Share of employment outside the formal sector (25 to 34 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.528,"Share of employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.528,"Share of employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.528,"Share of employment outside the formal sector (25 to 34 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.529,"Share of employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.530,"Share of employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.530,"Share of employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.530,"Share of employment outside the formal sector (25 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.531,"Share of employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.531,"Share of employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.531,"Share of employment outside the formal sector (25 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.532,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.532,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.533,"Share of employment outside the formal sector (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.533,"Share of employment outside the formal sector (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.533,"Share of employment outside the formal sector (25 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.534,"Share of employment outside the formal sector (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.534,"Share of employment outside the formal sector (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.534,"Share of employment outside the formal sector (25 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.535,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.535,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.536,"Share of employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.536,"Share of employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.536,"Share of employment outside the formal sector (35 to 44 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.537,"Share of employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.537,"Share of employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.537,"Share of employment outside the formal sector (35 to 44 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.538,"Share of employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.539,"Share of employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.539,"Share of employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.539,"Share of employment outside the formal sector (45 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.540,"Share of employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.540,"Share of employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.540,"Share of employment outside the formal sector (45 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.541,"Share of employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.541,"Share of employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.541,"Share of employment outside the formal sector (55 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.542,"Share of employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.542,"Share of employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.542,"Share of employment outside the formal sector (55 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.543,"Share of employment outside the formal sector (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.543,"Share of employment outside the formal sector (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.543,"Share of employment outside the formal sector (65 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.544,"Share of employment outside the formal sector (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.544,"Share of employment outside the formal sector (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.544,"Share of employment outside the formal sector (65 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.545,"Share of employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.545,"Share of employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.545,"Share of employment outside the formal sector (15 to 24 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.546,"Share of employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.546,"Share of employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.546,"Share of employment outside the formal sector (15 to 24 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.547,"Share of employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.547,"Share of employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.547,"Share of employment outside the formal sector (15 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.548,"Share of employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.548,"Share of employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.548,"Share of employment outside the formal sector (15 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.549,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.550,"Share of employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.550,"Share of employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.550,"Share of employment outside the formal sector (25 to 34 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.551,"Share of employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.551,"Share of employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.551,"Share of employment outside the formal sector (25 to 34 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.552,"Share of employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.552,"Share of employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.552,"Share of employment outside the formal sector (25 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.553,"Share of employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.553,"Share of employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.553,"Share of employment outside the formal sector (25 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.554,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.555,"Share of employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.555,"Share of employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.555,"Share of employment outside the formal sector (25 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.556,"Share of employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.556,"Share of employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.556,"Share of employment outside the formal sector (25 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.557,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.558,"Share of employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.558,"Share of employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.558,"Share of employment outside the formal sector (35 to 44 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.559,"Share of employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.559,"Share of employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.559,"Share of employment outside the formal sector (35 to 44 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.560,"Share of employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.560,"Share of employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.560,"Share of employment outside the formal sector (45 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.561,"Share of employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.561,"Share of employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.561,"Share of employment outside the formal sector (45 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.562,"Share of employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.562,"Share of employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.562,"Share of employment outside the formal sector (55 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.563,"Share of employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.563,"Share of employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.563,"Share of employment outside the formal sector (55 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.564,"Share of employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.564,"Share of employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.564,"Share of employment outside the formal sector (65 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.565,"Share of employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.565,"Share of employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.565,"Share of employment outside the formal sector (65 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.566,"Share of employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.566,"Share of employment outside the formal sector (15 to 24 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.567,"Share of employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.567,"Share of employment outside the formal sector (15 to 24 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.568,"Share of employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.568,"Share of employment outside the formal sector (15 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.569,"Share of employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.569,"Share of employment outside the formal sector (15 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.570,"Share of employment outside the formal sector (15 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.571,"Share of employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.571,"Share of employment outside the formal sector (25 to 34 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.572,"Share of employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.572,"Share of employment outside the formal sector (25 to 34 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.573,"Share of employment outside the formal sector (25 to 34 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.574,"Share of employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.574,"Share of employment outside the formal sector (25 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.575,"Share of employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.575,"Share of employment outside the formal sector (25 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.576,"Share of employment outside the formal sector (25 to 54 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.577,"Share of employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.577,"Share of employment outside the formal sector (25 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.578,"Share of employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.578,"Share of employment outside the formal sector (25 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.579,"Share of employment outside the formal sector (25 years old and over, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.580,"Share of employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.580,"Share of employment outside the formal sector (35 to 44 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.581,"Share of employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.581,"Share of employment outside the formal sector (35 to 44 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.582,"Share of employment outside the formal sector (35 to 44 years old, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.583,"Share of employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.583,"Share of employment outside the formal sector (45 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.584,"Share of employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.584,"Share of employment outside the formal sector (45 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.585,"Share of employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.585,"Share of employment outside the formal sector (55 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.586,"Share of employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.586,"Share of employment outside the formal sector (55 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.587,"Share of employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.587,"Share of employment outside the formal sector (65 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.588,"Share of employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.588,"Share of employment outside the formal sector (65 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.589,"Share of employment outside the formal sector (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.590,"Share of employment outside the formal sector (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.591,"Share of employment outside the formal sector (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.592,"Share of employment outside the formal sector (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.593,"Share of employment outside the formal sector (25 to 34 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.594,"Share of employment outside the formal sector (25 to 34 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.595,"Share of employment outside the formal sector (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.596,"Share of employment outside the formal sector (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.597,"Share of employment outside the formal sector (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.598,"Share of employment outside the formal sector (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.599,"Share of employment outside the formal sector (35 to 44 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.600,"Share of employment outside the formal sector (35 to 44 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.601,"Share of employment outside the formal sector (45 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.602,"Share of employment outside the formal sector (45 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.603,"Share of employment outside the formal sector (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.604,"Share of employment outside the formal sector (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.605,"Share of employment outside the formal sector (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.606,"Share of employment outside the formal sector (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.607,Share of employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.607,Share of employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.607,Share of employment outside the formal sector (15 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.608,Share of employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.608,Share of employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.608,Share of employment outside the formal sector (15 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.609,Share of employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.609,Share of employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.609,Share of employment outside the formal sector (25 to 34 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.610,Share of employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.610,Share of employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.610,Share of employment outside the formal sector (25 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.611,Share of employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.611,Share of employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.611,Share of employment outside the formal sector (25 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.612,Share of employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.612,Share of employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.612,Share of employment outside the formal sector (35 to 44 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.613,Share of employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.613,Share of employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.613,Share of employment outside the formal sector (45 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.614,Share of employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.614,Share of employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.614,Share of employment outside the formal sector (55 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.615,Share of employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.615,Share of employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.615,Share of employment outside the formal sector (65 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.616,"Share of employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.616,"Share of employment outside the formal sector (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.617,"Share of employment outside the formal sector (15 to 24 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.617,"Share of employment outside the formal sector (15 to 24 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.618,"Share of employment outside the formal sector (15 to 24 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.618,"Share of employment outside the formal sector (15 to 24 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y15T24__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.619,"Share of employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.619,"Share of employment outside the formal sector (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.620,"Share of employment outside the formal sector (15 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.620,"Share of employment outside the formal sector (15 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.620,"Share of employment outside the formal sector (15 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.621,"Share of employment outside the formal sector (15 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.621,"Share of employment outside the formal sector (15 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.621,"Share of employment outside the formal sector (15 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE15__SEX--O__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.622,"Share of employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.622,"Share of employment outside the formal sector (25 to 34 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.623,"Share of employment outside the formal sector (25 to 34 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.623,"Share of employment outside the formal sector (25 to 34 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.624,"Share of employment outside the formal sector (25 to 34 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.624,"Share of employment outside the formal sector (25 to 34 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.624,"Share of employment outside the formal sector (25 to 34 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T34__SEX--O__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.625,"Share of employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.625,"Share of employment outside the formal sector (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.626,"Share of employment outside the formal sector (25 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.626,"Share of employment outside the formal sector (25 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.626,"Share of employment outside the formal sector (25 to 54 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.627,"Share of employment outside the formal sector (25 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.627,"Share of employment outside the formal sector (25 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.627,"Share of employment outside the formal sector (25 to 54 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y25T54__SEX--O__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.628,"Share of employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.628,"Share of employment outside the formal sector (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.629,"Share of employment outside the formal sector (25 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.629,"Share of employment outside the formal sector (25 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.629,"Share of employment outside the formal sector (25 years old and over, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.630,"Share of employment outside the formal sector (25 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.630,"Share of employment outside the formal sector (25 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.630,"Share of employment outside the formal sector (25 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE25__SEX--O__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.631,"Share of employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.631,"Share of employment outside the formal sector (35 to 44 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.632,"Share of employment outside the formal sector (35 to 44 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.632,"Share of employment outside the formal sector (35 to 44 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.632,"Share of employment outside the formal sector (35 to 44 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--O__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.633,"Share of employment outside the formal sector (35 to 44 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.633,"Share of employment outside the formal sector (35 to 44 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y35T44__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.634,"Share of employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.634,"Share of employment outside the formal sector (45 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.635,"Share of employment outside the formal sector (45 to 54 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.635,"Share of employment outside the formal sector (45 to 54 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.636,"Share of employment outside the formal sector (45 to 54 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.636,"Share of employment outside the formal sector (45 to 54 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y45T54__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.637,"Share of employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.637,"Share of employment outside the formal sector (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.638,"Share of employment outside the formal sector (55 to 64 years old, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.638,"Share of employment outside the formal sector (55 to 64 years old, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.639,"Share of employment outside the formal sector (55 to 64 years old, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.639,"Share of employment outside the formal sector (55 to 64 years old, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y55T64__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.640,"Share of employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.640,"Share of employment outside the formal sector (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.641,"Share of employment outside the formal sector (65 years old and over, Rural) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.641,"Share of employment outside the formal sector (65 years old and over, Rural) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.642,"Share of employment outside the formal sector (65 years old and over, Urban) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.642,"Share of employment outside the formal sector (65 years old and over, Urban) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.AGE--Y_GE65__SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.643,Share of employment outside the formal sector by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.643,Share of employment outside the formal sector by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.644,Share of employment outside the formal sector (Persons with disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.644,Share of employment outside the formal sector (Persons with disability) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.644,Share of employment outside the formal sector (Persons with disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.644,Share of employment outside the formal sector (Persons with disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.644,Share of employment outside the formal sector (Persons with disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.645,Share of employment outside the formal sector (Persons without disability) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.645,Share of employment outside the formal sector (Persons without disability) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.645,Share of employment outside the formal sector (Persons without disability) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.645,Share of employment outside the formal sector (Persons without disability) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.645,Share of employment outside the formal sector (Persons without disability) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.646,Share of employment outside the formal sector (Persons with disability) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.646,Share of employment outside the formal sector (Persons with disability) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.646,Share of employment outside the formal sector (Persons with disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.647,Share of employment outside the formal sector (Persons without disability) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.647,Share of employment outside the formal sector (Persons without disability) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.647,Share of employment outside the formal sector (Persons without disability) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.648,"Share of employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.648,"Share of employment outside the formal sector (Persons with disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.649,"Share of employment outside the formal sector (Persons with disability, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.649,"Share of employment outside the formal sector (Persons with disability, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.650,"Share of employment outside the formal sector (Persons with disability, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.650,"Share of employment outside the formal sector (Persons with disability, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.651,"Share of employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.651,"Share of employment outside the formal sector (Persons without disability, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.652,"Share of employment outside the formal sector (Persons without disability, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.652,"Share of employment outside the formal sector (Persons without disability, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.653,"Share of employment outside the formal sector (Persons without disability, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.653,"Share of employment outside the formal sector (Persons without disability, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.654,Share of employment outside the formal sector (Persons with disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.654,Share of employment outside the formal sector (Persons with disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.654,Share of employment outside the formal sector (Persons with disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.655,Share of employment outside the formal sector (Persons without disability) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.655,Share of employment outside the formal sector (Persons without disability) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.655,Share of employment outside the formal sector (Persons without disability) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.656,Share of employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.656,Share of employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.656,Share of employment outside the formal sector (Persons with disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.657,Share of employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.657,Share of employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.657,Share of employment outside the formal sector (Persons without disability) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.658,Share of employment outside the formal sector (Persons with disability) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.658,Share of employment outside the formal sector (Persons with disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.659,Share of employment outside the formal sector (Persons without disability) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.659,Share of employment outside the formal sector (Persons without disability) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.660,Share of employment outside the formal sector (Persons with disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.661,Share of employment outside the formal sector (Persons without disability) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.662,Share of employment outside the formal sector (Persons with disability) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.662,Share of employment outside the formal sector (Persons with disability) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.663,Share of employment outside the formal sector (Persons without disability) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.663,Share of employment outside the formal sector (Persons without disability) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.663,Share of employment outside the formal sector (Persons without disability) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.664,"Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.664,"Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.664,"Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.664,"Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.664,"Share of employment outside the formal sector (Persons with disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.665,"Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.665,"Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.665,"Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.665,"Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.665,"Share of employment outside the formal sector (Persons with disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.666,"Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.666,"Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.666,"Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.666,"Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.666,"Share of employment outside the formal sector (Persons without disability, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.667,"Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.667,"Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.667,"Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.667,"Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.667,"Share of employment outside the formal sector (Persons without disability, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.668,"Share of employment outside the formal sector (Persons with disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.668,"Share of employment outside the formal sector (Persons with disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.668,"Share of employment outside the formal sector (Persons with disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.669,"Share of employment outside the formal sector (Persons with disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.669,"Share of employment outside the formal sector (Persons with disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.669,"Share of employment outside the formal sector (Persons with disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.670,"Share of employment outside the formal sector (Persons without disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.670,"Share of employment outside the formal sector (Persons without disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.670,"Share of employment outside the formal sector (Persons without disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.671,"Share of employment outside the formal sector (Persons without disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.671,"Share of employment outside the formal sector (Persons without disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.671,"Share of employment outside the formal sector (Persons without disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.672,"Share of employment outside the formal sector (Persons without disability, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.673,"Share of employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.673,"Share of employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.673,"Share of employment outside the formal sector (Persons with disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.674,"Share of employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.674,"Share of employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.674,"Share of employment outside the formal sector (Persons with disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.675,"Share of employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.675,"Share of employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.675,"Share of employment outside the formal sector (Persons without disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.676,"Share of employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.676,"Share of employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.676,"Share of employment outside the formal sector (Persons without disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.677,"Share of employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.677,"Share of employment outside the formal sector (Persons with disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.678,"Share of employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.678,"Share of employment outside the formal sector (Persons with disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.679,"Share of employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.679,"Share of employment outside the formal sector (Persons without disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.680,"Share of employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.680,"Share of employment outside the formal sector (Persons without disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.681,"Share of employment outside the formal sector (Persons without disability, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.682,"Share of employment outside the formal sector (Persons with disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.683,"Share of employment outside the formal sector (Persons with disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.684,"Share of employment outside the formal sector (Persons without disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.685,"Share of employment outside the formal sector (Persons without disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.686,Share of employment outside the formal sector by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.687,"Share of employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.687,"Share of employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.687,"Share of employment outside the formal sector in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.688,Share of employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.688,Share of employment outside the formal sector in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.688,Share of employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.688,Share of employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.688,Share of employment outside the formal sector in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.689,"Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.689,"Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.690,Share of employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.690,Share of employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.691,"Share of employment outside the formal sector in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.692,"Share of employment outside the formal sector in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.693,Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.693,Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.694,"Share of employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.694,"Share of employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.694,"Share of employment outside the formal sector in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.695,Share of employment outside the formal sector in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.696,Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.696,Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.697,Share of employment outside the formal sector in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.698,"Share of employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.698,"Share of employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.698,"Share of employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.698,"Share of employment outside the formal sector in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.699,Share of employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.699,Share of employment outside the formal sector in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.700,"Share of employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.700,"Share of employment outside the formal sector in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.701,"Share of employment outside the formal sector in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.701,"Share of employment outside the formal sector in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.702,Share of employment outside the formal sector in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.703,"Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.703,"Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.703,"Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.704,Share of employment outside the formal sector in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.705,"Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.705,"Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.705,"Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.705,"Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.705,"Share of employment outside the formal sector in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.706,Share of employment outside the formal sector in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.706,Share of employment outside the formal sector in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.706,Share of employment outside the formal sector in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.707,"Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.707,"Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.707,"Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.707,"Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.707,"Share of employment outside the formal sector in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.708,Share of employment outside the formal sector in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.709,Share of employment outside the formal sector in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.710,Share of employment outside the formal sector in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.711,"Share of employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.711,"Share of employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.711,"Share of employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.711,"Share of employment outside the formal sector in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.712,Share of employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.712,Share of employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.712,Share of employment outside the formal sector in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.713,Share of employment outside the formal sector in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.714,Share of employment outside the formal sector by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.715,Share of employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.715,Share of employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.715,Share of employment outside the formal sector in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.716,Share of employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.716,Share of employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.716,Share of employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.716,Share of employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.716,Share of employment outside the formal sector in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.717,"Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.717,"Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.717,"Share of employment outside the formal sector in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.718,Share of employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.718,Share of employment outside the formal sector in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.719,Share of employment outside the formal sector in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.720,"Share of employment outside the formal sector in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.721,Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.721,Share of employment outside the formal sector in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.722,"Share of employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.722,"Share of employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.722,"Share of employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.722,"Share of employment outside the formal sector in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.723,Share of employment outside the formal sector in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.724,Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.724,Share of employment outside the formal sector in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.725,"Share of employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.725,"Share of employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.725,"Share of employment outside the formal sector in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.726,Share of employment outside the formal sector in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.726,Share of employment outside the formal sector in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.727,Share of employment outside the formal sector in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.728,Share of employment outside the formal sector in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.729,Share of employment outside the formal sector in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.730,"Share of employment outside the formal sector in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.731,"Share of employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.731,"Share of employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.731,"Share of employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.731,"Share of employment outside the formal sector in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.732,Share of employment outside the formal sector in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.732,Share of employment outside the formal sector in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.732,Share of employment outside the formal sector in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.733,Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.733,Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.733,Share of employment outside the formal sector in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.734,Share of employment outside the formal sector in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.734,Share of employment outside the formal sector in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.734,Share of employment outside the formal sector in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.734,Share of employment outside the formal sector in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.734,Share of employment outside the formal sector in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.735,Share of employment outside the formal sector in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.735,Share of employment outside the formal sector in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.736,Share of employment outside the formal sector in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.737,Share of employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.737,Share of employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.737,Share of employment outside the formal sector in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.738,Share of employment outside the formal sector in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.739,"Share of employment outside the formal sector in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.740,Share of employment outside the formal sector in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.741,Share of employment outside the formal sector in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.742,Share of employment outside the formal sector in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.743,Share of employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.743,Share of employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.743,Share of employment outside the formal sector in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.744,"Share of employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.744,"Share of employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.744,"Share of employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.744,"Share of employment outside the formal sector in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.745,Share of employment outside the formal sector in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.745,Share of employment outside the formal sector in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.745,Share of employment outside the formal sector in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.746,Share of employment outside the formal sector in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.747,Share of employment outside the formal sector in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.748,Share of employment outside the formal sector in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.749,Share of employment outside the formal sector,No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.750,Share of employment outside the formal sector by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.750,Share of employment outside the formal sector by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.750,Share of employment outside the formal sector by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.750,Share of employment outside the formal sector by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.750,Share of employment outside the formal sector by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.751,Share of employment outside the formal sector by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.752,Share of employment outside the formal sector by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,No hours actually worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,01-14 hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H1T14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,15-29 hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H15T29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,30-34 hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H30T34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,35-39 hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H35T39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,40-48 hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--H40T48,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,49+ hours worked,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--HGE49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.753,Share of employment outside the formal sector by Hours worked,No. of hours worked not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.HOUR_BANDS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.754,Share of employment outside the formal sector (01-14 hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H1T14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.754,Share of employment outside the formal sector (01-14 hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H1T14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.755,Share of employment outside the formal sector (15-29 hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H15T29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.755,Share of employment outside the formal sector (15-29 hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H15T29,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.756,Share of employment outside the formal sector (30-34 hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H30T34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.756,Share of employment outside the formal sector (30-34 hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H30T34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.757,Share of employment outside the formal sector (35-39 hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H35T39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.757,Share of employment outside the formal sector (35-39 hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H35T39,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.758,Share of employment outside the formal sector (40-48 hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H40T48,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.758,Share of employment outside the formal sector (40-48 hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H40T48,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.758,Share of employment outside the formal sector (40-48 hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__HOUR_BANDS--H40T48,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.759,Share of employment outside the formal sector (49+ hours worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--HGE49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.759,Share of employment outside the formal sector (49+ hours worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--HGE49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.759,Share of employment outside the formal sector (49+ hours worked) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__HOUR_BANDS--HGE49,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.760,Share of employment outside the formal sector (No hours actually worked) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--H0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.760,Share of employment outside the formal sector (No hours actually worked) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--H0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.761,Share of employment outside the formal sector (No. of hours worked not classified) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__HOUR_BANDS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.761,Share of employment outside the formal sector (No. of hours worked not classified) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__HOUR_BANDS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.762,Share of employment outside the formal sector by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.762,Share of employment outside the formal sector by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.762,Share of employment outside the formal sector by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.763,Share of employment outside the formal sector (Institutional sector not classified) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.763,Share of employment outside the formal sector (Institutional sector not classified) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.763,Share of employment outside the formal sector (Institutional sector not classified) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.764,Share of employment outside the formal sector (Private sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.764,Share of employment outside the formal sector (Private sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.764,Share of employment outside the formal sector (Private sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.765,Share of employment outside the formal sector (Public sector) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.765,Share of employment outside the formal sector (Public sector) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.765,Share of employment outside the formal sector (Public sector) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.766,Share of employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.766,Share of employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.766,Share of employment outside the formal sector (Institutional sector not classified) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.767,Share of employment outside the formal sector (Private sector) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.767,Share of employment outside the formal sector (Private sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.767,Share of employment outside the formal sector (Private sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.768,Share of employment outside the formal sector (Public sector) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.768,Share of employment outside the formal sector (Public sector) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.768,Share of employment outside the formal sector (Public sector) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.769,Share of employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.769,Share of employment outside the formal sector (Institutional sector not classified) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.770,Share of employment outside the formal sector (Private sector) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.770,Share of employment outside the formal sector (Private sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.771,Share of employment outside the formal sector (Public sector) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.771,Share of employment outside the formal sector (Public sector) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.772,Share of employment outside the formal sector (Institutional sector not classified) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.773,Share of employment outside the formal sector (Private sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.774,Share of employment outside the formal sector (Public sector) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.775,Share of employment outside the formal sector (Institutional sector not classified) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.775,Share of employment outside the formal sector (Institutional sector not classified) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.776,Share of employment outside the formal sector (Private sector) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.776,Share of employment outside the formal sector (Private sector) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.777,Share of employment outside the formal sector (Public sector) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.777,Share of employment outside the formal sector (Public sector) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.778,"Share of employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.778,"Share of employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.778,"Share of employment outside the formal sector (Institutional sector not classified, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.779,"Share of employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.779,"Share of employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.779,"Share of employment outside the formal sector (Institutional sector not classified, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.780,"Share of employment outside the formal sector (Private sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.780,"Share of employment outside the formal sector (Private sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.780,"Share of employment outside the formal sector (Private sector, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.781,"Share of employment outside the formal sector (Private sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.781,"Share of employment outside the formal sector (Private sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.781,"Share of employment outside the formal sector (Private sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.782,"Share of employment outside the formal sector (Public sector, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.782,"Share of employment outside the formal sector (Public sector, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.783,"Share of employment outside the formal sector (Public sector, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.783,"Share of employment outside the formal sector (Public sector, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.783,"Share of employment outside the formal sector (Public sector, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.784,"Share of employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.784,"Share of employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.784,"Share of employment outside the formal sector (Institutional sector not classified, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.785,"Share of employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.785,"Share of employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.785,"Share of employment outside the formal sector (Institutional sector not classified, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.786,"Share of employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.786,"Share of employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.786,"Share of employment outside the formal sector (Private sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.787,"Share of employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.787,"Share of employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.787,"Share of employment outside the formal sector (Private sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.788,"Share of employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.788,"Share of employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.788,"Share of employment outside the formal sector (Public sector, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.789,"Share of employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.789,"Share of employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.789,"Share of employment outside the formal sector (Public sector, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.790,"Share of employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.790,"Share of employment outside the formal sector (Institutional sector not classified, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.791,"Share of employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.791,"Share of employment outside the formal sector (Institutional sector not classified, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.792,"Share of employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.792,"Share of employment outside the formal sector (Private sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.793,"Share of employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.793,"Share of employment outside the formal sector (Private sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.794,"Share of employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.794,"Share of employment outside the formal sector (Public sector, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.795,"Share of employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.795,"Share of employment outside the formal sector (Public sector, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.796,"Share of employment outside the formal sector (Institutional sector not classified, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.797,"Share of employment outside the formal sector (Institutional sector not classified, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.798,"Share of employment outside the formal sector (Private sector, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.799,"Share of employment outside the formal sector (Private sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.800,"Share of employment outside the formal sector (Public sector, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.801,Share of employment outside the formal sector by Full / part-time job,Full-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.801,Share of employment outside the formal sector by Full / part-time job,Part-time,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.801,Share of employment outside the formal sector by Full / part-time job,Job time unknown,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.802,Share of employment outside the formal sector (Full-time) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.802,Share of employment outside the formal sector (Full-time) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--FULL,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.803,Share of employment outside the formal sector (Job time unknown) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.803,Share of employment outside the formal sector (Job time unknown) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.804,Share of employment outside the formal sector (Part-time) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.804,Share of employment outside the formal sector (Part-time) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__JOB_TIME--PART,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.805,Share of employment outside the formal sector by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.805,Share of employment outside the formal sector by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.805,Share of employment outside the formal sector by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.806,Share of employment outside the formal sector Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.806,Share of employment outside the formal sector Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.806,Share of employment outside the formal sector Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.807,Share of employment outside the formal sector Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.807,Share of employment outside the formal sector Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.808,Share of employment outside the formal sector Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.809,Share of employment outside the formal sector (Divorced or legally separated),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.810,Share of employment outside the formal sector (Marital status not elsewhere classified),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.810,Share of employment outside the formal sector (Marital status not elsewhere classified),No schooling,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.811,Share of employment outside the formal sector (Married),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.812,Share of employment outside the formal sector (Married / Union / Cohabiting),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.813,Share of employment outside the formal sector (Single),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.814,Share of employment outside the formal sector (Single / Widowed / Divorced),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.815,Share of employment outside the formal sector (Union / Cohabiting),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.816,Share of employment outside the formal sector (Widowed),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.817,Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.817,Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.817,Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.817,Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.817,Share of employment outside the formal sector (Divorced or legally separated) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.818,Share of employment outside the formal sector (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.819,Share of employment outside the formal sector (Married) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.819,Share of employment outside the formal sector (Married) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.819,Share of employment outside the formal sector (Married) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.819,Share of employment outside the formal sector (Married) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.819,Share of employment outside the formal sector (Married) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.820,Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.820,Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.820,Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.820,Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.820,Share of employment outside the formal sector (Married / Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.821,Share of employment outside the formal sector (Single) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.821,Share of employment outside the formal sector (Single) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.821,Share of employment outside the formal sector (Single) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.821,Share of employment outside the formal sector (Single) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.821,Share of employment outside the formal sector (Single) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.822,Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.822,Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.822,Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.822,Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.822,Share of employment outside the formal sector (Single / Widowed / Divorced) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.823,Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.823,Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.823,Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.823,Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.823,Share of employment outside the formal sector (Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.824,Share of employment outside the formal sector (Widowed) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.824,Share of employment outside the formal sector (Widowed) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.824,Share of employment outside the formal sector (Widowed) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.824,Share of employment outside the formal sector (Widowed) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.824,Share of employment outside the formal sector (Widowed) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.825,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.826,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED11,No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.827,Share of employment outside the formal sector (Married) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.828,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.829,Share of employment outside the formal sector (Single) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.830,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.831,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.832,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.833,Share of employment outside the formal sector (Divorced or legally separated) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.834,Share of employment outside the formal sector (Marital status not elsewhere classified) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.835,Share of employment outside the formal sector (Married) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.836,Share of employment outside the formal sector (Married / Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.837,Share of employment outside the formal sector (Single) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.838,Share of employment outside the formal sector (Single / Widowed / Divorced) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.839,Share of employment outside the formal sector (Union / Cohabiting) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.840,Share of employment outside the formal sector (Widowed) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.841,Share of employment outside the formal sector by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.842,Share of employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.842,Share of employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.842,Share of employment outside the formal sector by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.843,Share of employment outside the formal sector by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.843,Share of employment outside the formal sector by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.843,Share of employment outside the formal sector by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.843,Share of employment outside the formal sector by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.844,Share of employment outside the formal sector by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.845,Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.845,Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.845,Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.845,Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.845,Share of employment outside the formal sector by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.846,Share of employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.846,Share of employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.846,Share of employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.846,Share of employment outside the formal sector by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.847,Share of employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.847,Share of employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.847,Share of employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.847,Share of employment outside the formal sector by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.848,"Share of employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.848,"Share of employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.848,"Share of employment outside the formal sector by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.849,Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.849,Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.849,Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.849,Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.849,Share of employment outside the formal sector by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.850,Share of employment outside the formal sector by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.850,"Share of employment outside the formal sector by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.850,"Share of employment outside the formal sector by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.851,Share of employment outside the formal sector by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.852,Share of employment outside the formal sector by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.853,Share of employment outside the formal sector by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.854,"Share of employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.854,"Share of employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.854,"Share of employment outside the formal sector by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.855,Share of employment outside the formal sector by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.855,Share of employment outside the formal sector by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.855,Share of employment outside the formal sector by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.855,Share of employment outside the formal sector by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.856,Share of employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.856,Share of employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.856,Share of employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.856,Share of employment outside the formal sector by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.857,Share of employment outside the formal sector by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.857,Share of employment outside the formal sector by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.858,Share of employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.858,Share of employment outside the formal sector by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.859,Share of employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.859,Share of employment outside the formal sector by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.860,Share of employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.860,Share of employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.860,Share of employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.860,Share of employment outside the formal sector by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.861,Share of employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.861,Share of employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.861,Share of employment outside the formal sector by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.862,Share of employment outside the formal sector by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.862,Share of employment outside the formal sector by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.862,Share of employment outside the formal sector by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.863,Share of employment outside the formal sector by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.863,Share of employment outside the formal sector by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.863,Share of employment outside the formal sector by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.864,Share of employment outside the formal sector (Female) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.865,Share of employment outside the formal sector (Male) by Major division of ISIC Rev. 3,Not elsewhere classified (ISIC3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_X__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.866,"Share of employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.866,"Share of employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.866,"Share of employment outside the formal sector (Female) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.867,"Share of employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Agriculture, hunting and related service activities (ISIC3_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A01__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.867,"Share of employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Forestry, logging and related service activities (ISIC3_A02)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_A02__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.867,"Share of employment outside the formal sector (Male) in Agriculture, hunting, forestry, and fishing (ISIC3_A and ISIC3_B) ","Fishing, aquaculture and service activities incidental to fishing (ISIC3_B05)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_B05__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.868,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.868,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.868,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.868,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.868,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.869,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of coal and lignite; extraction of peat (ISIC3_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C10__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.869,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,"Extraction of crude petroleum and natural gas; service activities incidental to oil and gas extraction, excluding surveying (ISIC3_C11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C11__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.869,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of uranium and thorium ores (ISIC3_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C12__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.869,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Mining of metal ores (ISIC3_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C13__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.869,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC3_C) ,Other mining and quarrying (ISIC3_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_C14__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.870,"Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.870,"Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.871,"Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products and beverages (ISIC3_D15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D15__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.871,"Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC3_D16),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D16__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.872,Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.872,Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.873,Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC3_D17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D17__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.873,Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel; dressing and dyeing of fur (ISIC3_D18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D18__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.874,"Share of employment outside the formal sector (Female) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.875,"Share of employment outside the formal sector (Male) in Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19) ","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery, harness and footwear (ISIC3_D19)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D19__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.876,"Share of employment outside the formal sector (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.877,"Share of employment outside the formal sector (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC3_D20)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D20__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.878,Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.878,Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.879,Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC3_D21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D21__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.879,Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,"Publishing, printing and reproduction of recorded media (ISIC3_D22)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D22__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.880,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.880,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.880,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.881,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ","Manufacture of coke, refined petroleum products and nuclear fuel (ISIC3_D23)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D23__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.881,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of chemicals and chemical products (ISIC3_D24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.881,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals and plastic products ",Manufacture of rubber and plastics products (ISIC3_D25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D25__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.882,Share of employment outside the formal sector (Female) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.883,Share of employment outside the formal sector (Male) in Manufacture of other non-metallic mineral products (ISIC3_D26) ,Manufacture of other non-metallic mineral products (ISIC3_D26),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D26__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.884,Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.884,Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.885,Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC3_D27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D27__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.885,Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC3_D28)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D28__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.886,Share of employment outside the formal sector (Female) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.887,Share of employment outside the formal sector (Male) in Manufacture of machinery and equipment n.e.c. (ISIC3_D29) ,Manufacture of machinery and equipment n.e.c. (ISIC3_D29),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D29__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.888,"Share of employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.888,"Share of employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.888,"Share of employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.888,"Share of employment outside the formal sector (Female) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.889,"Share of employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of office, accounting and computing machinery (ISIC3_D30)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D30__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.889,"Share of employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ",Manufacture of electrical machinery and apparatus n.e.c. (ISIC3_D31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D31__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.889,"Share of employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of radio, television and communication equipment and apparatus (ISIC3_D32)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D32__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.889,"Share of employment outside the formal sector (Male) in Manufacture of electrical and optical equipment (ISIC 3 Divisions D30, D31, D32 and D33) ","Manufacture of medical, precision and optical instruments, watches and clocks (ISIC3_D33)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D33__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.890,Share of employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.890,Share of employment outside the formal sector (Female) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.891,Share of employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC3_D34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D34__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.891,Share of employment outside the formal sector (Male) in Manufactue of transport equipment (ISIC 3 Divisions D34 and D35) ,Manufacture of other transport equipment (ISIC3_D35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D35__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.892,"Share of employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.892,"Share of employment outside the formal sector (Female) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.893,"Share of employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Manufacture of furniture; manufacturing n.e.c. (ISIC3_D36),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D36__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.893,"Share of employment outside the formal sector (Male) in Manufacturing activities not elsewhere classified, recycling (ISIC 3 Division D36 and D37) ",Recycling (ISIC3_D37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_D37__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.894,"Share of employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.894,"Share of employment outside the formal sector (Female) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.895,"Share of employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E) ","Electricity, gas, steam and hot water supply (ISIC3_E40)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E40__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.895,"Share of employment outside the formal sector (Male) in Electricity, gas and water supply (ISIC3_E) ","Collection, purification and distribution of water (ISIC3_E41)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_E41__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.896,Share of employment outside the formal sector (Female) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.897,Share of employment outside the formal sector (Male) in Construction (ISIC3_F45) ,Construction (ISIC3_F45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_F45__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.898,"Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.898,"Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.898,"Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.899,"Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Sale, maintenance and repair of motor vehicles and motorcycles; retail sale of automotive fuel (ISIC3_G50)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G50__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.899,"Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Wholesale trade and commission trade, except of motor vehicles and motorcycles (ISIC3_G51)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G51__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.899,"Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G) ","Retail trade, except of motor vehicles and motorcycles; repair of personal and household goods (ISIC3_G52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_G52__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.900,Share of employment outside the formal sector (Female) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.901,Share of employment outside the formal sector (Male) in Hotels and restaurants (ISIC3_H55) ,Hotels and restaurants (ISIC3_H55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_H55__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.902,"Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.902,"Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.902,"Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.902,"Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.902,"Share of employment outside the formal sector (Female) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.903,"Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Land transport; transport via pipelines (ISIC3_I60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I60__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.903,"Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Water transport (ISIC3_I61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I61__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.903,"Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Air transport (ISIC3_I62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I62__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.903,"Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Supporting and auxiliary transport activities; activities of travel agencies (ISIC3_I63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I63__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.903,"Share of employment outside the formal sector (Male) in Transport, storage and communications (ISIC3_I) ",Post and telecommunications (ISIC3_I64),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_I64__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.904,Share of employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.904,Share of employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.904,Share of employment outside the formal sector (Female) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.905,Share of employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,"Financial intermediation, except insurance and pension funding (ISIC3_J65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J65__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.905,Share of employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,"Insurance and pension funding, except compulsory social security (ISIC3_J66)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J66__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.905,Share of employment outside the formal sector (Male) in Financial intermediation (ISIC3_J) ,Activities auxiliary to financial intermediation (ISIC3_J67),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_J67__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.906,"Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.906,"Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.906,"Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.906,"Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.906,"Share of employment outside the formal sector (Female) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.907,"Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Real estate activities (ISIC3_K70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K70__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.907,"Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Renting of machinery and equipment without operator and of personal and household goods (ISIC3_K71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K71__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.907,"Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Computer and related activities (ISIC3_K72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K72__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.907,"Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Research and development (ISIC3_K73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K73__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.907,"Share of employment outside the formal sector (Male) in Real estate, renting and business activities (ISIC3_K) ",Other business activities (ISIC3_K74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_K74__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.908,Share of employment outside the formal sector (Female) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.909,Share of employment outside the formal sector (Male) in Public administration and defence; compulsory social security (ISIC3_L75) ,Public administration and defence; compulsory social security (ISIC3_L75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_L75__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.910,Share of employment outside the formal sector (Female) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.911,Share of employment outside the formal sector (Male) in Education (ISIC3_M80) ,Education (ISIC3_M80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_M80__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.912,Share of employment outside the formal sector (Female) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.913,Share of employment outside the formal sector (Male) in Health and social work (ISIC3_N85) ,Health and social work (ISIC3_N85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_N85__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.914,"Share of employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.914,"Share of employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.914,"Share of employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.914,"Share of employment outside the formal sector (Female) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.915,"Share of employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ","Sewage and refuse disposal, sanitation and similar activities (ISIC3_O90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O90__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.915,"Share of employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ",Activities of membership organizations n.e.c. (ISIC3_O91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O91__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.915,"Share of employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ","Recreational, cultural and sporting activities (ISIC3_O92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O92__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.915,"Share of employment outside the formal sector (Male) in Other community, social and personal service activities (ISIC3_O) ",Other service activities (ISIC3_O93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_O93__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.916,Share of employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.916,Share of employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.916,Share of employment outside the formal sector (Female) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.917,Share of employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Activities of private households as employers of domestic staff (ISIC3_P95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P95__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.917,Share of employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated goods-producing activities of private households for own use (ISIC3_P96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P96__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.917,Share of employment outside the formal sector (Male) in Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P) ,Undifferentiated service-producing activities of private households for own use (ISIC3_P97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_P97__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.918,Share of employment outside the formal sector (Female) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.919,Share of employment outside the formal sector (Male) in Extraterritorial organizations and bodies (ISIC3_Q99) ,Extraterritorial organizations and bodies (ISIC3_Q99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC3_Q99__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.920,Share of employment outside the formal sector (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.921,Share of employment outside the formal sector (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_X__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.922,Share of employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.922,Share of employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.922,Share of employment outside the formal sector (Female) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.923,Share of employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.923,Share of employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Forestry and logging (ISIC4_A02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A02__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.923,Share of employment outside the formal sector (Male) in Agriculture; forestry and fishing (ISIC4_A) ,Fishing and aquaculture (ISIC4_A03),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A03__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.924,Share of employment outside the formal sector (Sex other than Female or Male) in Agriculture; forestry and fishing (ISIC4_A) ,"Crop and animal production, hunting and related service activities (ISIC4_A01)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_A01__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.925,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.925,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.925,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.925,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.925,Share of employment outside the formal sector (Female) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.926,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining of coal and lignite (ISIC4_B05),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B05__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.926,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Extraction of crude petroleum and natural gas (ISIC4_B06),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B06__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.926,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining of metal ores (ISIC4_B07),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B07__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.926,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Other mining and quarrying (ISIC4_B08),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B08__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.926,Share of employment outside the formal sector (Male) in Mining and quarrying (ISIC4_B) ,Mining support service activities (ISIC4_B09),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_B09__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.927,"Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.927,"Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.927,"Share of employment outside the formal sector (Female) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.928,"Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of food products (ISIC4_C10),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C10__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.928,"Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of beverages (ISIC4_C11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C11__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.928,"Share of employment outside the formal sector (Male) in Manufacture of food products, beverages and tobacco ",Manufacture of tobacco products (ISIC4_C12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C12__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.929,Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.929,Share of employment outside the formal sector (Female) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.930,Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of textiles (ISIC4_C13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C13__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.930,Share of employment outside the formal sector (Male) in Manufacture of textiles and textile products ,Manufacture of wearing apparel (ISIC4_C14),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C14__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.931,Share of employment outside the formal sector (Female) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.932,Share of employment outside the formal sector (Male) in Manufacture of leather and related products (ISIC4_C15) ,Manufacture of leather and related products (ISIC4_C15),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C15__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.933,"Share of employment outside the formal sector (Female) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.934,"Share of employment outside the formal sector (Male) in Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16) ","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials (ISIC4_C16)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C16__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.935,Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.935,Share of employment outside the formal sector (Female) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.936,Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Manufacture of paper and paper products (ISIC4_C17),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C17__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.936,Share of employment outside the formal sector (Male) in Manufacture of paper and paper products and printing and publishing ,Printing and reproduction of recorded media (ISIC4_C18),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C18__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.937,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.937,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.937,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.937,"Share of employment outside the formal sector (Female) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.938,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of coke and refined petroleum products (ISIC4_C19),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C19__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.938,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of chemicals and chemical products (ISIC4_C20),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C20__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.938,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ","Manufacture of pharmaceuticals, medicinal chemical and botanical products (ISIC4_C21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C21__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.938,"Share of employment outside the formal sector (Male) in Manufacture of energy products, chemicals, pharmaceuticals and plastic products ",Manufacture of rubber and plastics products (ISIC4_C22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C22__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.939,Share of employment outside the formal sector (Female) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.940,Share of employment outside the formal sector (Male) in Manufacture of other non-metallic mineral products (ISIC4_C23) ,Manufacture of other non-metallic mineral products (ISIC4_C23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C23__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.941,Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.941,Share of employment outside the formal sector (Female) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.942,Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,Manufacture of basic metals (ISIC4_C24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.942,Share of employment outside the formal sector (Male) in Manufacture of basic metals and fabricated metal products ,"Manufacture of fabricated metal products, except machinery and equipment (ISIC4_C25)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C25__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.943,"Share of employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.943,"Share of employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.943,"Share of employment outside the formal sector (Female) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.944,"Share of employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ","Manufacture of computer, electronic and optical products (ISIC4_C26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C26__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.944,"Share of employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of electrical equipment (ISIC4_C27),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C27__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.944,"Share of employment outside the formal sector (Male) in Manufacture of machinery and equipment (ISIC 4 Divisions D26, D27 and D28) ",Manufacture of machinery and equipment n.e.c. (ISIC4_C28),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C28__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.945,Share of employment outside the formal sector (Female) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.945,Share of employment outside the formal sector (Female) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.946,Share of employment outside the formal sector (Male) in Manufacture of transport equipment ,"Manufacture of motor vehicles, trailers and semi-trailers (ISIC4_C29)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C29__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.946,Share of employment outside the formal sector (Male) in Manufacture of transport equipment ,Manufacture of other transport equipment (ISIC4_C30),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C30__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.947,Share of employment outside the formal sector (Female) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.948,Share of employment outside the formal sector (Male) in Manufacture of furniture (ISIC4_C31) ,Manufacture of furniture (ISIC4_C31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C31__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.949,Share of employment outside the formal sector (Female) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.950,Share of employment outside the formal sector (Male) in Other manufacturing (ISIC4_C32) ,Other manufacturing (ISIC4_C32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C32__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.951,Share of employment outside the formal sector (Female) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.952,Share of employment outside the formal sector (Male) in Repair and installation of machinery and equipment (ISIC4_C33) ,Repair and installation of machinery and equipment (ISIC4_C33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_C33__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.953,"Share of employment outside the formal sector (Female) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.954,"Share of employment outside the formal sector (Male) in Electricity, gas, steam and air conditioning supply (ISIC4_D35) ","Electricity, gas, steam and air conditioning supply (ISIC4_D35)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_D35__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.955,"Share of employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.955,"Share of employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.955,"Share of employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.955,"Share of employment outside the formal sector (Female) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.956,"Share of employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Water collection, treatment and supply (ISIC4_E36)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E36__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.956,"Share of employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Sewerage (ISIC4_E37),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E37__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.956,"Share of employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ","Waste collection, treatment and disposal activities; materials recovery (ISIC4_E38)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E38__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.956,"Share of employment outside the formal sector (Male) in Water supply; sewerage, waste management and remediation activities (ISIC4_E) ",Remediation activities and other waste management services (ISIC4_E39),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_E39__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.957,Share of employment outside the formal sector (Female) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.957,Share of employment outside the formal sector (Female) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.957,Share of employment outside the formal sector (Female) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.958,Share of employment outside the formal sector (Male) in Construction (ISIC4_F) ,Construction of buildings (ISIC4_F41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F41__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.958,Share of employment outside the formal sector (Male) in Construction (ISIC4_F) ,Civil engineering (ISIC4_F42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F42__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.958,Share of employment outside the formal sector (Male) in Construction (ISIC4_F) ,Specialized construction activities (ISIC4_F43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_F43__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.959,Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.959,Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.959,Share of employment outside the formal sector (Female) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.960,Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,Wholesale and retail trade and repair of motor vehicles and motorcycles (ISIC4_G45),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G45__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.960,Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Wholesale trade, except of motor vehicles and motorcycles (ISIC4_G46)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G46__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.960,Share of employment outside the formal sector (Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.961,Share of employment outside the formal sector (Sex other than Female or Male) in Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G) ,"Retail trade, except of motor vehicles and motorcycles (ISIC4_G47)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_G47__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.962,Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.962,Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.962,Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.962,Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.962,Share of employment outside the formal sector (Female) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.963,Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Land transport and transport via pipelines (ISIC4_H49),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H49__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.963,Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Water transport (ISIC4_H50),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H50__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.963,Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Air transport (ISIC4_H51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H51__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.963,Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Warehousing and support activities for transportation (ISIC4_H52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H52__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.963,Share of employment outside the formal sector (Male) in Transportation and storage (ISIC4_H) ,Postal and courier activities (ISIC4_H53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_H53__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.964,Share of employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.964,Share of employment outside the formal sector (Female) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.965,Share of employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I) ,Accommodation (ISIC4_I55),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I55__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.965,Share of employment outside the formal sector (Male) in Accommodation and food service activities (ISIC4_I) ,Food and beverage service activities (ISIC4_I56),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_I56__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.966,Share of employment outside the formal sector (Female) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Publishing activities (ISIC4_J58),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J58__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,"Motion picture, video and television programme production, sound recording and music publishing activities (ISIC4_J59)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J59__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Programming and broadcasting activities (ISIC4_J60),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J60__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Telecommunications (ISIC4_J61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J61__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,"Computer programming, consultancy and related activities (ISIC4_J62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J62__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.967,Share of employment outside the formal sector (Male) in Information and communication (ISIC4_J) ,Information service activities (ISIC4_J63),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_J63__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.968,Share of employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.968,Share of employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.968,Share of employment outside the formal sector (Female) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.969,Share of employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,"Financial service activities, except insurance and pension funding (ISIC4_K64)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K64__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.969,Share of employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,"Insurance, reinsurance and pension funding, except compulsory social security (ISIC4_K65)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K65__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.969,Share of employment outside the formal sector (Male) in Financial and insurance activities (ISIC4_K) ,Activities auxiliary to financial service and insurance activities (ISIC4_K66),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_K66__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.970,Share of employment outside the formal sector (Female) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.971,Share of employment outside the formal sector (Male) in Real estate activities (ISIC4_L68) ,Real estate activities (ISIC4_L68),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_L68__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.972,"Share of employment outside the formal sector (Female) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Legal and accounting activities (ISIC4_M69),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M69__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Activities of head offices; management consultancy activities (ISIC4_M70),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M70__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Architectural and engineering activities; technical testing and analysis (ISIC4_M71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M71__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Scientific research and development (ISIC4_M72),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M72__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Advertising and market research (ISIC4_M73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M73__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ","Other professional, scientific and technical activities (ISIC4_M74)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M74__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.973,"Share of employment outside the formal sector (Male) in Professional, scientific and technical activities (ISIC4_M) ",Veterinary activities (ISIC4_M75),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_M75__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.974,Share of employment outside the formal sector (Female) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Rental and leasing activities (ISIC4_N77),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N77__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Employment activities (ISIC4_N78),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N78__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,"Travel agency, tour operator, reservation service and related activities (ISIC4_N79)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N79__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Security and investigation activities (ISIC4_N80),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N80__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,Services to buildings and landscape activities (ISIC4_N81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N81__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.975,Share of employment outside the formal sector (Male) in Administrative and support service activities (ISIC4_N) ,"Office administrative, office support and other business support activities (ISIC4_N82)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_N82__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.976,Share of employment outside the formal sector (Female) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.977,Share of employment outside the formal sector (Male) in Public administration and defence; compulsory social security (ISIC4_O84) ,Public administration and defence; compulsory social security (ISIC4_O84),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_O84__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.978,Share of employment outside the formal sector (Female) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.979,Share of employment outside the formal sector (Male) in Education (ISIC4_P85) ,Education (ISIC4_P85),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_P85__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.980,Share of employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.980,Share of employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.980,Share of employment outside the formal sector (Female) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.981,Share of employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Human health activities (ISIC4_Q86),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q86__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.981,Share of employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Residential care activities (ISIC4_Q87),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q87__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.981,Share of employment outside the formal sector (Male) in Human health and social work activities (ISIC4_Q) ,Social work activities without accommodation (ISIC4_Q88),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_Q88__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.982,"Share of employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.982,"Share of employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.982,"Share of employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.982,"Share of employment outside the formal sector (Female) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.983,"Share of employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ","Creative, arts and entertainment activities (ISIC4_R90)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R90__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.983,"Share of employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ","Libraries, archives, museums and other cultural activities (ISIC4_R91)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R91__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.983,"Share of employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ",Gambling and betting activities (ISIC4_R92),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R92__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.983,"Share of employment outside the formal sector (Male) in Arts, entertainment and recreation (ISIC4_R) ",Sports activities and amusement and recreation activities (ISIC4_R93),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_R93__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.984,Share of employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.984,Share of employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.984,Share of employment outside the formal sector (Female) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.985,Share of employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Activities of membership organizations (ISIC4_S94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S94__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.985,Share of employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Repair of computers and personal and household goods (ISIC4_S95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S95__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.985,Share of employment outside the formal sector (Male) in Other service activities (ISIC4_S) ,Other personal service activities (ISIC4_S96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_S96__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.986,Share of employment outside the formal sector (Female) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.987,Share of employment outside the formal sector (Male) in Activities of households as employers of domestic personnel (ISIC4_T97) ,Activities of households as employers of domestic personnel (ISIC4_T97),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T97__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.988,Share of employment outside the formal sector (Female) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.989,Share of employment outside the formal sector (Male) in Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98) ,Undifferentiated goods- and services-producing activities of private households for own use (ISIC4_T98),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_T98__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.990,Share of employment outside the formal sector (Female) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.991,Share of employment outside the formal sector (Male) in Activities of extraterritorial organizations and bodies (ISIC4_U99) ,Activities of extraterritorial organizations and bodies (ISIC4_U99),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.ECONOMIC_ACTIVITY--ISIC4_U99__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.992,Share of employment outside the formal sector (Female),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.993,Share of employment outside the formal sector (Male),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.994,Share of employment outside the formal sector (Sex other than Female or Male),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.995,Share of employment outside the formal sector (Female) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.995,Share of employment outside the formal sector (Female) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.995,Share of employment outside the formal sector (Female) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.995,Share of employment outside the formal sector (Female) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.995,Share of employment outside the formal sector (Female) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.996,Share of employment outside the formal sector (Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.996,Share of employment outside the formal sector (Male) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.996,Share of employment outside the formal sector (Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.996,Share of employment outside the formal sector (Male) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.996,Share of employment outside the formal sector (Male) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.997,Share of employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.997,Share of employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.997,Share of employment outside the formal sector (Sex other than Female or Male) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_INT,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.998,Share of employment outside the formal sector (Female) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.999,Share of employment outside the formal sector (Male) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1000,Share of employment outside the formal sector (Female) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1001,Share of employment outside the formal sector (Male) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1002,Share of employment outside the formal sector (Sex other than Female or Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1003,Share of employment outside the formal sector (Female) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1003,Share of employment outside the formal sector (Female) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1003,Share of employment outside the formal sector (Female) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1004,Share of employment outside the formal sector (Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1004,Share of employment outside the formal sector (Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1004,Share of employment outside the formal sector (Male) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1005,Share of employment outside the formal sector (Sex other than Female or Male) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1005,Share of employment outside the formal sector (Sex other than Female or Male) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1006,Share of employment outside the formal sector (Female) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1006,Share of employment outside the formal sector (Female) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1006,Share of employment outside the formal sector (Female) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1007,Share of employment outside the formal sector (Male) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1007,Share of employment outside the formal sector (Male) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1007,Share of employment outside the formal sector (Male) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1008,Share of employment outside the formal sector (Sex other than Female or Male) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1009,Share of employment outside the formal sector (Female) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1009,Share of employment outside the formal sector (Female) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1010,Share of employment outside the formal sector (Male) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1010,Share of employment outside the formal sector (Male) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1011,Share of employment outside the formal sector (Sex other than Female or Male) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1012,Share of employment outside the formal sector (Female) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1013,Share of employment outside the formal sector (Male) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1014,"Share of employment outside the formal sector (Female, Divorced or legally separated)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1015,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1015,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1016,"Share of employment outside the formal sector (Female, Married)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1017,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1018,"Share of employment outside the formal sector (Female, Single)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1019,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1020,"Share of employment outside the formal sector (Female, Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1021,"Share of employment outside the formal sector (Female, Widowed)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1022,"Share of employment outside the formal sector (Male, Divorced or legally separated)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1023,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1023,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified)",No schooling,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1024,"Share of employment outside the formal sector (Male, Married)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1025,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1026,"Share of employment outside the formal sector (Male, Single)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1027,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1028,"Share of employment outside the formal sector (Male, Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1029,"Share of employment outside the formal sector (Male, Widowed)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1030,"Share of employment outside the formal sector (Sex other than Female or Male, Married)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1031,"Share of employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1032,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1032,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1032,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1032,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1032,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1033,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1034,"Share of employment outside the formal sector (Female, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1034,"Share of employment outside the formal sector (Female, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1034,"Share of employment outside the formal sector (Female, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1034,"Share of employment outside the formal sector (Female, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1034,"Share of employment outside the formal sector (Female, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1035,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1035,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1035,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1035,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1035,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1036,"Share of employment outside the formal sector (Female, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1036,"Share of employment outside the formal sector (Female, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1036,"Share of employment outside the formal sector (Female, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1036,"Share of employment outside the formal sector (Female, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1036,"Share of employment outside the formal sector (Female, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1037,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1037,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1037,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1037,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1037,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1038,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1038,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1038,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1038,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1038,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1039,"Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1039,"Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1039,"Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1039,"Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1039,"Share of employment outside the formal sector (Female, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1040,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1040,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1040,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1040,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1040,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1041,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1042,"Share of employment outside the formal sector (Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1042,"Share of employment outside the formal sector (Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1042,"Share of employment outside the formal sector (Male, Married) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1042,"Share of employment outside the formal sector (Male, Married) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1042,"Share of employment outside the formal sector (Male, Married) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1043,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1043,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1043,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1043,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1043,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1044,"Share of employment outside the formal sector (Male, Single) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1044,"Share of employment outside the formal sector (Male, Single) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1044,"Share of employment outside the formal sector (Male, Single) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1044,"Share of employment outside the formal sector (Male, Single) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1044,"Share of employment outside the formal sector (Male, Single) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1045,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1045,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1045,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1045,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1045,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1046,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1046,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1046,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1046,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1046,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1047,"Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1047,"Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1047,"Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1047,"Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1047,"Share of employment outside the formal sector (Male, Widowed) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1048,"Share of employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1048,"Share of employment outside the formal sector (Sex other than Female or Male, Married) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1049,"Share of employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1049,"Share of employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1050,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1051,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1052,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1053,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1054,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1055,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1056,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1057,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1058,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1059,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1060,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1061,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1062,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1063,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1064,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1065,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1066,"Share of employment outside the formal sector (Female, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1067,"Share of employment outside the formal sector (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1068,"Share of employment outside the formal sector (Female, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1069,"Share of employment outside the formal sector (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1070,"Share of employment outside the formal sector (Female, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1071,"Share of employment outside the formal sector (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1072,"Share of employment outside the formal sector (Female, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1073,"Share of employment outside the formal sector (Female, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1074,"Share of employment outside the formal sector (Male, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1075,"Share of employment outside the formal sector (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1076,"Share of employment outside the formal sector (Male, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1077,"Share of employment outside the formal sector (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1078,"Share of employment outside the formal sector (Male, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1079,"Share of employment outside the formal sector (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1080,"Share of employment outside the formal sector (Male, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1081,"Share of employment outside the formal sector (Male, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1082,"Share of employment outside the formal sector (Sex other than Female or Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1083,"Share of employment outside the formal sector (Sex other than Female or Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1084,Share of employment outside the formal sector (Female) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1085,Share of employment outside the formal sector (Male) by Categories of occupations according to ISCO08,Occupations not elsewhere classified (ISCO08_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_X__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1086,Share of employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1086,Share of employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1086,Share of employment outside the formal sector (Female) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1087,Share of employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),Commissioned armed forces officers (ISCO08_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_01__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1087,Share of employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),Non-commissioned armed forces officers (ISCO08_02),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_02__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1087,Share of employment outside the formal sector (Male) by Categories of armed forces occupations (ISCO08_0),"Armed forces occupations, other ranks (ISCO08_03)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_03__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1088,Share of employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1088,Share of employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1088,Share of employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1088,Share of employment outside the formal sector (Female) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1089,Share of employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),"Chief executives, senior officials and legislators (ISCO08_11)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_11__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1089,Share of employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),Administrative and commercial managers (ISCO08_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_12__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1089,Share of employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),Production and specialised services managers (ISCO08_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_13__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1089,Share of employment outside the formal sector (Male) by Categories of managerial occupations (ISCO08_1),"Hospitality, retail and other services managers (ISCO08_14)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_14__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1090,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Science and engineering professionals (ISCO08_21),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_21__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Health professionals (ISCO08_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_22__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Teaching professionals (ISCO08_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_23__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Business and administration professionals (ISCO08_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),Information and communications technology professionals (ISCO08_25),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_25__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1091,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO08_2),"Legal, social and cultural professionals (ISCO08_26)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_26__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1092,Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1092,Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1092,Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1092,Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1092,Share of employment outside the formal sector (Female) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1093,Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Science and engineering associate professionals (ISCO08_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_31__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1093,Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Health associate professionals (ISCO08_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_32__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1093,Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Business and administration associate professionals (ISCO08_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_33__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1093,Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),"Legal, social, cultural and related associate professionals (ISCO08_34)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_34__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1093,Share of employment outside the formal sector (Male) by Categories of technicians' and associate professionals' occupations (ISCO08_3),Information and communications technicians (ISCO08_35),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_35__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1094,Share of employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1094,Share of employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1094,Share of employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1094,Share of employment outside the formal sector (Female) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1095,Share of employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),General and keyboard clerks (ISCO08_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_41__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1095,Share of employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Customer services clerks (ISCO08_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_42__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1095,Share of employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Numerical and material recording clerks (ISCO08_43),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_43__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1095,Share of employment outside the formal sector (Male) by Categories of clerical support workers' occupations (ISCO08_4),Other clerical support workers (ISCO08_44),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_44__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1096,Share of employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1096,Share of employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1096,Share of employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1096,Share of employment outside the formal sector (Female) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1097,Share of employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Personal service workers (ISCO08_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_51__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1097,Share of employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Sales workers (ISCO08_52),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_52__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1097,Share of employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Personal care workers (ISCO08_53),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_53__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1097,Share of employment outside the formal sector (Male) by Service and sales workers' occupations (ISCO08_5),Protective services workers (ISCO08_54),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_54__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1098,"Share of employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1098,"Share of employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1098,"Share of employment outside the formal sector (Female) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1099,"Share of employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)",Market-oriented skilled agricultural workers (ISCO08_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_61__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1099,"Share of employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Market-oriented skilled forestry, fishery and hunting workers (ISCO08_62)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_62__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1099,"Share of employment outside the formal sector (Male) by Skilled agricultural, forestry and fishery workers' occupations (ISCO08_6)","Subsistence farmers, fishers, hunters and gatherers (ISCO08_63)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_63__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1100,Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1100,Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1100,Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1100,Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1100,Share of employment outside the formal sector (Female) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1101,Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Building and related trades workers, excluding electricians (ISCO08_71)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_71__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1101,Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Metal, machinery and related trades workers (ISCO08_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_72__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1101,Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),Handicraft and printing workers (ISCO08_73),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_73__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1101,Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),Electrical and electronic trades workers (ISCO08_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_74__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1101,Share of employment outside the formal sector (Male) by Craft and related trades workers' occupations (ISCO08_7),"Food processing, wood working, garment and other craft and related trades workers (ISCO08_75)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_75__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1102,Share of employment outside the formal sector (Female) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1102,"Share of employment outside the formal sector (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1102,"Share of employment outside the formal sector (Female) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1103,Share of employment outside the formal sector (Male) by Plant and machine operators' and assemblers' occupations (ISCO08_8),Stationary plant and machine operators (ISCO08_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_81__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1103,"Share of employment outside the formal sector (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Assemblers (ISCO08_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_82__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1103,"Share of employment outside the formal sector (Male) by Plant and machine operators, and assemblers (ISCO08_8)",Drivers and mobile plant operators (ISCO08_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_83__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1104,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Cleaners and helpers (ISCO08_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_91__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),"Agricultural, forestry and fishery labourers (ISCO08_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_92__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),"Labourers in mining, construction, manufacturing and transport (ISCO08_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_93__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Food preparation assistants (ISCO08_94),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_94__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Street and related sales and service workers (ISCO08_95),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_95__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1105,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO08_9),Refuse workers and other elementary workers (ISCO08_96),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO08_96__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1106,Share of employment outside the formal sector (Female) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1107,Share of employment outside the formal sector (Male) by Categories of occupations according to ISCO88,Not elsewhere classified (ISCO88_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_X__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1108,Share of employment outside the formal sector (Female) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1109,Share of employment outside the formal sector (Male) by Armed forces occupations (ISCO88_01),Armed forces (ISCO88_01),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_01__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1110,"Share of employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1110,"Share of employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1110,"Share of employment outside the formal sector (Female) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1111,"Share of employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Legislators and senior officials (ISCO88_11),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_11__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1111,"Share of employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",Corporate managers (ISCO88_12),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_12__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1111,"Share of employment outside the formal sector (Male) by Categories of legislators, senior officials and managers' occupations (ISCO88_1)",General managers (ISCO88_13),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_13__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1112,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1112,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1112,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1112,Share of employment outside the formal sector (Female) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1113,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),"Physical, mathematical and engineering science professionals (ISCO88_21)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_21__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1113,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Life science and health professionals (ISCO88_22),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_22__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1113,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Teaching professionals (ISCO88_23),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_23__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1113,Share of employment outside the formal sector (Male) by Categories of professional occupations (ISCO88_2),Other professionals (ISCO88_24),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_24__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1114,Share of employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1114,Share of employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1114,Share of employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1114,Share of employment outside the formal sector (Female) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1115,Share of employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Physical and engineering science associate professionals (ISCO88_31),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_31__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1115,Share of employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Life science and health associate professionals (ISCO88_32),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_32__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1115,Share of employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Teaching associate professionals (ISCO88_33),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_33__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1115,Share of employment outside the formal sector (Male) by Categories of technicians and associate professionals' occupations (ISCO88_3),Other associate professionals (ISCO88_34),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_34__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1116,Share of employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1116,Share of employment outside the formal sector (Female) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1117,Share of employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4),Office clerks (ISCO88_41),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_41__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1117,Share of employment outside the formal sector (Male) by Categories of clerical occupations (ISCO88_4),Customer services clerks (ISCO88_42),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_42__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1118,Share of employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1118,Share of employment outside the formal sector (Female) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1119,Share of employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),Personal and protective services workers (ISCO88_51),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_51__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1119,Share of employment outside the formal sector (Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1120,Share of employment outside the formal sector (Sex other than Female or Male) by Categories of service workers' and shop and market sales workers' occupations (ISCO88_5),"Models, salespersons and demonstrators (ISCO88_52)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_52__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1121,Share of employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1121,Share of employment outside the formal sector (Female) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1122,Share of employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1122,Share of employment outside the formal sector (Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Subsistence agricultural and fishery workers (ISCO88_62),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_62__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1123,Share of employment outside the formal sector (Sex other than Female or Male) by Categories of skilled agricultural and fishery workers' occupations (ISCO88_6),Market-oriented skilled agricultural and fishery workers (ISCO88_61),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_61__SEX--O,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1124,Share of employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1124,Share of employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1124,Share of employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1124,Share of employment outside the formal sector (Female) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1125,Share of employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Extraction and building trades workers (ISCO88_71),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_71__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1125,Share of employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Metal, machinery and related trades workers (ISCO88_72)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_72__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1125,Share of employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),"Precision, handicraft, printing and related trades workers (ISCO88_73)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_73__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1125,Share of employment outside the formal sector (Male) by Categories of caft and related trades workers' occupations (ISCO88_7),Other craft and related trades workers (ISCO88_74),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_74__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1126,Share of employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1126,Share of employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1126,Share of employment outside the formal sector (Female) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1127,Share of employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Stationary-plant and related operators (ISCO88_81),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_81__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1127,Share of employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Machine operators and assemblers (ISCO88_82),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_82__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1127,Share of employment outside the formal sector (Male) by Categories of plant and machine operators and assemblers' occupations (ISCO88_8),Drivers and mobile-plant operators (ISCO88_83),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_83__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1128,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1128,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1128,Share of employment outside the formal sector (Female) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93__SEX--F,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1129,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),Sales and services elementary occupations (ISCO88_91),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_91__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1129,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),"Agricultural, fishery and related labourers (ISCO88_92)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_92__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1129,Share of employment outside the formal sector (Male) by Categories of elementary occupations (ISCO88_9),"Labourers in mining, construction, manufacturing and transport (ISCO88_93)",,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.OCCUPATION--ISCO88_93__SEX--M,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Employees (ICSE93_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Employers (ICSE93_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Own-account workers (ICSE93_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Members of producers' cooperatives (ICSE93_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Contributing family workers (ICSE93_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1130,Share of employment outside the formal sector by Employment status catagories according to ICSE93,Workers not classifiable by status (ICSE93_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1131,Share of employment outside the formal sector by Employment status,Employees,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1131,Share of employment outside the formal sector by Employment status,Self-employed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1131,Share of employment outside the formal sector by Employment status,Emplyment status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1132,Share of employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1132,Share of employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1132,Share of employment outside the formal sector (Contributing family workers (ICSE93_5)) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_5,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1133,Share of employment outside the formal sector (Employees) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1133,Share of employment outside the formal sector (Employees) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1134,Share of employment outside the formal sector (Employees (ICSE93_1)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1134,Share of employment outside the formal sector (Employees (ICSE93_1)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1135,Share of employment outside the formal sector (Employers (ICSE93_2)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1135,Share of employment outside the formal sector (Employers (ICSE93_2)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1136,Share of employment outside the formal sector (Emplyment status not elsewhere classified) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1136,Share of employment outside the formal sector (Emplyment status not elsewhere classified) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1137,Share of employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1137,Share of employment outside the formal sector (Members of producers' cooperatives (ICSE93_4)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1138,Share of employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1138,Share of employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1138,Share of employment outside the formal sector (Own-account workers (ICSE93_3)) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--ICSE93_3,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1139,Share of employment outside the formal sector (Self-employed) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1139,Share of employment outside the formal sector (Self-employed) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1139,Share of employment outside the formal sector (Self-employed) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1140,Share of employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1140,Share of employment outside the formal sector (Workers not classifiable by status (ICSE93_6)) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1141,Share of employment outside the formal sector by Urbanization (Rural/Urban),Rural,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1141,Share of employment outside the formal sector by Urbanization (Rural/Urban),Urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1141,Share of employment outside the formal sector by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1142,Share of employment outside the formal sector (Not classsified as rural or urban) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1142,Share of employment outside the formal sector (Not classsified as rural or urban) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1143,Share of employment outside the formal sector (Rural) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1143,Share of employment outside the formal sector (Rural) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1144,Share of employment outside the formal sector (Urban) by Disability status,Persons with disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1144,Share of employment outside the formal sector (Urban) by Disability status,Persons without disability,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1145,"Share of employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1145,"Share of employment outside the formal sector (Not classsified as rural or urban, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1146,"Share of employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1146,"Share of employment outside the formal sector (Not classsified as rural or urban, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1147,"Share of employment outside the formal sector (Rural, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1147,"Share of employment outside the formal sector (Rural, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1148,"Share of employment outside the formal sector (Rural, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1148,"Share of employment outside the formal sector (Rural, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1149,"Share of employment outside the formal sector (Urban, Persons with disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1149,"Share of employment outside the formal sector (Urban, Persons with disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1150,"Share of employment outside the formal sector (Urban, Persons without disability) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1150,"Share of employment outside the formal sector (Urban, Persons without disability) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1151,Share of employment outside the formal sector (Rural),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1152,Share of employment outside the formal sector (Urban),No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1153,Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1153,Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1153,Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1153,Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1153,Share of employment outside the formal sector (Not classsified as rural or urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1154,Share of employment outside the formal sector (Rural) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1154,Share of employment outside the formal sector (Rural) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1154,Share of employment outside the formal sector (Rural) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1154,Share of employment outside the formal sector (Rural) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1154,Share of employment outside the formal sector (Rural) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1155,Share of employment outside the formal sector (Urban) by Aggregate education levels,Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1155,Share of employment outside the formal sector (Urban) by Aggregate education levels,Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1155,Share of employment outside the formal sector (Urban) by Aggregate education levels,Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1155,Share of employment outside the formal sector (Urban) by Aggregate education levels,Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1155,Share of employment outside the formal sector (Urban) by Aggregate education levels,Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1156,Share of employment outside the formal sector (Not classsified as rural or urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1157,Share of employment outside the formal sector (Rural) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1158,Share of employment outside the formal sector (Urban) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1159,Share of employment outside the formal sector (Rural) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1160,Share of employment outside the formal sector (Urban) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1161,Share of employment outside the formal sector (Not classsified as rural or urban) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1162,Share of employment outside the formal sector (Rural) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1162,Share of employment outside the formal sector (Rural) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1162,Share of employment outside the formal sector (Rural) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1163,Share of employment outside the formal sector (Urban) by Institutional sector,Private sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1163,Share of employment outside the formal sector (Urban) by Institutional sector,Public sector,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1163,Share of employment outside the formal sector (Urban) by Institutional sector,Institutional sector not classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1164,"Share of employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1164,"Share of employment outside the formal sector (Not classsified as rural or urban, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1165,"Share of employment outside the formal sector (Rural, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1165,"Share of employment outside the formal sector (Rural, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1166,"Share of employment outside the formal sector (Rural, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1166,"Share of employment outside the formal sector (Rural, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1167,"Share of employment outside the formal sector (Rural, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1167,"Share of employment outside the formal sector (Rural, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1168,"Share of employment outside the formal sector (Urban, Institutional sector not classified) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1168,"Share of employment outside the formal sector (Urban, Institutional sector not classified) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1169,"Share of employment outside the formal sector (Urban, Private sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1169,"Share of employment outside the formal sector (Urban, Private sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1170,"Share of employment outside the formal sector (Urban, Public sector) by Sex",Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1170,"Share of employment outside the formal sector (Urban, Public sector) by Sex",Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1171,Share of employment outside the formal sector (Not classsified as rural or urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1171,Share of employment outside the formal sector (Not classsified as rural or urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1172,Share of employment outside the formal sector (Rural) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1172,Share of employment outside the formal sector (Rural) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1172,Share of employment outside the formal sector (Rural) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1173,Share of employment outside the formal sector (Urban) by Marital Status,Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1173,Share of employment outside the formal sector (Urban) by Marital Status,Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1173,Share of employment outside the formal sector (Urban) by Marital Status,Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1174,Share of employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1174,Share of employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1174,Share of employment outside the formal sector (Not classsified as rural or urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1175,Share of employment outside the formal sector (Rural) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1175,Share of employment outside the formal sector (Rural) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1175,Share of employment outside the formal sector (Rural) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1176,Share of employment outside the formal sector (Urban) Single / Widowed / Divorced,Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1176,Share of employment outside the formal sector (Urban) Single / Widowed / Divorced,Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1176,Share of employment outside the formal sector (Urban) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1177,Share of employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1177,Share of employment outside the formal sector (Not classsified as rural or urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1178,Share of employment outside the formal sector (Rural) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1178,Share of employment outside the formal sector (Rural) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1179,Share of employment outside the formal sector (Urban) Married / Union / Cohabiting,Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1179,Share of employment outside the formal sector (Urban) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1180,Share of employment outside the formal sector (Rural) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1181,Share of employment outside the formal sector (Urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1182,Share of employment outside the formal sector (Not classsified as rural or urban) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1182,Share of employment outside the formal sector (Not classsified as rural or urban) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1183,Share of employment outside the formal sector (Rural) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1183,Share of employment outside the formal sector (Rural) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1183,Share of employment outside the formal sector (Rural) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1184,Share of employment outside the formal sector (Urban) by Sex,Female,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1184,Share of employment outside the formal sector (Urban) by Sex,Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1184,Share of employment outside the formal sector (Urban) by Sex,Sex other than Female or Male,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1185,"Share of employment outside the formal sector (Rural, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1186,"Share of employment outside the formal sector (Rural, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1187,"Share of employment outside the formal sector (Rural, Sex other than Female or Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1188,"Share of employment outside the formal sector (Urban, Female)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1189,"Share of employment outside the formal sector (Urban, Male)",No schooling,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1190,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1190,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1190,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1190,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1191,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1191,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1191,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1191,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1192,"Share of employment outside the formal sector (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1192,"Share of employment outside the formal sector (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1192,"Share of employment outside the formal sector (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1192,"Share of employment outside the formal sector (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1192,"Share of employment outside the formal sector (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1193,"Share of employment outside the formal sector (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1193,"Share of employment outside the formal sector (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1193,"Share of employment outside the formal sector (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1193,"Share of employment outside the formal sector (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1193,"Share of employment outside the formal sector (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1194,"Share of employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1194,"Share of employment outside the formal sector (Rural, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1195,"Share of employment outside the formal sector (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1195,"Share of employment outside the formal sector (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1195,"Share of employment outside the formal sector (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1195,"Share of employment outside the formal sector (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1195,"Share of employment outside the formal sector (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1196,"Share of employment outside the formal sector (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1196,"Share of employment outside the formal sector (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1196,"Share of employment outside the formal sector (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1196,"Share of employment outside the formal sector (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1196,"Share of employment outside the formal sector (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1197,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1198,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1199,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1200,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1201,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1202,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1203,"Share of employment outside the formal sector (Rural, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1204,"Share of employment outside the formal sector (Rural, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1205,"Share of employment outside the formal sector (Rural, Sex other than Female or Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1206,"Share of employment outside the formal sector (Urban, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1207,"Share of employment outside the formal sector (Urban, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1208,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1208,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1209,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1209,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1210,"Share of employment outside the formal sector (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1210,"Share of employment outside the formal sector (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1210,"Share of employment outside the formal sector (Rural, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1211,"Share of employment outside the formal sector (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1211,"Share of employment outside the formal sector (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1211,"Share of employment outside the formal sector (Rural, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1212,"Share of employment outside the formal sector (Rural, Sex other than Female or Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1213,"Share of employment outside the formal sector (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1213,"Share of employment outside the formal sector (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1213,"Share of employment outside the formal sector (Urban, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1214,"Share of employment outside the formal sector (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1214,"Share of employment outside the formal sector (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1214,"Share of employment outside the formal sector (Urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1215,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1215,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1215,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1216,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1216,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1216,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1217,"Share of employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1217,"Share of employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1217,"Share of employment outside the formal sector (Rural, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1218,"Share of employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1218,"Share of employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1218,"Share of employment outside the formal sector (Rural, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1219,"Share of employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1219,"Share of employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1219,"Share of employment outside the formal sector (Urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1220,"Share of employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Single,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1220,"Share of employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1220,"Share of employment outside the formal sector (Urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1221,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1221,"Share of employment outside the formal sector (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1222,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1222,"Share of employment outside the formal sector (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1223,"Share of employment outside the formal sector (Rural, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1223,"Share of employment outside the formal sector (Rural, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1224,"Share of employment outside the formal sector (Rural, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1224,"Share of employment outside the formal sector (Rural, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1225,"Share of employment outside the formal sector (Rural, Sex other than Female or Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--O__URBANISATION--R__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1226,"Share of employment outside the formal sector (Urban, Female) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1226,"Share of employment outside the formal sector (Urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1227,"Share of employment outside the formal sector (Urban, Male) Married / Union / Cohabiting",Married,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1227,"Share of employment outside the formal sector (Urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1228,"Share of employment outside the formal sector (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1229,"Share of employment outside the formal sector (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1230,"Share of employment outside the formal sector (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PIFL_RT.1231,"Share of employment outside the formal sector (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_EMP_PIFL_RT,ilo/EMP_PIFL_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,EMP_PIFL_RT,Share of employment outside the formal sector +EMP_PTER_RT.001,Part-time employment rate,Total,,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.002,Part-time employment rate,Total,DROP,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.003,Part-time employment rate,Female,DROP,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.003,Part-time employment rate,Male,DROP,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.004,Part-time employment rate by Sex,Female,,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.SEX--F,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.004,Part-time employment rate by Sex,Male,,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.SEX--M,EMP_PTER_RT,Part-time employment rate +EMP_PTER_RT.004,Part-time employment rate by Sex,Sex other than Female or Male,,,ILO_EMP_PTER_RT,ilo/EMP_PTER_RT.SEX--O,EMP_PTER_RT,Part-time employment rate +EMP_STAT_NB.001,"Employment, statistical approach",Total,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB,EMP_STAT_NB,"Employment, statistical approach" +EMP_STAT_NB.002,"Employment, statistical approach by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.002,"Employment, statistical approach by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.002,"Employment, statistical approach by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.003,"Employment, statistical approach by Job/Skill match",Education matches job,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.003,"Employment, statistical approach by Job/Skill match",Overeducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.003,"Employment, statistical approach by Job/Skill match",Undereducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.004,"Employment, statistical approach (Education matches job) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.004,"Employment, statistical approach (Education matches job) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.004,"Employment, statistical approach (Education matches job) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.005,"Employment, statistical approach (Overeducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.005,"Employment, statistical approach (Overeducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.005,"Employment, statistical approach (Overeducated) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.006,"Employment, statistical approach (Undereducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.006,"Employment, statistical approach (Undereducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.006,"Employment, statistical approach (Undereducated) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.007,"Employment, statistical approach by Employment status",Employees,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.007,"Employment, statistical approach by Employment status",Self-employed,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.008,"Employment, statistical approach (Employees) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.008,"Employment, statistical approach (Employees) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.008,"Employment, statistical approach (Employees) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.009,"Employment, statistical approach (Self-employed) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.009,"Employment, statistical approach (Self-employed) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.009,"Employment, statistical approach (Self-employed) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.010,"Employment, statistical approach (Employees) by Job/Skill match",Education matches job,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.010,"Employment, statistical approach (Employees) by Job/Skill match",Overeducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.010,"Employment, statistical approach (Employees) by Job/Skill match",Undereducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.011,"Employment, statistical approach (Self-employed) by Job/Skill match",Education matches job,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.011,"Employment, statistical approach (Self-employed) by Job/Skill match",Overeducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.011,"Employment, statistical approach (Self-employed) by Job/Skill match",Undereducated,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.012,"Employment, statistical approach (Employees, Education matches job) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.012,"Employment, statistical approach (Employees, Education matches job) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.013,"Employment, statistical approach (Employees, Overeducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.013,"Employment, statistical approach (Employees, Overeducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.013,"Employment, statistical approach (Employees, Overeducated) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.014,"Employment, statistical approach (Employees, Undereducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.014,"Employment, statistical approach (Employees, Undereducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.015,"Employment, statistical approach (Self-employed, Education matches job) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.015,"Employment, statistical approach (Self-employed, Education matches job) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.015,"Employment, statistical approach (Self-employed, Education matches job) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_MATCH,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.016,"Employment, statistical approach (Self-employed, Overeducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.016,"Employment, statistical approach (Self-employed, Overeducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.016,"Employment, statistical approach (Self-employed, Overeducated) by Sex",Sex other than Female or Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--O__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_OVER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.017,"Employment, statistical approach (Self-employed, Undereducated) by Sex",Female,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_STAT_NB.017,"Employment, statistical approach (Self-employed, Undereducated) by Sex",Male,,,ILO_EMP_STAT_NB,ilo/EMP_STAT_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF__SKILL_MATCH--EDU_SKILL_UNDER,EMP_STAT_NB,"Employment, statistical approach " +EMP_TEMP_NB.001,Employment,Total,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.002,Employment,Private sector,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.002,Employment,Public sector,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.002,Employment,Institutional sector not classified,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_X__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,Construction,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,"Manufacturing; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MANEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.003,Employment by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.004,Employment by Economic sector,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.004,Employment by Economic sector,Non-agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.004,Employment by Economic sector,Industry,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.004,Employment by Economic sector,Services,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.004,Employment by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_0__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_1__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_2__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_3__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_4__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,Construction (ISIC2_5),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_5__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_6__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_7__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_8__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.005,Employment by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_9__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.006,Employment by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.007,Employment by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.008,Employment by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.009,Employment,Female,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.009,Employment,Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.009,Employment,Sex other than Female or Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.010,Employment (Institutional sector not classified),Female,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_X__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.010,Employment (Institutional sector not classified),Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_X__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.011,Employment (Private sector),Female,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.011,Employment (Private sector),Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PRI__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.012,Employment (Public sector),Female,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.012,Employment (Public sector),Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--INS_SECTOR_PUB__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,Construction,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,"Manufacturing; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MANEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.013,Employment (Female) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,Construction,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,Manufacturing,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,"Manufacturing; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MANEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.014,Employment (Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.015,Employment (Sex other than Female or Male) by Aggregate economic activities,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.015,Employment (Sex other than Female or Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.015,Employment (Sex other than Female or Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.016,Employment (Female) by Economic sector,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.016,Employment (Female) by Economic sector,Non-agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.016,Employment (Female) by Economic sector,Industry,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.016,Employment (Female) by Economic sector,Services,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.016,Employment (Female) by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.017,Employment (Male) by Economic sector,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.017,Employment (Male) by Economic sector,Non-agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.017,Employment (Male) by Economic sector,Industry,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.017,Employment (Male) by Economic sector,Services,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.017,Employment (Male) by Economic sector,Not classified by economic sector,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.018,Employment (Sex other than Female or Male) by Economic sector,Agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.018,Employment (Sex other than Female or Male) by Economic sector,Non-agriculture,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.018,Employment (Sex other than Female or Male) by Economic sector,Industry,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_IND__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.018,Employment (Sex other than Female or Male) by Economic sector,Services,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_SECTOR_SER__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_0__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_1__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_2__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_3__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_4__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,Construction (ISIC2_5),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_5__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_6__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_7__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_8__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.019,Employment (Female) by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_9__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_0__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_1__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_2__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_3__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_4__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,Construction (ISIC2_5),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_5__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_6__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_7__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_8__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.020,Employment (Male) by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC2_9__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.021,Employment (Female) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.022,Employment (Male) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC3_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.023,Employment (Female) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_B__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_C__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_D__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_E__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_F__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_I__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_J__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_K__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_L__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_M__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_N__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_P__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_Q__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_R__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_S__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_U__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.024,Employment (Male) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.025,Employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_A__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.025,Employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_G__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.025,Employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_H__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.025,Employment (Sex other than Female or Male) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ISIC4_O__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.026,Employment (Female) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.027,Employment (Male) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_X__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.028,Employment,Total,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.029,Employment,Female,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.029,Employment,Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +EMP_TEMP_NB.029,Employment,Sex other than Female or Male,DROP,,ILO_EMP_TEMP_NB,ilo/EMP_TEMP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,EMP_TEMP_NB,Employment +GDP_205U_NB.001,Output per worker (ILO modelled estimates calculated using data on GDP in constant 2010 US dollars),Total,,,ILO_GDP_205U_NB,ilo/GDP_205U_NB,GDP_205U_NB,Output per worker (ILO modelled estimates calculated using data on GDP in constant 2010 US dollars) +GDP_211P_NB.001,Output per worker (ILO modelled estimates calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity),Total,,,ILO_GDP_211P_NB,ilo/GDP_211P_NB,GDP_211P_NB,Output per worker (ILO modelled estimates calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity) +GDP_2HRW_NB.001,"Output per hour worked (ILO modelled estimates as of Nov. 2023, calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity)",Total,,,ILO_GDP_2HRW_NB,ilo/GDP_2HRW_NB,GDP_2HRW_NB,"Output per hour worked (ILO modelled estimates as of Nov. 2023, calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity)" +GED_2LFP_NB.001,Prime-age labour force of couple households with children under 6 (ILO modelled estimates),Total,,,ILO_GED_2LFP_NB,ilo/GED_2LFP_NB,GED_2LFP_NB,Prime-age labour force of couple households with children under 6 (ILO modelled estimates) +GED_2LFP_NB.002,Prime-age labour force of couple households with children under 6 (ILO modelled estimates) by Sex,Female,,,ILO_GED_2LFP_NB,ilo/GED_2LFP_NB.SEX--F,GED_2LFP_NB,Prime-age labour force of couple households with children under 6 (ILO modelled estimates) +GED_2LFP_NB.002,Prime-age labour force of couple households with children under 6 (ILO modelled estimates) by Sex,Male,,,ILO_GED_2LFP_NB,ilo/GED_2LFP_NB.SEX--M,GED_2LFP_NB,Prime-age labour force of couple households with children under 6 (ILO modelled estimates) +GED_2LFP_RT.001,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates),Total,,,ILO_GED_2LFP_RT,ilo/GED_2LFP_RT,GED_2LFP_RT,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) +GED_2LFP_RT.002,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) by Sex,Female,,,ILO_GED_2LFP_RT,ilo/GED_2LFP_RT.SEX--F,GED_2LFP_RT,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) +GED_2LFP_RT.002,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) by Sex,Male,,,ILO_GED_2LFP_RT,ilo/GED_2LFP_RT.SEX--M,GED_2LFP_RT,Prime-age labour force participation rate of couple households with children under age 6 (ILO modelled estimates) +HOW_2EMP_NB.001,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_HOW_2EMP_NB,ilo/HOW_2EMP_NB,HOW_2EMP_NB,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023)" +HOW_2EMP_NB.002,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_HOW_2EMP_NB,ilo/HOW_2EMP_NB.SEX--F,HOW_2EMP_NB,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023) " +HOW_2EMP_NB.002,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_HOW_2EMP_NB,ilo/HOW_2EMP_NB.SEX--M,HOW_2EMP_NB,"Mean weekly hours actually worked per employed person(ILO modelled estimates, as of Nov. 2023) " +HOW_2TDP_RT.001,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates),Total,,,ILO_HOW_2TDP_RT,ilo/HOW_2TDP_RT,HOW_2TDP_RT,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) +HOW_2TDP_RT.002,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) by Sex,Female,,,ILO_HOW_2TDP_RT,ilo/HOW_2TDP_RT.SEX--F,HOW_2TDP_RT,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) +HOW_2TDP_RT.002,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) by Sex,Male,,,ILO_HOW_2TDP_RT,ilo/HOW_2TDP_RT.SEX--M,HOW_2TDP_RT,Ratio of total weekly hours worked to population aged 15-64 (ILO modelled estimates) +HOW_2TOT_NB.001,Total weekly hours worked of employed persons (ILO modelled estimates),Total,,,ILO_HOW_2TOT_NB,ilo/HOW_2TOT_NB,HOW_2TOT_NB,Total weekly hours worked of employed persons (ILO modelled estimates) +HOW_2TOT_NB.002,Total weekly hours worked of employed persons (ILO modelled estimates) by Sex,Female,,,ILO_HOW_2TOT_NB,ilo/HOW_2TOT_NB.SEX--F,HOW_2TOT_NB,Total weekly hours worked of employed persons (ILO modelled estimates) +HOW_2TOT_NB.002,Total weekly hours worked of employed persons (ILO modelled estimates) by Sex,Male,,,ILO_HOW_2TOT_NB,ilo/HOW_2TOT_NB.SEX--M,HOW_2TOT_NB,Total weekly hours worked of employed persons (ILO modelled estimates) +ILR_CBCT_RT.001,Collective bargaining coverage rate,Total,,,ILO_ILR_CBCT_RT,ilo/ILR_CBCT_RT,ILR_CBCT_RT,Collective bargaining coverage rate +ILR_TUMT_RT.001,Trade union density rate,Total,,,ILO_ILR_TUMT_RT,ilo/ILR_TUMT_RT,ILR_TUMT_RT,Trade union density rate +INJ_DAYS_NB.001,Days lost due to cases of occupational injury with temporary incapacity for work,Total,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,Agriculture,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,Construction,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,Manufacturing,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.002,Days lost due to cases of occupational injury with temporary incapacity for work by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_0,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_1,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_2,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_3,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_4,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_5,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_6,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_7,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_8,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.003,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_9,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_A,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_B,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_C,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_D,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_E,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_F,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_G,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_H,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_I,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_J,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_K,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_L,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_M,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_N,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_O,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_P,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.004,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_Q,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_A,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_B,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_C,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_D,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_E,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_F,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_G,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_H,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_I,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_J,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_K,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_L,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_M,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_N,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_O,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_P,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_Q,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_R,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_S,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_U,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.005,Days lost due to cases of occupational injury with temporary incapacity for work by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_X,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.006,Days lost due to cases of occupational injury with temporary incapacity for work by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.ECONOMIC_ACTIVITY--_X,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.007,Days lost due to cases of occupational injury with temporary incapacity for work by Migratory status,Migrants,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.MIGRATORY_STATUS--MS_MIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.007,Days lost due to cases of occupational injury with temporary incapacity for work by Migratory status,Non-migrant,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.MIGRATORY_STATUS--MS_NOMIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.007,Days lost due to cases of occupational injury with temporary incapacity for work by Migratory status,Unknown migratory status,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.MIGRATORY_STATUS--_X,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.008,Days lost due to cases of occupational injury with temporary incapacity for work (Migrants) by Sex,Female,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.008,Days lost due to cases of occupational injury with temporary incapacity for work (Migrants) by Sex,Male,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.009,Days lost due to cases of occupational injury with temporary incapacity for work (Non-migrant) by Sex,Female,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.009,Days lost due to cases of occupational injury with temporary incapacity for work (Non-migrant) by Sex,Male,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.010,Days lost due to cases of occupational injury with temporary incapacity for work (Unknown migratory status) by Sex,Female,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--F__MIGRATORY_STATUS--_X,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.010,Days lost due to cases of occupational injury with temporary incapacity for work (Unknown migratory status) by Sex,Male,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--M__MIGRATORY_STATUS--_X,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.011,Days lost due to cases of occupational injury with temporary incapacity for work by Sex,Female,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--F,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_DAYS_NB.011,Days lost due to cases of occupational injury with temporary incapacity for work by Sex,Male,,,ILO_INJ_DAYS_NB,ilo/INJ_DAYS_NB.SEX--M,INJ_DAYS_NB,Days lost due to cases of occupational injury with temporary incapacity for work +INJ_FATL_NB.001,Cases of fatal occupational injury,Total,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,Agriculture,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,Construction,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,Manufacturing,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.002,Cases of fatal occupational injury by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_0,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_1,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_2,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_3,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_4,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_5,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_6,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_7,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_8,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.003,Cases of fatal occupational injury by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC2_9,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_A,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_B,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_C,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_D,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_E,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_F,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_G,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_H,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_I,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_J,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_K,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_L,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_M,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_N,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_O,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_P,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.004,Cases of fatal occupational injury by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC3_Q,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_A,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_B,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_C,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_D,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_E,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_F,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_G,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_H,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_I,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_J,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_K,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_L,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_M,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_N,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_O,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_P,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_Q,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_R,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_S,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_U,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.005,Cases of fatal occupational injury by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--ISIC4_X,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.006,Cases of fatal occupational injury by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.ECONOMIC_ACTIVITY--_X,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.007,Cases of fatal occupational injury by Migratory status,Migrants,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.007,Cases of fatal occupational injury by Migratory status,Non-migrant,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.007,Cases of fatal occupational injury by Migratory status,Unknown migratory status,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.MIGRATORY_STATUS--_X,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.008,Cases of fatal occupational injury (Migrants) by Sex,Female,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.008,Cases of fatal occupational injury (Migrants) by Sex,Male,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.009,Cases of fatal occupational injury (Non-migrant) by Sex,Female,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.009,Cases of fatal occupational injury (Non-migrant) by Sex,Male,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.010,Cases of fatal occupational injury (Unknown migratory status) by Sex,Female,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--F__MIGRATORY_STATUS--_X,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.010,Cases of fatal occupational injury (Unknown migratory status) by Sex,Male,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--M__MIGRATORY_STATUS--_X,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.011,Cases of fatal occupational injury by Sex,Female,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--F,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_NB.011,Cases of fatal occupational injury by Sex,Male,,,ILO_INJ_FATL_NB,ilo/INJ_FATL_NB.SEX--M,INJ_FATL_NB,Cases of fatal occupational injury +INJ_FATL_RT.001,Fatal occupational injuries per 100'000 workers,Total,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100'000 workers by Aggregate economic activities,Agriculture,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100'000 workers by Aggregate economic activities,Construction,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100'000 workers by Aggregate economic activities,Manufacturing,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.002,Fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_0,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_1,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_2,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_3,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_4,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_5,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_6,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_7,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_8,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.003,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC2_9,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_A,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_B,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_C,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_D,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_E,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_F,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_G,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_H,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_I,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_J,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_K,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_L,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_M,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_N,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_O,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_P,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.004,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC3_Q,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_A,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_B,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_C,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_D,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_E,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_F,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_G,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_H,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_I,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_J,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_K,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_L,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_M,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_N,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_O,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_P,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_Q,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_R,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_S,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_U,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.005,Fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--ISIC4_X,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.006,Fatal occupational injuries per 100'000 workers by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.ECONOMIC_ACTIVITY--_X,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.007,Fatal occupational injuries per 100'000 workers by Migratory status,Migrants,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.007,Fatal occupational injuries per 100'000 workers by Migratory status,Non-migrant,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.007,Fatal occupational injuries per 100'000 workers by Migratory status,Unknown migratory status,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.MIGRATORY_STATUS--_X,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.008,Fatal occupational injuries per 100\'000 workers (Migrants) by Sex,Female,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.008,Fatal occupational injuries per 100\'000 workers (Migrants) by Sex,Male,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.009,Fatal occupational injuries per 100\'000 workers (Non-migrant) by Sex,Female,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.009,Fatal occupational injuries per 100\'000 workers (Non-migrant) by Sex,Male,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.010,Fatal occupational injuries per 100\'000 workers (Unknown migratory status) by Sex,Female,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--F__MIGRATORY_STATUS--_X,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.010,Fatal occupational injuries per 100\'000 workers (Unknown migratory status) by Sex,Male,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--M__MIGRATORY_STATUS--_X,INJ_FATL_RT,Fatal occupational injuries per 100\'000 workers +INJ_FATL_RT.011,Fatal occupational injuries per 100'000 workers by Sex,Female,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--F,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_FATL_RT.011,Fatal occupational injuries per 100'000 workers by Sex,Male,,,ILO_INJ_FATL_RT,ilo/INJ_FATL_RT.SEX--M,INJ_FATL_RT,Fatal occupational injuries per 100'000 workers +INJ_NFTL_NB.001,Cases of non-fatal occupational injury,Total,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,Agriculture,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,Construction,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,Manufacturing,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.002,Cases of non-fatal occupational injury by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.003,Cases of non-fatal occupational injury by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.004,Cases of non-fatal occupational injury by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.005,Cases of non-fatal occupational injury by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.006,Cases of non-fatal occupational injury by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.007,Cases of non-fatal occupational injury by Migratory status,Migrants,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.007,Cases of non-fatal occupational injury by Migratory status,Non-migrant,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.007,Cases of non-fatal occupational injury by Migratory status,Unknown migratory status,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.008,Cases of non-fatal occupational injury (Migrants) by Type of occupational injuries,Permanent incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.008,Cases of non-fatal occupational injury (Migrants) by Type of occupational injuries,Temporary incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.009,Cases of non-fatal occupational injury (Non-migrant) by Type of occupational injuries,Permanent incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.009,Cases of non-fatal occupational injury (Non-migrant) by Type of occupational injuries,Temporary incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.010,Cases of non-fatal occupational injury (Unknown migratory status) by Type of occupational injuries,Permanent incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.010,Cases of non-fatal occupational injury (Unknown migratory status) by Type of occupational injuries,Temporary incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.011,"Cases of non-fatal occupational injury (Migrants, Permanent incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.011,"Cases of non-fatal occupational injury (Migrants, Permanent incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.012,"Cases of non-fatal occupational injury (Migrants, Temporary incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.012,"Cases of non-fatal occupational injury (Migrants, Temporary incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.013,"Cases of non-fatal occupational injury (Non-migrant, Permanent incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.013,"Cases of non-fatal occupational injury (Non-migrant, Permanent incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.014,"Cases of non-fatal occupational injury (Non-migrant, Temporary incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.014,"Cases of non-fatal occupational injury (Non-migrant, Temporary incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.015,"Cases of non-fatal occupational injury (Unknown migratory status, Permanent incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.015,"Cases of non-fatal occupational injury (Unknown migratory status, Permanent incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.016,"Cases of non-fatal occupational injury (Unknown migratory status, Temporary incapacity) by Sex",Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.016,"Cases of non-fatal occupational injury (Unknown migratory status, Temporary incapacity) by Sex",Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.017,Cases of non-fatal occupational injury (Migrants) by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.017,Cases of non-fatal occupational injury (Migrants) by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.018,Cases of non-fatal occupational injury (Non-migrant) by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.018,Cases of non-fatal occupational injury (Non-migrant) by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.019,Cases of non-fatal occupational injury (Unknown migratory status) by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--F__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.019,Cases of non-fatal occupational injury (Unknown migratory status) by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--M__MIGRATORY_STATUS--_X,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.020,Cases of non-fatal occupational injury by Type of occupational injuries,Permanent incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.020,Cases of non-fatal occupational injury by Type of occupational injuries,Temporary incapacity,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,Agriculture,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,Construction,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,Manufacturing,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.021,Cases of non-fatal occupational injury (Permanent incapacity) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,Agriculture,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,Construction,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,Manufacturing,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.022,Cases of non-fatal occupational injury (Temporary incapacity) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.023,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_0__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_1__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_2__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_3__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_4__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_5__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_6__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_7__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_8__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.024,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC2_9__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.025,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.026,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.027,Cases of non-fatal occupational injury (Permanent incapacity) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_A__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_B__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_C__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_D__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_E__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_F__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_G__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_H__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_I__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_J__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_K__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_L__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_M__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_N__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_O__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_P__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_R__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_S__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_U__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.028,Cases of non-fatal occupational injury (Temporary incapacity) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--ISIC4_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.029,Cases of non-fatal occupational injury (Permanent incapacity) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.030,Cases of non-fatal occupational injury (Temporary incapacity) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.ECONOMIC_ACTIVITY--_X__OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.031,Cases of non-fatal occupational injury (Permanent incapacity) by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--F,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.031,Cases of non-fatal occupational injury (Permanent incapacity) by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_PRM__SEX--M,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.032,Cases of non-fatal occupational injury (Temporary incapacity) by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--F,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.032,Cases of non-fatal occupational injury (Temporary incapacity) by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.OCCUPATIONAL_INJURIES--INJ_INCAPACITY_TMP__SEX--M,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.033,Cases of non-fatal occupational injury by Sex,Female,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--F,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.033,Cases of non-fatal occupational injury by Sex,Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--M,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_NB.033,Cases of non-fatal occupational injury by Sex,Sex other than Female or Male,,,ILO_INJ_NFTL_NB,ilo/INJ_NFTL_NB.SEX--O,INJ_NFTL_NB,Cases of non-fatal occupational injury +INJ_NFTL_RT.001,Non-fatal occupational injuries per 100'000 workers,Total,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100'000 workers by Aggregate economic activities,Agriculture,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100'000 workers by Aggregate economic activities,Construction,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100'000 workers by Aggregate economic activities,Manufacturing,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Manufacturing; Electricity, gas and water supply",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MANEL,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.002,Non-fatal occupational injuries per 100\'000 workers by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_0,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_1,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_2,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_3,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_4,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_5,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_6,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_7,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_8,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.003,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC2_9,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_A,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_B,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_C,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_D,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_E,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_F,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_G,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_H,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_I,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_J,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_K,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_L,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_M,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_N,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_O,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_P,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.004,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC3_Q,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_A,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_B,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_C,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_D,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_E,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_F,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_G,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_H,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_I,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_J,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_K,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_L,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_M,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_N,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_O,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_P,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_Q,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100\'000 workers by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_R,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_S,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_U,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.005,Non-fatal occupational injuries per 100'000 workers by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--ISIC4_X,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.006,Non-fatal occupational injuries per 100'000 workers by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.ECONOMIC_ACTIVITY--_X,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.007,Non-fatal occupational injuries per 100'000 workers by Migratory status,Migrants,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.007,Non-fatal occupational injuries per 100'000 workers by Migratory status,Non-migrant,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.007,Non-fatal occupational injuries per 100'000 workers by Migratory status,Unknown migratory status,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.MIGRATORY_STATUS--_X,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.008,Non-fatal occupational injuries per 100\'000 workers (Migrants) by Sex,Female,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.008,Non-fatal occupational injuries per 100\'000 workers (Migrants) by Sex,Male,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.009,Non-fatal occupational injuries per 100\'000 workers (Non-migrant) by Sex,Female,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.009,Non-fatal occupational injuries per 100\'000 workers (Non-migrant) by Sex,Male,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.010,Non-fatal occupational injuries per 100\'000 workers (Unknown migratory status) by Sex,Female,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--F__MIGRATORY_STATUS--_X,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.010,Non-fatal occupational injuries per 100\'000 workers (Unknown migratory status) by Sex,Male,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--M__MIGRATORY_STATUS--_X,INJ_NFTL_RT,Non-fatal occupational injuries per 100\'000 workers +INJ_NFTL_RT.011,Non-fatal occupational injuries per 100'000 workers by Sex,Female,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--F,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +INJ_NFTL_RT.011,Non-fatal occupational injuries per 100'000 workers by Sex,Male,,,ILO_INJ_NFTL_RT,ilo/INJ_NFTL_RT.SEX--M,INJ_NFTL_RT,Non-fatal occupational injuries per 100'000 workers +LAC_4HRL_NB.001,Mean nominal hourly labour cost per employee by Currency,Local currency,DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.001,Mean nominal hourly labour cost per employee by Currency,2017 PPP $,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.001,Mean nominal hourly labour cost per employee by Currency,U.S. dollars,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.002,Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities,Construction,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.002,Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities,Manufacturing,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.002,Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.002,Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.002,Mean nominal hourly labour cost per employee (2017 PPP $) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.003,Mean nominal hourly labour cost per employee (Local currency) by Aggregate economic activities,Construction,DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.003,Mean nominal hourly labour cost per employee (Local currency) by Aggregate economic activities,Manufacturing,DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.003,Mean nominal hourly labour cost per employee (Local currency) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.003,Mean nominal hourly labour cost per employee (Local currency) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.003,Mean nominal hourly labour cost per employee (Local currency) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.004,Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities,Construction,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.004,Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities,Manufacturing,,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.004,Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.004,Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.004,Mean nominal hourly labour cost per employee (U.S. dollars) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_A__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_B__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_C__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_D__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_E__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_F__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_G__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_H__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_I__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_J__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_K__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_L__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_M__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_N__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_O__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_P__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.005,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_A__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_B__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_C__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_D__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_E__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Construction (ISIC3_F),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_F__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_G__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_H__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_I__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_J__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_K__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_L__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Education (ISIC3_M),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_M__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_N__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_O__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_P__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.006,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_A__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_B__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_C__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_D__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_E__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_F__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_G__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_H__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_I__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_J__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_K__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_L__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_M__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_N__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_O__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_P__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.007,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC3_Q__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_A__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_B__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_C__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_D__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_E__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_F__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_G__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_H__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_I__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_J__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_K__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_L__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_M__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_N__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_O__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_P__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_R__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_S__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_U__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.008,Mean nominal hourly labour cost per employee (2017 PPP $) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_X__CURRENCY--CUR_TYPE_PPP,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_A__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_B__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_C__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_D__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_E__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Construction (ISIC4_F),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_F__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_G__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_H__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_I__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_J__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_K__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_L__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_M__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_N__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_O__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Education (ISIC4_P),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_P__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_R__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_S__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_U__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.009,Mean nominal hourly labour cost per employee (Local currency) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),DROP,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_X__CURRENCY--CUR_TYPE_LCU,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_A__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_B__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_C__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_D__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_E__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_F__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_G__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_H__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_I__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_J__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_K__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_L__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_M__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_N__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_O__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_P__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_Q__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_R__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_S__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_U__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAC_4HRL_NB.010,Mean nominal hourly labour cost per employee (U.S. dollars) by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_LAC_4HRL_NB,ilo/LAC_4HRL_NB.ECONOMIC_ACTIVITY--ISIC4_X__CURRENCY--CUR_TYPE_USD,LAC_4HRL_NB,Mean nominal hourly labour cost per employee +LAI_INDE_RT.001,Inspectors per 10'000 employed persons,Total,,,ILO_LAI_INDE_RT,ilo/LAI_INDE_RT,LAI_INDE_RT,Inspectors per 10'000 employed persons +LAI_INSP_NB.001,Number of labour inspectors,Total,,,ILO_LAI_INSP_NB,ilo/LAI_INSP_NB,LAI_INSP_NB,Number of labour inspectors +LAI_INSP_NB.002,Number of labour inspectors by Sex,Female,,,ILO_LAI_INSP_NB,ilo/LAI_INSP_NB.SEX--F,LAI_INSP_NB,Number of labour inspectors +LAI_INSP_NB.002,Number of labour inspectors by Sex,Male,,,ILO_LAI_INSP_NB,ilo/LAI_INSP_NB.SEX--M,LAI_INSP_NB,Number of labour inspectors +LAI_INSP_NB.002,Number of labour inspectors by Sex,Sex other than Female or Male,,,ILO_LAI_INSP_NB,ilo/LAI_INSP_NB.SEX--O,LAI_INSP_NB,Number of labour inspectors +LAI_VDIN_RT.001,Labour inspection visits per inspector,Total,,,ILO_LAI_VDIN_RT,ilo/LAI_VDIN_RT,LAI_VDIN_RT,Labour inspection visits per inspector +LAP_2FTM_RT.001,"Gender income gap, ratio of women\'s to men\'s labour income (ILO modelled estimates)",Total,,,ILO_LAP_2FTM_RT,ilo/LAP_2FTM_RT,LAP_2FTM_RT,"Gender income gap, ratio of women\'s to men\'s labour income (ILO modelled estimates)" +LAP_2GDP_RT.001,Labour income share (ILO modelled estimates),Total,,,ILO_LAP_2GDP_RT,ilo/LAP_2GDP_RT,LAP_2GDP_RT,Labour income share (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 1,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_01,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 2,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_02,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 3,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_03,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 4,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_04,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 5,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_05,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 6,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_06,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 7,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_07,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 8,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_08,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 9,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_09,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LAP_2LID_RT.001,Labour income distribution (ILO modelled estimates) by Decile,Decile 10,,,ILO_LAP_2LID_RT,ilo/LAP_2LID_RT.QUANTILE--QTL_DECILE_10,LAP_2LID_RT,Labour income distribution (ILO modelled estimates) +LUU_2LU4_NB.001,Composite measure of labour underutilization (LU4) (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.AGE--Y15T24,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.001,Composite measure of labour underutilization (LU4) (ILO modelled estimates) by Age group,15 years old and over,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.AGE--Y_GE15,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.001,Composite measure of labour underutilization (LU4) (ILO modelled estimates) by Age group,25 years old and over,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.AGE--Y_GE25,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.002,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--F__AGE--Y15T24,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.002,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--M__AGE--Y15T24,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.003,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--F__AGE--Y_GE15,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.003,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--M__AGE--Y_GE15,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.004,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--F__AGE--Y_GE25,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LU4_NB.004,Composite measure of labour underutilization (LU4) (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_LUU_2LU4_NB,ilo/LUU_2LU4_NB.SEX--M__AGE--Y_GE25,LUU_2LU4_NB,Composite measure of labour underutilization (LU4) (ILO modelled estimates) +LUU_2LUX_NB.001,"Jobs gap(ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_LUU_2LUX_NB,ilo/LUU_2LUX_NB,LUU_2LUX_NB,"Jobs gap(ILO modelled estimates, as of Nov. 2023)" +LUU_2LUX_NB.002,"Jobs gap(ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_LUU_2LUX_NB,ilo/LUU_2LUX_NB.SEX--F,LUU_2LUX_NB,"Jobs gap(ILO modelled estimates, as of Nov. 2023) " +LUU_2LUX_NB.002,"Jobs gap(ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_LUU_2LUX_NB,ilo/LUU_2LUX_NB.SEX--M,LUU_2LUX_NB,"Jobs gap(ILO modelled estimates, as of Nov. 2023) " +LUU_2LUX_RT.001,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023)",Total,,,ILO_LUU_2LUX_RT,ilo/LUU_2LUX_RT,LUU_2LUX_RT,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023)" +LUU_2LUX_RT.002,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023) by Sex",Female,,,ILO_LUU_2LUX_RT,ilo/LUU_2LUX_RT.SEX--F,LUU_2LUX_RT,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023) " +LUU_2LUX_RT.002,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023) by Sex",Male,,,ILO_LUU_2LUX_RT,ilo/LUU_2LUX_RT.SEX--M,LUU_2LUX_RT,"Jobs gap rate(ILO modelled estimates, as of Nov. 2023) " +LUU_5LU2_RT.001,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.AGE--Y15T24,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.001,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.AGE--Y_GE15,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.001,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.AGE--Y_GE25,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.002,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--F__AGE--Y15T24,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.002,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--M__AGE--Y15T24,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.003,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--F__AGE--Y_GE15,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.003,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--M__AGE--Y_GE15,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.004,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--F__AGE--Y_GE25,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU2_RT.004,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_LUU_5LU2_RT,ilo/LUU_5LU2_RT.SEX--M__AGE--Y_GE25,LUU_5LU2_RT,"Combined rate of time-related underemployment and unemployment (LU2), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.001,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.AGE--Y15T24,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.001,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.AGE--Y_GE15,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.001,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.AGE--Y_GE25,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.002,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--F__AGE--Y15T24,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.002,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--M__AGE--Y15T24,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.003,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--F__AGE--Y_GE15,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.003,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--M__AGE--Y_GE15,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.004,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--F__AGE--Y_GE25,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU3_RT.004,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_LUU_5LU3_RT,ilo/LUU_5LU3_RT.SEX--M__AGE--Y_GE25,LUU_5LU3_RT,"Combined rate of unemployment and potential labour force (LU3), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.001,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.AGE--Y15T24,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.001,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.AGE--Y_GE15,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.001,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.AGE--Y_GE25,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.002,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--F__AGE--Y15T24,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.002,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--M__AGE--Y15T24,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.003,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--F__AGE--Y_GE15,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.003,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--M__AGE--Y_GE15,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.004,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--F__AGE--Y_GE25,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_5LU4_RT.004,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_LUU_5LU4_RT,ilo/LUU_5LU4_RT.SEX--M__AGE--Y_GE25,LUU_5LU4_RT,"Composite rate of labour underutilization (LU4), according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +LUU_XLU2_RT.001,Combined rate of time-related underemployment and unemployment (LU2),Total,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,15 to 24 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,15 to 64 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,15 years old and over,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,25 to 34 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T34,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,25 to 54 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,25 years old and over,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,35 to 44 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y35T44,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,45 to 54 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y45T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,55 to 64 years old,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.002,Combined rate of time-related underemployment and unemployment (LU2) by Age group,65 years old and over,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.003,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.003,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.003,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.003,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.003,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.004,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.004,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.004,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.004,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.004,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.005,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.005,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.005,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.005,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.005,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.006,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.006,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.006,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.006,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.006,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.007,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.007,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.007,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.007,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.007,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.008,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.008,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.008,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.008,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.008,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.009,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.009,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.009,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.009,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.009,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.010,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.010,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.011,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.011,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.012,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.012,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.013,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.013,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.014,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.014,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.015,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.015,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.016,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.016,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.017,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.018,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.019,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.020,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.021,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.022,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.023,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.024,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.024,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.025,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.025,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.026,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.026,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.027,Combined rate of time-related underemployment and unemployment (LU2) (25 to 34 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T34,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.027,Combined rate of time-related underemployment and unemployment (LU2) (25 to 34 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T34,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.028,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.028,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.029,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.029,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.030,Combined rate of time-related underemployment and unemployment (LU2) (35 to 44 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y35T44,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.030,Combined rate of time-related underemployment and unemployment (LU2) (35 to 44 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y35T44,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.031,Combined rate of time-related underemployment and unemployment (LU2) (45 to 54 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y45T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.031,Combined rate of time-related underemployment and unemployment (LU2) (45 to 54 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y45T54,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.032,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.032,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.033,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.033,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.034,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.034,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.034,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.034,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.034,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.035,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.035,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.035,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.035,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.035,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.036,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.036,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.036,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.036,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.036,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.037,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.037,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.037,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.037,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.037,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.038,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.038,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.038,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.038,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.038,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.039,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.039,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.039,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.039,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.039,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.040,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.040,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.040,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.040,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.040,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.041,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.041,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.041,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.041,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.041,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.042,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.042,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.042,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.042,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.042,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.043,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.043,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.043,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.043,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.043,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.044,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.044,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.044,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.044,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.044,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.045,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.045,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.045,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.045,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.045,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.046,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.046,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.046,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.046,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.046,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.047,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.047,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.047,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.047,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.047,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.048,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.048,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.049,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.049,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.050,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.050,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.051,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.051,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.052,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.052,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.053,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.053,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.054,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.054,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.055,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.055,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.056,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.056,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.057,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.057,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.058,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.058,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.059,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.059,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.060,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.060,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.061,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.061,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.062,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.063,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.064,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.065,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.066,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.067,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.068,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.069,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.070,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.071,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.072,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.073,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.074,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.075,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.076,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.076,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.076,Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T24__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.077,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.077,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.077,Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y15T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.078,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.078,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.078,Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE15__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.079,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.079,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.079,Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y25T54__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.080,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.080,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.080,Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE25__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.081,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.081,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.081,Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y55T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.082,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.082,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.082,Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.AGE--Y_GE65__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.083,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.083,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.084,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.084,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.085,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T24__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.085,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 24 years old, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T24__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.086,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.086,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.087,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.087,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.088,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y15T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.088,"Combined rate of time-related underemployment and unemployment (LU2) (15 to 64 years old, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y15T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.089,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.089,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.090,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.090,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.091,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE15__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.091,"Combined rate of time-related underemployment and unemployment (LU2) (15 years old and over, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE15__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.092,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.092,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.093,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.093,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.094,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y25T54__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.094,"Combined rate of time-related underemployment and unemployment (LU2) (25 to 54 years old, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y25T54__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.095,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.095,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.096,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.096,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.097,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE25__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.097,"Combined rate of time-related underemployment and unemployment (LU2) (25 years old and over, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE25__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.098,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.098,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.099,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.099,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.100,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y55T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.100,"Combined rate of time-related underemployment and unemployment (LU2) (55 to 64 years old, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y55T64__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.101,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.101,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.102,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Rural) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.102,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Rural) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.103,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Urban) by Sex",Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__AGE--Y_GE65__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.103,"Combined rate of time-related underemployment and unemployment (LU2) (65 years old and over, Urban) by Sex",Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__AGE--Y_GE65__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.104,Combined rate of time-related underemployment and unemployment (LU2) by Disability status,Persons with disability,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.DISABILITY_STATUS--PD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.104,Combined rate of time-related underemployment and unemployment (LU2) by Disability status,Persons without disability,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.DISABILITY_STATUS--PWD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.105,Combined rate of time-related underemployment and unemployment (LU2) (Persons with disability) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__DISABILITY_STATUS--PD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.105,Combined rate of time-related underemployment and unemployment (LU2) (Persons with disability) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__DISABILITY_STATUS--PD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.106,Combined rate of time-related underemployment and unemployment (LU2) (Persons without disability) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__DISABILITY_STATUS--PWD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.106,Combined rate of time-related underemployment and unemployment (LU2) (Persons without disability) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__DISABILITY_STATUS--PWD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.107,Combined rate of time-related underemployment and unemployment (LU2),No schooling,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.108,Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.108,Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.108,Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.108,Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.108,Combined rate of time-related underemployment and unemployment (LU2) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_7,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_8,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_9,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.109,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED11_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.110,Combined rate of time-related underemployment and unemployment (LU2) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--ISCED97_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.111,Combined rate of time-related underemployment and unemployment (LU2) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.111,Combined rate of time-related underemployment and unemployment (LU2) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.111,Combined rate of time-related underemployment and unemployment (LU2) by Marital Status,Marital status not elsewhere classified,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.112,Combined rate of time-related underemployment and unemployment (LU2) Single / Widowed / Divorced,Single,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_SGLE,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.112,Combined rate of time-related underemployment and unemployment (LU2) Single / Widowed / Divorced,Widowed,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_WID,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.112,Combined rate of time-related underemployment and unemployment (LU2) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_SEP,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.113,Combined rate of time-related underemployment and unemployment (LU2) Married / Union / Cohabiting,Married,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_MRD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.113,Combined rate of time-related underemployment and unemployment (LU2) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--MTS_UNION,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.114,Combined rate of time-related underemployment and unemployment (LU2) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.115,Combined rate of time-related underemployment and unemployment (LU2) (Marital status not elsewhere classified) by Aggregate education levels,Less than basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.115,Combined rate of time-related underemployment and unemployment (LU2) (Marital status not elsewhere classified) by Aggregate education levels,Basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.115,Combined rate of time-related underemployment and unemployment (LU2) (Marital status not elsewhere classified) by Aggregate education levels,Intermediate education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.115,Combined rate of time-related underemployment and unemployment (LU2) (Marital status not elsewhere classified) by Aggregate education levels,Advanced education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.115,Combined rate of time-related underemployment and unemployment (LU2) (Marital status not elsewhere classified) by Aggregate education levels,Education level not stated,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.116,Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.116,Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.116,Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.116,Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.116,Combined rate of time-related underemployment and unemployment (LU2) (Married / Union / Cohabiting) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.117,Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.117,Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.117,Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.117,Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.117,Combined rate of time-related underemployment and unemployment (LU2) (Single / Widowed / Divorced) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.118,Combined rate of time-related underemployment and unemployment (LU2) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.118,Combined rate of time-related underemployment and unemployment (LU2) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.119,Combined rate of time-related underemployment and unemployment (LU2) (Female),No schooling,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.120,Combined rate of time-related underemployment and unemployment (LU2) (Male),No schooling,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.121,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.121,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.121,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.121,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.121,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.122,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.122,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.122,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.122,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.122,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_7,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_8,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_9,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.123,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED11_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Early childhood education (ISCED11_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Primary education (ISCED11_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Lower secondary education (ISCED11_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Upper secondary education (ISCED11_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Post-secondary non-tertiary education (ISCED11_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Short-cycle tertiary education (ISCED11_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Bachelor's or equivalent level (ISCED11_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Master's or equivalent level (ISCED11_7),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_7,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Doctoral or equivalent level (ISCED11_8),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_8,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,Not elsewhere classified (ISCED11_9),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_9,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.124,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED11,No schooling (ISCED11_X),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED11_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.125,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--ISCED97_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Pre-primary education (ISCED97_0),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_0,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Primary education or first stage of basic education (ISCED97_1),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Lower secondary or second stage of basic education (ISCED97_2),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Upper secondary education (ISCED97_3),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_3,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Post-secondary non-tertiary education (ISCED97_4),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_4,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_5,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.126,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Education levels according to ISCED97,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--ISCED97_6,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.127,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.127,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.127,Combined rate of time-related underemployment and unemployment (LU2) (Female) by Marital Status,Marital status not elsewhere classified,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.128,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.128,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.128,Combined rate of time-related underemployment and unemployment (LU2) (Male) by Marital Status,Marital status not elsewhere classified,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.129,Combined rate of time-related underemployment and unemployment (LU2) (Female) Single / Widowed / Divorced,Single,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_SGLE,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.129,Combined rate of time-related underemployment and unemployment (LU2) (Female) Single / Widowed / Divorced,Widowed,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_WID,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.129,Combined rate of time-related underemployment and unemployment (LU2) (Female) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_SEP,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.130,Combined rate of time-related underemployment and unemployment (LU2) (Male) Single / Widowed / Divorced,Single,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_SGLE,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.130,Combined rate of time-related underemployment and unemployment (LU2) (Male) Single / Widowed / Divorced,Widowed,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_WID,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.130,Combined rate of time-related underemployment and unemployment (LU2) (Male) Single / Widowed / Divorced,Divorced or legally separated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_SEP,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.131,Combined rate of time-related underemployment and unemployment (LU2) (Female) Married / Union / Cohabiting,Married,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_MRD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.131,Combined rate of time-related underemployment and unemployment (LU2) (Female) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--MTS_UNION,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.132,Combined rate of time-related underemployment and unemployment (LU2) (Male) Married / Union / Cohabiting,Married,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_MRD,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.132,Combined rate of time-related underemployment and unemployment (LU2) (Male) Married / Union / Cohabiting,Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--MTS_UNION,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.133,Combined rate of time-related underemployment and unemployment (LU2) (Female) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.134,Combined rate of time-related underemployment and unemployment (LU2) (Male) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.135,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.135,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.135,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.135,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.135,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.136,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.136,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.136,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.136,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.136,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.137,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.137,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.137,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.137,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.137,"Combined rate of time-related underemployment and unemployment (LU2) (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.138,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.138,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.138,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.138,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.138,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.139,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.139,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.139,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.139,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.139,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.140,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.140,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.140,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.140,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.140,"Combined rate of time-related underemployment and unemployment (LU2) (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.141,Combined rate of time-related underemployment and unemployment (LU2) by Urbanization (Rural/Urban),Rural,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.141,Combined rate of time-related underemployment and unemployment (LU2) by Urbanization (Rural/Urban),Urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.141,Combined rate of time-related underemployment and unemployment (LU2) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.142,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.142,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.142,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.142,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.142,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.143,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.143,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.143,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.143,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.143,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.144,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels,Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.144,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels,Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.144,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels,Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.144,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels,Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.144,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Aggregate education levels,Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.EDUCATION_LEVEL--_UNK__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.145,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--_X__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.145,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--_X__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.146,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--R__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.146,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--R__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.147,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Marital Status,Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--U__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.147,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Marital Status,Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--U__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.148,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--_X__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.149,Combined rate of time-related underemployment and unemployment (LU2) (Rural) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--R__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.150,Combined rate of time-related underemployment and unemployment (LU2) (Urban) Marital status not elsewhere classified,Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.URBANISATION--U__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.151,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.151,Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.152,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.152,Combined rate of time-related underemployment and unemployment (LU2) (Rural) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.153,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Sex,Female,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.153,Combined rate of time-related underemployment and unemployment (LU2) (Urban) by Sex,Male,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.154,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.154,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.154,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.154,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.154,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.155,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.155,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.155,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.155,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.155,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.156,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.156,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.156,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.156,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.156,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.157,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.157,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.157,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.157,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.157,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.158,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.158,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.158,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.158,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.158,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.159,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.159,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.159,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.159,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.159,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.160,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.160,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.161,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.161,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.162,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.162,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.163,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.163,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.164,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.164,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.165,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.165,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.166,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--_X__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.167,"Combined rate of time-related underemployment and unemployment (LU2) (Not classsified as rural or urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--_X__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.168,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.169,"Combined rate of time-related underemployment and unemployment (LU2) (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.170,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU2_RT.171,"Combined rate of time-related underemployment and unemployment (LU2) (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU2_RT,ilo/LUU_XLU2_RT.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,LUU_XLU2_RT,Combined rate of time-related underemployment and unemployment (LU2) +LUU_XLU3_RT.001,Combined rate of unemployment and potential labour force (LU3),15 to 24 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.001,Combined rate of unemployment and potential labour force (LU3),15 to 64 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.001,Combined rate of unemployment and potential labour force (LU3),15 years old and over,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.001,Combined rate of unemployment and potential labour force (LU3),25 years old and over,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),15 to 24 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),15 to 64 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),15 years old and over,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),25 to 34 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),25 to 54 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),25 years old and over,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),35 to 44 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),45 to 54 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),55 to 64 years old,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.002,Combined rate of unemployment and potential labour force (LU3),65 years old and over,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.003,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.003,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.003,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.004,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.004,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.004,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.005,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.005,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.005,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.006,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.006,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.006,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.007,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.007,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T24__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.008,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.008,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T64__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.009,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.009,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.009,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE15__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.010,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.010,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.010,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE25__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.011,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.011,Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.012,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Female)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.012,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Female)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.012,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Female)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.013,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.013,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Male)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.013,"Combined rate of unemployment and potential labour force (LU3) (15 to 24 years old, Male)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.014,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.014,Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.015,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Female)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.015,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Female)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.015,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Female)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.016,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.016,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Male)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.016,"Combined rate of unemployment and potential labour force (LU3) (15 to 64 years old, Male)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y15T64__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.017,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.017,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.017,Combined rate of unemployment and potential labour force (LU3) (15 years old and over),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.018,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Female)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.018,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Female)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.018,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Female)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.019,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.019,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Male)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.019,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Male)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.020,"Combined rate of unemployment and potential labour force (LU3) (15 years old and over, Sex other than Female or Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.021,Combined rate of unemployment and potential labour force (LU3) (25 to 34 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.021,Combined rate of unemployment and potential labour force (LU3) (25 to 34 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.022,Combined rate of unemployment and potential labour force (LU3) (25 to 54 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.022,Combined rate of unemployment and potential labour force (LU3) (25 to 54 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.022,Combined rate of unemployment and potential labour force (LU3) (25 to 54 years old),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.023,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.023,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.023,Combined rate of unemployment and potential labour force (LU3) (25 years old and over),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.024,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Female)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.024,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Female)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.024,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Female)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.025,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.025,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Male)",Married / Union / Cohabiting,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.025,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Male)",Marital status not elsewhere classified,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.026,"Combined rate of unemployment and potential labour force (LU3) (25 years old and over, Sex other than Female or Male)",Single / Widowed / Divorced,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.027,Combined rate of unemployment and potential labour force (LU3) (35 to 44 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.027,Combined rate of unemployment and potential labour force (LU3) (35 to 44 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.028,Combined rate of unemployment and potential labour force (LU3) (45 to 54 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.028,Combined rate of unemployment and potential labour force (LU3) (45 to 54 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.029,Combined rate of unemployment and potential labour force (LU3) (55 to 64 years old),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.029,Combined rate of unemployment and potential labour force (LU3) (55 to 64 years old),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.030,Combined rate of unemployment and potential labour force (LU3) (65 years old and over),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.030,Combined rate of unemployment and potential labour force (LU3) (65 years old and over),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.031,Combined rate of unemployment and potential labour force (LU3),Total,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.032,Combined rate of unemployment and potential labour force (LU3),Female,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--F__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.032,Combined rate of unemployment and potential labour force (LU3),Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--M__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLU3_RT.032,Combined rate of unemployment and potential labour force (LU3),Sex other than Female or Male,DROP,,ILO_LUU_XLU3_RT,ilo/LUU_XLU3_RT.SEX--O__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,LUU_XLU3_RT,Combined rate of unemployment and potential labour force (LU3) +LUU_XLUX_NB.001,Jobs gap,Total,,,ILO_LUU_XLUX_NB,ilo/LUU_XLUX_NB,LUU_XLUX_NB,Jobs gap +LUU_XLUX_NB.002,Jobs gap by Sex,Female,,,ILO_LUU_XLUX_NB,ilo/LUU_XLUX_NB.SEX--F,LUU_XLUX_NB,Jobs gap +LUU_XLUX_NB.002,Jobs gap by Sex,Male,,,ILO_LUU_XLUX_NB,ilo/LUU_XLUX_NB.SEX--M,LUU_XLUX_NB,Jobs gap +LUU_XLUX_NB.002,Jobs gap by Sex,Sex other than Female or Male,,,ILO_LUU_XLUX_NB,ilo/LUU_XLUX_NB.SEX--O,LUU_XLUX_NB,Jobs gap +LUU_XLUX_RT.001,Jobs gap rate,Total,,,ILO_LUU_XLUX_RT,ilo/LUU_XLUX_RT,LUU_XLUX_RT,Jobs gap rate +LUU_XLUX_RT.002,Jobs gap rate by Sex,Female,,,ILO_LUU_XLUX_RT,ilo/LUU_XLUX_RT.SEX--F,LUU_XLUX_RT,Jobs gap rate +LUU_XLUX_RT.002,Jobs gap rate by Sex,Male,,,ILO_LUU_XLUX_RT,ilo/LUU_XLUX_RT.SEX--M,LUU_XLUX_RT,Jobs gap rate +LUU_XLUX_RT.002,Jobs gap rate by Sex,Sex other than Female or Male,,,ILO_LUU_XLUX_RT,ilo/LUU_XLUX_RT.SEX--O,LUU_XLUX_RT,Jobs gap rate +POP_2LDR_RT.001,Labour dependency ratio (ILO modelled estimates),Total,,,ILO_POP_2LDR_RT,ilo/POP_2LDR_RT,POP_2LDR_RT,Labour dependency ratio (ILO modelled estimates) +POP_2POP_NB.001,Population (UN estimates and projections),15 to 24 years old,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.001,Population (UN estimates and projections),15 to 64 years old,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.001,Population (UN estimates and projections),15 years old and over,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.001,Population (UN estimates and projections),25 years old and over,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.002,Population (UN estimates and projections) (15 to 24 years old),Female,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.002,Population (UN estimates and projections) (15 to 24 years old),Male,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.003,Population (UN estimates and projections) (15 to 64 years old),Female,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.003,Population (UN estimates and projections) (15 to 64 years old),Male,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.004,Population (UN estimates and projections) (15 years old and over),Female,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.004,Population (UN estimates and projections) (15 years old and over),Male,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.005,Population (UN estimates and projections) (25 years old and over),Female,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_2POP_NB.005,Population (UN estimates and projections) (25 years old and over),Male,DROP,,ILO_POP_2POP_NB,ilo/POP_2POP_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_2POP_NB,Population (UN estimates and projections) +POP_3FOR_NB.001,Youth working-age population (thousands),Total,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.002,Youth working-age population (thousands) by Age group,15 to 19 years old,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.002,Youth working-age population (thousands) by Age group,15 to 29 years old,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.002,Youth working-age population (thousands) by Age group,20 to 24 years old,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.002,Youth working-age population (thousands) by Age group,25 to 29 years old,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.003,Youth working-age population (thousands) (15 to 19 years old) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.003,Youth working-age population (thousands) (15 to 19 years old) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.004,Youth working-age population (thousands) (15 to 29 years old) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.004,Youth working-age population (thousands) (15 to 29 years old) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.005,Youth working-age population (thousands) (20 to 24 years old) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.005,Youth working-age population (thousands) (20 to 24 years old) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.006,Youth working-age population (thousands) (25 to 29 years old) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.006,Youth working-age population (thousands) (25 to 29 years old) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.011,"Youth working-age population (thousands) (15 to 19 years old, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.011,"Youth working-age population (thousands) (15 to 19 years old, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.012,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.012,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.013,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.013,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.014,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.014,"Youth working-age population (thousands) (15 to 19 years old, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.015,"Youth working-age population (thousands) (15 to 19 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.015,"Youth working-age population (thousands) (15 to 19 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.016,"Youth working-age population (thousands) (15 to 19 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.016,"Youth working-age population (thousands) (15 to 19 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.017,"Youth working-age population (thousands) (15 to 19 years old, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.017,"Youth working-age population (thousands) (15 to 19 years old, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.018,"Youth working-age population (thousands) (15 to 19 years old, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.018,"Youth working-age population (thousands) (15 to 19 years old, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.019,"Youth working-age population (thousands) (15 to 19 years old, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.019,"Youth working-age population (thousands) (15 to 19 years old, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.020,"Youth working-age population (thousands) (15 to 29 years old, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.020,"Youth working-age population (thousands) (15 to 29 years old, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.021,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.021,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.022,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.022,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.023,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.023,"Youth working-age population (thousands) (15 to 29 years old, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.024,"Youth working-age population (thousands) (15 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.024,"Youth working-age population (thousands) (15 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.025,"Youth working-age population (thousands) (15 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.025,"Youth working-age population (thousands) (15 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.026,"Youth working-age population (thousands) (15 to 29 years old, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.026,"Youth working-age population (thousands) (15 to 29 years old, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.027,"Youth working-age population (thousands) (15 to 29 years old, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.027,"Youth working-age population (thousands) (15 to 29 years old, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.028,"Youth working-age population (thousands) (15 to 29 years old, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.028,"Youth working-age population (thousands) (15 to 29 years old, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.029,"Youth working-age population (thousands) (20 to 24 years old, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.029,"Youth working-age population (thousands) (20 to 24 years old, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.030,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.030,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.031,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.031,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.032,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.032,"Youth working-age population (thousands) (20 to 24 years old, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.033,"Youth working-age population (thousands) (20 to 24 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.033,"Youth working-age population (thousands) (20 to 24 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.034,"Youth working-age population (thousands) (20 to 24 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.034,"Youth working-age population (thousands) (20 to 24 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.035,"Youth working-age population (thousands) (20 to 24 years old, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.035,"Youth working-age population (thousands) (20 to 24 years old, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.036,"Youth working-age population (thousands) (20 to 24 years old, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.036,"Youth working-age population (thousands) (20 to 24 years old, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.037,"Youth working-age population (thousands) (20 to 24 years old, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.037,"Youth working-age population (thousands) (20 to 24 years old, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.038,"Youth working-age population (thousands) (25 to 29 years old, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.038,"Youth working-age population (thousands) (25 to 29 years old, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.039,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.039,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.040,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.040,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.041,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.041,"Youth working-age population (thousands) (25 to 29 years old, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.042,"Youth working-age population (thousands) (25 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.042,"Youth working-age population (thousands) (25 to 29 years old, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.043,"Youth working-age population (thousands) (25 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.043,"Youth working-age population (thousands) (25 to 29 years old, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.044,"Youth working-age population (thousands) (25 to 29 years old, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.044,"Youth working-age population (thousands) (25 to 29 years old, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.045,"Youth working-age population (thousands) (25 to 29 years old, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.045,"Youth working-age population (thousands) (25 to 29 years old, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.046,"Youth working-age population (thousands) (25 to 29 years old, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.046,"Youth working-age population (thousands) (25 to 29 years old, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.047,Youth working-age population (thousands) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.047,Youth working-age population (thousands) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.047,Youth working-age population (thousands) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.047,Youth working-age population (thousands) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.047,Youth working-age population (thousands) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.048,Youth working-age population (thousands) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.048,Youth working-age population (thousands) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.049,Youth working-age population (thousands) (Female) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.049,Youth working-age population (thousands) (Female) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.049,Youth working-age population (thousands) (Female) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.049,Youth working-age population (thousands) (Female) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.049,Youth working-age population (thousands) (Female) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.050,Youth working-age population (thousands) (Male) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.050,Youth working-age population (thousands) (Male) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.050,Youth working-age population (thousands) (Male) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.050,Youth working-age population (thousands) (Male) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.050,Youth working-age population (thousands) (Male) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.051,Youth working-age population (thousands) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.052,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.052,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.052,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.052,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.052,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.053,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.053,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.053,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.053,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.053,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.054,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.054,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.054,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.054,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.054,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.055,Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.055,Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.055,Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.055,Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.055,Youth working-age population (thousands) (Outside the labour force - students) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.056,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.056,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.056,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.056,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.056,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.057,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.057,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.057,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.057,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.057,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.058,Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.058,Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.058,Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.058,Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.058,Youth working-age population (thousands) (School leavers in stable employment) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.059,Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.059,Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.059,Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.059,Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.059,Youth working-age population (thousands) (Students in the labour force) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.060,Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels,Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.060,Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels,Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.060,Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels,Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.060,Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels,Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.060,Youth working-age population (thousands) (Unemployed school leavers) by Aggregate education levels,Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.061,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.061,Youth working-age population (thousands) (Form of transition to work not elsewhere classified) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.062,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.062,Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.063,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.063,Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.064,Youth working-age population (thousands) (Outside the labour force - students) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.064,Youth working-age population (thousands) (Outside the labour force - students) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.065,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.065,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.066,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.066,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.067,Youth working-age population (thousands) (School leavers in stable employment) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.067,Youth working-age population (thousands) (School leavers in stable employment) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.068,Youth working-age population (thousands) (Students in the labour force) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.068,Youth working-age population (thousands) (Students in the labour force) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.069,Youth working-age population (thousands) (Unemployed school leavers) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.069,Youth working-age population (thousands) (Unemployed school leavers) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.070,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.070,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.070,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.070,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.070,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.071,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.071,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.071,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.071,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.071,"Youth working-age population (thousands) (Form of transition to work not elsewhere classified, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.072,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.072,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.072,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.072,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.072,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.073,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.073,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.073,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.073,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.073,"Youth working-age population (thousands) (Outside the labour force - school leavers in potential labour force or aiming to look for work later, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.074,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.074,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.074,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.074,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.074,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.075,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.075,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.075,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.075,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.075,"Youth working-age population (thousands) (Outside the labour force - school leavers with no intention of looking for work, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.076,"Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.076,"Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.076,"Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.076,"Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.076,"Youth working-age population (thousands) (Outside the labour force - students, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.077,"Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.077,"Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.077,"Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.077,"Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.077,"Youth working-age population (thousands) (Outside the labour force - students, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.078,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.078,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.078,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.078,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.078,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.079,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.079,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.079,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.079,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.079,"Youth working-age population (thousands) (School leavers in non-stable or non-satisfactory employment, wanting to change job, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.080,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.080,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.080,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.080,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.080,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.081,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.081,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.081,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.081,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.081,"Youth working-age population (thousands) (School leavers in satisfactory temporary or self-employment, not wanting to change job, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.082,"Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.082,"Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.082,"Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.082,"Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.082,"Youth working-age population (thousands) (School leavers in stable employment, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.083,"Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.083,"Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.083,"Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.083,"Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.083,"Youth working-age population (thousands) (School leavers in stable employment, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.084,"Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.084,"Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.084,"Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.084,"Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.084,"Youth working-age population (thousands) (Students in the labour force, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.085,"Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.085,"Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.085,"Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.085,"Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.085,"Youth working-age population (thousands) (Students in the labour force, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.086,"Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.086,"Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.086,"Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.086,"Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.086,"Youth working-age population (thousands) (Unemployed school leavers, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.087,"Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.087,"Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.087,"Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.087,"Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.087,"Youth working-age population (thousands) (Unemployed school leavers, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__EDUCATION_LEVEL--_UNK,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.088,Youth working-age population (thousands) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.088,Youth working-age population (thousands) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.088,Youth working-age population (thousands) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.089,Youth working-age population (thousands) (Not classsified as rural or urban) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.089,Youth working-age population (thousands) (Not classsified as rural or urban) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.090,Youth working-age population (thousands) (Rural) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.090,Youth working-age population (thousands) (Rural) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.091,Youth working-age population (thousands) (Urban) by Sex,Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.091,Youth working-age population (thousands) (Urban) by Sex,Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.092,Youth working-age population (thousands) (Not classsified as rural or urban) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.093,Youth working-age population (thousands) (Rural) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,School leavers in stable employment,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,"School leavers in satisfactory temporary or self-employment, not wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Students in the labour force,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Unemployed school leavers,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,"School leavers in non-stable or non-satisfactory employment, wanting to change job",,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Outside the labour force - school leavers in potential labour force or aiming to look for work later,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Outside the labour force - students,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Outside the labour force - school leavers with no intention of looking for work,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.094,Youth working-age population (thousands) (Urban) by Form of transition to work,Form of transition to work not elsewhere classified,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.TRANSITION_TO_WORK_FORM--_X__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.095,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.095,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.096,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.096,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.097,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.097,"Youth working-age population (thousands) (Not classsified as rural or urban, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.098,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.098,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.099,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.099,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.100,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.100,"Youth working-age population (thousands) (Not classsified as rural or urban, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.101,"Youth working-age population (thousands) (Not classsified as rural or urban, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.101,"Youth working-age population (thousands) (Not classsified as rural or urban, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.102,"Youth working-age population (thousands) (Not classsified as rural or urban, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.102,"Youth working-age population (thousands) (Not classsified as rural or urban, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--_X,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.103,"Youth working-age population (thousands) (Rural, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.103,"Youth working-age population (thousands) (Rural, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.104,"Youth working-age population (thousands) (Rural, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.104,"Youth working-age population (thousands) (Rural, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.105,"Youth working-age population (thousands) (Rural, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.105,"Youth working-age population (thousands) (Rural, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.106,"Youth working-age population (thousands) (Rural, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.106,"Youth working-age population (thousands) (Rural, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.107,"Youth working-age population (thousands) (Rural, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.107,"Youth working-age population (thousands) (Rural, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.108,"Youth working-age population (thousands) (Rural, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.108,"Youth working-age population (thousands) (Rural, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.109,"Youth working-age population (thousands) (Rural, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.109,"Youth working-age population (thousands) (Rural, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.110,"Youth working-age population (thousands) (Rural, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.110,"Youth working-age population (thousands) (Rural, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.111,"Youth working-age population (thousands) (Rural, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.111,"Youth working-age population (thousands) (Rural, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--R,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.112,"Youth working-age population (thousands) (Urban, Form of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--_X__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.112,"Youth working-age population (thousands) (Urban, Form of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--_X__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.113,"Youth working-age population (thousands) (Urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.113,"Youth working-age population (thousands) (Urban, Outside the labour force - school leavers in potential labour force or aiming to look for work later) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_6__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.114,"Youth working-age population (thousands) (Urban, Outside the labour force - school leavers with no intention of looking for work) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.114,"Youth working-age population (thousands) (Urban, Outside the labour force - school leavers with no intention of looking for work) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_8__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.115,"Youth working-age population (thousands) (Urban, Outside the labour force - students) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.115,"Youth working-age population (thousands) (Urban, Outside the labour force - students) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_7__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.116,"Youth working-age population (thousands) (Urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.116,"Youth working-age population (thousands) (Urban, School leavers in non-stable or non-satisfactory employment, wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_5__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.117,"Youth working-age population (thousands) (Urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.117,"Youth working-age population (thousands) (Urban, School leavers in satisfactory temporary or self-employment, not wanting to change job) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_2__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.118,"Youth working-age population (thousands) (Urban, School leavers in stable employment) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.118,"Youth working-age population (thousands) (Urban, School leavers in stable employment) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_1__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.119,"Youth working-age population (thousands) (Urban, Students in the labour force) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.119,"Youth working-age population (thousands) (Urban, Students in the labour force) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_3__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.120,"Youth working-age population (thousands) (Urban, Unemployed school leavers) by Sex",Female,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--F__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3FOR_NB.120,"Youth working-age population (thousands) (Urban, Unemployed school leavers) by Sex",Male,,,ILO_POP_3FOR_NB,ilo/POP_3FOR_NB.SEX--M__TRANSITION_TO_WORK_FORM--TRA_FORMS_4__URBANISATION--U,POP_3FOR_NB,Youth working-age population (thousands) +POP_3STG_NB.001,Youth working-age population (thousands),Total,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.002,Youth working-age population (thousands) by Age group,15 to 19 years old,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T19,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.002,Youth working-age population (thousands) by Age group,15 to 29 years old,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.002,Youth working-age population (thousands) by Age group,20 to 24 years old,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y20T24,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.002,Youth working-age population (thousands) by Age group,25 to 29 years old,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y25T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.003,Youth working-age population (thousands) (15 to 19 years old) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T19,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.003,Youth working-age population (thousands) (15 to 19 years old) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T19,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.004,Youth working-age population (thousands) (15 to 29 years old) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.004,Youth working-age population (thousands) (15 to 29 years old) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.005,Youth working-age population (thousands) (20 to 24 years old) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y20T24,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.005,Youth working-age population (thousands) (20 to 24 years old) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y20T24,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.006,Youth working-age population (thousands) (25 to 29 years old) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y25T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.006,Youth working-age population (thousands) (25 to 29 years old) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y25T29,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.007,Youth working-age population (thousands) (15 to 19 years old) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.008,Youth working-age population (thousands) (15 to 29 years old) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.009,Youth working-age population (thousands) (20 to 24 years old) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.010,Youth working-age population (thousands) (25 to 29 years old) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.011,"Youth working-age population (thousands) (15 to 19 years old, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.011,"Youth working-age population (thousands) (15 to 19 years old, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.012,"Youth working-age population (thousands) (15 to 19 years old, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.012,"Youth working-age population (thousands) (15 to 19 years old, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.013,"Youth working-age population (thousands) (15 to 19 years old, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.013,"Youth working-age population (thousands) (15 to 19 years old, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.014,"Youth working-age population (thousands) (15 to 19 years old, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.014,"Youth working-age population (thousands) (15 to 19 years old, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T19__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.015,"Youth working-age population (thousands) (15 to 29 years old, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.015,"Youth working-age population (thousands) (15 to 29 years old, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.016,"Youth working-age population (thousands) (15 to 29 years old, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.016,"Youth working-age population (thousands) (15 to 29 years old, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.017,"Youth working-age population (thousands) (15 to 29 years old, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.017,"Youth working-age population (thousands) (15 to 29 years old, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.018,"Youth working-age population (thousands) (15 to 29 years old, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.018,"Youth working-age population (thousands) (15 to 29 years old, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y15T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.019,"Youth working-age population (thousands) (20 to 24 years old, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.019,"Youth working-age population (thousands) (20 to 24 years old, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.020,"Youth working-age population (thousands) (20 to 24 years old, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.020,"Youth working-age population (thousands) (20 to 24 years old, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.021,"Youth working-age population (thousands) (20 to 24 years old, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.021,"Youth working-age population (thousands) (20 to 24 years old, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.022,"Youth working-age population (thousands) (20 to 24 years old, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.022,"Youth working-age population (thousands) (20 to 24 years old, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y20T24__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.023,"Youth working-age population (thousands) (25 to 29 years old, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.023,"Youth working-age population (thousands) (25 to 29 years old, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.024,"Youth working-age population (thousands) (25 to 29 years old, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.024,"Youth working-age population (thousands) (25 to 29 years old, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.025,"Youth working-age population (thousands) (25 to 29 years old, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.025,"Youth working-age population (thousands) (25 to 29 years old, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.026,"Youth working-age population (thousands) (25 to 29 years old, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.026,"Youth working-age population (thousands) (25 to 29 years old, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__AGE--Y25T29__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.027,Youth working-age population (thousands) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.027,Youth working-age population (thousands) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.027,Youth working-age population (thousands) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.027,Youth working-age population (thousands) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.027,Youth working-age population (thousands) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.028,Youth working-age population (thousands) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.028,Youth working-age population (thousands) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.029,Youth working-age population (thousands) (Female) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.029,Youth working-age population (thousands) (Female) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.029,Youth working-age population (thousands) (Female) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.029,Youth working-age population (thousands) (Female) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.029,Youth working-age population (thousands) (Female) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.030,Youth working-age population (thousands) (Male) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.030,Youth working-age population (thousands) (Male) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.030,Youth working-age population (thousands) (Male) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.030,Youth working-age population (thousands) (Male) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.030,Youth working-age population (thousands) (Male) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.031,Youth working-age population (thousands) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.031,Youth working-age population (thousands) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.031,Youth working-age population (thousands) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.031,Youth working-age population (thousands) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.032,Youth working-age population (thousands) (In transition to work) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.032,Youth working-age population (thousands) (In transition to work) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.032,Youth working-age population (thousands) (In transition to work) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.032,Youth working-age population (thousands) (In transition to work) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.032,Youth working-age population (thousands) (In transition to work) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.033,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.033,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.033,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.033,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.033,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.034,Youth working-age population (thousands) (Transited to work) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.034,Youth working-age population (thousands) (Transited to work) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.034,Youth working-age population (thousands) (Transited to work) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.034,Youth working-age population (thousands) (Transited to work) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.034,Youth working-age population (thousands) (Transited to work) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.035,Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels,Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.035,Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels,Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.035,Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels,Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.035,Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels,Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.035,Youth working-age population (thousands) (Transition to work not yet started) by Aggregate education levels,Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.036,Youth working-age population (thousands) (In transition to work) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.036,Youth working-age population (thousands) (In transition to work) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.037,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.037,Youth working-age population (thousands) (Stage of transition to work not elsewhere classified) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.038,Youth working-age population (thousands) (Transited to work) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.038,Youth working-age population (thousands) (Transited to work) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.039,Youth working-age population (thousands) (Transition to work not yet started) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.039,Youth working-age population (thousands) (Transition to work not yet started) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.040,"Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.040,"Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.040,"Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.040,"Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.040,"Youth working-age population (thousands) (In transition to work, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.041,"Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.041,"Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.041,"Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.041,"Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.041,"Youth working-age population (thousands) (In transition to work, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.042,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.042,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.042,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.042,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.042,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.043,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.043,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.043,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.043,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.043,"Youth working-age population (thousands) (Stage of transition to work not elsewhere classified, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.044,"Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.044,"Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.044,"Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.044,"Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.044,"Youth working-age population (thousands) (Transited to work, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.045,"Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.045,"Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.045,"Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.045,"Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.045,"Youth working-age population (thousands) (Transited to work, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.046,"Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.046,"Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.046,"Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.046,"Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.046,"Youth working-age population (thousands) (Transition to work not yet started, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.047,"Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.047,"Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.047,"Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.047,"Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.047,"Youth working-age population (thousands) (Transition to work not yet started, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__EDUCATION_LEVEL--_UNK,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.048,Youth working-age population (thousands) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.048,Youth working-age population (thousands) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.048,Youth working-age population (thousands) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.049,Youth working-age population (thousands) (Not classsified as rural or urban) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.049,Youth working-age population (thousands) (Not classsified as rural or urban) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.050,Youth working-age population (thousands) (Rural) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.050,Youth working-age population (thousands) (Rural) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.051,Youth working-age population (thousands) (Urban) by Sex,Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.051,Youth working-age population (thousands) (Urban) by Sex,Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.052,Youth working-age population (thousands) (Not classsified as rural or urban) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.052,Youth working-age population (thousands) (Not classsified as rural or urban) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.052,Youth working-age population (thousands) (Not classsified as rural or urban) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.053,Youth working-age population (thousands) (Rural) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.053,Youth working-age population (thousands) (Rural) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.053,Youth working-age population (thousands) (Rural) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.053,Youth working-age population (thousands) (Rural) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.054,Youth working-age population (thousands) (Urban) by Transition to work stage,Transited to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.054,Youth working-age population (thousands) (Urban) by Transition to work stage,In transition to work,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.054,Youth working-age population (thousands) (Urban) by Transition to work stage,Transition to work not yet started,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.054,Youth working-age population (thousands) (Urban) by Transition to work stage,Stage of transition to work not elsewhere classified,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.055,"Youth working-age population (thousands) (Not classsified as rural or urban, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.055,"Youth working-age population (thousands) (Not classsified as rural or urban, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.056,"Youth working-age population (thousands) (Not classsified as rural or urban, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.056,"Youth working-age population (thousands) (Not classsified as rural or urban, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.057,"Youth working-age population (thousands) (Not classsified as rural or urban, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.057,"Youth working-age population (thousands) (Not classsified as rural or urban, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--_X,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.058,"Youth working-age population (thousands) (Rural, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.058,"Youth working-age population (thousands) (Rural, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.059,"Youth working-age population (thousands) (Rural, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.059,"Youth working-age population (thousands) (Rural, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.060,"Youth working-age population (thousands) (Rural, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.060,"Youth working-age population (thousands) (Rural, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.061,"Youth working-age population (thousands) (Rural, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.061,"Youth working-age population (thousands) (Rural, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--R,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.062,"Youth working-age population (thousands) (Urban, In transition to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.062,"Youth working-age population (thousands) (Urban, In transition to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_2__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.063,"Youth working-age population (thousands) (Urban, Stage of transition to work not elsewhere classified) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.063,"Youth working-age population (thousands) (Urban, Stage of transition to work not elsewhere classified) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--_X__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.064,"Youth working-age population (thousands) (Urban, Transited to work) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.064,"Youth working-age population (thousands) (Urban, Transited to work) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_1__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.065,"Youth working-age population (thousands) (Urban, Transition to work not yet started) by Sex",Female,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--F__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3STG_NB.065,"Youth working-age population (thousands) (Urban, Transition to work not yet started) by Sex",Male,,,ILO_POP_3STG_NB,ilo/POP_3STG_NB.SEX--M__TRANSITION_TO_WORK_STAGE--TRA_STAGE_3__URBANISATION--U,POP_3STG_NB,Youth working-age population (thousands) +POP_3TED_NB.001,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment",Total,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment" +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities",Construction,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities",Manufacturing,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.002,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.003,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.003,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector",Non-agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.003,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector",Industry,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.003,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector",Services,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.003,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic sector",Not classified by economic sector,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.004,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.ECONOMIC_ACTIVITY--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.005,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment",Occupations not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.006,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO08_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.007,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--ISCO88_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.008,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--SKILL_L1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.008,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--SKILL_L2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.008,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.OCCUPATION--SKILL_L3-4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.009,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.009,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities",Construction,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities",Manufacturing,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.010,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities",Construction,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities",Manufacturing,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.011,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.012,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.012,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector",Non-agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.012,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector",Industry,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.012,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector",Services,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.012,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic sector",Not classified by economic sector,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.013,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector",Agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.013,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector",Non-agriculture,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.013,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector",Industry,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.013,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector",Services,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.013,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic sector",Not classified by economic sector,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.014,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__ECONOMIC_ACTIVITY--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.015,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__ECONOMIC_ACTIVITY--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.016,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female)",Occupations not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.017,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male)",Occupations not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.018,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO08_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.019,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO08_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.020,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--ISCO88_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_0,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_7,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_8,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_9,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.021,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--ISCO88_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.022,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.022,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.022,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__OCCUPATION--SKILL_L3-4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.023,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.023,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.023,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__OCCUPATION--SKILL_L3-4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Employees (ICSE93_1),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Employers (ICSE93_2),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Own-account workers (ICSE93_3),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Members of producers' cooperatives (ICSE93_4),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Contributing family workers (ICSE93_5),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.024,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status catagories according to ICSE93",Workers not classifiable by status (ICSE93_6),,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--ICSE93_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.025,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status",Employees,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--STE_EES,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.025,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status",Self-employed,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--STE_SLF,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.025,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment by Employment status",Emplyment status not elsewhere classified,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.STATUS_IN_EMPLOYMENT--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.026,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Contributing family workers (ICSE93_5)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.026,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Contributing family workers (ICSE93_5)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_5,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.027,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_EES,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.027,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_EES,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.028,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees (ICSE93_1)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.028,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employees (ICSE93_1)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_1,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.029,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employers (ICSE93_2)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.029,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Employers (ICSE93_2)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_2,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.030,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Emplyment status not elsewhere classified) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.030,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Emplyment status not elsewhere classified) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--_X,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.031,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Members of producers' cooperatives (ICSE93_4)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.031,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Members of producers' cooperatives (ICSE93_4)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_4,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.032,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Own-account workers (ICSE93_3)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.032,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Own-account workers (ICSE93_3)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_3,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.033,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Self-employed) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--STE_SLF,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.033,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Self-employed) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--STE_SLF,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.034,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Workers not classifiable by status (ICSE93_6)) by Sex",Female,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--F__STATUS_IN_EMPLOYMENT--ICSE93_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3TED_NB.034,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment (Workers not classifiable by status (ICSE93_6)) by Sex",Male,,,ILO_POP_3TED_NB,ilo/POP_3TED_NB.SEX--M__STATUS_IN_EMPLOYMENT--ICSE93_6,POP_3TED_NB,"Youth transited to stable employment, satisfactory temporary employment, or satisfactory self-employment " +POP_3WAP_NB.001,Youth working-age population by Age group,15 to 19 years old,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.001,Youth working-age population by Age group,15 to 29 years old,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.001,Youth working-age population by Age group,20 to 24 years old,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.001,Youth working-age population by Age group,25 to 29 years old,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.002,Youth working-age population (15 to 19 years old) by Disability status,Persons with disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.002,Youth working-age population (15 to 19 years old) by Disability status,Persons without disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.003,Youth working-age population (15 to 29 years old) by Disability status,Persons with disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.003,Youth working-age population (15 to 29 years old) by Disability status,Persons without disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.003,Youth working-age population (15 to 29 years old) by Disability status,Disability status not specified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__DISABILITY_STATUS--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.004,Youth working-age population (20 to 24 years old) by Disability status,Persons with disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.004,Youth working-age population (20 to 24 years old) by Disability status,Persons without disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.004,Youth working-age population (20 to 24 years old) by Disability status,Disability status not specified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__DISABILITY_STATUS--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.005,Youth working-age population (25 to 29 years old) by Disability status,Persons with disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.005,Youth working-age population (25 to 29 years old) by Disability status,Persons without disability,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.006,"Youth working-age population (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.006,"Youth working-age population (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.007,"Youth working-age population (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.007,"Youth working-age population (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.008,"Youth working-age population (15 to 29 years old, Disability status not specified) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.009,"Youth working-age population (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.009,"Youth working-age population (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.010,"Youth working-age population (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.010,"Youth working-age population (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.010,"Youth working-age population (15 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.011,"Youth working-age population (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.011,"Youth working-age population (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.012,"Youth working-age population (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.012,"Youth working-age population (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.013,"Youth working-age population (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.013,"Youth working-age population (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.014,"Youth working-age population (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.014,"Youth working-age population (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.014,"Youth working-age population (25 to 29 years old, Persons without disability) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__DISABILITY_STATUS--PWD,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.015,Youth working-age population (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.015,Youth working-age population (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.015,Youth working-age population (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.015,Youth working-age population (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.015,Youth working-age population (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.016,Youth working-age population (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.016,Youth working-age population (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.016,Youth working-age population (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.016,Youth working-age population (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.016,Youth working-age population (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.017,Youth working-age population (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.017,Youth working-age population (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.017,Youth working-age population (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.017,Youth working-age population (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.017,Youth working-age population (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.018,Youth working-age population (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.018,Youth working-age population (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.018,Youth working-age population (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.018,Youth working-age population (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.018,Youth working-age population (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.019,Youth working-age population (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.019,Youth working-age population (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.019,Youth working-age population (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.020,Youth working-age population (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.020,Youth working-age population (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.020,Youth working-age population (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.021,Youth working-age population (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.021,Youth working-age population (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.021,Youth working-age population (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.022,Youth working-age population (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.022,Youth working-age population (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.022,Youth working-age population (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.023,"Youth working-age population (15 to 19 years old, Attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.023,"Youth working-age population (15 to 19 years old, Attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.023,"Youth working-age population (15 to 19 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.024,"Youth working-age population (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.024,"Youth working-age population (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.025,"Youth working-age population (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.025,"Youth working-age population (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.026,"Youth working-age population (15 to 29 years old, Attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.026,"Youth working-age population (15 to 29 years old, Attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.026,"Youth working-age population (15 to 29 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.027,"Youth working-age population (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.027,"Youth working-age population (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.028,"Youth working-age population (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.028,"Youth working-age population (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.028,"Youth working-age population (15 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.029,"Youth working-age population (20 to 24 years old, Attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.029,"Youth working-age population (20 to 24 years old, Attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.029,"Youth working-age population (20 to 24 years old, Attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.030,"Youth working-age population (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.030,"Youth working-age population (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.031,"Youth working-age population (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.031,"Youth working-age population (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.031,"Youth working-age population (20 to 24 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.032,"Youth working-age population (25 to 29 years old, Attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.032,"Youth working-age population (25 to 29 years old, Attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.033,"Youth working-age population (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.033,"Youth working-age population (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.034,"Youth working-age population (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.034,"Youth working-age population (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.034,"Youth working-age population (25 to 29 years old, Not attending education) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.035,Youth working-age population (15 to 19 years old) by Labour market status,Outside the labour force,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.035,Youth working-age population (15 to 19 years old) by Labour market status,Employed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.035,Youth working-age population (15 to 19 years old) by Labour market status,Unemployed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.036,Youth working-age population (15 to 29 years old) by Labour market status,Outside the labour force,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.036,Youth working-age population (15 to 29 years old) by Labour market status,Employed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.036,Youth working-age population (15 to 29 years old) by Labour market status,Unemployed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.037,Youth working-age population (20 to 24 years old) by Labour market status,Outside the labour force,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.037,Youth working-age population (20 to 24 years old) by Labour market status,Employed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.037,Youth working-age population (20 to 24 years old) by Labour market status,Unemployed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.038,Youth working-age population (25 to 29 years old) by Labour market status,Outside the labour force,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.038,Youth working-age population (25 to 29 years old) by Labour market status,Employed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.038,Youth working-age population (25 to 29 years old) by Labour market status,Unemployed,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.039,"Youth working-age population (15 to 19 years old, Employed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.039,"Youth working-age population (15 to 19 years old, Employed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.040,"Youth working-age population (15 to 19 years old, Outside the labour force) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.040,"Youth working-age population (15 to 19 years old, Outside the labour force) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.040,"Youth working-age population (15 to 19 years old, Outside the labour force) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.041,"Youth working-age population (15 to 19 years old, Unemployed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.041,"Youth working-age population (15 to 19 years old, Unemployed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.042,"Youth working-age population (15 to 29 years old, Employed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.042,"Youth working-age population (15 to 29 years old, Employed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.042,"Youth working-age population (15 to 29 years old, Employed) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.043,"Youth working-age population (15 to 29 years old, Outside the labour force) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.043,"Youth working-age population (15 to 29 years old, Outside the labour force) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.043,"Youth working-age population (15 to 29 years old, Outside the labour force) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.044,"Youth working-age population (15 to 29 years old, Unemployed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.044,"Youth working-age population (15 to 29 years old, Unemployed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.045,"Youth working-age population (20 to 24 years old, Employed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.045,"Youth working-age population (20 to 24 years old, Employed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.046,"Youth working-age population (20 to 24 years old, Outside the labour force) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.046,"Youth working-age population (20 to 24 years old, Outside the labour force) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.046,"Youth working-age population (20 to 24 years old, Outside the labour force) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.047,"Youth working-age population (20 to 24 years old, Unemployed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.047,"Youth working-age population (20 to 24 years old, Unemployed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.048,"Youth working-age population (25 to 29 years old, Employed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.048,"Youth working-age population (25 to 29 years old, Employed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--EMP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.049,"Youth working-age population (25 to 29 years old, Outside the labour force) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.049,"Youth working-age population (25 to 29 years old, Outside the labour force) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.049,"Youth working-age population (25 to 29 years old, Outside the labour force) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__LABOUR_MARKET_STATUS--EIP,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.050,"Youth working-age population (25 to 29 years old, Unemployed) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.050,"Youth working-age population (25 to 29 years old, Unemployed) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__LABOUR_MARKET_STATUS--UNE,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.051,Youth working-age population (15 to 19 years old) by Sex,Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.051,Youth working-age population (15 to 19 years old) by Sex,Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.051,Youth working-age population (15 to 19 years old) by Sex,Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.052,Youth working-age population (15 to 29 years old) by Sex,Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.052,Youth working-age population (15 to 29 years old) by Sex,Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.052,Youth working-age population (15 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.053,Youth working-age population (20 to 24 years old) by Sex,Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.053,Youth working-age population (20 to 24 years old) by Sex,Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.053,Youth working-age population (20 to 24 years old) by Sex,Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.054,Youth working-age population (25 to 29 years old) by Sex,Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.054,Youth working-age population (25 to 29 years old) by Sex,Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.054,Youth working-age population (25 to 29 years old) by Sex,Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.055,"Youth working-age population (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.055,"Youth working-age population (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.055,"Youth working-age population (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.055,"Youth working-age population (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.055,"Youth working-age population (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.056,"Youth working-age population (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.056,"Youth working-age population (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.056,"Youth working-age population (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.056,"Youth working-age population (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.056,"Youth working-age population (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.057,"Youth working-age population (15 to 19 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.058,"Youth working-age population (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.058,"Youth working-age population (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.058,"Youth working-age population (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.058,"Youth working-age population (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.058,"Youth working-age population (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.059,"Youth working-age population (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.059,"Youth working-age population (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.059,"Youth working-age population (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.059,"Youth working-age population (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.059,"Youth working-age population (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.060,"Youth working-age population (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.060,"Youth working-age population (15 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.061,"Youth working-age population (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.061,"Youth working-age population (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.061,"Youth working-age population (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.061,"Youth working-age population (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.061,"Youth working-age population (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.062,"Youth working-age population (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.062,"Youth working-age population (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.062,"Youth working-age population (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.062,"Youth working-age population (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.062,"Youth working-age population (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.063,"Youth working-age population (20 to 24 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.064,"Youth working-age population (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.064,"Youth working-age population (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.064,"Youth working-age population (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.064,"Youth working-age population (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.064,"Youth working-age population (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.065,"Youth working-age population (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.065,"Youth working-age population (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.065,"Youth working-age population (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.065,"Youth working-age population (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.065,"Youth working-age population (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.066,"Youth working-age population (25 to 29 years old, Sex other than Female or Male) by Aggregate education levels",Basic education level,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.067,Youth working-age population (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.067,Youth working-age population (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.067,Youth working-age population (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T19__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.068,Youth working-age population (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.068,Youth working-age population (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.068,Youth working-age population (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y15T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.069,Youth working-age population (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.069,Youth working-age population (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.069,Youth working-age population (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y20T24__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.070,Youth working-age population (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.070,Youth working-age population (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.070,Youth working-age population (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.AGE--Y25T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.071,"Youth working-age population (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.071,"Youth working-age population (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.072,"Youth working-age population (15 to 19 years old, Rural) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.072,"Youth working-age population (15 to 19 years old, Rural) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.072,"Youth working-age population (15 to 19 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.073,"Youth working-age population (15 to 19 years old, Urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T19__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.073,"Youth working-age population (15 to 19 years old, Urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T19__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.073,"Youth working-age population (15 to 19 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T19__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.074,"Youth working-age population (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.074,"Youth working-age population (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.075,"Youth working-age population (15 to 29 years old, Rural) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.075,"Youth working-age population (15 to 29 years old, Rural) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.075,"Youth working-age population (15 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.076,"Youth working-age population (15 to 29 years old, Urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y15T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.076,"Youth working-age population (15 to 29 years old, Urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y15T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.076,"Youth working-age population (15 to 29 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y15T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.077,"Youth working-age population (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.077,"Youth working-age population (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.078,"Youth working-age population (20 to 24 years old, Rural) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.078,"Youth working-age population (20 to 24 years old, Rural) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.079,"Youth working-age population (20 to 24 years old, Urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y20T24__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.079,"Youth working-age population (20 to 24 years old, Urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y20T24__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.079,"Youth working-age population (20 to 24 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y20T24__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.080,"Youth working-age population (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.080,"Youth working-age population (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.081,"Youth working-age population (25 to 29 years old, Rural) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.081,"Youth working-age population (25 to 29 years old, Rural) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.081,"Youth working-age population (25 to 29 years old, Rural) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__URBANISATION--R,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.082,"Youth working-age population (25 to 29 years old, Urban) by Sex",Female,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--F__AGE--Y25T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.082,"Youth working-age population (25 to 29 years old, Urban) by Sex",Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--M__AGE--Y25T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_3WAP_NB.082,"Youth working-age population (25 to 29 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_POP_3WAP_NB,ilo/POP_3WAP_NB.SEX--O__AGE--Y25T29__URBANISATION--U,POP_3WAP_NB,Youth working-age population +POP_XWAP_NB.001,Working-age population,Total,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Less than basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Intermediate education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Advanced education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Early childhood education (ISCED11_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Primary education (ISCED11_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Lower secondary education (ISCED11_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Upper secondary education (ISCED11_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Short-cycle tertiary education (ISCED11_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Master's or equivalent level (ISCED11_7),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Doctoral or equivalent level (ISCED11_8),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Not elsewhere classified (ISCED11_9),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,No schooling (ISCED11_X),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Pre-primary education (ISCED97_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Upper secondary education (ISCED97_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Education level not stated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,No schooling,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Single,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Widowed,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Divorced or legally separated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Married,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Union / Cohabiting,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Marital status not elsewhere classified,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Persons with disability,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,Persons without disability,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,15 to 24 years old,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,15 to 64 years old,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,15 years old and over,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.002,Working-age population,25 years old and over,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.003,Working-age population,Total,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.004,Working-age population,Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.004,Working-age population,Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.004,Working-age population,Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.005,Working-age population (15 to 24 years old),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.005,Working-age population (15 to 24 years old),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.005,Working-age population (15 to 24 years old),Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.006,Working-age population (15 to 64 years old),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.006,Working-age population (15 to 64 years old),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.006,Working-age population (15 to 64 years old),Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.007,Working-age population (15 years old and over),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.007,Working-age population (15 years old and over),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.007,Working-age population (15 years old and over),Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.008,Working-age population (25 years old and over),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.008,Working-age population (25 years old and over),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.008,Working-age population (25 years old and over),Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Less than basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Intermediate education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Advanced education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Early childhood education (ISCED11_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Primary education (ISCED11_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Lower secondary education (ISCED11_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Upper secondary education (ISCED11_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Short-cycle tertiary education (ISCED11_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Master's or equivalent level (ISCED11_7),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Doctoral or equivalent level (ISCED11_8),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Not elsewhere classified (ISCED11_9),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),No schooling (ISCED11_X),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Pre-primary education (ISCED97_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Upper secondary education (ISCED97_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Education level not stated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),No schooling,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Single,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Widowed,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Divorced or legally separated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Married,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Union / Cohabiting,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.009,Working-age population (Female),Marital status not elsewhere classified,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Less than basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Intermediate education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Advanced education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Early childhood education (ISCED11_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Primary education (ISCED11_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Lower secondary education (ISCED11_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Upper secondary education (ISCED11_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Short-cycle tertiary education (ISCED11_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Master's or equivalent level (ISCED11_7),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Doctoral or equivalent level (ISCED11_8),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Not elsewhere classified (ISCED11_9),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),No schooling (ISCED11_X),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Pre-primary education (ISCED97_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Upper secondary education (ISCED97_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Education level not stated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),No schooling,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Single,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Widowed,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Divorced or legally separated,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Married,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Union / Cohabiting,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.010,Working-age population (Male),Marital status not elsewhere classified,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.011,Working-age population (Persons with disability),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.011,Working-age population (Persons with disability),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.012,Working-age population (Persons without disability),Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.012,Working-age population (Persons without disability),Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Less than basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Basic education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Intermediate education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Advanced education level,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Primary education (ISCED11_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Lower secondary education (ISCED11_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Upper secondary education (ISCED11_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Short-cycle tertiary education (ISCED11_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Master's or equivalent level (ISCED11_7),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),No schooling (ISCED11_X),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Pre-primary education (ISCED97_0),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Upper secondary education (ISCED97_3),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),No schooling,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Single,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Widowed,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.013,Working-age population (Sex other than Female or Male),Married,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.014,Working-age population,Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.014,Working-age population,Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.014,Working-age population,Sex other than Female or Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.015,Working-age population,Total,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.016,Working-age population,Female,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +POP_XWAP_NB.016,Working-age population,Male,DROP,,ILO_POP_XWAP_NB,ilo/POP_XWAP_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,POP_XWAP_NB,Working-age population +PSE_TPSE_NB.001,Public sector employment,Total,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,General government,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GG,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,General government - Local,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGLOCAL,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,General government - Regional,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGREGION,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,General government - Central,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGCENTRAL,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,General government - Social security,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_GGSS,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.002,Public sector employment by Total public sector,Public corporations,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PUBCORP,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.003,Public sector employment by Institutional sector,Total public sector,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PSE,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.003,Public sector employment by Institutional sector,Private sector,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_PRV,PSE_TPSE_NB,Public sector employment +PSE_TPSE_NB.003,Public sector employment by Institutional sector,Institutional sector not classified,,,ILO_PSE_TPSE_NB,ilo/PSE_TPSE_NB.GOVERNMENT_LEVEL--GOV_LVL_X,PSE_TPSE_NB,Public sector employment +SDG_0111_RT.001,Proportion of population below the international poverty line (SDG indicator 1.1.1) by Age group,15 to 24 years old,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.AGE--Y15T24,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.001,Proportion of population below the international poverty line (SDG indicator 1.1.1) by Age group,15 years old and over,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.AGE--Y_GE15,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.001,Proportion of population below the international poverty line (SDG indicator 1.1.1) by Age group,25 years old and over,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.AGE--Y_GE25,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.002,Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 to 24 years old) by Sex,Female,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--F__AGE--Y15T24,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.002,Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 to 24 years old) by Sex,Male,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--M__AGE--Y15T24,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.003,Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 years old and over) by Sex,Female,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--F__AGE--Y_GE15,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.003,Proportion of population below the international poverty line (SDG indicator 1.1.1) (15 years old and over) by Sex,Male,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--M__AGE--Y_GE15,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.004,Proportion of population below the international poverty line (SDG indicator 1.1.1) (25 years old and over) by Sex,Female,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--F__AGE--Y_GE25,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0111_RT.004,Proportion of population below the international poverty line (SDG indicator 1.1.1) (25 years old and over) by Sex,Male,,,ILO_SDG_0111_RT,ilo/SDG_0111_RT.SEX--M__AGE--Y_GE25,SDG_0111_RT,Proportion of population below the international poverty line (SDG indicator 1.1.1) +SDG_0552_RT.001,Proportion of women in senior and middle management positions (SDG indicator 5.5.2),Total,,,ILO_SDG_0552_RT,ilo/SDG_0552_RT,SDG_0552_RT,Proportion of women in senior and middle management positions (SDG indicator 5.5.2) +SDG_0552_RT.002,Proportion of women in senior and middle management positions (SDG indicator 5.5.2),Total,DROP,,ILO_SDG_0552_RT,ilo/SDG_0552_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0552_RT,Proportion of women in senior and middle management positions (SDG indicator 5.5.2) +SDG_0831_RT.001,Proportion of informal employment in total employment (SDG indicator 8.3.1),Total,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.002,Proportion of informal employment in total employment (SDG indicator 8.3.1),Total,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.003,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.003,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.004,Proportion of informal employment in total employment (SDG indicator 8.3.1),Female,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.004,Proportion of informal employment in total employment (SDG indicator 8.3.1),Male,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.004,Proportion of informal employment in total employment (SDG indicator 8.3.1),Sex other than Female or Male,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.005,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.005,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.006,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.006,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.007,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Agriculture / Non-agriculture,Agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.007,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Agriculture / Non-agriculture,Non-agriculture,DROP,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG__EDUCATION_LEVEL--_Z,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.008,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Agriculture / Non-agriculture,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGNAG_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.008,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Agriculture / Non-agriculture,Non-agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGNAG_NAG,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,Construction,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,Manufacturing,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.009,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.010,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic sector,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.010,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic sector,Industry,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_IND,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.010,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic sector,Services,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_SER,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.010,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic sector,Not classified by economic sector,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--ECO_SECTOR_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.011,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.ECONOMIC_ACTIVITY--_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.012,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Sex,Female,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.012,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Sex,Male,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.012,Proportion of informal employment in total employment (SDG indicator 8.3.1) by Sex,Sex other than Female or Male,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.013,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Agriculture / Non-agriculture,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.013,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Agriculture / Non-agriculture,Non-agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.014,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Agriculture / Non-agriculture,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.014,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Agriculture / Non-agriculture,Non-agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.015,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Agriculture / Non-agriculture,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGNAG_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.015,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Agriculture / Non-agriculture,Non-agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGNAG_NAG,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,Construction,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,Manufacturing,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.016,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,Construction,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,Manufacturing,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.017,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.018,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Aggregate economic activities,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.018,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.018,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.019,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic sector,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.019,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic sector,Industry,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.019,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic sector,Services,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.019,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic sector,Not classified by economic sector,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.020,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic sector,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.020,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic sector,Industry,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.020,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic sector,Services,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.020,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic sector,Not classified by economic sector,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.021,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Economic sector,Agriculture,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.021,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Economic sector,Industry,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.021,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Sex other than Female or Male) by Economic sector,Services,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--O__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.022,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Female) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--F__ECONOMIC_ACTIVITY--_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0831_RT.023,Proportion of informal employment in total employment (SDG indicator 8.3.1) (Male) by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_SDG_0831_RT,ilo/SDG_0831_RT.SEX--M__ECONOMIC_ACTIVITY--_X,SDG_0831_RT,Proportion of informal employment in total employment (SDG indicator 8.3.1) +SDG_0851_NB.001,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Total,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Armed forces occupations (ISCO08_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Occupations with skill level 1 (low),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Occupations with skill level 2 (medium),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Occupations with skill levels 3 and 4 (high),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L3-4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Occupations not elsewhere classified,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Managers (ISCO08_1),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Professionals (ISCO08_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Technicians and associate professionals (ISCO08_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Clerical support workers (ISCO08_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Service and sales workers (ISCO08_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),"Skilled agricultural, forestry and fishery workers (ISCO08_6)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Craft and related trades workers (ISCO08_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),"Plant and machine operators, and assemblers (ISCO08_8)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Elementary occupations (ISCO08_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Occupations not elsewhere classified (ISCO08_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Armed forces (ISCO88_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),"Legislators, senior officials and managers (ISCO88_1)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Professionals (ISCO88_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Technicians and associate professionals (ISCO88_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Clerks (ISCO88_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Service workers and shop and market sales workers (ISCO88_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Skilled agricultural and fishery workers (ISCO88_6),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Craft and related trades workers (ISCO88_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Plant and machine operators and assemblers (ISCO88_8),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Elementary occupations (ISCO88_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.002,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Not elsewhere classified (ISCO88_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.003,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Female,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.003,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Male,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.003,Average hourly earnings of female and male employees (SDG indicator 8.5.1),Sex other than Female or Male,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Armed forces occupations (ISCO08_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Occupations with skill level 1 (low),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Occupations with skill level 2 (medium),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Occupations with skill levels 3 and 4 (high),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L3-4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Occupations not elsewhere classified,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Managers (ISCO08_1),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Professionals (ISCO08_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Technicians and associate professionals (ISCO08_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Clerical support workers (ISCO08_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Service and sales workers (ISCO08_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),"Skilled agricultural, forestry and fishery workers (ISCO08_6)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Craft and related trades workers (ISCO08_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),"Plant and machine operators, and assemblers (ISCO08_8)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Elementary occupations (ISCO08_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Occupations not elsewhere classified (ISCO08_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Armed forces (ISCO88_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),"Legislators, senior officials and managers (ISCO88_1)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Professionals (ISCO88_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Technicians and associate professionals (ISCO88_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Clerks (ISCO88_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Service workers and shop and market sales workers (ISCO88_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Skilled agricultural and fishery workers (ISCO88_6),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Craft and related trades workers (ISCO88_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Plant and machine operators and assemblers (ISCO88_8),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Elementary occupations (ISCO88_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.004,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Female),Not elsewhere classified (ISCO88_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Armed forces occupations (ISCO08_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Occupations with skill level 1 (low),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Occupations with skill level 2 (medium),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Occupations with skill levels 3 and 4 (high),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L3-4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Occupations not elsewhere classified,DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Managers (ISCO08_1),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Professionals (ISCO08_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Technicians and associate professionals (ISCO08_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Clerical support workers (ISCO08_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Service and sales workers (ISCO08_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),"Skilled agricultural, forestry and fishery workers (ISCO08_6)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Craft and related trades workers (ISCO08_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),"Plant and machine operators, and assemblers (ISCO08_8)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Elementary occupations (ISCO08_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Occupations not elsewhere classified (ISCO08_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO08_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Armed forces (ISCO88_0),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_0__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),"Legislators, senior officials and managers (ISCO88_1)",DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_1__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Professionals (ISCO88_2),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Technicians and associate professionals (ISCO88_3),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_3__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Clerks (ISCO88_4),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Service workers and shop and market sales workers (ISCO88_5),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_5__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Skilled agricultural and fishery workers (ISCO88_6),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_6__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Craft and related trades workers (ISCO88_7),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_7__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Plant and machine operators and assemblers (ISCO88_8),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_8__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Elementary occupations (ISCO88_9),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_9__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.005,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Male),Not elsewhere classified (ISCO88_X),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--ISCO88_X__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.006,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Sex other than Female or Male),Occupations with skill level 2 (medium),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L2__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0851_NB.006,Average hourly earnings of female and male employees (SDG indicator 8.5.1) (Sex other than Female or Male),Occupations with skill levels 3 and 4 (high),DROP,,ILO_SDG_0851_NB,ilo/SDG_0851_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--SKILL_L3-4__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0851_NB,Average hourly earnings of female and male employees (SDG indicator 8.5.1) +SDG_0852_RT.001,Unemployment rate (SDG indicator 8.5.2),15 to 24 years old,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.001,Unemployment rate (SDG indicator 8.5.2),15 years old and over,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.001,Unemployment rate (SDG indicator 8.5.2),25 years old and over,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.002,Unemployment rate (SDG indicator 8.5.2) (15 to 24 years old),Female,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.002,Unemployment rate (SDG indicator 8.5.2) (15 to 24 years old),Male,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.003,Unemployment rate (SDG indicator 8.5.2) (15 years old and over),Female,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.003,Unemployment rate (SDG indicator 8.5.2) (15 years old and over),Male,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.003,Unemployment rate (SDG indicator 8.5.2) (15 years old and over),Sex other than Female or Male,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--O__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.004,Unemployment rate (SDG indicator 8.5.2) (25 years old and over),Female,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.004,Unemployment rate (SDG indicator 8.5.2) (25 years old and over),Male,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0852_RT.004,Unemployment rate (SDG indicator 8.5.2) (25 years old and over),Sex other than Female or Male,DROP,,ILO_SDG_0852_RT,ilo/SDG_0852_RT.SEX--O__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_0852_RT,Unemployment rate (SDG indicator 8.5.2) +SDG_0861_RT.001,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1)",Total,,,ILO_SDG_0861_RT,ilo/SDG_0861_RT,SDG_0861_RT,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1)" +SDG_0861_RT.002,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) by Sex",Female,,,ILO_SDG_0861_RT,ilo/SDG_0861_RT.SEX--F,SDG_0861_RT,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) " +SDG_0861_RT.002,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) by Sex",Male,,,ILO_SDG_0861_RT,ilo/SDG_0861_RT.SEX--M,SDG_0861_RT,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) " +SDG_0861_RT.002,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) by Sex",Sex other than Female or Male,,,ILO_SDG_0861_RT,ilo/SDG_0861_RT.SEX--O,SDG_0861_RT,"Proportion of youth (aged 15-24 years) not in education, employment or training (SDG indicator 8.6.1) " +SDG_0882_RT.001,Level of national compliance with labour rights (freedom of association and collective bargaining) based on ILO textual sources and national legislation (SDG indicator 8.8.2),Total,,,ILO_SDG_0882_RT,ilo/SDG_0882_RT,SDG_0882_RT,Level of national compliance with labour rights (freedom of association and collective bargaining) based on ILO textual sources and national legislation (SDG indicator 8.8.2) +SDG_0922_RT.001,Manufacturing employment as a proportion of total employment (SDG indicator 9.2.2),Total,,,ILO_SDG_0922_RT,ilo/SDG_0922_RT,SDG_0922_RT,Manufacturing employment as a proportion of total employment (SDG indicator 9.2.2) +SDG_1041_RT.001,"Labour share of GDP, comprising wages and social protection transfers (SDG indicator 10.4.1)",Total,,,ILO_SDG_1041_RT,ilo/SDG_1041_RT,SDG_1041_RT,"Labour share of GDP, comprising wages and social protection transfers (SDG indicator 10.4.1)" +SDG_A821_RT.001,Annual growth rate of real GDP per employed person (calculated using data on GDP in constant 2010 US dollars) (SDG indicator 8.2.1),Total,,,ILO_SDG_A821_RT,ilo/SDG_A821_RT,SDG_A821_RT,Annual growth rate of real GDP per employed person (calculated using data on GDP in constant 2010 US dollars) (SDG indicator 8.2.1) +SDG_B821_RT.001,Annual growth rate of real GDP per employed person (calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity) (SDG indicator 8.2.1),Total,,,ILO_SDG_B821_RT,ilo/SDG_B821_RT,SDG_B821_RT,Annual growth rate of real GDP per employed person (calculated using data on GDP in constant 2017 international dollars at Purchasing Power Parity) (SDG indicator 8.2.1) +SDG_F881_RT.001,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1),Total,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.002,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Migrants,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.MIGRATORY_STATUS--MS_MIGRANT,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.002,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Non-migrant,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.MIGRATORY_STATUS--MS_NOMIGRANT,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.002,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Unknown migratory status,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.MIGRATORY_STATUS--_X,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.003,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex,Female,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.003,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex,Male,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.004,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex,Female,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.004,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex,Male,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.005,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex,Female,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--F__MIGRATORY_STATUS--_X,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.005,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex,Male,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--M__MIGRATORY_STATUS--_X,SDG_F881_RT,Fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.006,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex,Female,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--F,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_F881_RT.006,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex,Male,,,ILO_SDG_F881_RT,ilo/SDG_F881_RT.SEX--M,SDG_F881_RT,Fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.001,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1),Total,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.002,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Migrants,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.MIGRATORY_STATUS--MS_MIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.002,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Non-migrant,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.MIGRATORY_STATUS--MS_NOMIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.002,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Migratory status,Unknown migratory status,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.MIGRATORY_STATUS--_X,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.003,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex,Female,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--MS_MIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.003,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Migrants) by Sex,Male,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--MS_MIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.004,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex,Female,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--MS_NOMIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.004,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Non-migrant) by Sex,Male,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--MS_NOMIGRANT,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.005,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex,Female,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--F__MIGRATORY_STATUS--_X,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.005,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) (Unknown migratory status) by Sex,Male,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--M__MIGRATORY_STATUS--_X,SDG_N881_RT,Non-fatal occupational injuries per 100\'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.006,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex,Female,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--F,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_N881_RT.006,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) by Sex,Male,,,ILO_SDG_N881_RT,ilo/SDG_N881_RT.SEX--M,SDG_N881_RT,Non-fatal occupational injuries per 100'000 workers (SDG indicator 8.8.1) +SDG_T552_RT.001,Proportion of women in managerial positions (SDG indicator 5.5.2),Total,,,ILO_SDG_T552_RT,ilo/SDG_T552_RT,SDG_T552_RT,Proportion of women in managerial positions (SDG indicator 5.5.2) +SDG_T552_RT.002,Proportion of women in managerial positions (SDG indicator 5.5.2),Total,DROP,,ILO_SDG_T552_RT,ilo/SDG_T552_RT.SEX--_Z__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,SDG_T552_RT,Proportion of women in managerial positions (SDG indicator 5.5.2) +STR_DAYS_NB.001,Days not worked due to strikes and lockouts,Total,,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,Agriculture,,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,Construction,,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,Manufacturing,,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.002,Days not worked due to strikes and lockouts by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_0,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_1,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_2,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_3,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_4,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_5,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_6,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_7,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_8,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.003,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC2_9,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_A,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_B,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_C,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_D,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_E,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_F,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_G,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_H,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_I,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_J,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_K,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_L,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_M,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_N,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_O,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_P,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.004,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC3_Q,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_A,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_B,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_C,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_D,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_E,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_F,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_G,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_H,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_I,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_J,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_K,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_L,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_M,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_N,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_O,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_P,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_Q,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_R,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_S,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_U,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.005,Days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--ISIC4_X,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_NB.006,Days not worked due to strikes and lockouts by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_STR_DAYS_NB,ilo/STR_DAYS_NB.ECONOMIC_ACTIVITY--_X,STR_DAYS_NB,Days not worked due to strikes and lockouts +STR_DAYS_RT.001,Rates of days not worked due to strikes and lockouts,Total,,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_0,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_1,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_2,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_3,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_4,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_5,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_6,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_7,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_8,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.002,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC2_9,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_A,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_B,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_C,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_D,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_E,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_F,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_G,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_H,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_I,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_J,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_K,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_L,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_M,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_N,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_O,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_P,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.003,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC3_Q,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_A,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_B,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_C,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_D,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_E,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_F,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_G,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_H,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_I,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_J,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_K,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_L,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_M,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_N,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_O,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_P,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_Q,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_R,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_S,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_U,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.004,Rates of days not worked due to strikes and lockouts by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--ISIC4_X,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_DAYS_RT.005,Rates of days not worked due to strikes and lockouts by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_STR_DAYS_RT,ilo/STR_DAYS_RT.ECONOMIC_ACTIVITY--_X,STR_DAYS_RT,Rates of days not worked due to strikes and lockouts +STR_TSTR_NB.001,Strikes and lockouts,Total,,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_0,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_1,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_2,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_3,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_4,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_5,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_6,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_7,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_8,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.002,Strikes and lockouts by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC2_9,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_A,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_B,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_C,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_D,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_E,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_F,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_G,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_H,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_I,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_J,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_K,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_L,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_M,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_N,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_O,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_P,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.003,Strikes and lockouts by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC3_Q,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_A,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_B,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_C,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_D,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_E,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_F,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_G,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_H,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_I,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_J,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_K,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_L,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_M,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_N,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_O,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_P,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_Q,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_R,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_S,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_U,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.004,Strikes and lockouts by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--ISIC4_X,STR_TSTR_NB,Strikes and lockouts +STR_TSTR_NB.005,Strikes and lockouts by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_STR_TSTR_NB,ilo/STR_TSTR_NB.ECONOMIC_ACTIVITY--_X,STR_TSTR_NB,Strikes and lockouts +STR_WORK_NB.001,Workers involved in strikes and lockouts,Total,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,Agriculture,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,Construction,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,Manufacturing,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,"Mining and quarrying; Electricity, gas and water supply",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,"Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.002,Workers involved in strikes and lockouts by Aggregate economic activities,"Public Administration, Community, Social and other Services and Activities",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.003,Workers involved in strikes and lockouts by Economic sector,Agriculture,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.003,Workers involved in strikes and lockouts by Economic sector,Non-agriculture,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.003,Workers involved in strikes and lockouts by Economic sector,Industry,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.003,Workers involved in strikes and lockouts by Economic sector,Services,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.003,Workers involved in strikes and lockouts by Economic sector,Not classified by economic sector,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,Activities not Adequately Defined (ISIC2_0),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_0,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,"Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_1,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,Mining and Quarrying (ISIC2_2),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_2,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,Manufacturing (ISIC2_3),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_3,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,"Electricity, Gas and Water (ISIC2_4)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_4,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,Construction (ISIC2_5),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_5,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_6,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,"Transport, Storage and Communication (ISIC2_7)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_7,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,"Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_8,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.004,Workers involved in strikes and lockouts by Major division of ISIC Rev. 2,"Community, Social and Personal Services (ISIC2_9)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC2_9,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Agriculture, hunting and forestry (ISIC3_A)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_A,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Fishing (ISIC3_B),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_B,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Mining and quarrying (ISIC3_C),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_C,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Manufacturing (ISIC3_D),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_D,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Electricity, gas and water supply (ISIC3_E)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_E,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Construction (ISIC3_F),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_F,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_G,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Hotels and restaurants (ISIC3_H),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_H,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Transport, storage and communications (ISIC3_I)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_I,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Financial intermediation (ISIC3_J),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_J,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Real estate, renting and business activities (ISIC3_K)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_K,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Public administration and defence; compulsory social security (ISIC3_L),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_L,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Education (ISIC3_M),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_M,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Health and social work (ISIC3_N),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_N,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,"Other community, social and personal service activities (ISIC3_O)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_O,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_P,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.005,Workers involved in strikes and lockouts by Major division of ISIC Rev. 3,Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC3_Q,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Agriculture; forestry and fishing (ISIC4_A),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_A,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Mining and quarrying (ISIC4_B),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_B,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Manufacturing (ISIC4_C),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_C,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,"Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_D,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,"Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_E,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Construction (ISIC4_F),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_F,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_G,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Transportation and storage (ISIC4_H),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_H,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Accommodation and food service activities (ISIC4_I),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_I,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Information and communication (ISIC4_J),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_J,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Financial and insurance activities (ISIC4_K),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_K,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Real estate activities (ISIC4_L),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_L,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,"Professional, scientific and technical activities (ISIC4_M)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_M,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Administrative and support service activities (ISIC4_N),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_N,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Public administration and defence; compulsory social security (ISIC4_O),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_O,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Education (ISIC4_P),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_P,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Human health and social work activities (ISIC4_Q),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_Q,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,"Arts, entertainment and recreation (ISIC4_R)",,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_R,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Other service activities (ISIC4_S),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_S,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_U,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.006,Workers involved in strikes and lockouts by Major division of ISIC Rev. 4,Economic activities not elsewhere classified (ISIC4_X),,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--ISIC4_X,STR_WORK_NB,Workers involved in strikes and lockouts +STR_WORK_NB.007,Workers involved in strikes and lockouts by Economic activities not elsewhere classified,Economic activities not elsewhere classified,,,ILO_STR_WORK_NB,ilo/STR_WORK_NB.ECONOMIC_ACTIVITY--_X,STR_WORK_NB,Workers involved in strikes and lockouts +TRU_3TRU_NB.001,Youth time-related underemployment by Age group,15 to 19 years old,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T19,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.001,Youth time-related underemployment by Age group,15 to 29 years old,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.001,Youth time-related underemployment by Age group,20 to 24 years old,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y20T24,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.001,Youth time-related underemployment by Age group,25 to 29 years old,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y25T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.002,Youth time-related underemployment (15 to 19 years old) by Sex,Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.002,Youth time-related underemployment (15 to 19 years old) by Sex,Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.003,Youth time-related underemployment (15 to 29 years old) by Sex,Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.003,Youth time-related underemployment (15 to 29 years old) by Sex,Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.004,Youth time-related underemployment (20 to 24 years old) by Sex,Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.004,Youth time-related underemployment (20 to 24 years old) by Sex,Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.005,Youth time-related underemployment (25 to 29 years old) by Sex,Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.005,Youth time-related underemployment (25 to 29 years old) by Sex,Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.006,Youth time-related underemployment (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.006,Youth time-related underemployment (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.006,Youth time-related underemployment (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T19__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.007,Youth time-related underemployment (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.007,Youth time-related underemployment (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.007,Youth time-related underemployment (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y15T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.008,Youth time-related underemployment (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.008,Youth time-related underemployment (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.008,Youth time-related underemployment (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y20T24__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.009,Youth time-related underemployment (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.009,Youth time-related underemployment (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.009,Youth time-related underemployment (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.AGE--Y25T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.010,"Youth time-related underemployment (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.010,"Youth time-related underemployment (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.011,"Youth time-related underemployment (15 to 19 years old, Rural) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.011,"Youth time-related underemployment (15 to 19 years old, Rural) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.012,"Youth time-related underemployment (15 to 19 years old, Urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T19__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.012,"Youth time-related underemployment (15 to 19 years old, Urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T19__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.013,"Youth time-related underemployment (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.013,"Youth time-related underemployment (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.014,"Youth time-related underemployment (15 to 29 years old, Rural) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.014,"Youth time-related underemployment (15 to 29 years old, Rural) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.015,"Youth time-related underemployment (15 to 29 years old, Urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y15T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.015,"Youth time-related underemployment (15 to 29 years old, Urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y15T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.016,"Youth time-related underemployment (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.016,"Youth time-related underemployment (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.017,"Youth time-related underemployment (20 to 24 years old, Rural) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.017,"Youth time-related underemployment (20 to 24 years old, Rural) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.018,"Youth time-related underemployment (20 to 24 years old, Urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y20T24__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.018,"Youth time-related underemployment (20 to 24 years old, Urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y20T24__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.019,"Youth time-related underemployment (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.019,"Youth time-related underemployment (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.020,"Youth time-related underemployment (25 to 29 years old, Rural) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.020,"Youth time-related underemployment (25 to 29 years old, Rural) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--R,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.021,"Youth time-related underemployment (25 to 29 years old, Urban) by Sex",Female,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--F__AGE--Y25T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_3TRU_NB.021,"Youth time-related underemployment (25 to 29 years old, Urban) by Sex",Male,,,ILO_TRU_3TRU_NB,ilo/TRU_3TRU_NB.SEX--M__AGE--Y25T29__URBANISATION--U,TRU_3TRU_NB,Youth time-related underemployment +TRU_5EMP_RT.001,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.AGE--Y15T24,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.001,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.AGE--Y_GE15,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.001,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.AGE--Y_GE25,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.002,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--F__AGE--Y15T24,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.002,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--M__AGE--Y15T24,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.003,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--F__AGE--Y_GE15,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.003,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--M__AGE--Y_GE15,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.004,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--F__AGE--Y_GE25,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5EMP_RT.004,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_TRU_5EMP_RT,ilo/TRU_5EMP_RT.SEX--M__AGE--Y_GE25,TRU_5EMP_RT,"Time-related underemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.001,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.AGE--Y15T24,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.001,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.AGE--Y_GE15,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.001,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.AGE--Y_GE25,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.002,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--F__AGE--Y15T24,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.002,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--M__AGE--Y15T24,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.003,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--F__AGE--Y_GE15,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.003,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--M__AGE--Y_GE15,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.004,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--F__AGE--Y_GE25,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +TRU_5TRU_NB.004,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_TRU_5TRU_NB,ilo/TRU_5TRU_NB.SEX--M__AGE--Y_GE25,TRU_5TRU_NB,"Time-related underemployment, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_2EAP_RT.001,Unemployment rate (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y15T24,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.001,Unemployment rate (ILO modelled estimates) by Age group,15 years old and over,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE15,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.001,Unemployment rate (ILO modelled estimates) by Age group,25 years old and over,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE25,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.002,Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.002,Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.003,Unemployment rate (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.003,Unemployment rate (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.004,Unemployment rate (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.004,Unemployment rate (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.005,Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y15T24__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.005,Unemployment rate (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y15T24__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.006,Unemployment rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE15__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.006,Unemployment rate (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE15__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.007,Unemployment rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE25__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.007,Unemployment rate (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.AGE--Y_GE25__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.008,"Unemployment rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.008,"Unemployment rate (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.009,"Unemployment rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y15T24__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.009,"Unemployment rate (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y15T24__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.010,"Unemployment rate (ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.010,"Unemployment rate (ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.011,"Unemployment rate (ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE15__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.011,"Unemployment rate (ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE15__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.012,"Unemployment rate (ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.012,"Unemployment rate (ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--R,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.013,"Unemployment rate (ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--F__AGE--Y_GE25__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2EAP_RT.013,"Unemployment rate (ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_UNE_2EAP_RT,ilo/UNE_2EAP_RT.SEX--M__AGE--Y_GE25__URBANISATION--U,UNE_2EAP_RT,Unemployment rate (ILO modelled estimates) +UNE_2UNE_NB.001,Unemployment (ILO modelled estimates) by Age group,15 to 24 years old,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y15T24,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.001,Unemployment (ILO modelled estimates) by Age group,15 years old and over,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE15,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.001,Unemployment (ILO modelled estimates) by Age group,25 years old and over,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE25,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.002,Unemployment (ILO modelled estimates),15 to 24 years old,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.002,Unemployment (ILO modelled estimates),15 years old and over,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.002,Unemployment (ILO modelled estimates),25 years old and over,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.003,Unemployment (ILO modelled estimates) (15 to 24 years old),Female,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.003,Unemployment (ILO modelled estimates) (15 to 24 years old),Male,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.004,Unemployment (ILO modelled estimates) (15 years old and over),Female,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.004,Unemployment (ILO modelled estimates) (15 years old and over),Male,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.005,Unemployment (ILO modelled estimates) (25 years old and over),Female,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.005,Unemployment (ILO modelled estimates) (25 years old and over),Male,DROP,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.006,Unemployment (ILO modelled estimates) (15 to 24 years old) by Sex,Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.006,Unemployment (ILO modelled estimates) (15 to 24 years old) by Sex,Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.007,Unemployment (ILO modelled estimates) (15 years old and over) by Sex,Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.007,Unemployment (ILO modelled estimates) (15 years old and over) by Sex,Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.008,Unemployment (ILO modelled estimates) (25 years old and over) by Sex,Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.008,Unemployment (ILO modelled estimates) (25 years old and over) by Sex,Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.009,Unemployment (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y15T24__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.009,Unemployment (ILO modelled estimates) (15 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y15T24__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.010,Unemployment (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE15__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.010,Unemployment (ILO modelled estimates) (15 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE15__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.011,Unemployment (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE25__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.011,Unemployment (ILO modelled estimates) (25 years old and over) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.AGE--Y_GE25__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.012,"Unemployment (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.012,"Unemployment (ILO modelled estimates) (15 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.013,"Unemployment (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y15T24__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.013,"Unemployment (ILO modelled estimates) (15 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y15T24__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.014,"Unemployment (ILO modelled estimates) (15 years old and over, Rural) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.014,"Unemployment (ILO modelled estimates) (15 years old and over, Rural) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.015,"Unemployment (ILO modelled estimates) (15 years old and over, Urban) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.015,"Unemployment (ILO modelled estimates) (15 years old and over, Urban) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.016,"Unemployment (ILO modelled estimates) (25 years old and over, Rural) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.016,"Unemployment (ILO modelled estimates) (25 years old and over, Rural) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--R,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.017,"Unemployment (ILO modelled estimates) (25 years old and over, Urban) by Sex",Female,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_2UNE_NB.017,"Unemployment (ILO modelled estimates) (25 years old and over, Urban) by Sex",Male,,,ILO_UNE_2UNE_NB,ilo/UNE_2UNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--U,UNE_2UNE_NB,Unemployment (ILO modelled estimates) +UNE_3EAP_RT.001,Youth unemployment rate by Age group,15 to 19 years old,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.001,Youth unemployment rate by Age group,15 to 29 years old,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.001,Youth unemployment rate by Age group,20 to 24 years old,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.001,Youth unemployment rate by Age group,25 to 29 years old,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.002,Youth unemployment rate (15 to 19 years old) by Disability status,Persons with disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.002,Youth unemployment rate (15 to 19 years old) by Disability status,Persons without disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.003,Youth unemployment rate (15 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.003,Youth unemployment rate (15 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.004,Youth unemployment rate (20 to 24 years old) by Disability status,Persons with disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.004,Youth unemployment rate (20 to 24 years old) by Disability status,Persons without disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.005,Youth unemployment rate (25 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.005,Youth unemployment rate (25 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.006,"Youth unemployment rate (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.006,"Youth unemployment rate (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.007,"Youth unemployment rate (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.007,"Youth unemployment rate (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.008,"Youth unemployment rate (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.008,"Youth unemployment rate (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.009,"Youth unemployment rate (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.009,"Youth unemployment rate (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.010,"Youth unemployment rate (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.010,"Youth unemployment rate (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.011,"Youth unemployment rate (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.011,"Youth unemployment rate (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.012,"Youth unemployment rate (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.012,"Youth unemployment rate (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.013,"Youth unemployment rate (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.013,"Youth unemployment rate (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.014,Youth unemployment rate (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.014,Youth unemployment rate (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.014,Youth unemployment rate (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.014,Youth unemployment rate (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.014,Youth unemployment rate (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.015,Youth unemployment rate (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.015,Youth unemployment rate (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.015,Youth unemployment rate (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.015,Youth unemployment rate (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.015,Youth unemployment rate (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.016,Youth unemployment rate (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.016,Youth unemployment rate (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.016,Youth unemployment rate (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.016,Youth unemployment rate (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.016,Youth unemployment rate (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.017,Youth unemployment rate (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.017,Youth unemployment rate (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.017,Youth unemployment rate (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.017,Youth unemployment rate (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.017,Youth unemployment rate (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.018,Youth unemployment rate (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.018,Youth unemployment rate (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.018,Youth unemployment rate (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.019,Youth unemployment rate (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.019,Youth unemployment rate (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.019,Youth unemployment rate (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.020,Youth unemployment rate (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.020,Youth unemployment rate (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.020,Youth unemployment rate (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.021,Youth unemployment rate (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.021,Youth unemployment rate (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.021,Youth unemployment rate (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.022,"Youth unemployment rate (15 to 19 years old, Attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.022,"Youth unemployment rate (15 to 19 years old, Attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.023,"Youth unemployment rate (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.023,"Youth unemployment rate (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.024,"Youth unemployment rate (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.024,"Youth unemployment rate (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.025,"Youth unemployment rate (15 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.025,"Youth unemployment rate (15 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.026,"Youth unemployment rate (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.026,"Youth unemployment rate (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.027,"Youth unemployment rate (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.027,"Youth unemployment rate (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.028,"Youth unemployment rate (20 to 24 years old, Attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.028,"Youth unemployment rate (20 to 24 years old, Attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.029,"Youth unemployment rate (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.029,"Youth unemployment rate (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.030,"Youth unemployment rate (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.030,"Youth unemployment rate (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.031,"Youth unemployment rate (25 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.031,"Youth unemployment rate (25 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.032,"Youth unemployment rate (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.032,"Youth unemployment rate (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.033,"Youth unemployment rate (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.033,"Youth unemployment rate (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.034,Youth unemployment rate (15 to 19 years old) by Sex,Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.034,Youth unemployment rate (15 to 19 years old) by Sex,Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.035,Youth unemployment rate (15 to 29 years old) by Sex,Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.035,Youth unemployment rate (15 to 29 years old) by Sex,Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.036,Youth unemployment rate (20 to 24 years old) by Sex,Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.036,Youth unemployment rate (20 to 24 years old) by Sex,Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.037,Youth unemployment rate (25 to 29 years old) by Sex,Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.037,Youth unemployment rate (25 to 29 years old) by Sex,Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.038,"Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.038,"Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.038,"Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.038,"Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.038,"Youth unemployment rate (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.039,"Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.039,"Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.039,"Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.039,"Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.039,"Youth unemployment rate (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.040,"Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.040,"Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.040,"Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.040,"Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.040,"Youth unemployment rate (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.041,"Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.041,"Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.041,"Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.041,"Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.041,"Youth unemployment rate (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.042,"Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.042,"Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.042,"Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.042,"Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.042,"Youth unemployment rate (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.043,"Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.043,"Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.043,"Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.043,"Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.043,"Youth unemployment rate (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.044,"Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.044,"Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.044,"Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.044,"Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.044,"Youth unemployment rate (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.045,"Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.045,"Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.045,"Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.045,"Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.045,"Youth unemployment rate (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.046,Youth unemployment rate (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.046,Youth unemployment rate (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.046,Youth unemployment rate (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T19__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.047,Youth unemployment rate (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.047,Youth unemployment rate (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.047,Youth unemployment rate (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y15T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.048,Youth unemployment rate (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.048,Youth unemployment rate (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.048,Youth unemployment rate (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y20T24__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.049,Youth unemployment rate (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.049,Youth unemployment rate (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.049,Youth unemployment rate (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.AGE--Y25T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.050,"Youth unemployment rate (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.050,"Youth unemployment rate (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.051,"Youth unemployment rate (15 to 19 years old, Rural) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.051,"Youth unemployment rate (15 to 19 years old, Rural) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.052,"Youth unemployment rate (15 to 19 years old, Urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.052,"Youth unemployment rate (15 to 19 years old, Urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.053,"Youth unemployment rate (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.053,"Youth unemployment rate (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.054,"Youth unemployment rate (15 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.054,"Youth unemployment rate (15 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.055,"Youth unemployment rate (15 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.055,"Youth unemployment rate (15 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.056,"Youth unemployment rate (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.056,"Youth unemployment rate (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.057,"Youth unemployment rate (20 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.057,"Youth unemployment rate (20 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.058,"Youth unemployment rate (20 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.058,"Youth unemployment rate (20 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.059,"Youth unemployment rate (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.059,"Youth unemployment rate (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.060,"Youth unemployment rate (25 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.060,"Youth unemployment rate (25 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.061,"Youth unemployment rate (25 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3EAP_RT.061,"Youth unemployment rate (25 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3EAP_RT,ilo/UNE_3EAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U,UNE_3EAP_RT,Youth unemployment rate +UNE_3UNE_NB.001,Youth unemployment by Age group,15 to 19 years old,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.001,Youth unemployment by Age group,15 to 29 years old,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.001,Youth unemployment by Age group,20 to 24 years old,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.001,Youth unemployment by Age group,25 to 29 years old,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.002,Youth unemployment (15 to 19 years old) by Disability status,Persons with disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.002,Youth unemployment (15 to 19 years old) by Disability status,Persons without disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.003,Youth unemployment (15 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.003,Youth unemployment (15 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.004,Youth unemployment (20 to 24 years old) by Disability status,Persons with disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.004,Youth unemployment (20 to 24 years old) by Disability status,Persons without disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.005,Youth unemployment (25 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.005,Youth unemployment (25 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.006,"Youth unemployment (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.006,"Youth unemployment (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.007,"Youth unemployment (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.007,"Youth unemployment (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.008,"Youth unemployment (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.008,"Youth unemployment (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.009,"Youth unemployment (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.009,"Youth unemployment (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.010,"Youth unemployment (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.010,"Youth unemployment (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.011,"Youth unemployment (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.011,"Youth unemployment (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.012,"Youth unemployment (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.012,"Youth unemployment (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.013,"Youth unemployment (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.013,"Youth unemployment (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.014,Youth unemployment (15 to 19 years old) by Category of unemployed,Unemployed seeking their first job,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.014,Youth unemployment (15 to 19 years old) by Category of unemployed,Unemployed previously employed,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.014,Youth unemployment (15 to 19 years old) by Category of unemployed,Category of unemployment not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.015,Youth unemployment (15 to 29 years old) by Category of unemployed,Unemployed seeking their first job,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.015,Youth unemployment (15 to 29 years old) by Category of unemployed,Unemployed previously employed,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.015,Youth unemployment (15 to 29 years old) by Category of unemployed,Category of unemployment not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.016,Youth unemployment (20 to 24 years old) by Category of unemployed,Unemployed seeking their first job,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.016,Youth unemployment (20 to 24 years old) by Category of unemployed,Unemployed previously employed,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.016,Youth unemployment (20 to 24 years old) by Category of unemployed,Category of unemployment not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.017,Youth unemployment (25 to 29 years old) by Category of unemployed,Unemployed seeking their first job,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.017,Youth unemployment (25 to 29 years old) by Category of unemployed,Unemployed previously employed,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.017,Youth unemployment (25 to 29 years old) by Category of unemployed,Category of unemployment not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.018,"Youth unemployment (15 to 19 years old, Category of unemployment not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.018,"Youth unemployment (15 to 19 years old, Category of unemployment not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.019,"Youth unemployment (15 to 19 years old, Unemployed previously employed) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.019,"Youth unemployment (15 to 19 years old, Unemployed previously employed) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.020,"Youth unemployment (15 to 19 years old, Unemployed seeking their first job) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.020,"Youth unemployment (15 to 19 years old, Unemployed seeking their first job) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.021,"Youth unemployment (15 to 29 years old, Category of unemployment not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.021,"Youth unemployment (15 to 29 years old, Category of unemployment not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.022,"Youth unemployment (15 to 29 years old, Unemployed previously employed) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.022,"Youth unemployment (15 to 29 years old, Unemployed previously employed) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.023,"Youth unemployment (15 to 29 years old, Unemployed seeking their first job) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.023,"Youth unemployment (15 to 29 years old, Unemployed seeking their first job) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.024,"Youth unemployment (20 to 24 years old, Category of unemployment not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.024,"Youth unemployment (20 to 24 years old, Category of unemployment not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.025,"Youth unemployment (20 to 24 years old, Unemployed previously employed) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.025,"Youth unemployment (20 to 24 years old, Unemployed previously employed) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.026,"Youth unemployment (20 to 24 years old, Unemployed seeking their first job) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.026,"Youth unemployment (20 to 24 years old, Unemployed seeking their first job) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.027,"Youth unemployment (25 to 29 years old, Category of unemployment not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.027,"Youth unemployment (25 to 29 years old, Category of unemployment not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.028,"Youth unemployment (25 to 29 years old, Unemployed previously employed) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.028,"Youth unemployment (25 to 29 years old, Unemployed previously employed) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.029,"Youth unemployment (25 to 29 years old, Unemployed seeking their first job) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.029,"Youth unemployment (25 to 29 years old, Unemployed seeking their first job) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.030,Youth unemployment (15 to 19 years old) by Duration,Less than 6 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.030,Youth unemployment (15 to 19 years old) by Duration,Less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.030,Youth unemployment (15 to 19 years old) by Duration,6 months to less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.030,Youth unemployment (15 to 19 years old) by Duration,12 months or more,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.030,Youth unemployment (15 to 19 years old) by Duration,Duration not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.031,Youth unemployment (15 to 29 years old) by Duration,Less than 6 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.031,Youth unemployment (15 to 29 years old) by Duration,Less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.031,Youth unemployment (15 to 29 years old) by Duration,6 months to less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.031,Youth unemployment (15 to 29 years old) by Duration,12 months or more,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.031,Youth unemployment (15 to 29 years old) by Duration,Duration not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.032,Youth unemployment (20 to 24 years old) by Duration,Less than 6 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.032,Youth unemployment (20 to 24 years old) by Duration,Less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.032,Youth unemployment (20 to 24 years old) by Duration,6 months to less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.032,Youth unemployment (20 to 24 years old) by Duration,12 months or more,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.032,Youth unemployment (20 to 24 years old) by Duration,Duration not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.033,Youth unemployment (25 to 29 years old) by Duration,Less than 6 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.033,Youth unemployment (25 to 29 years old) by Duration,Less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.033,Youth unemployment (25 to 29 years old) by Duration,6 months to less than 12 months,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.033,Youth unemployment (25 to 29 years old) by Duration,12 months or more,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.033,Youth unemployment (25 to 29 years old) by Duration,Duration not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.034,"Youth unemployment (15 to 19 years old, 12 months or more) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.034,"Youth unemployment (15 to 19 years old, 12 months or more) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.035,"Youth unemployment (15 to 19 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.035,"Youth unemployment (15 to 19 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.036,"Youth unemployment (15 to 19 years old, Duration not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.036,"Youth unemployment (15 to 19 years old, Duration not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.037,"Youth unemployment (15 to 19 years old, Less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.037,"Youth unemployment (15 to 19 years old, Less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.038,"Youth unemployment (15 to 19 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.038,"Youth unemployment (15 to 19 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.039,"Youth unemployment (15 to 29 years old, 12 months or more) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.039,"Youth unemployment (15 to 29 years old, 12 months or more) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.040,"Youth unemployment (15 to 29 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.040,"Youth unemployment (15 to 29 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.041,"Youth unemployment (15 to 29 years old, Duration not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.041,"Youth unemployment (15 to 29 years old, Duration not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.042,"Youth unemployment (15 to 29 years old, Less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.042,"Youth unemployment (15 to 29 years old, Less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.043,"Youth unemployment (15 to 29 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.043,"Youth unemployment (15 to 29 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.044,"Youth unemployment (20 to 24 years old, 12 months or more) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.044,"Youth unemployment (20 to 24 years old, 12 months or more) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.045,"Youth unemployment (20 to 24 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.045,"Youth unemployment (20 to 24 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.046,"Youth unemployment (20 to 24 years old, Duration not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.046,"Youth unemployment (20 to 24 years old, Duration not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.047,"Youth unemployment (20 to 24 years old, Less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.047,"Youth unemployment (20 to 24 years old, Less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.048,"Youth unemployment (20 to 24 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.048,"Youth unemployment (20 to 24 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.049,"Youth unemployment (25 to 29 years old, 12 months or more) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.049,"Youth unemployment (25 to 29 years old, 12 months or more) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--MGE12,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.050,"Youth unemployment (25 to 29 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.050,"Youth unemployment (25 to 29 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M6T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.051,"Youth unemployment (25 to 29 years old, Duration not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.051,"Youth unemployment (25 to 29 years old, Duration not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.052,"Youth unemployment (25 to 29 years old, Less than 12 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.052,"Youth unemployment (25 to 29 years old, Less than 12 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M0T11,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.053,"Youth unemployment (25 to 29 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.053,"Youth unemployment (25 to 29 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__DURATION--M0T6,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.054,Youth unemployment (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.054,Youth unemployment (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.054,Youth unemployment (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.054,Youth unemployment (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.054,Youth unemployment (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.055,Youth unemployment (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.055,Youth unemployment (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.055,Youth unemployment (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.055,Youth unemployment (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.055,Youth unemployment (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.056,Youth unemployment (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.056,Youth unemployment (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.056,Youth unemployment (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.056,Youth unemployment (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.056,Youth unemployment (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.057,Youth unemployment (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.057,Youth unemployment (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.057,Youth unemployment (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.057,Youth unemployment (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.057,Youth unemployment (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.058,Youth unemployment (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.058,Youth unemployment (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.058,Youth unemployment (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.059,Youth unemployment (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.059,Youth unemployment (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.059,Youth unemployment (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.060,Youth unemployment (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.060,Youth unemployment (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.060,Youth unemployment (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.061,Youth unemployment (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.061,Youth unemployment (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.061,Youth unemployment (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.062,"Youth unemployment (15 to 19 years old, Attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.062,"Youth unemployment (15 to 19 years old, Attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.063,"Youth unemployment (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.063,"Youth unemployment (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.064,"Youth unemployment (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.064,"Youth unemployment (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.065,"Youth unemployment (15 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.065,"Youth unemployment (15 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.066,"Youth unemployment (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.066,"Youth unemployment (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.067,"Youth unemployment (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.067,"Youth unemployment (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.068,"Youth unemployment (20 to 24 years old, Attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.068,"Youth unemployment (20 to 24 years old, Attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.069,"Youth unemployment (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.069,"Youth unemployment (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.070,"Youth unemployment (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.070,"Youth unemployment (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.071,"Youth unemployment (25 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.071,"Youth unemployment (25 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.072,"Youth unemployment (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.072,"Youth unemployment (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.073,"Youth unemployment (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.073,"Youth unemployment (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.074,Youth unemployment (15 to 19 years old) by Sex,Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.074,Youth unemployment (15 to 19 years old) by Sex,Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.075,Youth unemployment (15 to 29 years old) by Sex,Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.075,Youth unemployment (15 to 29 years old) by Sex,Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.076,Youth unemployment (20 to 24 years old) by Sex,Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.076,Youth unemployment (20 to 24 years old) by Sex,Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.077,Youth unemployment (25 to 29 years old) by Sex,Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.077,Youth unemployment (25 to 29 years old) by Sex,Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.078,"Youth unemployment (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.078,"Youth unemployment (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.078,"Youth unemployment (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.078,"Youth unemployment (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.078,"Youth unemployment (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.079,"Youth unemployment (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.079,"Youth unemployment (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.079,"Youth unemployment (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.079,"Youth unemployment (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.079,"Youth unemployment (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.080,"Youth unemployment (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.080,"Youth unemployment (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.080,"Youth unemployment (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.080,"Youth unemployment (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.080,"Youth unemployment (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.081,"Youth unemployment (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.081,"Youth unemployment (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.081,"Youth unemployment (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.081,"Youth unemployment (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.081,"Youth unemployment (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.082,"Youth unemployment (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.082,"Youth unemployment (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.082,"Youth unemployment (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.082,"Youth unemployment (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.082,"Youth unemployment (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.083,"Youth unemployment (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.083,"Youth unemployment (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.083,"Youth unemployment (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.083,"Youth unemployment (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.083,"Youth unemployment (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.084,"Youth unemployment (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.084,"Youth unemployment (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.084,"Youth unemployment (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.084,"Youth unemployment (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.084,"Youth unemployment (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.085,"Youth unemployment (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.085,"Youth unemployment (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.085,"Youth unemployment (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.085,"Youth unemployment (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.085,"Youth unemployment (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.086,Youth unemployment (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.086,Youth unemployment (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.086,Youth unemployment (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T19__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.087,Youth unemployment (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.087,Youth unemployment (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.087,Youth unemployment (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y15T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.088,Youth unemployment (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.088,Youth unemployment (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.088,Youth unemployment (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y20T24__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.089,Youth unemployment (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.089,Youth unemployment (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.089,Youth unemployment (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.AGE--Y25T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.090,"Youth unemployment (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.090,"Youth unemployment (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.091,"Youth unemployment (15 to 19 years old, Rural) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.091,"Youth unemployment (15 to 19 years old, Rural) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.092,"Youth unemployment (15 to 19 years old, Urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T19__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.092,"Youth unemployment (15 to 19 years old, Urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T19__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.093,"Youth unemployment (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.093,"Youth unemployment (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.094,"Youth unemployment (15 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.094,"Youth unemployment (15 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.095,"Youth unemployment (15 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y15T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.095,"Youth unemployment (15 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y15T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.096,"Youth unemployment (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.096,"Youth unemployment (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.097,"Youth unemployment (20 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.097,"Youth unemployment (20 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.098,"Youth unemployment (20 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y20T24__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.098,"Youth unemployment (20 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y20T24__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.099,"Youth unemployment (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.099,"Youth unemployment (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--_X,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.100,"Youth unemployment (25 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.100,"Youth unemployment (25 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--R,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.101,"Youth unemployment (25 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--F__AGE--Y25T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3UNE_NB.101,"Youth unemployment (25 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3UNE_NB,ilo/UNE_3UNE_NB.SEX--M__AGE--Y25T29__URBANISATION--U,UNE_3UNE_NB,Youth unemployment +UNE_3WAP_RT.001,Youth unemployment-to-population ratio by Age group,15 to 19 years old,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.001,Youth unemployment-to-population ratio by Age group,15 to 29 years old,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.001,Youth unemployment-to-population ratio by Age group,20 to 24 years old,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.001,Youth unemployment-to-population ratio by Age group,25 to 29 years old,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.002,Youth unemployment-to-population ratio (15 to 19 years old) by Disability status,Persons with disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.002,Youth unemployment-to-population ratio (15 to 19 years old) by Disability status,Persons without disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.003,Youth unemployment-to-population ratio (15 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.003,Youth unemployment-to-population ratio (15 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.004,Youth unemployment-to-population ratio (20 to 24 years old) by Disability status,Persons with disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.004,Youth unemployment-to-population ratio (20 to 24 years old) by Disability status,Persons without disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.005,Youth unemployment-to-population ratio (25 to 29 years old) by Disability status,Persons with disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.005,Youth unemployment-to-population ratio (25 to 29 years old) by Disability status,Persons without disability,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.006,"Youth unemployment-to-population ratio (15 to 19 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.006,"Youth unemployment-to-population ratio (15 to 19 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.007,"Youth unemployment-to-population ratio (15 to 19 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.007,"Youth unemployment-to-population ratio (15 to 19 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.008,"Youth unemployment-to-population ratio (15 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.008,"Youth unemployment-to-population ratio (15 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.009,"Youth unemployment-to-population ratio (15 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.009,"Youth unemployment-to-population ratio (15 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.010,"Youth unemployment-to-population ratio (20 to 24 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.010,"Youth unemployment-to-population ratio (20 to 24 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.011,"Youth unemployment-to-population ratio (20 to 24 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.011,"Youth unemployment-to-population ratio (20 to 24 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.012,"Youth unemployment-to-population ratio (25 to 29 years old, Persons with disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.012,"Youth unemployment-to-population ratio (25 to 29 years old, Persons with disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.013,"Youth unemployment-to-population ratio (25 to 29 years old, Persons without disability) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.013,"Youth unemployment-to-population ratio (25 to 29 years old, Persons without disability) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__DISABILITY_STATUS--PWD,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.014,Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.014,Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.014,Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.014,Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.014,Youth unemployment-to-population ratio (15 to 19 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.015,Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.015,Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.015,Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.015,Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.015,Youth unemployment-to-population ratio (15 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.016,Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.016,Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.016,Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.016,Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.016,Youth unemployment-to-population ratio (20 to 24 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.017,Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels,Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.017,Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels,Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.017,Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels,Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.017,Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels,Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.017,Youth unemployment-to-population ratio (25 to 29 years old) by Aggregate education levels,Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.018,Youth unemployment-to-population ratio (15 to 19 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.018,Youth unemployment-to-population ratio (15 to 19 years old) by Educational attendance status,Attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.018,Youth unemployment-to-population ratio (15 to 19 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.019,Youth unemployment-to-population ratio (15 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.019,Youth unemployment-to-population ratio (15 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.019,Youth unemployment-to-population ratio (15 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.020,Youth unemployment-to-population ratio (20 to 24 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.020,Youth unemployment-to-population ratio (20 to 24 years old) by Educational attendance status,Attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.020,Youth unemployment-to-population ratio (20 to 24 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.021,Youth unemployment-to-population ratio (25 to 29 years old) by Educational attendance status,Not attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.021,Youth unemployment-to-population ratio (25 to 29 years old) by Educational attendance status,Attending education,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.021,Youth unemployment-to-population ratio (25 to 29 years old) by Educational attendance status,Educational attendance not classified,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.022,"Youth unemployment-to-population ratio (15 to 19 years old, Attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.022,"Youth unemployment-to-population ratio (15 to 19 years old, Attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.023,"Youth unemployment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.023,"Youth unemployment-to-population ratio (15 to 19 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.024,"Youth unemployment-to-population ratio (15 to 19 years old, Not attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.024,"Youth unemployment-to-population ratio (15 to 19 years old, Not attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.025,"Youth unemployment-to-population ratio (15 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.025,"Youth unemployment-to-population ratio (15 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.026,"Youth unemployment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.026,"Youth unemployment-to-population ratio (15 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.027,"Youth unemployment-to-population ratio (15 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.027,"Youth unemployment-to-population ratio (15 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.028,"Youth unemployment-to-population ratio (20 to 24 years old, Attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.028,"Youth unemployment-to-population ratio (20 to 24 years old, Attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.029,"Youth unemployment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.029,"Youth unemployment-to-population ratio (20 to 24 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.030,"Youth unemployment-to-population ratio (20 to 24 years old, Not attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.030,"Youth unemployment-to-population ratio (20 to 24 years old, Not attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.031,"Youth unemployment-to-population ratio (25 to 29 years old, Attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.031,"Youth unemployment-to-population ratio (25 to 29 years old, Attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_YES,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.032,"Youth unemployment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.032,"Youth unemployment-to-population ratio (25 to 29 years old, Educational attendance not classified) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.033,"Youth unemployment-to-population ratio (25 to 29 years old, Not attending education) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.033,"Youth unemployment-to-population ratio (25 to 29 years old, Not attending education) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATIONAL_ATTENDANCE--STU_EDU_NO,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.034,Youth unemployment-to-population ratio (15 to 19 years old) by Sex,Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.034,Youth unemployment-to-population ratio (15 to 19 years old) by Sex,Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.035,Youth unemployment-to-population ratio (15 to 29 years old) by Sex,Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.035,Youth unemployment-to-population ratio (15 to 29 years old) by Sex,Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.036,Youth unemployment-to-population ratio (20 to 24 years old) by Sex,Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.036,Youth unemployment-to-population ratio (20 to 24 years old) by Sex,Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.037,Youth unemployment-to-population ratio (25 to 29 years old) by Sex,Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.037,Youth unemployment-to-population ratio (25 to 29 years old) by Sex,Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.038,"Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.038,"Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.038,"Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.038,"Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.038,"Youth unemployment-to-population ratio (15 to 19 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.039,"Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.039,"Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.039,"Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.039,"Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.039,"Youth unemployment-to-population ratio (15 to 19 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.040,"Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.040,"Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.040,"Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.040,"Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.040,"Youth unemployment-to-population ratio (15 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.041,"Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.041,"Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.041,"Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.041,"Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.041,"Youth unemployment-to-population ratio (15 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.042,"Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.042,"Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.042,"Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.042,"Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.042,"Youth unemployment-to-population ratio (20 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.043,"Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.043,"Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.043,"Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.043,"Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.043,"Youth unemployment-to-population ratio (20 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.044,"Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.044,"Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.044,"Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.044,"Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.044,"Youth unemployment-to-population ratio (25 to 29 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.045,"Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.045,"Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.045,"Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.045,"Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.045,"Youth unemployment-to-population ratio (25 to 29 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__EDUCATION_LEVEL--_UNK,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.046,Youth unemployment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.046,Youth unemployment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.046,Youth unemployment-to-population ratio (15 to 19 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T19__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.047,Youth unemployment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.047,Youth unemployment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.047,Youth unemployment-to-population ratio (15 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y15T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.048,Youth unemployment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.048,Youth unemployment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.048,Youth unemployment-to-population ratio (20 to 24 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y20T24__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.049,Youth unemployment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Rural,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.049,Youth unemployment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.049,Youth unemployment-to-population ratio (25 to 29 years old) by Urbanization (Rural/Urban),Not classsified as rural or urban,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.AGE--Y25T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.050,"Youth unemployment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.050,"Youth unemployment-to-population ratio (15 to 19 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.051,"Youth unemployment-to-population ratio (15 to 19 years old, Rural) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.051,"Youth unemployment-to-population ratio (15 to 19 years old, Rural) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.052,"Youth unemployment-to-population ratio (15 to 19 years old, Urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T19__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.052,"Youth unemployment-to-population ratio (15 to 19 years old, Urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T19__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.053,"Youth unemployment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.053,"Youth unemployment-to-population ratio (15 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.054,"Youth unemployment-to-population ratio (15 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.054,"Youth unemployment-to-population ratio (15 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.055,"Youth unemployment-to-population ratio (15 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y15T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.055,"Youth unemployment-to-population ratio (15 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y15T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.056,"Youth unemployment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.056,"Youth unemployment-to-population ratio (20 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.057,"Youth unemployment-to-population ratio (20 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.057,"Youth unemployment-to-population ratio (20 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.058,"Youth unemployment-to-population ratio (20 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y20T24__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.058,"Youth unemployment-to-population ratio (20 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y20T24__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.059,"Youth unemployment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.059,"Youth unemployment-to-population ratio (25 to 29 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--_X,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.060,"Youth unemployment-to-population ratio (25 to 29 years old, Rural) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.060,"Youth unemployment-to-population ratio (25 to 29 years old, Rural) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--R,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.061,"Youth unemployment-to-population ratio (25 to 29 years old, Urban) by Sex",Female,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--F__AGE--Y25T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_3WAP_RT.061,"Youth unemployment-to-population ratio (25 to 29 years old, Urban) by Sex",Male,,,ILO_UNE_3WAP_RT,ilo/UNE_3WAP_RT.SEX--M__AGE--Y25T29__URBANISATION--U,UNE_3WAP_RT,Youth unemployment-to-population ratio +UNE_5EAP_RT.001,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 24 years old,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.AGE--Y15T24,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.001,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 to 64 years old,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.AGE--Y15T64,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.001,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",15 years old and over,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.AGE--Y_GE15,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.001,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) by Age group",25 years old and over,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.AGE--Y_GE25,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.002,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Female,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--F__AGE--Y15T24,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.002,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 24 years old) by Sex",Male,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--M__AGE--Y15T24,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.003,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 64 years old) by Sex",Female,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--F__AGE--Y15T64,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.003,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 to 64 years old) by Sex",Male,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--M__AGE--Y15T64,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.004,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Female,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--F__AGE--Y_GE15,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.004,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (15 years old and over) by Sex",Male,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--M__AGE--Y_GE15,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.005,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Female,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--F__AGE--Y_GE25,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_5EAP_RT.005,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) (25 years old and over) by Sex",Male,,,ILO_UNE_5EAP_RT,ilo/UNE_5EAP_RT.SEX--M__AGE--Y_GE25,UNE_5EAP_RT,"Unemployment rate, according to standards adopted at the 19th International Conference of Labour Statisticians (ICLS) " +UNE_DEAP_RT.001,"Unemployment rate (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Less than basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Intermediate education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Advanced education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Primary education (ISCED11_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",No schooling (ISCED11_X),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Education level not stated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",No schooling,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Single / Widowed / Divorced,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Single,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Widowed,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Divorced or legally separated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Married / Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Married,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Persons with disability,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.002,"Unemployment rate (Labour Force Statistics, LFS)",Persons without disability,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.003,"Unemployment rate (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.004,"Unemployment rate (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.004,"Unemployment rate (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.004,"Unemployment rate (Labour Force Statistics, LFS)",Sex other than Female or Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--O__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Less than basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Intermediate education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Advanced education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Primary education (ISCED11_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",No schooling (ISCED11_X),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Education level not stated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",No schooling,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Single / Widowed / Divorced,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Single,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Widowed,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Divorced or legally separated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Married / Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Married,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.005,"Unemployment rate (Labour Force Statistics, LFS) (Female)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Less than basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Basic education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Intermediate education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Advanced education level,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Primary education (ISCED11_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",No schooling (ISCED11_X),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Education level not stated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",No schooling,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Single / Widowed / Divorced,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Single,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Widowed,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Divorced or legally separated,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Married / Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Married,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Union / Cohabiting,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.006,"Unemployment rate (Labour Force Statistics, LFS) (Male)",Marital status not elsewhere classified,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.007,"Unemployment rate (Labour Force Statistics, LFS) (Persons with disability)",Female,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.007,"Unemployment rate (Labour Force Statistics, LFS) (Persons with disability)",Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.008,"Unemployment rate (Labour Force Statistics, LFS) (Persons without disability)",Female,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.008,"Unemployment rate (Labour Force Statistics, LFS) (Persons without disability)",Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.009,"Unemployment rate (Labour Force Statistics, LFS) (Sex other than Female or Male)",Single / Widowed / Divorced,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.009,"Unemployment rate (Labour Force Statistics, LFS) (Sex other than Female or Male)",Single,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.010,"Unemployment rate (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.010,"Unemployment rate (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.010,"Unemployment rate (Labour Force Statistics, LFS)",Sex other than Female or Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.011,"Unemployment rate (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.012,"Unemployment rate (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_DEAP_RT.012,"Unemployment rate (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_DEAP_RT,ilo/UNE_DEAP_RT.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_DEAP_RT,"Unemployment rate (Labour Force Statistics, LFS) " +UNE_TUNE_NB.001,"Unemployment (Labour Force Statistics, LFS)",Total,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS)" +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",under 15 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y0T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",5 to 9 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y5T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",10 to 14 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y10T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",15 to 19 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T19,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",15 to 24 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",15 to 64 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",15 years old and over,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",20 to 24 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y20T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",25 to 29 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T29,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",25 to 34 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",25 to 54 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",25 years old and over,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",30 to 34 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y30T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",35 to 39 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T39,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",35 to 44 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",40 to 44 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y40T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",45 to 49 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T49,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",45 to 54 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",50 to 54 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y50T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",55 to 59 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T59,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",55 to 64 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",60 to 64 years old,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y60T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.002,"Unemployment (Labour Force Statistics, LFS) by Age group",65 years old and over,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.003,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.003,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.004,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.004,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.005,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.005,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.006,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.006,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.007,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.007,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.008,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.008,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.009,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.009,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.010,"Unemployment (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Single / Widowed / Divorced,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Single,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Widowed,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Divorced or legally separated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Married / Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Married,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Persons with disability,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",Persons without disability,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",under 15 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",5 to 9 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",10 to 14 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",15 to 19 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",15 to 24 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",15 to 64 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",15 years old and over,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",20 to 24 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",25 to 29 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",25 to 34 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",25 to 54 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",25 years old and over,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",30 to 34 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",35 to 39 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",35 to 44 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",40 to 44 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",45 to 49 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",45 to 54 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",50 to 54 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",55 to 59 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",55 to 64 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",60 to 64 years old,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.011,"Unemployment (Labour Force Statistics, LFS)",65 years old and over,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.012,"Unemployment (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.013,"Unemployment (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.013,"Unemployment (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.013,"Unemployment (Labour Force Statistics, LFS)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.014,"Unemployment (Labour Force Statistics, LFS) (10 to 14 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.014,"Unemployment (Labour Force Statistics, LFS) (10 to 14 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y10T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.015,"Unemployment (Labour Force Statistics, LFS) (15 to 19 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.015,"Unemployment (Labour Force Statistics, LFS) (15 to 19 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T19__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.016,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.016,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.017,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.017,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.018,"Unemployment (Labour Force Statistics, LFS) (15 years old and over)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.018,"Unemployment (Labour Force Statistics, LFS) (15 years old and over)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.018,"Unemployment (Labour Force Statistics, LFS) (15 years old and over)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.019,"Unemployment (Labour Force Statistics, LFS) (20 to 24 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.019,"Unemployment (Labour Force Statistics, LFS) (20 to 24 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y20T24__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.020,"Unemployment (Labour Force Statistics, LFS) (25 to 29 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.020,"Unemployment (Labour Force Statistics, LFS) (25 to 29 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T29__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.021,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.021,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.022,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.022,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.022,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.023,"Unemployment (Labour Force Statistics, LFS) (25 years old and over)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.023,"Unemployment (Labour Force Statistics, LFS) (25 years old and over)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.023,"Unemployment (Labour Force Statistics, LFS) (25 years old and over)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.024,"Unemployment (Labour Force Statistics, LFS) (30 to 34 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.024,"Unemployment (Labour Force Statistics, LFS) (30 to 34 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y30T34__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.025,"Unemployment (Labour Force Statistics, LFS) (35 to 39 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.025,"Unemployment (Labour Force Statistics, LFS) (35 to 39 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T39__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.026,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.026,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.027,"Unemployment (Labour Force Statistics, LFS) (40 to 44 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.027,"Unemployment (Labour Force Statistics, LFS) (40 to 44 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y40T44__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.028,"Unemployment (Labour Force Statistics, LFS) (45 to 49 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.028,"Unemployment (Labour Force Statistics, LFS) (45 to 49 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T49__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.029,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.029,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.030,"Unemployment (Labour Force Statistics, LFS) (5 to 9 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.030,"Unemployment (Labour Force Statistics, LFS) (5 to 9 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y5T9__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.031,"Unemployment (Labour Force Statistics, LFS) (50 to 54 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.031,"Unemployment (Labour Force Statistics, LFS) (50 to 54 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y50T54__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.032,"Unemployment (Labour Force Statistics, LFS) (55 to 59 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.032,"Unemployment (Labour Force Statistics, LFS) (55 to 59 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T59__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.033,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.033,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.034,"Unemployment (Labour Force Statistics, LFS) (60 to 64 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.034,"Unemployment (Labour Force Statistics, LFS) (60 to 64 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y60T64__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.035,"Unemployment (Labour Force Statistics, LFS) (65 years old and over)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.035,"Unemployment (Labour Force Statistics, LFS) (65 years old and over)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Single / Widowed / Divorced,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Single,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Widowed,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Divorced or legally separated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Married / Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Married,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.036,"Unemployment (Labour Force Statistics, LFS) (Female)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Early childhood education (ISCED11_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Single / Widowed / Divorced,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Single,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Widowed,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_WID__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Divorced or legally separated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_SEP__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Married / Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_2__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Married,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_MRD__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Union / Cohabiting,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_UNION__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--MTS_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.037,"Unemployment (Labour Force Statistics, LFS) (Male)",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_X__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.038,"Unemployment (Labour Force Statistics, LFS) (Persons with disability)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.038,"Unemployment (Labour Force Statistics, LFS) (Persons with disability)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.039,"Unemployment (Labour Force Statistics, LFS) (Persons without disability)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.039,"Unemployment (Labour Force Statistics, LFS) (Persons without disability)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--PWD__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.040,"Unemployment (Labour Force Statistics, LFS) (Sex other than Female or Male)",Single / Widowed / Divorced,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_1__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.040,"Unemployment (Labour Force Statistics, LFS) (Sex other than Female or Male)",Single,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--_Z__MARITAL_STATUS--MTS_SGLE__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.041,"Unemployment (Labour Force Statistics, LFS) (under 15 years old)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.041,"Unemployment (Labour Force Statistics, LFS) (under 15 years old)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.042,"Unemployment (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.042,"Unemployment (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.042,"Unemployment (Labour Force Statistics, LFS)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.043,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.043,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.044,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.044,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.045,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.045,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.046,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.046,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.047,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.047,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.048,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.048,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.049,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.049,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.050,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.050,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.051,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.051,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.052,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.052,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.053,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.053,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.054,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.054,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.055,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.055,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.056,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.056,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",Less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M0T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.057,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",Less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M0T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.058,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",Less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M0T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.059,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.060,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.061,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.062,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.063,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.064,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.065,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.066,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.067,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.067,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.068,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.068,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.069,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.069,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.070,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.070,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.071,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.071,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.072,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.072,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.073,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.073,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.074,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.074,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.075,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.075,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.076,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.076,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.077,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.077,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.078,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.078,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.079,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.079,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.080,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.080,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.081,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.081,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.082,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.082,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.083,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.083,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.084,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.084,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.085,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.085,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.086,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.086,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.087,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.087,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.088,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.088,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.089,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.089,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.090,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.090,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.091,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.091,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.092,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.092,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.093,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.093,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.094,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.094,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.095,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.095,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.096,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.096,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.097,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.097,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.098,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.098,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.099,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.099,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.100,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.100,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.101,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.101,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.102,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.102,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.103,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.103,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.104,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.104,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.105,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.105,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.106,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.106,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.107,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.107,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.108,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.108,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.109,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.109,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.110,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.110,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.111,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.111,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.112,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.112,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.113,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.113,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.114,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.114,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.115,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.115,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.116,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.116,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.117,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.117,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.118,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.118,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.119,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.119,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.120,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.120,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.121,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.121,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.122,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.122,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.123,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.123,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.124,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.124,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.125,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.125,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.126,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.126,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.127,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.127,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.128,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.128,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.129,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.129,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.130,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.130,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.131,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.131,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.132,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.132,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.133,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.133,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.134,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.134,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.135,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.135,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.136,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.136,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.137,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.137,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.138,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.138,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.139,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.139,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.140,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.140,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.141,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.141,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.142,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.142,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.143,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.143,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.144,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.144,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.145,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.145,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.146,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.146,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.147,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.147,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.148,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.148,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.149,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.149,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.150,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.150,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.151,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.151,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.152,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.152,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.153,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.153,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.154,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.154,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.155,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.155,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.156,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.156,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.157,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.157,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.158,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.158,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.159,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.159,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.160,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.160,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.161,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.161,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.162,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.162,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.163,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.163,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.164,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.164,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.165,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.165,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.166,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.166,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.167,"Unemployment (Labour Force Statistics, LFS) (under 15 years old, Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.168,"Unemployment (Labour Force Statistics, LFS) (under 15 years old, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.169,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.170,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.171,"Unemployment (Labour Force Statistics, LFS) (15 years old and over)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.172,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.173,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.174,"Unemployment (Labour Force Statistics, LFS) (25 years old and over)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.175,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.176,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.177,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.178,"Unemployment (Labour Force Statistics, LFS) (65 years old and over)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.179,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.179,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.179,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.179,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.179,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.180,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.180,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.180,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.180,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.180,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.181,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.181,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.181,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.181,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.181,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.182,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.182,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.182,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.182,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.182,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.183,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.183,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.183,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.183,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.183,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.184,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.184,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.184,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.184,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.184,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.185,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.185,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.185,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.185,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.185,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.186,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.186,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.186,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.186,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.186,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.187,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.187,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.187,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.187,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.187,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.188,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.188,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.188,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.188,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.188,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.189,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.190,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.191,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.192,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.193,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.194,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.195,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.196,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.197,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.198,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.199,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.200,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.201,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.202,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.203,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.204,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.205,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.206,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.207,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.208,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.209,"Unemployment (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.210,"Unemployment (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.210,"Unemployment (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--_Z__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.211,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.211,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.211,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.212,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.212,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.212,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.213,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.213,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.213,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.214,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.214,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.214,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.215,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.215,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.215,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.216,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.216,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.216,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.217,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.217,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.217,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.218,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.218,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.218,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.219,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.219,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.219,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.220,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.220,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.220,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.221,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.221,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.221,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.222,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.222,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.222,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.223,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.223,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.223,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.224,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.224,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.224,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.225,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.225,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.225,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.226,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.226,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.226,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.227,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.227,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.227,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.228,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.228,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.228,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.229,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.229,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.229,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.230,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.230,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.230,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.231,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.231,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.232,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.232,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.233,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.233,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.234,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.234,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.235,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.235,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.236,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.236,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.237,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.237,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.238,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.238,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.239,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.239,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.240,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.240,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.241,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.242,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.243,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.244,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.245,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.246,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.247,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.248,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.249,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.250,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.251,"Unemployment (Labour Force Statistics, LFS) (10 to 14 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y10T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.251,"Unemployment (Labour Force Statistics, LFS) (10 to 14 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y10T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.252,"Unemployment (Labour Force Statistics, LFS) (15 to 19 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T19,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.252,"Unemployment (Labour Force Statistics, LFS) (15 to 19 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T19,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.253,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.253,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.254,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.254,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.255,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.255,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.255,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.256,"Unemployment (Labour Force Statistics, LFS) (20 to 24 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y20T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.256,"Unemployment (Labour Force Statistics, LFS) (20 to 24 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y20T24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.257,"Unemployment (Labour Force Statistics, LFS) (25 to 29 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T29,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.257,"Unemployment (Labour Force Statistics, LFS) (25 to 29 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T29,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.258,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.258,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.259,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.259,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.259,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.260,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.260,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.260,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.261,"Unemployment (Labour Force Statistics, LFS) (30 to 34 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y30T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.261,"Unemployment (Labour Force Statistics, LFS) (30 to 34 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y30T34,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.262,"Unemployment (Labour Force Statistics, LFS) (35 to 39 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T39,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.262,"Unemployment (Labour Force Statistics, LFS) (35 to 39 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T39,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.263,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.263,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.264,"Unemployment (Labour Force Statistics, LFS) (40 to 44 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y40T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.264,"Unemployment (Labour Force Statistics, LFS) (40 to 44 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y40T44,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.265,"Unemployment (Labour Force Statistics, LFS) (45 to 49 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T49,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.265,"Unemployment (Labour Force Statistics, LFS) (45 to 49 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T49,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.266,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.266,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.267,"Unemployment (Labour Force Statistics, LFS) (5 to 9 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y5T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.267,"Unemployment (Labour Force Statistics, LFS) (5 to 9 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y5T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.268,"Unemployment (Labour Force Statistics, LFS) (50 to 54 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y50T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.268,"Unemployment (Labour Force Statistics, LFS) (50 to 54 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y50T54,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.269,"Unemployment (Labour Force Statistics, LFS) (55 to 59 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T59,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.269,"Unemployment (Labour Force Statistics, LFS) (55 to 59 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T59,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.270,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.270,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.271,"Unemployment (Labour Force Statistics, LFS) (60 to 64 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y60T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.271,"Unemployment (Labour Force Statistics, LFS) (60 to 64 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y60T64,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.272,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.272,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.273,"Unemployment (Labour Force Statistics, LFS) (under 15 years old) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y0T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.273,"Unemployment (Labour Force Statistics, LFS) (under 15 years old) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y0T14,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.274,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.275,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.276,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.277,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.278,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.279,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.280,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.281,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.282,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.283,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.284,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.285,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.286,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.287,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.288,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.289,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.290,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.291,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.292,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.293,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.294,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.294,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.294,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.294,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.294,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.295,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.295,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.295,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.295,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.295,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.296,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.296,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.296,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.296,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.296,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.297,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.297,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.297,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.297,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.297,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.298,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y15T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.298,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Sex other than Female or Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y15T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.299,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.299,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.299,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.299,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.299,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.300,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.300,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.300,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.300,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.300,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.301,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.301,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Sex other than Female or Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.302,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.302,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.302,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.302,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.302,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.303,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.303,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.303,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.303,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.303,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.304,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.304,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.304,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.304,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.304,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.305,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.305,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.305,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.305,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.305,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.306,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.306,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Sex other than Female or Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.307,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.307,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.307,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.307,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.307,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.308,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.308,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.308,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.308,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.308,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.309,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.309,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Sex other than Female or Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.310,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.310,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.310,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.310,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.310,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.311,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.311,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.311,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.311,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.311,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.312,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.312,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.312,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.312,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.312,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.313,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.313,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.313,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.313,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.313,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.314,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.314,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.314,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.314,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.314,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.315,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.315,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.315,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.315,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.315,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.316,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.316,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.316,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.316,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.316,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.317,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.317,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.317,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.317,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.317,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.318,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.319,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.320,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.321,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.322,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.323,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.324,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.325,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.326,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.327,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.328,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.329,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.330,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.331,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.332,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.333,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.334,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.335,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.336,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.337,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.338,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.339,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.340,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.341,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.342,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.343,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.344,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.345,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.346,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.347,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.348,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.349,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.350,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.351,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.352,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.353,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.354,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.355,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.356,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.357,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.358,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.358,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.358,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.359,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.359,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.359,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.360,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.360,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.360,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.361,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.361,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.361,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.362,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.362,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.362,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.363,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.363,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.363,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.364,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.365,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.365,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.365,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.366,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.366,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.366,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.367,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.367,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.367,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.368,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.368,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.368,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.369,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.370,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.370,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.370,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.371,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.371,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.371,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.372,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.373,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.373,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.373,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.374,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.374,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.374,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.375,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.375,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.375,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.376,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.376,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.376,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.377,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.377,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.377,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.378,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.378,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.378,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.379,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.379,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.379,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.380,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.380,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.380,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.381,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.381,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.381,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.382,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.382,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.382,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.383,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.383,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.383,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.384,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.384,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.384,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.385,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.385,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.385,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.386,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.386,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.386,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.387,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.388,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.388,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.388,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.389,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.389,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.389,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.390,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.390,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.390,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.391,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.391,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.391,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.392,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.393,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.393,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.393,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.394,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.394,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.394,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.395,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.396,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.396,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.396,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.397,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.397,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.397,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.398,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.398,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.398,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.399,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.399,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.399,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.400,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.400,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.400,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.401,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.401,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.401,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.402,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.402,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.402,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.403,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.403,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.403,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.404,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.404,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.405,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.405,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.406,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.406,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.407,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.407,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.408,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.408,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.409,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.409,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.410,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.410,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.411,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.411,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.412,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.412,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.413,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.413,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.414,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.414,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.415,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.415,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.416,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.416,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.417,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.417,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.418,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.418,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.419,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.419,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.420,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.420,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.421,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.421,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.422,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.422,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.423,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.423,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.424,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.425,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.426,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.427,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.428,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.429,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.430,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.431,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.432,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.433,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.434,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.435,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.436,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.437,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.438,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.439,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.440,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.441,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.442,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.443,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.444,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.444,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.444,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T24__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.445,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.445,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.445,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y15T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.446,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.446,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.446,"Unemployment (Labour Force Statistics, LFS) (15 years old and over) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE15__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.447,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.447,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.447,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T34__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.448,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.448,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.448,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y25T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.449,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.449,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.449,"Unemployment (Labour Force Statistics, LFS) (25 years old and over) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE25__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.450,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.450,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.450,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y35T44__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.451,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.451,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.451,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y45T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.452,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.452,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.452,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y55T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.453,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.453,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.453,"Unemployment (Labour Force Statistics, LFS) (65 years old and over) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.AGE--Y_GE65__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.454,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.454,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.455,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.455,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.456,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T24__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.456,"Unemployment (Labour Force Statistics, LFS) (15 to 24 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T24__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.457,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.457,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.458,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.458,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.459,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y15T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.459,"Unemployment (Labour Force Statistics, LFS) (15 to 64 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y15T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.460,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.460,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.461,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.461,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.462,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE15__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.462,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE15__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.462,"Unemployment (Labour Force Statistics, LFS) (15 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE15__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.463,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.463,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.464,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.464,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.465,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T34__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.465,"Unemployment (Labour Force Statistics, LFS) (25 to 34 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T34__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.466,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.466,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.467,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.467,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.468,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y25T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.468,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y25T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.468,"Unemployment (Labour Force Statistics, LFS) (25 to 54 years old, Urban) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y25T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.469,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.469,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.470,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.470,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.471,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE25__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.471,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE25__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.471,"Unemployment (Labour Force Statistics, LFS) (25 years old and over, Urban) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__AGE--Y_GE25__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.472,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.472,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.473,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.473,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.474,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y35T44__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.474,"Unemployment (Labour Force Statistics, LFS) (35 to 44 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y35T44__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.475,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.475,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.476,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.476,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.477,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y45T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.477,"Unemployment (Labour Force Statistics, LFS) (45 to 54 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y45T54__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.478,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.478,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.479,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.479,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.480,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y55T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.480,"Unemployment (Labour Force Statistics, LFS) (55 to 64 years old, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y55T64__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.481,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.481,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.482,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.482,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.483,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__AGE--Y_GE65__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.483,"Unemployment (Labour Force Statistics, LFS) (65 years old and over, Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__AGE--Y_GE65__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.484,"Unemployment (Labour Force Statistics, LFS) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.484,"Unemployment (Labour Force Statistics, LFS) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.484,"Unemployment (Labour Force Statistics, LFS) by Disability status",Disability status not specified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.485,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.485,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.485,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.485,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.485,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.486,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.486,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.486,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.486,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.486,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.487,"Unemployment (Labour Force Statistics, LFS)",Total,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.488,"Unemployment (Labour Force Statistics, LFS)",Female,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.488,"Unemployment (Labour Force Statistics, LFS)",Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.488,"Unemployment (Labour Force Statistics, LFS)",Sex other than Female or Male,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__MARITAL_STATUS--_Z__OCCUPATION--_Z__INSTITUTIONAL_SECTOR--_Z__DISABILITY_STATUS--_Z__ECONOMIC_ACTIVITY--_Z__EDUCATION_LEVEL--_Z,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.489,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.489,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.489,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.490,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.490,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.490,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.491,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.491,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.491,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.492,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.492,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.492,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.493,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.493,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.494,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.494,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.495,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.496,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.497,"Unemployment (Labour Force Statistics, LFS) (Disability status not specified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.497,"Unemployment (Labour Force Statistics, LFS) (Disability status not specified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.498,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.498,"Unemployment (Labour Force Statistics, LFS) (Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.499,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.499,"Unemployment (Labour Force Statistics, LFS) (Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.500,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.500,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.500,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.500,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.500,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.501,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.501,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.501,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.501,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.501,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.502,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.502,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.502,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.502,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.502,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.503,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.503,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.503,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.503,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.503,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.504,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.504,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.505,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.505,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.505,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.506,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.506,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.506,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.507,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.507,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.507,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.508,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.508,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.508,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.509,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.509,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.509,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.510,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.510,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.510,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.511,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.511,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.511,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.512,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.512,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.513,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.513,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.514,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.514,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.515,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.515,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.516,"Unemployment (Labour Force Statistics, LFS) (Persons with disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.517,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.518,"Unemployment (Labour Force Statistics, LFS) (Persons without disability, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.519,"Unemployment (Labour Force Statistics, LFS) by Category of unemployed",Unemployed seeking their first job,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.519,"Unemployment (Labour Force Statistics, LFS) by Category of unemployed",Unemployed previously employed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.519,"Unemployment (Labour Force Statistics, LFS) by Category of unemployed",Category of unemployment not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.520,"Unemployment (Labour Force Statistics, LFS) (Category of unemployment not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.520,"Unemployment (Labour Force Statistics, LFS) (Category of unemployment not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.521,"Unemployment (Labour Force Statistics, LFS) (Unemployed previously employed) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.521,"Unemployment (Labour Force Statistics, LFS) (Unemployed previously employed) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_PRE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.522,"Unemployment (Labour Force Statistics, LFS) (Unemployed seeking their first job) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.522,"Unemployment (Labour Force Statistics, LFS) (Unemployed seeking their first job) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__CATEGORY_OF_UNEMPLOYED--CAT_UNE_FJS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",Less than 1 month,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",Less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",Less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",1 month to less than 3 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",3 months to less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",12 months to less than 24 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",24 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.523,"Unemployment (Labour Force Statistics, LFS) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.524,"Unemployment (Labour Force Statistics, LFS) (12 months or more) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.524,"Unemployment (Labour Force Statistics, LFS) (12 months or more) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.525,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.525,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.526,"Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.526,"Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.527,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.527,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.528,"Unemployment (Labour Force Statistics, LFS) (12 months or more) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.529,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.530,"Unemployment (Labour Force Statistics, LFS) (Duration not classified) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.531,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.532,"Unemployment (Labour Force Statistics, LFS) (1 month to less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.532,"Unemployment (Labour Force Statistics, LFS) (1 month to less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M1T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.533,"Unemployment (Labour Force Statistics, LFS) (12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.533,"Unemployment (Labour Force Statistics, LFS) (12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.534,"Unemployment (Labour Force Statistics, LFS) (12 months to less than 24 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.534,"Unemployment (Labour Force Statistics, LFS) (12 months to less than 24 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M12T23,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.535,"Unemployment (Labour Force Statistics, LFS) (24 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.535,"Unemployment (Labour Force Statistics, LFS) (24 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE24,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.536,"Unemployment (Labour Force Statistics, LFS) (3 months to less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.536,"Unemployment (Labour Force Statistics, LFS) (3 months to less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M3T5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.537,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.537,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.538,"Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.538,"Unemployment (Labour Force Statistics, LFS) (Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.539,"Unemployment (Labour Force Statistics, LFS) (Less than 1 month) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.539,"Unemployment (Labour Force Statistics, LFS) (Less than 1 month) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.540,"Unemployment (Labour Force Statistics, LFS) (Less than 3 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.540,"Unemployment (Labour Force Statistics, LFS) (Less than 3 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.541,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.541,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.542,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.542,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.543,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.543,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.544,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.544,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.545,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.545,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.546,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.546,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.547,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.547,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.548,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.548,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.549,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.549,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.550,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.551,"Unemployment (Labour Force Statistics, LFS) (12 months or more, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.552,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.553,"Unemployment (Labour Force Statistics, LFS) (6 months to less than 12 months, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.554,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.555,"Unemployment (Labour Force Statistics, LFS) (Duration not classified, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.556,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.557,"Unemployment (Labour Force Statistics, LFS) (Less than 6 months, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.558,"Unemployment (Labour Force Statistics, LFS) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.559,"Unemployment (Labour Force Statistics, LFS) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.559,"Unemployment (Labour Force Statistics, LFS) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.559,"Unemployment (Labour Force Statistics, LFS) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.559,"Unemployment (Labour Force Statistics, LFS) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.559,"Unemployment (Labour Force Statistics, LFS) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2",Activities not Adequately Defined (ISIC2_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2","Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2",Mining and Quarrying (ISIC2_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2",Manufacturing (ISIC2_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2","Electricity, Gas and Water (ISIC2_4)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2",Construction (ISIC2_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2",Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2","Transport, Storage and Communication (ISIC2_7)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2","Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.560,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 2","Community, Social and Personal Services (ISIC2_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC2_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.561,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC3_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_S,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.562,"Unemployment (Labour Force Statistics, LFS) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--ISIC4_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.563,"Unemployment (Labour Force Statistics, LFS) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.564,"Unemployment (Labour Force Statistics, LFS)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.565,"Unemployment (Labour Force Statistics, LFS) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.565,"Unemployment (Labour Force Statistics, LFS) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.565,"Unemployment (Labour Force Statistics, LFS) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.565,"Unemployment (Labour Force Statistics, LFS) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.565,"Unemployment (Labour Force Statistics, LFS) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.566,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",First stage of tertiary education - theoretically based (ISCED97_5A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",First stage of tertiary education - practically oriented (ISCED97_5B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.567,"Unemployment (Labour Force Statistics, LFS) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.568,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.569,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.570,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.571,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.572,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.573,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.573,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.573,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.573,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.573,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.574,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.574,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.574,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.574,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.574,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.575,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.575,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.575,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.575,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.575,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.576,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.576,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.576,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.576,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.576,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.577,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.577,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.577,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.577,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.577,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.578,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.579,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.580,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.581,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.582,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.583,"Unemployment (Labour Force Statistics, LFS) (Advanced education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.584,"Unemployment (Labour Force Statistics, LFS) (Basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.585,"Unemployment (Labour Force Statistics, LFS) (Education level not stated)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.586,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.587,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.588,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.588,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.588,"Unemployment (Labour Force Statistics, LFS) (Advanced education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.589,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.589,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.589,"Unemployment (Labour Force Statistics, LFS) (Basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.590,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.590,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.590,"Unemployment (Labour Force Statistics, LFS) (Education level not stated) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.591,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.591,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.591,"Unemployment (Labour Force Statistics, LFS) (Intermediate education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.592,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.592,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.592,"Unemployment (Labour Force Statistics, LFS) (Less than basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.593,"Unemployment (Labour Force Statistics, LFS) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.593,"Unemployment (Labour Force Statistics, LFS) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.593,"Unemployment (Labour Force Statistics, LFS) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.594,"Unemployment (Labour Force Statistics, LFS) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.594,"Unemployment (Labour Force Statistics, LFS) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.594,"Unemployment (Labour Force Statistics, LFS) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.595,"Unemployment (Labour Force Statistics, LFS) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.595,"Unemployment (Labour Force Statistics, LFS) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.596,"Unemployment (Labour Force Statistics, LFS) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.597,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.598,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.598,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.599,"Unemployment (Labour Force Statistics, LFS) (Married)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.600,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.601,"Unemployment (Labour Force Statistics, LFS) (Single)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.602,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.603,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.604,"Unemployment (Labour Force Statistics, LFS) (Widowed)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.605,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.605,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.605,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.605,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.605,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.606,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.607,"Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.607,"Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.607,"Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.607,"Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.607,"Unemployment (Labour Force Statistics, LFS) (Married) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.608,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.608,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.608,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.608,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.608,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.609,"Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.609,"Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.609,"Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.609,"Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.609,"Unemployment (Labour Force Statistics, LFS) (Single) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.610,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.610,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.610,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.610,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.610,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.611,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.611,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.611,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.611,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.611,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.612,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.612,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.612,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.612,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.612,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics', LFS) (Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics', LFS) (Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.613,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics', LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics', LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics', LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics', LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.614,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics', LFS) (Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics', LFS) (Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.615,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics', LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics', LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.616,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics', LFS) (Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics', LFS) (Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.617,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics', LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics', LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.618,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics', LFS) (Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics', LFS) (Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.619,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics', LFS) (Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics', LFS) (Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.620,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.621,"Unemployment (Labour Force Statistics, LFS) (Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.622,"Unemployment (Labour Force Statistics, LFS) (Marital status not elsewhere classified) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.623,"Unemployment (Labour Force Statistics, LFS) (Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.624,"Unemployment (Labour Force Statistics, LFS) (Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.625,"Unemployment (Labour Force Statistics, LFS) (Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.626,"Unemployment (Labour Force Statistics, LFS) (Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.627,"Unemployment (Labour Force Statistics, LFS) (Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.628,"Unemployment (Labour Force Statistics, LFS) (Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.629,"Unemployment (Labour Force Statistics, LFS)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.630,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO08_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68","Professional, technical and related workers (ISCO68_0 and ISCO68_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_0AND1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Administrative and managerial workers (ISCO68_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Clerical and related workers (ISCO68_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Sales workers (ISCO68_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Service workers (ISCO68_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68","Agriculture, animal husbandry and forestry workers, fishermen and hunters (ISCO68_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68","Production and related workers, transport equipment operators and labourers (ISCO68_7, ISCO68_8, and ISCO68_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_7T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.631,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Occupations not elsewhere classified (ISCO68_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO68_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.632,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--ISCO88_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.633,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.633,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.633,"Unemployment (Labour Force Statistics, LFS) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.634,"Unemployment (Labour Force Statistics, LFS) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.634,"Unemployment (Labour Force Statistics, LFS) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.634,"Unemployment (Labour Force Statistics, LFS) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.635,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.636,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.637,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.637,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.637,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.637,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.637,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.638,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.638,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.638,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.638,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.638,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2",Activities not Adequately Defined (ISIC2_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2","Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2",Mining and Quarrying (ISIC2_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2",Manufacturing (ISIC2_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2","Electricity, Gas and Water (ISIC2_4)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2",Construction (ISIC2_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2",Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2","Transport, Storage and Communication (ISIC2_7)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2","Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.639,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 2","Community, Social and Personal Services (ISIC2_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC2_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2",Activities not Adequately Defined (ISIC2_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2","Agriculture, Hunting, Forestry and Fishing (ISIC2_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2",Mining and Quarrying (ISIC2_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2",Manufacturing (ISIC2_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2","Electricity, Gas and Water (ISIC2_4)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2",Construction (ISIC2_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2",Wholesale and Retail Trade and Restaurants and Hotels (ISIC2_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2","Transport, Storage and Communication (ISIC2_7)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2","Financing, Insurance, Real Estate and Business Services (ISIC2_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.640,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 2","Community, Social and Personal Services (ISIC2_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC2_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.641,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC3_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Agriculture, hunting and forestry (ISIC3_A)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Fishing (ISIC3_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Mining and quarrying (ISIC3_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Manufacturing (ISIC3_D),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Electricity, gas and water supply (ISIC3_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Construction (ISIC3_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Wholesale and retail trade; repair of motor vehicles, motorcycles and personal and household goods (ISIC3_G)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Hotels and restaurants (ISIC3_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Transport, storage and communications (ISIC3_I)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Financial intermediation (ISIC3_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Real estate, renting and business activities (ISIC3_K)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Public administration and defence; compulsory social security (ISIC3_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Education (ISIC3_M),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Health and social work (ISIC3_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3","Other community, social and personal service activities (ISIC3_O)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Activities of private households as employers and undifferentiated production activities of private households (ISIC3_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.642,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 3",Extraterritorial organizations and bodies (ISIC3_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC3_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_S,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.643,"Unemployment (Labour Force Statistics, LFS) (Female) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--ISIC4_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Agriculture; forestry and fishing (ISIC4_A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Mining and quarrying (ISIC4_B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Manufacturing (ISIC4_C),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_C,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4","Electricity; gas, steam and air conditioning supply (ISIC4_D)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_D,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4","Water supply; sewerage, waste management and remediation activities (ISIC4_E)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_E,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Construction (ISIC4_F),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_F,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Wholesale and retail trade; repair of motor vehicles and motorcycles (ISIC4_G),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_G,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Transportation and storage (ISIC4_H),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_H,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Accommodation and food service activities (ISIC4_I),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_I,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Information and communication (ISIC4_J),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_J,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Financial and insurance activities (ISIC4_K),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_K,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Real estate activities (ISIC4_L),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_L,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4","Professional, scientific and technical activities (ISIC4_M)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_M,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Administrative and support service activities (ISIC4_N),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_N,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Public administration and defence; compulsory social security (ISIC4_O),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_O,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Education (ISIC4_P),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_P,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Human health and social work activities (ISIC4_Q),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_Q,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4","Arts, entertainment and recreation (ISIC4_R)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Other service activities (ISIC4_S),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_S,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Activities of extraterritorial organizations and bodies (ISIC4_U),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.644,"Unemployment (Labour Force Statistics, LFS) (Male) by Major division of ISIC Rev. 4",Economic activities not elsewhere classified (ISIC4_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--ISIC4_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.645,"Unemployment (Labour Force Statistics, LFS) (Female) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.646,"Unemployment (Labour Force Statistics, LFS) (Male) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.647,"Unemployment (Labour Force Statistics, LFS) (Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.648,"Unemployment (Labour Force Statistics, LFS) (Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.649,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.649,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.649,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.649,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.649,"Unemployment (Labour Force Statistics, LFS) (Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.650,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.650,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.650,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.650,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.650,"Unemployment (Labour Force Statistics, LFS) (Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.651,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.652,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",First stage of tertiary education - theoretically based (ISCED97_5A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",First stage of tertiary education - practically oriented (ISCED97_5B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.653,"Unemployment (Labour Force Statistics, LFS) (Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",First stage of tertiary education - theoretically based (ISCED97_5A),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5A,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",First stage of tertiary education - practically oriented (ISCED97_5B),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5B,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.654,"Unemployment (Labour Force Statistics, LFS) (Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.655,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.656,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.657,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.658,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.659,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.660,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.661,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.662,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.663,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities",Construction,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_CON,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities",Manufacturing,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MAN,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities","Mining and quarrying; Electricity, gas and water supply",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MEL,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities","Trade, Transportation, Accommodation and Food, and Business and Administrative Services",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_MKT,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.664,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Aggregate economic activities","Public Administration, Community, Social and other Services and Activities",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_AGGREGATE_PUB,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.665,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.665,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.665,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.665,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.665,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.666,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.666,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.666,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.666,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.666,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.667,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.667,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.667,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.667,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.667,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.668,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.668,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.668,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.668,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.668,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.669,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.669,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.669,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.669,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.669,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.670,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.670,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.670,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.670,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.670,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.671,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.671,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.671,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.671,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.671,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.672,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.672,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.672,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.672,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.672,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.673,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.673,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.673,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.673,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.673,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.674,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector",Agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_AGR,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.674,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector",Non-agriculture,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_NAG,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.674,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector",Industry,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_IND,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.674,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector",Services,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_SER,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.674,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic sector",Not classified by economic sector,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--ECO_SECTOR_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.675,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.676,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.677,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.678,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.679,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.680,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.681,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.682,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.683,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.684,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Economic activities not elsewhere classified",Economic activities not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__ECONOMIC_ACTIVITY--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.685,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.686,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.687,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.688,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.689,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.690,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.691,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.692,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.693,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.694,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.695,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.695,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.695,"Unemployment (Labour Force Statistics, LFS) (Female, Advanced education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.696,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.696,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.696,"Unemployment (Labour Force Statistics, LFS) (Female, Basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.697,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.697,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.697,"Unemployment (Labour Force Statistics, LFS) (Female, Education level not stated) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.698,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.698,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.698,"Unemployment (Labour Force Statistics, LFS) (Female, Intermediate education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.699,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.699,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.699,"Unemployment (Labour Force Statistics, LFS) (Female, Less than basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.700,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.700,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.700,"Unemployment (Labour Force Statistics, LFS) (Male, Advanced education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.701,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.701,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.701,"Unemployment (Labour Force Statistics, LFS) (Male, Basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.702,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.702,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.702,"Unemployment (Labour Force Statistics, LFS) (Male, Education level not stated) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.703,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.703,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.703,"Unemployment (Labour Force Statistics, LFS) (Male, Intermediate education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.704,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.704,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.704,"Unemployment (Labour Force Statistics, LFS) (Male, Less than basic education level) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.705,"Unemployment (Labour Force Statistics, LFS) (Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.705,"Unemployment (Labour Force Statistics, LFS) (Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.705,"Unemployment (Labour Force Statistics, LFS) (Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.706,"Unemployment (Labour Force Statistics, LFS) (Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.706,"Unemployment (Labour Force Statistics, LFS) (Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.706,"Unemployment (Labour Force Statistics, LFS) (Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.707,"Unemployment (Labour Force Statistics, LFS) (Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.708,"Unemployment (Labour Force Statistics, LFS) (Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.708,"Unemployment (Labour Force Statistics, LFS) (Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.708,"Unemployment (Labour Force Statistics, LFS) (Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.709,"Unemployment (Labour Force Statistics, LFS) (Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.709,"Unemployment (Labour Force Statistics, LFS) (Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.709,"Unemployment (Labour Force Statistics, LFS) (Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.710,"Unemployment (Labour Force Statistics, LFS) (Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.711,"Unemployment (Labour Force Statistics, LFS) (Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.711,"Unemployment (Labour Force Statistics, LFS) (Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.712,"Unemployment (Labour Force Statistics, LFS) (Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.712,"Unemployment (Labour Force Statistics, LFS) (Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.713,"Unemployment (Labour Force Statistics, LFS) (Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.714,"Unemployment (Labour Force Statistics, LFS) (Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.715,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.716,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.716,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.717,"Unemployment (Labour Force Statistics, LFS) (Female, Married)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.718,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.719,"Unemployment (Labour Force Statistics, LFS) (Female, Single)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.720,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.721,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.722,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.723,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.724,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.724,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified)",No schooling,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.725,"Unemployment (Labour Force Statistics, LFS) (Male, Married)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.726,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.727,"Unemployment (Labour Force Statistics, LFS) (Male, Single)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.728,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.729,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.730,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.731,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.731,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.731,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.731,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.731,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.732,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.733,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.733,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.733,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.733,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.733,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.734,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.734,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.734,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.734,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.734,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.735,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.735,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.735,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.735,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.735,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.736,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.736,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.736,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.736,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.736,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.737,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.737,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.737,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.737,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.737,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.738,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.738,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.738,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.738,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.738,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.739,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.739,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.739,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.739,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.739,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Less than basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Basic education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Intermediate education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Advanced education level,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.740,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Aggregate education levels",Education level not stated,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.741,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.741,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.741,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.741,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.741,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.742,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.742,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.742,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.742,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.742,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.743,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.743,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.743,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.743,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.743,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.744,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.744,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.744,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.744,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.744,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.745,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.745,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.745,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.745,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.745,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.746,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.746,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.746,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.746,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.746,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.747,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.748,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.749,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.750,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.751,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.752,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.753,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.754,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.755,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Early childhood education (ISCED11_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Primary education (ISCED11_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.756,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED11",No schooling (ISCED11_X),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.757,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.758,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.759,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.760,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.761,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.762,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.763,"Unemployment (Labour Force Statistics, LFS) (Female, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.764,"Unemployment (Labour Force Statistics, LFS) (Female, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.765,"Unemployment (Labour Force Statistics, LFS) (Female, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.766,"Unemployment (Labour Force Statistics, LFS) (Female, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.767,"Unemployment (Labour Force Statistics, LFS) (Female, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.768,"Unemployment (Labour Force Statistics, LFS) (Female, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.769,"Unemployment (Labour Force Statistics, LFS) (Female, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.770,"Unemployment (Labour Force Statistics, LFS) (Female, Widowed) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.771,"Unemployment (Labour Force Statistics, LFS) (Male, Divorced or legally separated) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.772,"Unemployment (Labour Force Statistics, LFS) (Male, Marital status not elsewhere classified) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.773,"Unemployment (Labour Force Statistics, LFS) (Male, Married) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.774,"Unemployment (Labour Force Statistics, LFS) (Male, Married / Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.775,"Unemployment (Labour Force Statistics, LFS) (Male, Single) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.776,"Unemployment (Labour Force Statistics, LFS) (Male, Single / Widowed / Divorced) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.777,"Unemployment (Labour Force Statistics, LFS) (Male, Union / Cohabiting) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.778,"Unemployment (Labour Force Statistics, LFS) (Male, Widowed) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.779,"Unemployment (Labour Force Statistics, LFS) (Female)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.780,"Unemployment (Labour Force Statistics, LFS) (Male)",Occupations not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.781,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO08_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Armed forces occupations (ISCO08_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Managers (ISCO08_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Professionals (ISCO08_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Technicians and associate professionals (ISCO08_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Clerical support workers (ISCO08_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Service and sales workers (ISCO08_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08","Skilled agricultural, forestry and fishery workers (ISCO08_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Craft and related trades workers (ISCO08_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08","Plant and machine operators, and assemblers (ISCO08_8)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Elementary occupations (ISCO08_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.782,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO08",Occupations not elsewhere classified (ISCO08_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO08_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68","Professional, technical and related workers (ISCO68_0 and ISCO68_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_0AND1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Administrative and managerial workers (ISCO68_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Clerical and related workers (ISCO68_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Sales workers (ISCO68_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Service workers (ISCO68_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68","Agriculture, animal husbandry and forestry workers, fishermen and hunters (ISCO68_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68","Production and related workers, transport equipment operators and labourers (ISCO68_7, ISCO68_8, and ISCO68_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_7T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.783,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Occupations not elsewhere classified (ISCO68_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO68_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68","Professional, technical and related workers (ISCO68_0 and ISCO68_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_0AND1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Administrative and managerial workers (ISCO68_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Clerical and related workers (ISCO68_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Sales workers (ISCO68_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Service workers (ISCO68_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68","Agriculture, animal husbandry and forestry workers, fishermen and hunters (ISCO68_6)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68","Production and related workers, transport equipment operators and labourers (ISCO68_7, ISCO68_8, and ISCO68_9)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_7T9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.784,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Occupations not elsewhere classified (ISCO68_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO68_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.785,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--ISCO88_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO68",Armed forces (ISCO88_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_0,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88","Legislators, senior officials and managers (ISCO88_1)",,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Professionals (ISCO88_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Technicians and associate professionals (ISCO88_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_3,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Clerks (ISCO88_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Service workers and shop and market sales workers (ISCO88_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_5,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Skilled agricultural and fishery workers (ISCO88_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_6,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Craft and related trades workers (ISCO88_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_7,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Plant and machine operators and assemblers (ISCO88_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_8,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Elementary occupations (ISCO88_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_9,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.786,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to ISCO88",Not elsewhere classified (ISCO88_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--ISCO88_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.787,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.787,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.787,"Unemployment (Labour Force Statistics, LFS) (Female) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.788,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to skill",Occupations with skill level 1 (low),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.788,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to skill",Occupations with skill level 2 (medium),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.788,"Unemployment (Labour Force Statistics, LFS) (Male) by Categories of occupations according to skill",Occupations with skill levels 3 and 4 (high),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__OCCUPATION--SKILL_L3-4,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.789,"Unemployment (Labour Force Statistics, LFS) by Urbanization (Rural/Urban)",Rural,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.789,"Unemployment (Labour Force Statistics, LFS) by Urbanization (Rural/Urban)",Urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.789,"Unemployment (Labour Force Statistics, LFS) by Urbanization (Rural/Urban)",Not classsified as rural or urban,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.790,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.790,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.791,"Unemployment (Labour Force Statistics, LFS) (Rural) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.791,"Unemployment (Labour Force Statistics, LFS) (Rural) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.792,"Unemployment (Labour Force Statistics, LFS) (Urban) by Disability status",Persons with disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.792,"Unemployment (Labour Force Statistics, LFS) (Urban) by Disability status",Persons without disability,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DISABILITY_STATUS--PWD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.793,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.793,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.794,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.794,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.795,"Unemployment (Labour Force Statistics, LFS) (Rural, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.795,"Unemployment (Labour Force Statistics, LFS) (Rural, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.796,"Unemployment (Labour Force Statistics, LFS) (Rural, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.796,"Unemployment (Labour Force Statistics, LFS) (Rural, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.797,"Unemployment (Labour Force Statistics, LFS) (Urban, Persons with disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.797,"Unemployment (Labour Force Statistics, LFS) (Urban, Persons with disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.798,"Unemployment (Labour Force Statistics, LFS) (Urban, Persons without disability) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DISABILITY_STATUS--PWD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.798,"Unemployment (Labour Force Statistics, LFS) (Urban, Persons without disability) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DISABILITY_STATUS--PWD__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.799,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.799,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.799,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.799,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.800,"Unemployment (Labour Force Statistics, LFS) (Rural) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.800,"Unemployment (Labour Force Statistics, LFS) (Rural) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.800,"Unemployment (Labour Force Statistics, LFS) (Rural) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.800,"Unemployment (Labour Force Statistics, LFS) (Rural) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.801,"Unemployment (Labour Force Statistics, LFS) (Urban) by Duration",Less than 6 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M0T6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.801,"Unemployment (Labour Force Statistics, LFS) (Urban) by Duration",6 months to less than 12 months,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--M6T11__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.801,"Unemployment (Labour Force Statistics, LFS) (Urban) by Duration",12 months or more,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--MGE12__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.801,"Unemployment (Labour Force Statistics, LFS) (Urban) by Duration",Duration not classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.DURATION--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.802,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.802,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.803,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.803,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.804,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.804,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.805,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.805,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.806,"Unemployment (Labour Force Statistics, LFS) (Rural, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.806,"Unemployment (Labour Force Statistics, LFS) (Rural, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.807,"Unemployment (Labour Force Statistics, LFS) (Rural, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.807,"Unemployment (Labour Force Statistics, LFS) (Rural, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.808,"Unemployment (Labour Force Statistics, LFS) (Rural, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.808,"Unemployment (Labour Force Statistics, LFS) (Rural, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.809,"Unemployment (Labour Force Statistics, LFS) (Rural, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.809,"Unemployment (Labour Force Statistics, LFS) (Rural, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.810,"Unemployment (Labour Force Statistics, LFS) (Urban, 12 months or more) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--MGE12__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.810,"Unemployment (Labour Force Statistics, LFS) (Urban, 12 months or more) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--MGE12__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.811,"Unemployment (Labour Force Statistics, LFS) (Urban, 6 months to less than 12 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M6T11__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.811,"Unemployment (Labour Force Statistics, LFS) (Urban, 6 months to less than 12 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M6T11__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.812,"Unemployment (Labour Force Statistics, LFS) (Urban, Duration not classified) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.812,"Unemployment (Labour Force Statistics, LFS) (Urban, Duration not classified) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.813,"Unemployment (Labour Force Statistics, LFS) (Urban, Less than 6 months) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__DURATION--M0T6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.813,"Unemployment (Labour Force Statistics, LFS) (Urban, Less than 6 months) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__DURATION--M0T6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.814,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.815,"Unemployment (Labour Force Statistics, LFS) (Rural)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.816,"Unemployment (Labour Force Statistics, LFS) (Urban)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.817,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.817,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.817,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.817,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.817,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.818,"Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.818,"Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.818,"Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.818,"Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.818,"Unemployment (Labour Force Statistics, LFS) (Rural) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.819,"Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.819,"Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.819,"Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.819,"Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.819,"Unemployment (Labour Force Statistics, LFS) (Urban) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--_UNK__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics', LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics', LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.820,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics', LFS) (Rural) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics', LFS) (Rural) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.821,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics', LFS) (Urban) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics', LFS) (Urban) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics', LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.822,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.823,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.824,"Unemployment (Labour Force Statistics, LFS) (Rural) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.825,"Unemployment (Labour Force Statistics, LFS) (Urban) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.826,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.826,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.826,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.827,"Unemployment (Labour Force Statistics, LFS) (Rural) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.827,"Unemployment (Labour Force Statistics, LFS) (Rural) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.827,"Unemployment (Labour Force Statistics, LFS) (Rural) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.828,"Unemployment (Labour Force Statistics, LFS) (Urban) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.828,"Unemployment (Labour Force Statistics, LFS) (Urban) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.828,"Unemployment (Labour Force Statistics, LFS) (Urban) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.829,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.829,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.829,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.830,"Unemployment (Labour Force Statistics, LFS) (Rural) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.830,"Unemployment (Labour Force Statistics, LFS) (Rural) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.830,"Unemployment (Labour Force Statistics, LFS) (Rural) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.831,"Unemployment (Labour Force Statistics, LFS) (Urban) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.831,"Unemployment (Labour Force Statistics, LFS) (Urban) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.831,"Unemployment (Labour Force Statistics, LFS) (Urban) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.832,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.832,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.833,"Unemployment (Labour Force Statistics, LFS) (Rural) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.833,"Unemployment (Labour Force Statistics, LFS) (Rural) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.834,"Unemployment (Labour Force Statistics, LFS) (Urban) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.834,"Unemployment (Labour Force Statistics, LFS) (Urban) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.835,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.836,"Unemployment (Labour Force Statistics, LFS) (Rural) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--R__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.837,"Unemployment (Labour Force Statistics, LFS) (Urban) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.URBANISATION--U__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.838,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.838,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.839,"Unemployment (Labour Force Statistics, LFS) (Rural) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.839,"Unemployment (Labour Force Statistics, LFS) (Rural) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.840,"Unemployment (Labour Force Statistics, LFS) (Urban) by Sex",Female,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.840,"Unemployment (Labour Force Statistics, LFS) (Urban) by Sex",Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.840,"Unemployment (Labour Force Statistics, LFS) (Urban) by Sex",Sex other than Female or Male,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.841,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.842,"Unemployment (Labour Force Statistics, LFS) (Rural, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.843,"Unemployment (Labour Force Statistics, LFS) (Rural, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.844,"Unemployment (Labour Force Statistics, LFS) (Urban, Female)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.845,"Unemployment (Labour Force Statistics, LFS) (Urban, Male)",No schooling,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.846,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.846,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.846,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.846,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.846,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.847,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.847,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.847,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.847,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.847,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.848,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.848,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.848,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.848,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.848,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.849,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.849,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.849,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.849,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.849,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.850,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.850,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.850,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.850,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.850,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--_UNK__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.851,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels",Less than basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_LTB__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.851,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels",Basic education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_BAS__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.851,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels",Intermediate education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_INT__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.851,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels",Advanced education level,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--EDU_AGGREGATE_ADV__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.851,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Aggregate education levels",Education level not stated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--_UNK__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.852,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.853,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.854,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.855,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.856,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Early childhood education (ISCED11_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Primary education (ISCED11_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Lower secondary education (ISCED11_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Upper secondary education (ISCED11_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Post-secondary non-tertiary education (ISCED11_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Short-cycle tertiary education (ISCED11_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Bachelor's or equivalent level (ISCED11_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Master's or equivalent level (ISCED11_7),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_7__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Doctoral or equivalent level (ISCED11_8),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_8__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",Not elsewhere classified (ISCED11_9),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_9__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.857,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED11",No schooling (ISCED11_X),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED11_X__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.858,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.858,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.858,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.858,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.859,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.860,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.861,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--R,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.862,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Pre-primary education (ISCED97_0),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_0__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Primary education or first stage of basic education (ISCED97_1),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_1__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Lower secondary or second stage of basic education (ISCED97_2),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_2__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Upper secondary education (ISCED97_3),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_3__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Post-secondary non-tertiary education (ISCED97_4),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_4__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",First stage of tertiary education (not leading directly to an advanced research qualification) (ISCED97_5),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_5__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.863,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Education levels according to ISCED97",Second stage of tertiary education (leading to an advanced research qualification) (ISCED97_6),,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__EDUCATION_LEVEL--ISCED97_6__URBANISATION--U,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.864,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.864,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.865,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.865,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.865,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.866,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.866,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.866,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.867,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.867,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.867,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.868,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.868,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.868,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.869,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.869,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Marital Status",Married / Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_2,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.869,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) by Marital Status",Marital status not elsewhere classified,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.870,"Unemployment (Labour Force Statistics, LFS) (Urban, Sex other than Female or Male) by Marital Status",Single / Widowed / Divorced,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_1,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.871,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.871,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.871,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.872,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.872,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.873,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.873,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.873,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.874,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.874,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.874,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.875,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.875,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.875,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.876,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.876,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Single / Widowed / Divorced",Widowed,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_WID,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.876,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Single / Widowed / Divorced",Divorced or legally separated,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_SEP,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.877,"Unemployment (Labour Force Statistics, LFS) (Urban, Sex other than Female or Male) Single / Widowed / Divorced",Single,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--O__URBANISATION--U__MARITAL_STATUS--MTS_SGLE,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.878,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.878,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.879,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.879,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.880,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.880,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.881,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.881,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.882,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.882,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.883,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Married / Union / Cohabiting",Married,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_MRD,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.883,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Married / Union / Cohabiting",Union / Cohabiting,,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--MTS_UNION,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.884,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.885,"Unemployment (Labour Force Statistics, LFS) (Not classsified as rural or urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--_X__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.886,"Unemployment (Labour Force Statistics, LFS) (Rural, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--R__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.887,"Unemployment (Labour Force Statistics, LFS) (Rural, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--R__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.888,"Unemployment (Labour Force Statistics, LFS) (Urban, Female) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--F__URBANISATION--U__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " +UNE_TUNE_NB.889,"Unemployment (Labour Force Statistics, LFS) (Urban, Male) Marital status not elsewhere classified",Marital status not elsewhere classified,DROP,,ILO_UNE_TUNE_NB,ilo/UNE_TUNE_NB.SEX--M__URBANISATION--U__MARITAL_STATUS--_X,UNE_TUNE_NB,"Unemployment (Labour Force Statistics, LFS) " diff --git a/tools/sdg/topics/undata_variable_grouping.csv b/tools/sdg/topics/undata_variable_grouping.csv index 823c4de59c..eab7df36e2 100644 --- a/tools/sdg/topics/undata_variable_grouping.csv +++ b/tools/sdg/topics/undata_variable_grouping.csv @@ -3551,10 +3551,10 @@ EMFLIMITELECTRICRF.002,Exposure limits for radio-frequency electromagnetic field EMFLIMITELECTRICRF.002,Exposure limits for radio-frequency electromagnetic fields for workers: Electric field (V/m) ,900 MHz,,,WHO_EMFLIMITELECTRICRF,who/EMFLIMITELECTRICRF.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ0900 EMFLIMITMAGNETIC.001,Exposure limit for low-frequency electromagnetic field for the public: Magnetic flux density (microT),,,,WHO_EMFLIMITMAGNETIC,who/EMFLIMITMAGNETIC.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFLOW EMFLIMITMAGNETIC.002,Exposure limit for low-frequency electromagnetic field for workers: Magnetic flux density (microT),,,,WHO_EMFLIMITMAGNETIC,who/EMFLIMITMAGNETIC.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFLOW -EMFLIMITPOWERDENSITY.001,"['""Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2) ",1800 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800 -EMFLIMITPOWERDENSITY.001,"['""Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2) ",900 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ0900 -EMFLIMITPOWERDENSITY.002,"['""Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2) ",1800 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800 -EMFLIMITPOWERDENSITY.002,"['""Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2) ",900 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ0900 +EMFLIMITPOWERDENSITY.001,"Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2)",1800 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800 +EMFLIMITPOWERDENSITY.001,"Exposure limit for radio-frequency electromagnetic field for the public: Power density (W/m^2)",900 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ0900 +EMFLIMITPOWERDENSITY.002,"Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2)",1800 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ1800 +EMFLIMITPOWERDENSITY.002,"Exposure limit for radio-frequency electromagnetic field for workeers: Power density (W/m^2)",900 MHz,,,WHO_EMFLIMITPOWERDENSITY,who/EMFLIMITPOWERDENSITY.EMFEXPOSED--EMFWORKER__EMFFREQUENCY--EMFRADIO__EMFRADIOBAND--EMFFREQ0900 EMFSAR.001,"Exposure limit for electromagnetic field for the public: Specific absorption rate (SAR)(W/kg), by body part",Head and trunk,,,WHO_EMFSAR,who/EMFSAR.EMFBODYPART--EMFHEAD__EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO EMFSAR.001,"Exposure limit for electromagnetic field for the public: Specific absorption rate (SAR)(W/kg), by body part",Limbs,,,WHO_EMFSAR,who/EMFSAR.EMFBODYPART--EMFLIMBS__EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO EMFSAR.001,"Exposure limit for electromagnetic field for the public: Specific absorption rate (SAR)(W/kg), by body part",Whole body,,,WHO_EMFSAR,who/EMFSAR.EMFBODYPART--EMFWHOLE__EMFEXPOSED--EMFPUBLIC__EMFFREQUENCY--EMFRADIO